This is a note to let you know that I've just added the patch titled bpf: print full verifier states on infinite loop detection to the 6.6-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: bpf-print-full-verifier-states-on-infinite-loop-detection.patch and it can be found in the queue-6.6 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From b4d8239534fddc036abe4a0fdbf474d9894d4641 Mon Sep 17 00:00:00 2001 From: Eduard Zingerman <eddyz87@xxxxxxxxx> Date: Tue, 24 Oct 2023 03:09:17 +0300 Subject: bpf: print full verifier states on infinite loop detection From: Eduard Zingerman <eddyz87@xxxxxxxxx> commit b4d8239534fddc036abe4a0fdbf474d9894d4641 upstream. Additional logging in is_state_visited(): if infinite loop is detected print full verifier state for both current and equivalent states. Acked-by: Andrii Nakryiko <andrii@xxxxxxxxxx> Signed-off-by: Eduard Zingerman <eddyz87@xxxxxxxxx> Link: https://lore.kernel.org/r/20231024000917.12153-8-eddyz87@xxxxxxxxx Signed-off-by: Alexei Starovoitov <ast@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- kernel/bpf/verifier.c | 4 ++++ 1 file changed, 4 insertions(+) --- a/kernel/bpf/verifier.c +++ b/kernel/bpf/verifier.c @@ -16540,6 +16540,10 @@ static int is_state_visited(struct bpf_v !iter_active_depths_differ(&sl->state, cur)) { verbose_linfo(env, insn_idx, "; "); verbose(env, "infinite loop detected at insn %d\n", insn_idx); + verbose(env, "cur state:"); + print_verifier_state(env, cur->frame[cur->curframe], true); + verbose(env, "old state:"); + print_verifier_state(env, sl->state.frame[cur->curframe], true); return -EINVAL; } /* if the verifier is processing a loop, avoid adding new state Patches currently in stable-queue which might be from eddyz87@xxxxxxxxx are queue-6.6/bpf-move-explored_state-closer-to-the-beginning-of-verifier.c.patch queue-6.6/bpf-verify-callbacks-as-if-they-are-called-unknown-number-of-times.patch queue-6.6/selftests-bpf-test-widening-for-iterating-callbacks.patch queue-6.6/bpf-keep-track-of-max-number-of-bpf_loop-callback-iterations.patch queue-6.6/bpf-extract-setup_func_entry-utility-function.patch queue-6.6/selftests-bpf-tests-with-delayed-read-precision-makrs-in-loop-body.patch queue-6.6/selftests-bpf-track-string-payload-offset-as-scalar-in-strobemeta.patch queue-6.6/bpf-print-full-verifier-states-on-infinite-loop-detection.patch queue-6.6/selftests-bpf-track-tcp-payload-offset-as-scalar-in-xdp_synproxy.patch queue-6.6/bpf-extract-__check_reg_arg-utility-function.patch queue-6.6/bpf-extract-same_callsites-as-utility-function.patch queue-6.6/bpf-widening-for-callback-iterators.patch queue-6.6/selftests-bpf-test-if-state-loops-are-detected-in-a-tricky-case.patch queue-6.6/bpf-correct-loop-detection-for-iterators-convergence.patch queue-6.6/selftests-bpf-tests-for-iterating-callbacks.patch queue-6.6/bpf-exact-states-comparison-for-iterator-convergence-checks.patch queue-6.6/selftests-bpf-check-if-max-number-of-bpf_loop-iterations-is-tracked.patch