Description
In the Linux kernel, the following vulnerability has been resolved: net: ipa: only reset hashed tables when supported Last year, the code that manages GSI channel transactions switched from using spinlock-protected linked lists to using indexes into the ring buffer used for a channel. Recently, Google reported seeing transaction reference count underflows occasionally during shutdown. Doug Anderson found a way to reproduce the issue reliably, and bisected the issue to the commit that eliminated the linked lists and the lock. The root cause was ultimately determined to be related to unused transactions being committed as part of the modem shutdown cleanup activity. Unused transactions are not normally expected (except in error cases). The modem uses some ranges of IPA-resident memory, and whenever it shuts down we zero those ranges. In ipa_filter_reset_table() a transaction is allocated to zero modem filter table entries. If hashing is not supported, hashed table memory should not be zeroed. But currently nothing prevents that, and the result is an unused transaction. Something similar occurs when we zero routing table entries for the modem. By preventing any attempt to clear hashed tables when hashing is not supported, the reference count underflow is avoided in this case. Note that there likely remains an issue with properly freeing unused transactions (if they occur due to errors). This patch addresses only the underflows that Google originally reported.
Product status
d338ae28d8a866c57fcac38f3d77bcc1d1702d19 (git) before 50c24f0c940728792c8bdf65c1eaf6b91b3b0dcd
d338ae28d8a866c57fcac38f3d77bcc1d1702d19 (git) before c00af3a818cc573e10100cc6770f0e47befa1fa4
d338ae28d8a866c57fcac38f3d77bcc1d1702d19 (git) before e11ec2b868af2b351c6c1e2e50eb711cc5423a10
6.1
Any version before 6.1
6.1.45 (semver)
6.4.8 (semver)
6.5 (original_commit_for_fix)
References
git.kernel.org/...c/50c24f0c940728792c8bdf65c1eaf6b91b3b0dcd
git.kernel.org/...c/c00af3a818cc573e10100cc6770f0e47befa1fa4
git.kernel.org/...c/e11ec2b868af2b351c6c1e2e50eb711cc5423a10
Data based on CVE®. Copyright © 1999-2025, The MITRE Corporation. All rights reserved.