CVE-2026-31465
Writeback Sync Hang Vulnerability in Linux Kernel Filesystems
Publication date: 2026-04-22
Last updated on: 2026-04-22
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux_kernel | linux_kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
What immediate steps should I take to mitigate this vulnerability?
The vulnerability is resolved by a kernel update that adds a superblock flag (SB_I_NO_DATA_INTEGRITY) for filesystems without data integrity guarantees, such as fuse. To mitigate this vulnerability, you should update your Linux kernel to a version that includes this fix.
This update prevents the kernel from blocking sync operations on such filesystems, avoiding hangs during suspend-to-RAM caused by waiting on flusher threads.
Can you explain this vulnerability to me?
This vulnerability relates to the Linux kernel's handling of writeback synchronization for filesystems that do not guarantee data integrity, such as fuse. Previously, the kernel would wait on flusher threads to complete writeback during sync operations, which could cause hangs, especially in scenarios like suspend-to-RAM when the fuse daemon is frozen or buggy.
The fix introduces a superblock-level flag (SB_I_NO_DATA_INTEGRITY) to indicate filesystems without data integrity guarantees. For these filesystems, sync initiates writeback of dirty inodes but does not wait for the flusher threads to finish, preventing the system from hanging.
How can this vulnerability impact me? :
If affected, this vulnerability can cause the system to hang during sync operations, particularly during suspend-to-RAM, when using filesystems like fuse that do not guarantee data integrity. This happens because the kernel waits on flusher threads that may be blocked if the fuse daemon is frozen or malfunctioning.
Such hangs can lead to system unresponsiveness, potentially causing data loss or requiring a hard reboot, impacting system stability and availability.