1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BPF_CGROUP_DEFS_H
3 #define _BPF_CGROUP_DEFS_H
5 #ifdef CONFIG_CGROUP_BPF
7 #include <linux/list.h>
8 #include <linux/percpu-refcount.h>
9 #include <linux/workqueue.h>
11 struct bpf_prog_array;
14 /* Maximum number of concurrently attachable per-cgroup LSM hooks. */
15 #define CGROUP_LSM_NUM 10
17 #define CGROUP_LSM_NUM 0
20 enum cgroup_bpf_attach_type {
21 CGROUP_BPF_ATTACH_TYPE_INVALID = -1,
22 CGROUP_INET_INGRESS = 0,
24 CGROUP_INET_SOCK_CREATE,
31 CGROUP_INET4_POST_BIND,
32 CGROUP_INET6_POST_BIND,
40 CGROUP_INET4_GETPEERNAME,
41 CGROUP_INET6_GETPEERNAME,
42 CGROUP_INET4_GETSOCKNAME,
43 CGROUP_INET6_GETSOCKNAME,
44 CGROUP_INET_SOCK_RELEASE,
46 CGROUP_LSM_END = CGROUP_LSM_START + CGROUP_LSM_NUM - 1,
47 MAX_CGROUP_BPF_ATTACH_TYPE
51 /* array of effective progs in this cgroup */
52 struct bpf_prog_array __rcu *effective[MAX_CGROUP_BPF_ATTACH_TYPE];
54 /* attached progs to this cgroup and attach flags
55 * when flags == 0 or BPF_F_ALLOW_OVERRIDE the progs list will
56 * have either zero or one element
57 * when BPF_F_ALLOW_MULTI the list can have up to BPF_CGROUP_MAX_PROGS
59 struct hlist_head progs[MAX_CGROUP_BPF_ATTACH_TYPE];
60 u8 flags[MAX_CGROUP_BPF_ATTACH_TYPE];
62 /* list of cgroup shared storages */
63 struct list_head storages;
65 /* temp storage for effective prog array used by prog_attach/detach */
66 struct bpf_prog_array *inactive;
68 /* reference counter used to detach bpf programs after cgroup removal */
69 struct percpu_ref refcnt;
71 /* cgroup_bpf is released using a work queue */
72 struct work_struct release_work;
75 #else /* CONFIG_CGROUP_BPF */
77 #endif /* CONFIG_CGROUP_BPF */