Commit 5fad52be authored by Andrii Nakryiko's avatar Andrii Nakryiko Committed by Alexei Starovoitov

bpf: provide correct register name for exception callback retval check

bpf_throw() is checking R1, so let's report R1 in the log.
Acked-by: default avatarEduard Zingerman <eddyz87@gmail.com>
Acked-by: default avatarShung-Hsi Yu <shung-hsi.yu@suse.com>
Signed-off-by: default avatarAndrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/r/20231202175705.885270-3-andrii@kernel.orgSigned-off-by: default avatarAlexei Starovoitov <ast@kernel.org>
parent 45b5623f
...@@ -11805,7 +11805,7 @@ static int fetch_kfunc_meta(struct bpf_verifier_env *env, ...@@ -11805,7 +11805,7 @@ static int fetch_kfunc_meta(struct bpf_verifier_env *env,
return 0; return 0;
} }
static int check_return_code(struct bpf_verifier_env *env, int regno); static int check_return_code(struct bpf_verifier_env *env, int regno, const char *reg_name);
static int check_kfunc_call(struct bpf_verifier_env *env, struct bpf_insn *insn, static int check_kfunc_call(struct bpf_verifier_env *env, struct bpf_insn *insn,
int *insn_idx_p) int *insn_idx_p)
...@@ -11942,7 +11942,7 @@ static int check_kfunc_call(struct bpf_verifier_env *env, struct bpf_insn *insn, ...@@ -11942,7 +11942,7 @@ static int check_kfunc_call(struct bpf_verifier_env *env, struct bpf_insn *insn,
* to bpf_throw becomes the return value of the program. * to bpf_throw becomes the return value of the program.
*/ */
if (!env->exception_callback_subprog) { if (!env->exception_callback_subprog) {
err = check_return_code(env, BPF_REG_1); err = check_return_code(env, BPF_REG_1, "R1");
if (err < 0) if (err < 0)
return err; return err;
} }
...@@ -14972,7 +14972,7 @@ static int check_ld_abs(struct bpf_verifier_env *env, struct bpf_insn *insn) ...@@ -14972,7 +14972,7 @@ static int check_ld_abs(struct bpf_verifier_env *env, struct bpf_insn *insn)
return 0; return 0;
} }
static int check_return_code(struct bpf_verifier_env *env, int regno) static int check_return_code(struct bpf_verifier_env *env, int regno, const char *reg_name)
{ {
struct tnum enforce_attach_type_range = tnum_unknown; struct tnum enforce_attach_type_range = tnum_unknown;
const struct bpf_prog *prog = env->prog; const struct bpf_prog *prog = env->prog;
...@@ -15026,7 +15026,7 @@ static int check_return_code(struct bpf_verifier_env *env, int regno) ...@@ -15026,7 +15026,7 @@ static int check_return_code(struct bpf_verifier_env *env, int regno)
} }
if (!tnum_in(const_0, reg->var_off)) { if (!tnum_in(const_0, reg->var_off)) {
verbose_invalid_scalar(env, reg, &const_0, "async callback", "R0"); verbose_invalid_scalar(env, reg, &const_0, "async callback", reg_name);
return -EINVAL; return -EINVAL;
} }
return 0; return 0;
...@@ -15126,7 +15126,7 @@ static int check_return_code(struct bpf_verifier_env *env, int regno) ...@@ -15126,7 +15126,7 @@ static int check_return_code(struct bpf_verifier_env *env, int regno)
} }
if (!tnum_in(range, reg->var_off)) { if (!tnum_in(range, reg->var_off)) {
verbose_invalid_scalar(env, reg, &range, "program exit", "R0"); verbose_invalid_scalar(env, reg, &range, "program exit", reg_name);
if (prog->expected_attach_type == BPF_LSM_CGROUP && if (prog->expected_attach_type == BPF_LSM_CGROUP &&
prog_type == BPF_PROG_TYPE_LSM && prog_type == BPF_PROG_TYPE_LSM &&
!prog->aux->attach_func_proto->type) !prog->aux->attach_func_proto->type)
...@@ -17410,7 +17410,7 @@ static int do_check(struct bpf_verifier_env *env) ...@@ -17410,7 +17410,7 @@ static int do_check(struct bpf_verifier_env *env)
continue; continue;
} }
err = check_return_code(env, BPF_REG_0); err = check_return_code(env, BPF_REG_0, "R0");
if (err) if (err)
return err; return err;
process_bpf_exit: process_bpf_exit:
......
...@@ -125,7 +125,7 @@ int check_assert_generic(struct __sk_buff *ctx) ...@@ -125,7 +125,7 @@ int check_assert_generic(struct __sk_buff *ctx)
} }
SEC("?fentry/bpf_check") SEC("?fentry/bpf_check")
__failure __msg("At program exit the register R0 has value (0x40; 0x0)") __failure __msg("At program exit the register R1 has value (0x40; 0x0)")
int check_assert_with_return(void *ctx) int check_assert_with_return(void *ctx)
{ {
bpf_assert_with(!ctx, 64); bpf_assert_with(!ctx, 64);
......
...@@ -308,7 +308,7 @@ int reject_set_exception_cb_bad_ret1(void *ctx) ...@@ -308,7 +308,7 @@ int reject_set_exception_cb_bad_ret1(void *ctx)
} }
SEC("?fentry/bpf_check") SEC("?fentry/bpf_check")
__failure __msg("At program exit the register R0 has value (0x40; 0x0) should") __failure __msg("At program exit the register R1 has value (0x40; 0x0) should")
int reject_set_exception_cb_bad_ret2(void *ctx) int reject_set_exception_cb_bad_ret2(void *ctx)
{ {
bpf_throw(64); bpf_throw(64);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment