CVE-2025-71309
N/A
Summary
In the Linux kernel, the following vulnerability has been resolved:
fs/ntfs3: fix deadlock in ni_read_folio_cmpr
Syzbot reported a task hung in ni_readpage_cmpr (now ni_read_folio_cmpr). This is caused by a lock inversion deadlock involving the inode mutex (ni_lock) and page locks.
Scenario:
- Task A enters ntfs_read_folio() for page X. It acquires ni_lock.
- Task A calls ni_read_folio_cmpr(), which attempts to lock all pages in the compressed frame (including page Y).
- Concurrently, Task B (e.g., via readahead) has locked page Y and calls ntfs_read_folio().
- Task B waits for ni_lock (held by A).
- Task A waits for page Y lock (held by B). -> DEADLOCK.
The fix is to restructure locking: do not take ni_lock in ntfs_read_folio(). Instead, acquire ni_lock inside ni_read_folio_cmpr() ONLY AFTER all required page locks for the frame have been successfully acquired. This restores the correct lock ordering (Page Lock -> ni_lock) consistent with VFS.
[almaz.alexandrovich@paragon-software.com: ni_readpage_cmpr was renamed to ni_read_folio_cmpr]
Affected Software
| Vendor | Product | Version Range | Status |
|---|---|---|---|
| Linux | Linux | f35590ee26f5722bfe12cdff14396c4c057a8f74 < cfe246b318106e1691bd6c9466c739e8559d25c2 | affected |
| Linux | Linux | f35590ee26f5722bfe12cdff14396c4c057a8f74 < e37a75bb866c29da954b51d0dd7670406246d9ee | affected |
| Linux | Linux | 6.19 | affected |
| Linux | Linux | 0 < 6.19 | unaffected |
| Linux | Linux | 6.19.4 <= 6.19.* | unaffected |
| Linux | Linux | 7.0 <= * | unaffected |
Weaknesses
References
- https://git.kernel.org/stable/c/cfe246b318106e1691bd6c9466c739e8559d25c2
- https://git.kernel.org/stable/c/e37a75bb866c29da954b51d0dd7670406246d9ee
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.