linux-security-module.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Andrii Nakryiko <andrii.nakryiko@gmail.com>
To: Andrii Nakryiko <andrii@kernel.org>,
	Christian Brauner <brauner@kernel.org>
Cc: bpf@vger.kernel.org, netdev@vger.kernel.org, paul@paul-moore.com,
	 linux-fsdevel@vger.kernel.org,
	linux-security-module@vger.kernel.org,  keescook@chromium.org,
	kernel-team@meta.com, sargun@sargun.me
Subject: Re: [PATCH v11 bpf-next 03/17] bpf: introduce BPF token object
Date: Tue, 28 Nov 2023 16:05:36 -0800	[thread overview]
Message-ID: <CAEf4BzauJjmqMdgqBrsvmXjATj4s6Om94BV471LwwdmJpx3PjQ@mail.gmail.com> (raw)
In-Reply-To: <20231127190409.2344550-4-andrii@kernel.org>

On Mon, Nov 27, 2023 at 11:06 AM Andrii Nakryiko <andrii@kernel.org> wrote:
>
> Add new kind of BPF kernel object, BPF token. BPF token is meant to
> allow delegating privileged BPF functionality, like loading a BPF
> program or creating a BPF map, from privileged process to a *trusted*
> unprivileged process, all while having a good amount of control over which
> privileged operations could be performed using provided BPF token.
>
> This is achieved through mounting BPF FS instance with extra delegation
> mount options, which determine what operations are delegatable, and also
> constraining it to the owning user namespace (as mentioned in the
> previous patch).
>
> BPF token itself is just a derivative from BPF FS and can be created
> through a new bpf() syscall command, BPF_TOKEN_CREATE, which accepts BPF
> FS FD, which can be attained through open() API by opening BPF FS mount
> point. Currently, BPF token "inherits" delegated command, map types,
> prog type, and attach type bit sets from BPF FS as is. In the future,
> having an BPF token as a separate object with its own FD, we can allow
> to further restrict BPF token's allowable set of things either at the
> creation time or after the fact, allowing the process to guard itself
> further from unintentionally trying to load undesired kind of BPF
> programs. But for now we keep things simple and just copy bit sets as is.
>
> When BPF token is created from BPF FS mount, we take reference to the
> BPF super block's owning user namespace, and then use that namespace for
> checking all the {CAP_BPF, CAP_PERFMON, CAP_NET_ADMIN, CAP_SYS_ADMIN}
> capabilities that are normally only checked against init userns (using
> capable()), but now we check them using ns_capable() instead (if BPF
> token is provided). See bpf_token_capable() for details.
>
> Such setup means that BPF token in itself is not sufficient to grant BPF
> functionality. User namespaced process has to *also* have necessary
> combination of capabilities inside that user namespace. So while
> previously CAP_BPF was useless when granted within user namespace, now
> it gains a meaning and allows container managers and sys admins to have
> a flexible control over which processes can and need to use BPF
> functionality within the user namespace (i.e., container in practice).
> And BPF FS delegation mount options and derived BPF tokens serve as
> a per-container "flag" to grant overall ability to use bpf() (plus further
> restrict on which parts of bpf() syscalls are treated as namespaced).
>
> Note also, BPF_TOKEN_CREATE command itself requires ns_capable(CAP_BPF)
> within the BPF FS owning user namespace, rounding up the ns_capable()
> story of BPF token.
>
> Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
> ---
>  include/linux/bpf.h            |  41 +++++++
>  include/uapi/linux/bpf.h       |  37 ++++++
>  kernel/bpf/Makefile            |   2 +-
>  kernel/bpf/inode.c             |  17 ++-
>  kernel/bpf/syscall.c           |  17 +++
>  kernel/bpf/token.c             | 209 +++++++++++++++++++++++++++++++++
>  tools/include/uapi/linux/bpf.h |  37 ++++++
>  7 files changed, 350 insertions(+), 10 deletions(-)
>  create mode 100644 kernel/bpf/token.c
>

[...]

