From: Roberto Sassu <roberto.sassu@huawei.com>
To: Alexei Starovoitov <alexei.starovoitov@gmail.com>,
Kumar Kartikeya Dwivedi <memxor@gmail.com>
Cc: "bpf@vger.kernel.org" <bpf@vger.kernel.org>,
Alexei Starovoitov <ast@kernel.org>,
Andrii Nakryiko <andrii@kernel.org>,
Daniel Borkmann <daniel@iogearbox.net>
Subject: RE: [PATCH bpf-next v1 1/2] bpf: Add support for per-parameter trusted args
Date: Tue, 2 Aug 2022 10:07:17 +0000 [thread overview]
Message-ID: <99f39e29a9ca416cb005ba690c7d7e51@huawei.com> (raw)
In-Reply-To: <CAADnVQ+pFYY_KGegBZQKMwqxYT1J6C_wZX=06UCN9yN7ZHpn4g@mail.gmail.com>
> From: Alexei Starovoitov [mailto:alexei.starovoitov@gmail.com]
> Sent: Tuesday, August 2, 2022 6:46 AM
>
> On Thu, Jul 28, 2022 at 2:02 AM Kumar Kartikeya Dwivedi
> <memxor@gmail.com> wrote:
> >
> > On Thu, 28 Jul 2022 at 10:45, Kumar Kartikeya Dwivedi <memxor@gmail.com>
> wrote:
> > >
> > > On Thu, 28 Jul 2022 at 10:18, Roberto Sassu <roberto.sassu@huawei.com>
> wrote:
> > > >
> > > > > From: Roberto Sassu [mailto:roberto.sassu@huawei.com]
> > > > > Sent: Thursday, July 28, 2022 9:46 AM
> > > > > > From: Kumar Kartikeya Dwivedi [mailto:memxor@gmail.com]
> > > > > > Sent: Wednesday, July 27, 2022 10:16 AM
> > > > > > Similar to how we detect mem, size pairs in kfunc, teach verifier to
> > > > > > treat __ref suffix on argument name to imply that it must be a trusted
> > > > > > arg when passed to kfunc, similar to the effect of KF_TRUSTED_ARGS
> flag
> > > > > > but limited to the specific parameter. This is required to ensure that
> > > > > > kfunc that operate on some object only work on acquired pointers and
> not
> > > > > > normal PTR_TO_BTF_ID with same type which can be obtained by
> pointer
> > > > > > walking. Release functions need not specify such suffix on release
> > > > > > arguments as they are already expected to receive one referenced
> > > > > > argument.
> > > > >
> > > > > Thanks, Kumar. I will try it.
> > > >
> > > > Uhm. I realized that I was already using another suffix,
> > > > __maybe_null, to indicate that a caller can pass NULL as
> > > > argument.
> > > >
> > > > Wouldn't probably work well with two suffixes.
> > > >
> > >
> > > Then you can maybe extend it to parse two suffixes at most (for now
> atleast)?
> > >
> > > > Have you considered to extend BTF_ID_FLAGS to take five
> > > > extra arguments, to set flags for each kfunc parameter?
> > > >
> > >
> > > I didn't understand this. Flags parameter is an OR of the flags you
> > > set, why would we want to extend it to take 5 args?
> > > You can just or f1 | f2 | f3 | f4 | f5, as many as you want.
> >
> > Oh, so you mean having 5 more args to indicate flags on each
> > parameter? It is possible, but I think the scheme for now works ok. If
> > you extend it to parse two suffixes, it should be fine. Yes, the
> > variable name would be ugly, but you can just make a copy into a
> > properly named one. This is the best we can do without switching to
> > BTF tags. We can revisit this when we start having 4 or 5 tags on a
> > single parameter.
> >
> > To make it a bit less verbose you could probably call maybe_null just null?
>
> Thank you for posting the patch.
> It still feels that this extra flexibility gets convoluted.
> I'm not sure Roberto's kfunc actually needs __ref.
> All pointers should be pointers. Hacking -1 and -2 into a pointer
> is something that key infra did, but it doesn't mean that
> we have to carry over it into bpf kfunc.
There is a separate parameter for the keyring IDs that only
verify_pkcs7_signature() understands. Type casting is done
internally in the bpf_verify_pkcs7_signature() kfunc.
The other is always a valid struct key pointer or NULL, coming
from bpf_lookup_user_key() (acquire function). I extended
Kumar's patch further to annotate the struct key parameter
with the _ref_null suffix, to accept a referenced pointer or NULL,
instead of just referenced.
Roberto
next prev parent reply other threads:[~2022-08-02 10:07 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-27 8:15 [PATCH bpf-next v1 0/2] Add __ref annotation for kfuncs Kumar Kartikeya Dwivedi
2022-07-27 8:15 ` [PATCH bpf-next v1 1/2] bpf: Add support for per-parameter trusted args Kumar Kartikeya Dwivedi
2022-07-28 7:46 ` Roberto Sassu
2022-07-28 8:18 ` Roberto Sassu
2022-07-28 8:45 ` Kumar Kartikeya Dwivedi
2022-07-28 9:02 ` Kumar Kartikeya Dwivedi
2022-08-02 4:45 ` Alexei Starovoitov
2022-08-02 10:07 ` Roberto Sassu [this message]
2022-08-02 15:05 ` Alexei Starovoitov
2022-08-02 16:01 ` Roberto Sassu
2022-08-03 14:34 ` Roberto Sassu
2022-07-28 9:02 ` Roberto Sassu
2022-07-27 8:15 ` [PATCH bpf-next v1 2/2] selftests/bpf: Extend KF_TRUSTED_ARGS test for __ref annotation Kumar Kartikeya Dwivedi
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=99f39e29a9ca416cb005ba690c7d7e51@huawei.com \
--to=roberto.sassu@huawei.com \
--cc=alexei.starovoitov@gmail.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--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