Commit d786957e authored by Cupertino Miranda's avatar Cupertino Miranda Committed by Alexei Starovoitov

bpf/verifier: replace calls to mark_reg_unknown.

In order to further simplify the code in adjust_scalar_min_max_vals all
the calls to mark_reg_unknown are replaced by __mark_reg_unknown.

static void mark_reg_unknown(struct bpf_verifier_env *env,
  			     struct bpf_reg_state *regs, u32 regno)
{
	if (WARN_ON(regno >= MAX_BPF_REG)) {
		... mark all regs not init ...
		return;
    }
	__mark_reg_unknown(env, regs + regno);
}

The 'regno >= MAX_BPF_REG' does not apply to
adjust_scalar_min_max_vals(), because it is only called from the
following stack:
  - check_alu_op
    - adjust_reg_min_max_vals
      - adjust_scalar_min_max_vals

The check_alu_op() does check_reg_arg() which verifies that both src and
dst register numbers are within bounds.
Signed-off-by: default avatarCupertino Miranda <cupertino.miranda@oracle.com>
Acked-by: default avatarEduard Zingerman <eddyz87@gmail.com>
Cc: Yonghong Song <yonghong.song@linux.dev>
Cc: Alexei Starovoitov <alexei.starovoitov@gmail.com>
Cc: David Faust <david.faust@oracle.com>
Cc: Jose Marchesi <jose.marchesi@oracle.com>
Cc: Elena Zannoni <elena.zannoni@oracle.com>
Cc: Andrii Nakryiko <andrii.nakryiko@gmail.com>
Link: https://lore.kernel.org/r/20240506141849.185293-2-cupertino.miranda@oracle.comSigned-off-by: default avatarAlexei Starovoitov <ast@kernel.org>
parent 41b307ad
...@@ -13887,7 +13887,6 @@ static int adjust_scalar_min_max_vals(struct bpf_verifier_env *env, ...@@ -13887,7 +13887,6 @@ static int adjust_scalar_min_max_vals(struct bpf_verifier_env *env,
struct bpf_reg_state *dst_reg, struct bpf_reg_state *dst_reg,
struct bpf_reg_state src_reg) struct bpf_reg_state src_reg)
{ {
struct bpf_reg_state *regs = cur_regs(env);
u8 opcode = BPF_OP(insn->code); u8 opcode = BPF_OP(insn->code);
bool src_known; bool src_known;
s64 smin_val, smax_val; s64 smin_val, smax_val;
...@@ -13994,7 +13993,7 @@ static int adjust_scalar_min_max_vals(struct bpf_verifier_env *env, ...@@ -13994,7 +13993,7 @@ static int adjust_scalar_min_max_vals(struct bpf_verifier_env *env,
/* Shifts greater than 31 or 63 are undefined. /* Shifts greater than 31 or 63 are undefined.
* This includes shifts by a negative number. * This includes shifts by a negative number.
*/ */
mark_reg_unknown(env, regs, insn->dst_reg); __mark_reg_unknown(env, dst_reg);
break; break;
} }
if (alu32) if (alu32)
...@@ -14007,7 +14006,7 @@ static int adjust_scalar_min_max_vals(struct bpf_verifier_env *env, ...@@ -14007,7 +14006,7 @@ static int adjust_scalar_min_max_vals(struct bpf_verifier_env *env,
/* Shifts greater than 31 or 63 are undefined. /* Shifts greater than 31 or 63 are undefined.
* This includes shifts by a negative number. * This includes shifts by a negative number.
*/ */
mark_reg_unknown(env, regs, insn->dst_reg); __mark_reg_unknown(env, dst_reg);
break; break;
} }
if (alu32) if (alu32)
...@@ -14020,7 +14019,7 @@ static int adjust_scalar_min_max_vals(struct bpf_verifier_env *env, ...@@ -14020,7 +14019,7 @@ static int adjust_scalar_min_max_vals(struct bpf_verifier_env *env,
/* Shifts greater than 31 or 63 are undefined. /* Shifts greater than 31 or 63 are undefined.
* This includes shifts by a negative number. * This includes shifts by a negative number.
*/ */
mark_reg_unknown(env, regs, insn->dst_reg); __mark_reg_unknown(env, dst_reg);
break; break;
} }
if (alu32) if (alu32)
...@@ -14029,7 +14028,7 @@ static int adjust_scalar_min_max_vals(struct bpf_verifier_env *env, ...@@ -14029,7 +14028,7 @@ static int adjust_scalar_min_max_vals(struct bpf_verifier_env *env,
scalar_min_max_arsh(dst_reg, &src_reg); scalar_min_max_arsh(dst_reg, &src_reg);
break; break;
default: default:
mark_reg_unknown(env, regs, insn->dst_reg); __mark_reg_unknown(env, dst_reg);
break; break;
} }
......
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