A bpf_throw() or a bpf2bpf call inside the [begin_off, end_off) range of a cleanup record can reach that record's landing pad. Add that edge to the CFG walk, which explores the pad and makes both ends prune points, and to bpf_insn_successors(), which liveness and the SCC passes walk. Liveness needs one more thing. When bpf_stack_slot_alive()'s is_live_before() says an outer frame's slot has no reader after the call the frame is suspended at, the landing pad can still be one -- and usually is, since only four registers survive a call and a pad reloads the rest. Ask about the pad as well when the call site names one; otherwise clean_verifier_state() poisons the slot while the callee runs and the pad is rejected for reading it. Signed-off-by: Yonghong Song --- kernel/bpf/cfg.c | 54 ++++++++++++++++++++++++++++++++++++++++--- kernel/bpf/liveness.c | 16 +++++++++++++ 2 files changed, 67 insertions(+), 3 deletions(-) diff --git a/kernel/bpf/cfg.c b/kernel/bpf/cfg.c index 842c7d1eabcc..aa56d38f2e37 100644 --- a/kernel/bpf/cfg.c +++ b/kernel/bpf/cfg.c @@ -6,6 +6,7 @@ #include #include "diagnostics.h" +#include "exception.h" #define verbose(env, fmt, args...) bpf_verifier_log_write(env, fmt, ##args) @@ -158,17 +159,64 @@ static int push_insn(int t, int w, int e, struct bpf_verifier_env *env) return DONE_EXPLORING; } +static int visit_cleanup_pad_edge(int t, struct bpf_verifier_env *env) +{ + int *insn_stack = env->cfg.insn_stack; + int *insn_state = env->cfg.insn_state; + int w; + + if (!env->cleanup_info_cnt) + return DONE_EXPLORING; + w = bpf_exc_pad_of_call(env, t); + if (w < 0) + return DONE_EXPLORING; + + /* + * @t is a call that may branch here, and @w is the target of that + * branch, so both are prune points. @w especially: every covered call + * site in a region unwinds to the same pad, and without a prune point + * at its head the verifier walks the pad again for each of them. + */ + mark_prune_point(env, t); + mark_prune_point(env, w); + mark_jmp_point(env, w); + mark_jump_target(env, w); + + if (insn_state[w]) + return DONE_EXPLORING; + if (env->cfg.cur_stack >= env->prog->len) + return -E2BIG; + insn_stack[env->cfg.cur_stack++] = w; + insn_state[w] |= DISCOVERED; + return KEEP_EXPLORING; +} + +static int merge_visit_ret(int a, int b) +{ + if (a < 0) + return a; + if (b < 0) + return b; + if (a == KEEP_EXPLORING || b == KEEP_EXPLORING) + return KEEP_EXPLORING; + return DONE_EXPLORING; +} + static int visit_func_call_insn(int t, struct bpf_insn *insns, struct bpf_verifier_env *env, bool visit_callee) { - int ret, insn_sz; + int ret, insn_sz, pad_ret; int w; + pad_ret = visit_cleanup_pad_edge(t, env); + if (pad_ret < 0) + return pad_ret; + insn_sz = bpf_is_ldimm64(&insns[t]) ? 2 : 1; ret = push_insn(t, t + insn_sz, FALLTHROUGH, env); if (ret) - return ret; + return merge_visit_ret(pad_ret, ret); mark_prune_point(env, t + insn_sz); /* when we exit from subprog, we need to record non-linear history */ @@ -180,7 +228,7 @@ static int visit_func_call_insn(int t, struct bpf_insn *insns, merge_callee_effects(env, t, w); ret = push_insn(t, w, BRANCH, env); } - return ret; + return merge_visit_ret(pad_ret, ret); } struct bpf_iarray *bpf_iarray_realloc(struct bpf_iarray *old, size_t n_elem) diff --git a/kernel/bpf/liveness.c b/kernel/bpf/liveness.c index 44ecdc5b4ec2..9d44a7dafe5f 100644 --- a/kernel/bpf/liveness.c +++ b/kernel/bpf/liveness.c @@ -8,6 +8,8 @@ #include #include +#include "exception.h" + #define verbose(env, fmt, args...) bpf_verifier_log_write(env, fmt, ##args) struct per_frame_masks { @@ -264,6 +266,13 @@ bpf_insn_successors(struct bpf_verifier_env *env, u32 idx) if (opcode_info->can_jump) succ->items[succ->cnt++] = idx + bpf_jmp_offset(insn) + 1; + if (unlikely(env->cleanup_info_cnt)) { + int pad = bpf_exc_pad_of_call(env, idx); + + if (pad >= 0) + succ->items[succ->cnt++] = pad; + } + return succ; } @@ -397,6 +406,13 @@ bool bpf_stack_slot_alive(struct bpf_verifier_env *env, u32 frameno, u32 half_sp alive = bpf_calls_callback(env, callsite) ? is_live_before(instance, callsite, rel, half_spi) : is_live_before(instance, callsite + 1, rel, half_spi); + + if (!alive && unlikely(env->cleanup_info_cnt)) { + int pad = bpf_exc_pad_of_call(env, callsite); + + if (pad >= 0) + alive = is_live_before(instance, pad, rel, half_spi); + } if (alive) return true; } -- 2.53.0-Meta