This is a note to let you know that I've just added the patch titled bpf: extract __check_reg_arg() utility function 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-extract-__check_reg_arg-utility-function.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 683b96f9606ab7308ffb23c46ab43cecdef8a241 Mon Sep 17 00:00:00 2001 From: Eduard Zingerman <eddyz87@xxxxxxxxx> Date: Tue, 21 Nov 2023 04:06:54 +0200 Subject: bpf: extract __check_reg_arg() utility function From: Eduard Zingerman <eddyz87@xxxxxxxxx> commit 683b96f9606ab7308ffb23c46ab43cecdef8a241 upstream. Split check_reg_arg() into two utility functions: - check_reg_arg() operating on registers from current verifier state; - __check_reg_arg() operating on a specific set of registers passed as a parameter; The __check_reg_arg() function would be used by a follow-up change for callbacks handling. Acked-by: Andrii Nakryiko <andrii@xxxxxxxxxx> Signed-off-by: Eduard Zingerman <eddyz87@xxxxxxxxx> Link: https://lore.kernel.org/r/20231121020701.26440-5-eddyz87@xxxxxxxxx Signed-off-by: Alexei Starovoitov <ast@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- kernel/bpf/verifier.c | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) --- a/kernel/bpf/verifier.c +++ b/kernel/bpf/verifier.c @@ -3321,13 +3321,11 @@ static void mark_insn_zext(struct bpf_ve reg->subreg_def = DEF_NOT_SUBREG; } -static int check_reg_arg(struct bpf_verifier_env *env, u32 regno, - enum reg_arg_type t) +static int __check_reg_arg(struct bpf_verifier_env *env, struct bpf_reg_state *regs, u32 regno, + enum reg_arg_type t) { - struct bpf_verifier_state *vstate = env->cur_state; - struct bpf_func_state *state = vstate->frame[vstate->curframe]; struct bpf_insn *insn = env->prog->insnsi + env->insn_idx; - struct bpf_reg_state *reg, *regs = state->regs; + struct bpf_reg_state *reg; bool rw64; if (regno >= MAX_BPF_REG) { @@ -3368,6 +3366,15 @@ static int check_reg_arg(struct bpf_veri return 0; } +static int check_reg_arg(struct bpf_verifier_env *env, u32 regno, + enum reg_arg_type t) +{ + struct bpf_verifier_state *vstate = env->cur_state; + struct bpf_func_state *state = vstate->frame[vstate->curframe]; + + return __check_reg_arg(env, state->regs, regno, t); +} + static void mark_jmp_point(struct bpf_verifier_env *env, int idx) { env->insn_aux_data[idx].jmp_point = true; @@ -9147,7 +9154,7 @@ static void clear_caller_saved_regs(stru /* after the call registers r0 - r5 were scratched */ for (i = 0; i < CALLER_SAVED_REGS; i++) { mark_reg_not_init(env, regs, caller_saved[i]); - check_reg_arg(env, caller_saved[i], DST_OP_NO_MARK); + __check_reg_arg(env, regs, caller_saved[i], DST_OP_NO_MARK); } } 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