Skip to main content

Linux Kernel EUVDEUVD-2026-28562

| CVE-2026-43292 MEDIUM
2026-05-08 Linux GHSA-w6qp-j494-g32c
5.5
CVSS 3.1 · NVD
Share

Severity by source

NVD PRIMARY
5.5 MEDIUM
AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
vuln.today AI
4.7 MEDIUM

AC:H is warranted because CONFIG_PAGE_OWNER must be enabled - a non-default build-time prerequisite entirely beyond attacker control; all other metrics align with the vendor-provided vector.

3.1 AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H
4.0 AV:L/AC:H/AT:P/PR:L/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
SUSE
MEDIUM
qualitative
Red Hat
5.5 MEDIUM
qualitative

Primary rating from NVD.

CVSS VectorNVD

Attack Vector
Local
Attack Complexity
Low
Privileges Required
Low
User Interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High

Lifecycle Timeline

5
Analysis Generated
Jul 23, 2026 - 22:55 vuln.today
CVSS changed
May 14, 2026 - 21:07 NVD
5.5 (MEDIUM)
Patch available
May 08, 2026 - 14:02 EUVD
CVE Published
May 08, 2026 - 13:11 nvd
MEDIUM 5.5
CVE Published
May 08, 2026 - 13:11 nvd
UNKNOWN (no severity yet)

DescriptionCVE.org

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.

AnalysisAI

RCU stall and denial-of-service in the Linux kernel vmalloc subsystem occurs when CONFIG_PAGE_OWNER and KASAN are both enabled, allowing a local low-privileged user to cause prolonged CPU monopolization (10+ seconds) during vmalloc cleanup, leading to RCU stalls and potential OOM conditions. The vulnerability exists in the purge_vmap_node() → kasan_release_vmalloc_node() call chain, where processing large purge lists without yielding creates unbounded RCU critical sections. Patches are available across multiple stable kernel branches (6.12.75, 6.18.16, 6.19.6, 7.0); no public exploit has been identified and EPSS is 0.02% at the 5th percentile, reflecting low real-world exploitation probability.

Technical ContextAI

The vulnerability resides in mm/vmalloc.c within the Linux kernel's virtual memory allocator, confirmed by CPE cpe:2.3:a:linux:linux:*. When CONFIG_PAGE_OWNER is enabled - a kernel build option for page allocation ownership tracking - alongside KASAN (Kernel Address Sanitizer), freeing KASAN shadow pages during vmalloc cleanup invokes kasan_release_vmalloc_node(). This function iterates over vmap_area entries and frees shadow pages; each free triggers save_stack(), which performs call-stack unwinding while holding an RCU (Read-Copy-Update) read lock. RCU is a kernel synchronization primitive that requires bounded critical sections to allow grace periods to complete. Without periodic rescheduling via cond_resched(), processing hundreds or thousands of vmap_area entries in a single loop creates an unbounded RCU critical section. No formal CWE is assigned, but the root cause class maps to uncontrolled resource consumption (analogous to CWE-400) - specifically CPU time monopolized inside an RCU read-side critical section.

RemediationAI

Upgrade to a patched Linux kernel version: 6.12.75 or later in the 6.12 stable series, 6.18.16 or later in the 6.18 series, 6.19.6 or later in the 6.19 series, or 7.0 or later in the mainline series. Upstream fix commits are available at https://git.kernel.org/stable/c/2efa9c02c9b4c0d6866aa445f11056809b25ca28, https://git.kernel.org/stable/c/1afe45f89d54b7183768ebbbbf14238ec187ab5c, https://git.kernel.org/stable/c/b351fbe71091f7c8676c8ba597653d08b6719447, and https://git.kernel.org/stable/c/5747435e0fd474c24530ef1a6822f47e7d264b27. As an immediate workaround for systems that cannot be patched, disable CONFIG_PAGE_OWNER in the kernel build configuration and rebuild; this eliminates the stack-unwinding overhead that causes unbounded RCU critical sections, with the trade-off of losing page allocation ownership tracking used in memory debugging. Disabling KASAN entirely is a more drastic alternative that also eliminates shadow pages but removes all KASAN memory-safety instrumentation. Production kernels built without CONFIG_PAGE_OWNER are not vulnerable and require no action.

Vendor StatusVendor

SUSE

Severity: Medium
Product Status
SUSE Linux Enterprise Desktop 15 SP7 Fixed
SUSE Linux Enterprise Desktop 15 SP7 Fixed
SUSE Linux Enterprise High Availability Extension 15 SP7 Fixed
SUSE Linux Enterprise High Availability Extension 15 SP7 Fixed
SUSE Linux Enterprise High Performance Computing 15 SP7 Fixed

Share

EUVD-2026-28562 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy