From: Eduard Zingerman <eddyz87@gmail.com>
To: Andrii Nakryiko <andrii.nakryiko@gmail.com>,
Kumar Kartikeya Dwivedi <memxor@gmail.com>
Cc: bpf@vger.kernel.org, Alexei Starovoitov <ast@kernel.org>,
Andrii Nakryiko <andrii@kernel.org>,
Daniel Borkmann <daniel@iogearbox.net>,
Martin KaFai Lau <martin.lau@kernel.org>,
kkd@meta.com, kernel-team@meta.com
Subject: Re: [PATCH bpf-next v1 1/2] bpf: Summarize sleepable global subprogs
Date: Fri, 28 Feb 2025 15:23:20 -0800 [thread overview]
Message-ID: <3736b28f9266bf8b9c227998e80eb08253aef43e.camel@gmail.com> (raw)
In-Reply-To: <CAEf4BzZ_UQVtOhE3SRvHBE3NyCwfdFCxmiAPPNbLArZVQT6oZg@mail.gmail.com>
On Fri, 2025-02-28 at 15:18 -0800, Andrii Nakryiko wrote:
[...]
> > /* non-recursive DFS pseudo code
> > @@ -17183,9 +17187,20 @@ static int visit_insn(int t, struct bpf_verifier_env *env)
> > mark_prune_point(env, t);
> > mark_jmp_point(env, t);
> > }
> > - if (bpf_helper_call(insn) && bpf_helper_changes_pkt_data(insn->imm))
> > - mark_subprog_changes_pkt_data(env, t);
> > - if (insn->src_reg == BPF_PSEUDO_KFUNC_CALL) {
> > + if (bpf_helper_call(insn)) {
> > + const struct bpf_func_proto *fp;
> > +
> > + ret = get_helper_proto(env, insn->imm, &fp);
> > + /* If called in a non-sleepable context program will be
> > + * rejected anyway, so we should end up with precise
> > + * sleepable marks on subprogs, except for dead code
> > + * elimination.
>
> TBH, I'm worried that we are regressing to doing all these side effect
> analyses disregarding dead code elimination. It's not something
> hypothetical to have an .rodata variable controlling whether, say, to
> do bpf_probe_read_user() (non-sleepable) vs bpf_copy_from_user()
> (sleepable) inside global subprog, depending on some outside
> configuration (e.g., whether we'll be doing SEC("iter.s/task") or it's
> actually profiler logic called inside SEC("perf_event"), all
> controlled by user-space). We do have use cases like this in
> production already, and this dead code elimination is important in
> such cases. Probably can be worked around with more global functions
> and stuff like that, but still, it's worrying we are giving up on such
> an important part of the BPF CO-RE approach - disabling parts of code
> "dynamically" before loading BPF programs.
There were two alternatives on the table last time:
- add support for tags on global functions;
- verify global subprogram call tree in post-order,
in order to have the flags ready when needed.
Both were rejected back than.
But we still can reconsider :)
> > + */
> > + if (ret == 0 && fp->might_sleep)
> > + mark_subprog_sleepable(env, t);
> > + if (bpf_helper_changes_pkt_data(insn->imm))
> > + mark_subprog_changes_pkt_data(env, t);
> > + } else if (insn->src_reg == BPF_PSEUDO_KFUNC_CALL) {
> > struct bpf_kfunc_call_arg_meta meta;
> >
> > ret = fetch_kfunc_meta(env, insn, &meta, NULL);
[...]
next prev parent reply other threads:[~2025-02-28 23:23 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-28 16:28 [PATCH bpf-next v1 0/2] Global subprogs in RCU/{preempt,irq}-disabled sections Kumar Kartikeya Dwivedi
2025-02-28 16:28 ` [PATCH bpf-next v1 1/2] bpf: Summarize sleepable global subprogs Kumar Kartikeya Dwivedi
2025-02-28 20:42 ` Eduard Zingerman
2025-02-28 20:47 ` Kumar Kartikeya Dwivedi
2025-02-28 23:18 ` Andrii Nakryiko
2025-02-28 23:23 ` Eduard Zingerman [this message]
2025-02-28 23:34 ` Andrii Nakryiko
2025-02-28 23:57 ` Eduard Zingerman
2025-03-01 1:43 ` Kumar Kartikeya Dwivedi
2025-02-28 16:28 ` [PATCH bpf-next v1 2/2] selftests/bpf: Test sleepable global subprogs in atomic contexts Kumar Kartikeya Dwivedi
2025-02-28 21:21 ` 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=3736b28f9266bf8b9c227998e80eb08253aef43e.camel@gmail.com \
--to=eddyz87@gmail.com \
--cc=andrii.nakryiko@gmail.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=kernel-team@meta.com \
--cc=kkd@meta.com \
--cc=martin.lau@kernel.org \
--cc=memxor@gmail.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