CVE-2026-64326 Details
Description
In the Linux kernel, the following vulnerability has been resolved: block: skip sync_blockdev() on surprise removal in bdev_mark_dead() bdev_mark_dead()'s @surprise == true means the device is already gone. The filesystem callback fs_bdev_mark_dead() honours this and skips sync_filesystem(), but the bare block device path (no ->mark_dead op) lost its !surprise guard when the holder ->mark_dead callback was wired up (see Fixes), and now calls sync_blockdev() unconditionally, which can hang forever waiting on writeback that can no longer complete. syzkaller hit this via nvme_reset_work()'s "I/O queues lost" path: nvme_mark_namespaces_dead() -> blk_mark_disk_dead() -> bdev_mark_dead(bdev, true) -> sync_blockdev() blocks in folio_wait_writeback(), wedging the reset worker and every task waiting on it. Skip the sync on surprise removal, matching fs_bdev_mark_dead(); invalidate_bdev() still runs. Orderly removal (surprise == false) is unchanged. Found by FuzzNvme(Syzkaller with FEMU fuzzing framework).
A denial-of-service vulnerability has been identified in the Linux kernel's block device management. The issue arises in the 'bdev_mark_dead()' function, which handles the removal of block devices. When a device is unexpectedly removed, the function should skip certain operations to prevent hanging indefinitely. However, a recent change inadvertently removed a safeguard, causing the function to always synchronize the block device with the filesystem. This synchronization can block forever, waiting for I/O operations that will never complete. The vulnerability was discovered using the Syzkaller fuzzing tool, specifically through the 'nvme_reset_work()' process, which encountered a deadlock situation.
The vulnerability has been addressed in the Linux kernel. Users should upgrade to the latest version available in the Linux kernel stable tree.
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://git.kernel.org/stable/c/49f06cff50a4ccf3b7a1a662ceb892b3b21a527a | kernel.org | Patch |
| https://git.kernel.org/stable/c/9818bcae3c0ca1dde4b9a334125c46676e0a9b29 | kernel.org | Patch |
| https://git.kernel.org/stable/c/aa4c4a9315764b2b7a7182e72cc5ea87520436b4 | kernel.org | Patch |
| https://git.kernel.org/stable/c/d6998ddd507c81e3829489a6ead23f17f5acb7fe | kernel.org | Patch |
| https://git.kernel.org/stable/c/f41cf35ee2a1e31374b3f54e7579c55153506e70 | kernel.org | Patch |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| NVD-CWE-noinfo | Insufficient Information to Classify Weakness | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| linux linux kernel | >= 6.6, < 6.6.145 >= 6.7, < 6.12.96 >= 6.13, < 6.18.39 >= 6.19, < 7.1.4 |
CPE
Remediation
| |
Change History
3 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Sep 4, 2026 | Initial Analysis | [email protected] |
| Aug 17, 2026 | CVE Modified | kernel.org |
| Jul 25, 2026 | New CVE Received | kernel.org |