selftests/bpf: missing headers test_lwt_seg6local
[linux-block.git] / include / linux / bpf-cgroup.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
30070984
DM
2#ifndef _BPF_CGROUP_H
3#define _BPF_CGROUP_H
4
30070984
DM
5#include <linux/jump_label.h>
6#include <uapi/linux/bpf.h>
7
8struct sock;
4fbac77d 9struct sockaddr;
30070984
DM
10struct cgroup;
11struct sk_buff;
40304b2a 12struct bpf_sock_ops_kern;
30070984
DM
13
14#ifdef CONFIG_CGROUP_BPF
15
16extern struct static_key_false cgroup_bpf_enabled_key;
17#define cgroup_bpf_enabled static_branch_unlikely(&cgroup_bpf_enabled_key)
18
324bda9e
AS
19struct bpf_prog_list {
20 struct list_head node;
21 struct bpf_prog *prog;
22};
23
24struct bpf_prog_array;
25
30070984 26struct cgroup_bpf {
324bda9e
AS
27 /* array of effective progs in this cgroup */
28 struct bpf_prog_array __rcu *effective[MAX_BPF_ATTACH_TYPE];
29
30 /* attached progs to this cgroup and attach flags
31 * when flags == 0 or BPF_F_ALLOW_OVERRIDE the progs list will
32 * have either zero or one element
33 * when BPF_F_ALLOW_MULTI the list can have up to BPF_CGROUP_MAX_PROGS
30070984 34 */
324bda9e
AS
35 struct list_head progs[MAX_BPF_ATTACH_TYPE];
36 u32 flags[MAX_BPF_ATTACH_TYPE];
37
38 /* temp storage for effective prog array used by prog_attach/detach */
39 struct bpf_prog_array __rcu *inactive;
30070984
DM
40};
41
42void cgroup_bpf_put(struct cgroup *cgrp);
324bda9e 43int cgroup_bpf_inherit(struct cgroup *cgrp);
30070984 44
324bda9e
AS
45int __cgroup_bpf_attach(struct cgroup *cgrp, struct bpf_prog *prog,
46 enum bpf_attach_type type, u32 flags);
47int __cgroup_bpf_detach(struct cgroup *cgrp, struct bpf_prog *prog,
48 enum bpf_attach_type type, u32 flags);
468e2f64
AS
49int __cgroup_bpf_query(struct cgroup *cgrp, const union bpf_attr *attr,
50 union bpf_attr __user *uattr);
30070984 51
324bda9e
AS
52/* Wrapper for __cgroup_bpf_*() protected by cgroup_mutex */
53int cgroup_bpf_attach(struct cgroup *cgrp, struct bpf_prog *prog,
54 enum bpf_attach_type type, u32 flags);
55int cgroup_bpf_detach(struct cgroup *cgrp, struct bpf_prog *prog,
56 enum bpf_attach_type type, u32 flags);
468e2f64
AS
57int cgroup_bpf_query(struct cgroup *cgrp, const union bpf_attr *attr,
58 union bpf_attr __user *uattr);
30070984 59
b2cd1257
DA
60int __cgroup_bpf_run_filter_skb(struct sock *sk,
61 struct sk_buff *skb,
62 enum bpf_attach_type type);
63
61023658
DA
64int __cgroup_bpf_run_filter_sk(struct sock *sk,
65 enum bpf_attach_type type);
66
4fbac77d
AI
67int __cgroup_bpf_run_filter_sock_addr(struct sock *sk,
68 struct sockaddr *uaddr,
69 enum bpf_attach_type type);
70
40304b2a
LB
71int __cgroup_bpf_run_filter_sock_ops(struct sock *sk,
72 struct bpf_sock_ops_kern *sock_ops,
73 enum bpf_attach_type type);
74
ebc614f6
RG
75int __cgroup_bpf_check_dev_permission(short dev_type, u32 major, u32 minor,
76 short access, enum bpf_attach_type type);
77
b2cd1257
DA
78/* Wrappers for __cgroup_bpf_run_filter_skb() guarded by cgroup_bpf_enabled. */
79#define BPF_CGROUP_RUN_PROG_INET_INGRESS(sk, skb) \
80({ \
81 int __ret = 0; \
82 if (cgroup_bpf_enabled) \
83 __ret = __cgroup_bpf_run_filter_skb(sk, skb, \
84 BPF_CGROUP_INET_INGRESS); \
85 \
86 __ret; \
30070984
DM
87})
88
b2cd1257
DA
89#define BPF_CGROUP_RUN_PROG_INET_EGRESS(sk, skb) \
90({ \
91 int __ret = 0; \
92 if (cgroup_bpf_enabled && sk && sk == skb->sk) { \
93 typeof(sk) __sk = sk_to_full_sk(sk); \
94 if (sk_fullsock(__sk)) \
95 __ret = __cgroup_bpf_run_filter_skb(__sk, skb, \
96 BPF_CGROUP_INET_EGRESS); \
97 } \
98 __ret; \
30070984
DM
99})
100
aac3fc32 101#define BPF_CGROUP_RUN_SK_PROG(sk, type) \
61023658
DA
102({ \
103 int __ret = 0; \
ee07862f 104 if (cgroup_bpf_enabled) { \
aac3fc32 105 __ret = __cgroup_bpf_run_filter_sk(sk, type); \
61023658
DA
106 } \
107 __ret; \
108})
109
aac3fc32
AI
110#define BPF_CGROUP_RUN_PROG_INET_SOCK(sk) \
111 BPF_CGROUP_RUN_SK_PROG(sk, BPF_CGROUP_INET_SOCK_CREATE)
112
113#define BPF_CGROUP_RUN_PROG_INET4_POST_BIND(sk) \
114 BPF_CGROUP_RUN_SK_PROG(sk, BPF_CGROUP_INET4_POST_BIND)
115
116#define BPF_CGROUP_RUN_PROG_INET6_POST_BIND(sk) \
117 BPF_CGROUP_RUN_SK_PROG(sk, BPF_CGROUP_INET6_POST_BIND)
118
4fbac77d
AI
119#define BPF_CGROUP_RUN_SA_PROG(sk, uaddr, type) \
120({ \
121 int __ret = 0; \
122 if (cgroup_bpf_enabled) \
123 __ret = __cgroup_bpf_run_filter_sock_addr(sk, uaddr, type); \
124 __ret; \
125})
126
d74bad4e
AI
127#define BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, type) \
128({ \
129 int __ret = 0; \
130 if (cgroup_bpf_enabled) { \
131 lock_sock(sk); \
132 __ret = __cgroup_bpf_run_filter_sock_addr(sk, uaddr, type); \
133 release_sock(sk); \
134 } \
135 __ret; \
136})
137
4fbac77d
AI
138#define BPF_CGROUP_RUN_PROG_INET4_BIND(sk, uaddr) \
139 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET4_BIND)
140
141#define BPF_CGROUP_RUN_PROG_INET6_BIND(sk, uaddr) \
142 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET6_BIND)
143
d74bad4e
AI
144#define BPF_CGROUP_PRE_CONNECT_ENABLED(sk) (cgroup_bpf_enabled && \
145 sk->sk_prot->pre_connect)
146
147#define BPF_CGROUP_RUN_PROG_INET4_CONNECT(sk, uaddr) \
148 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET4_CONNECT)
149
150#define BPF_CGROUP_RUN_PROG_INET6_CONNECT(sk, uaddr) \
151 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET6_CONNECT)
152
153#define BPF_CGROUP_RUN_PROG_INET4_CONNECT_LOCK(sk, uaddr) \
154 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_INET4_CONNECT)
155
156#define BPF_CGROUP_RUN_PROG_INET6_CONNECT_LOCK(sk, uaddr) \
157 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_INET6_CONNECT)
158
40304b2a
LB
159#define BPF_CGROUP_RUN_PROG_SOCK_OPS(sock_ops) \
160({ \
161 int __ret = 0; \
162 if (cgroup_bpf_enabled && (sock_ops)->sk) { \
163 typeof(sk) __sk = sk_to_full_sk((sock_ops)->sk); \
df39a9f1 164 if (__sk && sk_fullsock(__sk)) \
40304b2a
LB
165 __ret = __cgroup_bpf_run_filter_sock_ops(__sk, \
166 sock_ops, \
167 BPF_CGROUP_SOCK_OPS); \
168 } \
169 __ret; \
170})
ebc614f6
RG
171
172#define BPF_CGROUP_RUN_PROG_DEVICE_CGROUP(type, major, minor, access) \
173({ \
174 int __ret = 0; \
175 if (cgroup_bpf_enabled) \
176 __ret = __cgroup_bpf_check_dev_permission(type, major, minor, \
177 access, \
178 BPF_CGROUP_DEVICE); \
179 \
180 __ret; \
181})
30070984
DM
182#else
183
184struct cgroup_bpf {};
185static inline void cgroup_bpf_put(struct cgroup *cgrp) {}
324bda9e 186static inline int cgroup_bpf_inherit(struct cgroup *cgrp) { return 0; }
30070984 187
d74bad4e 188#define BPF_CGROUP_PRE_CONNECT_ENABLED(sk) (0)
30070984
DM
189#define BPF_CGROUP_RUN_PROG_INET_INGRESS(sk,skb) ({ 0; })
190#define BPF_CGROUP_RUN_PROG_INET_EGRESS(sk,skb) ({ 0; })
61023658 191#define BPF_CGROUP_RUN_PROG_INET_SOCK(sk) ({ 0; })
4fbac77d
AI
192#define BPF_CGROUP_RUN_PROG_INET4_BIND(sk, uaddr) ({ 0; })
193#define BPF_CGROUP_RUN_PROG_INET6_BIND(sk, uaddr) ({ 0; })
aac3fc32
AI
194#define BPF_CGROUP_RUN_PROG_INET4_POST_BIND(sk) ({ 0; })
195#define BPF_CGROUP_RUN_PROG_INET6_POST_BIND(sk) ({ 0; })
d74bad4e
AI
196#define BPF_CGROUP_RUN_PROG_INET4_CONNECT(sk, uaddr) ({ 0; })
197#define BPF_CGROUP_RUN_PROG_INET4_CONNECT_LOCK(sk, uaddr) ({ 0; })
198#define BPF_CGROUP_RUN_PROG_INET6_CONNECT(sk, uaddr) ({ 0; })
199#define BPF_CGROUP_RUN_PROG_INET6_CONNECT_LOCK(sk, uaddr) ({ 0; })
40304b2a 200#define BPF_CGROUP_RUN_PROG_SOCK_OPS(sock_ops) ({ 0; })
ebc614f6 201#define BPF_CGROUP_RUN_PROG_DEVICE_CGROUP(type,major,minor,access) ({ 0; })
30070984
DM
202
203#endif /* CONFIG_CGROUP_BPF */
204
205#endif /* _BPF_CGROUP_H */