Skip to main content

Linux Kernel CVE-2026-72202

| EUVDEUVD-2026-58960 HIGH
2026-08-15 416baaa9-dc9f-4396-8d5f-8c081fb06d67 GHSA-r757-m3xv-cw84
7.5
CVSS 3.1 · Vendor: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Share

Severity by source

Vendor (416baaa9-dc9f-4396-8d5f-8c081fb06d67) PRIMARY
7.5 HIGH
AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
vuln.today AI
4.7 MEDIUM

Local kernel driver path requires NTFS mount and OOM timing coincidence (AC:H, AV:L); PR:L reflects that mounting or operating on NTFS volumes implies at minimum local user access; no confidentiality or integrity impact described.

3.1 AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H
4.0 AV:L/AC:H/AT:P/PR:L/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
SUSE
4.7 MEDIUM
AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H
Red Hat
5.5 MEDIUM
qualitative

Primary rating from Vendor (416baaa9-dc9f-4396-8d5f-8c081fb06d67).

CVSS VectorVendor: 416baaa9-dc9f-4396-8d5f-8c081fb06d67

Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High

Lifecycle Timeline

5
Analysis Generated
Aug 17, 2026 - 07:37 vuln.today
CVSS changed
Aug 17, 2026 - 06:22 NVD
7.5 (HIGH)
Patch available
Aug 15, 2026 - 07:20 EUVD
CVE Published
Aug 15, 2026 - 06:21 cve.org
HIGH 7.5
CVE Published
Aug 15, 2026 - 06:21 cve.org
UNKNOWN (no severity yet)

DescriptionCVE.org

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

ntfs: avoid heap allocation for free-cluster readahead state

get_nr_free_clusters() allocates a temporary file_ra_state before it publishes the precomputed free cluster count, sets NVolFreeClusterKnown(), and wakes vol->free_waitq. If that allocation fails, the worker returns without setting the flag or waking waiters, so callers waiting for the free count can block indefinitely.

The readahead state is only used synchronously while scanning the bitmap. Keep it on the stack and pass it by address to the readahead helper. This eliminates the early allocation failure path instead of adding a special case that publishes a conservative count and wakes the waitqueue. Zero-initialize the on-stack state because file_ra_state_init() only sets ra_pages and prev_pos.

Apply the same treatment to __get_nr_free_mft_records(), which scans the MFT bitmap with the same short-lived readahead state.

AnalysisAI

Indefinite thread blocking in the Linux kernel's NTFS driver can cause a local denial of service on systems mounting NTFS volumes under memory pressure. Specifically, get_nr_free_clusters() and __get_nr_free_mft_records() allocate heap memory for a readahead state structure; if that allocation fails, neither NVolFreeClusterKnown() is set nor vol->free_waitq is woken, leaving any waiting kernel thread blocked indefinitely. Kernels prior to 7.1.5 and 7.2-rc1 are affected; no public exploit has been identified and EPSS is 0.20% (10th percentile).

Technical ContextAI

The vulnerability resides in the Linux kernel's legacy NTFS filesystem driver (ntfs/). The file_ra_state structure governs page-cache readahead when scanning filesystem bitmaps - specifically the free-cluster bitmap in get_nr_free_clusters() and the MFT (Master File Table) bitmap in __get_nr_free_mft_records(). In the vulnerable code, this structure is heap-allocated before the scan begins. A failure of that allocation (e.g., under low-memory or OOM conditions) causes an early return that skips both the NVolFreeClusterKnown() flag publication and the wake_up(&vol->free_waitq) call. Any thread blocked on that waitqueue - waiting to learn the volume's free cluster count - hangs indefinitely with no timeout or recovery path. The fix is to move the file_ra_state to the stack and zero-initialize it (since file_ra_state_init() only sets ra_pages and prev_pos, not the full structure), eliminating the allocation failure path entirely. CWE is listed as N/A; the closest applicable weakness is CWE-400 (Uncontrolled Resource Consumption via indefinite wait) or a missing-wakeup/notification defect. Affected kernel commits span from 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 through the fix commits documented in the references.

RemediationAI

Upgrade to Linux kernel 7.1.5 (stable) or 7.2-rc1 or later. The upstream fix commits are available at https://git.kernel.org/stable/c/40ee64e633e5e413f2255bb48c063977d8c86f34 and https://git.kernel.org/stable/c/c05132077df57a384919f61d7f8a8e76d748a6d4. For systems that cannot be immediately patched, a compensating control is to avoid mounting NTFS volumes on memory-constrained hosts where OOM conditions are plausible; this eliminates the affected code path entirely but may not be operationally feasible where NTFS interoperability is required. Ensuring adequate system memory headroom reduces - but does not eliminate - the probability of triggering the allocation failure. No workaround fully substitutes for the kernel upgrade.

Vendor StatusVendor

SUSE

Severity: Moderate
Product Status
SUSE Linux Enterprise Desktop 15 SP7 Not-Affected
SUSE Linux Enterprise Desktop 15 SP7 Not-Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Not-Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Not-Affected
SUSE Linux Enterprise High Availability Extension 16.0 Not-Affected

Share

CVE-2026-72202 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy