CVE-2026-64588
Last modified
CVE-2026-64588 is a high-severity vulnerability rated 7.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: fuse-uring: fix data races on ring->ready On weakly-ordered architectures, the store to fiq->ops can be reordered past the store to ring->ready, allowing a CPU that sees ring->ready == true via fuse_uring_ready() to dispatch requests through a stale fiq->ops pointer. Upgrade the store to smp_store_release() and the load in fuse_uring_ready() to smp_load_acquire() so that the preceding WRITE_ONCE(fiq->ops, ...) is visible to any CPU that observes ring->ready == true. Additionally, fuse_uring_do_register() publishes ring->ready with WRITE_ONCE() but the fast-path check reads it with a plain load. This is a marked-vs-unmarked access that KCSAN will flag. EPSS estimates a 0.15% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: fuse-uring: fix data races on ring->ready On weakly-ordered architectures, the store to fiq->ops can be reordered past the store to ring->ready, allowing a CPU that sees ring->ready == true via fuse_uring_ready() to dispatch requests through a stale fiq->ops pointer. Upgrade the store to smp_store_release() and the load in fuse_uring_ready() to smp_load_acquire() so that the preceding WRITE_ONCE(fiq->ops, ...) is visible to any CPU that observes ring->ready == true. Additionally, fuse_uring_do_register() publishes ring->ready with WRITE_ONCE() but the fast-path check reads it with a plain load. This is a marked-vs-unmarked access that KCSAN will flag. Wrap it in READ_ONCE() to mark it without adding unnecessary ordering. Also wrap the fc->ring load in fuse_uring_ready() in READ_ONCE() to prevent the compiler from reloading it between the NULL check and the dereference.
Metrics
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= c2c9af9a0b13261c36909036057a116f2edb5e1a, < b156bb9966972122b148acab8bdf415cdb8176a3; >= c2c9af9a0b13261c36909036057a116f2edb5e1a, < d01a09b442cb786cd44ccc7c84d57e2856d6737c; >= c2c9af9a0b13261c36909036057a116f2edb5e1a, < 46725a0056c884cf58a6897f222892807327d82d |
| Linux | Linux | 6.14 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-64588?
How severe is CVE-2026-64588?
How do I fix CVE-2026-64588?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-64582In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-64583In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-64584In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-64585In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-64586In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-64587In the Linux kernel, the following vulnerability has been re…7
- CVE-2026-64589In the Linux kernel, the following vulnerability has been re…
- CVE-2026-6459The Essential Addons for Elementor – Popular Elementor Templ…6.4
- CVE-2026-64590In the Linux kernel, the following vulnerability has been re…
- CVE-2026-64591In the Linux kernel, the following vulnerability has been re…
- CVE-2026-64592In the Linux kernel, the following vulnerability has been re…
- CVE-2026-64593In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-64588?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
