CVE Catalog

CVE-2026-68146

Low risk· EPSS 8%
Published: Updated: Translated: NVD NIST

Exploitation Probability (EPSS)

Low risk
0.18%

8th percentile - higher than 8% of all known CVEs

Summary

In the Linux kernel's ftrace module, the trace_parser structure is shared between threads during write and release operations, leading to a race condition on the idx, cont, and buffer fields. This can cause corrupted input or undefined behavior.

Risk Assessment

The risk includes the possibility of disrupting tracing functionality, which could lead to errors in system diagnostics or potentially privilege escalation if the parser is used in an unsafe manner.

Recommendation

It is recommended to apply the kernel patch that adds a global mutex (parser_lock) to serialize access to trace_parser, and to update systems.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: ftrace: Add global mutex to serialize trace_parser access In ftrace, the trace_parser structure is allocated and initialized when a trace file is opened, and is subsequently used across write and release handlers to parse user input. The affected handler paths and their specific functions are: - Open paths: ftrace_regex_open(), ftrace_graph_open() - Write paths: ftrace_regex_write(), ftrace_graph_write() - Release paths: ftrace_regex_release(), ftrace_graph_release() If userspace opens a trace file descriptor and shares it across multiple threads, concurrent write calls will race on the parser's internal state, specifically the 'idx', 'cont', and 'buffer' fields, leading to corrupted input or undefined behavior. Fix this by adding a global mutex, parser_lock, to serialize all access to trace_parser across write and release paths, preventing concurrent corruption of parser state.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS