CVE-2026-97921
Last modified
CVE-2026-97921 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: tracing: Free histogram the field rejected for a bad modifier Writing a hist trigger whose value or variable carries a modifier that is not allowed there leaks the fields that were built for it. __create_val_field() takes the field from parse_expr() and stores it in hist_data->fields[] only after the modifier checks have run: hist_field = parse_expr(hist_data, file, field_str, flags, var_name, &n_subexprs); ... if (hist_field->flags & HIST_FIELD_FL_VAR) { if (hist_field->flags & (...)) goto err; } else { if (hist_field->flags & (...)) goto err; } hist_data->fields[val_idx] = hist_field; Both checks jump past that store, and the err label returns without freeing anything. The error unwinds to create_hist_data(), which calls destroy_hist_data() -> destroy_hist_fields(), and that reaches a field only by walking fields[].
Description
In the Linux kernel, the following vulnerability has been resolved: tracing: Free histogram the field rejected for a bad modifier Writing a hist trigger whose value or variable carries a modifier that is not allowed there leaks the fields that were built for it. __create_val_field() takes the field from parse_expr() and stores it in hist_data->fields[] only after the modifier checks have run: hist_field = parse_expr(hist_data, file, field_str, flags, var_name, &n_subexprs); ... if (hist_field->flags & HIST_FIELD_FL_VAR) { if (hist_field->flags & (...)) goto err; } else { if (hist_field->flags & (...)) goto err; } hist_data->fields[val_idx] = hist_field; Both checks jump past that store, and the err label returns without freeing anything. The error unwinds to create_hist_data(), which calls destroy_hist_data() -> destroy_hist_fields(), and that reaches a field only by walking fields[]. A field that never got there is unreachable. commit e0213434fe3e ("tracing: Do not let histogram values have some modifiers") set ret to -EINVAL and fell through to the store, which left the field owned by fields[] and freed along with the rest of hist_data. Splitting the check into a value case and a variable case replaced that fall-through with a goto that skips it. With CONFIG_DEBUG_KMEMLEAK, 200 writes of # echo 'hist:keys=prev_pid:vals=next_pid.log2' > \ events/sched/sched_switch/trigger each correctly rejected with -EINVAL, leave 332 unreferenced objects (63744 bytes) reported at create_hist_field(); 200 install and remove cycles of a valid trigger leave none. A '.log2' field is two allocations, since create_hist_field() puts the plain field in operands[0] of the log2 field, and both are reported. Use destroy_hist_field() rather than __destroy_hist_field() so that operands[0] is freed as well. It returns early for HIST_FIELD_FL_VAR_REF, which is what an operand owned by hist_data->var_refs[] needs; the rejected field itself is never a var ref, because a var ref never carries a modifier flag.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= e30fbc618e97b38dbb49f1d44dcd0778d3f23b8c, < e787361bb6b0026ea3eb4d3fa7a304c7fcb99555; >= e30fbc618e97b38dbb49f1d44dcd0778d3f23b8c, < b22dc0add7d72b8bd9cae3188db0dd65da1c8652; >= e30fbc618e97b38dbb49f1d44dcd0778d3f23b8c, < 891c21f6d5673b2a519b536243bfc6dd2d35beb6; >= e30fbc618e97b38dbb49f1d44dcd0778d3f23b8c, < 230234d12ce42ab04132a32c3a848f07a5d27a71; 7403630eb94c1d664fb873f967427ef2f6ee3699; 8d505d06d7330f5d67d3e5e9e1c647fb0b10ddad; >= 6.1.33, < 6.2; >= 6.3.7, < 6.4 |
| Linux | Linux | 6.4 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-97921?
How severe is CVE-2026-97921?
How do I fix CVE-2026-97921?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-97916In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97917In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97918In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97919In the Linux kernel, the following vulnerability has been re…
- CVE-2026-9792A flaw was found in Keycloak's Client Policies, specifically…6.5
- CVE-2026-97920In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97922In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97923In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97924In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97925In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97926In the Linux kernel, the following vulnerability has been re…7
- CVE-2026-97927In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-97921?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
