CVE-2026-43292 Details
Description
In the Linux kernel, the following vulnerability has been resolved: mm/vmalloc: prevent RCU stalls in kasan_release_vmalloc_node When CONFIG_PAGE_OWNER is enabled, freeing KASAN shadow pages during vmalloc cleanup triggers expensive stack unwinding that acquires RCU read locks. Processing a large purge_list without rescheduling can cause the task to hold CPU for extended periods (10+ seconds), leading to RCU stalls and potential OOM conditions. The issue manifests in purge_vmap_node() -> kasan_release_vmalloc_node() where iterating through hundreds or thousands of vmap_area entries and freeing their associated shadow pages causes: rcu: INFO: rcu_preempt detected stalls on CPUs/tasks: rcu: Tasks blocked on level-0 rcu_node (CPUs 0-1): P6229/1:b..l ... task:kworker/0:17 state:R running task stack:28840 pid:6229 ... kasan_release_vmalloc_node+0x1ba/0xad0 mm/vmalloc.c:2299 purge_vmap_node+0x1ba/0xad0 mm/vmalloc.c:2299 Each call to kasan_release_vmalloc() can free many pages, and with page_owner tracking, each free triggers save_stack() which performs stack unwinding under RCU read lock. Without yielding, this creates an unbounded RCU critical section. Add periodic cond_resched() calls within the loop to allow: - RCU grace periods to complete - Other tasks to run - Scheduler to preempt when needed The fix uses need_resched() for immediate response under load, with a batch count of 32 as a guaranteed upper bound to prevent worst-case stalls even under light load.
A vulnerability in the Linux kernel's memory management can lead to RCU (Read-Copy-Update) stalls when CONFIG_PAGE_OWNER is enabled. During the vmalloc cleanup process, KASAN (Kernel Address Sanitizer) shadow pages are freed, causing significant stack unwinding that requires RCU read locks. If a large purge list is processed without rescheduling, the task can monopolize the CPU for over 10 seconds, resulting in RCU stalls and potential Out-Of-Memory (OOM) conditions. This issue arises in the function 'purge_vmap_node()', specifically within 'kasan_release_vmalloc_node()', where the iteration through numerous vmap_area entries and the freeing of their corresponding shadow pages leads to RCU stall warnings.
The vulnerability has been addressed by adding periodic 'cond_resched()' calls within the 'kasan_release_vmalloc_node()' function. This allows RCU grace periods to complete, enables other tasks to run, and lets the scheduler preempt when necessary. The fix is included in the Linux kernel stable tree.
Metrics
CVSS 4.0 Severity and Vector Strings:
No CVSS 4.0 data is available for this CVE.
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
No SSVC data is available for this CVE.
References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://git.kernel.org/stable/c/1afe45f89d54b7183768ebbbbf14238ec187ab5c | kernel.org | Patch |
| https://git.kernel.org/stable/c/2efa9c02c9b4c0d6866aa445f11056809b25ca28 | kernel.org | Patch |
| https://git.kernel.org/stable/c/5747435e0fd474c24530ef1a6822f47e7d264b27 | kernel.org | Patch |
| https://git.kernel.org/stable/c/b351fbe71091f7c8676c8ba597653d08b6719447 | kernel.org | Patch |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| NVD-CWE-noinfo | Insufficient Information to Classify Weakness | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| linux linux kernel | >= 6.9, < 6.12.75 >= 6.13, < 6.18.16 >= 6.19, < 6.19.6 |
CPE
Remediation
| |
Change History
3 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Jun 17, 2026 | CVE Modified | kernel.org |
| May 14, 2026 | Initial Analysis | [email protected] |
| May 8, 2026 | New CVE Received | kernel.org |