CVE-2024-38613
Last modified
CVE-2024-38613 is a medium-severity vulnerability rated 4.7/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: m68k: Fix spinlock race in kernel thread creation Context switching does take care to retain the correct lock owner across the switch from 'prev' to 'next' tasks. This does rely on interrupts remaining disabled for the entire duration of the switch. This condition is guaranteed for normal process creation and context switching between already running processes, because both 'prev' and 'next' already have interrupts disabled in their saved copies of the status register. The situation is different for newly created kernel threads. EPSS estimates a 0.18% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: m68k: Fix spinlock race in kernel thread creation Context switching does take care to retain the correct lock owner across the switch from 'prev' to 'next' tasks. This does rely on interrupts remaining disabled for the entire duration of the switch. This condition is guaranteed for normal process creation and context switching between already running processes, because both 'prev' and 'next' already have interrupts disabled in their saved copies of the status register. The situation is different for newly created kernel threads. The status register is set to PS_S in copy_thread(), which does leave the IPL at 0. Upon restoring the 'next' thread's status register in switch_to() aka resume(), interrupts then become enabled prematurely. resume() then returns via ret_from_kernel_thread() and schedule_tail() where run queue lock is released (see finish_task_switch() and finish_lock_switch()). A timer interrupt calling scheduler_tick() before the lock is released in finish_task_switch() will find the lock already taken, with the current task as lock owner. This causes a spinlock recursion warning as reported by Guenter Roeck. As far as I can ascertain, this race has been opened in commit 533e6903bea0 ("m68k: split ret_from_fork(), simplify kernel_thread()") but I haven't done a detailed study of kernel history so it may well predate that commit. Interrupts cannot be disabled in the saved status register copy for kernel threads (init will complain about interrupts disabled when finally starting user space). Disable interrupts temporarily when switching the tasks' register sets in resume(). Note that a simple oriw 0x700,%sr after restoring sr is not enough here - this leaves enough of a race for the 'spinlock recursion' warning to still be observed. Tested on ARAnyM and qemu (Quadra 800 emulation).
Metrics
CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H
Weakness Enumeration
Affected Software
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux Kernel | >= 3.7, < 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.8.12 |
| Linux | Linux Kernel | >= 6.9, < 6.9.3 |
References
Timeline
- Published
- Last Modified
- Status
- Analyzed
Frequently Asked Questions
What is CVE-2024-38613?
How severe is CVE-2024-38613?
How do I fix CVE-2024-38613?
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-38608In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-38609In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-3861If an AlignedBuffer were assigned to itself, the subsequent …4
- CVE-2024-38610In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2024-38611In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-38612In the Linux kernel, the following vulnerability has been re…7
- CVE-2024-38614In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-38615In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-38616In the Linux kernel, the following vulnerability has been re…8.2
- CVE-2024-38617In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-38618In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-38619In the Linux kernel, the following vulnerability has been re…5.5
Are you affected by CVE-2024-38613?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
