CVE-2025-71069

Source
https://cve.org/CVERecord?id=CVE-2025-71069
Import Source
https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2025-71069.json
JSON Data
https://api.test.osv.dev/v1/vulns/CVE-2025-71069
Downstream
Related
Published
2026-01-13T15:31:23.948Z
Modified
2026-03-12T04:30:26.404606Z
Summary
f2fs: invalidate dentry cache on failed whiteout creation
Details

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

f2fs: invalidate dentry cache on failed whiteout creation

F2FS can mount filesystems with corrupted directory depth values that get runtime-clamped to MAXDIRHASHDEPTH. When RENAMEWHITEOUT operations are performed on such directories, f2fsrename performs directory modifications (updating target entry and deleting source entry) before attempting to add the whiteout entry via f2fsadd_link.

If f2fsaddlink fails due to the corrupted directory structure, the function returns an error to VFS, but the partial directory modifications have already been committed to disk. VFS assumes the entire rename operation failed and does not update the dentry cache, leaving stale mappings.

In the error path, VFS does not call dmove() to update the dentry cache. This results in newdentry still pointing to the old inode (newinode) which has already had its inlink decremented to zero. The stale cache causes subsequent operations to incorrectly reference the freed inode.

This causes subsequent operations to use cached dentry information that no longer matches the on-disk state. When a second rename targets the same entry, VFS attempts to decrement inlink on the stale inode, which may already have inlink=0, triggering a WARNING in drop_nlink().

Example sequence: 1. First rename (RENAMEWHITEOUT): file2 → file1 - f2fs updates file1 entry on disk (points to inode 8) - f2fs deletes file2 entry on disk - f2fsaddlink(whiteout) fails (corrupted directory) - Returns error to VFS - VFS does not call dmove() due to error - VFS cache still has: file1 → inode 7 (stale!) - inode 7 has i_nlink=0 (already decremented)

  1. Second rename: file3 → file1
    • VFS uses stale cache: file1 → inode 7
    • Tries to dropnlink on inode 7 (inlink already 0)
    • WARNING in drop_nlink()

Fix this by explicitly invalidating olddentry and newdentry when f2fsaddlink fails during whiteout creation. This forces VFS to refresh from disk on subsequent operations, ensuring cache consistency even when the rename partially succeeds.

Reproducer: 1. Mount F2FS image with corrupted icurrentdepth 2. renameat2(file2, file1, RENAMEWHITEOUT) 3. renameat2(file3, file1, 0) 4. System triggers WARNING in dropnlink()

Database specific
{
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2025/71xxx/CVE-2025-71069.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
7e01e7ad746bc8198a8b46163ddc73a1c7d22339
Fixed
7f2bae0c881aa1e0a6318756df692cc13df2cc83
Fixed
3d95ed8cf980fdfa67a3ab9491357521ae576168
Fixed
64587ab4d1f16fc94f70e04fa87b2e3f69f8a7bb
Fixed
3d65e27e57aaa9d66709fda4cbfb62a87c04a3f5
Fixed
c89845fae250efdd59c1d4ec60e9e1c652cee4b6
Fixed
0dde30753c1e8648665dbe069d814e540ce2fd37
Fixed
d33f89b34aa313f50f9a512d58dd288999f246b0

Database specific

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

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
4.2.0
Fixed
5.10.248
Type
ECOSYSTEM
Events
Introduced
5.11.0
Fixed
5.15.198
Type
ECOSYSTEM
Events
Introduced
5.16.0
Fixed
6.1.160
Type
ECOSYSTEM
Events
Introduced
6.2.0
Fixed
6.6.120
Type
ECOSYSTEM
Events
Introduced
6.7.0
Fixed
6.12.64
Type
ECOSYSTEM
Events
Introduced
6.13.0
Fixed
6.18.3

Database specific

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