CVE-2026-72069

Source
https://cve.org/CVERecord?id=CVE-2026-72069
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-72069.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2026-72069
Downstream
Published
2026-08-15T05:52:21.752Z
Modified
2026-08-24T03:47:34.994485697Z
Severity
  • 9.8 (Critical) CVSS_V3 - CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H CVSS Calculator
Summary
locking/rt: Fix the incorrect RCU protection in rt_spin_unlock()
Details

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

locking/rt: Fix the incorrect RCU protection in rtspinunlock()

rtspinunlock() releases the RCU protection before unlocking the lock. That opens the door for the following UAF scenario:

T1 T2 spinlock(&p->lock); rcureadlock(); invalidate(p); p = rcudereference(ptr); rcuassignpointer(ptr, NULL); if (!p) return; spinunlock(&p->lock); spinlock(&p->lock) lock(&lock->lock); rcureadlock(); kfreercu(p); rcureadunlock(); .... spinunlock(&p->lock) rcureadunlock(); // Ends grace period rcudobatch() kfree(p); UAF -> rtmutexcmpxchg_release(&lock->lock...)

Regular spinlocks keep preemption disabled accross the unlock operation, which provides full RCU protection, but the RT substitution fails to resemble that. Same applies for the rwlock substitution.

Move the rcureadunlock() invocation past the unlock operations to match the non-RT semantics. This makes it asymmetric vs. rtxxxlock(), but that's harmless as the caller needs to hold RCU read lock across the lock operation. The migrate_enable() call stays before the unlock operation because there is no per CPU operation in the unlock path which would require migration to be kept disabled.

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/72xxx/CVE-2026-72069.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
0f383b6dc96e976dfbf2721b0bf10bd96103b341
Fixed
af28d801cd2db4cc7378554499bd4a5d84a5517e
Fixed
9d1fcd64ab81200e02b7a6db5eb1da8e244e8289
Fixed
3cfaac77b3c32ac3940df28866de263c3f45d24c
Fixed
1f0d56d3f1e88f20f6e46109402f8c15d59bac37
Fixed
633cadbc0b8323f5cc140a285d2432089dbb534e
Fixed
83f9fb561c1c3917e19f95523dd933c7d30291aa
Fixed
89038cc87d80c77e7aa6f42a64b2573b74af339f

Database specific

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

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
5.15.0
Fixed
5.15.217
Type
ECOSYSTEM
Events
Introduced
5.16.0
Fixed
6.1.184
Type
ECOSYSTEM
Events
Introduced
6.2.0
Fixed
6.6.148
Type
ECOSYSTEM
Events
Introduced
6.7.0
Fixed
6.12.101
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-72069.json"