Get a Demo

Let's Patch It!

Book a short call with one our specialists, we'll walk you through how Endor Patches work, and ask you a few questions about your environment (like your primary programming languages and repository management). We'll also send you an email right after you fill out the form, feel free to reply with any questions you have in advance!

CVE

CVE-2026-72069

locking/rt: Fix the incorrect RCU protection in rt_spin_unlock()
Back to all
CVE

CVE-2026-72069

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

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); rcuread_lock();

 invalidate(p); p = rcu_dereference(ptr);

 rcuassignpointer(ptr, NULL); if (!p) return;

 spinunlock(&p->lock); spinlock(&p->lock)

     lock(&lock->lock);

   rcureadlock();

 kfreercu(p); rcuread_unlock();

....

spin_unlock(&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.

Package Versions Affected

Package Version
patch Availability
No items found.

Automatically patch vulnerabilities without upgrading

Fix Without Upgrading
Detect compatible fix
Apply safe remediation
Fix with a single pull request

CVSS Version

Severity
Base Score
CVSS Version
Score Vector
C
H
U
9.8
-
3.1
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
C
H
U
0
-
3.1
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
C
H
U
-

Related Resources

No items found.

References

https://git.kernel.org/stable/c/1f0d56d3f1e88f20f6e46109402f8c15d59bac37, https://git.kernel.org/stable/c/3cfaac77b3c32ac3940df28866de263c3f45d24c, https://git.kernel.org/stable/c/633cadbc0b8323f5cc140a285d2432089dbb534e, https://git.kernel.org/stable/c/83f9fb561c1c3917e19f95523dd933c7d30291aa, https://git.kernel.org/stable/c/89038cc87d80c77e7aa6f42a64b2573b74af339f, https://git.kernel.org/stable/c/9d1fcd64ab81200e02b7a6db5eb1da8e244e8289, https://git.kernel.org/stable/c/af28d801cd2db4cc7378554499bd4a5d84a5517e, https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/72xxx/CVE-2026-72069.json, https://nvd.nist.gov/vuln/detail/CVE-2026-72069, https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Severity

9.8

CVSS Score
0
10

Basic Information

Base CVSS
9.8
EPSS Probability
0.00728%
EPSS Percentile
0.51526%
Introduced Version
0f383b6dc96e976dfbf2721b0bf10bd96103b341,5.15.0,5.16.0,6.2.0,6.7.0,6.13.0,6.19.0,0
Fix Available
89038cc87d80c77e7aa6f42a64b2573b74af339f,5.15.217,6.1.184,6.6.148,6.12.101,6.18.40,7.1.5,6.12.101-1~deb12u1,6.12.101-1

Fix Critical Vulnerabilities Instantly

Secure your app without upgrading.
Fix Without Upgrading