blob: 79795c5fa7c37d3281fdc006ac701a4cb17c4cf6 [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
Daniel Mack30070982016-11-23 16:52:26 +01005#include <linux/jump_label.h>
6#include <uapi/linux/bpf.h>
7
8struct sock;
Andrey Ignatov4fbac772018-03-30 15:08:02 -07009struct sockaddr;
Daniel Mack30070982016-11-23 16:52:26 +010010struct cgroup;
11struct sk_buff;
Lawrence Brakmo40304b22017-06-30 20:02:40 -070012struct bpf_sock_ops_kern;
Daniel Mack30070982016-11-23 16:52:26 +010013
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
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070019struct bpf_prog_list {
20 struct list_head node;
21 struct bpf_prog *prog;
22};
23
24struct bpf_prog_array;
25
Daniel Mack30070982016-11-23 16:52:26 +010026struct cgroup_bpf {
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070027 /* 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
Daniel Mack30070982016-11-23 16:52:26 +010034 */
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070035 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;
Daniel Mack30070982016-11-23 16:52:26 +010040};
41
42void cgroup_bpf_put(struct cgroup *cgrp);
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070043int cgroup_bpf_inherit(struct cgroup *cgrp);
Daniel Mack30070982016-11-23 16:52:26 +010044
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070045int __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);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -070049int __cgroup_bpf_query(struct cgroup *cgrp, const union bpf_attr *attr,
50 union bpf_attr __user *uattr);
Daniel Mack30070982016-11-23 16:52:26 +010051
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -070052/* 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);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -070057int cgroup_bpf_query(struct cgroup *cgrp, const union bpf_attr *attr,
58 union bpf_attr __user *uattr);
Daniel Mack30070982016-11-23 16:52:26 +010059
David Ahernb2cd1252016-12-01 08:48:03 -080060int __cgroup_bpf_run_filter_skb(struct sock *sk,
61 struct sk_buff *skb,
62 enum bpf_attach_type type);
Daniel Mack30070982016-11-23 16:52:26 +010063
David Ahern610236582016-12-01 08:48:04 -080064int __cgroup_bpf_run_filter_sk(struct sock *sk,
65 enum bpf_attach_type type);
66
Andrey Ignatov4fbac772018-03-30 15:08:02 -070067int __cgroup_bpf_run_filter_sock_addr(struct sock *sk,
68 struct sockaddr *uaddr,
Andrey Ignatov1cedee12018-05-25 08:55:23 -070069 enum bpf_attach_type type,
70 void *t_ctx);
Andrey Ignatov4fbac772018-03-30 15:08:02 -070071
Lawrence Brakmo40304b22017-06-30 20:02:40 -070072int __cgroup_bpf_run_filter_sock_ops(struct sock *sk,
73 struct bpf_sock_ops_kern *sock_ops,
74 enum bpf_attach_type type);
75
Roman Gushchinebc614f2017-11-05 08:15:32 -050076int __cgroup_bpf_check_dev_permission(short dev_type, u32 major, u32 minor,
77 short access, enum bpf_attach_type type);
78
David Ahernb2cd1252016-12-01 08:48:03 -080079/* Wrappers for __cgroup_bpf_run_filter_skb() guarded by cgroup_bpf_enabled. */
80#define BPF_CGROUP_RUN_PROG_INET_INGRESS(sk, skb) \
81({ \
82 int __ret = 0; \
83 if (cgroup_bpf_enabled) \
84 __ret = __cgroup_bpf_run_filter_skb(sk, skb, \
85 BPF_CGROUP_INET_INGRESS); \
86 \
87 __ret; \
Daniel Mack30070982016-11-23 16:52:26 +010088})
89
David Ahernb2cd1252016-12-01 08:48:03 -080090#define BPF_CGROUP_RUN_PROG_INET_EGRESS(sk, skb) \
91({ \
92 int __ret = 0; \
93 if (cgroup_bpf_enabled && sk && sk == skb->sk) { \
94 typeof(sk) __sk = sk_to_full_sk(sk); \
95 if (sk_fullsock(__sk)) \
96 __ret = __cgroup_bpf_run_filter_skb(__sk, skb, \
97 BPF_CGROUP_INET_EGRESS); \
98 } \
99 __ret; \
Daniel Mack30070982016-11-23 16:52:26 +0100100})
101
Andrey Ignatovaac3fc32018-03-30 15:08:07 -0700102#define BPF_CGROUP_RUN_SK_PROG(sk, type) \
David Ahern610236582016-12-01 08:48:04 -0800103({ \
104 int __ret = 0; \
Yafang Shaoee078622018-02-23 14:58:41 +0800105 if (cgroup_bpf_enabled) { \
Andrey Ignatovaac3fc32018-03-30 15:08:07 -0700106 __ret = __cgroup_bpf_run_filter_sk(sk, type); \
David Ahern610236582016-12-01 08:48:04 -0800107 } \
108 __ret; \
109})
110
Andrey Ignatovaac3fc32018-03-30 15:08:07 -0700111#define BPF_CGROUP_RUN_PROG_INET_SOCK(sk) \
112 BPF_CGROUP_RUN_SK_PROG(sk, BPF_CGROUP_INET_SOCK_CREATE)
113
114#define BPF_CGROUP_RUN_PROG_INET4_POST_BIND(sk) \
115 BPF_CGROUP_RUN_SK_PROG(sk, BPF_CGROUP_INET4_POST_BIND)
116
117#define BPF_CGROUP_RUN_PROG_INET6_POST_BIND(sk) \
118 BPF_CGROUP_RUN_SK_PROG(sk, BPF_CGROUP_INET6_POST_BIND)
119
Andrey Ignatov4fbac772018-03-30 15:08:02 -0700120#define BPF_CGROUP_RUN_SA_PROG(sk, uaddr, type) \
121({ \
122 int __ret = 0; \
123 if (cgroup_bpf_enabled) \
Andrey Ignatov1cedee12018-05-25 08:55:23 -0700124 __ret = __cgroup_bpf_run_filter_sock_addr(sk, uaddr, type, \
125 NULL); \
Andrey Ignatov4fbac772018-03-30 15:08:02 -0700126 __ret; \
127})
128
Andrey Ignatov1cedee12018-05-25 08:55:23 -0700129#define BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, type, t_ctx) \
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700130({ \
131 int __ret = 0; \
132 if (cgroup_bpf_enabled) { \
133 lock_sock(sk); \
Andrey Ignatov1cedee12018-05-25 08:55:23 -0700134 __ret = __cgroup_bpf_run_filter_sock_addr(sk, uaddr, type, \
135 t_ctx); \
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700136 release_sock(sk); \
137 } \
138 __ret; \
139})
140
Andrey Ignatov4fbac772018-03-30 15:08:02 -0700141#define BPF_CGROUP_RUN_PROG_INET4_BIND(sk, uaddr) \
142 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET4_BIND)
143
144#define BPF_CGROUP_RUN_PROG_INET6_BIND(sk, uaddr) \
145 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET6_BIND)
146
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700147#define BPF_CGROUP_PRE_CONNECT_ENABLED(sk) (cgroup_bpf_enabled && \
148 sk->sk_prot->pre_connect)
149
150#define BPF_CGROUP_RUN_PROG_INET4_CONNECT(sk, uaddr) \
151 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET4_CONNECT)
152
153#define BPF_CGROUP_RUN_PROG_INET6_CONNECT(sk, uaddr) \
154 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET6_CONNECT)
155
156#define BPF_CGROUP_RUN_PROG_INET4_CONNECT_LOCK(sk, uaddr) \
Andrey Ignatov1cedee12018-05-25 08:55:23 -0700157 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_INET4_CONNECT, NULL)
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700158
159#define BPF_CGROUP_RUN_PROG_INET6_CONNECT_LOCK(sk, uaddr) \
Andrey Ignatov1cedee12018-05-25 08:55:23 -0700160 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_INET6_CONNECT, NULL)
161
162#define BPF_CGROUP_RUN_PROG_UDP4_SENDMSG_LOCK(sk, uaddr, t_ctx) \
163 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_UDP4_SENDMSG, t_ctx)
164
165#define BPF_CGROUP_RUN_PROG_UDP6_SENDMSG_LOCK(sk, uaddr, t_ctx) \
166 BPF_CGROUP_RUN_SA_PROG_LOCK(sk, uaddr, BPF_CGROUP_UDP6_SENDMSG, t_ctx)
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700167
Lawrence Brakmo40304b22017-06-30 20:02:40 -0700168#define BPF_CGROUP_RUN_PROG_SOCK_OPS(sock_ops) \
169({ \
170 int __ret = 0; \
171 if (cgroup_bpf_enabled && (sock_ops)->sk) { \
172 typeof(sk) __sk = sk_to_full_sk((sock_ops)->sk); \
WANG Congdf39a9f2017-07-17 11:42:55 -0700173 if (__sk && sk_fullsock(__sk)) \
Lawrence Brakmo40304b22017-06-30 20:02:40 -0700174 __ret = __cgroup_bpf_run_filter_sock_ops(__sk, \
175 sock_ops, \
176 BPF_CGROUP_SOCK_OPS); \
177 } \
178 __ret; \
179})
Roman Gushchinebc614f2017-11-05 08:15:32 -0500180
181#define BPF_CGROUP_RUN_PROG_DEVICE_CGROUP(type, major, minor, access) \
182({ \
183 int __ret = 0; \
184 if (cgroup_bpf_enabled) \
185 __ret = __cgroup_bpf_check_dev_permission(type, major, minor, \
186 access, \
187 BPF_CGROUP_DEVICE); \
188 \
189 __ret; \
190})
Sean Youngfdb5c452018-06-19 00:04:24 +0100191int cgroup_bpf_prog_attach(const union bpf_attr *attr,
192 enum bpf_prog_type ptype, struct bpf_prog *prog);
193int cgroup_bpf_prog_detach(const union bpf_attr *attr,
194 enum bpf_prog_type ptype);
195int cgroup_bpf_prog_query(const union bpf_attr *attr,
196 union bpf_attr __user *uattr);
Daniel Mack30070982016-11-23 16:52:26 +0100197#else
198
Sean Youngfdb5c452018-06-19 00:04:24 +0100199struct bpf_prog;
Daniel Mack30070982016-11-23 16:52:26 +0100200struct cgroup_bpf {};
201static inline void cgroup_bpf_put(struct cgroup *cgrp) {}
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -0700202static inline int cgroup_bpf_inherit(struct cgroup *cgrp) { return 0; }
Daniel Mack30070982016-11-23 16:52:26 +0100203
Sean Youngfdb5c452018-06-19 00:04:24 +0100204static inline int cgroup_bpf_prog_attach(const union bpf_attr *attr,
205 enum bpf_prog_type ptype,
206 struct bpf_prog *prog)
207{
208 return -EINVAL;
209}
210
211static inline int cgroup_bpf_prog_detach(const union bpf_attr *attr,
212 enum bpf_prog_type ptype)
213{
214 return -EINVAL;
215}
216
217static inline int cgroup_bpf_prog_query(const union bpf_attr *attr,
218 union bpf_attr __user *uattr)
219{
220 return -EINVAL;
221}
222
Andrey Ignatov13193b02018-05-25 08:55:22 -0700223#define cgroup_bpf_enabled (0)
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700224#define BPF_CGROUP_PRE_CONNECT_ENABLED(sk) (0)
Daniel Mack30070982016-11-23 16:52:26 +0100225#define BPF_CGROUP_RUN_PROG_INET_INGRESS(sk,skb) ({ 0; })
226#define BPF_CGROUP_RUN_PROG_INET_EGRESS(sk,skb) ({ 0; })
David Ahern610236582016-12-01 08:48:04 -0800227#define BPF_CGROUP_RUN_PROG_INET_SOCK(sk) ({ 0; })
Andrey Ignatov4fbac772018-03-30 15:08:02 -0700228#define BPF_CGROUP_RUN_PROG_INET4_BIND(sk, uaddr) ({ 0; })
229#define BPF_CGROUP_RUN_PROG_INET6_BIND(sk, uaddr) ({ 0; })
Andrey Ignatovaac3fc32018-03-30 15:08:07 -0700230#define BPF_CGROUP_RUN_PROG_INET4_POST_BIND(sk) ({ 0; })
231#define BPF_CGROUP_RUN_PROG_INET6_POST_BIND(sk) ({ 0; })
Andrey Ignatovd74bad42018-03-30 15:08:05 -0700232#define BPF_CGROUP_RUN_PROG_INET4_CONNECT(sk, uaddr) ({ 0; })
233#define BPF_CGROUP_RUN_PROG_INET4_CONNECT_LOCK(sk, uaddr) ({ 0; })
234#define BPF_CGROUP_RUN_PROG_INET6_CONNECT(sk, uaddr) ({ 0; })
235#define BPF_CGROUP_RUN_PROG_INET6_CONNECT_LOCK(sk, uaddr) ({ 0; })
Andrey Ignatov1cedee12018-05-25 08:55:23 -0700236#define BPF_CGROUP_RUN_PROG_UDP4_SENDMSG_LOCK(sk, uaddr, t_ctx) ({ 0; })
237#define BPF_CGROUP_RUN_PROG_UDP6_SENDMSG_LOCK(sk, uaddr, t_ctx) ({ 0; })
Lawrence Brakmo40304b22017-06-30 20:02:40 -0700238#define BPF_CGROUP_RUN_PROG_SOCK_OPS(sock_ops) ({ 0; })
Roman Gushchinebc614f2017-11-05 08:15:32 -0500239#define BPF_CGROUP_RUN_PROG_DEVICE_CGROUP(type,major,minor,access) ({ 0; })
Daniel Mack30070982016-11-23 16:52:26 +0100240
241#endif /* CONFIG_CGROUP_BPF */
242
243#endif /* _BPF_CGROUP_H */