CVE-2026-89589
Last modified
CVE-2026-89589 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: acpi/apei/ghes: Use raw_spinlock_t for CXL CPER work locks The CXL CPER work registration and unregistration helpers acquire cxl_cper_work_lock and cxl_cper_prot_err_work_lock with a spinlock guard(), which leaves local interrupts enabled. The corresponding post paths (cxl_cper_post_event(), cxl_cper_post_prot_err()) execute in hard IRQ context (they are called from the GHES error notification path) and acquire the same locks with an irqsave guard(). If a CPU is holding one of these locks via a spinlock guard() when a GHES interrupt arrives on the same CPU, the IRQ handler spins on the held lock waiting for it to release, while the lock holder is preempted by the IRQ. The result is a deadlock. Convert both locks from spinlock_t to raw_spinlock_t and use guard() at all call sites. EPSS estimates a 0.17% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: acpi/apei/ghes: Use raw_spinlock_t for CXL CPER work locks The CXL CPER work registration and unregistration helpers acquire cxl_cper_work_lock and cxl_cper_prot_err_work_lock with a spinlock guard(), which leaves local interrupts enabled. The corresponding post paths (cxl_cper_post_event(), cxl_cper_post_prot_err()) execute in hard IRQ context (they are called from the GHES error notification path) and acquire the same locks with an irqsave guard(). If a CPU is holding one of these locks via a spinlock guard() when a GHES interrupt arrives on the same CPU, the IRQ handler spins on the held lock waiting for it to release, while the lock holder is preempted by the IRQ. The result is a deadlock. Convert both locks from spinlock_t to raw_spinlock_t and use guard() at all call sites. On PREEMPT_RT kernels spinlock_t is backed by rt_mutex and sleeping from hard IRQ context is not permitted; raw_spinlock_t is safe in both contexts. Add WARN_ONCE to both register functions to surface double-registration bugs at runtime. Restructure both unregister functions to clear the global work pointer under the lock before calling cancel_work_sync(), closing the window where a CPER interrupt could schedule work on a pointer about to be freed. Add kfifo_reset() after cancel_work_sync() so stale entries are not replayed on next module load. Both kfifos are single-consumer: only one work_struct is registered at a time, enforced by the WARN_ONCE guard in the register functions. kfifo_reset() is safe outside the lock because cancel_work_sync() has already quiesced the consumer, and no new consumer can register until the current module exit completes and a fresh module init runs. Remove the redundant cancel_work_sync() call from cxl_ras_exit() and cxl_pci_driver_exit(). The CPER unregister functions now quiesce the work internally.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 5e4a264bf8b55d5a1b4c8cd96ac10b99f98d7487, < cbc27a4302a1feb0ff77c1755021837a738b0ce9; >= 5e4a264bf8b55d5a1b4c8cd96ac10b99f98d7487, < c735dbce7ad03df708bf22ec964f67e43cbc823a; >= 5e4a264bf8b55d5a1b4c8cd96ac10b99f98d7487, < 0e25382b05de48d09b243d3d447d236a6d735bc2; >= 5e4a264bf8b55d5a1b4c8cd96ac10b99f98d7487, < 6625ca499c3131ef63be3215f8f942d7a097ea3a |
| Linux | Linux | 6.10 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-89589?
How severe is CVE-2026-89589?
How do I fix CVE-2026-89589?
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-89583In the Linux kernel, the following vulnerability has been re…8.1
- CVE-2026-89584In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89585In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89586In the Linux kernel, the following vulnerability has been re…8.2
- CVE-2026-89587In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89588In the Linux kernel, the following vulnerability has been re…8.4
- CVE-2026-8959Sandbox escape due to incorrect boundary conditions in the W…9.6
- CVE-2026-89590In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89591In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89592In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89593In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-89594In the Linux kernel, the following vulnerability has been re…7.8
Are you affected by CVE-2026-89589?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
