CVE-2024-31076
Last modified
CVE-2024-31076 is a medium-severity vulnerability rated 5.5/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: genirq/cpuhotplug, x86/vector: Prevent vector leak during CPU offline The absence of IRQD_MOVE_PCNTXT prevents immediate effectiveness of interrupt affinity reconfiguration via procfs. Instead, the change is deferred until the next instance of the interrupt being triggered on the original CPU. When the interrupt next triggers on the original CPU, the new affinity is enforced within __irq_move_irq(). EPSS estimates a 0.26% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: genirq/cpuhotplug, x86/vector: Prevent vector leak during CPU offline The absence of IRQD_MOVE_PCNTXT prevents immediate effectiveness of interrupt affinity reconfiguration via procfs. Instead, the change is deferred until the next instance of the interrupt being triggered on the original CPU. When the interrupt next triggers on the original CPU, the new affinity is enforced within __irq_move_irq(). A vector is allocated from the new CPU, but the old vector on the original CPU remains and is not immediately reclaimed. Instead, apicd->move_in_progress is flagged, and the reclaiming process is delayed until the next trigger of the interrupt on the new CPU. Upon the subsequent triggering of the interrupt on the new CPU, irq_complete_move() adds a task to the old CPU's vector_cleanup list if it remains online. Subsequently, the timer on the old CPU iterates over its vector_cleanup list, reclaiming old vectors. However, a rare scenario arises if the old CPU is outgoing before the interrupt triggers again on the new CPU. In that case irq_force_complete_move() is not invoked on the outgoing CPU to reclaim the old apicd->prev_vector because the interrupt isn't currently affine to the outgoing CPU, and irq_needs_fixup() returns false. Even though __vector_schedule_cleanup() is later called on the new CPU, it doesn't reclaim apicd->prev_vector; instead, it simply resets both apicd->move_in_progress and apicd->prev_vector to 0. As a result, the vector remains unreclaimed in vector_matrix, leading to a CPU vector leak. To address this issue, move the invocation of irq_force_complete_move() before the irq_needs_fixup() call to reclaim apicd->prev_vector, if the interrupt is currently or used to be affine to the outgoing CPU. Additionally, reclaim the vector in __vector_schedule_cleanup() as well, following a warning message, although theoretically it should never see apicd->move_in_progress with apicd->prev_cpu pointing to an offline CPU.
Metrics
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Affected Software
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux Kernel | >= 4.13, < 4.19.316 |
| Linux | Linux Kernel | >= 4.20, < 5.4.278 |
| Linux | Linux Kernel | >= 5.5, < 5.10.219 |
| Linux | Linux Kernel | >= 5.11, < 5.15.161 |
| Linux | Linux Kernel | >= 5.16, < 6.1.93 |
| Linux | Linux Kernel | >= 6.2, < 6.6.33 |
| Linux | Linux Kernel | >= 6.7, < 6.9.4 |
References
Timeline
- Published
- Last Modified
- Status
- Modified
Frequently Asked Questions
What is CVE-2024-31076?
How severe is CVE-2024-31076?
How do I fix CVE-2024-31076?
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 2024
- CVE-2024-31069IO-1020 Micro ELD web server uses a default password for aut…7.4
- CVE-2024-3107The Spectra – WordPress Gutenberg Blocks plugin for WordPres…4.3
- CVE-2024-31070Initialization of a resource with an insecure default vulner…9.1
- CVE-2024-31071in OpenHarmony v4.0.0 and prior versions allow a local attac…3.3
- CVE-2024-31073Uncontrolled search path for some Intel(R) oneAPI Level Zero…6.7
- CVE-2024-31074Observable timing discrepancy in some Intel(R) QAT Engine fo…8.2
- CVE-2024-31077Forminator prior to 1.29.3 contains a SQL injection vulnerab…7.2
- CVE-2024-31078in OpenHarmony v4.0.0 and prior versions allow a local attac…5.5
- CVE-2024-31079When NGINX Plus or NGINX OSS are configured to use the HTTP/…4.8
- CVE-2024-3108 An implicit intent vulnerability was reported for Motorola’…5.5
- CVE-2024-31080A heap-based buffer over-read vulnerability was found in the…7.3
- CVE-2024-31081A heap-based buffer over-read vulnerability was found in the…7.3
Are you affected by CVE-2024-31076?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
