blob: 112765bd146debf25d31e4f69d1deddd8a78cf9d [file] [log] [blame]
Daniel Borkmann604326b2018-10-13 02:45:58 +02001/* SPDX-License-Identifier: GPL-2.0 */
2/* Copyright (c) 2017 - 2018 Covalent IO, Inc. http://covalent.io */
3
4#ifndef _LINUX_SKMSG_H
5#define _LINUX_SKMSG_H
6
7#include <linux/bpf.h>
8#include <linux/filter.h>
9#include <linux/scatterlist.h>
10#include <linux/skbuff.h>
11
12#include <net/sock.h>
13#include <net/tcp.h>
14#include <net/strparser.h>
15
16#define MAX_MSG_FRAGS MAX_SKB_FRAGS
Jakub Kicinski031097d2019-11-27 12:16:41 -080017#define NR_MSG_FRAG_IDS (MAX_MSG_FRAGS + 1)
Daniel Borkmann604326b2018-10-13 02:45:58 +020018
19enum __sk_action {
20 __SK_DROP = 0,
21 __SK_PASS,
22 __SK_REDIRECT,
23 __SK_NONE,
24};
25
26struct sk_msg_sg {
27 u32 start;
28 u32 curr;
29 u32 end;
30 u32 size;
31 u32 copybreak;
Jakub Kicinski163ab962019-10-06 21:09:27 -070032 unsigned long copy;
Jakub Kicinski031097d2019-11-27 12:16:41 -080033 /* The extra two elements:
34 * 1) used for chaining the front and sections when the list becomes
35 * partitioned (e.g. end < start). The crypto APIs require the
36 * chaining;
37 * 2) to chain tailer SG entries after the message.
John Fastabendd3b18ad32018-10-13 02:46:01 +020038 */
Jakub Kicinski031097d2019-11-27 12:16:41 -080039 struct scatterlist data[MAX_MSG_FRAGS + 2];
Daniel Borkmann604326b2018-10-13 02:45:58 +020040};
Jakub Kicinski031097d2019-11-27 12:16:41 -080041static_assert(BITS_PER_LONG >= NR_MSG_FRAG_IDS);
Daniel Borkmann604326b2018-10-13 02:45:58 +020042
John Fastabend7a69c0f2018-12-20 11:35:31 -080043/* UAPI in filter.c depends on struct sk_msg_sg being first element. */
Daniel Borkmann604326b2018-10-13 02:45:58 +020044struct sk_msg {
45 struct sk_msg_sg sg;
46 void *data;
47 void *data_end;
48 u32 apply_bytes;
49 u32 cork_bytes;
50 u32 flags;
51 struct sk_buff *skb;
52 struct sock *sk_redir;
53 struct sock *sk;
54 struct list_head list;
55};
56
57struct sk_psock_progs {
58 struct bpf_prog *msg_parser;
59 struct bpf_prog *skb_parser;
60 struct bpf_prog *skb_verdict;
61};
62
63enum sk_psock_state_bits {
64 SK_PSOCK_TX_ENABLED,
65};
66
67struct sk_psock_link {
68 struct list_head list;
69 struct bpf_map *map;
70 void *link_raw;
71};
72
73struct sk_psock_parser {
74 struct strparser strp;
75 bool enabled;
76 void (*saved_data_ready)(struct sock *sk);
77};
78
79struct sk_psock_work_state {
80 struct sk_buff *skb;
81 u32 len;
82 u32 off;
83};
84
85struct sk_psock {
86 struct sock *sk;
87 struct sock *sk_redir;
88 u32 apply_bytes;
89 u32 cork_bytes;
90 u32 eval;
91 struct sk_msg *cork;
92 struct sk_psock_progs progs;
93 struct sk_psock_parser parser;
94 struct sk_buff_head ingress_skb;
95 struct list_head ingress_msg;
96 unsigned long state;
97 struct list_head link;
98 spinlock_t link_lock;
99 refcount_t refcnt;
100 void (*saved_unhash)(struct sock *sk);
101 void (*saved_close)(struct sock *sk, long timeout);
102 void (*saved_write_space)(struct sock *sk);
103 struct proto *sk_proto;
104 struct sk_psock_work_state work_state;
105 struct work_struct work;
106 union {
107 struct rcu_head rcu;
108 struct work_struct gc;
109 };
110};
111
112int sk_msg_alloc(struct sock *sk, struct sk_msg *msg, int len,
113 int elem_first_coalesce);
Daniel Borkmannd829e9c2018-10-13 02:45:59 +0200114int sk_msg_clone(struct sock *sk, struct sk_msg *dst, struct sk_msg *src,
115 u32 off, u32 len);
Daniel Borkmann604326b2018-10-13 02:45:58 +0200116void sk_msg_trim(struct sock *sk, struct sk_msg *msg, int len);
117int sk_msg_free(struct sock *sk, struct sk_msg *msg);
118int sk_msg_free_nocharge(struct sock *sk, struct sk_msg *msg);
119void sk_msg_free_partial(struct sock *sk, struct sk_msg *msg, u32 bytes);
120void sk_msg_free_partial_nocharge(struct sock *sk, struct sk_msg *msg,
121 u32 bytes);
122
123void sk_msg_return(struct sock *sk, struct sk_msg *msg, int bytes);
John Fastabendd3b18ad32018-10-13 02:46:01 +0200124void sk_msg_return_zero(struct sock *sk, struct sk_msg *msg, int bytes);
Daniel Borkmann604326b2018-10-13 02:45:58 +0200125
126int sk_msg_zerocopy_from_iter(struct sock *sk, struct iov_iter *from,
127 struct sk_msg *msg, u32 bytes);
128int sk_msg_memcopy_from_iter(struct sock *sk, struct iov_iter *from,
129 struct sk_msg *msg, u32 bytes);
130
131static inline void sk_msg_check_to_free(struct sk_msg *msg, u32 i, u32 bytes)
132{
133 WARN_ON(i == msg->sg.end && bytes);
134}
135
136static inline void sk_msg_apply_bytes(struct sk_psock *psock, u32 bytes)
137{
138 if (psock->apply_bytes) {
139 if (psock->apply_bytes < bytes)
140 psock->apply_bytes = 0;
141 else
142 psock->apply_bytes -= bytes;
143 }
144}
145
Jakub Kicinski683916f2019-11-04 15:36:57 -0800146static inline u32 sk_msg_iter_dist(u32 start, u32 end)
147{
Jakub Kicinski031097d2019-11-27 12:16:41 -0800148 return end >= start ? end - start : end + (NR_MSG_FRAG_IDS - start);
Jakub Kicinski683916f2019-11-04 15:36:57 -0800149}
150
Daniel Borkmann604326b2018-10-13 02:45:58 +0200151#define sk_msg_iter_var_prev(var) \
152 do { \
153 if (var == 0) \
Jakub Kicinski031097d2019-11-27 12:16:41 -0800154 var = NR_MSG_FRAG_IDS - 1; \
Daniel Borkmann604326b2018-10-13 02:45:58 +0200155 else \
156 var--; \
157 } while (0)
158
159#define sk_msg_iter_var_next(var) \
160 do { \
161 var++; \
Jakub Kicinski031097d2019-11-27 12:16:41 -0800162 if (var == NR_MSG_FRAG_IDS) \
Daniel Borkmann604326b2018-10-13 02:45:58 +0200163 var = 0; \
164 } while (0)
165
166#define sk_msg_iter_prev(msg, which) \
167 sk_msg_iter_var_prev(msg->sg.which)
168
169#define sk_msg_iter_next(msg, which) \
170 sk_msg_iter_var_next(msg->sg.which)
171
172static inline void sk_msg_clear_meta(struct sk_msg *msg)
173{
174 memset(&msg->sg, 0, offsetofend(struct sk_msg_sg, copy));
175}
176
177static inline void sk_msg_init(struct sk_msg *msg)
178{
Jakub Kicinski031097d2019-11-27 12:16:41 -0800179 BUILD_BUG_ON(ARRAY_SIZE(msg->sg.data) - 1 != NR_MSG_FRAG_IDS);
Daniel Borkmann604326b2018-10-13 02:45:58 +0200180 memset(msg, 0, sizeof(*msg));
Jakub Kicinski031097d2019-11-27 12:16:41 -0800181 sg_init_marker(msg->sg.data, NR_MSG_FRAG_IDS);
Daniel Borkmann604326b2018-10-13 02:45:58 +0200182}
183
184static inline void sk_msg_xfer(struct sk_msg *dst, struct sk_msg *src,
185 int which, u32 size)
186{
187 dst->sg.data[which] = src->sg.data[which];
188 dst->sg.data[which].length = size;
John Fastabend3f4c3122018-10-16 10:36:01 -0700189 dst->sg.size += size;
Daniel Borkmann604326b2018-10-13 02:45:58 +0200190 src->sg.data[which].length -= size;
191 src->sg.data[which].offset += size;
192}
193
John Fastabendd3b18ad32018-10-13 02:46:01 +0200194static inline void sk_msg_xfer_full(struct sk_msg *dst, struct sk_msg *src)
195{
196 memcpy(dst, src, sizeof(*src));
197 sk_msg_init(src);
198}
199
Daniel Borkmann604326b2018-10-13 02:45:58 +0200200static inline bool sk_msg_full(const struct sk_msg *msg)
201{
Jakub Kicinski031097d2019-11-27 12:16:41 -0800202 return sk_msg_iter_dist(msg->sg.start, msg->sg.end) == MAX_MSG_FRAGS;
Daniel Borkmann604326b2018-10-13 02:45:58 +0200203}
204
John Fastabend8734a162018-10-16 11:07:59 -0700205static inline u32 sk_msg_elem_used(const struct sk_msg *msg)
206{
Jakub Kicinski683916f2019-11-04 15:36:57 -0800207 return sk_msg_iter_dist(msg->sg.start, msg->sg.end);
John Fastabend8734a162018-10-16 11:07:59 -0700208}
209
Daniel Borkmann604326b2018-10-13 02:45:58 +0200210static inline struct scatterlist *sk_msg_elem(struct sk_msg *msg, int which)
211{
212 return &msg->sg.data[which];
213}
214
John Fastabend6fff6072018-10-19 19:56:49 -0700215static inline struct scatterlist sk_msg_elem_cpy(struct sk_msg *msg, int which)
216{
217 return msg->sg.data[which];
218}
219
Daniel Borkmann604326b2018-10-13 02:45:58 +0200220static inline struct page *sk_msg_page(struct sk_msg *msg, int which)
221{
222 return sg_page(sk_msg_elem(msg, which));
223}
224
225static inline bool sk_msg_to_ingress(const struct sk_msg *msg)
226{
227 return msg->flags & BPF_F_INGRESS;
228}
229
230static inline void sk_msg_compute_data_pointers(struct sk_msg *msg)
231{
232 struct scatterlist *sge = sk_msg_elem(msg, msg->sg.start);
233
Jakub Kicinski163ab962019-10-06 21:09:27 -0700234 if (test_bit(msg->sg.start, &msg->sg.copy)) {
Daniel Borkmann604326b2018-10-13 02:45:58 +0200235 msg->data = NULL;
236 msg->data_end = NULL;
237 } else {
238 msg->data = sg_virt(sge);
239 msg->data_end = msg->data + sge->length;
240 }
241}
242
243static inline void sk_msg_page_add(struct sk_msg *msg, struct page *page,
244 u32 len, u32 offset)
245{
246 struct scatterlist *sge;
247
248 get_page(page);
249 sge = sk_msg_elem(msg, msg->sg.end);
250 sg_set_page(sge, page, len, offset);
251 sg_unmark_end(sge);
252
Jakub Kicinski163ab962019-10-06 21:09:27 -0700253 __set_bit(msg->sg.end, &msg->sg.copy);
Daniel Borkmann604326b2018-10-13 02:45:58 +0200254 msg->sg.size += len;
255 sk_msg_iter_next(msg, end);
256}
257
John Fastabendd3b18ad32018-10-13 02:46:01 +0200258static inline void sk_msg_sg_copy(struct sk_msg *msg, u32 i, bool copy_state)
259{
260 do {
Jakub Kicinski163ab962019-10-06 21:09:27 -0700261 if (copy_state)
262 __set_bit(i, &msg->sg.copy);
263 else
264 __clear_bit(i, &msg->sg.copy);
John Fastabendd3b18ad32018-10-13 02:46:01 +0200265 sk_msg_iter_var_next(i);
266 if (i == msg->sg.end)
267 break;
268 } while (1);
269}
270
271static inline void sk_msg_sg_copy_set(struct sk_msg *msg, u32 start)
272{
273 sk_msg_sg_copy(msg, start, true);
274}
275
276static inline void sk_msg_sg_copy_clear(struct sk_msg *msg, u32 start)
277{
278 sk_msg_sg_copy(msg, start, false);
279}
280
Daniel Borkmann604326b2018-10-13 02:45:58 +0200281static inline struct sk_psock *sk_psock(const struct sock *sk)
282{
283 return rcu_dereference_sk_user_data(sk);
284}
285
Daniel Borkmann604326b2018-10-13 02:45:58 +0200286static inline void sk_psock_queue_msg(struct sk_psock *psock,
287 struct sk_msg *msg)
288{
289 list_add_tail(&msg->list, &psock->ingress_msg);
290}
291
John Fastabendd3b18ad32018-10-13 02:46:01 +0200292static inline bool sk_psock_queue_empty(const struct sk_psock *psock)
293{
294 return psock ? list_empty(&psock->ingress_msg) : true;
295}
296
Daniel Borkmann604326b2018-10-13 02:45:58 +0200297static inline void sk_psock_report_error(struct sk_psock *psock, int err)
298{
299 struct sock *sk = psock->sk;
300
301 sk->sk_err = err;
302 sk->sk_error_report(sk);
303}
304
305struct sk_psock *sk_psock_init(struct sock *sk, int node);
306
307int sk_psock_init_strp(struct sock *sk, struct sk_psock *psock);
308void sk_psock_start_strp(struct sock *sk, struct sk_psock *psock);
309void sk_psock_stop_strp(struct sock *sk, struct sk_psock *psock);
310
311int sk_psock_msg_verdict(struct sock *sk, struct sk_psock *psock,
312 struct sk_msg *msg);
313
314static inline struct sk_psock_link *sk_psock_init_link(void)
315{
316 return kzalloc(sizeof(struct sk_psock_link),
317 GFP_ATOMIC | __GFP_NOWARN);
318}
319
320static inline void sk_psock_free_link(struct sk_psock_link *link)
321{
322 kfree(link);
323}
324
325struct sk_psock_link *sk_psock_link_pop(struct sk_psock *psock);
326#if defined(CONFIG_BPF_STREAM_PARSER)
327void sk_psock_unlink(struct sock *sk, struct sk_psock_link *link);
328#else
329static inline void sk_psock_unlink(struct sock *sk,
330 struct sk_psock_link *link)
331{
332}
333#endif
334
335void __sk_psock_purge_ingress_msg(struct sk_psock *psock);
336
337static inline void sk_psock_cork_free(struct sk_psock *psock)
338{
339 if (psock->cork) {
340 sk_msg_free(psock->sk, psock->cork);
341 kfree(psock->cork);
342 psock->cork = NULL;
343 }
344}
345
346static inline void sk_psock_update_proto(struct sock *sk,
347 struct sk_psock *psock,
348 struct proto *ops)
349{
350 psock->saved_unhash = sk->sk_prot->unhash;
351 psock->saved_close = sk->sk_prot->close;
352 psock->saved_write_space = sk->sk_write_space;
353
354 psock->sk_proto = sk->sk_prot;
Jakub Sitnickib8e202d2020-02-18 17:10:13 +0000355 /* Pairs with lockless read in sk_clone_lock() */
356 WRITE_ONCE(sk->sk_prot, ops);
Daniel Borkmann604326b2018-10-13 02:45:58 +0200357}
358
359static inline void sk_psock_restore_proto(struct sock *sk,
360 struct sk_psock *psock)
361{
John Fastabend4da6a192020-01-11 06:11:59 +0000362 sk->sk_prot->unhash = psock->saved_unhash;
Jakub Sitnickia178b452020-02-17 12:15:29 +0000363 tcp_update_ulp(sk, psock->sk_proto, psock->saved_write_space);
Daniel Borkmann604326b2018-10-13 02:45:58 +0200364}
365
366static inline void sk_psock_set_state(struct sk_psock *psock,
367 enum sk_psock_state_bits bit)
368{
369 set_bit(bit, &psock->state);
370}
371
372static inline void sk_psock_clear_state(struct sk_psock *psock,
373 enum sk_psock_state_bits bit)
374{
375 clear_bit(bit, &psock->state);
376}
377
378static inline bool sk_psock_test_state(const struct sk_psock *psock,
379 enum sk_psock_state_bits bit)
380{
381 return test_bit(bit, &psock->state);
382}
383
John Fastabend5032d072018-10-18 13:58:35 -0700384static inline struct sk_psock *sk_psock_get_checked(struct sock *sk)
385{
386 struct sk_psock *psock;
387
388 rcu_read_lock();
389 psock = sk_psock(sk);
390 if (psock) {
391 if (sk->sk_prot->recvmsg != tcp_bpf_recvmsg) {
392 psock = ERR_PTR(-EBUSY);
393 goto out;
394 }
395
396 if (!refcount_inc_not_zero(&psock->refcnt))
397 psock = ERR_PTR(-EBUSY);
398 }
399out:
400 rcu_read_unlock();
401 return psock;
402}
403
Daniel Borkmann604326b2018-10-13 02:45:58 +0200404static inline struct sk_psock *sk_psock_get(struct sock *sk)
405{
406 struct sk_psock *psock;
407
408 rcu_read_lock();
409 psock = sk_psock(sk);
410 if (psock && !refcount_inc_not_zero(&psock->refcnt))
411 psock = NULL;
412 rcu_read_unlock();
413 return psock;
414}
415
416void sk_psock_stop(struct sock *sk, struct sk_psock *psock);
417void sk_psock_destroy(struct rcu_head *rcu);
418void sk_psock_drop(struct sock *sk, struct sk_psock *psock);
419
420static inline void sk_psock_put(struct sock *sk, struct sk_psock *psock)
421{
422 if (refcount_dec_and_test(&psock->refcnt))
423 sk_psock_drop(sk, psock);
424}
425
John Fastabend552de9102018-12-20 11:35:33 -0800426static inline void sk_psock_data_ready(struct sock *sk, struct sk_psock *psock)
427{
428 if (psock->parser.enabled)
429 psock->parser.saved_data_ready(sk);
430 else
431 sk->sk_data_ready(sk);
432}
433
Daniel Borkmann604326b2018-10-13 02:45:58 +0200434static inline void psock_set_prog(struct bpf_prog **pprog,
435 struct bpf_prog *prog)
436{
437 prog = xchg(pprog, prog);
438 if (prog)
439 bpf_prog_put(prog);
440}
441
442static inline void psock_progs_drop(struct sk_psock_progs *progs)
443{
444 psock_set_prog(&progs->msg_parser, NULL);
445 psock_set_prog(&progs->skb_parser, NULL);
446 psock_set_prog(&progs->skb_verdict, NULL);
447}
448
449#endif /* _LINUX_SKMSG_H */