Re: [PATCH v5 bpf-next 12/23] bpf: generalize is_branch_taken() to work with two registers

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, Oct 31, 2023 at 8:38 AM Eduard Zingerman <eddyz87@xxxxxxxxx> wrote:
>
> On Fri, 2023-10-27 at 11:13 -0700, Andrii Nakryiko wrote:
> > > While still assuming that second register is a constant, generalize
> > > is_branch_taken-related code to accept two registers instead of register
> > > plus explicit constant value. This also, as a side effect, allows to
> > > simplify check_cond_jmp_op() by unifying BPF_K case with BPF_X case, for
> > > which we use a fake register to represent BPF_K's imm constant as
> > > a register.
> > >
> > > Signed-off-by: Andrii Nakryiko <andrii@xxxxxxxxxx>
>
> Acked-by: Eduard Zingerman <eddyz87@xxxxxxxxx>
>
> Please see a nitpick below.
>
> > > ---
> > >  kernel/bpf/verifier.c | 58 ++++++++++++++++++++++++-------------------
> > >  1 file changed, 33 insertions(+), 25 deletions(-)
> > >
> > > diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c
> > > index aa13f32751a1..fd328c579f10 100644
> > > --- a/kernel/bpf/verifier.c
> > > +++ b/kernel/bpf/verifier.c
> > > @@ -14169,8 +14169,13 @@ static void find_good_pkt_pointers(struct bpf_verifier_state *vstate,
> > >     }));
> > >  }
> > >
> > > -static int is_branch32_taken(struct bpf_reg_state *reg1, u32 val, u8 opcode)
> > > +/*
> > > + * <reg1> <op> <reg2>, currently assuming reg2 is a constant
> > > + */
> > > +static int is_branch32_taken(struct bpf_reg_state *reg1, struct bpf_reg_state *reg2, u8 opcode)
> > >  {
> > > +   struct tnum subreg = tnum_subreg(reg1->var_off);
> > > +   u32 val = (u32)tnum_subreg(reg2->var_off).value;
> > >     s32 sval = (s32)val;
> > >
> > >     switch (opcode) {
> > > @@ -14250,8 +14255,12 @@ static int is_branch32_taken(struct bpf_reg_state *reg1, u32 val, u8 opcode)
> > >  }
> > >
> > >
> > > -static int is_branch64_taken(struct bpf_reg_state *reg1, u64 val, u8 opcode)
> > > +/*
> > > + * <reg1> <op> <reg2>, currently assuming reg2 is a constant
> > > + */
> > > +static int is_branch64_taken(struct bpf_reg_state *reg1, struct bpf_reg_state *reg2, u8 opcode)
> > >  {
> > > +   u64 val = reg2->var_off.value;
> > >     s64 sval = (s64)val;
> > >
> > >     switch (opcode) {
> > > @@ -14330,16 +14339,23 @@ static int is_branch64_taken(struct bpf_reg_state *reg1, u64 val, u8 opcode)
> > >     return -1;
> > >  }
> > >
> > > -/* compute branch direction of the expression "if (reg opcode val) goto target;"
> > > +/* compute branch direction of the expression "if (<reg1> opcode <reg2>) goto target;"
> > >   * and return:
> > >   *  1 - branch will be taken and "goto target" will be executed
> > >   *  0 - branch will not be taken and fall-through to next insn
> > > - * -1 - unknown. Example: "if (reg < 5)" is unknown when register value
> > > + * -1 - unknown. Example: "if (reg1 < 5)" is unknown when register value
> > >   *      range [0,10]
> > >   */
> > > -static int is_branch_taken(struct bpf_reg_state *reg1, u64 val, u8 opcode,
> > > -                      bool is_jmp32)
> > > +static int is_branch_taken(struct bpf_reg_state *reg1, struct bpf_reg_state *reg2,
> > > +                      u8 opcode, bool is_jmp32)
> > >  {
> > > +   struct tnum reg2_tnum = is_jmp32 ? tnum_subreg(reg2->var_off) : reg2->var_off;
> > > +   u64 val;
> > > +
> > > +   if (!tnum_is_const(reg2_tnum))
> > > +           return -1;
> > > +   val = reg2_tnum.value;
> > > +
> > >     if (__is_pointer_value(false, reg1)) {
> > >             if (!reg_not_null(reg1))
> > >                     return -1;
> > > @@ -14361,8 +14377,8 @@ static int is_branch_taken(struct bpf_reg_state *reg1, u64 val, u8 opcode,
> > >     }
> > >
> > >     if (is_jmp32)
> > > -           return is_branch32_taken(reg1, val, opcode);
> > > -   return is_branch64_taken(reg1, val, opcode);
> > > +           return is_branch32_taken(reg1, reg2, opcode);
> > > +   return is_branch64_taken(reg1, reg2, opcode);
> > >  }
> > >
> > >  static int flip_opcode(u32 opcode)
> > > @@ -14833,6 +14849,7 @@ static int check_cond_jmp_op(struct bpf_verifier_env *env,
> > >     struct bpf_reg_state *regs = this_branch->frame[this_branch->curframe]->regs;
> > >     struct bpf_reg_state *dst_reg, *other_branch_regs, *src_reg = NULL;
> > >     struct bpf_reg_state *eq_branch_regs;
> > > +   struct bpf_reg_state fake_reg;
>
> Nitpick:
> bpf_reg_state has a lot of fields, e.g. 'parent' pointer. While it looks like
> the use within this patch-set is safe, I suggest to change the declaration to
> include '= {}' initializer. Just to err on a safe side for future modifications.

yes, good point. One other place where we use "fake_reg" doesn
zero-initialize with = {}, will fix.

>
> > >     u8 opcode = BPF_OP(insn->code);
> > >     bool is_jmp32;
> > >     int pred = -1;
> > > @@ -14873,36 +14890,27 @@ static int check_cond_jmp_op(struct bpf_verifier_env *env,
> > >                     verbose(env, "BPF_JMP/JMP32 uses reserved fields\n");
> > >                     return -EINVAL;
> > >             }
> > > +           src_reg = &fake_reg;
> > > +           src_reg->type = SCALAR_VALUE;
> > > +           __mark_reg_known(src_reg, insn->imm);
> > >     }
> > >
> > >     is_jmp32 = BPF_CLASS(insn->code) == BPF_JMP32;
> > >
> > >     if (BPF_SRC(insn->code) == BPF_K) {
> > > -           pred = is_branch_taken(dst_reg, insn->imm, opcode, is_jmp32);
> > > +           pred = is_branch_taken(dst_reg, src_reg, opcode, is_jmp32);
> > >     } else if (src_reg->type == SCALAR_VALUE &&
> > >                is_jmp32 && tnum_is_const(tnum_subreg(src_reg->var_off))) {
> > > -           pred = is_branch_taken(dst_reg,
> > > -                                  tnum_subreg(src_reg->var_off).value,
> > > -                                  opcode,
> > > -                                  is_jmp32);
> > > +           pred = is_branch_taken(dst_reg, src_reg, opcode, is_jmp32);
> > >     } else if (src_reg->type == SCALAR_VALUE &&
> > >                !is_jmp32 && tnum_is_const(src_reg->var_off)) {
> > > -           pred = is_branch_taken(dst_reg,
> > > -                                  src_reg->var_off.value,
> > > -                                  opcode,
> > > -                                  is_jmp32);
> > > +           pred = is_branch_taken(dst_reg, src_reg, opcode, is_jmp32);
> > >     } else if (dst_reg->type == SCALAR_VALUE &&
> > >                is_jmp32 && tnum_is_const(tnum_subreg(dst_reg->var_off))) {
> > > -           pred = is_branch_taken(src_reg,
> > > -                                  tnum_subreg(dst_reg->var_off).value,
> > > -                                  flip_opcode(opcode),
> > > -                                  is_jmp32);
> > > +           pred = is_branch_taken(src_reg, dst_reg, flip_opcode(opcode), is_jmp32);
> > >     } else if (dst_reg->type == SCALAR_VALUE &&
> > >                !is_jmp32 && tnum_is_const(dst_reg->var_off)) {
> > > -           pred = is_branch_taken(src_reg,
> > > -                                  dst_reg->var_off.value,
> > > -                                  flip_opcode(opcode),
> > > -                                  is_jmp32);
> > > +           pred = is_branch_taken(src_reg, dst_reg, flip_opcode(opcode), is_jmp32);
> > >     } else if (reg_is_pkt_pointer_any(dst_reg) &&
> > >                reg_is_pkt_pointer_any(src_reg) &&
> > >                !is_jmp32) {
>





[Index of Archives]     [Linux Samsung SoC]     [Linux Rockchip SoC]     [Linux Actions SoC]     [Linux for Synopsys ARC Processors]     [Linux NFS]     [Linux NILFS]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]


  Powered by Linux