xref: /linux/net/bpf/test_run.c (revision f23c4b3924d2e9382820ee677b68d42d5dd7b08b)
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 
14 #define CREATE_TRACE_POINTS
15 #include <trace/events/bpf_test_run.h>
16 
17 static int bpf_test_run(struct bpf_prog *prog, void *ctx, u32 repeat,
18 			u32 *retval, u32 *time, bool xdp)
19 {
20 	struct bpf_cgroup_storage *storage[MAX_BPF_CGROUP_STORAGE_TYPE] = { NULL };
21 	enum bpf_cgroup_storage_type stype;
22 	u64 time_start, time_spent = 0;
23 	int ret = 0;
24 	u32 i;
25 
26 	for_each_cgroup_storage_type(stype) {
27 		storage[stype] = bpf_cgroup_storage_alloc(prog, stype);
28 		if (IS_ERR(storage[stype])) {
29 			storage[stype] = NULL;
30 			for_each_cgroup_storage_type(stype)
31 				bpf_cgroup_storage_free(storage[stype]);
32 			return -ENOMEM;
33 		}
34 	}
35 
36 	if (!repeat)
37 		repeat = 1;
38 
39 	rcu_read_lock();
40 	preempt_disable();
41 	time_start = ktime_get_ns();
42 	for (i = 0; i < repeat; i++) {
43 		bpf_cgroup_storage_set(storage);
44 
45 		if (xdp)
46 			*retval = bpf_prog_run_xdp(prog, ctx);
47 		else
48 			*retval = BPF_PROG_RUN(prog, ctx);
49 
50 		if (signal_pending(current)) {
51 			ret = -EINTR;
52 			break;
53 		}
54 
55 		if (need_resched()) {
56 			time_spent += ktime_get_ns() - time_start;
57 			preempt_enable();
58 			rcu_read_unlock();
59 
60 			cond_resched();
61 
62 			rcu_read_lock();
63 			preempt_disable();
64 			time_start = ktime_get_ns();
65 		}
66 	}
67 	time_spent += ktime_get_ns() - time_start;
68 	preempt_enable();
69 	rcu_read_unlock();
70 
71 	do_div(time_spent, repeat);
72 	*time = time_spent > U32_MAX ? U32_MAX : (u32)time_spent;
73 
74 	for_each_cgroup_storage_type(stype)
75 		bpf_cgroup_storage_free(storage[stype]);
76 
77 	return ret;
78 }
79 
80 static int bpf_test_finish(const union bpf_attr *kattr,
81 			   union bpf_attr __user *uattr, const void *data,
82 			   u32 size, u32 retval, u32 duration)
83 {
84 	void __user *data_out = u64_to_user_ptr(kattr->test.data_out);
85 	int err = -EFAULT;
86 	u32 copy_size = size;
87 
88 	/* Clamp copy if the user has provided a size hint, but copy the full
89 	 * buffer if not to retain old behaviour.
90 	 */
91 	if (kattr->test.data_size_out &&
92 	    copy_size > kattr->test.data_size_out) {
93 		copy_size = kattr->test.data_size_out;
94 		err = -ENOSPC;
95 	}
96 
97 	if (data_out && copy_to_user(data_out, data, copy_size))
98 		goto out;
99 	if (copy_to_user(&uattr->test.data_size_out, &size, sizeof(size)))
100 		goto out;
101 	if (copy_to_user(&uattr->test.retval, &retval, sizeof(retval)))
102 		goto out;
103 	if (copy_to_user(&uattr->test.duration, &duration, sizeof(duration)))
104 		goto out;
105 	if (err != -ENOSPC)
106 		err = 0;
107 out:
108 	trace_bpf_test_finish(&err);
109 	return err;
110 }
111 
112 /* Integer types of various sizes and pointer combinations cover variety of
113  * architecture dependent calling conventions. 7+ can be supported in the
114  * future.
115  */
116 int noinline bpf_fentry_test1(int a)
117 {
118 	return a + 1;
119 }
120 
121 int noinline bpf_fentry_test2(int a, u64 b)
122 {
123 	return a + b;
124 }
125 
126 int noinline bpf_fentry_test3(char a, int b, u64 c)
127 {
128 	return a + b + c;
129 }
130 
131 int noinline bpf_fentry_test4(void *a, char b, int c, u64 d)
132 {
133 	return (long)a + b + c + d;
134 }
135 
136 int noinline bpf_fentry_test5(u64 a, void *b, short c, int d, u64 e)
137 {
138 	return a + (long)b + c + d + e;
139 }
140 
141 int noinline bpf_fentry_test6(u64 a, void *b, short c, int d, void *e, u64 f)
142 {
143 	return a + (long)b + c + d + (long)e + f;
144 }
145 
146 static void *bpf_test_init(const union bpf_attr *kattr, u32 size,
147 			   u32 headroom, u32 tailroom)
148 {
149 	void __user *data_in = u64_to_user_ptr(kattr->test.data_in);
150 	void *data;
151 
152 	if (size < ETH_HLEN || size > PAGE_SIZE - headroom - tailroom)
153 		return ERR_PTR(-EINVAL);
154 
155 	data = kzalloc(size + headroom + tailroom, GFP_USER);
156 	if (!data)
157 		return ERR_PTR(-ENOMEM);
158 
159 	if (copy_from_user(data + headroom, data_in, size)) {
160 		kfree(data);
161 		return ERR_PTR(-EFAULT);
162 	}
163 	if (bpf_fentry_test1(1) != 2 ||
164 	    bpf_fentry_test2(2, 3) != 5 ||
165 	    bpf_fentry_test3(4, 5, 6) != 15 ||
166 	    bpf_fentry_test4((void *)7, 8, 9, 10) != 34 ||
167 	    bpf_fentry_test5(11, (void *)12, 13, 14, 15) != 65 ||
168 	    bpf_fentry_test6(16, (void *)17, 18, 19, (void *)20, 21) != 111) {
169 		kfree(data);
170 		return ERR_PTR(-EFAULT);
171 	}
172 	return data;
173 }
174 
175 static void *bpf_ctx_init(const union bpf_attr *kattr, u32 max_size)
176 {
177 	void __user *data_in = u64_to_user_ptr(kattr->test.ctx_in);
178 	void __user *data_out = u64_to_user_ptr(kattr->test.ctx_out);
179 	u32 size = kattr->test.ctx_size_in;
180 	void *data;
181 	int err;
182 
183 	if (!data_in && !data_out)
184 		return NULL;
185 
186 	data = kzalloc(max_size, GFP_USER);
187 	if (!data)
188 		return ERR_PTR(-ENOMEM);
189 
190 	if (data_in) {
191 		err = bpf_check_uarg_tail_zero(data_in, max_size, size);
192 		if (err) {
193 			kfree(data);
194 			return ERR_PTR(err);
195 		}
196 
197 		size = min_t(u32, max_size, size);
198 		if (copy_from_user(data, data_in, size)) {
199 			kfree(data);
200 			return ERR_PTR(-EFAULT);
201 		}
202 	}
203 	return data;
204 }
205 
206 static int bpf_ctx_finish(const union bpf_attr *kattr,
207 			  union bpf_attr __user *uattr, const void *data,
208 			  u32 size)
209 {
210 	void __user *data_out = u64_to_user_ptr(kattr->test.ctx_out);
211 	int err = -EFAULT;
212 	u32 copy_size = size;
213 
214 	if (!data || !data_out)
215 		return 0;
216 
217 	if (copy_size > kattr->test.ctx_size_out) {
218 		copy_size = kattr->test.ctx_size_out;
219 		err = -ENOSPC;
220 	}
221 
222 	if (copy_to_user(data_out, data, copy_size))
223 		goto out;
224 	if (copy_to_user(&uattr->test.ctx_size_out, &size, sizeof(size)))
225 		goto out;
226 	if (err != -ENOSPC)
227 		err = 0;
228 out:
229 	return err;
230 }
231 
232 /**
233  * range_is_zero - test whether buffer is initialized
234  * @buf: buffer to check
235  * @from: check from this position
236  * @to: check up until (excluding) this position
237  *
238  * This function returns true if the there is a non-zero byte
239  * in the buf in the range [from,to).
240  */
241 static inline bool range_is_zero(void *buf, size_t from, size_t to)
242 {
243 	return !memchr_inv((u8 *)buf + from, 0, to - from);
244 }
245 
246 static int convert___skb_to_skb(struct sk_buff *skb, struct __sk_buff *__skb)
247 {
248 	struct qdisc_skb_cb *cb = (struct qdisc_skb_cb *)skb->cb;
249 
250 	if (!__skb)
251 		return 0;
252 
253 	/* make sure the fields we don't use are zeroed */
254 	if (!range_is_zero(__skb, 0, offsetof(struct __sk_buff, priority)))
255 		return -EINVAL;
256 
257 	/* priority is allowed */
258 
259 	if (!range_is_zero(__skb, offsetofend(struct __sk_buff, priority),
260 			   offsetof(struct __sk_buff, cb)))
261 		return -EINVAL;
262 
263 	/* cb is allowed */
264 
265 	if (!range_is_zero(__skb, offsetofend(struct __sk_buff, cb),
266 			   offsetof(struct __sk_buff, tstamp)))
267 		return -EINVAL;
268 
269 	/* tstamp is allowed */
270 
271 	if (!range_is_zero(__skb, offsetofend(struct __sk_buff, tstamp),
272 			   sizeof(struct __sk_buff)))
273 		return -EINVAL;
274 
275 	skb->priority = __skb->priority;
276 	skb->tstamp = __skb->tstamp;
277 	memcpy(&cb->data, __skb->cb, QDISC_CB_PRIV_LEN);
278 
279 	return 0;
280 }
281 
282 static void convert_skb_to___skb(struct sk_buff *skb, struct __sk_buff *__skb)
283 {
284 	struct qdisc_skb_cb *cb = (struct qdisc_skb_cb *)skb->cb;
285 
286 	if (!__skb)
287 		return;
288 
289 	__skb->priority = skb->priority;
290 	__skb->tstamp = skb->tstamp;
291 	memcpy(__skb->cb, &cb->data, QDISC_CB_PRIV_LEN);
292 }
293 
294 int bpf_prog_test_run_skb(struct bpf_prog *prog, const union bpf_attr *kattr,
295 			  union bpf_attr __user *uattr)
296 {
297 	bool is_l2 = false, is_direct_pkt_access = false;
298 	u32 size = kattr->test.data_size_in;
299 	u32 repeat = kattr->test.repeat;
300 	struct __sk_buff *ctx = NULL;
301 	u32 retval, duration;
302 	int hh_len = ETH_HLEN;
303 	struct sk_buff *skb;
304 	struct sock *sk;
305 	void *data;
306 	int ret;
307 
308 	data = bpf_test_init(kattr, size, NET_SKB_PAD + NET_IP_ALIGN,
309 			     SKB_DATA_ALIGN(sizeof(struct skb_shared_info)));
310 	if (IS_ERR(data))
311 		return PTR_ERR(data);
312 
313 	ctx = bpf_ctx_init(kattr, sizeof(struct __sk_buff));
314 	if (IS_ERR(ctx)) {
315 		kfree(data);
316 		return PTR_ERR(ctx);
317 	}
318 
319 	switch (prog->type) {
320 	case BPF_PROG_TYPE_SCHED_CLS:
321 	case BPF_PROG_TYPE_SCHED_ACT:
322 		is_l2 = true;
323 		/* fall through */
324 	case BPF_PROG_TYPE_LWT_IN:
325 	case BPF_PROG_TYPE_LWT_OUT:
326 	case BPF_PROG_TYPE_LWT_XMIT:
327 		is_direct_pkt_access = true;
328 		break;
329 	default:
330 		break;
331 	}
332 
333 	sk = kzalloc(sizeof(struct sock), GFP_USER);
334 	if (!sk) {
335 		kfree(data);
336 		kfree(ctx);
337 		return -ENOMEM;
338 	}
339 	sock_net_set(sk, current->nsproxy->net_ns);
340 	sock_init_data(NULL, sk);
341 
342 	skb = build_skb(data, 0);
343 	if (!skb) {
344 		kfree(data);
345 		kfree(ctx);
346 		kfree(sk);
347 		return -ENOMEM;
348 	}
349 	skb->sk = sk;
350 
351 	skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
352 	__skb_put(skb, size);
353 	skb->protocol = eth_type_trans(skb, current->nsproxy->net_ns->loopback_dev);
354 	skb_reset_network_header(skb);
355 
356 	if (is_l2)
357 		__skb_push(skb, hh_len);
358 	if (is_direct_pkt_access)
359 		bpf_compute_data_pointers(skb);
360 	ret = convert___skb_to_skb(skb, ctx);
361 	if (ret)
362 		goto out;
363 	ret = bpf_test_run(prog, skb, repeat, &retval, &duration, false);
364 	if (ret)
365 		goto out;
366 	if (!is_l2) {
367 		if (skb_headroom(skb) < hh_len) {
368 			int nhead = HH_DATA_ALIGN(hh_len - skb_headroom(skb));
369 
370 			if (pskb_expand_head(skb, nhead, 0, GFP_USER)) {
371 				ret = -ENOMEM;
372 				goto out;
373 			}
374 		}
375 		memset(__skb_push(skb, hh_len), 0, hh_len);
376 	}
377 	convert_skb_to___skb(skb, ctx);
378 
379 	size = skb->len;
380 	/* bpf program can never convert linear skb to non-linear */
381 	if (WARN_ON_ONCE(skb_is_nonlinear(skb)))
382 		size = skb_headlen(skb);
383 	ret = bpf_test_finish(kattr, uattr, skb->data, size, retval, duration);
384 	if (!ret)
385 		ret = bpf_ctx_finish(kattr, uattr, ctx,
386 				     sizeof(struct __sk_buff));
387 out:
388 	kfree_skb(skb);
389 	bpf_sk_storage_free(sk);
390 	kfree(sk);
391 	kfree(ctx);
392 	return ret;
393 }
394 
395 int bpf_prog_test_run_xdp(struct bpf_prog *prog, const union bpf_attr *kattr,
396 			  union bpf_attr __user *uattr)
397 {
398 	u32 size = kattr->test.data_size_in;
399 	u32 repeat = kattr->test.repeat;
400 	struct netdev_rx_queue *rxqueue;
401 	struct xdp_buff xdp = {};
402 	u32 retval, duration;
403 	void *data;
404 	int ret;
405 
406 	if (kattr->test.ctx_in || kattr->test.ctx_out)
407 		return -EINVAL;
408 
409 	data = bpf_test_init(kattr, size, XDP_PACKET_HEADROOM + NET_IP_ALIGN, 0);
410 	if (IS_ERR(data))
411 		return PTR_ERR(data);
412 
413 	xdp.data_hard_start = data;
414 	xdp.data = data + XDP_PACKET_HEADROOM + NET_IP_ALIGN;
415 	xdp.data_meta = xdp.data;
416 	xdp.data_end = xdp.data + size;
417 
418 	rxqueue = __netif_get_rx_queue(current->nsproxy->net_ns->loopback_dev, 0);
419 	xdp.rxq = &rxqueue->xdp_rxq;
420 	bpf_prog_change_xdp(NULL, prog);
421 	ret = bpf_test_run(prog, &xdp, repeat, &retval, &duration, true);
422 	if (ret)
423 		goto out;
424 	if (xdp.data != data + XDP_PACKET_HEADROOM + NET_IP_ALIGN ||
425 	    xdp.data_end != xdp.data + size)
426 		size = xdp.data_end - xdp.data;
427 	ret = bpf_test_finish(kattr, uattr, xdp.data, size, retval, duration);
428 out:
429 	bpf_prog_change_xdp(prog, NULL);
430 	kfree(data);
431 	return ret;
432 }
433 
434 static int verify_user_bpf_flow_keys(struct bpf_flow_keys *ctx)
435 {
436 	/* make sure the fields we don't use are zeroed */
437 	if (!range_is_zero(ctx, 0, offsetof(struct bpf_flow_keys, flags)))
438 		return -EINVAL;
439 
440 	/* flags is allowed */
441 
442 	if (!range_is_zero(ctx, offsetofend(struct bpf_flow_keys, flags),
443 			   sizeof(struct bpf_flow_keys)))
444 		return -EINVAL;
445 
446 	return 0;
447 }
448 
449 int bpf_prog_test_run_flow_dissector(struct bpf_prog *prog,
450 				     const union bpf_attr *kattr,
451 				     union bpf_attr __user *uattr)
452 {
453 	u32 size = kattr->test.data_size_in;
454 	struct bpf_flow_dissector ctx = {};
455 	u32 repeat = kattr->test.repeat;
456 	struct bpf_flow_keys *user_ctx;
457 	struct bpf_flow_keys flow_keys;
458 	u64 time_start, time_spent = 0;
459 	const struct ethhdr *eth;
460 	unsigned int flags = 0;
461 	u32 retval, duration;
462 	void *data;
463 	int ret;
464 	u32 i;
465 
466 	if (prog->type != BPF_PROG_TYPE_FLOW_DISSECTOR)
467 		return -EINVAL;
468 
469 	if (size < ETH_HLEN)
470 		return -EINVAL;
471 
472 	data = bpf_test_init(kattr, size, 0, 0);
473 	if (IS_ERR(data))
474 		return PTR_ERR(data);
475 
476 	eth = (struct ethhdr *)data;
477 
478 	if (!repeat)
479 		repeat = 1;
480 
481 	user_ctx = bpf_ctx_init(kattr, sizeof(struct bpf_flow_keys));
482 	if (IS_ERR(user_ctx)) {
483 		kfree(data);
484 		return PTR_ERR(user_ctx);
485 	}
486 	if (user_ctx) {
487 		ret = verify_user_bpf_flow_keys(user_ctx);
488 		if (ret)
489 			goto out;
490 		flags = user_ctx->flags;
491 	}
492 
493 	ctx.flow_keys = &flow_keys;
494 	ctx.data = data;
495 	ctx.data_end = (__u8 *)data + size;
496 
497 	rcu_read_lock();
498 	preempt_disable();
499 	time_start = ktime_get_ns();
500 	for (i = 0; i < repeat; i++) {
501 		retval = bpf_flow_dissect(prog, &ctx, eth->h_proto, ETH_HLEN,
502 					  size, flags);
503 
504 		if (signal_pending(current)) {
505 			preempt_enable();
506 			rcu_read_unlock();
507 
508 			ret = -EINTR;
509 			goto out;
510 		}
511 
512 		if (need_resched()) {
513 			time_spent += ktime_get_ns() - time_start;
514 			preempt_enable();
515 			rcu_read_unlock();
516 
517 			cond_resched();
518 
519 			rcu_read_lock();
520 			preempt_disable();
521 			time_start = ktime_get_ns();
522 		}
523 	}
524 	time_spent += ktime_get_ns() - time_start;
525 	preempt_enable();
526 	rcu_read_unlock();
527 
528 	do_div(time_spent, repeat);
529 	duration = time_spent > U32_MAX ? U32_MAX : (u32)time_spent;
530 
531 	ret = bpf_test_finish(kattr, uattr, &flow_keys, sizeof(flow_keys),
532 			      retval, duration);
533 	if (!ret)
534 		ret = bpf_ctx_finish(kattr, uattr, user_ctx,
535 				     sizeof(struct bpf_flow_keys));
536 
537 out:
538 	kfree(user_ctx);
539 	kfree(data);
540 	return ret;
541 }
542