From: Eduard Zingerman <eddyz87@gmail.com>
To: Kumar Kartikeya Dwivedi <memxor@gmail.com>, bpf@vger.kernel.org
Cc: Tejun Heo <tj@kernel.org>, Alexei Starovoitov <ast@kernel.org>,
Andrii Nakryiko <andrii@kernel.org>,
Daniel Borkmann <daniel@iogearbox.net>,
Emil Tsalapatis <emil@etsalapatis.com>,
kkd@meta.com, kernel-team@meta.com
Subject: Re: [PATCH bpf-next v3 5/9] selftests/bpf: Add kfunc __arena and __arena_nullable argument tests
Date: Tue, 04 Aug 2026 13:36:20 -0700 [thread overview]
Message-ID: <b687c54fa2f2064d6743adf002cbe1191297dcff.camel@gmail.com> (raw)
In-Reply-To: <6022cc53a26ea291178b648a6b07c0e8d6874c70.camel@gmail.com>
On Tue, 2026-08-04 at 13:33 -0700, Eduard Zingerman wrote:
> On Tue, 2026-08-04 at 22:28 +0200, Kumar Kartikeya Dwivedi wrote:
> > On Tue Aug 4, 2026 at 10:26 PM CEST, Eduard Zingerman wrote:
> > > On Tue, 2026-08-04 at 13:24 -0700, Eduard Zingerman wrote:
> > > > On Tue, 2026-08-04 at 22:14 +0200, Kumar Kartikeya Dwivedi wrote:
> > > >
> > > > ...
> > > >
> > > > > > Which leads to several conclusions:
> > > > > > - We should reach a consensus regarding KF_ARENA* usage, as these
> > > > > > kfuncs would clearly benefit from having __arena annotations on
> > > > > > parameters (on the BPF side, on the host side these should be
> > > > > > declared as plain pointers).
> > > > >
> > > > > Yes, but even if we do, for the time begin, we won't have support for
> > > > > automatically emitting it until resolve_btfids changes are done. That said, I
> > > > > can manually add the annotation for now.
> > > >
> > > > We can fast-track resolve_btfids.
> > > >
> > > > > > - In patch #1, it appears that there is no need to allow PTR_TO_ARENA
> > > > > > for parameters passed to such a function. At-least I don't see a C
> > > > > > code not involving manual casts that would require such support.
> > > > >
> > > > > This one I don't understand. Why wouldn't we get PTR_TO_ARENA typed paramters as
> > > > > arguments?
> > > >
> > > > `(u64 *)val` is translated as an address space cast instruction.
> > > > This instruction yields PTR_TO_ARENA. Except for explicit casts,
> > > > how else can you pass PTR_TO_ARENA to such a function?
> > >
> > > For example, `foo->ptr` yields a scalar from the verifier point of view.
> > >
> >
> > Sure, but I don't think we should reject the case where someone does explicit
> > cast. See e.g. the global function __arena tag, which also accepts both cases.
>
> PTR_TO_ARENA is already a valid kernel space pointer, it does not need
> additional conversion.
Nah, that's not true. It is still a 32-bit value.
next prev parent reply other threads:[~2026-08-04 20:36 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-03 12:51 [PATCH bpf-next v3 0/9] Add arena argument support to kfuncs and struct_ops Kumar Kartikeya Dwivedi
2026-08-03 12:51 ` [PATCH bpf-next v3 1/9] bpf: Support __arena and __arena_nullable kfunc argument suffixes Kumar Kartikeya Dwivedi
2026-08-03 13:19 ` sashiko-bot
2026-08-04 17:42 ` Amery Hung
2026-08-03 12:51 ` [PATCH bpf-next v3 2/9] bpf: Support __arena and __arena_nullable on struct_ops arguments Kumar Kartikeya Dwivedi
2026-08-03 14:19 ` sashiko-bot
2026-08-04 23:55 ` Eduard Zingerman
2026-08-03 12:51 ` [PATCH bpf-next v3 3/9] bpf, x86: JIT __arena kfunc argument rebasing Kumar Kartikeya Dwivedi
2026-08-05 0:40 ` Eduard Zingerman
2026-08-03 12:51 ` [PATCH bpf-next v3 4/9] bpf, x86: Convert struct_ops arena arguments in the trampoline Kumar Kartikeya Dwivedi
2026-08-03 12:51 ` [PATCH bpf-next v3 5/9] selftests/bpf: Add kfunc __arena and __arena_nullable argument tests Kumar Kartikeya Dwivedi
2026-08-03 13:35 ` sashiko-bot
2026-08-04 20:01 ` Eduard Zingerman
2026-08-04 20:14 ` Kumar Kartikeya Dwivedi
2026-08-04 20:24 ` Eduard Zingerman
2026-08-04 20:26 ` Eduard Zingerman
2026-08-04 20:28 ` Kumar Kartikeya Dwivedi
2026-08-04 20:33 ` Eduard Zingerman
2026-08-04 20:36 ` Eduard Zingerman [this message]
2026-08-03 12:51 ` [PATCH bpf-next v3 6/9] selftests/bpf: Add JIT-sequence tests for __arena kfunc arguments Kumar Kartikeya Dwivedi
2026-08-03 13:35 ` sashiko-bot
2026-08-03 12:51 ` [PATCH bpf-next v3 7/9] selftests/bpf: Add struct_ops __arena and __arena_nullable argument tests Kumar Kartikeya Dwivedi
2026-08-03 13:39 ` sashiko-bot
2026-08-03 12:51 ` [PATCH bpf-next v3 8/9] bpf, x86: Fix stack-passed arguments for indirect trampolines Kumar Kartikeya Dwivedi
2026-08-03 13:42 ` sashiko-bot
2026-08-03 12:51 ` [PATCH bpf-next v3 9/9] selftests/bpf: Test stack-passed struct_ops arena arguments 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=b687c54fa2f2064d6743adf002cbe1191297dcff.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=emil@etsalapatis.com \
--cc=kernel-team@meta.com \
--cc=kkd@meta.com \
--cc=memxor@gmail.com \
--cc=tj@kernel.org \
/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