Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fb9a307d authored by Chenbo Feng's avatar Chenbo Feng Committed by David S. Miller
Browse files

bpf: Allow CGROUP_SKB eBPF program to access sk_buff



This allows cgroup eBPF program to classify packet based on their
protocol or other detail information. Currently program need
CAP_NET_ADMIN privilege to attach a cgroup eBPF program, and A
process with CAP_NET_ADMIN can already see all packets on the system,
for example, by creating an iptables rules that causes the packet to
be passed to userspace via NFLOG.

Signed-off-by: default avatarChenbo Feng <fengc@google.com>
Acked-by: default avatarAlexei Starovoitov <ast@kernel.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d0a65400
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2426,6 +2426,7 @@ static bool may_access_skb(enum bpf_prog_type type)
	case BPF_PROG_TYPE_SOCKET_FILTER:
	case BPF_PROG_TYPE_SCHED_CLS:
	case BPF_PROG_TYPE_SCHED_ACT:
	case BPF_PROG_TYPE_CGROUP_SKB:
		return true;
	default:
		return false;