CVE-2025-37785: ext4: fix OOB read when checking dotdot dir

Description

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

ext4: fix OOB read when checking dotdot dir

Mounting a corrupted filesystem with directory which contains '.' dir
entry with rec_len == block size results in out-of-bounds read (later
on, when the corrupted directory is removed).

ext4_empty_dir() assumes every ext4 directory contains at least '.'
and '..' as directory entries in the first data block. It first loads
the '.' dir entry, performs sanity checks by calling ext4_check_dir_entry()
and then uses its rec_len member to compute the location of '..' dir
entry (in ext4_next_entry). It assumes the '..' dir entry fits into the
same data block.

If the rec_len of '.' is precisely one block (4KB), it slips through the
sanity checks (it is considered the last directory entry in the data
block) and leaves "struct ext4_dir_entry_2 *de" point exactly past the
memory slot allocated to the data block. The following call to
ext4_check_dir_entry() on new value of de then dereferences this pointer
which results in out-of-bounds mem access.

Fix this by extending __ext4_check_dir_entry() to check for '.' dir
entries that reach the end of data block. Make sure to ignore the phony
dir entries for checksum (by checking name_len for non-zero).

Note: This is reported by KASAN as use-after-free in case another
structure was recently freed from the slot past the bound, but it is
really an OOB read.

This issue was found by syzkaller tool.

Call Trace:
[ 38.594108] BUG...

Classification

CVE ID: CVE-2025-37785

Affected Products

Vendor: Linux

Product: Linux

Exploit Prediction Scoring System (EPSS)

EPSS Score: 0.02% (probability of being exploited)

EPSS Percentile: 5.06% (scored less or equal to compared to others)

EPSS Date: 2025-04-18 (when was this score calculated)

References

https://nvd.nist.gov/vuln/detail/CVE-2025-37785
https://git.kernel.org/stable/c/e47f472a664d70a3d104a6c2a035cdff55a719b4
https://git.kernel.org/stable/c/b7531a4f99c3887439d778afaf418d1a01a5f01b
https://git.kernel.org/stable/c/89503e5eae64637d0fa2218912b54660effe7d93
https://git.kernel.org/stable/c/52a5509ab19a5d3afe301165d9b5787bba34d842
https://git.kernel.org/stable/c/b47584c556444cf7acb66b26a62cbc348eb92b78
https://git.kernel.org/stable/c/ac28c5684c1cdab650a7e5065b19e91577d37a4b
https://git.kernel.org/stable/c/53bc45da8d8da92ec07877f5922b130562eb4b00
https://git.kernel.org/stable/c/d5e206778e96e8667d3bde695ad372c296dc9353

Timeline