CVE-2026-45985
BaseFortify
Publication date: 2026-05-27
Last updated on: 2026-05-27
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability exists in the Linux kernel's ext4 filesystem. It occurs when splitting an unwritten extent during block allocation in direct I/O (DIO) and writeback operations with dioread_nolock enabled. The issue arises because the EXT4_GET_BLOCKS_CONVERT flag is incorrectly set when calling ext4_split_convert_extents(), which can cause stale data to be exposed.
Specifically, when a large unwritten extent is split before submitting I/O, the code mistakenly converts the entire on-disk extent to a written state while leaving part of the extent as unwritten in the extent status tree. If the DIO write fails, this mismatch can lead to stale (old, invalid) data being exposed to users.
The fix involves not setting the EXT4_GET_BLOCKS_CONVERT flag during the split and ensuring the entire extent is zeroed out and marked consistently to prevent stale data exposure.
How can this vulnerability impact me? :
This vulnerability can lead to exposure of stale data on disk. If a direct I/O write operation fails after splitting an unwritten extent, the system may incorrectly mark parts of the data as written while the actual data is stale or invalid.
As a result, users or applications reading the affected files might receive outdated or incorrect data, which can cause data integrity issues, application errors, or potential data leakage if sensitive information is involved.
What immediate steps should I take to mitigate this vulnerability?
The vulnerability is resolved by a fix in the Linux kernel that prevents setting EXT4_GET_BLOCKS_CONVERT when splitting an unwritten extent before submitting I/O.
To mitigate this vulnerability, you should update your Linux kernel to a version that includes this fix.