PatchSiren cyber security CVE debrief
CVE-2026-46002 Linux CVE debrief
A vulnerability in the Linux kernel's ext2 filesystem implementation allows corrupted inodes with zero link count but valid mode bits to reach VFS operations, triggering kernel warnings. The flaw exists in ext2_iget(), which failed to reject inodes where i_nlink == 0 with non-zero i_mode and zero i_dtime—a combination that can only result from filesystem corruption. When such inodes are processed through ext2_unlink(), ext2_rename(), or ext2_rmdir(), they invoke drop_nlink() with an already-zero link count, causing WARN_ON assertions. The fix extends existing validation to reject these corrupted inodes at load time with -EFSCORRUPTED, preventing them from reaching namei.c paths. This vulnerability was discovered by the Linux Verification Center using Syzkaller.
- Vendor
- Linux
- Product
- Unknown
- CVSS
- MEDIUM 5.5
- CISA KEV
- Not listed in stored evidence
- Original CVE published
- 2026-05-27
- Original CVE updated
- 2026-06-16
- Advisory published
- 2026-05-27
- Advisory updated
- 2026-06-16
Who should care
Linux system administrators maintaining ext2 filesystems, security teams monitoring for filesystem-based attacks, kernel developers working on filesystem drivers, and organizations running systems that process untrusted filesystem images in sandboxed or virtualized environments.
Technical summary
The ext2_iget() function in the Linux kernel's ext2 filesystem driver contains insufficient validation for corrupted inode states. While it already rejected inodes with i_nlink == 0 when i_mode is zero or i_dtime is set, it failed to handle the case where i_nlink == 0 with valid i_mode and zero i_dtime. Since ext2 lacks an orphan list, this state can only occur through filesystem corruption. A crafted ext2 image can present such inodes to the VFS, which then triggers WARN_ON assertions in drop_nlink() when processed through unlink, rename, or rmdir operations. The vulnerability is addressed by extending the existing validation to reject these inodes at load time with -EFSCORRUPTED.
Defensive priority
medium
Recommended defensive actions
- Apply kernel updates containing the referenced stable commits when available for your distribution
- Monitor kernel logs for ext2 filesystem corruption warnings as indicators of potential exploitation attempts
- Consider filesystem integrity checks on ext2 volumes that may have been exposed to untrusted images
- Review systems that process untrusted ext2 filesystem images, particularly in container or virtualization environments
Evidence notes
The CVE description provides kernel stack traces showing WARN_ON triggers in drop_nlink() via three distinct code paths: ext2_unlink() at fs/ext2/namei.c:295, ext2_rename() at fs/ext2/namei.c:374, and ext2_rmdir() at fs/ext2/namei.c:311. The fix involves extending the i_nlink == 0 validation check in ext2_iget() to catch cases where i_mode is non-zero and i_dtime is zero. Multiple stable kernel commits are referenced, indicating backports across supported versions.
Sources and references
Verified primary and authoritative sources
-
CVE-2026-46002 CVE Program record
Publisher, destination, and source semantics verified
URL: https://www.cve.org/CVERecord?id=CVE-2026-46002
CVE Program - Official CVE Program record with source-provided CVE metadata.
-
CVE-2026-46002 NVD vulnerability detail
Publisher, destination, and source semantics verified
URL: https://nvd.nist.gov/vuln/detail/CVE-2026-46002
NIST National Vulnerability Database - Official NIST NVD detail page and source-specific vulnerability assessment.
Supplemental references
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/25947cc5b2374cd5bf627fe3141496444260d04f
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/2dde6377ab2e46bb80cf066c659ef016f3ad7a9b
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/32e0b925572686399243834ec99e2a9d85c62eae
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/470264bbec499e276a89a6431144ae58f411ea4d
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/d3af04a43db86379df7438bf8bade71685b8a239
416baaa9-dc9f-4396-8d5f-8c081fb06d67
Methodology and review provenance
AI-assisted synthesis based on stored public vulnerability evidence. System validation, approval state, and publication status do not by themselves establish human review of this revision. PatchSiren helps prioritize defensive review and does not prove exposure or remediation on any system.