CVE-2025-38234
BaseFortify
Publication date: 2025-07-04
Last updated on: 2026-03-17
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-362 | The product contains a concurrent code sequence that requires temporary, exclusive access to a shared resource, but a timing window exists in which the shared resource can be modified by another code sequence operating concurrently. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a race condition in the Linux kernel's real-time scheduler code (sched/rt). When the kernel tries to move a real-time task from one CPU's runqueue to another's, it locks both runqueues. If the locks are not immediately available, it releases and then reacquires them. During this time, the task might have already migrated and run on another CPU. If another CPU tries to wake this task and queue it again, the kernel's checks can mistakenly allow this, even though the task is no longer in the list of tasks that can be pushed. This leads to various kernel crashes such as kernel panics, null pointer dereferences, page faults, and queue corruption errors within the scheduler.
How can this vulnerability impact me? :
This vulnerability can cause system instability by triggering kernel crashes and panics. These crashes can disrupt normal system operation, potentially causing downtime, data loss, or requiring system reboots. Since it affects the scheduler, it can impact the execution of real-time tasks and overall system responsiveness.