CVE-2026-52946
Last modified
CVE-2026-52946 is a high-severity vulnerability rated 7.5/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: fs/fcntl: fix SOFTIRQ-unsafe lock order in fasync signaling A SOFTIRQ-safe to SOFTIRQ-unsafe lock order deadlock can occur in send_sigio() and send_sigurg() when a process group receives a signal. When FASYNC is configured for a process group (PIDTYPE_PGID), both functions use read_lock(&tasklist_lock) to traverse the task list. However, they are frequently called from softirq context: - send_sigio() via input_inject_event -> kill_fasync - send_sigurg() via tcp_check_urg -> sk_send_sigurg (NET_RX_SOFTIRQ) The deadlock is caused by the rwlock writer fairness mechanism: 1. CPU 0 (process context) holds read_lock(&tasklist_lock) in do_wait(). 2. EPSS estimates a 0.61% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: fs/fcntl: fix SOFTIRQ-unsafe lock order in fasync signaling A SOFTIRQ-safe to SOFTIRQ-unsafe lock order deadlock can occur in send_sigio() and send_sigurg() when a process group receives a signal. When FASYNC is configured for a process group (PIDTYPE_PGID), both functions use read_lock(&tasklist_lock) to traverse the task list. However, they are frequently called from softirq context: - send_sigio() via input_inject_event -> kill_fasync - send_sigurg() via tcp_check_urg -> sk_send_sigurg (NET_RX_SOFTIRQ) The deadlock is caused by the rwlock writer fairness mechanism: 1. CPU 0 (process context) holds read_lock(&tasklist_lock) in do_wait(). 2. CPU 1 (process context) attempts write_lock(&tasklist_lock) in fork() or exit() and spins, which blocks all new readers. 3. CPU 0 is interrupted by a softirq (e.g., TCP URG packet reception). 4. The softirq calls send_sigurg() and attempts to acquire read_lock(&tasklist_lock), deadlocking because CPU 1 is waiting. Since PID hashing and do_each_pid_task() traversals are already RCU-protected, the read_lock on tasklist_lock is no longer strictly required for safe traversal. Fix this by replacing tasklist_lock with rcu_read_lock(), aligning the process group signaling path with the single-PID path. This also mitigates a potential remote denial of service vector via TCP URG packets. Lockdep splat: ===================================================== WARNING: SOFTIRQ-safe -> SOFTIRQ-unsafe lock order detected [...] Chain exists of: &dev->event_lock --> &f_owner->lock --> tasklist_lock Possible interrupt unsafe locking scenario: CPU0 CPU1 ---- ---- lock(tasklist_lock); local_irq_disable(); lock(&dev->event_lock); lock(&f_owner->lock); <Interrupt> lock(&dev->event_lock); *** DEADLOCK ***
Metrics
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Weakness Enumeration
Affected Software
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux Kernel | >= 2.6.12.1, < 5.10.259 |
| Linux | Linux Kernel | >= 5.11, < 5.15.210 |
| Linux | Linux Kernel | >= 5.16, < 6.1.176 |
| Linux | Linux Kernel | >= 6.2, < 6.6.143 |
| Linux | Linux Kernel | >= 6.7, < 6.12.94 |
| Linux | Linux Kernel | >= 6.13, < 6.18.36 |
| Linux | Linux Kernel | >= 6.19, < 7.0.13 |
| Linux | Linux Kernel | >= 7.1, < 7.1.1 |
| Linux | Linux Kernel | 2.6.12 |
References
Timeline
- Published
- Last Modified
- Status
- Analyzed
Frequently Asked Questions
What is CVE-2026-52946?
How severe is CVE-2026-52946?
How do I fix CVE-2026-52946?
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-52940In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-52941In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-52942In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-52943In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-52944In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-52945In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2026-52947In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-52948In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-52949In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-5295A stack buffer overflow exists in wolfSSL's PKCS7 implementa…8
- CVE-2026-52950In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-52951In the Linux kernel, the following vulnerability has been re…7.8
Are you affected by CVE-2026-52946?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
