CVE-2025-71079 Details
Description
In the Linux kernel, the following vulnerability has been resolved: net: nfc: fix deadlock between nfc_unregister_device and rfkill_fop_write A deadlock can occur between nfc_unregister_device() and rfkill_fop_write() due to lock ordering inversion between device_lock and rfkill_global_mutex. The problematic lock order is: Thread A (rfkill_fop_write): rfkill_fop_write() mutex_lock(&rfkill_global_mutex) rfkill_set_block() nfc_rfkill_set_block() nfc_dev_down() device_lock(&dev->dev) <- waits for device_lock Thread B (nfc_unregister_device): nfc_unregister_device() device_lock(&dev->dev) rfkill_unregister() mutex_lock(&rfkill_global_mutex) <- waits for rfkill_global_mutex This creates a classic ABBA deadlock scenario. Fix this by moving rfkill_unregister() and rfkill_destroy() outside the device_lock critical section. Store the rfkill pointer in a local variable before releasing the lock, then call rfkill_unregister() after releasing device_lock. This change is safe because rfkill_fop_write() holds rfkill_global_mutex while calling the rfkill callbacks, and rfkill_unregister() also acquires rfkill_global_mutex before cleanup. Therefore, rfkill_unregister() will wait for any ongoing callback to complete before proceeding, and device_del() is only called after rfkill_unregister() returns, preventing any use-after-free. The similar lock ordering in nfc_register_device() (device_lock -> rfkill_global_mutex via rfkill_register) is safe because during registration the device is not yet in rfkill_list, so no concurrent rfkill operations can occur on this device.
A deadlock vulnerability has been identified in the Linux kernel's NFC subsystem, specifically within the nfc_unregister_device() and rfkill_fop_write() functions. This deadlock arises from an inversion in lock ordering between device_lock and rfkill_global_mutex, creating a classic ABBA deadlock scenario. The issue occurs when Thread A, executing rfkill_fop_write(), acquires rfkill_global_mutex and then attempts to lock device_lock, while Thread B, running nfc_unregister_device(), locks device_lock before trying to acquire rfkill_global_mutex, leading to a standstill.
The vulnerability has been addressed by modifying the nfc_unregister_device() function to change the order of lock acquisition. The rfkill pointer is now stored in a local variable before releasing the device_lock, and rfkill_unregister() and rfkill_destroy() are called after the lock is released. This change ensures that the rfkill operations do not interfere with the device locking mechanism, preventing the deadlock scenario.
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://cert-portal.siemens.com/productcert/html/ssa-019113.html | siemens-SADP | |
| https://git.kernel.org/stable/c/1ab526d97a57e44d26fadcc0e9adeb9c0c0182f5 | kernel.org | Patch |
| https://git.kernel.org/stable/c/2e0831e9fc46a06daa6d4d8d57a2738e343130c3 | kernel.org | Patch |
| https://git.kernel.org/stable/c/6b93c8ab6f6cda8818983a4ae3fcf84b023037b4 | kernel.org | Patch |
| https://git.kernel.org/stable/c/8fc4632fb508432895430cd02b38086bdd649083 | kernel.org | Patch |
| https://git.kernel.org/stable/c/e02a1c33f10a0ed3aba855ab8ae2b6c4c5be8012 | kernel.org | Patch |
| https://git.kernel.org/stable/c/ee41f4f3ccf8cd6ba3732e867abbec7e6d8d12e5 | kernel.org | Patch |
| https://git.kernel.org/stable/c/f3a8a7c1aa278f2378b2f3a10500c6674dffdfda | kernel.org | Patch |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-667 | Improper Locking | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| linux linux kernel | >= 4.4.293, < 4.5 >= 4.9.291, < 4.10 >= 4.14.256, < 4.15 >= 4.19.218, < 4.20 >= 5.4.162, < 5.5 >= 5.10.82, < 5.10.248 >= 5.15.5, < 5.15.198 >= 5.16.1, < 6.1.160 >= 6.2, < 6.6.120 >= 6.7, < 6.12.64 >= 6.13, < 6.18.4 5.16 - 6.19 rc1 6.19 rc2 6.19 rc3 6.19 rc4 6.19 rc5 6.19 rc6 6.19 rc7 6.19 rc8 |
CPE
Remediation
| |
Change History
5 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Jul 14, 2026 | CVE Modified | siemens-SADP |
| Jun 17, 2026 | CVE Modified | kernel.org |
| Mar 25, 2026 | Initial Analysis | [email protected] |
| Jan 19, 2026 | CVE Modified | kernel.org |
| Jan 13, 2026 | New CVE Received | kernel.org |