1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright (c) 2017 Facebook
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>
13 #include <linux/error-injection.h>
15 #define CREATE_TRACE_POINTS
16 #include <trace/events/bpf_test_run.h>
18 static int bpf_test_run(struct bpf_prog *prog, void *ctx, u32 repeat,
19 u32 *retval, u32 *time, bool xdp)
21 struct bpf_cgroup_storage *storage[MAX_BPF_CGROUP_STORAGE_TYPE] = { NULL };
22 enum bpf_cgroup_storage_type stype;
23 u64 time_start, time_spent = 0;
27 for_each_cgroup_storage_type(stype) {
28 storage[stype] = bpf_cgroup_storage_alloc(prog, stype);
29 if (IS_ERR(storage[stype])) {
30 storage[stype] = NULL;
31 for_each_cgroup_storage_type(stype)
32 bpf_cgroup_storage_free(storage[stype]);
42 time_start = ktime_get_ns();
43 for (i = 0; i < repeat; i++) {
44 bpf_cgroup_storage_set(storage);
47 *retval = bpf_prog_run_xdp(prog, ctx);
49 *retval = BPF_PROG_RUN(prog, ctx);
51 if (signal_pending(current)) {
57 time_spent += ktime_get_ns() - time_start;
65 time_start = ktime_get_ns();
68 time_spent += ktime_get_ns() - time_start;
72 do_div(time_spent, repeat);
73 *time = time_spent > U32_MAX ? U32_MAX : (u32)time_spent;
75 for_each_cgroup_storage_type(stype)
76 bpf_cgroup_storage_free(storage[stype]);
81 static int bpf_test_finish(const union bpf_attr *kattr,
82 union bpf_attr __user *uattr, const void *data,
83 u32 size, u32 retval, u32 duration)
85 void __user *data_out = u64_to_user_ptr(kattr->test.data_out);
89 /* Clamp copy if the user has provided a size hint, but copy the full
90 * buffer if not to retain old behaviour.
92 if (kattr->test.data_size_out &&
93 copy_size > kattr->test.data_size_out) {
94 copy_size = kattr->test.data_size_out;
98 if (data_out && copy_to_user(data_out, data, copy_size))
100 if (copy_to_user(&uattr->test.data_size_out, &size, sizeof(size)))
102 if (copy_to_user(&uattr->test.retval, &retval, sizeof(retval)))
104 if (copy_to_user(&uattr->test.duration, &duration, sizeof(duration)))
109 trace_bpf_test_finish(&err);
113 /* Integer types of various sizes and pointer combinations cover variety of
114 * architecture dependent calling conventions. 7+ can be supported in the
118 __diag_ignore(GCC, 8, "-Wmissing-prototypes",
119 "Global functions as their definitions will be in vmlinux BTF");
120 int noinline bpf_fentry_test1(int a)
125 int noinline bpf_fentry_test2(int a, u64 b)
130 int noinline bpf_fentry_test3(char a, int b, u64 c)
135 int noinline bpf_fentry_test4(void *a, char b, int c, u64 d)
137 return (long)a + b + c + d;
140 int noinline bpf_fentry_test5(u64 a, void *b, short c, int d, u64 e)
142 return a + (long)b + c + d + e;
145 int noinline bpf_fentry_test6(u64 a, void *b, short c, int d, void *e, u64 f)
147 return a + (long)b + c + d + (long)e + f;
150 int noinline bpf_modify_return_test(int a, int *b)
157 ALLOW_ERROR_INJECTION(bpf_modify_return_test, ERRNO);
159 static void *bpf_test_init(const union bpf_attr *kattr, u32 size,
160 u32 headroom, u32 tailroom)
162 void __user *data_in = u64_to_user_ptr(kattr->test.data_in);
165 if (size < ETH_HLEN || size > PAGE_SIZE - headroom - tailroom)
166 return ERR_PTR(-EINVAL);
168 data = kzalloc(size + headroom + tailroom, GFP_USER);
170 return ERR_PTR(-ENOMEM);
172 if (copy_from_user(data + headroom, data_in, size)) {
174 return ERR_PTR(-EFAULT);
180 int bpf_prog_test_run_tracing(struct bpf_prog *prog,
181 const union bpf_attr *kattr,
182 union bpf_attr __user *uattr)
184 u16 side_effect = 0, ret = 0;
185 int b = 2, err = -EFAULT;
188 switch (prog->expected_attach_type) {
189 case BPF_TRACE_FENTRY:
190 case BPF_TRACE_FEXIT:
191 if (bpf_fentry_test1(1) != 2 ||
192 bpf_fentry_test2(2, 3) != 5 ||
193 bpf_fentry_test3(4, 5, 6) != 15 ||
194 bpf_fentry_test4((void *)7, 8, 9, 10) != 34 ||
195 bpf_fentry_test5(11, (void *)12, 13, 14, 15) != 65 ||
196 bpf_fentry_test6(16, (void *)17, 18, 19, (void *)20, 21) != 111)
199 case BPF_MODIFY_RETURN:
200 ret = bpf_modify_return_test(1, &b);
208 retval = ((u32)side_effect << 16) | ret;
209 if (copy_to_user(&uattr->test.retval, &retval, sizeof(retval)))
214 trace_bpf_test_finish(&err);
218 static void *bpf_ctx_init(const union bpf_attr *kattr, u32 max_size)
220 void __user *data_in = u64_to_user_ptr(kattr->test.ctx_in);
221 void __user *data_out = u64_to_user_ptr(kattr->test.ctx_out);
222 u32 size = kattr->test.ctx_size_in;
226 if (!data_in && !data_out)
229 data = kzalloc(max_size, GFP_USER);
231 return ERR_PTR(-ENOMEM);
234 err = bpf_check_uarg_tail_zero(data_in, max_size, size);
240 size = min_t(u32, max_size, size);
241 if (copy_from_user(data, data_in, size)) {
243 return ERR_PTR(-EFAULT);
249 static int bpf_ctx_finish(const union bpf_attr *kattr,
250 union bpf_attr __user *uattr, const void *data,
253 void __user *data_out = u64_to_user_ptr(kattr->test.ctx_out);
255 u32 copy_size = size;
257 if (!data || !data_out)
260 if (copy_size > kattr->test.ctx_size_out) {
261 copy_size = kattr->test.ctx_size_out;
265 if (copy_to_user(data_out, data, copy_size))
267 if (copy_to_user(&uattr->test.ctx_size_out, &size, sizeof(size)))
276 * range_is_zero - test whether buffer is initialized
277 * @buf: buffer to check
278 * @from: check from this position
279 * @to: check up until (excluding) this position
281 * This function returns true if the there is a non-zero byte
282 * in the buf in the range [from,to).
284 static inline bool range_is_zero(void *buf, size_t from, size_t to)
286 return !memchr_inv((u8 *)buf + from, 0, to - from);
289 static int convert___skb_to_skb(struct sk_buff *skb, struct __sk_buff *__skb)
291 struct qdisc_skb_cb *cb = (struct qdisc_skb_cb *)skb->cb;
296 /* make sure the fields we don't use are zeroed */
297 if (!range_is_zero(__skb, 0, offsetof(struct __sk_buff, mark)))
300 /* mark is allowed */
302 if (!range_is_zero(__skb, offsetofend(struct __sk_buff, mark),
303 offsetof(struct __sk_buff, priority)))
306 /* priority is allowed */
308 if (!range_is_zero(__skb, offsetofend(struct __sk_buff, priority),
309 offsetof(struct __sk_buff, cb)))
314 if (!range_is_zero(__skb, offsetofend(struct __sk_buff, cb),
315 offsetof(struct __sk_buff, tstamp)))
318 /* tstamp is allowed */
319 /* wire_len is allowed */
320 /* gso_segs is allowed */
322 if (!range_is_zero(__skb, offsetofend(struct __sk_buff, gso_segs),
323 offsetof(struct __sk_buff, gso_size)))
326 /* gso_size is allowed */
328 if (!range_is_zero(__skb, offsetofend(struct __sk_buff, gso_size),
329 sizeof(struct __sk_buff)))
332 skb->mark = __skb->mark;
333 skb->priority = __skb->priority;
334 skb->tstamp = __skb->tstamp;
335 memcpy(&cb->data, __skb->cb, QDISC_CB_PRIV_LEN);
337 if (__skb->wire_len == 0) {
338 cb->pkt_len = skb->len;
340 if (__skb->wire_len < skb->len ||
341 __skb->wire_len > GSO_MAX_SIZE)
343 cb->pkt_len = __skb->wire_len;
346 if (__skb->gso_segs > GSO_MAX_SEGS)
348 skb_shinfo(skb)->gso_segs = __skb->gso_segs;
349 skb_shinfo(skb)->gso_size = __skb->gso_size;
354 static void convert_skb_to___skb(struct sk_buff *skb, struct __sk_buff *__skb)
356 struct qdisc_skb_cb *cb = (struct qdisc_skb_cb *)skb->cb;
361 __skb->mark = skb->mark;
362 __skb->priority = skb->priority;
363 __skb->tstamp = skb->tstamp;
364 memcpy(__skb->cb, &cb->data, QDISC_CB_PRIV_LEN);
365 __skb->wire_len = cb->pkt_len;
366 __skb->gso_segs = skb_shinfo(skb)->gso_segs;
369 int bpf_prog_test_run_skb(struct bpf_prog *prog, const union bpf_attr *kattr,
370 union bpf_attr __user *uattr)
372 bool is_l2 = false, is_direct_pkt_access = false;
373 u32 size = kattr->test.data_size_in;
374 u32 repeat = kattr->test.repeat;
375 struct __sk_buff *ctx = NULL;
376 u32 retval, duration;
377 int hh_len = ETH_HLEN;
383 data = bpf_test_init(kattr, size, NET_SKB_PAD + NET_IP_ALIGN,
384 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)));
386 return PTR_ERR(data);
388 ctx = bpf_ctx_init(kattr, sizeof(struct __sk_buff));
394 switch (prog->type) {
395 case BPF_PROG_TYPE_SCHED_CLS:
396 case BPF_PROG_TYPE_SCHED_ACT:
399 case BPF_PROG_TYPE_LWT_IN:
400 case BPF_PROG_TYPE_LWT_OUT:
401 case BPF_PROG_TYPE_LWT_XMIT:
402 is_direct_pkt_access = true;
408 sk = kzalloc(sizeof(struct sock), GFP_USER);
414 sock_net_set(sk, current->nsproxy->net_ns);
415 sock_init_data(NULL, sk);
417 skb = build_skb(data, 0);
426 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
427 __skb_put(skb, size);
428 skb->protocol = eth_type_trans(skb, current->nsproxy->net_ns->loopback_dev);
429 skb_reset_network_header(skb);
432 __skb_push(skb, hh_len);
433 if (is_direct_pkt_access)
434 bpf_compute_data_pointers(skb);
435 ret = convert___skb_to_skb(skb, ctx);
438 ret = bpf_test_run(prog, skb, repeat, &retval, &duration, false);
442 if (skb_headroom(skb) < hh_len) {
443 int nhead = HH_DATA_ALIGN(hh_len - skb_headroom(skb));
445 if (pskb_expand_head(skb, nhead, 0, GFP_USER)) {
450 memset(__skb_push(skb, hh_len), 0, hh_len);
452 convert_skb_to___skb(skb, ctx);
455 /* bpf program can never convert linear skb to non-linear */
456 if (WARN_ON_ONCE(skb_is_nonlinear(skb)))
457 size = skb_headlen(skb);
458 ret = bpf_test_finish(kattr, uattr, skb->data, size, retval, duration);
460 ret = bpf_ctx_finish(kattr, uattr, ctx,
461 sizeof(struct __sk_buff));
464 bpf_sk_storage_free(sk);
470 int bpf_prog_test_run_xdp(struct bpf_prog *prog, const union bpf_attr *kattr,
471 union bpf_attr __user *uattr)
473 u32 size = kattr->test.data_size_in;
474 u32 repeat = kattr->test.repeat;
475 struct netdev_rx_queue *rxqueue;
476 struct xdp_buff xdp = {};
477 u32 retval, duration;
481 if (kattr->test.ctx_in || kattr->test.ctx_out)
484 data = bpf_test_init(kattr, size, XDP_PACKET_HEADROOM + NET_IP_ALIGN, 0);
486 return PTR_ERR(data);
488 xdp.data_hard_start = data;
489 xdp.data = data + XDP_PACKET_HEADROOM + NET_IP_ALIGN;
490 xdp.data_meta = xdp.data;
491 xdp.data_end = xdp.data + size;
493 rxqueue = __netif_get_rx_queue(current->nsproxy->net_ns->loopback_dev, 0);
494 xdp.rxq = &rxqueue->xdp_rxq;
495 bpf_prog_change_xdp(NULL, prog);
496 ret = bpf_test_run(prog, &xdp, repeat, &retval, &duration, true);
499 if (xdp.data != data + XDP_PACKET_HEADROOM + NET_IP_ALIGN ||
500 xdp.data_end != xdp.data + size)
501 size = xdp.data_end - xdp.data;
502 ret = bpf_test_finish(kattr, uattr, xdp.data, size, retval, duration);
504 bpf_prog_change_xdp(prog, NULL);
509 static int verify_user_bpf_flow_keys(struct bpf_flow_keys *ctx)
511 /* make sure the fields we don't use are zeroed */
512 if (!range_is_zero(ctx, 0, offsetof(struct bpf_flow_keys, flags)))
515 /* flags is allowed */
517 if (!range_is_zero(ctx, offsetofend(struct bpf_flow_keys, flags),
518 sizeof(struct bpf_flow_keys)))
524 int bpf_prog_test_run_flow_dissector(struct bpf_prog *prog,
525 const union bpf_attr *kattr,
526 union bpf_attr __user *uattr)
528 u32 size = kattr->test.data_size_in;
529 struct bpf_flow_dissector ctx = {};
530 u32 repeat = kattr->test.repeat;
531 struct bpf_flow_keys *user_ctx;
532 struct bpf_flow_keys flow_keys;
533 u64 time_start, time_spent = 0;
534 const struct ethhdr *eth;
535 unsigned int flags = 0;
536 u32 retval, duration;
541 if (prog->type != BPF_PROG_TYPE_FLOW_DISSECTOR)
547 data = bpf_test_init(kattr, size, 0, 0);
549 return PTR_ERR(data);
551 eth = (struct ethhdr *)data;
556 user_ctx = bpf_ctx_init(kattr, sizeof(struct bpf_flow_keys));
557 if (IS_ERR(user_ctx)) {
559 return PTR_ERR(user_ctx);
562 ret = verify_user_bpf_flow_keys(user_ctx);
565 flags = user_ctx->flags;
568 ctx.flow_keys = &flow_keys;
570 ctx.data_end = (__u8 *)data + size;
574 time_start = ktime_get_ns();
575 for (i = 0; i < repeat; i++) {
576 retval = bpf_flow_dissect(prog, &ctx, eth->h_proto, ETH_HLEN,
579 if (signal_pending(current)) {
587 if (need_resched()) {
588 time_spent += ktime_get_ns() - time_start;
596 time_start = ktime_get_ns();
599 time_spent += ktime_get_ns() - time_start;
603 do_div(time_spent, repeat);
604 duration = time_spent > U32_MAX ? U32_MAX : (u32)time_spent;
606 ret = bpf_test_finish(kattr, uattr, &flow_keys, sizeof(flow_keys),
609 ret = bpf_ctx_finish(kattr, uattr, user_ctx,
610 sizeof(struct bpf_flow_keys));