CVE-2025-71079

MEDIUM

Linux kernel - Lock Ordering Inversion

Title source: llm
STIX 2.1

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.

Scores

CVSS v3 5.5
EPSS 0.0002
EPSS Percentile 5.5%
Attack Vector LOCAL
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H

Details

CWE
CWE-667
Status published
Products (29)
linux/Kernel < 5.10.248linux
linux/Kernel 5.11.0 - 5.15.198linux
linux/Kernel 5.16.0 - 6.6.120linux
linux/Kernel 6.2.0 - 6.12.64linux
linux/Kernel 6.7.0 - 6.18.4linux
Linux/Linux < 5.16
Linux/Linux 307d2e6cebfca9d92f86c8e2c8e3dd4a8be46ba6
Linux/Linux 3e3b5dfcd16a3e254aab61bd1e8c417dd4503102 - 1ab526d97a57e44d26fadcc0e9adeb9c0c0182f5
Linux/Linux 3e3b5dfcd16a3e254aab61bd1e8c417dd4503102 - 6b93c8ab6f6cda8818983a4ae3fcf84b023037b4
Linux/Linux 3e3b5dfcd16a3e254aab61bd1e8c417dd4503102 - 8fc4632fb508432895430cd02b38086bdd649083
... and 19 more
Published Jan 13, 2026
Tracked Since Feb 18, 2026