CVE-2026-53265 Details
Description
In the Linux kernel, the following vulnerability has been resolved: dm cache policy smq: check allocation under invalidate lock commit 2d1f7b65f5de ("dm cache policy smq: fix missing locks in invalidating cache blocks") added mq->lock around the destructive part of smq_invalidate_mapping(), but left the e->allocated check outside the critical section. That leaves a check-then-act race. Two concurrent invalidators can both observe e->allocated as true before either of them takes mq->lock. The first invalidator that acquires the lock removes the entry from the queues and hash table and then calls free_entry(), which clears e->allocated and puts the entry back on the free list. The second invalidator can then acquire mq->lock and continue with the stale result of the unlocked check. This can corrupt the SMQ queues or hash table by deleting an entry that is no longer on those structures. It can also hit the allocation check in free_entry() when the same entry is freed again. Move the allocation check under mq->lock so the predicate and the destructive operations are serialized by the same lock.
A race condition vulnerability has been identified in the Linux kernel's DM cache policy SMQ. This issue arises from a check-then-act race where two concurrent invalidators can both see an entry as allocated before either has acquired the necessary lock. The first invalidator to grab the lock removes the entry from the relevant data structures and frees it, while the second invalidator can proceed with outdated information, potentially leading to corruption of the SMQ's queues or hash table. This vulnerability affects several versions of the Linux kernel.
The vulnerability has been addressed by moving the allocation check under the lock, ensuring that the check and the subsequent destructive operations are synchronized. Users should apply the latest patches available in the Linux kernel stable tree to mitigate this issue.
Metrics
CVSS 4.0 Severity and Vector Strings:
No CVSS 4.0 data is available for this CVE.
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
No SSVC data is available for this CVE.
References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://git.kernel.org/stable/c/03ffe1112ed88bb3a9bd0b971549bf4d64bfc59a | kernel.org | Patch |
| https://git.kernel.org/stable/c/13da856c86fb8c2ccab95034fd77da1bb2c2a17c | kernel.org | Patch |
| https://git.kernel.org/stable/c/42ff6774ecd9d7f70d599cb71ff64373a1da4948 | kernel.org | Patch |
| https://git.kernel.org/stable/c/b4892561552d671bd8c4da5ebb70e9fbb1ec446e | kernel.org | Patch |
| https://git.kernel.org/stable/c/c242c7af2aecf0b538b8623bdb86b8b441da38d9 | kernel.org | Patch |
| https://git.kernel.org/stable/c/c57570fba24016ec25ec046ab44db39143fb7a64 | kernel.org | Patch |
| https://git.kernel.org/stable/c/d3f0a606b9f278ece8a0df626ded9c4044071235 | kernel.org | Patch |
| https://git.kernel.org/stable/c/d886945fcb0f8c9dc6b39928d7a96c95c587346c | kernel.org | Patch |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| NVD-CWE-noinfo | Insufficient Information to Classify Weakness | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| linux linux kernel | >= 6.6.141, < 6.6.143 >= 6.12.91, < 6.12.94 >= 6.18.33, < 6.18.36 >= 7.0.10, < 7.0.13 5.10.258 5.15.209 6.1.175 7.1 rc1 7.1 rc2 7.1 rc3 7.1 rc4 7.1 rc5 7.1 rc6 |
CPE
Remediation
| |
Change History
3 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Jul 8, 2026 | Initial Analysis | [email protected] |
| Jun 28, 2026 | CVE Modified | kernel.org |
| Jun 25, 2026 | New CVE Received | kernel.org |