CVEFinder.io

CVE-2026-31452

⚠️ high
🔍 Scan for this CVE
Summary

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 cause

Description

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. ext4_write_inline_data() hits BUG_ON(write_size > inline_capacity)

The crash occurs because ext4_write_inline_data() expects inline storage
to accommodate the write, but the actual inline capacity (~60 bytes for
i_block + ~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 (EXT4_I(inode)->i_inline_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.

CVSS Score
7.8
High
EPSS Score
0.1
Exploit Probability
Published Date
2026-04-22
First Seen: 2026-07-15
📊 Relative Risk Intelligence

This CVE is Moderate Risk - more severe than 69.5% of all 335,187 vulnerabilities in our database.

#102,106
Above average severity
Severity Percentile
Last Modified 2026-07-14
Source NVD 🔗
CVSS Vector 3.1 CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
CWE IDs (Weakness Types)

📦 Affected Products 8

🔗 References 10

🔗 Related CVEs 6

CVE ID Severity CVSS EPSS Summary Published
CVE-2026-53325 🔶 medium 5.5 0.1 In the Linux kernel, the following vulnerability has been resolved: agp/amd64: Fix broken error propagation in agp_amd6... 2026-06-29
CVE-2026-53324 🔶 medium 5.5 0.1 In the Linux kernel, the following vulnerability has been resolved: net: mana: Use pci_name() for debugfs directory nam... 2026-06-26
CVE-2026-53323 🔶 medium 5.5 0.1 In the Linux kernel, the following vulnerability has been resolved: net: dsa: remove redundant netdev_lock_ops() from c... 2026-06-26
CVE-2026-53322 ⚠️ high 8.8 0.2 In the Linux kernel, the following vulnerability has been resolved: vfio/pci: Clean up DMABUFs before disabling functio... 2026-06-26
CVE-2026-53321 🔶 medium 5.5 0.1 In the Linux kernel, the following vulnerability has been resolved: io_uring/napi: cap busy_poll_to 10 msec Currently ... 2026-06-26
CVE-2026-53320 🔶 medium 5.5 0.1 In the Linux kernel, the following vulnerability has been resolved: nilfs2: reject zero bd_oblocknr in nilfs_ioctl_mark... 2026-06-26
These CVEs affect the same products