Skip to main content

Linux Kernel CVE-2026-72491

| EUVDEUVD-2026-59390 CRITICAL
2026-08-15 Linux GHSA-gf38-f295-35cc
Critical
Disputed · 9.8 Vendor: Linux
Share

Severity by source

Sources disagree (Medium–Critical)
Vendor (Linux) PRIMARY
9.8 CRITICAL
AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
vuln.today AI
7.0 HIGH

Race is triggered via local 9p-RDMA activity, not network packets, so AV:L; winning the softirq/request timing window is AC:H; local mount/connection actions imply PR:L; kernel UAF can yield full compromise, so C/I/A:H.

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

vuln.today treats the vendor’s rating as authoritative. A higher third-party CVSS (e.g. CISA-ADP) is shown for transparency but does not drive the headline severity.

CVSS VectorVendor: Linux

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

Lifecycle Timeline

5
Analysis Generated
Aug 17, 2026 - 09:50 vuln.today
CVSS changed
Aug 17, 2026 - 06:22 NVD
9.8 (CRITICAL)
Patch available
Aug 15, 2026 - 07:20 EUVD
CVE Published
Aug 15, 2026 - 05:57 cve.org
CRITICAL 9.8
CVE Published
Aug 15, 2026 - 05:57 cve.org
UNKNOWN (no severity yet)

DescriptionCVE.org

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

net/9p: fix race condition on rdma->state in trans_rdma.c

The rdma->state field is modified without holding req_lock in both recv_done() and p9_cm_event_handler(), while rdma_request() accesses the same field under the req_lock spinlock. This inconsistent locking creates a race condition:

  • recv_done() running in softirq completion context sets

rdma->state = P9_RDMA_FLUSHING without acquiring req_lock

  • p9_cm_event_handler() modifies rdma->state at multiple points

(ADDR_RESOLVED, ROUTE_RESOLVED, ESTABLISHED, CLOSED) without req_lock

  • rdma_request() uses spin_lock_irqsave(&rdma->req_lock, flags) to

protect the read-modify-write of rdma->state

The race can cause lost state transitions: recv_done() or the CM event handler could set state to FLUSHING/CLOSED while rdma_request() is concurrently checking or modifying state under the lock, leading to the FLUSHING transition being silently overwritten by CLOSING. This corrupts the connection state machine and can cause use-after-free on RDMA request objects during teardown.

Fix by adding req_lock protection to all rdma->state modifications in recv_done() and p9_cm_event_handler(), matching the pattern already used in rdma_request(). Use spin_lock_irqsave/spin_unlock_irqrestore in the CM event handler since it can race with recv_done() which runs in softirq context.

Tested with a kernel module that races two threads (simulating rdma_request and recv_done/CM handler) on rdma->state with proper locking: 5.5M+ FLUSHING writes over 27M iterations with 0 lost transitions.

AnalysisAI

Kernel-level use-after-free in the Linux 9p RDMA transport (net/9p, trans_rdma.c) arises from a race on the unsynchronized rdma->state field, where recv_done() in softirq context and p9_cm_event_handler() mutate state without the req_lock that rdma_request() relies on. Concurrent teardown can silently overwrite a FLUSHING transition with CLOSING, corrupting the connection state machine and freeing RDMA request objects still in use - enabling denial of service and potential local privilege escalation on systems mounting 9p over RDMA. No public exploit identified at time of analysis; EPSS is low (0.22%, 13th percentile) and the flaw is not in CISA KEV.

Technical ContextAI

The affected component is the Plan 9 Resource Sharing Protocol (9p) transport driver bound to RDMA/InfiniBand verbs (CONFIG_NET_9P_RDMA), commonly used to share filesystems between hosts and virtual machines over high-speed fabrics. The root cause is a classic data race (CWE-362) leading to a use-after-free (CWE-416): rdma->state is a shared state-machine variable read-modified-written under spin_lock_irqsave(&rdma->req_lock) in rdma_request(), but written without that lock in the completion path recv_done() (softirq context) and in the connection-manager event handler p9_cm_event_handler() at the ADDR_RESOLVED, ROUTE_RESOLVED, ESTABLISHED and CLOSED events. Because a softirq completion can preempt and interleave with the request path, a lost update can drop the transition to P9_RDMA_FLUSHING, leaving request objects reachable after they are freed during connection teardown. The CPE data identifies the generic linux:linux kernel; the CWE was not populated in the source feed but is inferable directly from the patch description.

RemediationAI

Patch available per vendor advisory: update to a fixed stable release for your series - for example 5.10.261, 5.15.212, 6.1.178, 6.6.145, 6.12.97, 6.18.40 or 7.1.5 (mainline 7.2-rc1), applying the corresponding commit from https://git.kernel.org/stable/c/8aadc136d8e8d8fc95d7982d213cfe2234dfcf2b (and siblings listed above); the fix adds req_lock (spin_lock_irqsave/spin_unlock_irqrestore) protection to every rdma->state write in recv_done() and p9_cm_event_handler(). Where kernel patching must be deferred, the most effective compensating control is to avoid the vulnerable code path: do not mount 9p filesystems over the RDMA transport (use the virtio or TCP 9p transport instead, or unload/blacklist the 9pnet_rdma module), which fully removes exposure at the cost of losing RDMA-accelerated 9p mounts. If 9p-over-RDMA is required, restrict which local users and workloads can initiate or tear down 9p RDMA connections and avoid churn (frequent mount/unmount or connection resets) that widens the race window; note this only reduces, not eliminates, the timing opportunity. Confirm the exact patched version via your distribution's advisory rather than assuming, as backport version numbers differ per vendor.

Vendor StatusVendor

SUSE

Severity: Important
Product Status
SUSE Linux Enterprise Desktop 15 SP7 Affected
SUSE Linux Enterprise Desktop 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 16.0 Affected

Share

CVE-2026-72491 vulnerability details – vuln.today

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