CVE-2026-31452

Source
https://cve.org/CVERecord?id=CVE-2026-31452
Import Source
https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2026-31452.json
JSON Data
https://api.test.osv.dev/v1/vulns/CVE-2026-31452
Downstream
Related
Published
2026-04-22T13:53:46.917Z
Modified
2026-06-19T08:29:25.755149939Z
Summary
ext4: convert inline data to extents when truncate exceeds inline size
Details

In the Linux kernel, the following vulnerability has been resolved:

ext4: convert inline data to extents when truncate exceeds inline size

Add a check in ext4_setattr() to convert files from inline data storage to extent-based storage when truncate() grows the file size beyond the inline capacity. This prevents the filesystem from entering an inconsistent state where the inline data flag is set but the file size exceeds what can be stored inline.

Without this fix, the following sequence causes a kernel BUG_ON():

  1. Mount filesystem with inode that has inline flag set and small size
  2. truncate(file, 50MB) - grows size but inline flag remains set
  3. sendfile() attempts to write data
  4. ext4writeinlinedata() hits BUGON(writesize > inlinecapacity)

The crash occurs because ext4writeinlinedata() expects inline storage to accommodate the write, but the actual inline capacity (~60 bytes for iblock + ~96 bytes for xattrs) is far smaller than the file size and write request.

The fix checks if the new size from setattr exceeds the inode's actual inline capacity (EXT4I(inode)->iinline_size) and converts the file to extent-based storage before proceeding with the size change.

This addresses the root cause by ensuring the inline data flag and file size remain consistent during truncate operations.

Database specific
{
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/31xxx/CVE-2026-31452.json",
    "cna_assigner": "Linux"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
67cf5b09a46f72e048501b84996f2f77bc42e947
Fixed
110d7ef602659ce4d7947c5480f7ca2779696aaf
Fixed
f53a5d9f32924bc2a810d2df243b7714da58b636
Fixed
c047332be7195833a5c5126816c2502df8269fe4
Fixed
699bac4d4c951974d55b045c983d1de777215949
Fixed
7920dcc571cef3d8aa9ee109c136125d61d41669
Fixed
93cb2d103e5c707de0f7ad58a39b7f0fddc27aa6
Fixed
07c1a31af18290054da3d18221b8bf58983c5d3a
Fixed
ed9356a30e59c7cc3198e7fc46cfedf3767b9b17

Database specific

source
"https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2026-31452.json"

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
3.8.0
Fixed
5.10.253
Type
ECOSYSTEM
Events
Introduced
5.11.0
Fixed
5.15.203
Type
ECOSYSTEM
Events
Introduced
5.16.0
Fixed
6.1.168
Type
ECOSYSTEM
Events
Introduced
6.2.0
Fixed
6.6.131
Type
ECOSYSTEM
Events
Introduced
6.7.0
Fixed
6.12.80
Type
ECOSYSTEM
Events
Introduced
6.13.0
Fixed
6.18.21
Type
ECOSYSTEM
Events
Introduced
6.19.0
Fixed
6.19.11

Database specific

source
"https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2026-31452.json"