CVE-2026-72186 is not a bug in the NTFS write path — it's a missing enforcement at the abstraction boundary between the driver internals and the VFS interface. The NTFS driver exposes internal metadata inodes ($Bitmap, $Volume, and similar system files) through the show_sys_files callback, which makes them visible to userspace. Internal driver code writes to these inodes directly through internal buffers, bypassing VFS entirely — this path is safe. But the same inodes were simultaneously exposed through the file interface where writes route through VFS, which the driver never designed for. The page cache and cluster allocator assume single-writer semantics on these files; userspace writes corrupt that assumption.

The fix applies an immutable flag to these inodes at read time, effectively retrofitting a permission contract the interface should have enforced from the start. This is correct as a near-term remediation, but it masks rather than fixes the underlying architectural gap: internal writes and VFS writes share the same page cache without proper synchronization between inode locking and folio locking semantics.

From a defensive standpoint, three things matter. First, this is a textbook API design failure — the exposure was almost certainly debugging scaffolding (chfs, forensic tooling) that escaped into production rather than a designed interface. Second, watch for the race condition: the immutable flag is set during ntfs_read_inode_mount, creating a narrow window between inode allocation and flag application where a concurrent write could slip through. This is the same TOCTOU pattern that has produced CVEs in ext2/3/4 and XFS when inode permission flags are set in read paths rather than atomically at allocation. Third, the EPSS suggests low exploitation likelihood, but the CVSS 9.1 reflects genuine catastrophic potential: successful exploitation causes full volume corruption with no recovery path.

Prioritize the patch, but treat the architectural gap as technical debt that will surface again in any driver exposing internal metadata to userspace.