CVE-2026-74686
Last modified
CVE-2026-74686 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: rqspinlock: Reset tail when preserving queue on deadlock Currently, the destruction of the waiter queue is suppressed for rqspinlock in cases where a deadlock is detected. Deadlock checks happen relatively frequently (on entry for AA, within 1ms for ABBA), and waiter threads may not be involved in locking scenarios involving deadlocks. Thus, it is useful to not flush the queue and let other waiters take a stab at acquiring the lock after we detect a deadlock and exit. However, we need to follow the same logic as what we did previously for the waitq_timeout label: reset the tail, and if we cannot, signal the next waiter appropriately.
Description
In the Linux kernel, the following vulnerability has been resolved: rqspinlock: Reset tail when preserving queue on deadlock Currently, the destruction of the waiter queue is suppressed for rqspinlock in cases where a deadlock is detected. Deadlock checks happen relatively frequently (on entry for AA, within 1ms for ABBA), and waiter threads may not be involved in locking scenarios involving deadlocks. Thus, it is useful to not flush the queue and let other waiters take a stab at acquiring the lock after we detect a deadlock and exit. However, we need to follow the same logic as what we did previously for the waitq_timeout label: reset the tail, and if we cannot, signal the next waiter appropriately. In case of deadlocks, this signal would just mark the MCS node as unlocked, and in case of timeouts, it would signal RES_TIMEOUT_VAL. The difference thus is in the value propagated, which decides whether the queue remains active or gets flushed. Not doing the tail reset, and waiting for the next waiter can lead to cases where we are the final waiter, and thus no next waiter arrives, leading to intermittent stalls in this path. Once the next waiter does join, we will be unblocked. In the theoretical case when the next waiter never joins, we risk stalling indefinitely. This can only happen for ABBA deadlocks, since entry into the wait queue is guarded with AA checks. A precise sequence of executions leading up to this scenario can be: CPU 0 holds lock A. CPU 1 holds lock B. CPU 2 attempts lock B, becomes the pending waiter for B. CPU 0 attempts lock B. B has locked+pending bits set, thus CPU 0 queues. CPU 1 attempts lock A. CPU 0 detects an ABBA deadlock. Once deadlock detection happens for CPU 0, it will sit waiting for the next waiter in the queue to populate node->next, which will experience delays until such a waiter arrives. Fix this by adjusting the logic for the check for deadlocks preceding the waitq_timeout label. It would make sense to consolidate code for both cases and use 'ret' to distinguish the value being propagated, but that is left as an exercise for a future refactoring task to avoid diff noise in this patch.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 7bd6e5ce5be666fb3fb873bf20f77e62555b7835, < f54667b0c16213285c9d9b8e3929f738b8f71826; >= 7bd6e5ce5be666fb3fb873bf20f77e62555b7835, < 7a3c0289c3c8eb4607dff448ae9ff9f902c813af |
| Linux | Linux | 6.19 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-74686?
How severe is CVE-2026-74686?
How do I fix CVE-2026-74686?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-74680In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74681In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74682In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74683In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74684In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74685In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74687In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74688In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74689In the Linux kernel, the following vulnerability has been re…
- CVE-2026-7469A vulnerability was detected in Tenda 4G300 US_4G300V1.0Mt_V…6.3
- CVE-2026-74690In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74691In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-74686?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
