blob: b1c45da20a2620a78b0855a85497a1519fad55ee [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Daniel Mack30070982016-11-23 16:52:26 +01002#ifndef _BPF_CGROUP_H
3#define _BPF_CGROUP_H
4
Roman Gushchin8bad74f2018-09-28 14:45:36 +00005#include <linux/bpf.h>
Roman Gushchinf292b872018-07-06 14:34:29 -07006#include <linux/errno.h>
Daniel Mack30070982016-11-23 16:52:26 +01007#include <linux/jump_label.h>
Roman Gushchinaa0ad5b2018-08-02 14:27:19 -07008#include <linux/percpu.h>
Roman Gushchinde9cbba2018-08-02 14:27:18 -07009#include <linux/rbtree.h>
Daniel Mack30070982016-11-23 16:52:26 +010010#include <uapi/linux/bpf.h>
11
12struct sock;
Andrey Ignatov4fbac772018-03-30 15:08:02 -070013struct sockaddr;
Daniel Mack30070982016-11-23 16:52:26 +010014struct cgroup;
15struct sk_buff;
Roman Gushchinde9cbba2018-08-02 14:27:18 -070016struct bpf_map;
17struct bpf_prog;
Lawrence Brakmo40304b22017-06-30 20:02:40 -070018struct bpf_sock_ops_kern;
Roman Gushchinde9cbba2018-08-02 14:27:18 -070019struct bpf_cgroup_storage;
Andrey Ignatov7b146ce2019-02-27 12:59:24 -080020struct ctl_table;
21struct ctl_table_header;
Daniel Mack30070982016-11-23 16:52:26 +010022
23#ifdef CONFIG_CGROUP_BPF
24
25extern struct static_key_false cgroup_bpf_enabled_key;
26#define cgroup_bpf_enabled static_branch_unlikely(&cgroup_bpf_enabled_key)
27
Roman Gushchinf294b372018-09-28 14:45:40 +000028DECLARE_PER_CPU(struct bpf_cgroup_storage*,
29 bpf_cgroup_storage[MAX_BPF_CGROUP_STORAGE_TYPE]);
Roman Gushchin8bad74f2018-09-28 14:45:36 +000030
31#define for_each_cgroup_storage_type(stype) \
32 for (stype = 0; stype < MAX_BPF_CGROUP_STORAGE_TYPE; stype++)
Roman Gushchinaa0ad5b2018-08-02 14:27:19 -070033
Roman Gushchinde9cbba2018-08-02 14:27:18 -070034struct bpf_cgroup_storage_map;
35
36struct bpf_storage_buffer {
37 struct rcu_head rcu;
38 char data[0];
39};
40
41struct bpf_cgroup_storage {
Roman Gushchinb741f162018-09-28 14:45:43 +000042 union {
43 struct bpf_storage_buffer *buf;
44 void __percpu *percpu_buf;
45 };
Roman Gushchinde9cbba2018-08-02 14:27:18 -070046 struct bpf_cgroup_storage_map *map;
47 struct bpf_cgroup_storage_key key;
48 struct list_head list;
49 struct rb_node node;
50 struct rcu_head rcu;
51};
52
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070053struct bpf_prog_list {
54 struct list_head node;
55 struct bpf_prog *prog;
Roman Gushchin8bad74f2018-09-28 14:45:36 +000056 struct bpf_cgroup_storage *storage[MAX_BPF_CGROUP_STORAGE_TYPE];
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070057};
58
59struct bpf_prog_array;
60
Daniel Mack30070982016-11-23 16:52:26 +010061struct cgroup_bpf {
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070062 /* array of effective progs in this cgroup */
63 struct bpf_prog_array __rcu *effective[MAX_BPF_ATTACH_TYPE];
64
65 /* attached progs to this cgroup and attach flags
66 * when flags == 0 or BPF_F_ALLOW_OVERRIDE the progs list will
67 * have either zero or one element
68 * when BPF_F_ALLOW_MULTI the list can have up to BPF_CGROUP_MAX_PROGS
Daniel Mack30070982016-11-23 16:52:26 +010069 */
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070070 struct list_head progs[MAX_BPF_ATTACH_TYPE];
71 u32 flags[MAX_BPF_ATTACH_TYPE];
72
73 /* temp storage for effective prog array used by prog_attach/detach */
74 struct bpf_prog_array __rcu *inactive;
Daniel Mack30070982016-11-23 16:52:26 +010075};
76
77void cgroup_bpf_put(struct cgroup *cgrp);
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070078int cgroup_bpf_inherit(struct cgroup *cgrp);
Daniel Mack30070982016-11-23 16:52:26 +010079
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070080int __cgroup_bpf_attach(struct cgroup *cgrp, struct bpf_prog *prog,
81 enum bpf_attach_type type, u32 flags);
82int __cgroup_bpf_detach(struct cgroup *cgrp, struct bpf_prog *prog,
Valdis Kletnieks1832f4e2019-01-29 01:47:06 -050083 enum bpf_attach_type type);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -070084int __cgroup_bpf_query(struct cgroup *cgrp, const union bpf_attr *attr,
85 union bpf_attr __user *uattr);
Daniel Mack30070982016-11-23 16:52:26 +010086
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070087/* Wrapper for __cgroup_bpf_*() protected by cgroup_mutex */
88int cgroup_bpf_attach(struct cgroup *cgrp, struct bpf_prog *prog,
89 enum bpf_attach_type type, u32 flags);
90int cgroup_bpf_detach(struct cgroup *cgrp, struct bpf_prog *prog,
91 enum bpf_attach_type type, u32 flags);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -070092int cgroup_bpf_query(struct cgroup *cgrp, const union bpf_attr *attr,
93 union bpf_attr __user *uattr);
Daniel Mack30070982016-11-23 16:52:26 +010094
David Ahernb2cd1252016-12-01 08:48:03 -080095int __cgroup_bpf_run_filter_skb(struct sock *sk,
96 struct sk_buff *skb,
97 enum bpf_attach_type type);
Daniel Mack30070982016-11-23 16:52:26 +010098
David Ahern610236582016-12-01 08:48:04 -080099int __cgroup_bpf_run_filter_sk(struct sock *sk,
100 enum bpf_attach_type type);
101
Andrey Ignatov4fbac772018-03-30 15:08:02 -0700102int __cgroup_bpf_run_filter_sock_addr(struct sock *sk,
103 struct sockaddr *uaddr,
Andrey Ignatov1cedee12018-05-25 08:55:23 -0700104 enum bpf_attach_type type,
105 void *t_ctx);
Andrey Ignatov4fbac772018-03-30 15:08:02 -0700106
Lawrence Brakmo40304b22017-06-30 20:02:40 -0700107int __cgroup_bpf_run_filter_sock_ops(struct sock *sk,
108 struct bpf_sock_ops_kern *sock_ops,
109 enum bpf_attach_type type);
110
Roman Gushchinebc614f2017-11-05 08:15:32 -0500111int __cgroup_bpf_check_dev_permission(short dev_type, u32 major, u32 minor,
112 short access, enum bpf_attach_type type);
113
Andrey Ignatov7b146ce2019-02-27 12:59:24 -0800114int __cgroup_bpf_run_filter_sysctl(struct ctl_table_header *head,
115 struct ctl_table *table, int write,
116 enum bpf_attach_type type);
117
Roman Gushchin8bad74f2018-09-28 14:45:36 +0000118static inline enum bpf_cgroup_storage_type cgroup_storage_type(
119 struct bpf_map *map)
Roman Gushchinaa0ad5b2018-08-02 14:27:19 -0700120{
Roman Gushchinb741f162018-09-28 14:45:43 +0000121 if (map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE)
122 return BPF_CGROUP_STORAGE_PERCPU;
123
Roman Gushchin8bad74f2018-09-28 14:45:36 +0000124 return BPF_CGROUP_STORAGE_SHARED;
Roman Gushchinaa0ad5b2018-08-02 14:27:19 -0700125}
126
Roman Gushchin8bad74f2018-09-28 14:45:36 +0000127static inline void bpf_cgroup_storage_set(struct bpf_cgroup_storage
128 *storage[MAX_BPF_CGROUP_STORAGE_TYPE])
129{
130 enum bpf_cgroup_storage_type stype;
Roman Gushchin8bad74f2018-09-28 14:45:36 +0000131
Roman Gushchinf294b372018-09-28 14:45:40 +0000132 for_each_cgroup_storage_type(stype)
133 this_cpu_write(bpf_cgroup_storage[stype], storage[stype]);
Roman Gushchin8bad74f2018-09-28 14:45:36 +0000134}
135
136struct bpf_cgroup_storage *bpf_cgroup_storage_alloc(struct bpf_prog *prog,
137 enum bpf_cgroup_storage_type stype);
Roman Gushchinde9cbba2018-08-02 14:27:18 -0700138void bpf_cgroup_storage_free(struct bpf_cgroup_storage *storage);
139void bpf_cgroup_storage_link(struct bpf_cgroup_storage *storage,
140 struct cgroup *cgroup,
141 enum bpf_attach_type type);
142void bpf_cgroup_storage_unlink(struct bpf_cgroup_storage *storage);
143int bpf_cgroup_storage_assign(struct bpf_prog *prog, struct bpf_map *map);
144void bpf_cgroup_storage_release(struct bpf_prog *prog, struct bpf_map *map);
145
Roman Gushchinb741f162018-09-28 14:45:43 +0000146int bpf_percpu_cgroup_storage_copy(struct bpf_map *map, void *key, void *value);
147int bpf_percpu_cgroup_storage_update(struct bpf_map *map, void *key,
148 void *value, u64 flags);
149
David Ahernb2cd1252016-12-01 08:48:03 -0800150/* Wrappers for __cgroup_bpf_run_filter_skb() guarded by cgroup_bpf_enabled. */
151#define BPF_CGROUP_RUN_PROG_INET_INGRESS(sk, skb) \
152({ \
153 int __ret = 0; \
154 if (cgroup_bpf_enabled) \
155 __ret = __cgroup_bpf_run_filter_skb(sk, skb, \
156 BPF_CGROUP_INET_INGRESS); \
157 \
158 __ret; \
Daniel Mack30070982016-11-23 16:52:26 +0100159})
160
David Ahernb2cd1252016-12-01 08:48:03 -0800161#define BPF_CGROUP_RUN_PROG_INET_EGRESS(sk, skb) \
162({ \
163 int __ret = 0; \
164 if (cgroup_bpf_enabled && sk && sk == skb->sk) { \
165 typeof(sk) __sk = sk_to_full_sk(sk); \
166 if (sk_fullsock(__sk)) \
167 __ret = __cgroup_bpf_run_filter_skb(__sk, skb, \
168 BPF_CGROUP_INET_EGRESS); \
169 } \
170 __ret; \
Daniel Mack30070982016-11-23 16:52:26 +0100171})
172
Andrey Ignatovaac3fc32018-03-30 15:08:07 -0700173#define BPF_CGROUP_RUN_SK_PROG(sk, type) \
David Ahern610236582016-12-01 08:48:04 -0800174({ \
175 int __ret = 0; \
Yafang Shaoee078622018-02-23 14:58:41 +0800176 if (cgroup_bpf_enabled) { \
Andrey Ignatovaac3fc32018-03-30 15:08:07 -0700177 __ret = __cgroup_bpf_run_filter_sk(sk, type); \
David Ahern610236582016-12-01 08:48:04 -0800178 } \
179 __ret; \
180})
181
Andrey Ignatovaac3fc32018-03-30 15:08:07 -0700182#define BPF_CGROUP_RUN_PROG_INET_SOCK(sk) \
183 BPF_CGROUP_RUN_SK_PROG(sk, BPF_CGROUP_INET_SOCK_CREATE)
184
185#define BPF_CGROUP_RUN_PROG_INET4_POST_BIND(sk) \
186 BPF_CGROUP_RUN_SK_PROG(sk, BPF_CGROUP_INET4_POST_BIND)
187
188#define BPF_CGROUP_RUN_PROG_INET6_POST_BIND(sk) \
189 BPF_CGROUP_RUN_SK_PROG(sk, BPF_CGROUP_INET6_POST_BIND)
190
Andrey Ignatov4fbac772018-03-30 15:08:02 -0700191#define BPF_CGROUP_RUN_SA_PROG(sk, uaddr, type) \
192({ \
193 int __ret = 0; \
194 if (cgroup_bpf_enabled) \
Andrey Ignatov1cedee12018-05-25 08:55:23 -0700195 __ret = __cgroup_bpf_run_filter_sock_addr(sk, uaddr, type, \
196 NULL); \
Andrey Ignatov4fbac772018-03-30 15:08:02 -0700197 __ret; \
198})
199
Andrey Ignatov1cedee12018-05-25 08:55:23 -0700200#define BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, type, t_ctx) \
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700201({ \
202 int __ret = 0; \
203 if (cgroup_bpf_enabled) { \
204 lock_sock(sk); \
Andrey Ignatov1cedee12018-05-25 08:55:23 -0700205 __ret = __cgroup_bpf_run_filter_sock_addr(sk, uaddr, type, \
206 t_ctx); \
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700207 release_sock(sk); \
208 } \
209 __ret; \
210})
211
Andrey Ignatov4fbac772018-03-30 15:08:02 -0700212#define BPF_CGROUP_RUN_PROG_INET4_BIND(sk, uaddr) \
213 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET4_BIND)
214
215#define BPF_CGROUP_RUN_PROG_INET6_BIND(sk, uaddr) \
216 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET6_BIND)
217
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700218#define BPF_CGROUP_PRE_CONNECT_ENABLED(sk) (cgroup_bpf_enabled && \
219 sk->sk_prot->pre_connect)
220
221#define BPF_CGROUP_RUN_PROG_INET4_CONNECT(sk, uaddr) \
222 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET4_CONNECT)
223
224#define BPF_CGROUP_RUN_PROG_INET6_CONNECT(sk, uaddr) \
225 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET6_CONNECT)
226
227#define BPF_CGROUP_RUN_PROG_INET4_CONNECT_LOCK(sk, uaddr) \
Andrey Ignatov1cedee12018-05-25 08:55:23 -0700228 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_INET4_CONNECT, NULL)
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700229
230#define BPF_CGROUP_RUN_PROG_INET6_CONNECT_LOCK(sk, uaddr) \
Andrey Ignatov1cedee12018-05-25 08:55:23 -0700231 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_INET6_CONNECT, NULL)
232
233#define BPF_CGROUP_RUN_PROG_UDP4_SENDMSG_LOCK(sk, uaddr, t_ctx) \
234 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_UDP4_SENDMSG, t_ctx)
235
236#define BPF_CGROUP_RUN_PROG_UDP6_SENDMSG_LOCK(sk, uaddr, t_ctx) \
237 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_UDP6_SENDMSG, t_ctx)
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700238
Lawrence Brakmo40304b22017-06-30 20:02:40 -0700239#define BPF_CGROUP_RUN_PROG_SOCK_OPS(sock_ops) \
240({ \
241 int __ret = 0; \
242 if (cgroup_bpf_enabled && (sock_ops)->sk) { \
243 typeof(sk) __sk = sk_to_full_sk((sock_ops)->sk); \
WANG Congdf39a9f2017-07-17 11:42:55 -0700244 if (__sk && sk_fullsock(__sk)) \
Lawrence Brakmo40304b22017-06-30 20:02:40 -0700245 __ret = __cgroup_bpf_run_filter_sock_ops(__sk, \
246 sock_ops, \
247 BPF_CGROUP_SOCK_OPS); \
248 } \
249 __ret; \
250})
Roman Gushchinebc614f2017-11-05 08:15:32 -0500251
252#define BPF_CGROUP_RUN_PROG_DEVICE_CGROUP(type, major, minor, access) \
253({ \
254 int __ret = 0; \
255 if (cgroup_bpf_enabled) \
256 __ret = __cgroup_bpf_check_dev_permission(type, major, minor, \
257 access, \
258 BPF_CGROUP_DEVICE); \
259 \
260 __ret; \
261})
Andrey Ignatov7b146ce2019-02-27 12:59:24 -0800262
263
264#define BPF_CGROUP_RUN_PROG_SYSCTL(head, table, write) \
265({ \
266 int __ret = 0; \
267 if (cgroup_bpf_enabled) \
268 __ret = __cgroup_bpf_run_filter_sysctl(head, table, write, \
269 BPF_CGROUP_SYSCTL); \
270 __ret; \
271})
272
Sean Youngfdb5c452018-06-19 00:04:24 +0100273int cgroup_bpf_prog_attach(const union bpf_attr *attr,
274 enum bpf_prog_type ptype, struct bpf_prog *prog);
275int cgroup_bpf_prog_detach(const union bpf_attr *attr,
276 enum bpf_prog_type ptype);
277int cgroup_bpf_prog_query(const union bpf_attr *attr,
278 union bpf_attr __user *uattr);
Daniel Mack30070982016-11-23 16:52:26 +0100279#else
280
Sean Youngfdb5c452018-06-19 00:04:24 +0100281struct bpf_prog;
Daniel Mack30070982016-11-23 16:52:26 +0100282struct cgroup_bpf {};
283static inline void cgroup_bpf_put(struct cgroup *cgrp) {}
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -0700284static inline int cgroup_bpf_inherit(struct cgroup *cgrp) { return 0; }
Daniel Mack30070982016-11-23 16:52:26 +0100285
Sean Youngfdb5c452018-06-19 00:04:24 +0100286static inline int cgroup_bpf_prog_attach(const union bpf_attr *attr,
287 enum bpf_prog_type ptype,
288 struct bpf_prog *prog)
289{
290 return -EINVAL;
291}
292
293static inline int cgroup_bpf_prog_detach(const union bpf_attr *attr,
294 enum bpf_prog_type ptype)
295{
296 return -EINVAL;
297}
298
299static inline int cgroup_bpf_prog_query(const union bpf_attr *attr,
300 union bpf_attr __user *uattr)
301{
302 return -EINVAL;
303}
304
Roman Gushchin8bad74f2018-09-28 14:45:36 +0000305static inline void bpf_cgroup_storage_set(
306 struct bpf_cgroup_storage *storage[MAX_BPF_CGROUP_STORAGE_TYPE]) {}
Roman Gushchinde9cbba2018-08-02 14:27:18 -0700307static inline int bpf_cgroup_storage_assign(struct bpf_prog *prog,
308 struct bpf_map *map) { return 0; }
309static inline void bpf_cgroup_storage_release(struct bpf_prog *prog,
310 struct bpf_map *map) {}
311static inline struct bpf_cgroup_storage *bpf_cgroup_storage_alloc(
Bo YU71b91a52019-03-08 01:45:51 -0500312 struct bpf_prog *prog, enum bpf_cgroup_storage_type stype) { return NULL; }
Roman Gushchinde9cbba2018-08-02 14:27:18 -0700313static inline void bpf_cgroup_storage_free(
314 struct bpf_cgroup_storage *storage) {}
Roman Gushchinb741f162018-09-28 14:45:43 +0000315static inline int bpf_percpu_cgroup_storage_copy(struct bpf_map *map, void *key,
316 void *value) {
317 return 0;
318}
319static inline int bpf_percpu_cgroup_storage_update(struct bpf_map *map,
320 void *key, void *value, u64 flags) {
321 return 0;
322}
Roman Gushchinde9cbba2018-08-02 14:27:18 -0700323
Andrey Ignatov13193b02018-05-25 08:55:22 -0700324#define cgroup_bpf_enabled (0)
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700325#define BPF_CGROUP_PRE_CONNECT_ENABLED(sk) (0)
Daniel Mack30070982016-11-23 16:52:26 +0100326#define BPF_CGROUP_RUN_PROG_INET_INGRESS(sk,skb) ({ 0; })
327#define BPF_CGROUP_RUN_PROG_INET_EGRESS(sk,skb) ({ 0; })
David Ahern610236582016-12-01 08:48:04 -0800328#define BPF_CGROUP_RUN_PROG_INET_SOCK(sk) ({ 0; })
Andrey Ignatov4fbac772018-03-30 15:08:02 -0700329#define BPF_CGROUP_RUN_PROG_INET4_BIND(sk, uaddr) ({ 0; })
330#define BPF_CGROUP_RUN_PROG_INET6_BIND(sk, uaddr) ({ 0; })
Andrey Ignatovaac3fc32018-03-30 15:08:07 -0700331#define BPF_CGROUP_RUN_PROG_INET4_POST_BIND(sk) ({ 0; })
332#define BPF_CGROUP_RUN_PROG_INET6_POST_BIND(sk) ({ 0; })
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700333#define BPF_CGROUP_RUN_PROG_INET4_CONNECT(sk, uaddr) ({ 0; })
334#define BPF_CGROUP_RUN_PROG_INET4_CONNECT_LOCK(sk, uaddr) ({ 0; })
335#define BPF_CGROUP_RUN_PROG_INET6_CONNECT(sk, uaddr) ({ 0; })
336#define BPF_CGROUP_RUN_PROG_INET6_CONNECT_LOCK(sk, uaddr) ({ 0; })
Andrey Ignatov1cedee12018-05-25 08:55:23 -0700337#define BPF_CGROUP_RUN_PROG_UDP4_SENDMSG_LOCK(sk, uaddr, t_ctx) ({ 0; })
338#define BPF_CGROUP_RUN_PROG_UDP6_SENDMSG_LOCK(sk, uaddr, t_ctx) ({ 0; })
Lawrence Brakmo40304b22017-06-30 20:02:40 -0700339#define BPF_CGROUP_RUN_PROG_SOCK_OPS(sock_ops) ({ 0; })
Roman Gushchinebc614f2017-11-05 08:15:32 -0500340#define BPF_CGROUP_RUN_PROG_DEVICE_CGROUP(type,major,minor,access) ({ 0; })
Andrey Ignatov7b146ce2019-02-27 12:59:24 -0800341#define BPF_CGROUP_RUN_PROG_SYSCTL(head, table, write) ({ 0; })
Daniel Mack30070982016-11-23 16:52:26 +0100342
Roman Gushchin8bad74f2018-09-28 14:45:36 +0000343#define for_each_cgroup_storage_type(stype) for (; false; )
344
Daniel Mack30070982016-11-23 16:52:26 +0100345#endif /* CONFIG_CGROUP_BPF */
346
347#endif /* _BPF_CGROUP_H */