Commit f5e477a8 authored by Kumar Kartikeya Dwivedi's avatar Kumar Kartikeya Dwivedi Committed by Alexei Starovoitov

bpf: Fix slot type check in check_stack_write_var_off

For the case where allow_ptr_leaks is false, code is checking whether
slot type is STACK_INVALID and STACK_SPILL and rejecting other cases.
This is a consequence of incorrectly checking for register type instead
of the slot type (NOT_INIT and SCALAR_VALUE respectively). Fix the
check.

Fixes: 01f810ac ("bpf: Allow variable-offset stack access")
Signed-off-by: default avatarKumar Kartikeya Dwivedi <memxor@gmail.com>
Link: https://lore.kernel.org/r/20221103191013.1236066-5-memxor@gmail.comSigned-off-by: default avatarAlexei Starovoitov <ast@kernel.org>
parent 261f4664
...@@ -3181,14 +3181,17 @@ static int check_stack_write_var_off(struct bpf_verifier_env *env, ...@@ -3181,14 +3181,17 @@ static int check_stack_write_var_off(struct bpf_verifier_env *env,
stype = &state->stack[spi].slot_type[slot % BPF_REG_SIZE]; stype = &state->stack[spi].slot_type[slot % BPF_REG_SIZE];
mark_stack_slot_scratched(env, spi); mark_stack_slot_scratched(env, spi);
if (!env->allow_ptr_leaks if (!env->allow_ptr_leaks && *stype != STACK_MISC && *stype != STACK_ZERO) {
&& *stype != NOT_INIT /* Reject the write if range we may write to has not
&& *stype != SCALAR_VALUE) { * been initialized beforehand. If we didn't reject
/* Reject the write if there's are spilled pointers in * here, the ptr status would be erased below (even
* range. If we didn't reject here, the ptr status * though not all slots are actually overwritten),
* would be erased below (even though not all slots are * possibly opening the door to leaks.
* actually overwritten), possibly opening the door to *
* leaks. * We do however catch STACK_INVALID case below, and
* only allow reading possibly uninitialized memory
* later for CAP_PERFMON, as the write may not happen to
* that slot.
*/ */
verbose(env, "spilled ptr in range of var-offset stack write; insn %d, ptr off: %d", verbose(env, "spilled ptr in range of var-offset stack write; insn %d, ptr off: %d",
insn_idx, i); insn_idx, i);
......
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