CVE-2026-23138
Infinite Recursion Vulnerability in Linux Kernel Tracing Component
Publication date: 2026-02-14
Last updated on: 2026-03-25
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | From 5.8 (inc) to 6.18.6 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is related to the Linux kernel's tracing functionality. Specifically, it involves an infinite recursion issue caused when tracing RCU (Read-Copy-Update) events with the kernel stack trace trigger enabled.
The problem occurs because the stack trace code calls back into RCU, which then triggers the stack trace again, leading to infinite recursion.
The fix involves adding recursion protection by using a set of bits representing different contexts (normal, softirq, interrupt, and NMI) to prevent events from recursively triggering themselves. The stack trace code now uses the interrupt context to protect against this recursion.
Note that this fix addresses only the tracing stack trace side of the bug; the RCU side will be fixed separately.
How can this vulnerability impact me? :
This vulnerability can cause the Linux kernel to enter an infinite recursion state when tracing RCU events with the kernel stack trace trigger enabled.
Such infinite recursion can lead to system instability, crashes, or kernel panics, potentially causing denial of service or unexpected behavior in systems relying on the affected kernel.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
I don't know
What immediate steps should I take to mitigate this vulnerability?
I don't know