From: Eduard Zingerman <eddyz87@gmail.com>
To: Yonghong Song <yhs@meta.com>, bpf@vger.kernel.org, ast@kernel.org
Cc: andrii@kernel.org, daniel@iogearbox.net, martin.lau@linux.dev,
kernel-team@fb.com, yhs@fb.com
Subject: Re: [PATCH bpf-next v1 1/2] bpf: verify scalar ids mapping in regsafe() using check_ids()
Date: Mon, 29 May 2023 03:59:33 +0300 [thread overview]
Message-ID: <7c3381a3dbff95232e8cdf796990e9e43cc489fd.camel@gmail.com> (raw)
In-Reply-To: <9fe005ca-ee56-f852-33fe-24381da8bc04@meta.com>
On Sat, 2023-05-27 at 16:43 -0700, Yonghong Song wrote:
>
> On 5/27/23 5:29 AM, Eduard Zingerman wrote:
> > On Sat, 2023-05-27 at 15:21 +0300, Eduard Zingerman wrote:
> > [...]
> > > > > @@ -15151,6 +15153,33 @@ static bool regsafe(struct bpf_verifier_env *env, struct bpf_reg_state *rold,
> > > > >
> > > > > switch (base_type(rold->type)) {
> > > > > case SCALAR_VALUE:
> > > > > + /* Why check_ids() for precise registers?
> > > > > + *
> > > > > + * Consider the following BPF code:
> > > > > + * 1: r6 = ... unbound scalar, ID=a ...
> > > > > + * 2: r7 = ... unbound scalar, ID=b ...
> > > > > + * 3: if (r6 > r7) goto +1
> > > > > + * 4: r6 = r7
> > > > > + * 5: if (r6 > X) goto ...
> > > > > + * 6: ... memory operation using r7 ...
> > > > > + *
> > > > > + * First verification path is [1-6]:
> > > > > + * - at (4) same bpf_reg_state::id (b) would be assigned to r6 and r7;
> > > > > + * - at (5) r6 would be marked <= X, find_equal_scalars() would also mark
> > > > > + * r7 <= X, because r6 and r7 share same id.
> > > > > + *
> > > > > + * Next verification path would start from (5), because of the jump at (3).
> > > > > + * The only state difference between first and second visits of (5) is
> > > > > + * bpf_reg_state::id assignments for r6 and r7: (b, b) vs (a, b).
> > > > > + * Thus, use check_ids() to distinguish these states.
> > > > > + *
> > > > > + * The `rold->precise` check is a performance optimization. If `rold->id`
> > > > > + * was ever used to access memory / predict jump, the `rold` or any
> > > > > + * register used in `rold = r?` / `r? = rold` operations would be marked
> > > > > + * as precise, otherwise it's ID is not really interesting.
> > > > > + */
> > > > > + if (rold->precise && rold->id && !check_ids(rold->id, rcur->id, idmap))
> > > >
> > > > Do we need rold->id checking in the above? check_ids should have
> > > > rold->id = 0 properly. Or this is just an optimization?
> > >
> > > You are correct, the check_ids() handles this case and it should be inlined,
> > > so there is no need to check rold->id in this 'if' branch.
> > >
> > > > regs_exact() has check_ids as well. Not sure whether it makes sense to
> > > > create a function regs_exact_scalar() just for scalar and include the
> > > > above code. Otherwise, it is strange we do check_ids in different
> > > > places.
> > >
> > > I'm not sure how to best re-organize code here, regs_exact() is a nice
> > > compartmentalized abstraction. It is possible to merge my additional
> > > check_ids() call with the main 'precise' processing part as below:
> > >
> > > @@ -15152,21 +15154,22 @@ static bool regsafe(struct bpf_verifier_env *env, struct bpf_reg_state *rold,
> > > switch (base_type(rold->type)) {
> > > case SCALAR_VALUE:
> > > if (regs_exact(rold, rcur, idmap))
> > > return true;
> > > if (env->explore_alu_limits)
> > > return false;
> > > if (!rold->precise)
> > > return true;
> > > /* new val must satisfy old val knowledge */
> > > return range_within(rold, rcur) &&
> > > - tnum_in(rold->var_off, rcur->var_off);
> > > + tnum_in(rold->var_off, rcur->var_off) &&
> > > + check_ids(rold->id, rcur->id, idmap);
> > >
> > > I'd say that extending /* new val must satisfy ... */ comment to
> > > explain why check_ids() is needed should be sufficient, but I'm open
> > > for suggestions.
> >
> > On the other hand, I wanted to have a separate 'if' branch like:
> >
> > if (rold->precise && !check_ids(rold->id, rcur->id, idmap))
> >
> > Specifically to explain that 'rold->precise' part is an optimization.
>
> Okay, I think you could keep your original implementation. I do think
> checking rold->ref_obj_id in regs_exact is not needed for
> SCALAR_VALUE but it may not be that important. The check_ids
> checking in reg_exact (for SCALAR_VALUE) can also be skipped
> if !rold->precise as an optimization. That is why I mention
> to 'inline' regs_exact and re-arrange the codes. You can still
> mention that optimization w.r.t. rold->precise. Overall if the code
> is more complex, I am okay with your current change.
I thought a bit more about this and came up with example that doesn't
work with 'rold->precise' case:
/* Bump allocated stack */
1: r1 = 0;
*(u64*)(r10 - 8) = r1;
/* r9 = pointer to stack */
2: r9 = r10;
3: r9 += -8;
/* r8 = ktime_get_ns() */
4: call %[bpf_ktime_get_ns];
5: r8 = r0;
/* r7 = ktime_get_ns() */
6: call %[bpf_ktime_get_ns];
7: r7 = r0;
/* r6 = ktime_get_ns() */
8: call %[bpf_ktime_get_ns];
9: r6 = r0;
/* scratch .id from r0 */
10: r0 = 0;
/* if r6 > r7 is an unpredictable jump */
11: if r6 > r7 goto l1;
/* tie r6 and r7 .id */
12: r6 = r7;
l0:
/* if r7 > 4 exit(0) */
13: if r7 > 4 goto l2;
/* access memory at r9[r6] */
14: r9 += r6;
15: r0 = *(u8*)(r9 + 0);
l2:
16: r0 = 0;
17: exit;
l1:
/* tie r6 and r8 .id */
18: r6 = r8;
19: goto l0;
This example is marked as safe, however it isn't.
What happens:
(a) path 1-17 is verified first, it is marked safe
- when 14 is processed mark_chain_precision() is called with regno set to r6;
- moving backwards mark_chain_precision() does *not* mark r7 as precise at 13
because mark_chain_precision() does not track register ids;
- thus, for checkpiont at 13 only r6 is marked as precise.
(b) path 1-11, 18-19, 13-17 is verified next:
- when insn 13 is processed the saved checkpiont is examined,
the only precise register is r6, so check_ids() is called only
for r6 and it returns true => checkpiont is considered safe.
However, in reality register ID assignments differ between (a) and (b) at insn 13:
(a) r6{id=A}, r7{id=A}, r8{id=B}
(b) r6{id=B}, r7{id=A}, r8{id=B}
So, simplest and safest change is as follows:
@@ -15152,4 +15154,6 @@ static bool regsafe(struct bpf_verifier_env *env, struct bpf_reg_state *rold,
switch (base_type(rold->type)) {
case SCALAR_VALUE:
+ if (!check_ids(rold->id, rcur->id, idmap))
+ return false;
if (regs_exact(rold, rcur, idmap))
return true;
Here regsafe() does not care about rold->precise marks,
thus differences between (a) and (b) would be detected by check_ids,
as all three registers r{6,7,8} would be fed to it.
However, it is also costly (note the filter by 40% processed states increase or more):
$ ./veristat -e file,prog,states -f 'states_pct>40' -C master-baseline.log current.log
File Program States (A) States (B) States (DIFF)
----------- ----------------------------- ---------- ---------- --------------
bpf_host.o cil_from_host 37 52 +15 (+40.54%)
bpf_host.o cil_from_netdev 28 46 +18 (+64.29%)
bpf_host.o tail_handle_ipv4_from_host 225 350 +125 (+55.56%)
bpf_host.o tail_handle_ipv4_from_netdev 109 173 +64 (+58.72%)
bpf_host.o tail_handle_ipv6_from_host 250 387 +137 (+54.80%)
bpf_host.o tail_handle_ipv6_from_netdev 132 194 +62 (+46.97%)
bpf_host.o tail_ipv4_host_policy_ingress 103 167 +64 (+62.14%)
bpf_host.o tail_ipv6_host_policy_ingress 98 160 +62 (+63.27%)
bpf_xdp.o __send_drop_notify 8 14 +6 (+75.00%)
bpf_xdp.o tail_handle_nat_fwd_ipv6 648 971 +323 (+49.85%)
loop6.bpf.o trace_virtqueue_add_sgs 226 357 +131 (+57.96%)
I'll modify mark_chain_precision() to mark registers precise taking
into account scalar IDs, when comparisons are processed.
Will report on Monday.
>
> >
> > >
> > > >
> > > > > + return false; > > > > if (regs_exact(rold, rcur, idmap)) >
> > > > return true; > > > > if (env->explore_alu_limits)
> > >
> >
next prev parent reply other threads:[~2023-05-29 0:59 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-26 18:41 [PATCH bpf-next v1 0/2] bpf: verify scalar ids mapping in regsafe() Eduard Zingerman
2023-05-26 18:41 ` [PATCH bpf-next v1 1/2] bpf: verify scalar ids mapping in regsafe() using check_ids() Eduard Zingerman
2023-05-27 0:40 ` Yonghong Song
2023-05-27 12:21 ` Eduard Zingerman
2023-05-27 12:29 ` Eduard Zingerman
2023-05-27 23:43 ` Yonghong Song
2023-05-29 0:59 ` Eduard Zingerman [this message]
2023-05-26 18:41 ` [PATCH bpf-next v1 2/2] selftests/bpf: verify that check_ids() is used for scalars in regsafe() Eduard Zingerman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7c3381a3dbff95232e8cdf796990e9e43cc489fd.camel@gmail.com \
--to=eddyz87@gmail.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=kernel-team@fb.com \
--cc=martin.lau@linux.dev \
--cc=yhs@fb.com \
--cc=yhs@meta.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox