From: Alexei Starovoitov <alexei.starovoitov@gmail.com>
To: Viktor Malik <vmalik@redhat.com>
Cc: Andrii Nakryiko <andrii.nakryiko@gmail.com>,
Eduard Zingerman <eddyz87@gmail.com>, bpf <bpf@vger.kernel.org>,
Alexei Starovoitov <ast@kernel.org>,
Daniel Borkmann <daniel@iogearbox.net>,
Andrii Nakryiko <andrii@kernel.org>,
Martin KaFai Lau <martin.lau@linux.dev>,
Song Liu <song@kernel.org>,
Yonghong Song <yonghong.song@linux.dev>,
John Fastabend <john.fastabend@gmail.com>,
KP Singh <kpsingh@kernel.org>,
Stanislav Fomichev <sdf@fomichev.me>, Hao Luo <haoluo@google.com>,
Jiri Olsa <jolsa@kernel.org>
Subject: Re: [PATCH bpf-next 1/2] bpf: Add kfuncs for read-only string operations
Date: Wed, 2 Oct 2024 09:55:01 -0700 [thread overview]
Message-ID: <CAADnVQLhr+xOF58ppaySOjb6cMdsWEYhr_4ZLvQ-XDWXHBMgBA@mail.gmail.com> (raw)
In-Reply-To: <c831b42e-30ba-4a19-bc0d-5346c8388892@redhat.com>
On Tue, Oct 1, 2024 at 11:12 PM Viktor Malik <vmalik@redhat.com> wrote:
>
> On 10/1/24 19:40, Andrii Nakryiko wrote:
> > On Tue, Oct 1, 2024 at 10:34 AM Alexei Starovoitov
> > <alexei.starovoitov@gmail.com> wrote:
> >>
> >> On Tue, Oct 1, 2024 at 10:04 AM Andrii Nakryiko
> >> <andrii.nakryiko@gmail.com> wrote:
> >>>
> >>> On Tue, Oct 1, 2024 at 7:48 AM Alexei Starovoitov
> >>> <alexei.starovoitov@gmail.com> wrote:
> >>>>
> >>>> On Tue, Oct 1, 2024 at 4:26 AM Eduard Zingerman <eddyz87@gmail.com> wrote:
> >>>>>
> >>>>> On Mon, 2024-09-30 at 15:00 -0700, Andrii Nakryiko wrote:
> >>>>>
> >>>>> [...]
> >>>>>
> >>>>>> Right now, the only way to pass dynamically sized anything is through
> >>>>>> dynptr, AFAIU.
> >>>>>
> >>>>> But we do have 'is_kfunc_arg_mem_size()' that checks for __sz suffix,
> >>>>> e.g. used for bpf_copy_from_user_str():
> >>>>>
> >>>>> /**
> >>>>> * bpf_copy_from_user_str() - Copy a string from an unsafe user address
> >>>>> * @dst: Destination address, in kernel space. This buffer must be
> >>>>> * at least @dst__sz bytes long.
> >>>>> * @dst__sz: Maximum number of bytes to copy, includes the trailing NUL.
> >>>>> * ...
> >>>>> */
> >>>>> __bpf_kfunc int bpf_copy_from_user_str(void *dst, u32 dst__sz, const void __user *unsafe_ptr__ign, u64 flags)
> >>>>>
> >>>>> However, this suffix won't work for strnstr because of the arguments order.
> >>>>
> >>>> Stating the obvious... we don't need to keep the order exactly the same.
> >>>>
> >>>> Regarding all of these kfuncs... as Andrii pointed out 'const char *s'
> >>>> means that the verifier will check that 's' points to a valid byte.
> >>>> I think we can do a hybrid static + dynamic safety scheme here.
> >>>> All of the kfunc signatures can stay the same, but we'd have to
> >>>> open code all string helpers with __get_kernel_nofault() instead of
> >>>> direct memory access.
> >>>> Since the first byte is guaranteed to be valid by the verifier
> >>>> we only need to make sure that the s+N bytes won't cause page faults
> >>>
> >>> You mean to just check that s[N-1] can be read? Given a large enough
> >>> N, couldn't it be that some page between s[0] and s[N-1] still can be
> >>> unmapped, defeating this check?
> >>
> >> Just checking s[0] and s[N-1] is not enough, obviously, and especially,
> >> since the logic won't know where nul byte is, so N is unknown.
> >> I meant to that all of str* kfuncs will be reading all bytes
> >> via __get_kernel_nofault() until they find \0.
> >
> > Ah, ok, I see what you mean now.
> >
> >> It can be optimized to 8 byte access.
> >> The open coding (aka copy-paste) is unfortunate, of course.
> >
> > Yep, this sucks.
>
> Yeah, that's quite annoying. I really wanted to avoid doing that. Also,
> we won't be able to use arch-optimized versions of the functions.
>
> Just to make sure I understand things correctly - can we do what Eduard
> suggested and add explicit sizes for all arguments using the __sz
> suffix? So something like:
>
> const char *bpf_strnstr(const char *s1, u32 s1__sz, const char *s2, u32 s2__sz);
That's ok-ish, but you probably want:
const char *bpf_strnstr(void *s1, u32 s1__sz, void *s2, u32 s2__sz);
and then to call strnstr() you still need to strnlen(s2, s2__sz).
But a more general question... how always passing size will work
for bpftrace ? Does it always know the upper bound of storage where
strings are stored?
I would think __get_kernel_nofault() approach is user friendlier.
next prev parent reply other threads:[~2024-10-02 16:55 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-26 6:18 [PATCH bpf-next 0/2] bpf: Add kfuncs for read-only string operations Viktor Malik
2024-09-26 6:18 ` [PATCH bpf-next 1/2] " Viktor Malik
2024-09-30 22:00 ` Andrii Nakryiko
2024-10-01 11:26 ` Eduard Zingerman
2024-10-01 14:48 ` Alexei Starovoitov
2024-10-01 17:03 ` Andrii Nakryiko
2024-10-01 17:34 ` Alexei Starovoitov
2024-10-01 17:40 ` Andrii Nakryiko
2024-10-02 6:12 ` Viktor Malik
2024-10-02 16:55 ` Alexei Starovoitov [this message]
2024-10-03 4:51 ` Viktor Malik
2024-10-03 17:02 ` Alexei Starovoitov
2024-10-03 19:37 ` Viktor Malik
2024-10-10 2:03 ` Alexei Starovoitov
2025-02-27 16:24 ` Alexei Starovoitov
2025-02-27 16:36 ` Viktor Malik
2025-02-27 17:17 ` Alexei Starovoitov
2024-09-26 6:18 ` [PATCH bpf-next 2/2] selftests/bpf: Add tests for string kfuncs Viktor Malik
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=CAADnVQLhr+xOF58ppaySOjb6cMdsWEYhr_4ZLvQ-XDWXHBMgBA@mail.gmail.com \
--to=alexei.starovoitov@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=eddyz87@gmail.com \
--cc=haoluo@google.com \
--cc=john.fastabend@gmail.com \
--cc=jolsa@kernel.org \
--cc=kpsingh@kernel.org \
--cc=martin.lau@linux.dev \
--cc=sdf@fomichev.me \
--cc=song@kernel.org \
--cc=vmalik@redhat.com \
--cc=yonghong.song@linux.dev \
/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;
as well as URLs for NNTP newsgroup(s).