mirror of
https://github.com/torvalds/linux.git
synced 2026-09-26 18:12:03 +02:00
bpf: Compare stack frames in regs_exact()
regs_exact() compares the register state up to id, followed by the ID
mappings, but does not compare frameno. The PTR_TO_STACK case in regsafe()
checks frameno separately, which is bypassed when exact comparison is
requested. Consequently, infinite-loop detection can treat pointers to
different stack frames as the same pointer and reject a finite loop.
For example, initialize fp-8 to zero in the caller and to one in the
callee, then pass the caller's fp-8 to the callee as r1:
loop:
r0 = *(u64 *)(r1 + 0);
if r0 != 0 goto done;
r1 = r10;
r1 += -8;
goto loop;
done:
exit;
The loop terminates after reading the callee's slot on its second
iteration. At the loop header, however, the only relevant difference is
r1's frameno, so exact comparison incorrectly reports an infinite loop.
The same problem occurs when the pointer is spilled to the stack.
Move frameno into the type-specific metadata union, ahead of id, so the
existing prefix comparison in regs_exact() covers it. Ordinary stack
pointers do not use another union member. Iterator and IRQ stack-slot
states use their dedicated union views and do not need a frame lookup.
This also keeps bpf_reg_state at 80 bytes.
Since frameno now shares storage with other pointer metadata, it is only
meaningful for PTR_TO_STACK registers. Return NULL from bpf_func() for
other register types. process_iter_arg(), get_constant_map_key() and
is_dynptr_reg_valid_init() look up the frame before checking the register
type and would otherwise index frame[] with a byte of the register's map
or BTF pointer. They dereference the frame only after their type check.
Move the states_maybe_looping() boundary from frameno to precise after the
field relocation. Its prefix comparison continues to cover the complete
value state and now includes frameno.
Continue to ignore precise. Precision marks control whether pruning may
ignore scalar ranges; they do not change the represented values, and exact
comparison already compares those ranges unconditionally. Marks can also
change through backtracking while an ancestor state is still being
explored.
Fixes: d5b892fd60 ("bpf: make infinite loop detection in is_state_visited() exact")
Reported-by: Eduard Zingerman <eddyz87@gmail.com>
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Eduard Zingerman <eddyz87@gmail.com>
Link: https://patch.msgid.link/20260919014213.1840880-2-memxor@gmail.com
This commit is contained in:
parent
b4e875d397
commit
8901cee931
|
|
@ -45,6 +45,14 @@ struct bpf_reg_state {
|
|||
union {
|
||||
/* valid when type == PTR_TO_PACKET */
|
||||
int range;
|
||||
/*
|
||||
* Valid when type == PTR_TO_STACK. Inside the callee two registers
|
||||
* can be both PTR_TO_STACK like R1=fp-8 and R2=fp-8, but one of them
|
||||
* points to this function stack while another to the caller's stack.
|
||||
* To differentiate them 'frameno' is used which is an index in
|
||||
* bpf_verifier_state->frame[] array pointing to bpf_func_state.
|
||||
*/
|
||||
u8 frameno;
|
||||
|
||||
/*
|
||||
* For CONST_PTR_TO_MAP, PTR_TO_MAP_KEY, PTR_TO_MAP_VALUE and
|
||||
|
|
@ -155,14 +163,6 @@ struct bpf_reg_state {
|
|||
* during state comparisons.
|
||||
*/
|
||||
u32 map_uid;
|
||||
/*
|
||||
* Inside the callee two registers can be both PTR_TO_STACK like
|
||||
* R1=fp-8 and R2=fp-8, but one of them points to this function stack
|
||||
* while another to the caller's stack. To differentiate them 'frameno'
|
||||
* is used which is an index in bpf_verifier_state->frame[] array
|
||||
* pointing to bpf_func_state.
|
||||
*/
|
||||
u8 frameno;
|
||||
/* if (!precise && SCALAR_VALUE) min/max/tnum don't affect safety */
|
||||
bool precise;
|
||||
};
|
||||
|
|
@ -1239,11 +1239,18 @@ static inline int bpf_get_spi(s32 off)
|
|||
return (-off - 1) / BPF_REG_SIZE;
|
||||
}
|
||||
|
||||
/*
|
||||
* Return the function state a stack pointer register refers to. frameno
|
||||
* shares storage with other pointer metadata, so return NULL for any
|
||||
* other register type instead of indexing frame[] with aliased bytes.
|
||||
*/
|
||||
static inline struct bpf_func_state *bpf_func(struct bpf_verifier_env *env,
|
||||
const struct bpf_reg_state *reg)
|
||||
{
|
||||
struct bpf_verifier_state *cur = env->cur_state;
|
||||
|
||||
if (reg->type != PTR_TO_STACK)
|
||||
return NULL;
|
||||
return cur->frame[reg->frameno];
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -644,10 +644,7 @@ static bool regsafe(struct bpf_verifier_env *env, struct bpf_reg_state *rold,
|
|||
return range_within(rold, rcur) &&
|
||||
tnum_in(rold->var_off, rcur->var_off);
|
||||
case PTR_TO_STACK:
|
||||
/* two stack pointers are equal only if they're pointing to
|
||||
* the same stack frame, since fp-8 in foo != fp-8 in bar
|
||||
*/
|
||||
return regs_exact(rold, rcur, idmap) && rold->frameno == rcur->frameno;
|
||||
return regs_exact(rold, rcur, idmap);
|
||||
case PTR_TO_ARENA:
|
||||
return true;
|
||||
case PTR_TO_INSN:
|
||||
|
|
@ -1126,7 +1123,7 @@ static bool states_maybe_looping(struct bpf_verifier_state *old,
|
|||
fcur = cur->frame[fr];
|
||||
for (i = 0; i < MAX_BPF_REG; i++)
|
||||
if (memcmp(&fold->regs[i], &fcur->regs[i],
|
||||
offsetof(struct bpf_reg_state, frameno)))
|
||||
offsetof(struct bpf_reg_state, precise)))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user