CVE-2026-89781 PUBLISHED

fs/ntfs3: fix out-of-bounds read in read_log_rec_buf()

Assigner: Linux
Reserved: 11.09.2026 Published: 16.09.2026 Updated: 16.09.2026

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

fs/ntfs3: fix out-of-bounds read in read_log_rec_buf()

read_log_rec_buf() copies a log record into a caller buffer starting at

<pre>u32 off = lsn_to_page_off(log, lsn) + log->record_header_len; </pre>

log->record_header_len (and log->data_off, used for the following pages) comes verbatim from the on-disk restart area and is only checked for 8-byte alignment in is_rst_area_valid(), so off can exceed log->page_size. "tail = log->page_size - off" then underflows and memcpy() reads past the page_size-sized buffer returned by read_log_page(), spilling adjacent slab memory into the replay buffer.

This is reachable by mounting a crafted NTFS image:

BUG: KASAN: slab-out-of-bounds in read_log_rec_buf+0x216/0x580 Read of size 64 at addr ffff88800a877ff8 by task exploit/127 read_log_rec_buf fs/ntfs3/fslog.c:2299 log_replay fs/ntfs3/fslog.c:4216 ntfs_loadlog_and_replay fs/ntfs3/fsntfs.c:324 ntfs_fill_super fs/ntfs3/super.c:1392 get_tree_bdev_flags fs/super.c:1694 __x64_sys_mount fs/namespace.c:4360 The buggy address is located 4088 bytes to the right of the 4096-byte region [ffff88800a876000, ffff88800a877000)

Reject an in-page offset outside the current page before the copy.

[almaz.alexandrovich@paragon-software.com: replaced the >= sign with >]

Metrics

CVSS Vector: CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
CVSS Score: 8.4

AV:L - The OOB read is reached only while mounting a local NTFS volume (path_mount→ntfs_fill_super→ntfs_loadlog_and_replay→log_replay→read_rst_area/find_log_rec→read_log_rec_buf). ksmbd/nfsd never parse $LogFile; journal replay runs at fill_super, not while serving exported files. AC:L - rec_hdr_len and data_off in the on-disk restart area are attacker-controlled and only checked for 8-byte alignment, so off=lsn_to_page_off()+record_header_len (and later data_off) can exceed page_size. The u32 tail underflow and memcpy past the kmalloc(page_size) log page are deterministic with no race. PR:N - No account or privilege on the victim is required: a crafted NTFS volume on USB/removable media, a disk image, or shared storage is sufficient for udisks2/systemd automount or an administrator mount to run $LogFile replay as root. UI:N - Desktop, kiosk, automotive, and shared-workstation automounters mount attacker-supplied NTFS media and run log_replay() inside ntfs_fill_super() without the user opening files or confirming a dialog; attaching the crafted volume is sufficient. S:U - The slab out-of-bounds read occurs in the host kernel during ntfs3 journal replay in the mounting process; impact stays within one kernel security authority and is not a VM escape or IOMMU/DMA bypass. C:H - memcpy() copies attacker-chosen client_data_len bytes from past the page_size log-page slab into the replay buffer, spilling adjacent heap. client_data_len is only bounded by kmalloc success on the restart-area path, so this is an unbounded heap OOB read (Confidentiality High), not a few-byte leak. I:H - With a valid rec_hdr_len and oversized data_off, multi-page log records keep an attacker-controlled LOG_REC_HDR then fill the rest from adjacent slab (including same-size log pages from the crafted image). do_action then memmove()s that buffer into kmalloc'd MFT and index objects, yielding kernel writes from attacker-influenced heap contents. A:H - An oversized rec_hdr_len or data_off plus a large client_data_len drives memcpy() far past the 4KiB log-page allocation into unmapped slab or guard pages, causing a kernel oops or panic on mount. The crash is repeatable on every mount of the crafted NTFS volume.

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from b46acd6a6a627d876898e1c84d3f84902264b445 to df099bfdb57773ba7f40f8a9dcc82e75af277922 (excl.)
  • affected from b46acd6a6a627d876898e1c84d3f84902264b445 to 1b2d31f1083beb80c55d1152249f652c1445a559 (excl.)
  • affected from b46acd6a6a627d876898e1c84d3f84902264b445 to 700973cc65db405bde0368ccf88699390150943e (excl.)
  • affected from b46acd6a6a627d876898e1c84d3f84902264b445 to 49f7cbc902b08b56eb7d2633163ecc57a0e7145a (excl.)
  • affected from b46acd6a6a627d876898e1c84d3f84902264b445 to 74a83aa05f73033af719771ab1f0c269928b4865 (excl.)
  • affected from b46acd6a6a627d876898e1c84d3f84902264b445 to 53e56f7aa1d0f950a8bc2e4cdb3ba9fe45967531 (excl.)
  • affected from b46acd6a6a627d876898e1c84d3f84902264b445 to de603b9d377fab57a5e6432fa84a9f36b32c1636 (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 5.15 is affected
  • unaffected from 0 to 5.15 (excl.)
  • unaffected from 5.15.221 to 5.15.* (incl.)
  • unaffected from 6.1.188 to 6.1.* (incl.)
  • unaffected from 6.6.157 to 6.6.* (incl.)
  • unaffected from 6.12.110 to 6.12.* (incl.)
  • unaffected from 6.18.52 to 6.18.* (incl.)
  • unaffected from 7.2.6 to 7.2.* (incl.)
  • unaffected from 7.3-rc1 to * (incl.)

References