CVE-2026-43127
N/A
N/A
Summary
In the Linux kernel, the following vulnerability has been resolved:
ntfs3: fix circular locking dependency in run_unpack_ex
Syzbot reported a circular locking dependency between wnd->rw_lock (sbi->used.bitmap) and ni->file.run_lock.
The deadlock scenario:
- ntfs_extend_mft() takes ni->file.run_lock then wnd->rw_lock.
- run_unpack_ex() takes wnd->rw_lock then tries to acquire ni->file.run_lock inside ntfs_refresh_zone().
This creates an AB-BA deadlock.
Fix this by using down_read_trylock() instead of down_read() when acquiring run_lock in run_unpack_ex(). If the lock is contended, skip ntfs_refresh_zone() - the MFT zone will be refreshed on the next MFT operation. This breaks the circular dependency since we never block waiting for run_lock while holding wnd->rw_lock.
Affected Software
| Vendor | Product | Version Range | Status |
|---|---|---|---|
| Linux | Linux | 5fc982fe7eca9d0cf7b25832450ebd4f7c8e1c36 < b014372b62237521444ee51384549bdf48b79015 | affected |
| Linux | Linux | 5fc982fe7eca9d0cf7b25832450ebd4f7c8e1c36 < b8d22d9d8260b0f4f4d8e2898c98037c9982ea66 | affected |
| Linux | Linux | 5fc982fe7eca9d0cf7b25832450ebd4f7c8e1c36 < 08ce2fee1b869ecbfbd94e0eb2630e52203a2e03 | affected |
| Linux | Linux | 57f7979aefdcef66326bda47e07ee0d8be64bf21 | affected |
| Linux | Linux | db7fc56646cafe39599a4c21f1398e2bdfd5c185 | affected |
| Linux | Linux | 6.6.66 < 6.7 | affected |
| Linux | Linux | 6.12.5 < 6.13 | affected |
| Linux | Linux | 6.13 | affected |
| Linux | Linux | 0 < 6.13 | unaffected |
| Linux | Linux | 6.18.16 <= 6.18.* | unaffected |
| Linux | Linux | 6.19.6 <= 6.19.* | unaffected |
| Linux | Linux | 7.0 <= * | unaffected |
Weaknesses
References
- https://git.kernel.org/stable/c/b014372b62237521444ee51384549bdf48b79015
- https://git.kernel.org/stable/c/b8d22d9d8260b0f4f4d8e2898c98037c9982ea66
- https://git.kernel.org/stable/c/08ce2fee1b869ecbfbd94e0eb2630e52203a2e03
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.