CVE-2026-31463
Invalid Folio Access Vulnerability in Linux Kernel iomap Component
Publication date: 2026-04-22
Last updated on: 2026-04-27
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux_kernel | linux_kernel | * |
| 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 iomap subsystem, where invalid folio access can occur when the block size (i_blkbits) differs from the I/O granularity. Specifically, the fix for invalid folio access after folio_end_read() did not cover cases where the folio size matches 1 << inode->i_blkbits but differs from the I/O granularity. This mismatch can cause I/O operations to be submitted for less than the full folio, leading to a situation where the current folio context is not properly invalidated. As a result, iomap_read_end() may be called on a folio that the I/O helper owns, potentially causing incorrect handling of the read operation.
How can this vulnerability impact me? :
The vulnerability can lead to improper handling of memory folios during I/O operations in the Linux kernel. This may cause data corruption or unexpected behavior during read operations, as the kernel might operate on folios that are no longer valid or owned by the I/O helper. Such issues could affect system stability, data integrity, and reliability of file system operations.