CVE-2026-63815

Source
https://cve.org/CVERecord?id=CVE-2026-63815
Import Source
https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2026-63815.json
JSON Data
https://api.test.osv.dev/v1/vulns/CVE-2026-63815
Downstream
Related
Published
2026-07-19T12:02:15.345Z
Modified
2026-07-29T03:30:32.130710426Z
Severity
  • 8.4 (High) CVSS_V3 - CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H CVSS Calculator
Summary
f2fs: bound i_inline_xattr_size for non-inline-xattr inodes
Details

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

f2fs: bound iinlinexattr_size for non-inline-xattr inodes

When the flexibleinlinexattr feature is enabled, doreadinode() loads the on-disk iinlinexattr_size unconditionally:

if (f2fs_sb_has_flexible_inline_xattr(sbi))
    fi->i_inline_xattr_size = le16_to_cpu(ri->i_inline_xattr_size);

but sanitycheckinode() only range-checks it when the inode also has the FIINLINEXATTR flag set. An inode that carries an inline dentry or inline data but not FIINLINEXATTR -- the normal layout for an inline directory -- therefore keeps a fully attacker-controlled iinlinexattr_size from a crafted image.

getinlinexattr_addrs() returns that value with no flag gating, so it feeds the inode geometry:

MAX_INLINE_DATA()  = 4 * (CUR_ADDRS_PER_INODE - i_inline_xattr_size - 1)
NR_INLINE_DENTRY() = MAX_INLINE_DATA() * BITS_PER_BYTE / (...)
addrs_per_page()   = CUR_ADDRS_PER_INODE - i_inline_xattr_size

A large iinlinexattrsize drives MAXINLINEDATA() and NRINLINEDENTRY() negative, so makedentryptrinline() sets d->max (int) to a negative value. The inline directory walk then compares an unsigned long bit_pos against that negative d->max, which is promoted to a huge unsigned bound, and reads far past the inline area:

while (bit_pos < d->max)        /* fs/f2fs/dir.c */
    ... test_bit_le(bit_pos, d->bitmap) / d->dentry[bit_pos] ...

Mounting a crafted image and reading such a directory triggers an out-of-bounds read in f2fsfilldentries(); the same underflow also corrupts ADDRSPERINODE for regular files.

Validate iinlinexattrsize against MAXINLINEXATTRSIZE whenever the flexibleinlinexattr feature is enabled -- i.e. whenever the value is loaded from disk and consumed -- and keep the lower MININLINEXATTRSIZE bound gated on inodes that actually carry an inline xattr, so legitimate inodes with iinlinexattrsize == 0 are still accepted.

Database specific
{
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/63xxx/CVE-2026-63815.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
6afc662e68b5f988282ff20afd58a89b1c279dca
Fixed
3c8d6b4093aea40a20596f452289e7c22d84e6d5
Fixed
a08ee30dcbeff6b97df75c38c2589603ddde53a6
Fixed
c3e05522daae4e7348a1ea81eeb321d25aa0fd3b
Fixed
76e1a05cf6d4051931d7fa4ead51a05786a62918
Fixed
2a9f9791653ba5ed3fb45bbffa8d63a7cd5cf706
Fixed
4ce2d52f680c1d8bfdad7cce05b815ea7ca9790d
Fixed
16bc237ce3c483b75575abea53cfb639745311ed
Fixed
378acf3cf19b6af6cba55e8dd1154c4e1504bae8

Database specific

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

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
4.15.0
Fixed
5.10.261
Type
ECOSYSTEM
Events
Introduced
5.11.0
Fixed
5.15.212
Type
ECOSYSTEM
Events
Introduced
5.16.0
Fixed
6.1.178
Type
ECOSYSTEM
Events
Introduced
6.2.0
Fixed
6.6.145
Type
ECOSYSTEM
Events
Introduced
6.7.0
Fixed
6.12.96
Type
ECOSYSTEM
Events
Introduced
6.13.0
Fixed
6.18.39
Type
ECOSYSTEM
Events
Introduced
6.19.0
Fixed
7.1.3

Database specific

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