CVE-2023-54171
Memory Leak in Linux Kernel Tracing Component via trace_pipe
Publication date: 2025-12-30
Last updated on: 2025-12-30
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | * |
| linux | kernel | * |
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 a memory leak in the Linux kernel's tracing subsystem. Specifically, when reading from the 'trace_pipe' file, a temporary memory allocation ('iter->temp') is made in the function trace_find_next_entry() but is not freed when 'trace_pipe' is closed. This causes unreferenced memory to remain allocated, leading to a memory leak. The fix involves freeing this temporary memory in the tracing_release_pipe() function.
How can this vulnerability impact me? :
The memory leak can cause increased memory usage over time when reading from 'trace_pipe', potentially leading to resource exhaustion or degraded system performance. This could affect system stability, especially on systems that heavily use kernel tracing features.
What immediate steps should I take to mitigate this vulnerability?
To mitigate this vulnerability, update your Linux kernel to a version where the fix has been applied. The fix involves freeing 'iter->temp' in tracing_release_pipe() to prevent memory leaks when reading 'trace_pipe'. Applying the latest kernel patches or updates that address this issue is the recommended immediate step.