CVE Catalog

CVE-2026-80868

Unknown
Published: Translated: NVD NIST

Summary

In the Linux kernel's NTFS3 filesystem, the allocation of inline_data used kmemdup, which did not guarantee page alignment. This caused a BUG in iomap_write_end_inline when the inline data validity check failed. The fix allocates with alloc_page to ensure page alignment.

Risk Assessment

The bug could lead to a system crash during write operations on an NTFS partition, potentially causing data loss or service interruption.

Recommendation

Apply the kernel patch that changes inline_data allocation to alloc_page to ensure page alignment.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: ntfs3: Allocate iomap inline_data using alloc_page This fixes a BUG reported in iomap_write_end_inline: iomap_inline_data_valid checks that the inline_data fits within a page. If the inline_data is allocated with kmemdup there's no guarantee that it's page-aligned, so the check sometimes fails. Allocate it with alloc_page to ensure it's page-aligned.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS