You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
ext4 use after free
About this tag
The ext4 use-after-free tag covers a specific Linux kernel vulnerability (CVE-2026-31446) where a race condition during filesystem unmount can lead to a use-after-free. The flaw occurs when update_super_work races with umount, causing sysfs teardown and delayed error notification to interfere. The fix tightens object-lifetime rules around sysfs notification to prevent a stale kernfs_node from being accessed after deletion. This is a subtle timing bug in teardown code that manifests under operational pressure, not a dramatic crash or remote exploit. The tag is relevant for Linux kernel developers, system administrators, and security researchers focused on filesystem stability and kernel hardening.
CVE-2026-31446 is a reminder that some of the most dangerous Linux kernel flaws are not dramatic crashes or headline-grabbing remote exploits, but small timing mistakes in teardown code that only appear under real operational pressure. In this case, the ext4 filesystem can hit a use-after-free...