Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/* Copyright (c) 2017 Facebook
3 */
4#include <linux/bpf.h>
5#include <linux/btf.h>
6#include <linux/btf_ids.h>
7#include <linux/slab.h>
8#include <linux/init.h>
9#include <linux/vmalloc.h>
10#include <linux/etherdevice.h>
11#include <linux/filter.h>
12#include <linux/rcupdate_trace.h>
13#include <linux/sched/signal.h>
14#include <net/bpf_sk_storage.h>
15#include <net/sock.h>
16#include <net/tcp.h>
17#include <net/net_namespace.h>
18#include <net/page_pool.h>
19#include <linux/error-injection.h>
20#include <linux/smp.h>
21#include <linux/sock_diag.h>
22#include <net/xdp.h>
23
24#define CREATE_TRACE_POINTS
25#include <trace/events/bpf_test_run.h>
26
27struct bpf_test_timer {
28 enum { NO_PREEMPT, NO_MIGRATE } mode;
29 u32 i;
30 u64 time_start, time_spent;
31};
32
33static void bpf_test_timer_enter(struct bpf_test_timer *t)
34 __acquires(rcu)
35{
36 rcu_read_lock();
37 if (t->mode == NO_PREEMPT)
38 preempt_disable();
39 else
40 migrate_disable();
41
42 t->time_start = ktime_get_ns();
43}
44
45static void bpf_test_timer_leave(struct bpf_test_timer *t)
46 __releases(rcu)
47{
48 t->time_start = 0;
49
50 if (t->mode == NO_PREEMPT)
51 preempt_enable();
52 else
53 migrate_enable();
54 rcu_read_unlock();
55}
56
57static bool bpf_test_timer_continue(struct bpf_test_timer *t, int iterations,
58 u32 repeat, int *err, u32 *duration)
59 __must_hold(rcu)
60{
61 t->i += iterations;
62 if (t->i >= repeat) {
63 /* We're done. */
64 t->time_spent += ktime_get_ns() - t->time_start;
65 do_div(t->time_spent, t->i);
66 *duration = t->time_spent > U32_MAX ? U32_MAX : (u32)t->time_spent;
67 *err = 0;
68 goto reset;
69 }
70
71 if (signal_pending(current)) {
72 /* During iteration: we've been cancelled, abort. */
73 *err = -EINTR;
74 goto reset;
75 }
76
77 if (need_resched()) {
78 /* During iteration: we need to reschedule between runs. */
79 t->time_spent += ktime_get_ns() - t->time_start;
80 bpf_test_timer_leave(t);
81 cond_resched();
82 bpf_test_timer_enter(t);
83 }
84
85 /* Do another round. */
86 return true;
87
88reset:
89 t->i = 0;
90 return false;
91}
92
93/* We put this struct at the head of each page with a context and frame
94 * initialised when the page is allocated, so we don't have to do this on each
95 * repetition of the test run.
96 */
97struct xdp_page_head {
98 struct xdp_buff orig_ctx;
99 struct xdp_buff ctx;
100 struct xdp_frame frm;
101 u8 data[];
102};
103
104struct xdp_test_data {
105 struct xdp_buff *orig_ctx;
106 struct xdp_rxq_info rxq;
107 struct net_device *dev;
108 struct page_pool *pp;
109 struct xdp_frame **frames;
110 struct sk_buff **skbs;
111 struct xdp_mem_info mem;
112 u32 batch_size;
113 u32 frame_cnt;
114};
115
116#define TEST_XDP_FRAME_SIZE (PAGE_SIZE - sizeof(struct xdp_page_head))
117#define TEST_XDP_MAX_BATCH 256
118
119static void xdp_test_run_init_page(struct page *page, void *arg)
120{
121 struct xdp_page_head *head = phys_to_virt(page_to_phys(page));
122 struct xdp_buff *new_ctx, *orig_ctx;
123 u32 headroom = XDP_PACKET_HEADROOM;
124 struct xdp_test_data *xdp = arg;
125 size_t frm_len, meta_len;
126 struct xdp_frame *frm;
127 void *data;
128
129 orig_ctx = xdp->orig_ctx;
130 frm_len = orig_ctx->data_end - orig_ctx->data_meta;
131 meta_len = orig_ctx->data - orig_ctx->data_meta;
132 headroom -= meta_len;
133
134 new_ctx = &head->ctx;
135 frm = &head->frm;
136 data = &head->data;
137 memcpy(data + headroom, orig_ctx->data_meta, frm_len);
138
139 xdp_init_buff(new_ctx, TEST_XDP_FRAME_SIZE, &xdp->rxq);
140 xdp_prepare_buff(new_ctx, data, headroom, frm_len, true);
141 new_ctx->data = new_ctx->data_meta + meta_len;
142
143 xdp_update_frame_from_buff(new_ctx, frm);
144 frm->mem = new_ctx->rxq->mem;
145
146 memcpy(&head->orig_ctx, new_ctx, sizeof(head->orig_ctx));
147}
148
149static int xdp_test_run_setup(struct xdp_test_data *xdp, struct xdp_buff *orig_ctx)
150{
151 struct page_pool *pp;
152 int err = -ENOMEM;
153 struct page_pool_params pp_params = {
154 .order = 0,
155 .flags = 0,
156 .pool_size = xdp->batch_size,
157 .nid = NUMA_NO_NODE,
158 .init_callback = xdp_test_run_init_page,
159 .init_arg = xdp,
160 };
161
162 xdp->frames = kvmalloc_array(xdp->batch_size, sizeof(void *), GFP_KERNEL);
163 if (!xdp->frames)
164 return -ENOMEM;
165
166 xdp->skbs = kvmalloc_array(xdp->batch_size, sizeof(void *), GFP_KERNEL);
167 if (!xdp->skbs)
168 goto err_skbs;
169
170 pp = page_pool_create(&pp_params);
171 if (IS_ERR(pp)) {
172 err = PTR_ERR(pp);
173 goto err_pp;
174 }
175
176 /* will copy 'mem.id' into pp->xdp_mem_id */
177 err = xdp_reg_mem_model(&xdp->mem, MEM_TYPE_PAGE_POOL, pp);
178 if (err)
179 goto err_mmodel;
180
181 xdp->pp = pp;
182
183 /* We create a 'fake' RXQ referencing the original dev, but with an
184 * xdp_mem_info pointing to our page_pool
185 */
186 xdp_rxq_info_reg(&xdp->rxq, orig_ctx->rxq->dev, 0, 0);
187 xdp->rxq.mem.type = MEM_TYPE_PAGE_POOL;
188 xdp->rxq.mem.id = pp->xdp_mem_id;
189 xdp->dev = orig_ctx->rxq->dev;
190 xdp->orig_ctx = orig_ctx;
191
192 return 0;
193
194err_mmodel:
195 page_pool_destroy(pp);
196err_pp:
197 kvfree(xdp->skbs);
198err_skbs:
199 kvfree(xdp->frames);
200 return err;
201}
202
203static void xdp_test_run_teardown(struct xdp_test_data *xdp)
204{
205 xdp_unreg_mem_model(&xdp->mem);
206 page_pool_destroy(xdp->pp);
207 kfree(xdp->frames);
208 kfree(xdp->skbs);
209}
210
211static bool ctx_was_changed(struct xdp_page_head *head)
212{
213 return head->orig_ctx.data != head->ctx.data ||
214 head->orig_ctx.data_meta != head->ctx.data_meta ||
215 head->orig_ctx.data_end != head->ctx.data_end;
216}
217
218static void reset_ctx(struct xdp_page_head *head)
219{
220 if (likely(!ctx_was_changed(head)))
221 return;
222
223 head->ctx.data = head->orig_ctx.data;
224 head->ctx.data_meta = head->orig_ctx.data_meta;
225 head->ctx.data_end = head->orig_ctx.data_end;
226 xdp_update_frame_from_buff(&head->ctx, &head->frm);
227}
228
229static int xdp_recv_frames(struct xdp_frame **frames, int nframes,
230 struct sk_buff **skbs,
231 struct net_device *dev)
232{
233 gfp_t gfp = __GFP_ZERO | GFP_ATOMIC;
234 int i, n;
235 LIST_HEAD(list);
236
237 n = kmem_cache_alloc_bulk(skbuff_head_cache, gfp, nframes, (void **)skbs);
238 if (unlikely(n == 0)) {
239 for (i = 0; i < nframes; i++)
240 xdp_return_frame(frames[i]);
241 return -ENOMEM;
242 }
243
244 for (i = 0; i < nframes; i++) {
245 struct xdp_frame *xdpf = frames[i];
246 struct sk_buff *skb = skbs[i];
247
248 skb = __xdp_build_skb_from_frame(xdpf, skb, dev);
249 if (!skb) {
250 xdp_return_frame(xdpf);
251 continue;
252 }
253
254 list_add_tail(&skb->list, &list);
255 }
256 netif_receive_skb_list(&list);
257
258 return 0;
259}
260
261static int xdp_test_run_batch(struct xdp_test_data *xdp, struct bpf_prog *prog,
262 u32 repeat)
263{
264 struct bpf_redirect_info *ri = this_cpu_ptr(&bpf_redirect_info);
265 int err = 0, act, ret, i, nframes = 0, batch_sz;
266 struct xdp_frame **frames = xdp->frames;
267 struct xdp_page_head *head;
268 struct xdp_frame *frm;
269 bool redirect = false;
270 struct xdp_buff *ctx;
271 struct page *page;
272
273 batch_sz = min_t(u32, repeat, xdp->batch_size);
274
275 local_bh_disable();
276 xdp_set_return_frame_no_direct();
277
278 for (i = 0; i < batch_sz; i++) {
279 page = page_pool_dev_alloc_pages(xdp->pp);
280 if (!page) {
281 err = -ENOMEM;
282 goto out;
283 }
284
285 head = phys_to_virt(page_to_phys(page));
286 reset_ctx(head);
287 ctx = &head->ctx;
288 frm = &head->frm;
289 xdp->frame_cnt++;
290
291 act = bpf_prog_run_xdp(prog, ctx);
292
293 /* if program changed pkt bounds we need to update the xdp_frame */
294 if (unlikely(ctx_was_changed(head))) {
295 ret = xdp_update_frame_from_buff(ctx, frm);
296 if (ret) {
297 xdp_return_buff(ctx);
298 continue;
299 }
300 }
301
302 switch (act) {
303 case XDP_TX:
304 /* we can't do a real XDP_TX since we're not in the
305 * driver, so turn it into a REDIRECT back to the same
306 * index
307 */
308 ri->tgt_index = xdp->dev->ifindex;
309 ri->map_id = INT_MAX;
310 ri->map_type = BPF_MAP_TYPE_UNSPEC;
311 fallthrough;
312 case XDP_REDIRECT:
313 redirect = true;
314 ret = xdp_do_redirect_frame(xdp->dev, ctx, frm, prog);
315 if (ret)
316 xdp_return_buff(ctx);
317 break;
318 case XDP_PASS:
319 frames[nframes++] = frm;
320 break;
321 default:
322 bpf_warn_invalid_xdp_action(NULL, prog, act);
323 fallthrough;
324 case XDP_DROP:
325 xdp_return_buff(ctx);
326 break;
327 }
328 }
329
330out:
331 if (redirect)
332 xdp_do_flush();
333 if (nframes) {
334 ret = xdp_recv_frames(frames, nframes, xdp->skbs, xdp->dev);
335 if (ret)
336 err = ret;
337 }
338
339 xdp_clear_return_frame_no_direct();
340 local_bh_enable();
341 return err;
342}
343
344static int bpf_test_run_xdp_live(struct bpf_prog *prog, struct xdp_buff *ctx,
345 u32 repeat, u32 batch_size, u32 *time)
346
347{
348 struct xdp_test_data xdp = { .batch_size = batch_size };
349 struct bpf_test_timer t = { .mode = NO_MIGRATE };
350 int ret;
351
352 if (!repeat)
353 repeat = 1;
354
355 ret = xdp_test_run_setup(&xdp, ctx);
356 if (ret)
357 return ret;
358
359 bpf_test_timer_enter(&t);
360 do {
361 xdp.frame_cnt = 0;
362 ret = xdp_test_run_batch(&xdp, prog, repeat - t.i);
363 if (unlikely(ret < 0))
364 break;
365 } while (bpf_test_timer_continue(&t, xdp.frame_cnt, repeat, &ret, time));
366 bpf_test_timer_leave(&t);
367
368 xdp_test_run_teardown(&xdp);
369 return ret;
370}
371
372static int bpf_test_run(struct bpf_prog *prog, void *ctx, u32 repeat,
373 u32 *retval, u32 *time, bool xdp)
374{
375 struct bpf_prog_array_item item = {.prog = prog};
376 struct bpf_run_ctx *old_ctx;
377 struct bpf_cg_run_ctx run_ctx;
378 struct bpf_test_timer t = { NO_MIGRATE };
379 enum bpf_cgroup_storage_type stype;
380 int ret;
381
382 for_each_cgroup_storage_type(stype) {
383 item.cgroup_storage[stype] = bpf_cgroup_storage_alloc(prog, stype);
384 if (IS_ERR(item.cgroup_storage[stype])) {
385 item.cgroup_storage[stype] = NULL;
386 for_each_cgroup_storage_type(stype)
387 bpf_cgroup_storage_free(item.cgroup_storage[stype]);
388 return -ENOMEM;
389 }
390 }
391
392 if (!repeat)
393 repeat = 1;
394
395 bpf_test_timer_enter(&t);
396 old_ctx = bpf_set_run_ctx(&run_ctx.run_ctx);
397 do {
398 run_ctx.prog_item = &item;
399 if (xdp)
400 *retval = bpf_prog_run_xdp(prog, ctx);
401 else
402 *retval = bpf_prog_run(prog, ctx);
403 } while (bpf_test_timer_continue(&t, 1, repeat, &ret, time));
404 bpf_reset_run_ctx(old_ctx);
405 bpf_test_timer_leave(&t);
406
407 for_each_cgroup_storage_type(stype)
408 bpf_cgroup_storage_free(item.cgroup_storage[stype]);
409
410 return ret;
411}
412
413static int bpf_test_finish(const union bpf_attr *kattr,
414 union bpf_attr __user *uattr, const void *data,
415 struct skb_shared_info *sinfo, u32 size,
416 u32 retval, u32 duration)
417{
418 void __user *data_out = u64_to_user_ptr(kattr->test.data_out);
419 int err = -EFAULT;
420 u32 copy_size = size;
421
422 /* Clamp copy if the user has provided a size hint, but copy the full
423 * buffer if not to retain old behaviour.
424 */
425 if (kattr->test.data_size_out &&
426 copy_size > kattr->test.data_size_out) {
427 copy_size = kattr->test.data_size_out;
428 err = -ENOSPC;
429 }
430
431 if (data_out) {
432 int len = sinfo ? copy_size - sinfo->xdp_frags_size : copy_size;
433
434 if (len < 0) {
435 err = -ENOSPC;
436 goto out;
437 }
438
439 if (copy_to_user(data_out, data, len))
440 goto out;
441
442 if (sinfo) {
443 int i, offset = len;
444 u32 data_len;
445
446 for (i = 0; i < sinfo->nr_frags; i++) {
447 skb_frag_t *frag = &sinfo->frags[i];
448
449 if (offset >= copy_size) {
450 err = -ENOSPC;
451 break;
452 }
453
454 data_len = min_t(u32, copy_size - offset,
455 skb_frag_size(frag));
456
457 if (copy_to_user(data_out + offset,
458 skb_frag_address(frag),
459 data_len))
460 goto out;
461
462 offset += data_len;
463 }
464 }
465 }
466
467 if (copy_to_user(&uattr->test.data_size_out, &size, sizeof(size)))
468 goto out;
469 if (copy_to_user(&uattr->test.retval, &retval, sizeof(retval)))
470 goto out;
471 if (copy_to_user(&uattr->test.duration, &duration, sizeof(duration)))
472 goto out;
473 if (err != -ENOSPC)
474 err = 0;
475out:
476 trace_bpf_test_finish(&err);
477 return err;
478}
479
480/* Integer types of various sizes and pointer combinations cover variety of
481 * architecture dependent calling conventions. 7+ can be supported in the
482 * future.
483 */
484__diag_push();
485__diag_ignore_all("-Wmissing-prototypes",
486 "Global functions as their definitions will be in vmlinux BTF");
487int noinline bpf_fentry_test1(int a)
488{
489 return a + 1;
490}
491EXPORT_SYMBOL_GPL(bpf_fentry_test1);
492
493int noinline bpf_fentry_test2(int a, u64 b)
494{
495 return a + b;
496}
497
498int noinline bpf_fentry_test3(char a, int b, u64 c)
499{
500 return a + b + c;
501}
502
503int noinline bpf_fentry_test4(void *a, char b, int c, u64 d)
504{
505 return (long)a + b + c + d;
506}
507
508int noinline bpf_fentry_test5(u64 a, void *b, short c, int d, u64 e)
509{
510 return a + (long)b + c + d + e;
511}
512
513int noinline bpf_fentry_test6(u64 a, void *b, short c, int d, void *e, u64 f)
514{
515 return a + (long)b + c + d + (long)e + f;
516}
517
518struct bpf_fentry_test_t {
519 struct bpf_fentry_test_t *a;
520};
521
522int noinline bpf_fentry_test7(struct bpf_fentry_test_t *arg)
523{
524 return (long)arg;
525}
526
527int noinline bpf_fentry_test8(struct bpf_fentry_test_t *arg)
528{
529 return (long)arg->a;
530}
531
532int noinline bpf_modify_return_test(int a, int *b)
533{
534 *b += 1;
535 return a + *b;
536}
537
538u64 noinline bpf_kfunc_call_test1(struct sock *sk, u32 a, u64 b, u32 c, u64 d)
539{
540 return a + b + c + d;
541}
542
543int noinline bpf_kfunc_call_test2(struct sock *sk, u32 a, u32 b)
544{
545 return a + b;
546}
547
548struct sock * noinline bpf_kfunc_call_test3(struct sock *sk)
549{
550 return sk;
551}
552
553struct prog_test_member1 {
554 int a;
555};
556
557struct prog_test_member {
558 struct prog_test_member1 m;
559 int c;
560};
561
562struct prog_test_ref_kfunc {
563 int a;
564 int b;
565 struct prog_test_member memb;
566 struct prog_test_ref_kfunc *next;
567 refcount_t cnt;
568};
569
570static struct prog_test_ref_kfunc prog_test_struct = {
571 .a = 42,
572 .b = 108,
573 .next = &prog_test_struct,
574 .cnt = REFCOUNT_INIT(1),
575};
576
577noinline struct prog_test_ref_kfunc *
578bpf_kfunc_call_test_acquire(unsigned long *scalar_ptr)
579{
580 refcount_inc(&prog_test_struct.cnt);
581 return &prog_test_struct;
582}
583
584noinline struct prog_test_member *
585bpf_kfunc_call_memb_acquire(void)
586{
587 WARN_ON_ONCE(1);
588 return NULL;
589}
590
591noinline void bpf_kfunc_call_test_release(struct prog_test_ref_kfunc *p)
592{
593 if (!p)
594 return;
595
596 refcount_dec(&p->cnt);
597}
598
599noinline void bpf_kfunc_call_memb_release(struct prog_test_member *p)
600{
601}
602
603noinline void bpf_kfunc_call_memb1_release(struct prog_test_member1 *p)
604{
605 WARN_ON_ONCE(1);
606}
607
608static int *__bpf_kfunc_call_test_get_mem(struct prog_test_ref_kfunc *p, const int size)
609{
610 if (size > 2 * sizeof(int))
611 return NULL;
612
613 return (int *)p;
614}
615
616noinline int *bpf_kfunc_call_test_get_rdwr_mem(struct prog_test_ref_kfunc *p, const int rdwr_buf_size)
617{
618 return __bpf_kfunc_call_test_get_mem(p, rdwr_buf_size);
619}
620
621noinline int *bpf_kfunc_call_test_get_rdonly_mem(struct prog_test_ref_kfunc *p, const int rdonly_buf_size)
622{
623 return __bpf_kfunc_call_test_get_mem(p, rdonly_buf_size);
624}
625
626/* the next 2 ones can't be really used for testing expect to ensure
627 * that the verifier rejects the call.
628 * Acquire functions must return struct pointers, so these ones are
629 * failing.
630 */
631noinline int *bpf_kfunc_call_test_acq_rdonly_mem(struct prog_test_ref_kfunc *p, const int rdonly_buf_size)
632{
633 return __bpf_kfunc_call_test_get_mem(p, rdonly_buf_size);
634}
635
636noinline void bpf_kfunc_call_int_mem_release(int *p)
637{
638}
639
640noinline struct prog_test_ref_kfunc *
641bpf_kfunc_call_test_kptr_get(struct prog_test_ref_kfunc **pp, int a, int b)
642{
643 struct prog_test_ref_kfunc *p = READ_ONCE(*pp);
644
645 if (!p)
646 return NULL;
647 refcount_inc(&p->cnt);
648 return p;
649}
650
651struct prog_test_pass1 {
652 int x0;
653 struct {
654 int x1;
655 struct {
656 int x2;
657 struct {
658 int x3;
659 };
660 };
661 };
662};
663
664struct prog_test_pass2 {
665 int len;
666 short arr1[4];
667 struct {
668 char arr2[4];
669 unsigned long arr3[8];
670 } x;
671};
672
673struct prog_test_fail1 {
674 void *p;
675 int x;
676};
677
678struct prog_test_fail2 {
679 int x8;
680 struct prog_test_pass1 x;
681};
682
683struct prog_test_fail3 {
684 int len;
685 char arr1[2];
686 char arr2[];
687};
688
689noinline void bpf_kfunc_call_test_pass_ctx(struct __sk_buff *skb)
690{
691}
692
693noinline void bpf_kfunc_call_test_pass1(struct prog_test_pass1 *p)
694{
695}
696
697noinline void bpf_kfunc_call_test_pass2(struct prog_test_pass2 *p)
698{
699}
700
701noinline void bpf_kfunc_call_test_fail1(struct prog_test_fail1 *p)
702{
703}
704
705noinline void bpf_kfunc_call_test_fail2(struct prog_test_fail2 *p)
706{
707}
708
709noinline void bpf_kfunc_call_test_fail3(struct prog_test_fail3 *p)
710{
711}
712
713noinline void bpf_kfunc_call_test_mem_len_pass1(void *mem, int mem__sz)
714{
715}
716
717noinline void bpf_kfunc_call_test_mem_len_fail1(void *mem, int len)
718{
719}
720
721noinline void bpf_kfunc_call_test_mem_len_fail2(u64 *mem, int len)
722{
723}
724
725noinline void bpf_kfunc_call_test_ref(struct prog_test_ref_kfunc *p)
726{
727}
728
729noinline void bpf_kfunc_call_test_destructive(void)
730{
731}
732
733__diag_pop();
734
735BTF_SET8_START(bpf_test_modify_return_ids)
736BTF_ID_FLAGS(func, bpf_modify_return_test)
737BTF_ID_FLAGS(func, bpf_fentry_test1, KF_SLEEPABLE)
738BTF_SET8_END(bpf_test_modify_return_ids)
739
740static const struct btf_kfunc_id_set bpf_test_modify_return_set = {
741 .owner = THIS_MODULE,
742 .set = &bpf_test_modify_return_ids,
743};
744
745BTF_SET8_START(test_sk_check_kfunc_ids)
746BTF_ID_FLAGS(func, bpf_kfunc_call_test1)
747BTF_ID_FLAGS(func, bpf_kfunc_call_test2)
748BTF_ID_FLAGS(func, bpf_kfunc_call_test3)
749BTF_ID_FLAGS(func, bpf_kfunc_call_test_acquire, KF_ACQUIRE | KF_RET_NULL)
750BTF_ID_FLAGS(func, bpf_kfunc_call_memb_acquire, KF_ACQUIRE | KF_RET_NULL)
751BTF_ID_FLAGS(func, bpf_kfunc_call_test_release, KF_RELEASE)
752BTF_ID_FLAGS(func, bpf_kfunc_call_memb_release, KF_RELEASE)
753BTF_ID_FLAGS(func, bpf_kfunc_call_memb1_release, KF_RELEASE)
754BTF_ID_FLAGS(func, bpf_kfunc_call_test_get_rdwr_mem, KF_RET_NULL)
755BTF_ID_FLAGS(func, bpf_kfunc_call_test_get_rdonly_mem, KF_RET_NULL)
756BTF_ID_FLAGS(func, bpf_kfunc_call_test_acq_rdonly_mem, KF_ACQUIRE | KF_RET_NULL)
757BTF_ID_FLAGS(func, bpf_kfunc_call_int_mem_release, KF_RELEASE)
758BTF_ID_FLAGS(func, bpf_kfunc_call_test_kptr_get, KF_ACQUIRE | KF_RET_NULL | KF_KPTR_GET)
759BTF_ID_FLAGS(func, bpf_kfunc_call_test_pass_ctx)
760BTF_ID_FLAGS(func, bpf_kfunc_call_test_pass1)
761BTF_ID_FLAGS(func, bpf_kfunc_call_test_pass2)
762BTF_ID_FLAGS(func, bpf_kfunc_call_test_fail1)
763BTF_ID_FLAGS(func, bpf_kfunc_call_test_fail2)
764BTF_ID_FLAGS(func, bpf_kfunc_call_test_fail3)
765BTF_ID_FLAGS(func, bpf_kfunc_call_test_mem_len_pass1)
766BTF_ID_FLAGS(func, bpf_kfunc_call_test_mem_len_fail1)
767BTF_ID_FLAGS(func, bpf_kfunc_call_test_mem_len_fail2)
768BTF_ID_FLAGS(func, bpf_kfunc_call_test_ref, KF_TRUSTED_ARGS)
769BTF_ID_FLAGS(func, bpf_kfunc_call_test_destructive, KF_DESTRUCTIVE)
770BTF_SET8_END(test_sk_check_kfunc_ids)
771
772static void *bpf_test_init(const union bpf_attr *kattr, u32 user_size,
773 u32 size, u32 headroom, u32 tailroom)
774{
775 void __user *data_in = u64_to_user_ptr(kattr->test.data_in);
776 void *data;
777
778 if (size < ETH_HLEN || size > PAGE_SIZE - headroom - tailroom)
779 return ERR_PTR(-EINVAL);
780
781 if (user_size > size)
782 return ERR_PTR(-EMSGSIZE);
783
784 size = SKB_DATA_ALIGN(size);
785 data = kzalloc(size + headroom + tailroom, GFP_USER);
786 if (!data)
787 return ERR_PTR(-ENOMEM);
788
789 if (copy_from_user(data + headroom, data_in, user_size)) {
790 kfree(data);
791 return ERR_PTR(-EFAULT);
792 }
793
794 return data;
795}
796
797int bpf_prog_test_run_tracing(struct bpf_prog *prog,
798 const union bpf_attr *kattr,
799 union bpf_attr __user *uattr)
800{
801 struct bpf_fentry_test_t arg = {};
802 u16 side_effect = 0, ret = 0;
803 int b = 2, err = -EFAULT;
804 u32 retval = 0;
805
806 if (kattr->test.flags || kattr->test.cpu || kattr->test.batch_size)
807 return -EINVAL;
808
809 switch (prog->expected_attach_type) {
810 case BPF_TRACE_FENTRY:
811 case BPF_TRACE_FEXIT:
812 if (bpf_fentry_test1(1) != 2 ||
813 bpf_fentry_test2(2, 3) != 5 ||
814 bpf_fentry_test3(4, 5, 6) != 15 ||
815 bpf_fentry_test4((void *)7, 8, 9, 10) != 34 ||
816 bpf_fentry_test5(11, (void *)12, 13, 14, 15) != 65 ||
817 bpf_fentry_test6(16, (void *)17, 18, 19, (void *)20, 21) != 111 ||
818 bpf_fentry_test7((struct bpf_fentry_test_t *)0) != 0 ||
819 bpf_fentry_test8(&arg) != 0)
820 goto out;
821 break;
822 case BPF_MODIFY_RETURN:
823 ret = bpf_modify_return_test(1, &b);
824 if (b != 2)
825 side_effect = 1;
826 break;
827 default:
828 goto out;
829 }
830
831 retval = ((u32)side_effect << 16) | ret;
832 if (copy_to_user(&uattr->test.retval, &retval, sizeof(retval)))
833 goto out;
834
835 err = 0;
836out:
837 trace_bpf_test_finish(&err);
838 return err;
839}
840
841struct bpf_raw_tp_test_run_info {
842 struct bpf_prog *prog;
843 void *ctx;
844 u32 retval;
845};
846
847static void
848__bpf_prog_test_run_raw_tp(void *data)
849{
850 struct bpf_raw_tp_test_run_info *info = data;
851
852 rcu_read_lock();
853 info->retval = bpf_prog_run(info->prog, info->ctx);
854 rcu_read_unlock();
855}
856
857int bpf_prog_test_run_raw_tp(struct bpf_prog *prog,
858 const union bpf_attr *kattr,
859 union bpf_attr __user *uattr)
860{
861 void __user *ctx_in = u64_to_user_ptr(kattr->test.ctx_in);
862 __u32 ctx_size_in = kattr->test.ctx_size_in;
863 struct bpf_raw_tp_test_run_info info;
864 int cpu = kattr->test.cpu, err = 0;
865 int current_cpu;
866
867 /* doesn't support data_in/out, ctx_out, duration, or repeat */
868 if (kattr->test.data_in || kattr->test.data_out ||
869 kattr->test.ctx_out || kattr->test.duration ||
870 kattr->test.repeat || kattr->test.batch_size)
871 return -EINVAL;
872
873 if (ctx_size_in < prog->aux->max_ctx_offset ||
874 ctx_size_in > MAX_BPF_FUNC_ARGS * sizeof(u64))
875 return -EINVAL;
876
877 if ((kattr->test.flags & BPF_F_TEST_RUN_ON_CPU) == 0 && cpu != 0)
878 return -EINVAL;
879
880 if (ctx_size_in) {
881 info.ctx = memdup_user(ctx_in, ctx_size_in);
882 if (IS_ERR(info.ctx))
883 return PTR_ERR(info.ctx);
884 } else {
885 info.ctx = NULL;
886 }
887
888 info.prog = prog;
889
890 current_cpu = get_cpu();
891 if ((kattr->test.flags & BPF_F_TEST_RUN_ON_CPU) == 0 ||
892 cpu == current_cpu) {
893 __bpf_prog_test_run_raw_tp(&info);
894 } else if (cpu >= nr_cpu_ids || !cpu_online(cpu)) {
895 /* smp_call_function_single() also checks cpu_online()
896 * after csd_lock(). However, since cpu is from user
897 * space, let's do an extra quick check to filter out
898 * invalid value before smp_call_function_single().
899 */
900 err = -ENXIO;
901 } else {
902 err = smp_call_function_single(cpu, __bpf_prog_test_run_raw_tp,
903 &info, 1);
904 }
905 put_cpu();
906
907 if (!err &&
908 copy_to_user(&uattr->test.retval, &info.retval, sizeof(u32)))
909 err = -EFAULT;
910
911 kfree(info.ctx);
912 return err;
913}
914
915static void *bpf_ctx_init(const union bpf_attr *kattr, u32 max_size)
916{
917 void __user *data_in = u64_to_user_ptr(kattr->test.ctx_in);
918 void __user *data_out = u64_to_user_ptr(kattr->test.ctx_out);
919 u32 size = kattr->test.ctx_size_in;
920 void *data;
921 int err;
922
923 if (!data_in && !data_out)
924 return NULL;
925
926 data = kzalloc(max_size, GFP_USER);
927 if (!data)
928 return ERR_PTR(-ENOMEM);
929
930 if (data_in) {
931 err = bpf_check_uarg_tail_zero(USER_BPFPTR(data_in), max_size, size);
932 if (err) {
933 kfree(data);
934 return ERR_PTR(err);
935 }
936
937 size = min_t(u32, max_size, size);
938 if (copy_from_user(data, data_in, size)) {
939 kfree(data);
940 return ERR_PTR(-EFAULT);
941 }
942 }
943 return data;
944}
945
946static int bpf_ctx_finish(const union bpf_attr *kattr,
947 union bpf_attr __user *uattr, const void *data,
948 u32 size)
949{
950 void __user *data_out = u64_to_user_ptr(kattr->test.ctx_out);
951 int err = -EFAULT;
952 u32 copy_size = size;
953
954 if (!data || !data_out)
955 return 0;
956
957 if (copy_size > kattr->test.ctx_size_out) {
958 copy_size = kattr->test.ctx_size_out;
959 err = -ENOSPC;
960 }
961
962 if (copy_to_user(data_out, data, copy_size))
963 goto out;
964 if (copy_to_user(&uattr->test.ctx_size_out, &size, sizeof(size)))
965 goto out;
966 if (err != -ENOSPC)
967 err = 0;
968out:
969 return err;
970}
971
972/**
973 * range_is_zero - test whether buffer is initialized
974 * @buf: buffer to check
975 * @from: check from this position
976 * @to: check up until (excluding) this position
977 *
978 * This function returns true if the there is a non-zero byte
979 * in the buf in the range [from,to).
980 */
981static inline bool range_is_zero(void *buf, size_t from, size_t to)
982{
983 return !memchr_inv((u8 *)buf + from, 0, to - from);
984}
985
986static int convert___skb_to_skb(struct sk_buff *skb, struct __sk_buff *__skb)
987{
988 struct qdisc_skb_cb *cb = (struct qdisc_skb_cb *)skb->cb;
989
990 if (!__skb)
991 return 0;
992
993 /* make sure the fields we don't use are zeroed */
994 if (!range_is_zero(__skb, 0, offsetof(struct __sk_buff, mark)))
995 return -EINVAL;
996
997 /* mark is allowed */
998
999 if (!range_is_zero(__skb, offsetofend(struct __sk_buff, mark),
1000 offsetof(struct __sk_buff, priority)))
1001 return -EINVAL;
1002
1003 /* priority is allowed */
1004 /* ingress_ifindex is allowed */
1005 /* ifindex is allowed */
1006
1007 if (!range_is_zero(__skb, offsetofend(struct __sk_buff, ifindex),
1008 offsetof(struct __sk_buff, cb)))
1009 return -EINVAL;
1010
1011 /* cb is allowed */
1012
1013 if (!range_is_zero(__skb, offsetofend(struct __sk_buff, cb),
1014 offsetof(struct __sk_buff, tstamp)))
1015 return -EINVAL;
1016
1017 /* tstamp is allowed */
1018 /* wire_len is allowed */
1019 /* gso_segs is allowed */
1020
1021 if (!range_is_zero(__skb, offsetofend(struct __sk_buff, gso_segs),
1022 offsetof(struct __sk_buff, gso_size)))
1023 return -EINVAL;
1024
1025 /* gso_size is allowed */
1026
1027 if (!range_is_zero(__skb, offsetofend(struct __sk_buff, gso_size),
1028 offsetof(struct __sk_buff, hwtstamp)))
1029 return -EINVAL;
1030
1031 /* hwtstamp is allowed */
1032
1033 if (!range_is_zero(__skb, offsetofend(struct __sk_buff, hwtstamp),
1034 sizeof(struct __sk_buff)))
1035 return -EINVAL;
1036
1037 skb->mark = __skb->mark;
1038 skb->priority = __skb->priority;
1039 skb->skb_iif = __skb->ingress_ifindex;
1040 skb->tstamp = __skb->tstamp;
1041 memcpy(&cb->data, __skb->cb, QDISC_CB_PRIV_LEN);
1042
1043 if (__skb->wire_len == 0) {
1044 cb->pkt_len = skb->len;
1045 } else {
1046 if (__skb->wire_len < skb->len ||
1047 __skb->wire_len > GSO_LEGACY_MAX_SIZE)
1048 return -EINVAL;
1049 cb->pkt_len = __skb->wire_len;
1050 }
1051
1052 if (__skb->gso_segs > GSO_MAX_SEGS)
1053 return -EINVAL;
1054 skb_shinfo(skb)->gso_segs = __skb->gso_segs;
1055 skb_shinfo(skb)->gso_size = __skb->gso_size;
1056 skb_shinfo(skb)->hwtstamps.hwtstamp = __skb->hwtstamp;
1057
1058 return 0;
1059}
1060
1061static void convert_skb_to___skb(struct sk_buff *skb, struct __sk_buff *__skb)
1062{
1063 struct qdisc_skb_cb *cb = (struct qdisc_skb_cb *)skb->cb;
1064
1065 if (!__skb)
1066 return;
1067
1068 __skb->mark = skb->mark;
1069 __skb->priority = skb->priority;
1070 __skb->ingress_ifindex = skb->skb_iif;
1071 __skb->ifindex = skb->dev->ifindex;
1072 __skb->tstamp = skb->tstamp;
1073 memcpy(__skb->cb, &cb->data, QDISC_CB_PRIV_LEN);
1074 __skb->wire_len = cb->pkt_len;
1075 __skb->gso_segs = skb_shinfo(skb)->gso_segs;
1076 __skb->hwtstamp = skb_shinfo(skb)->hwtstamps.hwtstamp;
1077}
1078
1079static struct proto bpf_dummy_proto = {
1080 .name = "bpf_dummy",
1081 .owner = THIS_MODULE,
1082 .obj_size = sizeof(struct sock),
1083};
1084
1085int bpf_prog_test_run_skb(struct bpf_prog *prog, const union bpf_attr *kattr,
1086 union bpf_attr __user *uattr)
1087{
1088 bool is_l2 = false, is_direct_pkt_access = false;
1089 struct net *net = current->nsproxy->net_ns;
1090 struct net_device *dev = net->loopback_dev;
1091 u32 size = kattr->test.data_size_in;
1092 u32 repeat = kattr->test.repeat;
1093 struct __sk_buff *ctx = NULL;
1094 u32 retval, duration;
1095 int hh_len = ETH_HLEN;
1096 struct sk_buff *skb;
1097 struct sock *sk;
1098 void *data;
1099 int ret;
1100
1101 if (kattr->test.flags || kattr->test.cpu || kattr->test.batch_size)
1102 return -EINVAL;
1103
1104 data = bpf_test_init(kattr, kattr->test.data_size_in,
1105 size, NET_SKB_PAD + NET_IP_ALIGN,
1106 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)));
1107 if (IS_ERR(data))
1108 return PTR_ERR(data);
1109
1110 ctx = bpf_ctx_init(kattr, sizeof(struct __sk_buff));
1111 if (IS_ERR(ctx)) {
1112 kfree(data);
1113 return PTR_ERR(ctx);
1114 }
1115
1116 switch (prog->type) {
1117 case BPF_PROG_TYPE_SCHED_CLS:
1118 case BPF_PROG_TYPE_SCHED_ACT:
1119 is_l2 = true;
1120 fallthrough;
1121 case BPF_PROG_TYPE_LWT_IN:
1122 case BPF_PROG_TYPE_LWT_OUT:
1123 case BPF_PROG_TYPE_LWT_XMIT:
1124 is_direct_pkt_access = true;
1125 break;
1126 default:
1127 break;
1128 }
1129
1130 sk = sk_alloc(net, AF_UNSPEC, GFP_USER, &bpf_dummy_proto, 1);
1131 if (!sk) {
1132 kfree(data);
1133 kfree(ctx);
1134 return -ENOMEM;
1135 }
1136 sock_init_data(NULL, sk);
1137
1138 skb = slab_build_skb(data);
1139 if (!skb) {
1140 kfree(data);
1141 kfree(ctx);
1142 sk_free(sk);
1143 return -ENOMEM;
1144 }
1145 skb->sk = sk;
1146
1147 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
1148 __skb_put(skb, size);
1149 if (ctx && ctx->ifindex > 1) {
1150 dev = dev_get_by_index(net, ctx->ifindex);
1151 if (!dev) {
1152 ret = -ENODEV;
1153 goto out;
1154 }
1155 }
1156 skb->protocol = eth_type_trans(skb, dev);
1157 skb_reset_network_header(skb);
1158
1159 switch (skb->protocol) {
1160 case htons(ETH_P_IP):
1161 sk->sk_family = AF_INET;
1162 if (sizeof(struct iphdr) <= skb_headlen(skb)) {
1163 sk->sk_rcv_saddr = ip_hdr(skb)->saddr;
1164 sk->sk_daddr = ip_hdr(skb)->daddr;
1165 }
1166 break;
1167#if IS_ENABLED(CONFIG_IPV6)
1168 case htons(ETH_P_IPV6):
1169 sk->sk_family = AF_INET6;
1170 if (sizeof(struct ipv6hdr) <= skb_headlen(skb)) {
1171 sk->sk_v6_rcv_saddr = ipv6_hdr(skb)->saddr;
1172 sk->sk_v6_daddr = ipv6_hdr(skb)->daddr;
1173 }
1174 break;
1175#endif
1176 default:
1177 break;
1178 }
1179
1180 if (is_l2)
1181 __skb_push(skb, hh_len);
1182 if (is_direct_pkt_access)
1183 bpf_compute_data_pointers(skb);
1184 ret = convert___skb_to_skb(skb, ctx);
1185 if (ret)
1186 goto out;
1187 ret = bpf_test_run(prog, skb, repeat, &retval, &duration, false);
1188 if (ret)
1189 goto out;
1190 if (!is_l2) {
1191 if (skb_headroom(skb) < hh_len) {
1192 int nhead = HH_DATA_ALIGN(hh_len - skb_headroom(skb));
1193
1194 if (pskb_expand_head(skb, nhead, 0, GFP_USER)) {
1195 ret = -ENOMEM;
1196 goto out;
1197 }
1198 }
1199 memset(__skb_push(skb, hh_len), 0, hh_len);
1200 }
1201 convert_skb_to___skb(skb, ctx);
1202
1203 size = skb->len;
1204 /* bpf program can never convert linear skb to non-linear */
1205 if (WARN_ON_ONCE(skb_is_nonlinear(skb)))
1206 size = skb_headlen(skb);
1207 ret = bpf_test_finish(kattr, uattr, skb->data, NULL, size, retval,
1208 duration);
1209 if (!ret)
1210 ret = bpf_ctx_finish(kattr, uattr, ctx,
1211 sizeof(struct __sk_buff));
1212out:
1213 if (dev && dev != net->loopback_dev)
1214 dev_put(dev);
1215 kfree_skb(skb);
1216 sk_free(sk);
1217 kfree(ctx);
1218 return ret;
1219}
1220
1221static int xdp_convert_md_to_buff(struct xdp_md *xdp_md, struct xdp_buff *xdp)
1222{
1223 unsigned int ingress_ifindex, rx_queue_index;
1224 struct netdev_rx_queue *rxqueue;
1225 struct net_device *device;
1226
1227 if (!xdp_md)
1228 return 0;
1229
1230 if (xdp_md->egress_ifindex != 0)
1231 return -EINVAL;
1232
1233 ingress_ifindex = xdp_md->ingress_ifindex;
1234 rx_queue_index = xdp_md->rx_queue_index;
1235
1236 if (!ingress_ifindex && rx_queue_index)
1237 return -EINVAL;
1238
1239 if (ingress_ifindex) {
1240 device = dev_get_by_index(current->nsproxy->net_ns,
1241 ingress_ifindex);
1242 if (!device)
1243 return -ENODEV;
1244
1245 if (rx_queue_index >= device->real_num_rx_queues)
1246 goto free_dev;
1247
1248 rxqueue = __netif_get_rx_queue(device, rx_queue_index);
1249
1250 if (!xdp_rxq_info_is_reg(&rxqueue->xdp_rxq))
1251 goto free_dev;
1252
1253 xdp->rxq = &rxqueue->xdp_rxq;
1254 /* The device is now tracked in the xdp->rxq for later
1255 * dev_put()
1256 */
1257 }
1258
1259 xdp->data = xdp->data_meta + xdp_md->data;
1260 return 0;
1261
1262free_dev:
1263 dev_put(device);
1264 return -EINVAL;
1265}
1266
1267static void xdp_convert_buff_to_md(struct xdp_buff *xdp, struct xdp_md *xdp_md)
1268{
1269 if (!xdp_md)
1270 return;
1271
1272 xdp_md->data = xdp->data - xdp->data_meta;
1273 xdp_md->data_end = xdp->data_end - xdp->data_meta;
1274
1275 if (xdp_md->ingress_ifindex)
1276 dev_put(xdp->rxq->dev);
1277}
1278
1279int bpf_prog_test_run_xdp(struct bpf_prog *prog, const union bpf_attr *kattr,
1280 union bpf_attr __user *uattr)
1281{
1282 bool do_live = (kattr->test.flags & BPF_F_TEST_XDP_LIVE_FRAMES);
1283 u32 tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1284 u32 batch_size = kattr->test.batch_size;
1285 u32 retval = 0, duration, max_data_sz;
1286 u32 size = kattr->test.data_size_in;
1287 u32 headroom = XDP_PACKET_HEADROOM;
1288 u32 repeat = kattr->test.repeat;
1289 struct netdev_rx_queue *rxqueue;
1290 struct skb_shared_info *sinfo;
1291 struct xdp_buff xdp = {};
1292 int i, ret = -EINVAL;
1293 struct xdp_md *ctx;
1294 void *data;
1295
1296 if (prog->expected_attach_type == BPF_XDP_DEVMAP ||
1297 prog->expected_attach_type == BPF_XDP_CPUMAP)
1298 return -EINVAL;
1299
1300 if (kattr->test.flags & ~BPF_F_TEST_XDP_LIVE_FRAMES)
1301 return -EINVAL;
1302
1303 if (do_live) {
1304 if (!batch_size)
1305 batch_size = NAPI_POLL_WEIGHT;
1306 else if (batch_size > TEST_XDP_MAX_BATCH)
1307 return -E2BIG;
1308
1309 headroom += sizeof(struct xdp_page_head);
1310 } else if (batch_size) {
1311 return -EINVAL;
1312 }
1313
1314 ctx = bpf_ctx_init(kattr, sizeof(struct xdp_md));
1315 if (IS_ERR(ctx))
1316 return PTR_ERR(ctx);
1317
1318 if (ctx) {
1319 /* There can't be user provided data before the meta data */
1320 if (ctx->data_meta || ctx->data_end != size ||
1321 ctx->data > ctx->data_end ||
1322 unlikely(xdp_metalen_invalid(ctx->data)) ||
1323 (do_live && (kattr->test.data_out || kattr->test.ctx_out)))
1324 goto free_ctx;
1325 /* Meta data is allocated from the headroom */
1326 headroom -= ctx->data;
1327 }
1328
1329 max_data_sz = 4096 - headroom - tailroom;
1330 if (size > max_data_sz) {
1331 /* disallow live data mode for jumbo frames */
1332 if (do_live)
1333 goto free_ctx;
1334 size = max_data_sz;
1335 }
1336
1337 data = bpf_test_init(kattr, size, max_data_sz, headroom, tailroom);
1338 if (IS_ERR(data)) {
1339 ret = PTR_ERR(data);
1340 goto free_ctx;
1341 }
1342
1343 rxqueue = __netif_get_rx_queue(current->nsproxy->net_ns->loopback_dev, 0);
1344 rxqueue->xdp_rxq.frag_size = headroom + max_data_sz + tailroom;
1345 xdp_init_buff(&xdp, rxqueue->xdp_rxq.frag_size, &rxqueue->xdp_rxq);
1346 xdp_prepare_buff(&xdp, data, headroom, size, true);
1347 sinfo = xdp_get_shared_info_from_buff(&xdp);
1348
1349 ret = xdp_convert_md_to_buff(ctx, &xdp);
1350 if (ret)
1351 goto free_data;
1352
1353 if (unlikely(kattr->test.data_size_in > size)) {
1354 void __user *data_in = u64_to_user_ptr(kattr->test.data_in);
1355
1356 while (size < kattr->test.data_size_in) {
1357 struct page *page;
1358 skb_frag_t *frag;
1359 u32 data_len;
1360
1361 if (sinfo->nr_frags == MAX_SKB_FRAGS) {
1362 ret = -ENOMEM;
1363 goto out;
1364 }
1365
1366 page = alloc_page(GFP_KERNEL);
1367 if (!page) {
1368 ret = -ENOMEM;
1369 goto out;
1370 }
1371
1372 frag = &sinfo->frags[sinfo->nr_frags++];
1373 __skb_frag_set_page(frag, page);
1374
1375 data_len = min_t(u32, kattr->test.data_size_in - size,
1376 PAGE_SIZE);
1377 skb_frag_size_set(frag, data_len);
1378
1379 if (copy_from_user(page_address(page), data_in + size,
1380 data_len)) {
1381 ret = -EFAULT;
1382 goto out;
1383 }
1384 sinfo->xdp_frags_size += data_len;
1385 size += data_len;
1386 }
1387 xdp_buff_set_frags_flag(&xdp);
1388 }
1389
1390 if (repeat > 1)
1391 bpf_prog_change_xdp(NULL, prog);
1392
1393 if (do_live)
1394 ret = bpf_test_run_xdp_live(prog, &xdp, repeat, batch_size, &duration);
1395 else
1396 ret = bpf_test_run(prog, &xdp, repeat, &retval, &duration, true);
1397 /* We convert the xdp_buff back to an xdp_md before checking the return
1398 * code so the reference count of any held netdevice will be decremented
1399 * even if the test run failed.
1400 */
1401 xdp_convert_buff_to_md(&xdp, ctx);
1402 if (ret)
1403 goto out;
1404
1405 size = xdp.data_end - xdp.data_meta + sinfo->xdp_frags_size;
1406 ret = bpf_test_finish(kattr, uattr, xdp.data_meta, sinfo, size,
1407 retval, duration);
1408 if (!ret)
1409 ret = bpf_ctx_finish(kattr, uattr, ctx,
1410 sizeof(struct xdp_md));
1411
1412out:
1413 if (repeat > 1)
1414 bpf_prog_change_xdp(prog, NULL);
1415free_data:
1416 for (i = 0; i < sinfo->nr_frags; i++)
1417 __free_page(skb_frag_page(&sinfo->frags[i]));
1418 kfree(data);
1419free_ctx:
1420 kfree(ctx);
1421 return ret;
1422}
1423
1424static int verify_user_bpf_flow_keys(struct bpf_flow_keys *ctx)
1425{
1426 /* make sure the fields we don't use are zeroed */
1427 if (!range_is_zero(ctx, 0, offsetof(struct bpf_flow_keys, flags)))
1428 return -EINVAL;
1429
1430 /* flags is allowed */
1431
1432 if (!range_is_zero(ctx, offsetofend(struct bpf_flow_keys, flags),
1433 sizeof(struct bpf_flow_keys)))
1434 return -EINVAL;
1435
1436 return 0;
1437}
1438
1439int bpf_prog_test_run_flow_dissector(struct bpf_prog *prog,
1440 const union bpf_attr *kattr,
1441 union bpf_attr __user *uattr)
1442{
1443 struct bpf_test_timer t = { NO_PREEMPT };
1444 u32 size = kattr->test.data_size_in;
1445 struct bpf_flow_dissector ctx = {};
1446 u32 repeat = kattr->test.repeat;
1447 struct bpf_flow_keys *user_ctx;
1448 struct bpf_flow_keys flow_keys;
1449 const struct ethhdr *eth;
1450 unsigned int flags = 0;
1451 u32 retval, duration;
1452 void *data;
1453 int ret;
1454
1455 if (kattr->test.flags || kattr->test.cpu || kattr->test.batch_size)
1456 return -EINVAL;
1457
1458 if (size < ETH_HLEN)
1459 return -EINVAL;
1460
1461 data = bpf_test_init(kattr, kattr->test.data_size_in, size, 0, 0);
1462 if (IS_ERR(data))
1463 return PTR_ERR(data);
1464
1465 eth = (struct ethhdr *)data;
1466
1467 if (!repeat)
1468 repeat = 1;
1469
1470 user_ctx = bpf_ctx_init(kattr, sizeof(struct bpf_flow_keys));
1471 if (IS_ERR(user_ctx)) {
1472 kfree(data);
1473 return PTR_ERR(user_ctx);
1474 }
1475 if (user_ctx) {
1476 ret = verify_user_bpf_flow_keys(user_ctx);
1477 if (ret)
1478 goto out;
1479 flags = user_ctx->flags;
1480 }
1481
1482 ctx.flow_keys = &flow_keys;
1483 ctx.data = data;
1484 ctx.data_end = (__u8 *)data + size;
1485
1486 bpf_test_timer_enter(&t);
1487 do {
1488 retval = bpf_flow_dissect(prog, &ctx, eth->h_proto, ETH_HLEN,
1489 size, flags);
1490 } while (bpf_test_timer_continue(&t, 1, repeat, &ret, &duration));
1491 bpf_test_timer_leave(&t);
1492
1493 if (ret < 0)
1494 goto out;
1495
1496 ret = bpf_test_finish(kattr, uattr, &flow_keys, NULL,
1497 sizeof(flow_keys), retval, duration);
1498 if (!ret)
1499 ret = bpf_ctx_finish(kattr, uattr, user_ctx,
1500 sizeof(struct bpf_flow_keys));
1501
1502out:
1503 kfree(user_ctx);
1504 kfree(data);
1505 return ret;
1506}
1507
1508int bpf_prog_test_run_sk_lookup(struct bpf_prog *prog, const union bpf_attr *kattr,
1509 union bpf_attr __user *uattr)
1510{
1511 struct bpf_test_timer t = { NO_PREEMPT };
1512 struct bpf_prog_array *progs = NULL;
1513 struct bpf_sk_lookup_kern ctx = {};
1514 u32 repeat = kattr->test.repeat;
1515 struct bpf_sk_lookup *user_ctx;
1516 u32 retval, duration;
1517 int ret = -EINVAL;
1518
1519 if (kattr->test.flags || kattr->test.cpu || kattr->test.batch_size)
1520 return -EINVAL;
1521
1522 if (kattr->test.data_in || kattr->test.data_size_in || kattr->test.data_out ||
1523 kattr->test.data_size_out)
1524 return -EINVAL;
1525
1526 if (!repeat)
1527 repeat = 1;
1528
1529 user_ctx = bpf_ctx_init(kattr, sizeof(*user_ctx));
1530 if (IS_ERR(user_ctx))
1531 return PTR_ERR(user_ctx);
1532
1533 if (!user_ctx)
1534 return -EINVAL;
1535
1536 if (user_ctx->sk)
1537 goto out;
1538
1539 if (!range_is_zero(user_ctx, offsetofend(typeof(*user_ctx), local_port), sizeof(*user_ctx)))
1540 goto out;
1541
1542 if (user_ctx->local_port > U16_MAX) {
1543 ret = -ERANGE;
1544 goto out;
1545 }
1546
1547 ctx.family = (u16)user_ctx->family;
1548 ctx.protocol = (u16)user_ctx->protocol;
1549 ctx.dport = (u16)user_ctx->local_port;
1550 ctx.sport = user_ctx->remote_port;
1551
1552 switch (ctx.family) {
1553 case AF_INET:
1554 ctx.v4.daddr = (__force __be32)user_ctx->local_ip4;
1555 ctx.v4.saddr = (__force __be32)user_ctx->remote_ip4;
1556 break;
1557
1558#if IS_ENABLED(CONFIG_IPV6)
1559 case AF_INET6:
1560 ctx.v6.daddr = (struct in6_addr *)user_ctx->local_ip6;
1561 ctx.v6.saddr = (struct in6_addr *)user_ctx->remote_ip6;
1562 break;
1563#endif
1564
1565 default:
1566 ret = -EAFNOSUPPORT;
1567 goto out;
1568 }
1569
1570 progs = bpf_prog_array_alloc(1, GFP_KERNEL);
1571 if (!progs) {
1572 ret = -ENOMEM;
1573 goto out;
1574 }
1575
1576 progs->items[0].prog = prog;
1577
1578 bpf_test_timer_enter(&t);
1579 do {
1580 ctx.selected_sk = NULL;
1581 retval = BPF_PROG_SK_LOOKUP_RUN_ARRAY(progs, ctx, bpf_prog_run);
1582 } while (bpf_test_timer_continue(&t, 1, repeat, &ret, &duration));
1583 bpf_test_timer_leave(&t);
1584
1585 if (ret < 0)
1586 goto out;
1587
1588 user_ctx->cookie = 0;
1589 if (ctx.selected_sk) {
1590 if (ctx.selected_sk->sk_reuseport && !ctx.no_reuseport) {
1591 ret = -EOPNOTSUPP;
1592 goto out;
1593 }
1594
1595 user_ctx->cookie = sock_gen_cookie(ctx.selected_sk);
1596 }
1597
1598 ret = bpf_test_finish(kattr, uattr, NULL, NULL, 0, retval, duration);
1599 if (!ret)
1600 ret = bpf_ctx_finish(kattr, uattr, user_ctx, sizeof(*user_ctx));
1601
1602out:
1603 bpf_prog_array_free(progs);
1604 kfree(user_ctx);
1605 return ret;
1606}
1607
1608int bpf_prog_test_run_syscall(struct bpf_prog *prog,
1609 const union bpf_attr *kattr,
1610 union bpf_attr __user *uattr)
1611{
1612 void __user *ctx_in = u64_to_user_ptr(kattr->test.ctx_in);
1613 __u32 ctx_size_in = kattr->test.ctx_size_in;
1614 void *ctx = NULL;
1615 u32 retval;
1616 int err = 0;
1617
1618 /* doesn't support data_in/out, ctx_out, duration, or repeat or flags */
1619 if (kattr->test.data_in || kattr->test.data_out ||
1620 kattr->test.ctx_out || kattr->test.duration ||
1621 kattr->test.repeat || kattr->test.flags ||
1622 kattr->test.batch_size)
1623 return -EINVAL;
1624
1625 if (ctx_size_in < prog->aux->max_ctx_offset ||
1626 ctx_size_in > U16_MAX)
1627 return -EINVAL;
1628
1629 if (ctx_size_in) {
1630 ctx = memdup_user(ctx_in, ctx_size_in);
1631 if (IS_ERR(ctx))
1632 return PTR_ERR(ctx);
1633 }
1634
1635 rcu_read_lock_trace();
1636 retval = bpf_prog_run_pin_on_cpu(prog, ctx);
1637 rcu_read_unlock_trace();
1638
1639 if (copy_to_user(&uattr->test.retval, &retval, sizeof(u32))) {
1640 err = -EFAULT;
1641 goto out;
1642 }
1643 if (ctx_size_in)
1644 if (copy_to_user(ctx_in, ctx, ctx_size_in))
1645 err = -EFAULT;
1646out:
1647 kfree(ctx);
1648 return err;
1649}
1650
1651static const struct btf_kfunc_id_set bpf_prog_test_kfunc_set = {
1652 .owner = THIS_MODULE,
1653 .set = &test_sk_check_kfunc_ids,
1654};
1655
1656BTF_ID_LIST(bpf_prog_test_dtor_kfunc_ids)
1657BTF_ID(struct, prog_test_ref_kfunc)
1658BTF_ID(func, bpf_kfunc_call_test_release)
1659BTF_ID(struct, prog_test_member)
1660BTF_ID(func, bpf_kfunc_call_memb_release)
1661
1662static int __init bpf_prog_test_run_init(void)
1663{
1664 const struct btf_id_dtor_kfunc bpf_prog_test_dtor_kfunc[] = {
1665 {
1666 .btf_id = bpf_prog_test_dtor_kfunc_ids[0],
1667 .kfunc_btf_id = bpf_prog_test_dtor_kfunc_ids[1]
1668 },
1669 {
1670 .btf_id = bpf_prog_test_dtor_kfunc_ids[2],
1671 .kfunc_btf_id = bpf_prog_test_dtor_kfunc_ids[3],
1672 },
1673 };
1674 int ret;
1675
1676 ret = register_btf_fmodret_id_set(&bpf_test_modify_return_set);
1677 ret = ret ?: register_btf_kfunc_id_set(BPF_PROG_TYPE_SCHED_CLS, &bpf_prog_test_kfunc_set);
1678 ret = ret ?: register_btf_kfunc_id_set(BPF_PROG_TYPE_TRACING, &bpf_prog_test_kfunc_set);
1679 ret = ret ?: register_btf_kfunc_id_set(BPF_PROG_TYPE_SYSCALL, &bpf_prog_test_kfunc_set);
1680 return ret ?: register_btf_id_dtor_kfuncs(bpf_prog_test_dtor_kfunc,
1681 ARRAY_SIZE(bpf_prog_test_dtor_kfunc),
1682 THIS_MODULE);
1683}
1684late_initcall(bpf_prog_test_run_init);
1// SPDX-License-Identifier: GPL-2.0-only
2/* Copyright (c) 2017 Facebook
3 */
4#include <linux/bpf.h>
5#include <linux/btf.h>
6#include <linux/btf_ids.h>
7#include <linux/slab.h>
8#include <linux/init.h>
9#include <linux/vmalloc.h>
10#include <linux/etherdevice.h>
11#include <linux/filter.h>
12#include <linux/rcupdate_trace.h>
13#include <linux/sched/signal.h>
14#include <net/bpf_sk_storage.h>
15#include <net/hotdata.h>
16#include <net/sock.h>
17#include <net/tcp.h>
18#include <net/net_namespace.h>
19#include <net/page_pool/helpers.h>
20#include <linux/error-injection.h>
21#include <linux/smp.h>
22#include <linux/sock_diag.h>
23#include <linux/netfilter.h>
24#include <net/netdev_rx_queue.h>
25#include <net/xdp.h>
26#include <net/netfilter/nf_bpf_link.h>
27
28#define CREATE_TRACE_POINTS
29#include <trace/events/bpf_test_run.h>
30
31struct bpf_test_timer {
32 enum { NO_PREEMPT, NO_MIGRATE } mode;
33 u32 i;
34 u64 time_start, time_spent;
35};
36
37static void bpf_test_timer_enter(struct bpf_test_timer *t)
38 __acquires(rcu)
39{
40 rcu_read_lock();
41 if (t->mode == NO_PREEMPT)
42 preempt_disable();
43 else
44 migrate_disable();
45
46 t->time_start = ktime_get_ns();
47}
48
49static void bpf_test_timer_leave(struct bpf_test_timer *t)
50 __releases(rcu)
51{
52 t->time_start = 0;
53
54 if (t->mode == NO_PREEMPT)
55 preempt_enable();
56 else
57 migrate_enable();
58 rcu_read_unlock();
59}
60
61static bool bpf_test_timer_continue(struct bpf_test_timer *t, int iterations,
62 u32 repeat, int *err, u32 *duration)
63 __must_hold(rcu)
64{
65 t->i += iterations;
66 if (t->i >= repeat) {
67 /* We're done. */
68 t->time_spent += ktime_get_ns() - t->time_start;
69 do_div(t->time_spent, t->i);
70 *duration = t->time_spent > U32_MAX ? U32_MAX : (u32)t->time_spent;
71 *err = 0;
72 goto reset;
73 }
74
75 if (signal_pending(current)) {
76 /* During iteration: we've been cancelled, abort. */
77 *err = -EINTR;
78 goto reset;
79 }
80
81 if (need_resched()) {
82 /* During iteration: we need to reschedule between runs. */
83 t->time_spent += ktime_get_ns() - t->time_start;
84 bpf_test_timer_leave(t);
85 cond_resched();
86 bpf_test_timer_enter(t);
87 }
88
89 /* Do another round. */
90 return true;
91
92reset:
93 t->i = 0;
94 return false;
95}
96
97/* We put this struct at the head of each page with a context and frame
98 * initialised when the page is allocated, so we don't have to do this on each
99 * repetition of the test run.
100 */
101struct xdp_page_head {
102 struct xdp_buff orig_ctx;
103 struct xdp_buff ctx;
104 union {
105 /* ::data_hard_start starts here */
106 DECLARE_FLEX_ARRAY(struct xdp_frame, frame);
107 DECLARE_FLEX_ARRAY(u8, data);
108 };
109};
110
111struct xdp_test_data {
112 struct xdp_buff *orig_ctx;
113 struct xdp_rxq_info rxq;
114 struct net_device *dev;
115 struct page_pool *pp;
116 struct xdp_frame **frames;
117 struct sk_buff **skbs;
118 struct xdp_mem_info mem;
119 u32 batch_size;
120 u32 frame_cnt;
121};
122
123/* tools/testing/selftests/bpf/prog_tests/xdp_do_redirect.c:%MAX_PKT_SIZE
124 * must be updated accordingly this gets changed, otherwise BPF selftests
125 * will fail.
126 */
127#define TEST_XDP_FRAME_SIZE (PAGE_SIZE - sizeof(struct xdp_page_head))
128#define TEST_XDP_MAX_BATCH 256
129
130static void xdp_test_run_init_page(netmem_ref netmem, void *arg)
131{
132 struct xdp_page_head *head =
133 phys_to_virt(page_to_phys(netmem_to_page(netmem)));
134 struct xdp_buff *new_ctx, *orig_ctx;
135 u32 headroom = XDP_PACKET_HEADROOM;
136 struct xdp_test_data *xdp = arg;
137 size_t frm_len, meta_len;
138 struct xdp_frame *frm;
139 void *data;
140
141 orig_ctx = xdp->orig_ctx;
142 frm_len = orig_ctx->data_end - orig_ctx->data_meta;
143 meta_len = orig_ctx->data - orig_ctx->data_meta;
144 headroom -= meta_len;
145
146 new_ctx = &head->ctx;
147 frm = head->frame;
148 data = head->data;
149 memcpy(data + headroom, orig_ctx->data_meta, frm_len);
150
151 xdp_init_buff(new_ctx, TEST_XDP_FRAME_SIZE, &xdp->rxq);
152 xdp_prepare_buff(new_ctx, data, headroom, frm_len, true);
153 new_ctx->data = new_ctx->data_meta + meta_len;
154
155 xdp_update_frame_from_buff(new_ctx, frm);
156 frm->mem = new_ctx->rxq->mem;
157
158 memcpy(&head->orig_ctx, new_ctx, sizeof(head->orig_ctx));
159}
160
161static int xdp_test_run_setup(struct xdp_test_data *xdp, struct xdp_buff *orig_ctx)
162{
163 struct page_pool *pp;
164 int err = -ENOMEM;
165 struct page_pool_params pp_params = {
166 .order = 0,
167 .flags = 0,
168 .pool_size = xdp->batch_size,
169 .nid = NUMA_NO_NODE,
170 .init_callback = xdp_test_run_init_page,
171 .init_arg = xdp,
172 };
173
174 xdp->frames = kvmalloc_array(xdp->batch_size, sizeof(void *), GFP_KERNEL);
175 if (!xdp->frames)
176 return -ENOMEM;
177
178 xdp->skbs = kvmalloc_array(xdp->batch_size, sizeof(void *), GFP_KERNEL);
179 if (!xdp->skbs)
180 goto err_skbs;
181
182 pp = page_pool_create(&pp_params);
183 if (IS_ERR(pp)) {
184 err = PTR_ERR(pp);
185 goto err_pp;
186 }
187
188 /* will copy 'mem.id' into pp->xdp_mem_id */
189 err = xdp_reg_mem_model(&xdp->mem, MEM_TYPE_PAGE_POOL, pp);
190 if (err)
191 goto err_mmodel;
192
193 xdp->pp = pp;
194
195 /* We create a 'fake' RXQ referencing the original dev, but with an
196 * xdp_mem_info pointing to our page_pool
197 */
198 xdp_rxq_info_reg(&xdp->rxq, orig_ctx->rxq->dev, 0, 0);
199 xdp->rxq.mem.type = MEM_TYPE_PAGE_POOL;
200 xdp->rxq.mem.id = pp->xdp_mem_id;
201 xdp->dev = orig_ctx->rxq->dev;
202 xdp->orig_ctx = orig_ctx;
203
204 return 0;
205
206err_mmodel:
207 page_pool_destroy(pp);
208err_pp:
209 kvfree(xdp->skbs);
210err_skbs:
211 kvfree(xdp->frames);
212 return err;
213}
214
215static void xdp_test_run_teardown(struct xdp_test_data *xdp)
216{
217 xdp_unreg_mem_model(&xdp->mem);
218 page_pool_destroy(xdp->pp);
219 kfree(xdp->frames);
220 kfree(xdp->skbs);
221}
222
223static bool frame_was_changed(const struct xdp_page_head *head)
224{
225 /* xdp_scrub_frame() zeroes the data pointer, flags is the last field,
226 * i.e. has the highest chances to be overwritten. If those two are
227 * untouched, it's most likely safe to skip the context reset.
228 */
229 return head->frame->data != head->orig_ctx.data ||
230 head->frame->flags != head->orig_ctx.flags;
231}
232
233static bool ctx_was_changed(struct xdp_page_head *head)
234{
235 return head->orig_ctx.data != head->ctx.data ||
236 head->orig_ctx.data_meta != head->ctx.data_meta ||
237 head->orig_ctx.data_end != head->ctx.data_end;
238}
239
240static void reset_ctx(struct xdp_page_head *head)
241{
242 if (likely(!frame_was_changed(head) && !ctx_was_changed(head)))
243 return;
244
245 head->ctx.data = head->orig_ctx.data;
246 head->ctx.data_meta = head->orig_ctx.data_meta;
247 head->ctx.data_end = head->orig_ctx.data_end;
248 xdp_update_frame_from_buff(&head->ctx, head->frame);
249 head->frame->mem = head->orig_ctx.rxq->mem;
250}
251
252static int xdp_recv_frames(struct xdp_frame **frames, int nframes,
253 struct sk_buff **skbs,
254 struct net_device *dev)
255{
256 gfp_t gfp = __GFP_ZERO | GFP_ATOMIC;
257 int i, n;
258 LIST_HEAD(list);
259
260 n = kmem_cache_alloc_bulk(net_hotdata.skbuff_cache, gfp, nframes,
261 (void **)skbs);
262 if (unlikely(n == 0)) {
263 for (i = 0; i < nframes; i++)
264 xdp_return_frame(frames[i]);
265 return -ENOMEM;
266 }
267
268 for (i = 0; i < nframes; i++) {
269 struct xdp_frame *xdpf = frames[i];
270 struct sk_buff *skb = skbs[i];
271
272 skb = __xdp_build_skb_from_frame(xdpf, skb, dev);
273 if (!skb) {
274 xdp_return_frame(xdpf);
275 continue;
276 }
277
278 list_add_tail(&skb->list, &list);
279 }
280 netif_receive_skb_list(&list);
281
282 return 0;
283}
284
285static int xdp_test_run_batch(struct xdp_test_data *xdp, struct bpf_prog *prog,
286 u32 repeat)
287{
288 struct bpf_net_context __bpf_net_ctx, *bpf_net_ctx;
289 int err = 0, act, ret, i, nframes = 0, batch_sz;
290 struct xdp_frame **frames = xdp->frames;
291 struct bpf_redirect_info *ri;
292 struct xdp_page_head *head;
293 struct xdp_frame *frm;
294 bool redirect = false;
295 struct xdp_buff *ctx;
296 struct page *page;
297
298 batch_sz = min_t(u32, repeat, xdp->batch_size);
299
300 local_bh_disable();
301 bpf_net_ctx = bpf_net_ctx_set(&__bpf_net_ctx);
302 ri = bpf_net_ctx_get_ri();
303 xdp_set_return_frame_no_direct();
304
305 for (i = 0; i < batch_sz; i++) {
306 page = page_pool_dev_alloc_pages(xdp->pp);
307 if (!page) {
308 err = -ENOMEM;
309 goto out;
310 }
311
312 head = phys_to_virt(page_to_phys(page));
313 reset_ctx(head);
314 ctx = &head->ctx;
315 frm = head->frame;
316 xdp->frame_cnt++;
317
318 act = bpf_prog_run_xdp(prog, ctx);
319
320 /* if program changed pkt bounds we need to update the xdp_frame */
321 if (unlikely(ctx_was_changed(head))) {
322 ret = xdp_update_frame_from_buff(ctx, frm);
323 if (ret) {
324 xdp_return_buff(ctx);
325 continue;
326 }
327 }
328
329 switch (act) {
330 case XDP_TX:
331 /* we can't do a real XDP_TX since we're not in the
332 * driver, so turn it into a REDIRECT back to the same
333 * index
334 */
335 ri->tgt_index = xdp->dev->ifindex;
336 ri->map_id = INT_MAX;
337 ri->map_type = BPF_MAP_TYPE_UNSPEC;
338 fallthrough;
339 case XDP_REDIRECT:
340 redirect = true;
341 ret = xdp_do_redirect_frame(xdp->dev, ctx, frm, prog);
342 if (ret)
343 xdp_return_buff(ctx);
344 break;
345 case XDP_PASS:
346 frames[nframes++] = frm;
347 break;
348 default:
349 bpf_warn_invalid_xdp_action(NULL, prog, act);
350 fallthrough;
351 case XDP_DROP:
352 xdp_return_buff(ctx);
353 break;
354 }
355 }
356
357out:
358 if (redirect)
359 xdp_do_flush();
360 if (nframes) {
361 ret = xdp_recv_frames(frames, nframes, xdp->skbs, xdp->dev);
362 if (ret)
363 err = ret;
364 }
365
366 xdp_clear_return_frame_no_direct();
367 bpf_net_ctx_clear(bpf_net_ctx);
368 local_bh_enable();
369 return err;
370}
371
372static int bpf_test_run_xdp_live(struct bpf_prog *prog, struct xdp_buff *ctx,
373 u32 repeat, u32 batch_size, u32 *time)
374
375{
376 struct xdp_test_data xdp = { .batch_size = batch_size };
377 struct bpf_test_timer t = { .mode = NO_MIGRATE };
378 int ret;
379
380 if (!repeat)
381 repeat = 1;
382
383 ret = xdp_test_run_setup(&xdp, ctx);
384 if (ret)
385 return ret;
386
387 bpf_test_timer_enter(&t);
388 do {
389 xdp.frame_cnt = 0;
390 ret = xdp_test_run_batch(&xdp, prog, repeat - t.i);
391 if (unlikely(ret < 0))
392 break;
393 } while (bpf_test_timer_continue(&t, xdp.frame_cnt, repeat, &ret, time));
394 bpf_test_timer_leave(&t);
395
396 xdp_test_run_teardown(&xdp);
397 return ret;
398}
399
400static int bpf_test_run(struct bpf_prog *prog, void *ctx, u32 repeat,
401 u32 *retval, u32 *time, bool xdp)
402{
403 struct bpf_net_context __bpf_net_ctx, *bpf_net_ctx;
404 struct bpf_prog_array_item item = {.prog = prog};
405 struct bpf_run_ctx *old_ctx;
406 struct bpf_cg_run_ctx run_ctx;
407 struct bpf_test_timer t = { NO_MIGRATE };
408 enum bpf_cgroup_storage_type stype;
409 int ret;
410
411 for_each_cgroup_storage_type(stype) {
412 item.cgroup_storage[stype] = bpf_cgroup_storage_alloc(prog, stype);
413 if (IS_ERR(item.cgroup_storage[stype])) {
414 item.cgroup_storage[stype] = NULL;
415 for_each_cgroup_storage_type(stype)
416 bpf_cgroup_storage_free(item.cgroup_storage[stype]);
417 return -ENOMEM;
418 }
419 }
420
421 if (!repeat)
422 repeat = 1;
423
424 bpf_test_timer_enter(&t);
425 old_ctx = bpf_set_run_ctx(&run_ctx.run_ctx);
426 do {
427 run_ctx.prog_item = &item;
428 local_bh_disable();
429 bpf_net_ctx = bpf_net_ctx_set(&__bpf_net_ctx);
430
431 if (xdp)
432 *retval = bpf_prog_run_xdp(prog, ctx);
433 else
434 *retval = bpf_prog_run(prog, ctx);
435
436 bpf_net_ctx_clear(bpf_net_ctx);
437 local_bh_enable();
438 } while (bpf_test_timer_continue(&t, 1, repeat, &ret, time));
439 bpf_reset_run_ctx(old_ctx);
440 bpf_test_timer_leave(&t);
441
442 for_each_cgroup_storage_type(stype)
443 bpf_cgroup_storage_free(item.cgroup_storage[stype]);
444
445 return ret;
446}
447
448static int bpf_test_finish(const union bpf_attr *kattr,
449 union bpf_attr __user *uattr, const void *data,
450 struct skb_shared_info *sinfo, u32 size,
451 u32 retval, u32 duration)
452{
453 void __user *data_out = u64_to_user_ptr(kattr->test.data_out);
454 int err = -EFAULT;
455 u32 copy_size = size;
456
457 /* Clamp copy if the user has provided a size hint, but copy the full
458 * buffer if not to retain old behaviour.
459 */
460 if (kattr->test.data_size_out &&
461 copy_size > kattr->test.data_size_out) {
462 copy_size = kattr->test.data_size_out;
463 err = -ENOSPC;
464 }
465
466 if (data_out) {
467 int len = sinfo ? copy_size - sinfo->xdp_frags_size : copy_size;
468
469 if (len < 0) {
470 err = -ENOSPC;
471 goto out;
472 }
473
474 if (copy_to_user(data_out, data, len))
475 goto out;
476
477 if (sinfo) {
478 int i, offset = len;
479 u32 data_len;
480
481 for (i = 0; i < sinfo->nr_frags; i++) {
482 skb_frag_t *frag = &sinfo->frags[i];
483
484 if (offset >= copy_size) {
485 err = -ENOSPC;
486 break;
487 }
488
489 data_len = min_t(u32, copy_size - offset,
490 skb_frag_size(frag));
491
492 if (copy_to_user(data_out + offset,
493 skb_frag_address(frag),
494 data_len))
495 goto out;
496
497 offset += data_len;
498 }
499 }
500 }
501
502 if (copy_to_user(&uattr->test.data_size_out, &size, sizeof(size)))
503 goto out;
504 if (copy_to_user(&uattr->test.retval, &retval, sizeof(retval)))
505 goto out;
506 if (copy_to_user(&uattr->test.duration, &duration, sizeof(duration)))
507 goto out;
508 if (err != -ENOSPC)
509 err = 0;
510out:
511 trace_bpf_test_finish(&err);
512 return err;
513}
514
515/* Integer types of various sizes and pointer combinations cover variety of
516 * architecture dependent calling conventions. 7+ can be supported in the
517 * future.
518 */
519__bpf_kfunc_start_defs();
520
521__bpf_kfunc int bpf_fentry_test1(int a)
522{
523 return a + 1;
524}
525EXPORT_SYMBOL_GPL(bpf_fentry_test1);
526
527int noinline bpf_fentry_test2(int a, u64 b)
528{
529 return a + b;
530}
531
532int noinline bpf_fentry_test3(char a, int b, u64 c)
533{
534 return a + b + c;
535}
536
537int noinline bpf_fentry_test4(void *a, char b, int c, u64 d)
538{
539 return (long)a + b + c + d;
540}
541
542int noinline bpf_fentry_test5(u64 a, void *b, short c, int d, u64 e)
543{
544 return a + (long)b + c + d + e;
545}
546
547int noinline bpf_fentry_test6(u64 a, void *b, short c, int d, void *e, u64 f)
548{
549 return a + (long)b + c + d + (long)e + f;
550}
551
552struct bpf_fentry_test_t {
553 struct bpf_fentry_test_t *a;
554};
555
556int noinline bpf_fentry_test7(struct bpf_fentry_test_t *arg)
557{
558 asm volatile ("": "+r"(arg));
559 return (long)arg;
560}
561
562int noinline bpf_fentry_test8(struct bpf_fentry_test_t *arg)
563{
564 return (long)arg->a;
565}
566
567__bpf_kfunc u32 bpf_fentry_test9(u32 *a)
568{
569 return *a;
570}
571
572void noinline bpf_fentry_test_sinfo(struct skb_shared_info *sinfo)
573{
574}
575
576__bpf_kfunc int bpf_modify_return_test(int a, int *b)
577{
578 *b += 1;
579 return a + *b;
580}
581
582__bpf_kfunc int bpf_modify_return_test2(int a, int *b, short c, int d,
583 void *e, char f, int g)
584{
585 *b += 1;
586 return a + *b + c + d + (long)e + f + g;
587}
588
589__bpf_kfunc int bpf_modify_return_test_tp(int nonce)
590{
591 trace_bpf_trigger_tp(nonce);
592
593 return nonce;
594}
595
596int noinline bpf_fentry_shadow_test(int a)
597{
598 return a + 1;
599}
600
601struct prog_test_member1 {
602 int a;
603};
604
605struct prog_test_member {
606 struct prog_test_member1 m;
607 int c;
608};
609
610struct prog_test_ref_kfunc {
611 int a;
612 int b;
613 struct prog_test_member memb;
614 struct prog_test_ref_kfunc *next;
615 refcount_t cnt;
616};
617
618__bpf_kfunc void bpf_kfunc_call_test_release(struct prog_test_ref_kfunc *p)
619{
620 refcount_dec(&p->cnt);
621}
622
623__bpf_kfunc void bpf_kfunc_call_test_release_dtor(void *p)
624{
625 bpf_kfunc_call_test_release(p);
626}
627CFI_NOSEAL(bpf_kfunc_call_test_release_dtor);
628
629__bpf_kfunc void bpf_kfunc_call_memb_release(struct prog_test_member *p)
630{
631}
632
633__bpf_kfunc void bpf_kfunc_call_memb_release_dtor(void *p)
634{
635}
636CFI_NOSEAL(bpf_kfunc_call_memb_release_dtor);
637
638__bpf_kfunc_end_defs();
639
640BTF_KFUNCS_START(bpf_test_modify_return_ids)
641BTF_ID_FLAGS(func, bpf_modify_return_test)
642BTF_ID_FLAGS(func, bpf_modify_return_test2)
643BTF_ID_FLAGS(func, bpf_modify_return_test_tp)
644BTF_ID_FLAGS(func, bpf_fentry_test1, KF_SLEEPABLE)
645BTF_KFUNCS_END(bpf_test_modify_return_ids)
646
647static const struct btf_kfunc_id_set bpf_test_modify_return_set = {
648 .owner = THIS_MODULE,
649 .set = &bpf_test_modify_return_ids,
650};
651
652BTF_KFUNCS_START(test_sk_check_kfunc_ids)
653BTF_ID_FLAGS(func, bpf_kfunc_call_test_release, KF_RELEASE)
654BTF_ID_FLAGS(func, bpf_kfunc_call_memb_release, KF_RELEASE)
655BTF_KFUNCS_END(test_sk_check_kfunc_ids)
656
657static void *bpf_test_init(const union bpf_attr *kattr, u32 user_size,
658 u32 size, u32 headroom, u32 tailroom)
659{
660 void __user *data_in = u64_to_user_ptr(kattr->test.data_in);
661 void *data;
662
663 if (user_size < ETH_HLEN || user_size > PAGE_SIZE - headroom - tailroom)
664 return ERR_PTR(-EINVAL);
665
666 size = SKB_DATA_ALIGN(size);
667 data = kzalloc(size + headroom + tailroom, GFP_USER);
668 if (!data)
669 return ERR_PTR(-ENOMEM);
670
671 if (copy_from_user(data + headroom, data_in, user_size)) {
672 kfree(data);
673 return ERR_PTR(-EFAULT);
674 }
675
676 return data;
677}
678
679int bpf_prog_test_run_tracing(struct bpf_prog *prog,
680 const union bpf_attr *kattr,
681 union bpf_attr __user *uattr)
682{
683 struct bpf_fentry_test_t arg = {};
684 u16 side_effect = 0, ret = 0;
685 int b = 2, err = -EFAULT;
686 u32 retval = 0;
687
688 if (kattr->test.flags || kattr->test.cpu || kattr->test.batch_size)
689 return -EINVAL;
690
691 switch (prog->expected_attach_type) {
692 case BPF_TRACE_FENTRY:
693 case BPF_TRACE_FEXIT:
694 if (bpf_fentry_test1(1) != 2 ||
695 bpf_fentry_test2(2, 3) != 5 ||
696 bpf_fentry_test3(4, 5, 6) != 15 ||
697 bpf_fentry_test4((void *)7, 8, 9, 10) != 34 ||
698 bpf_fentry_test5(11, (void *)12, 13, 14, 15) != 65 ||
699 bpf_fentry_test6(16, (void *)17, 18, 19, (void *)20, 21) != 111 ||
700 bpf_fentry_test7((struct bpf_fentry_test_t *)0) != 0 ||
701 bpf_fentry_test8(&arg) != 0 ||
702 bpf_fentry_test9(&retval) != 0)
703 goto out;
704 break;
705 case BPF_MODIFY_RETURN:
706 ret = bpf_modify_return_test(1, &b);
707 if (b != 2)
708 side_effect++;
709 b = 2;
710 ret += bpf_modify_return_test2(1, &b, 3, 4, (void *)5, 6, 7);
711 if (b != 2)
712 side_effect++;
713 break;
714 default:
715 goto out;
716 }
717
718 retval = ((u32)side_effect << 16) | ret;
719 if (copy_to_user(&uattr->test.retval, &retval, sizeof(retval)))
720 goto out;
721
722 err = 0;
723out:
724 trace_bpf_test_finish(&err);
725 return err;
726}
727
728struct bpf_raw_tp_test_run_info {
729 struct bpf_prog *prog;
730 void *ctx;
731 u32 retval;
732};
733
734static void
735__bpf_prog_test_run_raw_tp(void *data)
736{
737 struct bpf_raw_tp_test_run_info *info = data;
738 struct bpf_trace_run_ctx run_ctx = {};
739 struct bpf_run_ctx *old_run_ctx;
740
741 old_run_ctx = bpf_set_run_ctx(&run_ctx.run_ctx);
742
743 rcu_read_lock();
744 info->retval = bpf_prog_run(info->prog, info->ctx);
745 rcu_read_unlock();
746
747 bpf_reset_run_ctx(old_run_ctx);
748}
749
750int bpf_prog_test_run_raw_tp(struct bpf_prog *prog,
751 const union bpf_attr *kattr,
752 union bpf_attr __user *uattr)
753{
754 void __user *ctx_in = u64_to_user_ptr(kattr->test.ctx_in);
755 __u32 ctx_size_in = kattr->test.ctx_size_in;
756 struct bpf_raw_tp_test_run_info info;
757 int cpu = kattr->test.cpu, err = 0;
758 int current_cpu;
759
760 /* doesn't support data_in/out, ctx_out, duration, or repeat */
761 if (kattr->test.data_in || kattr->test.data_out ||
762 kattr->test.ctx_out || kattr->test.duration ||
763 kattr->test.repeat || kattr->test.batch_size)
764 return -EINVAL;
765
766 if (ctx_size_in < prog->aux->max_ctx_offset ||
767 ctx_size_in > MAX_BPF_FUNC_ARGS * sizeof(u64))
768 return -EINVAL;
769
770 if ((kattr->test.flags & BPF_F_TEST_RUN_ON_CPU) == 0 && cpu != 0)
771 return -EINVAL;
772
773 if (ctx_size_in) {
774 info.ctx = memdup_user(ctx_in, ctx_size_in);
775 if (IS_ERR(info.ctx))
776 return PTR_ERR(info.ctx);
777 } else {
778 info.ctx = NULL;
779 }
780
781 info.prog = prog;
782
783 current_cpu = get_cpu();
784 if ((kattr->test.flags & BPF_F_TEST_RUN_ON_CPU) == 0 ||
785 cpu == current_cpu) {
786 __bpf_prog_test_run_raw_tp(&info);
787 } else if (cpu >= nr_cpu_ids || !cpu_online(cpu)) {
788 /* smp_call_function_single() also checks cpu_online()
789 * after csd_lock(). However, since cpu is from user
790 * space, let's do an extra quick check to filter out
791 * invalid value before smp_call_function_single().
792 */
793 err = -ENXIO;
794 } else {
795 err = smp_call_function_single(cpu, __bpf_prog_test_run_raw_tp,
796 &info, 1);
797 }
798 put_cpu();
799
800 if (!err &&
801 copy_to_user(&uattr->test.retval, &info.retval, sizeof(u32)))
802 err = -EFAULT;
803
804 kfree(info.ctx);
805 return err;
806}
807
808static void *bpf_ctx_init(const union bpf_attr *kattr, u32 max_size)
809{
810 void __user *data_in = u64_to_user_ptr(kattr->test.ctx_in);
811 void __user *data_out = u64_to_user_ptr(kattr->test.ctx_out);
812 u32 size = kattr->test.ctx_size_in;
813 void *data;
814 int err;
815
816 if (!data_in && !data_out)
817 return NULL;
818
819 data = kzalloc(max_size, GFP_USER);
820 if (!data)
821 return ERR_PTR(-ENOMEM);
822
823 if (data_in) {
824 err = bpf_check_uarg_tail_zero(USER_BPFPTR(data_in), max_size, size);
825 if (err) {
826 kfree(data);
827 return ERR_PTR(err);
828 }
829
830 size = min_t(u32, max_size, size);
831 if (copy_from_user(data, data_in, size)) {
832 kfree(data);
833 return ERR_PTR(-EFAULT);
834 }
835 }
836 return data;
837}
838
839static int bpf_ctx_finish(const union bpf_attr *kattr,
840 union bpf_attr __user *uattr, const void *data,
841 u32 size)
842{
843 void __user *data_out = u64_to_user_ptr(kattr->test.ctx_out);
844 int err = -EFAULT;
845 u32 copy_size = size;
846
847 if (!data || !data_out)
848 return 0;
849
850 if (copy_size > kattr->test.ctx_size_out) {
851 copy_size = kattr->test.ctx_size_out;
852 err = -ENOSPC;
853 }
854
855 if (copy_to_user(data_out, data, copy_size))
856 goto out;
857 if (copy_to_user(&uattr->test.ctx_size_out, &size, sizeof(size)))
858 goto out;
859 if (err != -ENOSPC)
860 err = 0;
861out:
862 return err;
863}
864
865/**
866 * range_is_zero - test whether buffer is initialized
867 * @buf: buffer to check
868 * @from: check from this position
869 * @to: check up until (excluding) this position
870 *
871 * This function returns true if the there is a non-zero byte
872 * in the buf in the range [from,to).
873 */
874static inline bool range_is_zero(void *buf, size_t from, size_t to)
875{
876 return !memchr_inv((u8 *)buf + from, 0, to - from);
877}
878
879static int convert___skb_to_skb(struct sk_buff *skb, struct __sk_buff *__skb)
880{
881 struct qdisc_skb_cb *cb = (struct qdisc_skb_cb *)skb->cb;
882
883 if (!__skb)
884 return 0;
885
886 /* make sure the fields we don't use are zeroed */
887 if (!range_is_zero(__skb, 0, offsetof(struct __sk_buff, mark)))
888 return -EINVAL;
889
890 /* mark is allowed */
891
892 if (!range_is_zero(__skb, offsetofend(struct __sk_buff, mark),
893 offsetof(struct __sk_buff, priority)))
894 return -EINVAL;
895
896 /* priority is allowed */
897 /* ingress_ifindex is allowed */
898 /* ifindex is allowed */
899
900 if (!range_is_zero(__skb, offsetofend(struct __sk_buff, ifindex),
901 offsetof(struct __sk_buff, cb)))
902 return -EINVAL;
903
904 /* cb is allowed */
905
906 if (!range_is_zero(__skb, offsetofend(struct __sk_buff, cb),
907 offsetof(struct __sk_buff, tstamp)))
908 return -EINVAL;
909
910 /* tstamp is allowed */
911 /* wire_len is allowed */
912 /* gso_segs is allowed */
913
914 if (!range_is_zero(__skb, offsetofend(struct __sk_buff, gso_segs),
915 offsetof(struct __sk_buff, gso_size)))
916 return -EINVAL;
917
918 /* gso_size is allowed */
919
920 if (!range_is_zero(__skb, offsetofend(struct __sk_buff, gso_size),
921 offsetof(struct __sk_buff, hwtstamp)))
922 return -EINVAL;
923
924 /* hwtstamp is allowed */
925
926 if (!range_is_zero(__skb, offsetofend(struct __sk_buff, hwtstamp),
927 sizeof(struct __sk_buff)))
928 return -EINVAL;
929
930 skb->mark = __skb->mark;
931 skb->priority = __skb->priority;
932 skb->skb_iif = __skb->ingress_ifindex;
933 skb->tstamp = __skb->tstamp;
934 memcpy(&cb->data, __skb->cb, QDISC_CB_PRIV_LEN);
935
936 if (__skb->wire_len == 0) {
937 cb->pkt_len = skb->len;
938 } else {
939 if (__skb->wire_len < skb->len ||
940 __skb->wire_len > GSO_LEGACY_MAX_SIZE)
941 return -EINVAL;
942 cb->pkt_len = __skb->wire_len;
943 }
944
945 if (__skb->gso_segs > GSO_MAX_SEGS)
946 return -EINVAL;
947 skb_shinfo(skb)->gso_segs = __skb->gso_segs;
948 skb_shinfo(skb)->gso_size = __skb->gso_size;
949 skb_shinfo(skb)->hwtstamps.hwtstamp = __skb->hwtstamp;
950
951 return 0;
952}
953
954static void convert_skb_to___skb(struct sk_buff *skb, struct __sk_buff *__skb)
955{
956 struct qdisc_skb_cb *cb = (struct qdisc_skb_cb *)skb->cb;
957
958 if (!__skb)
959 return;
960
961 __skb->mark = skb->mark;
962 __skb->priority = skb->priority;
963 __skb->ingress_ifindex = skb->skb_iif;
964 __skb->ifindex = skb->dev->ifindex;
965 __skb->tstamp = skb->tstamp;
966 memcpy(__skb->cb, &cb->data, QDISC_CB_PRIV_LEN);
967 __skb->wire_len = cb->pkt_len;
968 __skb->gso_segs = skb_shinfo(skb)->gso_segs;
969 __skb->hwtstamp = skb_shinfo(skb)->hwtstamps.hwtstamp;
970}
971
972static struct proto bpf_dummy_proto = {
973 .name = "bpf_dummy",
974 .owner = THIS_MODULE,
975 .obj_size = sizeof(struct sock),
976};
977
978int bpf_prog_test_run_skb(struct bpf_prog *prog, const union bpf_attr *kattr,
979 union bpf_attr __user *uattr)
980{
981 bool is_l2 = false, is_direct_pkt_access = false;
982 struct net *net = current->nsproxy->net_ns;
983 struct net_device *dev = net->loopback_dev;
984 u32 size = kattr->test.data_size_in;
985 u32 repeat = kattr->test.repeat;
986 struct __sk_buff *ctx = NULL;
987 u32 retval, duration;
988 int hh_len = ETH_HLEN;
989 struct sk_buff *skb;
990 struct sock *sk;
991 void *data;
992 int ret;
993
994 if ((kattr->test.flags & ~BPF_F_TEST_SKB_CHECKSUM_COMPLETE) ||
995 kattr->test.cpu || kattr->test.batch_size)
996 return -EINVAL;
997
998 data = bpf_test_init(kattr, kattr->test.data_size_in,
999 size, NET_SKB_PAD + NET_IP_ALIGN,
1000 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)));
1001 if (IS_ERR(data))
1002 return PTR_ERR(data);
1003
1004 ctx = bpf_ctx_init(kattr, sizeof(struct __sk_buff));
1005 if (IS_ERR(ctx)) {
1006 kfree(data);
1007 return PTR_ERR(ctx);
1008 }
1009
1010 switch (prog->type) {
1011 case BPF_PROG_TYPE_SCHED_CLS:
1012 case BPF_PROG_TYPE_SCHED_ACT:
1013 is_l2 = true;
1014 fallthrough;
1015 case BPF_PROG_TYPE_LWT_IN:
1016 case BPF_PROG_TYPE_LWT_OUT:
1017 case BPF_PROG_TYPE_LWT_XMIT:
1018 is_direct_pkt_access = true;
1019 break;
1020 default:
1021 break;
1022 }
1023
1024 sk = sk_alloc(net, AF_UNSPEC, GFP_USER, &bpf_dummy_proto, 1);
1025 if (!sk) {
1026 kfree(data);
1027 kfree(ctx);
1028 return -ENOMEM;
1029 }
1030 sock_init_data(NULL, sk);
1031
1032 skb = slab_build_skb(data);
1033 if (!skb) {
1034 kfree(data);
1035 kfree(ctx);
1036 sk_free(sk);
1037 return -ENOMEM;
1038 }
1039 skb->sk = sk;
1040
1041 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
1042 __skb_put(skb, size);
1043
1044 if (ctx && ctx->ifindex > 1) {
1045 dev = dev_get_by_index(net, ctx->ifindex);
1046 if (!dev) {
1047 ret = -ENODEV;
1048 goto out;
1049 }
1050 }
1051 skb->protocol = eth_type_trans(skb, dev);
1052 skb_reset_network_header(skb);
1053
1054 switch (skb->protocol) {
1055 case htons(ETH_P_IP):
1056 sk->sk_family = AF_INET;
1057 if (sizeof(struct iphdr) <= skb_headlen(skb)) {
1058 sk->sk_rcv_saddr = ip_hdr(skb)->saddr;
1059 sk->sk_daddr = ip_hdr(skb)->daddr;
1060 }
1061 break;
1062#if IS_ENABLED(CONFIG_IPV6)
1063 case htons(ETH_P_IPV6):
1064 sk->sk_family = AF_INET6;
1065 if (sizeof(struct ipv6hdr) <= skb_headlen(skb)) {
1066 sk->sk_v6_rcv_saddr = ipv6_hdr(skb)->saddr;
1067 sk->sk_v6_daddr = ipv6_hdr(skb)->daddr;
1068 }
1069 break;
1070#endif
1071 default:
1072 break;
1073 }
1074
1075 if (is_l2)
1076 __skb_push(skb, hh_len);
1077 if (is_direct_pkt_access)
1078 bpf_compute_data_pointers(skb);
1079
1080 ret = convert___skb_to_skb(skb, ctx);
1081 if (ret)
1082 goto out;
1083
1084 if (kattr->test.flags & BPF_F_TEST_SKB_CHECKSUM_COMPLETE) {
1085 const int off = skb_network_offset(skb);
1086 int len = skb->len - off;
1087
1088 skb->csum = skb_checksum(skb, off, len, 0);
1089 skb->ip_summed = CHECKSUM_COMPLETE;
1090 }
1091
1092 ret = bpf_test_run(prog, skb, repeat, &retval, &duration, false);
1093 if (ret)
1094 goto out;
1095 if (!is_l2) {
1096 if (skb_headroom(skb) < hh_len) {
1097 int nhead = HH_DATA_ALIGN(hh_len - skb_headroom(skb));
1098
1099 if (pskb_expand_head(skb, nhead, 0, GFP_USER)) {
1100 ret = -ENOMEM;
1101 goto out;
1102 }
1103 }
1104 memset(__skb_push(skb, hh_len), 0, hh_len);
1105 }
1106
1107 if (kattr->test.flags & BPF_F_TEST_SKB_CHECKSUM_COMPLETE) {
1108 const int off = skb_network_offset(skb);
1109 int len = skb->len - off;
1110 __wsum csum;
1111
1112 csum = skb_checksum(skb, off, len, 0);
1113
1114 if (csum_fold(skb->csum) != csum_fold(csum)) {
1115 ret = -EBADMSG;
1116 goto out;
1117 }
1118 }
1119
1120 convert_skb_to___skb(skb, ctx);
1121
1122 size = skb->len;
1123 /* bpf program can never convert linear skb to non-linear */
1124 if (WARN_ON_ONCE(skb_is_nonlinear(skb)))
1125 size = skb_headlen(skb);
1126 ret = bpf_test_finish(kattr, uattr, skb->data, NULL, size, retval,
1127 duration);
1128 if (!ret)
1129 ret = bpf_ctx_finish(kattr, uattr, ctx,
1130 sizeof(struct __sk_buff));
1131out:
1132 if (dev && dev != net->loopback_dev)
1133 dev_put(dev);
1134 kfree_skb(skb);
1135 sk_free(sk);
1136 kfree(ctx);
1137 return ret;
1138}
1139
1140static int xdp_convert_md_to_buff(struct xdp_md *xdp_md, struct xdp_buff *xdp)
1141{
1142 unsigned int ingress_ifindex, rx_queue_index;
1143 struct netdev_rx_queue *rxqueue;
1144 struct net_device *device;
1145
1146 if (!xdp_md)
1147 return 0;
1148
1149 if (xdp_md->egress_ifindex != 0)
1150 return -EINVAL;
1151
1152 ingress_ifindex = xdp_md->ingress_ifindex;
1153 rx_queue_index = xdp_md->rx_queue_index;
1154
1155 if (!ingress_ifindex && rx_queue_index)
1156 return -EINVAL;
1157
1158 if (ingress_ifindex) {
1159 device = dev_get_by_index(current->nsproxy->net_ns,
1160 ingress_ifindex);
1161 if (!device)
1162 return -ENODEV;
1163
1164 if (rx_queue_index >= device->real_num_rx_queues)
1165 goto free_dev;
1166
1167 rxqueue = __netif_get_rx_queue(device, rx_queue_index);
1168
1169 if (!xdp_rxq_info_is_reg(&rxqueue->xdp_rxq))
1170 goto free_dev;
1171
1172 xdp->rxq = &rxqueue->xdp_rxq;
1173 /* The device is now tracked in the xdp->rxq for later
1174 * dev_put()
1175 */
1176 }
1177
1178 xdp->data = xdp->data_meta + xdp_md->data;
1179 return 0;
1180
1181free_dev:
1182 dev_put(device);
1183 return -EINVAL;
1184}
1185
1186static void xdp_convert_buff_to_md(struct xdp_buff *xdp, struct xdp_md *xdp_md)
1187{
1188 if (!xdp_md)
1189 return;
1190
1191 xdp_md->data = xdp->data - xdp->data_meta;
1192 xdp_md->data_end = xdp->data_end - xdp->data_meta;
1193
1194 if (xdp_md->ingress_ifindex)
1195 dev_put(xdp->rxq->dev);
1196}
1197
1198int bpf_prog_test_run_xdp(struct bpf_prog *prog, const union bpf_attr *kattr,
1199 union bpf_attr __user *uattr)
1200{
1201 bool do_live = (kattr->test.flags & BPF_F_TEST_XDP_LIVE_FRAMES);
1202 u32 tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1203 u32 batch_size = kattr->test.batch_size;
1204 u32 retval = 0, duration, max_data_sz;
1205 u32 size = kattr->test.data_size_in;
1206 u32 headroom = XDP_PACKET_HEADROOM;
1207 u32 repeat = kattr->test.repeat;
1208 struct netdev_rx_queue *rxqueue;
1209 struct skb_shared_info *sinfo;
1210 struct xdp_buff xdp = {};
1211 int i, ret = -EINVAL;
1212 struct xdp_md *ctx;
1213 void *data;
1214
1215 if (prog->expected_attach_type == BPF_XDP_DEVMAP ||
1216 prog->expected_attach_type == BPF_XDP_CPUMAP)
1217 return -EINVAL;
1218
1219 if (kattr->test.flags & ~BPF_F_TEST_XDP_LIVE_FRAMES)
1220 return -EINVAL;
1221
1222 if (bpf_prog_is_dev_bound(prog->aux))
1223 return -EINVAL;
1224
1225 if (do_live) {
1226 if (!batch_size)
1227 batch_size = NAPI_POLL_WEIGHT;
1228 else if (batch_size > TEST_XDP_MAX_BATCH)
1229 return -E2BIG;
1230
1231 headroom += sizeof(struct xdp_page_head);
1232 } else if (batch_size) {
1233 return -EINVAL;
1234 }
1235
1236 ctx = bpf_ctx_init(kattr, sizeof(struct xdp_md));
1237 if (IS_ERR(ctx))
1238 return PTR_ERR(ctx);
1239
1240 if (ctx) {
1241 /* There can't be user provided data before the meta data */
1242 if (ctx->data_meta || ctx->data_end != size ||
1243 ctx->data > ctx->data_end ||
1244 unlikely(xdp_metalen_invalid(ctx->data)) ||
1245 (do_live && (kattr->test.data_out || kattr->test.ctx_out)))
1246 goto free_ctx;
1247 /* Meta data is allocated from the headroom */
1248 headroom -= ctx->data;
1249 }
1250
1251 max_data_sz = 4096 - headroom - tailroom;
1252 if (size > max_data_sz) {
1253 /* disallow live data mode for jumbo frames */
1254 if (do_live)
1255 goto free_ctx;
1256 size = max_data_sz;
1257 }
1258
1259 data = bpf_test_init(kattr, size, max_data_sz, headroom, tailroom);
1260 if (IS_ERR(data)) {
1261 ret = PTR_ERR(data);
1262 goto free_ctx;
1263 }
1264
1265 rxqueue = __netif_get_rx_queue(current->nsproxy->net_ns->loopback_dev, 0);
1266 rxqueue->xdp_rxq.frag_size = headroom + max_data_sz + tailroom;
1267 xdp_init_buff(&xdp, rxqueue->xdp_rxq.frag_size, &rxqueue->xdp_rxq);
1268 xdp_prepare_buff(&xdp, data, headroom, size, true);
1269 sinfo = xdp_get_shared_info_from_buff(&xdp);
1270
1271 ret = xdp_convert_md_to_buff(ctx, &xdp);
1272 if (ret)
1273 goto free_data;
1274
1275 if (unlikely(kattr->test.data_size_in > size)) {
1276 void __user *data_in = u64_to_user_ptr(kattr->test.data_in);
1277
1278 while (size < kattr->test.data_size_in) {
1279 struct page *page;
1280 skb_frag_t *frag;
1281 u32 data_len;
1282
1283 if (sinfo->nr_frags == MAX_SKB_FRAGS) {
1284 ret = -ENOMEM;
1285 goto out;
1286 }
1287
1288 page = alloc_page(GFP_KERNEL);
1289 if (!page) {
1290 ret = -ENOMEM;
1291 goto out;
1292 }
1293
1294 frag = &sinfo->frags[sinfo->nr_frags++];
1295
1296 data_len = min_t(u32, kattr->test.data_size_in - size,
1297 PAGE_SIZE);
1298 skb_frag_fill_page_desc(frag, page, 0, data_len);
1299
1300 if (copy_from_user(page_address(page), data_in + size,
1301 data_len)) {
1302 ret = -EFAULT;
1303 goto out;
1304 }
1305 sinfo->xdp_frags_size += data_len;
1306 size += data_len;
1307 }
1308 xdp_buff_set_frags_flag(&xdp);
1309 }
1310
1311 if (repeat > 1)
1312 bpf_prog_change_xdp(NULL, prog);
1313
1314 if (do_live)
1315 ret = bpf_test_run_xdp_live(prog, &xdp, repeat, batch_size, &duration);
1316 else
1317 ret = bpf_test_run(prog, &xdp, repeat, &retval, &duration, true);
1318 /* We convert the xdp_buff back to an xdp_md before checking the return
1319 * code so the reference count of any held netdevice will be decremented
1320 * even if the test run failed.
1321 */
1322 xdp_convert_buff_to_md(&xdp, ctx);
1323 if (ret)
1324 goto out;
1325
1326 size = xdp.data_end - xdp.data_meta + sinfo->xdp_frags_size;
1327 ret = bpf_test_finish(kattr, uattr, xdp.data_meta, sinfo, size,
1328 retval, duration);
1329 if (!ret)
1330 ret = bpf_ctx_finish(kattr, uattr, ctx,
1331 sizeof(struct xdp_md));
1332
1333out:
1334 if (repeat > 1)
1335 bpf_prog_change_xdp(prog, NULL);
1336free_data:
1337 for (i = 0; i < sinfo->nr_frags; i++)
1338 __free_page(skb_frag_page(&sinfo->frags[i]));
1339 kfree(data);
1340free_ctx:
1341 kfree(ctx);
1342 return ret;
1343}
1344
1345static int verify_user_bpf_flow_keys(struct bpf_flow_keys *ctx)
1346{
1347 /* make sure the fields we don't use are zeroed */
1348 if (!range_is_zero(ctx, 0, offsetof(struct bpf_flow_keys, flags)))
1349 return -EINVAL;
1350
1351 /* flags is allowed */
1352
1353 if (!range_is_zero(ctx, offsetofend(struct bpf_flow_keys, flags),
1354 sizeof(struct bpf_flow_keys)))
1355 return -EINVAL;
1356
1357 return 0;
1358}
1359
1360int bpf_prog_test_run_flow_dissector(struct bpf_prog *prog,
1361 const union bpf_attr *kattr,
1362 union bpf_attr __user *uattr)
1363{
1364 struct bpf_test_timer t = { NO_PREEMPT };
1365 u32 size = kattr->test.data_size_in;
1366 struct bpf_flow_dissector ctx = {};
1367 u32 repeat = kattr->test.repeat;
1368 struct bpf_flow_keys *user_ctx;
1369 struct bpf_flow_keys flow_keys;
1370 const struct ethhdr *eth;
1371 unsigned int flags = 0;
1372 u32 retval, duration;
1373 void *data;
1374 int ret;
1375
1376 if (kattr->test.flags || kattr->test.cpu || kattr->test.batch_size)
1377 return -EINVAL;
1378
1379 if (size < ETH_HLEN)
1380 return -EINVAL;
1381
1382 data = bpf_test_init(kattr, kattr->test.data_size_in, size, 0, 0);
1383 if (IS_ERR(data))
1384 return PTR_ERR(data);
1385
1386 eth = (struct ethhdr *)data;
1387
1388 if (!repeat)
1389 repeat = 1;
1390
1391 user_ctx = bpf_ctx_init(kattr, sizeof(struct bpf_flow_keys));
1392 if (IS_ERR(user_ctx)) {
1393 kfree(data);
1394 return PTR_ERR(user_ctx);
1395 }
1396 if (user_ctx) {
1397 ret = verify_user_bpf_flow_keys(user_ctx);
1398 if (ret)
1399 goto out;
1400 flags = user_ctx->flags;
1401 }
1402
1403 ctx.flow_keys = &flow_keys;
1404 ctx.data = data;
1405 ctx.data_end = (__u8 *)data + size;
1406
1407 bpf_test_timer_enter(&t);
1408 do {
1409 retval = bpf_flow_dissect(prog, &ctx, eth->h_proto, ETH_HLEN,
1410 size, flags);
1411 } while (bpf_test_timer_continue(&t, 1, repeat, &ret, &duration));
1412 bpf_test_timer_leave(&t);
1413
1414 if (ret < 0)
1415 goto out;
1416
1417 ret = bpf_test_finish(kattr, uattr, &flow_keys, NULL,
1418 sizeof(flow_keys), retval, duration);
1419 if (!ret)
1420 ret = bpf_ctx_finish(kattr, uattr, user_ctx,
1421 sizeof(struct bpf_flow_keys));
1422
1423out:
1424 kfree(user_ctx);
1425 kfree(data);
1426 return ret;
1427}
1428
1429int bpf_prog_test_run_sk_lookup(struct bpf_prog *prog, const union bpf_attr *kattr,
1430 union bpf_attr __user *uattr)
1431{
1432 struct bpf_test_timer t = { NO_PREEMPT };
1433 struct bpf_prog_array *progs = NULL;
1434 struct bpf_sk_lookup_kern ctx = {};
1435 u32 repeat = kattr->test.repeat;
1436 struct bpf_sk_lookup *user_ctx;
1437 u32 retval, duration;
1438 int ret = -EINVAL;
1439
1440 if (kattr->test.flags || kattr->test.cpu || kattr->test.batch_size)
1441 return -EINVAL;
1442
1443 if (kattr->test.data_in || kattr->test.data_size_in || kattr->test.data_out ||
1444 kattr->test.data_size_out)
1445 return -EINVAL;
1446
1447 if (!repeat)
1448 repeat = 1;
1449
1450 user_ctx = bpf_ctx_init(kattr, sizeof(*user_ctx));
1451 if (IS_ERR(user_ctx))
1452 return PTR_ERR(user_ctx);
1453
1454 if (!user_ctx)
1455 return -EINVAL;
1456
1457 if (user_ctx->sk)
1458 goto out;
1459
1460 if (!range_is_zero(user_ctx, offsetofend(typeof(*user_ctx), local_port), sizeof(*user_ctx)))
1461 goto out;
1462
1463 if (user_ctx->local_port > U16_MAX) {
1464 ret = -ERANGE;
1465 goto out;
1466 }
1467
1468 ctx.family = (u16)user_ctx->family;
1469 ctx.protocol = (u16)user_ctx->protocol;
1470 ctx.dport = (u16)user_ctx->local_port;
1471 ctx.sport = user_ctx->remote_port;
1472
1473 switch (ctx.family) {
1474 case AF_INET:
1475 ctx.v4.daddr = (__force __be32)user_ctx->local_ip4;
1476 ctx.v4.saddr = (__force __be32)user_ctx->remote_ip4;
1477 break;
1478
1479#if IS_ENABLED(CONFIG_IPV6)
1480 case AF_INET6:
1481 ctx.v6.daddr = (struct in6_addr *)user_ctx->local_ip6;
1482 ctx.v6.saddr = (struct in6_addr *)user_ctx->remote_ip6;
1483 break;
1484#endif
1485
1486 default:
1487 ret = -EAFNOSUPPORT;
1488 goto out;
1489 }
1490
1491 progs = bpf_prog_array_alloc(1, GFP_KERNEL);
1492 if (!progs) {
1493 ret = -ENOMEM;
1494 goto out;
1495 }
1496
1497 progs->items[0].prog = prog;
1498
1499 bpf_test_timer_enter(&t);
1500 do {
1501 ctx.selected_sk = NULL;
1502 retval = BPF_PROG_SK_LOOKUP_RUN_ARRAY(progs, ctx, bpf_prog_run);
1503 } while (bpf_test_timer_continue(&t, 1, repeat, &ret, &duration));
1504 bpf_test_timer_leave(&t);
1505
1506 if (ret < 0)
1507 goto out;
1508
1509 user_ctx->cookie = 0;
1510 if (ctx.selected_sk) {
1511 if (ctx.selected_sk->sk_reuseport && !ctx.no_reuseport) {
1512 ret = -EOPNOTSUPP;
1513 goto out;
1514 }
1515
1516 user_ctx->cookie = sock_gen_cookie(ctx.selected_sk);
1517 }
1518
1519 ret = bpf_test_finish(kattr, uattr, NULL, NULL, 0, retval, duration);
1520 if (!ret)
1521 ret = bpf_ctx_finish(kattr, uattr, user_ctx, sizeof(*user_ctx));
1522
1523out:
1524 bpf_prog_array_free(progs);
1525 kfree(user_ctx);
1526 return ret;
1527}
1528
1529int bpf_prog_test_run_syscall(struct bpf_prog *prog,
1530 const union bpf_attr *kattr,
1531 union bpf_attr __user *uattr)
1532{
1533 void __user *ctx_in = u64_to_user_ptr(kattr->test.ctx_in);
1534 __u32 ctx_size_in = kattr->test.ctx_size_in;
1535 void *ctx = NULL;
1536 u32 retval;
1537 int err = 0;
1538
1539 /* doesn't support data_in/out, ctx_out, duration, or repeat or flags */
1540 if (kattr->test.data_in || kattr->test.data_out ||
1541 kattr->test.ctx_out || kattr->test.duration ||
1542 kattr->test.repeat || kattr->test.flags ||
1543 kattr->test.batch_size)
1544 return -EINVAL;
1545
1546 if (ctx_size_in < prog->aux->max_ctx_offset ||
1547 ctx_size_in > U16_MAX)
1548 return -EINVAL;
1549
1550 if (ctx_size_in) {
1551 ctx = memdup_user(ctx_in, ctx_size_in);
1552 if (IS_ERR(ctx))
1553 return PTR_ERR(ctx);
1554 }
1555
1556 rcu_read_lock_trace();
1557 retval = bpf_prog_run_pin_on_cpu(prog, ctx);
1558 rcu_read_unlock_trace();
1559
1560 if (copy_to_user(&uattr->test.retval, &retval, sizeof(u32))) {
1561 err = -EFAULT;
1562 goto out;
1563 }
1564 if (ctx_size_in)
1565 if (copy_to_user(ctx_in, ctx, ctx_size_in))
1566 err = -EFAULT;
1567out:
1568 kfree(ctx);
1569 return err;
1570}
1571
1572static int verify_and_copy_hook_state(struct nf_hook_state *state,
1573 const struct nf_hook_state *user,
1574 struct net_device *dev)
1575{
1576 if (user->in || user->out)
1577 return -EINVAL;
1578
1579 if (user->net || user->sk || user->okfn)
1580 return -EINVAL;
1581
1582 switch (user->pf) {
1583 case NFPROTO_IPV4:
1584 case NFPROTO_IPV6:
1585 switch (state->hook) {
1586 case NF_INET_PRE_ROUTING:
1587 state->in = dev;
1588 break;
1589 case NF_INET_LOCAL_IN:
1590 state->in = dev;
1591 break;
1592 case NF_INET_FORWARD:
1593 state->in = dev;
1594 state->out = dev;
1595 break;
1596 case NF_INET_LOCAL_OUT:
1597 state->out = dev;
1598 break;
1599 case NF_INET_POST_ROUTING:
1600 state->out = dev;
1601 break;
1602 }
1603
1604 break;
1605 default:
1606 return -EINVAL;
1607 }
1608
1609 state->pf = user->pf;
1610 state->hook = user->hook;
1611
1612 return 0;
1613}
1614
1615static __be16 nfproto_eth(int nfproto)
1616{
1617 switch (nfproto) {
1618 case NFPROTO_IPV4:
1619 return htons(ETH_P_IP);
1620 case NFPROTO_IPV6:
1621 break;
1622 }
1623
1624 return htons(ETH_P_IPV6);
1625}
1626
1627int bpf_prog_test_run_nf(struct bpf_prog *prog,
1628 const union bpf_attr *kattr,
1629 union bpf_attr __user *uattr)
1630{
1631 struct net *net = current->nsproxy->net_ns;
1632 struct net_device *dev = net->loopback_dev;
1633 struct nf_hook_state *user_ctx, hook_state = {
1634 .pf = NFPROTO_IPV4,
1635 .hook = NF_INET_LOCAL_OUT,
1636 };
1637 u32 size = kattr->test.data_size_in;
1638 u32 repeat = kattr->test.repeat;
1639 struct bpf_nf_ctx ctx = {
1640 .state = &hook_state,
1641 };
1642 struct sk_buff *skb = NULL;
1643 u32 retval, duration;
1644 void *data;
1645 int ret;
1646
1647 if (kattr->test.flags || kattr->test.cpu || kattr->test.batch_size)
1648 return -EINVAL;
1649
1650 if (size < sizeof(struct iphdr))
1651 return -EINVAL;
1652
1653 data = bpf_test_init(kattr, kattr->test.data_size_in, size,
1654 NET_SKB_PAD + NET_IP_ALIGN,
1655 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)));
1656 if (IS_ERR(data))
1657 return PTR_ERR(data);
1658
1659 if (!repeat)
1660 repeat = 1;
1661
1662 user_ctx = bpf_ctx_init(kattr, sizeof(struct nf_hook_state));
1663 if (IS_ERR(user_ctx)) {
1664 kfree(data);
1665 return PTR_ERR(user_ctx);
1666 }
1667
1668 if (user_ctx) {
1669 ret = verify_and_copy_hook_state(&hook_state, user_ctx, dev);
1670 if (ret)
1671 goto out;
1672 }
1673
1674 skb = slab_build_skb(data);
1675 if (!skb) {
1676 ret = -ENOMEM;
1677 goto out;
1678 }
1679
1680 data = NULL; /* data released via kfree_skb */
1681
1682 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
1683 __skb_put(skb, size);
1684
1685 ret = -EINVAL;
1686
1687 if (hook_state.hook != NF_INET_LOCAL_OUT) {
1688 if (size < ETH_HLEN + sizeof(struct iphdr))
1689 goto out;
1690
1691 skb->protocol = eth_type_trans(skb, dev);
1692 switch (skb->protocol) {
1693 case htons(ETH_P_IP):
1694 if (hook_state.pf == NFPROTO_IPV4)
1695 break;
1696 goto out;
1697 case htons(ETH_P_IPV6):
1698 if (size < ETH_HLEN + sizeof(struct ipv6hdr))
1699 goto out;
1700 if (hook_state.pf == NFPROTO_IPV6)
1701 break;
1702 goto out;
1703 default:
1704 ret = -EPROTO;
1705 goto out;
1706 }
1707
1708 skb_reset_network_header(skb);
1709 } else {
1710 skb->protocol = nfproto_eth(hook_state.pf);
1711 }
1712
1713 ctx.skb = skb;
1714
1715 ret = bpf_test_run(prog, &ctx, repeat, &retval, &duration, false);
1716 if (ret)
1717 goto out;
1718
1719 ret = bpf_test_finish(kattr, uattr, NULL, NULL, 0, retval, duration);
1720
1721out:
1722 kfree(user_ctx);
1723 kfree_skb(skb);
1724 kfree(data);
1725 return ret;
1726}
1727
1728static const struct btf_kfunc_id_set bpf_prog_test_kfunc_set = {
1729 .owner = THIS_MODULE,
1730 .set = &test_sk_check_kfunc_ids,
1731};
1732
1733BTF_ID_LIST(bpf_prog_test_dtor_kfunc_ids)
1734BTF_ID(struct, prog_test_ref_kfunc)
1735BTF_ID(func, bpf_kfunc_call_test_release_dtor)
1736BTF_ID(struct, prog_test_member)
1737BTF_ID(func, bpf_kfunc_call_memb_release_dtor)
1738
1739static int __init bpf_prog_test_run_init(void)
1740{
1741 const struct btf_id_dtor_kfunc bpf_prog_test_dtor_kfunc[] = {
1742 {
1743 .btf_id = bpf_prog_test_dtor_kfunc_ids[0],
1744 .kfunc_btf_id = bpf_prog_test_dtor_kfunc_ids[1]
1745 },
1746 {
1747 .btf_id = bpf_prog_test_dtor_kfunc_ids[2],
1748 .kfunc_btf_id = bpf_prog_test_dtor_kfunc_ids[3],
1749 },
1750 };
1751 int ret;
1752
1753 ret = register_btf_fmodret_id_set(&bpf_test_modify_return_set);
1754 ret = ret ?: register_btf_kfunc_id_set(BPF_PROG_TYPE_SCHED_CLS, &bpf_prog_test_kfunc_set);
1755 ret = ret ?: register_btf_kfunc_id_set(BPF_PROG_TYPE_TRACING, &bpf_prog_test_kfunc_set);
1756 ret = ret ?: register_btf_kfunc_id_set(BPF_PROG_TYPE_SYSCALL, &bpf_prog_test_kfunc_set);
1757 return ret ?: register_btf_id_dtor_kfuncs(bpf_prog_test_dtor_kfunc,
1758 ARRAY_SIZE(bpf_prog_test_dtor_kfunc),
1759 THIS_MODULE);
1760}
1761late_initcall(bpf_prog_test_run_init);