CVE-2026-43292
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
08/05/2026
Last modified:
14/05/2026
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
mm/vmalloc: prevent RCU stalls in kasan_release_vmalloc_node<br />
<br />
When CONFIG_PAGE_OWNER is enabled, freeing KASAN shadow pages during<br />
vmalloc cleanup triggers expensive stack unwinding that acquires RCU read<br />
locks. Processing a large purge_list without rescheduling can cause the<br />
task to hold CPU for extended periods (10+ seconds), leading to RCU stalls<br />
and potential OOM conditions.<br />
<br />
The issue manifests in purge_vmap_node() -> kasan_release_vmalloc_node()<br />
where iterating through hundreds or thousands of vmap_area entries and<br />
freeing their associated shadow pages causes:<br />
<br />
rcu: INFO: rcu_preempt detected stalls on CPUs/tasks:<br />
rcu: Tasks blocked on level-0 rcu_node (CPUs 0-1): P6229/1:b..l<br />
...<br />
task:kworker/0:17 state:R running task stack:28840 pid:6229<br />
...<br />
kasan_release_vmalloc_node+0x1ba/0xad0 mm/vmalloc.c:2299<br />
purge_vmap_node+0x1ba/0xad0 mm/vmalloc.c:2299<br />
<br />
Each call to kasan_release_vmalloc() can free many pages, and with<br />
page_owner tracking, each free triggers save_stack() which performs stack<br />
unwinding under RCU read lock. Without yielding, this creates an<br />
unbounded RCU critical section.<br />
<br />
Add periodic cond_resched() calls within the loop to allow:<br />
- RCU grace periods to complete<br />
- Other tasks to run<br />
- Scheduler to preempt when needed<br />
<br />
The fix uses need_resched() for immediate response under load, with a<br />
batch count of 32 as a guaranteed upper bound to prevent worst-case stalls<br />
even under light load.
Impact
Base Score 3.x
5.50
Severity 3.x
MEDIUM
Vulnerable products and versions
| CPE | From | Up to |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.9 (including) | 6.12.75 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.13 (including) | 6.18.16 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.19 (including) | 6.19.6 (excluding) |
To consult the complete list of CPE names with products and versions, see this page



