blob: e9871b012dac8011285362b3b18e4f7a2b2066c4 [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;
Daniel Mack30070982016-11-23 16:52:26 +010020
21#ifdef CONFIG_CGROUP_BPF
22
23extern struct static_key_false cgroup_bpf_enabled_key;
24#define cgroup_bpf_enabled static_branch_unlikely(&cgroup_bpf_enabled_key)
25
Roman Gushchin8bad74f2018-09-28 14:45:36 +000026DECLARE_PER_CPU(void*, bpf_cgroup_storage[MAX_BPF_CGROUP_STORAGE_TYPE]);
27
28#define for_each_cgroup_storage_type(stype) \
29 for (stype = 0; stype < MAX_BPF_CGROUP_STORAGE_TYPE; stype++)
Roman Gushchinaa0ad5b2018-08-02 14:27:19 -070030
Roman Gushchinde9cbba2018-08-02 14:27:18 -070031struct bpf_cgroup_storage_map;
32
33struct bpf_storage_buffer {
34 struct rcu_head rcu;
35 char data[0];
36};
37
38struct bpf_cgroup_storage {
39 struct bpf_storage_buffer *buf;
40 struct bpf_cgroup_storage_map *map;
41 struct bpf_cgroup_storage_key key;
42 struct list_head list;
43 struct rb_node node;
44 struct rcu_head rcu;
45};
46
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070047struct bpf_prog_list {
48 struct list_head node;
49 struct bpf_prog *prog;
Roman Gushchin8bad74f2018-09-28 14:45:36 +000050 struct bpf_cgroup_storage *storage[MAX_BPF_CGROUP_STORAGE_TYPE];
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070051};
52
53struct bpf_prog_array;
54
Daniel Mack30070982016-11-23 16:52:26 +010055struct cgroup_bpf {
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070056 /* array of effective progs in this cgroup */
57 struct bpf_prog_array __rcu *effective[MAX_BPF_ATTACH_TYPE];
58
59 /* attached progs to this cgroup and attach flags
60 * when flags == 0 or BPF_F_ALLOW_OVERRIDE the progs list will
61 * have either zero or one element
62 * when BPF_F_ALLOW_MULTI the list can have up to BPF_CGROUP_MAX_PROGS
Daniel Mack30070982016-11-23 16:52:26 +010063 */
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070064 struct list_head progs[MAX_BPF_ATTACH_TYPE];
65 u32 flags[MAX_BPF_ATTACH_TYPE];
66
67 /* temp storage for effective prog array used by prog_attach/detach */
68 struct bpf_prog_array __rcu *inactive;
Daniel Mack30070982016-11-23 16:52:26 +010069};
70
71void cgroup_bpf_put(struct cgroup *cgrp);
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070072int cgroup_bpf_inherit(struct cgroup *cgrp);
Daniel Mack30070982016-11-23 16:52:26 +010073
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070074int __cgroup_bpf_attach(struct cgroup *cgrp, struct bpf_prog *prog,
75 enum bpf_attach_type type, u32 flags);
76int __cgroup_bpf_detach(struct cgroup *cgrp, struct bpf_prog *prog,
77 enum bpf_attach_type type, u32 flags);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -070078int __cgroup_bpf_query(struct cgroup *cgrp, const union bpf_attr *attr,
79 union bpf_attr __user *uattr);
Daniel Mack30070982016-11-23 16:52:26 +010080
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070081/* Wrapper for __cgroup_bpf_*() protected by cgroup_mutex */
82int cgroup_bpf_attach(struct cgroup *cgrp, struct bpf_prog *prog,
83 enum bpf_attach_type type, u32 flags);
84int cgroup_bpf_detach(struct cgroup *cgrp, struct bpf_prog *prog,
85 enum bpf_attach_type type, u32 flags);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -070086int cgroup_bpf_query(struct cgroup *cgrp, const union bpf_attr *attr,
87 union bpf_attr __user *uattr);
Daniel Mack30070982016-11-23 16:52:26 +010088
David Ahernb2cd1252016-12-01 08:48:03 -080089int __cgroup_bpf_run_filter_skb(struct sock *sk,
90 struct sk_buff *skb,
91 enum bpf_attach_type type);
Daniel Mack30070982016-11-23 16:52:26 +010092
David Ahern610236582016-12-01 08:48:04 -080093int __cgroup_bpf_run_filter_sk(struct sock *sk,
94 enum bpf_attach_type type);
95
Andrey Ignatov4fbac772018-03-30 15:08:02 -070096int __cgroup_bpf_run_filter_sock_addr(struct sock *sk,
97 struct sockaddr *uaddr,
Andrey Ignatov1cedee12018-05-25 08:55:23 -070098 enum bpf_attach_type type,
99 void *t_ctx);
Andrey Ignatov4fbac772018-03-30 15:08:02 -0700100
Lawrence Brakmo40304b22017-06-30 20:02:40 -0700101int __cgroup_bpf_run_filter_sock_ops(struct sock *sk,
102 struct bpf_sock_ops_kern *sock_ops,
103 enum bpf_attach_type type);
104
Roman Gushchinebc614f2017-11-05 08:15:32 -0500105int __cgroup_bpf_check_dev_permission(short dev_type, u32 major, u32 minor,
106 short access, enum bpf_attach_type type);
107
Roman Gushchin8bad74f2018-09-28 14:45:36 +0000108static inline enum bpf_cgroup_storage_type cgroup_storage_type(
109 struct bpf_map *map)
Roman Gushchinaa0ad5b2018-08-02 14:27:19 -0700110{
Roman Gushchin8bad74f2018-09-28 14:45:36 +0000111 return BPF_CGROUP_STORAGE_SHARED;
Roman Gushchinaa0ad5b2018-08-02 14:27:19 -0700112}
113
Roman Gushchin8bad74f2018-09-28 14:45:36 +0000114static inline void bpf_cgroup_storage_set(struct bpf_cgroup_storage
115 *storage[MAX_BPF_CGROUP_STORAGE_TYPE])
116{
117 enum bpf_cgroup_storage_type stype;
118 struct bpf_storage_buffer *buf;
119
120 for_each_cgroup_storage_type(stype) {
121 if (!storage[stype])
122 continue;
123
124 buf = READ_ONCE(storage[stype]->buf);
125 this_cpu_write(bpf_cgroup_storage[stype], &buf->data[0]);
126 }
127}
128
129struct bpf_cgroup_storage *bpf_cgroup_storage_alloc(struct bpf_prog *prog,
130 enum bpf_cgroup_storage_type stype);
Roman Gushchinde9cbba2018-08-02 14:27:18 -0700131void bpf_cgroup_storage_free(struct bpf_cgroup_storage *storage);
132void bpf_cgroup_storage_link(struct bpf_cgroup_storage *storage,
133 struct cgroup *cgroup,
134 enum bpf_attach_type type);
135void bpf_cgroup_storage_unlink(struct bpf_cgroup_storage *storage);
136int bpf_cgroup_storage_assign(struct bpf_prog *prog, struct bpf_map *map);
137void bpf_cgroup_storage_release(struct bpf_prog *prog, struct bpf_map *map);
138
David Ahernb2cd1252016-12-01 08:48:03 -0800139/* Wrappers for __cgroup_bpf_run_filter_skb() guarded by cgroup_bpf_enabled. */
140#define BPF_CGROUP_RUN_PROG_INET_INGRESS(sk, skb) \
141({ \
142 int __ret = 0; \
143 if (cgroup_bpf_enabled) \
144 __ret = __cgroup_bpf_run_filter_skb(sk, skb, \
145 BPF_CGROUP_INET_INGRESS); \
146 \
147 __ret; \
Daniel Mack30070982016-11-23 16:52:26 +0100148})
149
David Ahernb2cd1252016-12-01 08:48:03 -0800150#define BPF_CGROUP_RUN_PROG_INET_EGRESS(sk, skb) \
151({ \
152 int __ret = 0; \
153 if (cgroup_bpf_enabled && sk && sk == skb->sk) { \
154 typeof(sk) __sk = sk_to_full_sk(sk); \
155 if (sk_fullsock(__sk)) \
156 __ret = __cgroup_bpf_run_filter_skb(__sk, skb, \
157 BPF_CGROUP_INET_EGRESS); \
158 } \
159 __ret; \
Daniel Mack30070982016-11-23 16:52:26 +0100160})
161
Andrey Ignatovaac3fc32018-03-30 15:08:07 -0700162#define BPF_CGROUP_RUN_SK_PROG(sk, type) \
David Ahern610236582016-12-01 08:48:04 -0800163({ \
164 int __ret = 0; \
Yafang Shaoee078622018-02-23 14:58:41 +0800165 if (cgroup_bpf_enabled) { \
Andrey Ignatovaac3fc32018-03-30 15:08:07 -0700166 __ret = __cgroup_bpf_run_filter_sk(sk, type); \
David Ahern610236582016-12-01 08:48:04 -0800167 } \
168 __ret; \
169})
170
Andrey Ignatovaac3fc32018-03-30 15:08:07 -0700171#define BPF_CGROUP_RUN_PROG_INET_SOCK(sk) \
172 BPF_CGROUP_RUN_SK_PROG(sk, BPF_CGROUP_INET_SOCK_CREATE)
173
174#define BPF_CGROUP_RUN_PROG_INET4_POST_BIND(sk) \
175 BPF_CGROUP_RUN_SK_PROG(sk, BPF_CGROUP_INET4_POST_BIND)
176
177#define BPF_CGROUP_RUN_PROG_INET6_POST_BIND(sk) \
178 BPF_CGROUP_RUN_SK_PROG(sk, BPF_CGROUP_INET6_POST_BIND)
179
Andrey Ignatov4fbac772018-03-30 15:08:02 -0700180#define BPF_CGROUP_RUN_SA_PROG(sk, uaddr, type) \
181({ \
182 int __ret = 0; \
183 if (cgroup_bpf_enabled) \
Andrey Ignatov1cedee12018-05-25 08:55:23 -0700184 __ret = __cgroup_bpf_run_filter_sock_addr(sk, uaddr, type, \
185 NULL); \
Andrey Ignatov4fbac772018-03-30 15:08:02 -0700186 __ret; \
187})
188
Andrey Ignatov1cedee12018-05-25 08:55:23 -0700189#define BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, type, t_ctx) \
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700190({ \
191 int __ret = 0; \
192 if (cgroup_bpf_enabled) { \
193 lock_sock(sk); \
Andrey Ignatov1cedee12018-05-25 08:55:23 -0700194 __ret = __cgroup_bpf_run_filter_sock_addr(sk, uaddr, type, \
195 t_ctx); \
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700196 release_sock(sk); \
197 } \
198 __ret; \
199})
200
Andrey Ignatov4fbac772018-03-30 15:08:02 -0700201#define BPF_CGROUP_RUN_PROG_INET4_BIND(sk, uaddr) \
202 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET4_BIND)
203
204#define BPF_CGROUP_RUN_PROG_INET6_BIND(sk, uaddr) \
205 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET6_BIND)
206
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700207#define BPF_CGROUP_PRE_CONNECT_ENABLED(sk) (cgroup_bpf_enabled && \
208 sk->sk_prot->pre_connect)
209
210#define BPF_CGROUP_RUN_PROG_INET4_CONNECT(sk, uaddr) \
211 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET4_CONNECT)
212
213#define BPF_CGROUP_RUN_PROG_INET6_CONNECT(sk, uaddr) \
214 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET6_CONNECT)
215
216#define BPF_CGROUP_RUN_PROG_INET4_CONNECT_LOCK(sk, uaddr) \
Andrey Ignatov1cedee12018-05-25 08:55:23 -0700217 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_INET4_CONNECT, NULL)
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700218
219#define BPF_CGROUP_RUN_PROG_INET6_CONNECT_LOCK(sk, uaddr) \
Andrey Ignatov1cedee12018-05-25 08:55:23 -0700220 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_INET6_CONNECT, NULL)
221
222#define BPF_CGROUP_RUN_PROG_UDP4_SENDMSG_LOCK(sk, uaddr, t_ctx) \
223 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_UDP4_SENDMSG, t_ctx)
224
225#define BPF_CGROUP_RUN_PROG_UDP6_SENDMSG_LOCK(sk, uaddr, t_ctx) \
226 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_UDP6_SENDMSG, t_ctx)
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700227
Lawrence Brakmo40304b22017-06-30 20:02:40 -0700228#define BPF_CGROUP_RUN_PROG_SOCK_OPS(sock_ops) \
229({ \
230 int __ret = 0; \
231 if (cgroup_bpf_enabled && (sock_ops)->sk) { \
232 typeof(sk) __sk = sk_to_full_sk((sock_ops)->sk); \
WANG Congdf39a9f2017-07-17 11:42:55 -0700233 if (__sk && sk_fullsock(__sk)) \
Lawrence Brakmo40304b22017-06-30 20:02:40 -0700234 __ret = __cgroup_bpf_run_filter_sock_ops(__sk, \
235 sock_ops, \
236 BPF_CGROUP_SOCK_OPS); \
237 } \
238 __ret; \
239})
Roman Gushchinebc614f2017-11-05 08:15:32 -0500240
241#define BPF_CGROUP_RUN_PROG_DEVICE_CGROUP(type, major, minor, access) \
242({ \
243 int __ret = 0; \
244 if (cgroup_bpf_enabled) \
245 __ret = __cgroup_bpf_check_dev_permission(type, major, minor, \
246 access, \
247 BPF_CGROUP_DEVICE); \
248 \
249 __ret; \
250})
Sean Youngfdb5c452018-06-19 00:04:24 +0100251int cgroup_bpf_prog_attach(const union bpf_attr *attr,
252 enum bpf_prog_type ptype, struct bpf_prog *prog);
253int cgroup_bpf_prog_detach(const union bpf_attr *attr,
254 enum bpf_prog_type ptype);
255int cgroup_bpf_prog_query(const union bpf_attr *attr,
256 union bpf_attr __user *uattr);
Daniel Mack30070982016-11-23 16:52:26 +0100257#else
258
Sean Youngfdb5c452018-06-19 00:04:24 +0100259struct bpf_prog;
Daniel Mack30070982016-11-23 16:52:26 +0100260struct cgroup_bpf {};
261static inline void cgroup_bpf_put(struct cgroup *cgrp) {}
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -0700262static inline int cgroup_bpf_inherit(struct cgroup *cgrp) { return 0; }
Daniel Mack30070982016-11-23 16:52:26 +0100263
Sean Youngfdb5c452018-06-19 00:04:24 +0100264static inline int cgroup_bpf_prog_attach(const union bpf_attr *attr,
265 enum bpf_prog_type ptype,
266 struct bpf_prog *prog)
267{
268 return -EINVAL;
269}
270
271static inline int cgroup_bpf_prog_detach(const union bpf_attr *attr,
272 enum bpf_prog_type ptype)
273{
274 return -EINVAL;
275}
276
277static inline int cgroup_bpf_prog_query(const union bpf_attr *attr,
278 union bpf_attr __user *uattr)
279{
280 return -EINVAL;
281}
282
Roman Gushchin8bad74f2018-09-28 14:45:36 +0000283static inline void bpf_cgroup_storage_set(
284 struct bpf_cgroup_storage *storage[MAX_BPF_CGROUP_STORAGE_TYPE]) {}
Roman Gushchinde9cbba2018-08-02 14:27:18 -0700285static inline int bpf_cgroup_storage_assign(struct bpf_prog *prog,
286 struct bpf_map *map) { return 0; }
287static inline void bpf_cgroup_storage_release(struct bpf_prog *prog,
288 struct bpf_map *map) {}
289static inline struct bpf_cgroup_storage *bpf_cgroup_storage_alloc(
Roman Gushchin8bad74f2018-09-28 14:45:36 +0000290 struct bpf_prog *prog, enum bpf_cgroup_storage_type stype) { return 0; }
Roman Gushchinde9cbba2018-08-02 14:27:18 -0700291static inline void bpf_cgroup_storage_free(
292 struct bpf_cgroup_storage *storage) {}
293
Andrey Ignatov13193b02018-05-25 08:55:22 -0700294#define cgroup_bpf_enabled (0)
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700295#define BPF_CGROUP_PRE_CONNECT_ENABLED(sk) (0)
Daniel Mack30070982016-11-23 16:52:26 +0100296#define BPF_CGROUP_RUN_PROG_INET_INGRESS(sk,skb) ({ 0; })
297#define BPF_CGROUP_RUN_PROG_INET_EGRESS(sk,skb) ({ 0; })
David Ahern610236582016-12-01 08:48:04 -0800298#define BPF_CGROUP_RUN_PROG_INET_SOCK(sk) ({ 0; })
Andrey Ignatov4fbac772018-03-30 15:08:02 -0700299#define BPF_CGROUP_RUN_PROG_INET4_BIND(sk, uaddr) ({ 0; })
300#define BPF_CGROUP_RUN_PROG_INET6_BIND(sk, uaddr) ({ 0; })
Andrey Ignatovaac3fc32018-03-30 15:08:07 -0700301#define BPF_CGROUP_RUN_PROG_INET4_POST_BIND(sk) ({ 0; })
302#define BPF_CGROUP_RUN_PROG_INET6_POST_BIND(sk) ({ 0; })
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700303#define BPF_CGROUP_RUN_PROG_INET4_CONNECT(sk, uaddr) ({ 0; })
304#define BPF_CGROUP_RUN_PROG_INET4_CONNECT_LOCK(sk, uaddr) ({ 0; })
305#define BPF_CGROUP_RUN_PROG_INET6_CONNECT(sk, uaddr) ({ 0; })
306#define BPF_CGROUP_RUN_PROG_INET6_CONNECT_LOCK(sk, uaddr) ({ 0; })
Andrey Ignatov1cedee12018-05-25 08:55:23 -0700307#define BPF_CGROUP_RUN_PROG_UDP4_SENDMSG_LOCK(sk, uaddr, t_ctx) ({ 0; })
308#define BPF_CGROUP_RUN_PROG_UDP6_SENDMSG_LOCK(sk, uaddr, t_ctx) ({ 0; })
Lawrence Brakmo40304b22017-06-30 20:02:40 -0700309#define BPF_CGROUP_RUN_PROG_SOCK_OPS(sock_ops) ({ 0; })
Roman Gushchinebc614f2017-11-05 08:15:32 -0500310#define BPF_CGROUP_RUN_PROG_DEVICE_CGROUP(type,major,minor,access) ({ 0; })
Daniel Mack30070982016-11-23 16:52:26 +0100311
Roman Gushchin8bad74f2018-09-28 14:45:36 +0000312#define for_each_cgroup_storage_type(stype) for (; false; )
313
Daniel Mack30070982016-11-23 16:52:26 +0100314#endif /* CONFIG_CGROUP_BPF */
315
316#endif /* _BPF_CGROUP_H */