All of lore.kernel.org
 help / color / mirror / Atom feed
From: Benjamin Tissoires <benjamin.tissoires@redhat.com>
To: KP Singh <kpsingh@kernel.org>
Cc: bpf <bpf@vger.kernel.org>, Alexei Starovoitov <ast@kernel.org>,
	Daniel Borkmann <daniel@iogearbox.net>,
	Andrii Nakryiko <andrii@kernel.org>,
	Yosry Ahmed <yosryahmed@google.com>
Subject: Re: [PATCH v2 bpf-next 0/5] Add bpf_getxattr
Date: Tue, 21 Jun 2022 14:46:45 +0200	[thread overview]
Message-ID: <CAO-hwJ+G6ZaNUFC-Qv7Lw2PQOEs0rV7r5ZD8FEAj0=+NVy5zYw@mail.gmail.com> (raw)
In-Reply-To: <20220621012811.2683313-1-kpsingh@kernel.org>

On Tue, Jun 21, 2022 at 3:28 AM KP Singh <kpsingh@kernel.org> wrote:
>
> v1 -> v2
>
> - Used kfuncs as suggested by Alexei
> - Used Benjamin Tissoires' patch from the HID v4 series to add a
>   sleepable kfunc set (I sent the patch as a part of this series as it
>   seems to have been dropped from v5) and acked it. Hope this is okay.

FWIW, this is perfectly OK with me.

The reason I dropped the patch from the series is because I don't
absolutely need it anymore: all of my sleepable kfuncs are now
declared as SYSCALL type, which is by definition sleepable.

I still believe it's valuable to be able to define sleepable kfuncs however.

Cheers,
Benjamin

> - Added support for verifying string constants to kfuncs
>
> Foundation for building more complex security policies using the
> BPF LSM as presented in LSF/MM/BPF:
>
>  http://vger.kernel.org/bpfconf2022_material/lsfmmbpf2022-xattr.pdf
>
> Benjamin Tissoires (1):
>   btf: Add a new kfunc set which allows to mark a function to be
>     sleepable
>
> KP Singh (4):
>   bpf: kfunc support for ARG_PTR_TO_CONST_STR
>   bpf: Allow kfuncs to be used in LSM programs
>   bpf: Add a bpf_getxattr kfunc
>   bpf/selftests: Add a selftest for bpf_getxattr
>
>  include/linux/bpf_verifier.h                  |  2 +
>  include/linux/btf.h                           |  2 +
>  kernel/bpf/btf.c                              | 42 ++++++++-
>  kernel/bpf/verifier.c                         | 85 +++++++++++--------
>  kernel/trace/bpf_trace.c                      | 36 ++++++++
>  .../testing/selftests/bpf/prog_tests/xattr.c  | 58 +++++++++++++
>  tools/testing/selftests/bpf/progs/xattr.c     | 37 ++++++++
>  7 files changed, 223 insertions(+), 39 deletions(-)
>  create mode 100644 tools/testing/selftests/bpf/prog_tests/xattr.c
>  create mode 100644 tools/testing/selftests/bpf/progs/xattr.c
>
> --
> 2.37.0.rc0.104.g0611611a94-goog
>


      parent reply	other threads:[~2022-06-21 12:47 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-21  1:28 [PATCH v2 bpf-next 0/5] Add bpf_getxattr KP Singh
2022-06-21  1:28 ` [PATCH v2 bpf-next 1/5] btf: Add a new kfunc set which allows to mark a function to be sleepable KP Singh
2022-06-21  1:28 ` [PATCH v2 bpf-next 2/5] bpf: kfunc support for ARG_PTR_TO_CONST_STR KP Singh
2022-06-21 12:50   ` Kumar Kartikeya Dwivedi
2022-06-21 16:15     ` KP Singh
2022-06-21 18:04   ` Joanne Koong
2022-06-21 20:19     ` KP Singh
2022-06-22 16:27       ` KP Singh
2022-06-21  1:28 ` [PATCH v2 bpf-next 3/5] bpf: Allow kfuncs to be used in LSM programs KP Singh
2022-06-21 12:36   ` Kumar Kartikeya Dwivedi
2022-06-21 16:00     ` Alexei Starovoitov
2022-06-21 16:15       ` KP Singh
2022-06-21 17:35         ` Kumar Kartikeya Dwivedi
2022-06-21 20:11           ` Alexei Starovoitov
2022-06-21 20:25             ` KP Singh
2022-06-22  1:17               ` Kumar Kartikeya Dwivedi
2022-06-21  1:28 ` [PATCH v2 bpf-next 4/5] bpf: Add a bpf_getxattr kfunc KP Singh
2022-06-21  2:38   ` kernel test robot
2022-06-21  3:20   ` kernel test robot
2022-06-21  7:18     ` KP Singh
2022-06-21  7:18       ` KP Singh
2022-06-21 12:41       ` Kumar Kartikeya Dwivedi
2022-06-21 12:41         ` Kumar Kartikeya Dwivedi
2022-06-21 16:06         ` KP Singh
2022-06-21 16:06           ` KP Singh
2022-06-21  1:28 ` [PATCH v2 bpf-next 5/5] bpf/selftests: Add a selftest for bpf_getxattr KP Singh
2022-06-21 12:46 ` Benjamin Tissoires [this message]

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='CAO-hwJ+G6ZaNUFC-Qv7Lw2PQOEs0rV7r5ZD8FEAj0=+NVy5zYw@mail.gmail.com' \
    --to=benjamin.tissoires@redhat.com \
    --cc=andrii@kernel.org \
    --cc=ast@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=kpsingh@kernel.org \
    --cc=yosryahmed@google.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.