CVE-2026-72193

Source
https://cve.org/CVERecord?id=CVE-2026-72193
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-72193.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2026-72193
Downstream
Published
2026-08-15T05:53:53.381Z
Modified
2026-08-18T03:31:14.944239114Z
Summary
ntfs3: cap RESTART_TABLE free-chain walker at rt->used
Details

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

ntfs3: cap RESTART_TABLE free-chain walker at rt->used

A crafted NTFS3 disk image triggers an in-kernel infinite loop at mount time, hanging the mounting thread and firing the soft-lockup watchdog within ~22s on multi-CPU hosts (panic with kernel.softlockuppanic=1). The bug is reachable from desktop USB auto-mount on distributions where udisks2 routes the NTFS signature to the in-tree ntfs3 driver (Arch family and an increasing fraction of Fedora / openSUSE / RHEL deployments); CAPSYS_ADMIN-class manual mount elsewhere.

checkrstbl()'s second walker iterates the free-entry singly-linked list headed by rt->firstfree with no upper bound on iteration count:

for (off = ff; off;) { if (off == RESTARTENTRYALLOCATED) return false; off = le32tocpu(*(__le32 *)Add2Ptr(rt, off)); if (off > ts - sizeof(__le32)) return false; }

The existing guards cover three exits: end-of-list (off == 0), the in-use marker (off == RESTARTENTRYALLOCATED), and out-of-bounds (off > ts - sizeof(__le32)). None of the three prevents an in-bounds cycle.

A crafted on-disk RESTART_TABLE whose free chain contains a self-loop or A->B->A cycle whose offsets satisfy:

  • in range [sizeof(struct RESTART_TABLE), ts - sizeof(__le32)]
  • (off - sizeof(struct RESTART_TABLE)) % rsize == 0

passes all existing guards and spins the mount-time thread forever. Reproduced in UML by hand-forging a 2 MB NTFS3 image whose journal RESTARTTABLE firstfree = 0x18 and whose entry at offset 0x18 stores 0x18 as its next pointer; mount of the forged image with the in-tree ntfs3 driver never returns.

Bound the walker by rt->used. Each entry on a legitimate free chain is unique, and the total slot count is ne = le16tocpu (rt->used). A traversal that visits more than ne slots is by construction malformed; reject it as a corrupt RESTART_TABLE.

After this patch, mount of the forged image returns with -EINVAL and a log_replay failure message, and mkntfs-produced legitimate images mount cleanly (verified in the same UML harness).

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/72xxx/CVE-2026-72193.json"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
b46acd6a6a627d876898e1c84d3f84902264b445
Fixed
8128bec895075253c779d67afdc90ae513265fca
Fixed
7972df425687daa70d971fe6ed415e78683133dd
Fixed
7ac4c86915c24c208a0f0611b71d9676686fe756
Fixed
29b86dbe88cbbef53bb9aaec2e279359f8c450f8
Fixed
0fad25687d4d3fa1fdd313d31b9cb5817c425029
Fixed
d313416280d41bea272f02a6034dfa88008692a0
Fixed
9611f644302c07d21bc8af97e3e06a3d30064253

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-72193.json"

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
5.15.0
Fixed
5.15.212
Type
ECOSYSTEM
Events
Introduced
5.16.0
Fixed
6.1.178
Type
ECOSYSTEM
Events
Introduced
6.2.0
Fixed
6.6.145
Type
ECOSYSTEM
Events
Introduced
6.7.0
Fixed
6.12.97
Type
ECOSYSTEM
Events
Introduced
6.13.0
Fixed
6.18.40
Type
ECOSYSTEM
Events
Introduced
6.19.0
Fixed
7.1.5

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-72193.json"