]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
bpf: Remove the capability check for cgroup skb eBPF program
authorChenbo Feng <fengc@google.com>
Thu, 1 Jun 2017 01:16:00 +0000 (18:16 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 2 Jun 2017 18:24:40 +0000 (14:24 -0400)
Currently loading a cgroup skb eBPF program require a CAP_SYS_ADMIN
capability while attaching the program to a cgroup only requires the
user have CAP_NET_ADMIN privilege. We can escape the capability
check when load the program just like socket filter program to make
the capability requirement consistent.

Change since v1:
Change the code style in order to be compliant with checkpatch.pl
preference

Signed-off-by: Chenbo Feng <fengc@google.com>
Acked-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
kernel/bpf/syscall.c

index 265a0d854e3358c5c714af9cc3ab2bae8a4754b4..59da103adb851f76db36a8f394fa5dde4bbaffc3 100644 (file)
@@ -815,7 +815,9 @@ static int bpf_prog_load(union bpf_attr *attr)
            attr->kern_version != LINUX_VERSION_CODE)
                return -EINVAL;
 
-       if (type != BPF_PROG_TYPE_SOCKET_FILTER && !capable(CAP_SYS_ADMIN))
+       if (type != BPF_PROG_TYPE_SOCKET_FILTER &&
+           type != BPF_PROG_TYPE_CGROUP_SKB &&
+           !capable(CAP_SYS_ADMIN))
                return -EPERM;
 
        /* plain bpf_prog allocation */