GNU Linux-libre 5.10.153-gnu1
[releases.git] / net / bpf / test_run.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright (c) 2017 Facebook
3  */
4 #include <linux/bpf.h>
5 #include <linux/slab.h>
6 #include <linux/vmalloc.h>
7 #include <linux/etherdevice.h>
8 #include <linux/filter.h>
9 #include <linux/sched/signal.h>
10 #include <net/bpf_sk_storage.h>
11 #include <net/sock.h>
12 #include <net/tcp.h>
13 #include <net/net_namespace.h>
14 #include <linux/error-injection.h>
15 #include <linux/smp.h>
16 #include <linux/sock_diag.h>
17
18 #define CREATE_TRACE_POINTS
19 #include <trace/events/bpf_test_run.h>
20
21 struct bpf_test_timer {
22         enum { NO_PREEMPT, NO_MIGRATE } mode;
23         u32 i;
24         u64 time_start, time_spent;
25 };
26
27 static void bpf_test_timer_enter(struct bpf_test_timer *t)
28         __acquires(rcu)
29 {
30         rcu_read_lock();
31         if (t->mode == NO_PREEMPT)
32                 preempt_disable();
33         else
34                 migrate_disable();
35
36         t->time_start = ktime_get_ns();
37 }
38
39 static void bpf_test_timer_leave(struct bpf_test_timer *t)
40         __releases(rcu)
41 {
42         t->time_start = 0;
43
44         if (t->mode == NO_PREEMPT)
45                 preempt_enable();
46         else
47                 migrate_enable();
48         rcu_read_unlock();
49 }
50
51 static bool bpf_test_timer_continue(struct bpf_test_timer *t, u32 repeat, int *err, u32 *duration)
52         __must_hold(rcu)
53 {
54         t->i++;
55         if (t->i >= repeat) {
56                 /* We're done. */
57                 t->time_spent += ktime_get_ns() - t->time_start;
58                 do_div(t->time_spent, t->i);
59                 *duration = t->time_spent > U32_MAX ? U32_MAX : (u32)t->time_spent;
60                 *err = 0;
61                 goto reset;
62         }
63
64         if (signal_pending(current)) {
65                 /* During iteration: we've been cancelled, abort. */
66                 *err = -EINTR;
67                 goto reset;
68         }
69
70         if (need_resched()) {
71                 /* During iteration: we need to reschedule between runs. */
72                 t->time_spent += ktime_get_ns() - t->time_start;
73                 bpf_test_timer_leave(t);
74                 cond_resched();
75                 bpf_test_timer_enter(t);
76         }
77
78         /* Do another round. */
79         return true;
80
81 reset:
82         t->i = 0;
83         return false;
84 }
85
86 static int bpf_test_run(struct bpf_prog *prog, void *ctx, u32 repeat,
87                         u32 *retval, u32 *time, bool xdp)
88 {
89         struct bpf_cgroup_storage *storage[MAX_BPF_CGROUP_STORAGE_TYPE] = { NULL };
90         struct bpf_test_timer t = { NO_MIGRATE };
91         enum bpf_cgroup_storage_type stype;
92         int ret;
93
94         for_each_cgroup_storage_type(stype) {
95                 storage[stype] = bpf_cgroup_storage_alloc(prog, stype);
96                 if (IS_ERR(storage[stype])) {
97                         storage[stype] = NULL;
98                         for_each_cgroup_storage_type(stype)
99                                 bpf_cgroup_storage_free(storage[stype]);
100                         return -ENOMEM;
101                 }
102         }
103
104         if (!repeat)
105                 repeat = 1;
106
107         bpf_test_timer_enter(&t);
108         do {
109                 ret = bpf_cgroup_storage_set(storage);
110                 if (ret)
111                         break;
112
113                 if (xdp)
114                         *retval = bpf_prog_run_xdp(prog, ctx);
115                 else
116                         *retval = BPF_PROG_RUN(prog, ctx);
117
118                 bpf_cgroup_storage_unset();
119
120         } while (bpf_test_timer_continue(&t, repeat, &ret, time));
121         bpf_test_timer_leave(&t);
122
123         for_each_cgroup_storage_type(stype)
124                 bpf_cgroup_storage_free(storage[stype]);
125
126         return ret;
127 }
128
129 static int bpf_test_finish(const union bpf_attr *kattr,
130                            union bpf_attr __user *uattr, const void *data,
131                            u32 size, u32 retval, u32 duration)
132 {
133         void __user *data_out = u64_to_user_ptr(kattr->test.data_out);
134         int err = -EFAULT;
135         u32 copy_size = size;
136
137         /* Clamp copy if the user has provided a size hint, but copy the full
138          * buffer if not to retain old behaviour.
139          */
140         if (kattr->test.data_size_out &&
141             copy_size > kattr->test.data_size_out) {
142                 copy_size = kattr->test.data_size_out;
143                 err = -ENOSPC;
144         }
145
146         if (data_out && copy_to_user(data_out, data, copy_size))
147                 goto out;
148         if (copy_to_user(&uattr->test.data_size_out, &size, sizeof(size)))
149                 goto out;
150         if (copy_to_user(&uattr->test.retval, &retval, sizeof(retval)))
151                 goto out;
152         if (copy_to_user(&uattr->test.duration, &duration, sizeof(duration)))
153                 goto out;
154         if (err != -ENOSPC)
155                 err = 0;
156 out:
157         trace_bpf_test_finish(&err);
158         return err;
159 }
160
161 /* Integer types of various sizes and pointer combinations cover variety of
162  * architecture dependent calling conventions. 7+ can be supported in the
163  * future.
164  */
165 __diag_push();
166 __diag_ignore(GCC, 8, "-Wmissing-prototypes",
167               "Global functions as their definitions will be in vmlinux BTF");
168 int noinline bpf_fentry_test1(int a)
169 {
170         return a + 1;
171 }
172
173 int noinline bpf_fentry_test2(int a, u64 b)
174 {
175         return a + b;
176 }
177
178 int noinline bpf_fentry_test3(char a, int b, u64 c)
179 {
180         return a + b + c;
181 }
182
183 int noinline bpf_fentry_test4(void *a, char b, int c, u64 d)
184 {
185         return (long)a + b + c + d;
186 }
187
188 int noinline bpf_fentry_test5(u64 a, void *b, short c, int d, u64 e)
189 {
190         return a + (long)b + c + d + e;
191 }
192
193 int noinline bpf_fentry_test6(u64 a, void *b, short c, int d, void *e, u64 f)
194 {
195         return a + (long)b + c + d + (long)e + f;
196 }
197
198 struct bpf_fentry_test_t {
199         struct bpf_fentry_test_t *a;
200 };
201
202 int noinline bpf_fentry_test7(struct bpf_fentry_test_t *arg)
203 {
204         return (long)arg;
205 }
206
207 int noinline bpf_fentry_test8(struct bpf_fentry_test_t *arg)
208 {
209         return (long)arg->a;
210 }
211
212 int noinline bpf_modify_return_test(int a, int *b)
213 {
214         *b += 1;
215         return a + *b;
216 }
217 __diag_pop();
218
219 ALLOW_ERROR_INJECTION(bpf_modify_return_test, ERRNO);
220
221 static void *bpf_test_init(const union bpf_attr *kattr, u32 size,
222                            u32 headroom, u32 tailroom)
223 {
224         void __user *data_in = u64_to_user_ptr(kattr->test.data_in);
225         u32 user_size = kattr->test.data_size_in;
226         void *data;
227
228         if (size < ETH_HLEN || size > PAGE_SIZE - headroom - tailroom)
229                 return ERR_PTR(-EINVAL);
230
231         if (user_size > size)
232                 return ERR_PTR(-EMSGSIZE);
233
234         data = kzalloc(size + headroom + tailroom, GFP_USER);
235         if (!data)
236                 return ERR_PTR(-ENOMEM);
237
238         if (copy_from_user(data + headroom, data_in, user_size)) {
239                 kfree(data);
240                 return ERR_PTR(-EFAULT);
241         }
242
243         return data;
244 }
245
246 int bpf_prog_test_run_tracing(struct bpf_prog *prog,
247                               const union bpf_attr *kattr,
248                               union bpf_attr __user *uattr)
249 {
250         struct bpf_fentry_test_t arg = {};
251         u16 side_effect = 0, ret = 0;
252         int b = 2, err = -EFAULT;
253         u32 retval = 0;
254
255         if (kattr->test.flags || kattr->test.cpu)
256                 return -EINVAL;
257
258         switch (prog->expected_attach_type) {
259         case BPF_TRACE_FENTRY:
260         case BPF_TRACE_FEXIT:
261                 if (bpf_fentry_test1(1) != 2 ||
262                     bpf_fentry_test2(2, 3) != 5 ||
263                     bpf_fentry_test3(4, 5, 6) != 15 ||
264                     bpf_fentry_test4((void *)7, 8, 9, 10) != 34 ||
265                     bpf_fentry_test5(11, (void *)12, 13, 14, 15) != 65 ||
266                     bpf_fentry_test6(16, (void *)17, 18, 19, (void *)20, 21) != 111 ||
267                     bpf_fentry_test7((struct bpf_fentry_test_t *)0) != 0 ||
268                     bpf_fentry_test8(&arg) != 0)
269                         goto out;
270                 break;
271         case BPF_MODIFY_RETURN:
272                 ret = bpf_modify_return_test(1, &b);
273                 if (b != 2)
274                         side_effect = 1;
275                 break;
276         default:
277                 goto out;
278         }
279
280         retval = ((u32)side_effect << 16) | ret;
281         if (copy_to_user(&uattr->test.retval, &retval, sizeof(retval)))
282                 goto out;
283
284         err = 0;
285 out:
286         trace_bpf_test_finish(&err);
287         return err;
288 }
289
290 struct bpf_raw_tp_test_run_info {
291         struct bpf_prog *prog;
292         void *ctx;
293         u32 retval;
294 };
295
296 static void
297 __bpf_prog_test_run_raw_tp(void *data)
298 {
299         struct bpf_raw_tp_test_run_info *info = data;
300
301         rcu_read_lock();
302         info->retval = BPF_PROG_RUN(info->prog, info->ctx);
303         rcu_read_unlock();
304 }
305
306 int bpf_prog_test_run_raw_tp(struct bpf_prog *prog,
307                              const union bpf_attr *kattr,
308                              union bpf_attr __user *uattr)
309 {
310         void __user *ctx_in = u64_to_user_ptr(kattr->test.ctx_in);
311         __u32 ctx_size_in = kattr->test.ctx_size_in;
312         struct bpf_raw_tp_test_run_info info;
313         int cpu = kattr->test.cpu, err = 0;
314         int current_cpu;
315
316         /* doesn't support data_in/out, ctx_out, duration, or repeat */
317         if (kattr->test.data_in || kattr->test.data_out ||
318             kattr->test.ctx_out || kattr->test.duration ||
319             kattr->test.repeat)
320                 return -EINVAL;
321
322         if (ctx_size_in < prog->aux->max_ctx_offset ||
323             ctx_size_in > MAX_BPF_FUNC_ARGS * sizeof(u64))
324                 return -EINVAL;
325
326         if ((kattr->test.flags & BPF_F_TEST_RUN_ON_CPU) == 0 && cpu != 0)
327                 return -EINVAL;
328
329         if (ctx_size_in) {
330                 info.ctx = kzalloc(ctx_size_in, GFP_USER);
331                 if (!info.ctx)
332                         return -ENOMEM;
333                 if (copy_from_user(info.ctx, ctx_in, ctx_size_in)) {
334                         err = -EFAULT;
335                         goto out;
336                 }
337         } else {
338                 info.ctx = NULL;
339         }
340
341         info.prog = prog;
342
343         current_cpu = get_cpu();
344         if ((kattr->test.flags & BPF_F_TEST_RUN_ON_CPU) == 0 ||
345             cpu == current_cpu) {
346                 __bpf_prog_test_run_raw_tp(&info);
347         } else if (cpu >= nr_cpu_ids || !cpu_online(cpu)) {
348                 /* smp_call_function_single() also checks cpu_online()
349                  * after csd_lock(). However, since cpu is from user
350                  * space, let's do an extra quick check to filter out
351                  * invalid value before smp_call_function_single().
352                  */
353                 err = -ENXIO;
354         } else {
355                 err = smp_call_function_single(cpu, __bpf_prog_test_run_raw_tp,
356                                                &info, 1);
357         }
358         put_cpu();
359
360         if (!err &&
361             copy_to_user(&uattr->test.retval, &info.retval, sizeof(u32)))
362                 err = -EFAULT;
363
364 out:
365         kfree(info.ctx);
366         return err;
367 }
368
369 static void *bpf_ctx_init(const union bpf_attr *kattr, u32 max_size)
370 {
371         void __user *data_in = u64_to_user_ptr(kattr->test.ctx_in);
372         void __user *data_out = u64_to_user_ptr(kattr->test.ctx_out);
373         u32 size = kattr->test.ctx_size_in;
374         void *data;
375         int err;
376
377         if (!data_in && !data_out)
378                 return NULL;
379
380         data = kzalloc(max_size, GFP_USER);
381         if (!data)
382                 return ERR_PTR(-ENOMEM);
383
384         if (data_in) {
385                 err = bpf_check_uarg_tail_zero(data_in, max_size, size);
386                 if (err) {
387                         kfree(data);
388                         return ERR_PTR(err);
389                 }
390
391                 size = min_t(u32, max_size, size);
392                 if (copy_from_user(data, data_in, size)) {
393                         kfree(data);
394                         return ERR_PTR(-EFAULT);
395                 }
396         }
397         return data;
398 }
399
400 static int bpf_ctx_finish(const union bpf_attr *kattr,
401                           union bpf_attr __user *uattr, const void *data,
402                           u32 size)
403 {
404         void __user *data_out = u64_to_user_ptr(kattr->test.ctx_out);
405         int err = -EFAULT;
406         u32 copy_size = size;
407
408         if (!data || !data_out)
409                 return 0;
410
411         if (copy_size > kattr->test.ctx_size_out) {
412                 copy_size = kattr->test.ctx_size_out;
413                 err = -ENOSPC;
414         }
415
416         if (copy_to_user(data_out, data, copy_size))
417                 goto out;
418         if (copy_to_user(&uattr->test.ctx_size_out, &size, sizeof(size)))
419                 goto out;
420         if (err != -ENOSPC)
421                 err = 0;
422 out:
423         return err;
424 }
425
426 /**
427  * range_is_zero - test whether buffer is initialized
428  * @buf: buffer to check
429  * @from: check from this position
430  * @to: check up until (excluding) this position
431  *
432  * This function returns true if the there is a non-zero byte
433  * in the buf in the range [from,to).
434  */
435 static inline bool range_is_zero(void *buf, size_t from, size_t to)
436 {
437         return !memchr_inv((u8 *)buf + from, 0, to - from);
438 }
439
440 static int convert___skb_to_skb(struct sk_buff *skb, struct __sk_buff *__skb)
441 {
442         struct qdisc_skb_cb *cb = (struct qdisc_skb_cb *)skb->cb;
443
444         if (!skb->len)
445                 return -EINVAL;
446
447         if (!__skb)
448                 return 0;
449
450         /* make sure the fields we don't use are zeroed */
451         if (!range_is_zero(__skb, 0, offsetof(struct __sk_buff, mark)))
452                 return -EINVAL;
453
454         /* mark is allowed */
455
456         if (!range_is_zero(__skb, offsetofend(struct __sk_buff, mark),
457                            offsetof(struct __sk_buff, priority)))
458                 return -EINVAL;
459
460         /* priority is allowed */
461
462         if (!range_is_zero(__skb, offsetofend(struct __sk_buff, priority),
463                            offsetof(struct __sk_buff, ifindex)))
464                 return -EINVAL;
465
466         /* ifindex is allowed */
467
468         if (!range_is_zero(__skb, offsetofend(struct __sk_buff, ifindex),
469                            offsetof(struct __sk_buff, cb)))
470                 return -EINVAL;
471
472         /* cb is allowed */
473
474         if (!range_is_zero(__skb, offsetofend(struct __sk_buff, cb),
475                            offsetof(struct __sk_buff, tstamp)))
476                 return -EINVAL;
477
478         /* tstamp is allowed */
479         /* wire_len is allowed */
480         /* gso_segs is allowed */
481
482         if (!range_is_zero(__skb, offsetofend(struct __sk_buff, gso_segs),
483                            offsetof(struct __sk_buff, gso_size)))
484                 return -EINVAL;
485
486         /* gso_size is allowed */
487
488         if (!range_is_zero(__skb, offsetofend(struct __sk_buff, gso_size),
489                            sizeof(struct __sk_buff)))
490                 return -EINVAL;
491
492         skb->mark = __skb->mark;
493         skb->priority = __skb->priority;
494         skb->tstamp = __skb->tstamp;
495         memcpy(&cb->data, __skb->cb, QDISC_CB_PRIV_LEN);
496
497         if (__skb->wire_len == 0) {
498                 cb->pkt_len = skb->len;
499         } else {
500                 if (__skb->wire_len < skb->len ||
501                     __skb->wire_len > GSO_MAX_SIZE)
502                         return -EINVAL;
503                 cb->pkt_len = __skb->wire_len;
504         }
505
506         if (__skb->gso_segs > GSO_MAX_SEGS)
507                 return -EINVAL;
508         skb_shinfo(skb)->gso_segs = __skb->gso_segs;
509         skb_shinfo(skb)->gso_size = __skb->gso_size;
510
511         return 0;
512 }
513
514 static void convert_skb_to___skb(struct sk_buff *skb, struct __sk_buff *__skb)
515 {
516         struct qdisc_skb_cb *cb = (struct qdisc_skb_cb *)skb->cb;
517
518         if (!__skb)
519                 return;
520
521         __skb->mark = skb->mark;
522         __skb->priority = skb->priority;
523         __skb->ifindex = skb->dev->ifindex;
524         __skb->tstamp = skb->tstamp;
525         memcpy(__skb->cb, &cb->data, QDISC_CB_PRIV_LEN);
526         __skb->wire_len = cb->pkt_len;
527         __skb->gso_segs = skb_shinfo(skb)->gso_segs;
528 }
529
530 static struct proto bpf_dummy_proto = {
531         .name   = "bpf_dummy",
532         .owner  = THIS_MODULE,
533         .obj_size = sizeof(struct sock),
534 };
535
536 int bpf_prog_test_run_skb(struct bpf_prog *prog, const union bpf_attr *kattr,
537                           union bpf_attr __user *uattr)
538 {
539         bool is_l2 = false, is_direct_pkt_access = false;
540         struct net *net = current->nsproxy->net_ns;
541         struct net_device *dev = net->loopback_dev;
542         u32 size = kattr->test.data_size_in;
543         u32 repeat = kattr->test.repeat;
544         struct __sk_buff *ctx = NULL;
545         u32 retval, duration;
546         int hh_len = ETH_HLEN;
547         struct sk_buff *skb;
548         struct sock *sk;
549         void *data;
550         int ret;
551
552         if (kattr->test.flags || kattr->test.cpu)
553                 return -EINVAL;
554
555         data = bpf_test_init(kattr, size, NET_SKB_PAD + NET_IP_ALIGN,
556                              SKB_DATA_ALIGN(sizeof(struct skb_shared_info)));
557         if (IS_ERR(data))
558                 return PTR_ERR(data);
559
560         ctx = bpf_ctx_init(kattr, sizeof(struct __sk_buff));
561         if (IS_ERR(ctx)) {
562                 kfree(data);
563                 return PTR_ERR(ctx);
564         }
565
566         switch (prog->type) {
567         case BPF_PROG_TYPE_SCHED_CLS:
568         case BPF_PROG_TYPE_SCHED_ACT:
569                 is_l2 = true;
570                 fallthrough;
571         case BPF_PROG_TYPE_LWT_IN:
572         case BPF_PROG_TYPE_LWT_OUT:
573         case BPF_PROG_TYPE_LWT_XMIT:
574                 is_direct_pkt_access = true;
575                 break;
576         default:
577                 break;
578         }
579
580         sk = sk_alloc(net, AF_UNSPEC, GFP_USER, &bpf_dummy_proto, 1);
581         if (!sk) {
582                 kfree(data);
583                 kfree(ctx);
584                 return -ENOMEM;
585         }
586         sock_init_data(NULL, sk);
587
588         skb = build_skb(data, 0);
589         if (!skb) {
590                 kfree(data);
591                 kfree(ctx);
592                 sk_free(sk);
593                 return -ENOMEM;
594         }
595         skb->sk = sk;
596
597         skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
598         __skb_put(skb, size);
599         if (ctx && ctx->ifindex > 1) {
600                 dev = dev_get_by_index(net, ctx->ifindex);
601                 if (!dev) {
602                         ret = -ENODEV;
603                         goto out;
604                 }
605         }
606         skb->protocol = eth_type_trans(skb, dev);
607         skb_reset_network_header(skb);
608
609         switch (skb->protocol) {
610         case htons(ETH_P_IP):
611                 sk->sk_family = AF_INET;
612                 if (sizeof(struct iphdr) <= skb_headlen(skb)) {
613                         sk->sk_rcv_saddr = ip_hdr(skb)->saddr;
614                         sk->sk_daddr = ip_hdr(skb)->daddr;
615                 }
616                 break;
617 #if IS_ENABLED(CONFIG_IPV6)
618         case htons(ETH_P_IPV6):
619                 sk->sk_family = AF_INET6;
620                 if (sizeof(struct ipv6hdr) <= skb_headlen(skb)) {
621                         sk->sk_v6_rcv_saddr = ipv6_hdr(skb)->saddr;
622                         sk->sk_v6_daddr = ipv6_hdr(skb)->daddr;
623                 }
624                 break;
625 #endif
626         default:
627                 break;
628         }
629
630         if (is_l2)
631                 __skb_push(skb, hh_len);
632         if (is_direct_pkt_access)
633                 bpf_compute_data_pointers(skb);
634         ret = convert___skb_to_skb(skb, ctx);
635         if (ret)
636                 goto out;
637         ret = bpf_test_run(prog, skb, repeat, &retval, &duration, false);
638         if (ret)
639                 goto out;
640         if (!is_l2) {
641                 if (skb_headroom(skb) < hh_len) {
642                         int nhead = HH_DATA_ALIGN(hh_len - skb_headroom(skb));
643
644                         if (pskb_expand_head(skb, nhead, 0, GFP_USER)) {
645                                 ret = -ENOMEM;
646                                 goto out;
647                         }
648                 }
649                 memset(__skb_push(skb, hh_len), 0, hh_len);
650         }
651         convert_skb_to___skb(skb, ctx);
652
653         size = skb->len;
654         /* bpf program can never convert linear skb to non-linear */
655         if (WARN_ON_ONCE(skb_is_nonlinear(skb)))
656                 size = skb_headlen(skb);
657         ret = bpf_test_finish(kattr, uattr, skb->data, size, retval, duration);
658         if (!ret)
659                 ret = bpf_ctx_finish(kattr, uattr, ctx,
660                                      sizeof(struct __sk_buff));
661 out:
662         if (dev && dev != net->loopback_dev)
663                 dev_put(dev);
664         kfree_skb(skb);
665         sk_free(sk);
666         kfree(ctx);
667         return ret;
668 }
669
670 int bpf_prog_test_run_xdp(struct bpf_prog *prog, const union bpf_attr *kattr,
671                           union bpf_attr __user *uattr)
672 {
673         u32 tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
674         u32 headroom = XDP_PACKET_HEADROOM;
675         u32 size = kattr->test.data_size_in;
676         u32 repeat = kattr->test.repeat;
677         struct netdev_rx_queue *rxqueue;
678         struct xdp_buff xdp = {};
679         u32 retval, duration;
680         u32 max_data_sz;
681         void *data;
682         int ret;
683
684         if (prog->expected_attach_type == BPF_XDP_DEVMAP ||
685             prog->expected_attach_type == BPF_XDP_CPUMAP)
686                 return -EINVAL;
687         if (kattr->test.ctx_in || kattr->test.ctx_out)
688                 return -EINVAL;
689
690         /* XDP have extra tailroom as (most) drivers use full page */
691         max_data_sz = 4096 - headroom - tailroom;
692
693         data = bpf_test_init(kattr, max_data_sz, headroom, tailroom);
694         if (IS_ERR(data))
695                 return PTR_ERR(data);
696
697         xdp.data_hard_start = data;
698         xdp.data = data + headroom;
699         xdp.data_meta = xdp.data;
700         xdp.data_end = xdp.data + size;
701         xdp.frame_sz = headroom + max_data_sz + tailroom;
702
703         rxqueue = __netif_get_rx_queue(current->nsproxy->net_ns->loopback_dev, 0);
704         xdp.rxq = &rxqueue->xdp_rxq;
705         bpf_prog_change_xdp(NULL, prog);
706         ret = bpf_test_run(prog, &xdp, repeat, &retval, &duration, true);
707         if (ret)
708                 goto out;
709         if (xdp.data != data + headroom || xdp.data_end != xdp.data + size)
710                 size = xdp.data_end - xdp.data;
711         ret = bpf_test_finish(kattr, uattr, xdp.data, size, retval, duration);
712 out:
713         bpf_prog_change_xdp(prog, NULL);
714         kfree(data);
715         return ret;
716 }
717
718 static int verify_user_bpf_flow_keys(struct bpf_flow_keys *ctx)
719 {
720         /* make sure the fields we don't use are zeroed */
721         if (!range_is_zero(ctx, 0, offsetof(struct bpf_flow_keys, flags)))
722                 return -EINVAL;
723
724         /* flags is allowed */
725
726         if (!range_is_zero(ctx, offsetofend(struct bpf_flow_keys, flags),
727                            sizeof(struct bpf_flow_keys)))
728                 return -EINVAL;
729
730         return 0;
731 }
732
733 int bpf_prog_test_run_flow_dissector(struct bpf_prog *prog,
734                                      const union bpf_attr *kattr,
735                                      union bpf_attr __user *uattr)
736 {
737         struct bpf_test_timer t = { NO_PREEMPT };
738         u32 size = kattr->test.data_size_in;
739         struct bpf_flow_dissector ctx = {};
740         u32 repeat = kattr->test.repeat;
741         struct bpf_flow_keys *user_ctx;
742         struct bpf_flow_keys flow_keys;
743         const struct ethhdr *eth;
744         unsigned int flags = 0;
745         u32 retval, duration;
746         void *data;
747         int ret;
748
749         if (prog->type != BPF_PROG_TYPE_FLOW_DISSECTOR)
750                 return -EINVAL;
751
752         if (kattr->test.flags || kattr->test.cpu)
753                 return -EINVAL;
754
755         if (size < ETH_HLEN)
756                 return -EINVAL;
757
758         data = bpf_test_init(kattr, size, 0, 0);
759         if (IS_ERR(data))
760                 return PTR_ERR(data);
761
762         eth = (struct ethhdr *)data;
763
764         if (!repeat)
765                 repeat = 1;
766
767         user_ctx = bpf_ctx_init(kattr, sizeof(struct bpf_flow_keys));
768         if (IS_ERR(user_ctx)) {
769                 kfree(data);
770                 return PTR_ERR(user_ctx);
771         }
772         if (user_ctx) {
773                 ret = verify_user_bpf_flow_keys(user_ctx);
774                 if (ret)
775                         goto out;
776                 flags = user_ctx->flags;
777         }
778
779         ctx.flow_keys = &flow_keys;
780         ctx.data = data;
781         ctx.data_end = (__u8 *)data + size;
782
783         bpf_test_timer_enter(&t);
784         do {
785                 retval = bpf_flow_dissect(prog, &ctx, eth->h_proto, ETH_HLEN,
786                                           size, flags);
787         } while (bpf_test_timer_continue(&t, repeat, &ret, &duration));
788         bpf_test_timer_leave(&t);
789
790         if (ret < 0)
791                 goto out;
792
793         ret = bpf_test_finish(kattr, uattr, &flow_keys, sizeof(flow_keys),
794                               retval, duration);
795         if (!ret)
796                 ret = bpf_ctx_finish(kattr, uattr, user_ctx,
797                                      sizeof(struct bpf_flow_keys));
798
799 out:
800         kfree(user_ctx);
801         kfree(data);
802         return ret;
803 }
804
805 int bpf_prog_test_run_sk_lookup(struct bpf_prog *prog, const union bpf_attr *kattr,
806                                 union bpf_attr __user *uattr)
807 {
808         struct bpf_test_timer t = { NO_PREEMPT };
809         struct bpf_prog_array *progs = NULL;
810         struct bpf_sk_lookup_kern ctx = {};
811         u32 repeat = kattr->test.repeat;
812         struct bpf_sk_lookup *user_ctx;
813         u32 retval, duration;
814         int ret = -EINVAL;
815
816         if (prog->type != BPF_PROG_TYPE_SK_LOOKUP)
817                 return -EINVAL;
818
819         if (kattr->test.flags || kattr->test.cpu)
820                 return -EINVAL;
821
822         if (kattr->test.data_in || kattr->test.data_size_in || kattr->test.data_out ||
823             kattr->test.data_size_out)
824                 return -EINVAL;
825
826         if (!repeat)
827                 repeat = 1;
828
829         user_ctx = bpf_ctx_init(kattr, sizeof(*user_ctx));
830         if (IS_ERR(user_ctx))
831                 return PTR_ERR(user_ctx);
832
833         if (!user_ctx)
834                 return -EINVAL;
835
836         if (user_ctx->sk)
837                 goto out;
838
839         if (!range_is_zero(user_ctx, offsetofend(typeof(*user_ctx), local_port), sizeof(*user_ctx)))
840                 goto out;
841
842         if (user_ctx->local_port > U16_MAX || user_ctx->remote_port > U16_MAX) {
843                 ret = -ERANGE;
844                 goto out;
845         }
846
847         ctx.family = (u16)user_ctx->family;
848         ctx.protocol = (u16)user_ctx->protocol;
849         ctx.dport = (u16)user_ctx->local_port;
850         ctx.sport = (__force __be16)user_ctx->remote_port;
851
852         switch (ctx.family) {
853         case AF_INET:
854                 ctx.v4.daddr = (__force __be32)user_ctx->local_ip4;
855                 ctx.v4.saddr = (__force __be32)user_ctx->remote_ip4;
856                 break;
857
858 #if IS_ENABLED(CONFIG_IPV6)
859         case AF_INET6:
860                 ctx.v6.daddr = (struct in6_addr *)user_ctx->local_ip6;
861                 ctx.v6.saddr = (struct in6_addr *)user_ctx->remote_ip6;
862                 break;
863 #endif
864
865         default:
866                 ret = -EAFNOSUPPORT;
867                 goto out;
868         }
869
870         progs = bpf_prog_array_alloc(1, GFP_KERNEL);
871         if (!progs) {
872                 ret = -ENOMEM;
873                 goto out;
874         }
875
876         progs->items[0].prog = prog;
877
878         bpf_test_timer_enter(&t);
879         do {
880                 ctx.selected_sk = NULL;
881                 retval = BPF_PROG_SK_LOOKUP_RUN_ARRAY(progs, ctx, BPF_PROG_RUN);
882         } while (bpf_test_timer_continue(&t, repeat, &ret, &duration));
883         bpf_test_timer_leave(&t);
884
885         if (ret < 0)
886                 goto out;
887
888         user_ctx->cookie = 0;
889         if (ctx.selected_sk) {
890                 if (ctx.selected_sk->sk_reuseport && !ctx.no_reuseport) {
891                         ret = -EOPNOTSUPP;
892                         goto out;
893                 }
894
895                 user_ctx->cookie = sock_gen_cookie(ctx.selected_sk);
896         }
897
898         ret = bpf_test_finish(kattr, uattr, NULL, 0, retval, duration);
899         if (!ret)
900                 ret = bpf_ctx_finish(kattr, uattr, user_ctx, sizeof(*user_ctx));
901
902 out:
903         bpf_prog_array_free(progs);
904         kfree(user_ctx);
905         return ret;
906 }