Answer in brief
CVE-2026-68146 records a Unknown severity vulnerability in ftrace: Add global mutex to serialize trace_parser access. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=689fd8b65d669b96d612ccc37d6fb87bf7ed6907 <3d0dd138a06c782f8b755cd1b6f9909494514ce1 || >=689fd8b65d669b96d612ccc37d6fb87bf7ed6907 <90be137813e1a5bdfd671e40fe28004fb959d3e4 || >=689fd8b65d669b96d612ccc37d6fb87bf7ed6907 <65bf73bee1a4f3722208ae46afc0fa5de76b9a0a || >=689fd8b65d669b96d612ccc37d6fb87bf7ed6907 <e807c9193d9493c7a0d039158ebb955050a76df1 || >=689fd8b65d669b96d612ccc37d6fb87bf7ed6907 <7720b63bcef3f54c7fe288774b720a227d54a306 | 3d0dd138a06c782f8b755cd1b6f9909494514ce1, 90be137813e1a5bdfd671e40fe28004fb959d3e4, 65bf73bee1a4f3722208ae46afc0fa5de76b9a0a, e807c9193d9493c7a0d039158ebb955050a76df1, 7720b63bcef3f54c7fe288774b720a227d54a306 |
| Linux/Linuxgeneric | 2.6.32 | Not reported |
Published upstream
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 10, 2026
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.
Quoted source text, attributed separately from HOL analysis.
Answer in brief
CVE-2026-68146 records a Unknown severity vulnerability in ftrace: Add global mutex to serialize trace_parser access. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=689fd8b65d669b96d612ccc37d6fb87bf7ed6907 <3d0dd138a06c782f8b755cd1b6f9909494514ce1 || >=689fd8b65d669b96d612ccc37d6fb87bf7ed6907 <90be137813e1a5bdfd671e40fe28004fb959d3e4 || >=689fd8b65d669b96d612ccc37d6fb87bf7ed6907 <65bf73bee1a4f3722208ae46afc0fa5de76b9a0a || >=689fd8b65d669b96d612ccc37d6fb87bf7ed6907 <e807c9193d9493c7a0d039158ebb955050a76df1 || >=689fd8b65d669b96d612ccc37d6fb87bf7ed6907 <7720b63bcef3f54c7fe288774b720a227d54a306 | 3d0dd138a06c782f8b755cd1b6f9909494514ce1, 90be137813e1a5bdfd671e40fe28004fb959d3e4, 65bf73bee1a4f3722208ae46afc0fa5de76b9a0a, e807c9193d9493c7a0d039158ebb955050a76df1, 7720b63bcef3f54c7fe288774b720a227d54a306 |
| Linux/Linuxgeneric | 2.6.32 | Not reported |
Published upstream
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 10, 2026
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.
Quoted source text, attributed separately from HOL analysis.