> +int bpf_token_create(union bpf_attr *attr)
> +{
> +       struct bpf_mount_opts *mnt_opts;
> +       struct bpf_token *token = NULL;
> +       struct user_namespace *userns;
> +       struct inode *inode;
> +       struct file *file;
> +       struct path path;
> +       struct fd f;
> +       umode_t mode;
> +       int err, fd;
> +
> +       f = fdget(attr->token_create.bpffs_fd);
> +       if (!f.file)
> +               return -EBADF;
> +
> +       path = f.file->f_path;
> +       path_get(&path);
> +       fdput(f);
> +
> +       if (path.dentry != path.mnt->mnt_sb->s_root) {
> +               err = -EINVAL;
> +               goto out_path;
> +       }
> +       if (path.mnt->mnt_sb->s_op != &bpf_super_ops) {
> +               err = -EINVAL;
> +               goto out_path;
> +       }
> +       err = path_permission(&path, MAY_ACCESS);
> +       if (err)
> +               goto out_path;
> +
> +       userns = path.dentry->d_sb->s_user_ns;
> +       /*
> +        * Enforce that creators of BPF tokens are in the same user
> +        * namespace as the BPF FS instance. This makes reasoning about
> +        * permissions a lot easier and we can always relax this later.
> +        */
> +       if (current_user_ns() != userns) {
> +               err = -EPERM;
> +               goto out_path;
> +       }

Hey Christian,

I've added stricter userns check as discussed on previous revision,
and a few lines above fixed BPF FS root check (path.dentry !=
path.mnt->mnt_sb->s_root). Hopefully that addresses the remaining
concerns you've had.

I'd appreciate it if you could take another look to double check if
I'm not messing anything up, and if it all looks good, can I please
get an ack from you? Thank you!

> +       if (!ns_capable(userns, CAP_BPF)) {
> +               err = -EPERM;
> +               goto out_path;
> +       }
> +
> +       mode = S_IFREG | ((S_IRUSR | S_IWUSR) & ~current_umask());
> +       inode = bpf_get_inode(path.mnt->mnt_sb, NULL, mode);
> +       if (IS_ERR(inode)) {
> +               err = PTR_ERR(inode);
> +               goto out_path;
> +       }
> +

[...]

  reply	other threads:[~2023-11-29  0:05 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-27 19:03 [PATCH v11 bpf-next 00/17] BPF token and BPF FS-based delegation Andrii Nakryiko
2023-11-27 19:03 ` [PATCH v11 bpf-next 01/17] bpf: align CAP_NET_ADMIN checks with bpf_capable() approach Andrii Nakryiko
2023-11-27 19:03 ` [PATCH v11 bpf-next 02/17] bpf: add BPF token delegation mount options to BPF FS Andrii Nakryiko
2023-11-30 14:18   ` Christian Brauner
2023-11-30 18:02     ` Andrii Nakryiko
2023-11-30 16:36   ` Simon Horman
2023-11-30 18:03     ` Andrii Nakryiko
2023-11-30 18:13       ` Andrii Nakryiko
2023-12-05  9:13         ` Simon Horman
2023-11-27 19:03 ` [PATCH v11 bpf-next 03/17] bpf: introduce BPF token object Andrii Nakryiko
2023-11-29  0:05   ` Andrii Nakryiko [this message]
2023-11-30 14:05     ` Christian Brauner
2023-11-30 14:27     ` Christian Brauner
2023-11-30 17:57       ` Andrii Nakryiko
2023-11-27 19:03 ` [PATCH v11 bpf-next 04/17] bpf: add BPF token support to BPF_MAP_CREATE command Andrii Nakryiko
2023-11-27 19:03 ` [PATCH v11 bpf-next 05/17] bpf: add BPF token support to BPF_BTF_LOAD command Andrii Nakryiko
2023-11-27 19:03 ` [PATCH v11 bpf-next 06/17] bpf: add BPF token support to BPF_PROG_LOAD command Andrii Nakryiko
2023-11-27 19:03 ` [PATCH v11 bpf-next 07/17] bpf: take into account BPF token when fetching helper protos Andrii Nakryiko
2023-11-27 19:04 ` [PATCH v11 bpf-next 08/17] bpf: consistently use BPF token throughout BPF verifier logic Andrii Nakryiko
2023-11-27 19:04 ` [PATCH v11 bpf-next 09/17] bpf,lsm: refactor bpf_prog_alloc/bpf_prog_free LSM hooks Andrii Nakryiko
2023-11-27 19:04 ` [PATCH v11 bpf-next 10/17] bpf,lsm: refactor bpf_map_alloc/bpf_map_free " Andrii Nakryiko
2023-11-27 19:04 ` [PATCH v11 bpf-next 11/17] bpf,lsm: add BPF token " Andrii Nakryiko
2023-11-27 19:04 ` [PATCH v11 bpf-next 12/17] libbpf: add bpf_token_create() API Andrii Nakryiko
2023-11-27 19:04 ` [PATCH v11 bpf-next 13/17] libbpf: add BPF token support to bpf_map_create() API Andrii Nakryiko
2023-11-27 19:04 ` [PATCH v11 bpf-next 14/17] libbpf: add BPF token support to bpf_btf_load() API Andrii Nakryiko
2023-11-27 19:04 ` [PATCH v11 bpf-next 15/17] libbpf: add BPF token support to bpf_prog_load() API Andrii Nakryiko
2023-11-27 19:04 ` [PATCH v11 bpf-next 16/17] selftests/bpf: add BPF token-enabled tests Andrii Nakryiko
2023-11-27 19:04 ` [PATCH v11 bpf-next 17/17] bpf,selinux: allocate bpf_security_struct per BPF token Andrii Nakryiko

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=CAEf4BzauJjmqMdgqBrsvmXjATj4s6Om94BV471LwwdmJpx3PjQ@mail.gmail.com \
    --to=andrii.nakryiko@gmail.com \
    --cc=andrii@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=brauner@kernel.org \
    --cc=keescook@chromium.org \
    --cc=kernel-team@meta.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-security-module@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=paul@paul-moore.com \
    --cc=sargun@sargun.me \
    /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).