]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - include/linux/bpf-cgroup.h
Merge tag 'printk-for-5.13-fixup' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-jammy-kernel.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
8bad74f9 5#include <linux/bpf.h>
f292b87d 6#include <linux/errno.h>
30070984 7#include <linux/jump_label.h>
aa0ad5b0 8#include <linux/percpu.h>
4bfc0bb2 9#include <linux/percpu-refcount.h>
de9cbbaa 10#include <linux/rbtree.h>
30070984
DM
11#include <uapi/linux/bpf.h>
12
13struct sock;
4fbac77d 14struct sockaddr;
30070984
DM
15struct cgroup;
16struct sk_buff;
de9cbbaa
RG
17struct bpf_map;
18struct bpf_prog;
40304b2a 19struct bpf_sock_ops_kern;
de9cbbaa 20struct bpf_cgroup_storage;
7b146ceb
AI
21struct ctl_table;
22struct ctl_table_header;
b910eaaa 23struct task_struct;
30070984
DM
24
25#ifdef CONFIG_CGROUP_BPF
26
a9ed15da
SF
27extern struct static_key_false cgroup_bpf_enabled_key[MAX_BPF_ATTACH_TYPE];
28#define cgroup_bpf_enabled(type) static_branch_unlikely(&cgroup_bpf_enabled_key[type])
30070984 29
b910eaaa
YS
30#define BPF_CGROUP_STORAGE_NEST_MAX 8
31
32struct bpf_cgroup_storage_info {
33 struct task_struct *task;
34 struct bpf_cgroup_storage *storage[MAX_BPF_CGROUP_STORAGE_TYPE];
35};
36
37/* For each cpu, permit maximum BPF_CGROUP_STORAGE_NEST_MAX number of tasks
38 * to use bpf cgroup storage simultaneously.
39 */
40DECLARE_PER_CPU(struct bpf_cgroup_storage_info,
41 bpf_cgroup_storage_info[BPF_CGROUP_STORAGE_NEST_MAX]);
8bad74f9
RG
42
43#define for_each_cgroup_storage_type(stype) \
44 for (stype = 0; stype < MAX_BPF_CGROUP_STORAGE_TYPE; stype++)
aa0ad5b0 45
de9cbbaa
RG
46struct bpf_cgroup_storage_map;
47
48struct bpf_storage_buffer {
49 struct rcu_head rcu;
d7f10df8 50 char data[];
de9cbbaa
RG
51};
52
53struct bpf_cgroup_storage {
b741f163
RG
54 union {
55 struct bpf_storage_buffer *buf;
56 void __percpu *percpu_buf;
57 };
de9cbbaa
RG
58 struct bpf_cgroup_storage_map *map;
59 struct bpf_cgroup_storage_key key;
7d9c3427
YZ
60 struct list_head list_map;
61 struct list_head list_cg;
de9cbbaa
RG
62 struct rb_node node;
63 struct rcu_head rcu;
64};
65
af6eea57
AN
66struct bpf_cgroup_link {
67 struct bpf_link link;
68 struct cgroup *cgroup;
69 enum bpf_attach_type type;
70};
71
324bda9e
AS
72struct bpf_prog_list {
73 struct list_head node;
74 struct bpf_prog *prog;
af6eea57 75 struct bpf_cgroup_link *link;
8bad74f9 76 struct bpf_cgroup_storage *storage[MAX_BPF_CGROUP_STORAGE_TYPE];
324bda9e
AS
77};
78
79struct bpf_prog_array;
80
30070984 81struct cgroup_bpf {
324bda9e
AS
82 /* array of effective progs in this cgroup */
83 struct bpf_prog_array __rcu *effective[MAX_BPF_ATTACH_TYPE];
84
85 /* attached progs to this cgroup and attach flags
86 * when flags == 0 or BPF_F_ALLOW_OVERRIDE the progs list will
87 * have either zero or one element
88 * when BPF_F_ALLOW_MULTI the list can have up to BPF_CGROUP_MAX_PROGS
30070984 89 */
324bda9e
AS
90 struct list_head progs[MAX_BPF_ATTACH_TYPE];
91 u32 flags[MAX_BPF_ATTACH_TYPE];
92
7d9c3427
YZ
93 /* list of cgroup shared storages */
94 struct list_head storages;
95
324bda9e 96 /* temp storage for effective prog array used by prog_attach/detach */
dbcc1ba2 97 struct bpf_prog_array *inactive;
4bfc0bb2
RG
98
99 /* reference counter used to detach bpf programs after cgroup removal */
100 struct percpu_ref refcnt;
101
102 /* cgroup_bpf is released using a work queue */
103 struct work_struct release_work;
30070984
DM
104};
105
324bda9e 106int cgroup_bpf_inherit(struct cgroup *cgrp);
4bfc0bb2 107void cgroup_bpf_offline(struct cgroup *cgrp);
30070984 108
af6eea57
AN
109int __cgroup_bpf_attach(struct cgroup *cgrp,
110 struct bpf_prog *prog, struct bpf_prog *replace_prog,
111 struct bpf_cgroup_link *link,
324bda9e
AS
112 enum bpf_attach_type type, u32 flags);
113int __cgroup_bpf_detach(struct cgroup *cgrp, struct bpf_prog *prog,
af6eea57 114 struct bpf_cgroup_link *link,
1832f4ef 115 enum bpf_attach_type type);
468e2f64
AS
116int __cgroup_bpf_query(struct cgroup *cgrp, const union bpf_attr *attr,
117 union bpf_attr __user *uattr);
30070984 118
324bda9e 119/* Wrapper for __cgroup_bpf_*() protected by cgroup_mutex */
af6eea57
AN
120int cgroup_bpf_attach(struct cgroup *cgrp,
121 struct bpf_prog *prog, struct bpf_prog *replace_prog,
122 struct bpf_cgroup_link *link, enum bpf_attach_type type,
7dd68b32 123 u32 flags);
324bda9e 124int cgroup_bpf_detach(struct cgroup *cgrp, struct bpf_prog *prog,
af6eea57 125 enum bpf_attach_type type);
468e2f64
AS
126int cgroup_bpf_query(struct cgroup *cgrp, const union bpf_attr *attr,
127 union bpf_attr __user *uattr);
30070984 128
b2cd1257
DA
129int __cgroup_bpf_run_filter_skb(struct sock *sk,
130 struct sk_buff *skb,
131 enum bpf_attach_type type);
132
61023658
DA
133int __cgroup_bpf_run_filter_sk(struct sock *sk,
134 enum bpf_attach_type type);
135
4fbac77d
AI
136int __cgroup_bpf_run_filter_sock_addr(struct sock *sk,
137 struct sockaddr *uaddr,
1cedee13 138 enum bpf_attach_type type,
77241217
SF
139 void *t_ctx,
140 u32 *flags);
4fbac77d 141
40304b2a
LB
142int __cgroup_bpf_run_filter_sock_ops(struct sock *sk,
143 struct bpf_sock_ops_kern *sock_ops,
144 enum bpf_attach_type type);
145
ebc614f6
RG
146int __cgroup_bpf_check_dev_permission(short dev_type, u32 major, u32 minor,
147 short access, enum bpf_attach_type type);
148
7b146ceb
AI
149int __cgroup_bpf_run_filter_sysctl(struct ctl_table_header *head,
150 struct ctl_table *table, int write,
4bd6a735 151 char **buf, size_t *pcount, loff_t *ppos,
e1550bfe 152 enum bpf_attach_type type);
7b146ceb 153
0d01da6a
SF
154int __cgroup_bpf_run_filter_setsockopt(struct sock *sock, int *level,
155 int *optname, char __user *optval,
156 int *optlen, char **kernel_optval);
157int __cgroup_bpf_run_filter_getsockopt(struct sock *sk, int level,
158 int optname, char __user *optval,
159 int __user *optlen, int max_optlen,
160 int retval);
161
9cacf81f
SF
162int __cgroup_bpf_run_filter_getsockopt_kern(struct sock *sk, int level,
163 int optname, void *optval,
164 int *optlen, int retval);
165
8bad74f9
RG
166static inline enum bpf_cgroup_storage_type cgroup_storage_type(
167 struct bpf_map *map)
aa0ad5b0 168{
b741f163
RG
169 if (map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE)
170 return BPF_CGROUP_STORAGE_PERCPU;
171
8bad74f9
RG
172 return BPF_CGROUP_STORAGE_SHARED;
173}
174
b910eaaa
YS
175static inline int bpf_cgroup_storage_set(struct bpf_cgroup_storage
176 *storage[MAX_BPF_CGROUP_STORAGE_TYPE])
8bad74f9
RG
177{
178 enum bpf_cgroup_storage_type stype;
b910eaaa
YS
179 int i, err = 0;
180
181 preempt_disable();
182 for (i = 0; i < BPF_CGROUP_STORAGE_NEST_MAX; i++) {
183 if (unlikely(this_cpu_read(bpf_cgroup_storage_info[i].task) != NULL))
184 continue;
185
186 this_cpu_write(bpf_cgroup_storage_info[i].task, current);
187 for_each_cgroup_storage_type(stype)
188 this_cpu_write(bpf_cgroup_storage_info[i].storage[stype],
189 storage[stype]);
190 goto out;
191 }
192 err = -EBUSY;
193 WARN_ON_ONCE(1);
194
195out:
196 preempt_enable();
197 return err;
198}
199
200static inline void bpf_cgroup_storage_unset(void)
201{
202 int i;
203
204 for (i = 0; i < BPF_CGROUP_STORAGE_NEST_MAX; i++) {
205 if (unlikely(this_cpu_read(bpf_cgroup_storage_info[i].task) != current))
206 continue;
aa0ad5b0 207
b910eaaa
YS
208 this_cpu_write(bpf_cgroup_storage_info[i].task, NULL);
209 return;
210 }
aa0ad5b0
RG
211}
212
7d9c3427
YZ
213struct bpf_cgroup_storage *
214cgroup_storage_lookup(struct bpf_cgroup_storage_map *map,
215 void *key, bool locked);
8bad74f9
RG
216struct bpf_cgroup_storage *bpf_cgroup_storage_alloc(struct bpf_prog *prog,
217 enum bpf_cgroup_storage_type stype);
de9cbbaa
RG
218void bpf_cgroup_storage_free(struct bpf_cgroup_storage *storage);
219void bpf_cgroup_storage_link(struct bpf_cgroup_storage *storage,
220 struct cgroup *cgroup,
221 enum bpf_attach_type type);
222void bpf_cgroup_storage_unlink(struct bpf_cgroup_storage *storage);
e4730423 223int bpf_cgroup_storage_assign(struct bpf_prog_aux *aux, struct bpf_map *map);
de9cbbaa 224
b741f163
RG
225int bpf_percpu_cgroup_storage_copy(struct bpf_map *map, void *key, void *value);
226int bpf_percpu_cgroup_storage_update(struct bpf_map *map, void *key,
227 void *value, u64 flags);
228
b2cd1257
DA
229/* Wrappers for __cgroup_bpf_run_filter_skb() guarded by cgroup_bpf_enabled. */
230#define BPF_CGROUP_RUN_PROG_INET_INGRESS(sk, skb) \
231({ \
232 int __ret = 0; \
a9ed15da 233 if (cgroup_bpf_enabled(BPF_CGROUP_INET_INGRESS)) \
b2cd1257
DA
234 __ret = __cgroup_bpf_run_filter_skb(sk, skb, \
235 BPF_CGROUP_INET_INGRESS); \
236 \
237 __ret; \
30070984
DM
238})
239
b2cd1257
DA
240#define BPF_CGROUP_RUN_PROG_INET_EGRESS(sk, skb) \
241({ \
242 int __ret = 0; \
a9ed15da 243 if (cgroup_bpf_enabled(BPF_CGROUP_INET_EGRESS) && sk && sk == skb->sk) { \
b2cd1257
DA
244 typeof(sk) __sk = sk_to_full_sk(sk); \
245 if (sk_fullsock(__sk)) \
246 __ret = __cgroup_bpf_run_filter_skb(__sk, skb, \
247 BPF_CGROUP_INET_EGRESS); \
248 } \
249 __ret; \
30070984
DM
250})
251
aac3fc32 252#define BPF_CGROUP_RUN_SK_PROG(sk, type) \
61023658
DA
253({ \
254 int __ret = 0; \
a9ed15da 255 if (cgroup_bpf_enabled(type)) { \
aac3fc32 256 __ret = __cgroup_bpf_run_filter_sk(sk, type); \
61023658
DA
257 } \
258 __ret; \
259})
260
aac3fc32
AI
261#define BPF_CGROUP_RUN_PROG_INET_SOCK(sk) \
262 BPF_CGROUP_RUN_SK_PROG(sk, BPF_CGROUP_INET_SOCK_CREATE)
263
f5836749
SF
264#define BPF_CGROUP_RUN_PROG_INET_SOCK_RELEASE(sk) \
265 BPF_CGROUP_RUN_SK_PROG(sk, BPF_CGROUP_INET_SOCK_RELEASE)
266
aac3fc32
AI
267#define BPF_CGROUP_RUN_PROG_INET4_POST_BIND(sk) \
268 BPF_CGROUP_RUN_SK_PROG(sk, BPF_CGROUP_INET4_POST_BIND)
269
270#define BPF_CGROUP_RUN_PROG_INET6_POST_BIND(sk) \
271 BPF_CGROUP_RUN_SK_PROG(sk, BPF_CGROUP_INET6_POST_BIND)
272
4fbac77d
AI
273#define BPF_CGROUP_RUN_SA_PROG(sk, uaddr, type) \
274({ \
77241217 275 u32 __unused_flags; \
4fbac77d 276 int __ret = 0; \
a9ed15da 277 if (cgroup_bpf_enabled(type)) \
1cedee13 278 __ret = __cgroup_bpf_run_filter_sock_addr(sk, uaddr, type, \
77241217
SF
279 NULL, \
280 &__unused_flags); \
4fbac77d
AI
281 __ret; \
282})
283
1cedee13 284#define BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, type, t_ctx) \
d74bad4e 285({ \
77241217 286 u32 __unused_flags; \
d74bad4e 287 int __ret = 0; \
a9ed15da 288 if (cgroup_bpf_enabled(type)) { \
d74bad4e 289 lock_sock(sk); \
1cedee13 290 __ret = __cgroup_bpf_run_filter_sock_addr(sk, uaddr, type, \
77241217
SF
291 t_ctx, \
292 &__unused_flags); \
d74bad4e
AI
293 release_sock(sk); \
294 } \
295 __ret; \
296})
297
77241217
SF
298/* BPF_CGROUP_INET4_BIND and BPF_CGROUP_INET6_BIND can return extra flags
299 * via upper bits of return code. The only flag that is supported
300 * (at bit position 0) is to indicate CAP_NET_BIND_SERVICE capability check
301 * should be bypassed (BPF_RET_BIND_NO_CAP_NET_BIND_SERVICE).
302 */
303#define BPF_CGROUP_RUN_PROG_INET_BIND_LOCK(sk, uaddr, type, bind_flags) \
304({ \
305 u32 __flags = 0; \
306 int __ret = 0; \
307 if (cgroup_bpf_enabled(type)) { \
308 lock_sock(sk); \
309 __ret = __cgroup_bpf_run_filter_sock_addr(sk, uaddr, type, \
310 NULL, &__flags); \
311 release_sock(sk); \
312 if (__flags & BPF_RET_BIND_NO_CAP_NET_BIND_SERVICE) \
313 *bind_flags |= BIND_NO_CAP_NET_BIND_SERVICE; \
314 } \
315 __ret; \
316})
4fbac77d 317
a9ed15da
SF
318#define BPF_CGROUP_PRE_CONNECT_ENABLED(sk) \
319 ((cgroup_bpf_enabled(BPF_CGROUP_INET4_CONNECT) || \
320 cgroup_bpf_enabled(BPF_CGROUP_INET6_CONNECT)) && \
321 (sk)->sk_prot->pre_connect)
d74bad4e
AI
322
323#define BPF_CGROUP_RUN_PROG_INET4_CONNECT(sk, uaddr) \
324 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET4_CONNECT)
325
326#define BPF_CGROUP_RUN_PROG_INET6_CONNECT(sk, uaddr) \
327 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET6_CONNECT)
328
329#define BPF_CGROUP_RUN_PROG_INET4_CONNECT_LOCK(sk, uaddr) \
1cedee13 330 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_INET4_CONNECT, NULL)
d74bad4e
AI
331
332#define BPF_CGROUP_RUN_PROG_INET6_CONNECT_LOCK(sk, uaddr) \
1cedee13
AI
333 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_INET6_CONNECT, NULL)
334
335#define BPF_CGROUP_RUN_PROG_UDP4_SENDMSG_LOCK(sk, uaddr, t_ctx) \
336 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_UDP4_SENDMSG, t_ctx)
337
338#define BPF_CGROUP_RUN_PROG_UDP6_SENDMSG_LOCK(sk, uaddr, t_ctx) \
339 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_UDP6_SENDMSG, t_ctx)
d74bad4e 340
983695fa
DB
341#define BPF_CGROUP_RUN_PROG_UDP4_RECVMSG_LOCK(sk, uaddr) \
342 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_UDP4_RECVMSG, NULL)
343
344#define BPF_CGROUP_RUN_PROG_UDP6_RECVMSG_LOCK(sk, uaddr) \
345 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_UDP6_RECVMSG, NULL)
346
0813a841
MKL
347/* The SOCK_OPS"_SK" macro should be used when sock_ops->sk is not a
348 * fullsock and its parent fullsock cannot be traced by
349 * sk_to_full_sk().
350 *
351 * e.g. sock_ops->sk is a request_sock and it is under syncookie mode.
352 * Its listener-sk is not attached to the rsk_listener.
353 * In this case, the caller holds the listener-sk (unlocked),
354 * set its sock_ops->sk to req_sk, and call this SOCK_OPS"_SK" with
355 * the listener-sk such that the cgroup-bpf-progs of the
356 * listener-sk will be run.
357 *
358 * Regardless of syncookie mode or not,
359 * calling bpf_setsockopt on listener-sk will not make sense anyway,
360 * so passing 'sock_ops->sk == req_sk' to the bpf prog is appropriate here.
361 */
362#define BPF_CGROUP_RUN_PROG_SOCK_OPS_SK(sock_ops, sk) \
363({ \
364 int __ret = 0; \
a9ed15da 365 if (cgroup_bpf_enabled(BPF_CGROUP_SOCK_OPS)) \
0813a841
MKL
366 __ret = __cgroup_bpf_run_filter_sock_ops(sk, \
367 sock_ops, \
368 BPF_CGROUP_SOCK_OPS); \
369 __ret; \
370})
371
40304b2a
LB
372#define BPF_CGROUP_RUN_PROG_SOCK_OPS(sock_ops) \
373({ \
374 int __ret = 0; \
a9ed15da 375 if (cgroup_bpf_enabled(BPF_CGROUP_SOCK_OPS) && (sock_ops)->sk) { \
40304b2a 376 typeof(sk) __sk = sk_to_full_sk((sock_ops)->sk); \
df39a9f1 377 if (__sk && sk_fullsock(__sk)) \
40304b2a
LB
378 __ret = __cgroup_bpf_run_filter_sock_ops(__sk, \
379 sock_ops, \
380 BPF_CGROUP_SOCK_OPS); \
381 } \
382 __ret; \
383})
ebc614f6
RG
384
385#define BPF_CGROUP_RUN_PROG_DEVICE_CGROUP(type, major, minor, access) \
386({ \
387 int __ret = 0; \
a9ed15da 388 if (cgroup_bpf_enabled(BPF_CGROUP_DEVICE)) \
ebc614f6
RG
389 __ret = __cgroup_bpf_check_dev_permission(type, major, minor, \
390 access, \
391 BPF_CGROUP_DEVICE); \
392 \
393 __ret; \
394})
7b146ceb
AI
395
396
32927393 397#define BPF_CGROUP_RUN_PROG_SYSCTL(head, table, write, buf, count, pos) \
7b146ceb
AI
398({ \
399 int __ret = 0; \
a9ed15da 400 if (cgroup_bpf_enabled(BPF_CGROUP_SYSCTL)) \
7b146ceb 401 __ret = __cgroup_bpf_run_filter_sysctl(head, table, write, \
32927393 402 buf, count, pos, \
7b146ceb
AI
403 BPF_CGROUP_SYSCTL); \
404 __ret; \
405})
406
0d01da6a
SF
407#define BPF_CGROUP_RUN_PROG_SETSOCKOPT(sock, level, optname, optval, optlen, \
408 kernel_optval) \
409({ \
410 int __ret = 0; \
a9ed15da 411 if (cgroup_bpf_enabled(BPF_CGROUP_SETSOCKOPT)) \
0d01da6a
SF
412 __ret = __cgroup_bpf_run_filter_setsockopt(sock, level, \
413 optname, optval, \
414 optlen, \
415 kernel_optval); \
416 __ret; \
417})
418
419#define BPF_CGROUP_GETSOCKOPT_MAX_OPTLEN(optlen) \
420({ \
421 int __ret = 0; \
a9ed15da 422 if (cgroup_bpf_enabled(BPF_CGROUP_GETSOCKOPT)) \
0d01da6a
SF
423 get_user(__ret, optlen); \
424 __ret; \
425})
426
427#define BPF_CGROUP_RUN_PROG_GETSOCKOPT(sock, level, optname, optval, optlen, \
428 max_optlen, retval) \
429({ \
430 int __ret = retval; \
a9ed15da 431 if (cgroup_bpf_enabled(BPF_CGROUP_GETSOCKOPT)) \
9cacf81f
SF
432 if (!(sock)->sk_prot->bpf_bypass_getsockopt || \
433 !INDIRECT_CALL_INET_1((sock)->sk_prot->bpf_bypass_getsockopt, \
434 tcp_bpf_bypass_getsockopt, \
435 level, optname)) \
436 __ret = __cgroup_bpf_run_filter_getsockopt( \
437 sock, level, optname, optval, optlen, \
438 max_optlen, retval); \
439 __ret; \
440})
441
442#define BPF_CGROUP_RUN_PROG_GETSOCKOPT_KERN(sock, level, optname, optval, \
443 optlen, retval) \
444({ \
445 int __ret = retval; \
a9ed15da 446 if (cgroup_bpf_enabled(BPF_CGROUP_GETSOCKOPT)) \
9cacf81f
SF
447 __ret = __cgroup_bpf_run_filter_getsockopt_kern( \
448 sock, level, optname, optval, optlen, retval); \
0d01da6a
SF
449 __ret; \
450})
451
fdb5c453
SY
452int cgroup_bpf_prog_attach(const union bpf_attr *attr,
453 enum bpf_prog_type ptype, struct bpf_prog *prog);
454int cgroup_bpf_prog_detach(const union bpf_attr *attr,
455 enum bpf_prog_type ptype);
af6eea57 456int cgroup_bpf_link_attach(const union bpf_attr *attr, struct bpf_prog *prog);
fdb5c453
SY
457int cgroup_bpf_prog_query(const union bpf_attr *attr,
458 union bpf_attr __user *uattr);
30070984
DM
459#else
460
461struct cgroup_bpf {};
324bda9e 462static inline int cgroup_bpf_inherit(struct cgroup *cgrp) { return 0; }
4bfc0bb2 463static inline void cgroup_bpf_offline(struct cgroup *cgrp) {}
30070984 464
fdb5c453
SY
465static inline int cgroup_bpf_prog_attach(const union bpf_attr *attr,
466 enum bpf_prog_type ptype,
467 struct bpf_prog *prog)
468{
469 return -EINVAL;
470}
471
472static inline int cgroup_bpf_prog_detach(const union bpf_attr *attr,
473 enum bpf_prog_type ptype)
474{
475 return -EINVAL;
476}
477
af6eea57
AN
478static inline int cgroup_bpf_link_attach(const union bpf_attr *attr,
479 struct bpf_prog *prog)
480{
481 return -EINVAL;
482}
483
fdb5c453
SY
484static inline int cgroup_bpf_prog_query(const union bpf_attr *attr,
485 union bpf_attr __user *uattr)
486{
487 return -EINVAL;
488}
489
b910eaaa
YS
490static inline int bpf_cgroup_storage_set(
491 struct bpf_cgroup_storage *storage[MAX_BPF_CGROUP_STORAGE_TYPE]) { return 0; }
492static inline void bpf_cgroup_storage_unset(void) {}
e4730423 493static inline int bpf_cgroup_storage_assign(struct bpf_prog_aux *aux,
de9cbbaa 494 struct bpf_map *map) { return 0; }
de9cbbaa 495static inline struct bpf_cgroup_storage *bpf_cgroup_storage_alloc(
71b91a50 496 struct bpf_prog *prog, enum bpf_cgroup_storage_type stype) { return NULL; }
de9cbbaa
RG
497static inline void bpf_cgroup_storage_free(
498 struct bpf_cgroup_storage *storage) {}
b741f163
RG
499static inline int bpf_percpu_cgroup_storage_copy(struct bpf_map *map, void *key,
500 void *value) {
501 return 0;
502}
503static inline int bpf_percpu_cgroup_storage_update(struct bpf_map *map,
504 void *key, void *value, u64 flags) {
505 return 0;
506}
de9cbbaa 507
a9ed15da 508#define cgroup_bpf_enabled(type) (0)
1b66d253 509#define BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, type, t_ctx) ({ 0; })
d74bad4e 510#define BPF_CGROUP_PRE_CONNECT_ENABLED(sk) (0)
30070984
DM
511#define BPF_CGROUP_RUN_PROG_INET_INGRESS(sk,skb) ({ 0; })
512#define BPF_CGROUP_RUN_PROG_INET_EGRESS(sk,skb) ({ 0; })
61023658 513#define BPF_CGROUP_RUN_PROG_INET_SOCK(sk) ({ 0; })
f5836749 514#define BPF_CGROUP_RUN_PROG_INET_SOCK_RELEASE(sk) ({ 0; })
77241217 515#define BPF_CGROUP_RUN_PROG_INET_BIND_LOCK(sk, uaddr, type, flags) ({ 0; })
aac3fc32
AI
516#define BPF_CGROUP_RUN_PROG_INET4_POST_BIND(sk) ({ 0; })
517#define BPF_CGROUP_RUN_PROG_INET6_POST_BIND(sk) ({ 0; })
d74bad4e
AI
518#define BPF_CGROUP_RUN_PROG_INET4_CONNECT(sk, uaddr) ({ 0; })
519#define BPF_CGROUP_RUN_PROG_INET4_CONNECT_LOCK(sk, uaddr) ({ 0; })
520#define BPF_CGROUP_RUN_PROG_INET6_CONNECT(sk, uaddr) ({ 0; })
521#define BPF_CGROUP_RUN_PROG_INET6_CONNECT_LOCK(sk, uaddr) ({ 0; })
1cedee13
AI
522#define BPF_CGROUP_RUN_PROG_UDP4_SENDMSG_LOCK(sk, uaddr, t_ctx) ({ 0; })
523#define BPF_CGROUP_RUN_PROG_UDP6_SENDMSG_LOCK(sk, uaddr, t_ctx) ({ 0; })
983695fa
DB
524#define BPF_CGROUP_RUN_PROG_UDP4_RECVMSG_LOCK(sk, uaddr) ({ 0; })
525#define BPF_CGROUP_RUN_PROG_UDP6_RECVMSG_LOCK(sk, uaddr) ({ 0; })
40304b2a 526#define BPF_CGROUP_RUN_PROG_SOCK_OPS(sock_ops) ({ 0; })
ebc614f6 527#define BPF_CGROUP_RUN_PROG_DEVICE_CGROUP(type,major,minor,access) ({ 0; })
32927393 528#define BPF_CGROUP_RUN_PROG_SYSCTL(head,table,write,buf,count,pos) ({ 0; })
0d01da6a
SF
529#define BPF_CGROUP_GETSOCKOPT_MAX_OPTLEN(optlen) ({ 0; })
530#define BPF_CGROUP_RUN_PROG_GETSOCKOPT(sock, level, optname, optval, \
531 optlen, max_optlen, retval) ({ retval; })
9cacf81f
SF
532#define BPF_CGROUP_RUN_PROG_GETSOCKOPT_KERN(sock, level, optname, optval, \
533 optlen, retval) ({ retval; })
0d01da6a
SF
534#define BPF_CGROUP_RUN_PROG_SETSOCKOPT(sock, level, optname, optval, optlen, \
535 kernel_optval) ({ 0; })
30070984 536
8bad74f9
RG
537#define for_each_cgroup_storage_type(stype) for (; false; )
538
30070984
DM
539#endif /* CONFIG_CGROUP_BPF */
540
541#endif /* _BPF_CGROUP_H */