CVE-2026-98084 PUBLISHED

bpf: backtracking shouldn't clear outer frame R1-R5 for callbacks

Assigner: Linux
Reserved: 25.09.2026 Published: 25.09.2026 Updated: 25.09.2026

In the Linux kernel, the following vulnerability has been resolved:

bpf: backtracking shouldn't clear outer frame R1-R5 for callbacks

When processing calls to bpf_loop() verifier marks R1 (and R4) as precise. R1 tracks loop iterations number and because of the 'callback_depth < R1' mechanics in check_helper_call() must be marked precise. However, precision propagation for R1 was broken, when bpf_loop() call was verified on a second iteration.

Consider the following verification trace: - main: bpf_loop(nr_loops, callback ...) - callback: BPF_EXIT - main: bpf_loop(nr_loops, callback ...) - ...

While the first visit of the call to bpf_loop() propagated R1 precision as expected, the second call to mark_chain_precision() in the check_helper_call() set R1, but it was immediately reset when backtrack_insn() processed preceding BPF_EXIT in the loop deleted in this patch.

Because of that, the second visit of the call to bpf_loop() injected checkpoint with R1 not marked as precise. Which could trick the verifier into accepting unsafe programs. See the next patch for an example of such program.

Commit is structured in a way to minimize conflicts when 'bpf' would be eventually merged with 'bpf-next'.

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from ab5cfac139ab8576fb54630d4cca23c3e690ee90 to f83890dfed9efc5e19df1dbc1ad707a142936923 (excl.)
  • affected from ab5cfac139ab8576fb54630d4cca23c3e690ee90 to e3e4f66cc4b72333d0886ae2673c360248987889 (excl.)
  • Version b43550d7d58e7ae6618aaab18c1e912fa4d6e3dd is affected
  • affected from 6.6.15 to 6.7 (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 6.7 is affected
  • unaffected from 0 to 6.7 (excl.)
  • unaffected from 7.2.7 to 7.2.* (incl.)
  • unaffected from 7.3-rc2 to * (incl.)

References