test_run.c 38.1 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-only
2 3 4
/* Copyright (c) 2017 Facebook
 */
#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 10 11
#include <linux/vmalloc.h>
#include <linux/etherdevice.h>
#include <linux/filter.h>
12
#include <linux/rcupdate_trace.h>
13
#include <linux/sched/signal.h>
14
#include <net/bpf_sk_storage.h>
15 16
#include <net/sock.h>
#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 25 26
#define CREATE_TRACE_POINTS
#include <trace/events/bpf_test_run.h>

27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
struct bpf_test_timer {
	enum { NO_PREEMPT, NO_MIGRATE } mode;
	u32 i;
	u64 time_start, time_spent;
};

static void bpf_test_timer_enter(struct bpf_test_timer *t)
	__acquires(rcu)
{
	rcu_read_lock();
	if (t->mode == NO_PREEMPT)
		preempt_disable();
	else
		migrate_disable();

	t->time_start = ktime_get_ns();
}

static void bpf_test_timer_leave(struct bpf_test_timer *t)
	__releases(rcu)
{
	t->time_start = 0;

	if (t->mode == NO_PREEMPT)
		preempt_enable();
	else
		migrate_enable();
	rcu_read_unlock();
}

57 58
static bool bpf_test_timer_continue(struct bpf_test_timer *t, int iterations,
				    u32 repeat, int *err, u32 *duration)
59 60
	__must_hold(rcu)
{
61
	t->i += iterations;
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
	if (t->i >= repeat) {
		/* We're done. */
		t->time_spent += ktime_get_ns() - t->time_start;
		do_div(t->time_spent, t->i);
		*duration = t->time_spent > U32_MAX ? U32_MAX : (u32)t->time_spent;
		*err = 0;
		goto reset;
	}

	if (signal_pending(current)) {
		/* During iteration: we've been cancelled, abort. */
		*err = -EINTR;
		goto reset;
	}

	if (need_resched()) {
		/* During iteration: we need to reschedule between runs. */
		t->time_spent += ktime_get_ns() - t->time_start;
		bpf_test_timer_leave(t);
		cond_resched();
		bpf_test_timer_enter(t);
	}

	/* Do another round. */
	return true;

reset:
	t->i = 0;
	return false;
}

93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
/* We put this struct at the head of each page with a context and frame
 * initialised when the page is allocated, so we don't have to do this on each
 * repetition of the test run.
 */
struct xdp_page_head {
	struct xdp_buff orig_ctx;
	struct xdp_buff ctx;
	struct xdp_frame frm;
	u8 data[];
};

struct xdp_test_data {
	struct xdp_buff *orig_ctx;
	struct xdp_rxq_info rxq;
	struct net_device *dev;
	struct page_pool *pp;
	struct xdp_frame **frames;
	struct sk_buff **skbs;
	u32 batch_size;
	u32 frame_cnt;
};

115
#define TEST_XDP_FRAME_SIZE (PAGE_SIZE - sizeof(struct xdp_page_head))
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
#define TEST_XDP_MAX_BATCH 256

static void xdp_test_run_init_page(struct page *page, void *arg)
{
	struct xdp_page_head *head = phys_to_virt(page_to_phys(page));
	struct xdp_buff *new_ctx, *orig_ctx;
	u32 headroom = XDP_PACKET_HEADROOM;
	struct xdp_test_data *xdp = arg;
	size_t frm_len, meta_len;
	struct xdp_frame *frm;
	void *data;

	orig_ctx = xdp->orig_ctx;
	frm_len = orig_ctx->data_end - orig_ctx->data_meta;
	meta_len = orig_ctx->data - orig_ctx->data_meta;
	headroom -= meta_len;

	new_ctx = &head->ctx;
	frm = &head->frm;
	data = &head->data;
	memcpy(data + headroom, orig_ctx->data_meta, frm_len);

	xdp_init_buff(new_ctx, TEST_XDP_FRAME_SIZE, &xdp->rxq);
	xdp_prepare_buff(new_ctx, data, headroom, frm_len, true);
	new_ctx->data = new_ctx->data_meta + meta_len;

	xdp_update_frame_from_buff(new_ctx, frm);
	frm->mem = new_ctx->rxq->mem;

	memcpy(&head->orig_ctx, new_ctx, sizeof(head->orig_ctx));
}

static int xdp_test_run_setup(struct xdp_test_data *xdp, struct xdp_buff *orig_ctx)
{
	struct xdp_mem_info mem = {};
	struct page_pool *pp;
	int err = -ENOMEM;
	struct page_pool_params pp_params = {
		.order = 0,
		.flags = 0,
		.pool_size = xdp->batch_size,
		.nid = NUMA_NO_NODE,
		.init_callback = xdp_test_run_init_page,
		.init_arg = xdp,
	};

	xdp->frames = kvmalloc_array(xdp->batch_size, sizeof(void *), GFP_KERNEL);
	if (!xdp->frames)
		return -ENOMEM;

	xdp->skbs = kvmalloc_array(xdp->batch_size, sizeof(void *), GFP_KERNEL);
	if (!xdp->skbs)
		goto err_skbs;

	pp = page_pool_create(&pp_params);
	if (IS_ERR(pp)) {
		err = PTR_ERR(pp);
		goto err_pp;
	}

	/* will copy 'mem.id' into pp->xdp_mem_id */
	err = xdp_reg_mem_model(&mem, MEM_TYPE_PAGE_POOL, pp);
	if (err)
		goto err_mmodel;

	xdp->pp = pp;

	/* We create a 'fake' RXQ referencing the original dev, but with an
	 * xdp_mem_info pointing to our page_pool
	 */
	xdp_rxq_info_reg(&xdp->rxq, orig_ctx->rxq->dev, 0, 0);
	xdp->rxq.mem.type = MEM_TYPE_PAGE_POOL;
	xdp->rxq.mem.id = pp->xdp_mem_id;
	xdp->dev = orig_ctx->rxq->dev;
	xdp->orig_ctx = orig_ctx;

	return 0;

err_mmodel:
	page_pool_destroy(pp);
err_pp:
197
	kvfree(xdp->skbs);
198
err_skbs:
199
	kvfree(xdp->frames);
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
	return err;
}

static void xdp_test_run_teardown(struct xdp_test_data *xdp)
{
	page_pool_destroy(xdp->pp);
	kfree(xdp->frames);
	kfree(xdp->skbs);
}

static bool ctx_was_changed(struct xdp_page_head *head)
{
	return head->orig_ctx.data != head->ctx.data ||
		head->orig_ctx.data_meta != head->ctx.data_meta ||
		head->orig_ctx.data_end != head->ctx.data_end;
}

static void reset_ctx(struct xdp_page_head *head)
{
	if (likely(!ctx_was_changed(head)))
		return;

	head->ctx.data = head->orig_ctx.data;
	head->ctx.data_meta = head->orig_ctx.data_meta;
	head->ctx.data_end = head->orig_ctx.data_end;
	xdp_update_frame_from_buff(&head->ctx, &head->frm);
}

static int xdp_recv_frames(struct xdp_frame **frames, int nframes,
			   struct sk_buff **skbs,
			   struct net_device *dev)
{
	gfp_t gfp = __GFP_ZERO | GFP_ATOMIC;
	int i, n;
	LIST_HEAD(list);

	n = kmem_cache_alloc_bulk(skbuff_head_cache, gfp, nframes, (void **)skbs);
	if (unlikely(n == 0)) {
		for (i = 0; i < nframes; i++)
			xdp_return_frame(frames[i]);
		return -ENOMEM;
	}

	for (i = 0; i < nframes; i++) {
		struct xdp_frame *xdpf = frames[i];
		struct sk_buff *skb = skbs[i];

		skb = __xdp_build_skb_from_frame(xdpf, skb, dev);
		if (!skb) {
			xdp_return_frame(xdpf);
			continue;
		}

		list_add_tail(&skb->list, &list);
	}
	netif_receive_skb_list(&list);

	return 0;
}

static int xdp_test_run_batch(struct xdp_test_data *xdp, struct bpf_prog *prog,
			      u32 repeat)
{
	struct bpf_redirect_info *ri = this_cpu_ptr(&bpf_redirect_info);
	int err = 0, act, ret, i, nframes = 0, batch_sz;
	struct xdp_frame **frames = xdp->frames;
	struct xdp_page_head *head;
	struct xdp_frame *frm;
	bool redirect = false;
	struct xdp_buff *ctx;
	struct page *page;

	batch_sz = min_t(u32, repeat, xdp->batch_size);

	local_bh_disable();
	xdp_set_return_frame_no_direct();

	for (i = 0; i < batch_sz; i++) {
		page = page_pool_dev_alloc_pages(xdp->pp);
		if (!page) {
			err = -ENOMEM;
			goto out;
		}

		head = phys_to_virt(page_to_phys(page));
		reset_ctx(head);
		ctx = &head->ctx;
		frm = &head->frm;
		xdp->frame_cnt++;

		act = bpf_prog_run_xdp(prog, ctx);

		/* if program changed pkt bounds we need to update the xdp_frame */
		if (unlikely(ctx_was_changed(head))) {
			ret = xdp_update_frame_from_buff(ctx, frm);
			if (ret) {
				xdp_return_buff(ctx);
				continue;
			}
		}

		switch (act) {
		case XDP_TX:
			/* we can't do a real XDP_TX since we're not in the
			 * driver, so turn it into a REDIRECT back to the same
			 * index
			 */
			ri->tgt_index = xdp->dev->ifindex;
			ri->map_id = INT_MAX;
			ri->map_type = BPF_MAP_TYPE_UNSPEC;
			fallthrough;
		case XDP_REDIRECT:
			redirect = true;
			ret = xdp_do_redirect_frame(xdp->dev, ctx, frm, prog);
			if (ret)
				xdp_return_buff(ctx);
			break;
		case XDP_PASS:
			frames[nframes++] = frm;
			break;
		default:
			bpf_warn_invalid_xdp_action(NULL, prog, act);
			fallthrough;
		case XDP_DROP:
			xdp_return_buff(ctx);
			break;
		}
	}

out:
	if (redirect)
		xdp_do_flush();
	if (nframes) {
		ret = xdp_recv_frames(frames, nframes, xdp->skbs, xdp->dev);
		if (ret)
			err = ret;
	}

	xdp_clear_return_frame_no_direct();
	local_bh_enable();
	return err;
}

static int bpf_test_run_xdp_live(struct bpf_prog *prog, struct xdp_buff *ctx,
				 u32 repeat, u32 batch_size, u32 *time)

{
	struct xdp_test_data xdp = { .batch_size = batch_size };
	struct bpf_test_timer t = { .mode = NO_MIGRATE };
	int ret;

	if (!repeat)
		repeat = 1;

	ret = xdp_test_run_setup(&xdp, ctx);
	if (ret)
		return ret;

	bpf_test_timer_enter(&t);
	do {
		xdp.frame_cnt = 0;
		ret = xdp_test_run_batch(&xdp, prog, repeat - t.i);
		if (unlikely(ret < 0))
			break;
	} while (bpf_test_timer_continue(&t, xdp.frame_cnt, repeat, &ret, time));
	bpf_test_timer_leave(&t);

	xdp_test_run_teardown(&xdp);
	return ret;
}

371
static int bpf_test_run(struct bpf_prog *prog, void *ctx, u32 repeat,
372
			u32 *retval, u32 *time, bool xdp)
373
{
374 375 376
	struct bpf_prog_array_item item = {.prog = prog};
	struct bpf_run_ctx *old_ctx;
	struct bpf_cg_run_ctx run_ctx;
377
	struct bpf_test_timer t = { NO_MIGRATE };
378
	enum bpf_cgroup_storage_type stype;
379
	int ret;
380

381
	for_each_cgroup_storage_type(stype) {
382 383 384
		item.cgroup_storage[stype] = bpf_cgroup_storage_alloc(prog, stype);
		if (IS_ERR(item.cgroup_storage[stype])) {
			item.cgroup_storage[stype] = NULL;
385
			for_each_cgroup_storage_type(stype)
386
				bpf_cgroup_storage_free(item.cgroup_storage[stype]);
387 388 389
			return -ENOMEM;
		}
	}
390

391 392
	if (!repeat)
		repeat = 1;
393

394
	bpf_test_timer_enter(&t);
395
	old_ctx = bpf_set_run_ctx(&run_ctx.run_ctx);
396
	do {
397
		run_ctx.prog_item = &item;
398 399 400
		if (xdp)
			*retval = bpf_prog_run_xdp(prog, ctx);
		else
401
			*retval = bpf_prog_run(prog, ctx);
402
	} while (bpf_test_timer_continue(&t, 1, repeat, &ret, time));
403
	bpf_reset_run_ctx(old_ctx);
404
	bpf_test_timer_leave(&t);
405

406
	for_each_cgroup_storage_type(stype)
407
		bpf_cgroup_storage_free(item.cgroup_storage[stype]);
408

409
	return ret;
410 411
}

412 413
static int bpf_test_finish(const union bpf_attr *kattr,
			   union bpf_attr __user *uattr, const void *data,
414 415
			   struct skb_shared_info *sinfo, u32 size,
			   u32 retval, u32 duration)
416
{
417
	void __user *data_out = u64_to_user_ptr(kattr->test.data_out);
418
	int err = -EFAULT;
419
	u32 copy_size = size;
420

421 422 423 424 425 426 427 428 429
	/* Clamp copy if the user has provided a size hint, but copy the full
	 * buffer if not to retain old behaviour.
	 */
	if (kattr->test.data_size_out &&
	    copy_size > kattr->test.data_size_out) {
		copy_size = kattr->test.data_size_out;
		err = -ENOSPC;
	}

430 431 432
	if (data_out) {
		int len = sinfo ? copy_size - sinfo->xdp_frags_size : copy_size;

433 434 435 436 437
		if (len < 0) {
			err = -ENOSPC;
			goto out;
		}

438 439 440 441
		if (copy_to_user(data_out, data, len))
			goto out;

		if (sinfo) {
442 443
			int i, offset = len;
			u32 data_len;
444 445 446 447 448 449 450 451 452

			for (i = 0; i < sinfo->nr_frags; i++) {
				skb_frag_t *frag = &sinfo->frags[i];

				if (offset >= copy_size) {
					err = -ENOSPC;
					break;
				}

453
				data_len = min_t(u32, copy_size - offset,
454 455 456 457 458 459 460 461 462 463 464 465
						 skb_frag_size(frag));

				if (copy_to_user(data_out + offset,
						 skb_frag_address(frag),
						 data_len))
					goto out;

				offset += data_len;
			}
		}
	}

466 467 468 469 470 471
	if (copy_to_user(&uattr->test.data_size_out, &size, sizeof(size)))
		goto out;
	if (copy_to_user(&uattr->test.retval, &retval, sizeof(retval)))
		goto out;
	if (copy_to_user(&uattr->test.duration, &duration, sizeof(duration)))
		goto out;
472 473
	if (err != -ENOSPC)
		err = 0;
474
out:
475
	trace_bpf_test_finish(&err);
476 477 478
	return err;
}

479 480 481 482
/* Integer types of various sizes and pointer combinations cover variety of
 * architecture dependent calling conventions. 7+ can be supported in the
 * future.
 */
483
__diag_push();
484 485
__diag_ignore_all("-Wmissing-prototypes",
		  "Global functions as their definitions will be in vmlinux BTF");
486 487 488 489
int noinline bpf_fentry_test1(int a)
{
	return a + 1;
}
490 491
EXPORT_SYMBOL_GPL(bpf_fentry_test1);
ALLOW_ERROR_INJECTION(bpf_fentry_test1, ERRNO);
492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517

int noinline bpf_fentry_test2(int a, u64 b)
{
	return a + b;
}

int noinline bpf_fentry_test3(char a, int b, u64 c)
{
	return a + b + c;
}

int noinline bpf_fentry_test4(void *a, char b, int c, u64 d)
{
	return (long)a + b + c + d;
}

int noinline bpf_fentry_test5(u64 a, void *b, short c, int d, u64 e)
{
	return a + (long)b + c + d + e;
}

int noinline bpf_fentry_test6(u64 a, void *b, short c, int d, void *e, u64 f)
{
	return a + (long)b + c + d + (long)e + f;
}

518 519 520 521 522 523 524 525 526 527 528 529 530 531
struct bpf_fentry_test_t {
	struct bpf_fentry_test_t *a;
};

int noinline bpf_fentry_test7(struct bpf_fentry_test_t *arg)
{
	return (long)arg;
}

int noinline bpf_fentry_test8(struct bpf_fentry_test_t *arg)
{
	return (long)arg->a;
}

532 533 534 535 536
int noinline bpf_modify_return_test(int a, int *b)
{
	*b += 1;
	return a + *b;
}
537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552

u64 noinline bpf_kfunc_call_test1(struct sock *sk, u32 a, u64 b, u32 c, u64 d)
{
	return a + b + c + d;
}

int noinline bpf_kfunc_call_test2(struct sock *sk, u32 a, u32 b)
{
	return a + b;
}

struct sock * noinline bpf_kfunc_call_test3(struct sock *sk)
{
	return sk;
}

553 554 555 556
struct prog_test_member1 {
	int a;
};

557
struct prog_test_member {
558 559
	struct prog_test_member1 m;
	int c;
560 561
};

562 563 564
struct prog_test_ref_kfunc {
	int a;
	int b;
565
	struct prog_test_member memb;
566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
	struct prog_test_ref_kfunc *next;
};

static struct prog_test_ref_kfunc prog_test_struct = {
	.a = 42,
	.b = 108,
	.next = &prog_test_struct,
};

noinline struct prog_test_ref_kfunc *
bpf_kfunc_call_test_acquire(unsigned long *scalar_ptr)
{
	/* randomly return NULL */
	if (get_jiffies_64() % 2)
		return NULL;
	return &prog_test_struct;
}

584 585 586 587 588 589
noinline struct prog_test_member *
bpf_kfunc_call_memb_acquire(void)
{
	return &prog_test_struct.memb;
}

590 591 592 593
noinline void bpf_kfunc_call_test_release(struct prog_test_ref_kfunc *p)
{
}

594 595 596 597
noinline void bpf_kfunc_call_memb_release(struct prog_test_member *p)
{
}

598 599 600 601
noinline void bpf_kfunc_call_memb1_release(struct prog_test_member1 *p)
{
}

602 603 604 605 606 607
noinline struct prog_test_ref_kfunc *
bpf_kfunc_call_test_kptr_get(struct prog_test_ref_kfunc **p, int a, int b)
{
	return &prog_test_struct;
}

608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
struct prog_test_pass1 {
	int x0;
	struct {
		int x1;
		struct {
			int x2;
			struct {
				int x3;
			};
		};
	};
};

struct prog_test_pass2 {
	int len;
	short arr1[4];
	struct {
		char arr2[4];
		unsigned long arr3[8];
	} x;
};

struct prog_test_fail1 {
	void *p;
	int x;
};

struct prog_test_fail2 {
	int x8;
	struct prog_test_pass1 x;
};

struct prog_test_fail3 {
	int len;
	char arr1[2];
643
	char arr2[];
644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
};

noinline void bpf_kfunc_call_test_pass_ctx(struct __sk_buff *skb)
{
}

noinline void bpf_kfunc_call_test_pass1(struct prog_test_pass1 *p)
{
}

noinline void bpf_kfunc_call_test_pass2(struct prog_test_pass2 *p)
{
}

noinline void bpf_kfunc_call_test_fail1(struct prog_test_fail1 *p)
{
}

noinline void bpf_kfunc_call_test_fail2(struct prog_test_fail2 *p)
{
}

noinline void bpf_kfunc_call_test_fail3(struct prog_test_fail3 *p)
{
}

noinline void bpf_kfunc_call_test_mem_len_pass1(void *mem, int mem__sz)
{
}

noinline void bpf_kfunc_call_test_mem_len_fail1(void *mem, int len)
{
}

noinline void bpf_kfunc_call_test_mem_len_fail2(u64 *mem, int len)
{
}

682
__diag_pop();
683 684 685

ALLOW_ERROR_INJECTION(bpf_modify_return_test, ERRNO);

686
BTF_SET_START(test_sk_check_kfunc_ids)
687 688 689
BTF_ID(func, bpf_kfunc_call_test1)
BTF_ID(func, bpf_kfunc_call_test2)
BTF_ID(func, bpf_kfunc_call_test3)
690
BTF_ID(func, bpf_kfunc_call_test_acquire)
691
BTF_ID(func, bpf_kfunc_call_memb_acquire)
692
BTF_ID(func, bpf_kfunc_call_test_release)
693
BTF_ID(func, bpf_kfunc_call_memb_release)
694
BTF_ID(func, bpf_kfunc_call_memb1_release)
695
BTF_ID(func, bpf_kfunc_call_test_kptr_get)
696 697 698 699 700 701 702 703 704
BTF_ID(func, bpf_kfunc_call_test_pass_ctx)
BTF_ID(func, bpf_kfunc_call_test_pass1)
BTF_ID(func, bpf_kfunc_call_test_pass2)
BTF_ID(func, bpf_kfunc_call_test_fail1)
BTF_ID(func, bpf_kfunc_call_test_fail2)
BTF_ID(func, bpf_kfunc_call_test_fail3)
BTF_ID(func, bpf_kfunc_call_test_mem_len_pass1)
BTF_ID(func, bpf_kfunc_call_test_mem_len_fail1)
BTF_ID(func, bpf_kfunc_call_test_mem_len_fail2)
705
BTF_SET_END(test_sk_check_kfunc_ids)
706

707 708
BTF_SET_START(test_sk_acquire_kfunc_ids)
BTF_ID(func, bpf_kfunc_call_test_acquire)
709
BTF_ID(func, bpf_kfunc_call_memb_acquire)
710
BTF_ID(func, bpf_kfunc_call_test_kptr_get)
711 712 713 714
BTF_SET_END(test_sk_acquire_kfunc_ids)

BTF_SET_START(test_sk_release_kfunc_ids)
BTF_ID(func, bpf_kfunc_call_test_release)
715
BTF_ID(func, bpf_kfunc_call_memb_release)
716
BTF_ID(func, bpf_kfunc_call_memb1_release)
717 718 719 720
BTF_SET_END(test_sk_release_kfunc_ids)

BTF_SET_START(test_sk_ret_null_kfunc_ids)
BTF_ID(func, bpf_kfunc_call_test_acquire)
721
BTF_ID(func, bpf_kfunc_call_memb_acquire)
722
BTF_ID(func, bpf_kfunc_call_test_kptr_get)
723 724
BTF_SET_END(test_sk_ret_null_kfunc_ids)

725 726 727 728
BTF_SET_START(test_sk_kptr_acquire_kfunc_ids)
BTF_ID(func, bpf_kfunc_call_test_kptr_get)
BTF_SET_END(test_sk_kptr_acquire_kfunc_ids)

729 730
static void *bpf_test_init(const union bpf_attr *kattr, u32 user_size,
			   u32 size, u32 headroom, u32 tailroom)
731 732 733 734 735 736 737
{
	void __user *data_in = u64_to_user_ptr(kattr->test.data_in);
	void *data;

	if (size < ETH_HLEN || size > PAGE_SIZE - headroom - tailroom)
		return ERR_PTR(-EINVAL);

738 739 740
	if (user_size > size)
		return ERR_PTR(-EMSGSIZE);

741 742 743 744
	data = kzalloc(size + headroom + tailroom, GFP_USER);
	if (!data)
		return ERR_PTR(-ENOMEM);

745
	if (copy_from_user(data + headroom, data_in, user_size)) {
746 747 748
		kfree(data);
		return ERR_PTR(-EFAULT);
	}
749

750 751 752
	return data;
}

753 754 755 756
int bpf_prog_test_run_tracing(struct bpf_prog *prog,
			      const union bpf_attr *kattr,
			      union bpf_attr __user *uattr)
{
757
	struct bpf_fentry_test_t arg = {};
758 759 760
	u16 side_effect = 0, ret = 0;
	int b = 2, err = -EFAULT;
	u32 retval = 0;
761

762
	if (kattr->test.flags || kattr->test.cpu || kattr->test.batch_size)
763 764
		return -EINVAL;

765 766 767 768 769 770 771 772
	switch (prog->expected_attach_type) {
	case BPF_TRACE_FENTRY:
	case BPF_TRACE_FEXIT:
		if (bpf_fentry_test1(1) != 2 ||
		    bpf_fentry_test2(2, 3) != 5 ||
		    bpf_fentry_test3(4, 5, 6) != 15 ||
		    bpf_fentry_test4((void *)7, 8, 9, 10) != 34 ||
		    bpf_fentry_test5(11, (void *)12, 13, 14, 15) != 65 ||
773 774 775
		    bpf_fentry_test6(16, (void *)17, 18, 19, (void *)20, 21) != 111 ||
		    bpf_fentry_test7((struct bpf_fentry_test_t *)0) != 0 ||
		    bpf_fentry_test8(&arg) != 0)
776 777
			goto out;
		break;
778 779 780 781 782
	case BPF_MODIFY_RETURN:
		ret = bpf_modify_return_test(1, &b);
		if (b != 2)
			side_effect = 1;
		break;
783 784 785 786
	default:
		goto out;
	}

787 788 789 790
	retval = ((u32)side_effect << 16) | ret;
	if (copy_to_user(&uattr->test.retval, &retval, sizeof(retval)))
		goto out;

791 792 793 794 795 796
	err = 0;
out:
	trace_bpf_test_finish(&err);
	return err;
}

797 798 799 800 801 802 803 804 805 806 807 808
struct bpf_raw_tp_test_run_info {
	struct bpf_prog *prog;
	void *ctx;
	u32 retval;
};

static void
__bpf_prog_test_run_raw_tp(void *data)
{
	struct bpf_raw_tp_test_run_info *info = data;

	rcu_read_lock();
809
	info->retval = bpf_prog_run(info->prog, info->ctx);
810 811 812 813 814 815 816 817 818 819 820
	rcu_read_unlock();
}

int bpf_prog_test_run_raw_tp(struct bpf_prog *prog,
			     const union bpf_attr *kattr,
			     union bpf_attr __user *uattr)
{
	void __user *ctx_in = u64_to_user_ptr(kattr->test.ctx_in);
	__u32 ctx_size_in = kattr->test.ctx_size_in;
	struct bpf_raw_tp_test_run_info info;
	int cpu = kattr->test.cpu, err = 0;
821
	int current_cpu;
822 823 824 825

	/* doesn't support data_in/out, ctx_out, duration, or repeat */
	if (kattr->test.data_in || kattr->test.data_out ||
	    kattr->test.ctx_out || kattr->test.duration ||
826
	    kattr->test.repeat || kattr->test.batch_size)
827 828
		return -EINVAL;

829 830
	if (ctx_size_in < prog->aux->max_ctx_offset ||
	    ctx_size_in > MAX_BPF_FUNC_ARGS * sizeof(u64))
831 832 833 834 835 836
		return -EINVAL;

	if ((kattr->test.flags & BPF_F_TEST_RUN_ON_CPU) == 0 && cpu != 0)
		return -EINVAL;

	if (ctx_size_in) {
Q
Qing Wang 已提交
837 838 839
		info.ctx = memdup_user(ctx_in, ctx_size_in);
		if (IS_ERR(info.ctx))
			return PTR_ERR(info.ctx);
840 841 842 843 844 845
	} else {
		info.ctx = NULL;
	}

	info.prog = prog;

846
	current_cpu = get_cpu();
847
	if ((kattr->test.flags & BPF_F_TEST_RUN_ON_CPU) == 0 ||
848
	    cpu == current_cpu) {
849
		__bpf_prog_test_run_raw_tp(&info);
850
	} else if (cpu >= nr_cpu_ids || !cpu_online(cpu)) {
851 852 853 854 855
		/* smp_call_function_single() also checks cpu_online()
		 * after csd_lock(). However, since cpu is from user
		 * space, let's do an extra quick check to filter out
		 * invalid value before smp_call_function_single().
		 */
856 857
		err = -ENXIO;
	} else {
858 859 860
		err = smp_call_function_single(cpu, __bpf_prog_test_run_raw_tp,
					       &info, 1);
	}
861
	put_cpu();
862

863 864
	if (!err &&
	    copy_to_user(&uattr->test.retval, &info.retval, sizeof(u32)))
865 866 867 868 869 870
		err = -EFAULT;

	kfree(info.ctx);
	return err;
}

871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886
static void *bpf_ctx_init(const union bpf_attr *kattr, u32 max_size)
{
	void __user *data_in = u64_to_user_ptr(kattr->test.ctx_in);
	void __user *data_out = u64_to_user_ptr(kattr->test.ctx_out);
	u32 size = kattr->test.ctx_size_in;
	void *data;
	int err;

	if (!data_in && !data_out)
		return NULL;

	data = kzalloc(max_size, GFP_USER);
	if (!data)
		return ERR_PTR(-ENOMEM);

	if (data_in) {
887
		err = bpf_check_uarg_tail_zero(USER_BPFPTR(data_in), max_size, size);
888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949
		if (err) {
			kfree(data);
			return ERR_PTR(err);
		}

		size = min_t(u32, max_size, size);
		if (copy_from_user(data, data_in, size)) {
			kfree(data);
			return ERR_PTR(-EFAULT);
		}
	}
	return data;
}

static int bpf_ctx_finish(const union bpf_attr *kattr,
			  union bpf_attr __user *uattr, const void *data,
			  u32 size)
{
	void __user *data_out = u64_to_user_ptr(kattr->test.ctx_out);
	int err = -EFAULT;
	u32 copy_size = size;

	if (!data || !data_out)
		return 0;

	if (copy_size > kattr->test.ctx_size_out) {
		copy_size = kattr->test.ctx_size_out;
		err = -ENOSPC;
	}

	if (copy_to_user(data_out, data, copy_size))
		goto out;
	if (copy_to_user(&uattr->test.ctx_size_out, &size, sizeof(size)))
		goto out;
	if (err != -ENOSPC)
		err = 0;
out:
	return err;
}

/**
 * range_is_zero - test whether buffer is initialized
 * @buf: buffer to check
 * @from: check from this position
 * @to: check up until (excluding) this position
 *
 * This function returns true if the there is a non-zero byte
 * in the buf in the range [from,to).
 */
static inline bool range_is_zero(void *buf, size_t from, size_t to)
{
	return !memchr_inv((u8 *)buf + from, 0, to - from);
}

static int convert___skb_to_skb(struct sk_buff *skb, struct __sk_buff *__skb)
{
	struct qdisc_skb_cb *cb = (struct qdisc_skb_cb *)skb->cb;

	if (!__skb)
		return 0;

	/* make sure the fields we don't use are zeroed */
950 951 952 953 954 955 956
	if (!range_is_zero(__skb, 0, offsetof(struct __sk_buff, mark)))
		return -EINVAL;

	/* mark is allowed */

	if (!range_is_zero(__skb, offsetofend(struct __sk_buff, mark),
			   offsetof(struct __sk_buff, priority)))
957 958 959
		return -EINVAL;

	/* priority is allowed */
960
	/* ingress_ifindex is allowed */
961 962 963
	/* ifindex is allowed */

	if (!range_is_zero(__skb, offsetofend(struct __sk_buff, ifindex),
964 965 966 967 968
			   offsetof(struct __sk_buff, cb)))
		return -EINVAL;

	/* cb is allowed */

969
	if (!range_is_zero(__skb, offsetofend(struct __sk_buff, cb),
970 971 972 973
			   offsetof(struct __sk_buff, tstamp)))
		return -EINVAL;

	/* tstamp is allowed */
974 975
	/* wire_len is allowed */
	/* gso_segs is allowed */
976

977
	if (!range_is_zero(__skb, offsetofend(struct __sk_buff, gso_segs),
978 979 980 981 982 983
			   offsetof(struct __sk_buff, gso_size)))
		return -EINVAL;

	/* gso_size is allowed */

	if (!range_is_zero(__skb, offsetofend(struct __sk_buff, gso_size),
984 985 986 987 988 989
			   offsetof(struct __sk_buff, hwtstamp)))
		return -EINVAL;

	/* hwtstamp is allowed */

	if (!range_is_zero(__skb, offsetofend(struct __sk_buff, hwtstamp),
990 991 992
			   sizeof(struct __sk_buff)))
		return -EINVAL;

993
	skb->mark = __skb->mark;
994
	skb->priority = __skb->priority;
995
	skb->skb_iif = __skb->ingress_ifindex;
996
	skb->tstamp = __skb->tstamp;
997 998
	memcpy(&cb->data, __skb->cb, QDISC_CB_PRIV_LEN);

999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
	if (__skb->wire_len == 0) {
		cb->pkt_len = skb->len;
	} else {
		if (__skb->wire_len < skb->len ||
		    __skb->wire_len > GSO_MAX_SIZE)
			return -EINVAL;
		cb->pkt_len = __skb->wire_len;
	}

	if (__skb->gso_segs > GSO_MAX_SEGS)
		return -EINVAL;
	skb_shinfo(skb)->gso_segs = __skb->gso_segs;
1011
	skb_shinfo(skb)->gso_size = __skb->gso_size;
1012
	skb_shinfo(skb)->hwtstamps.hwtstamp = __skb->hwtstamp;
1013

1014 1015 1016 1017 1018 1019 1020 1021 1022 1023
	return 0;
}

static void convert_skb_to___skb(struct sk_buff *skb, struct __sk_buff *__skb)
{
	struct qdisc_skb_cb *cb = (struct qdisc_skb_cb *)skb->cb;

	if (!__skb)
		return;

1024
	__skb->mark = skb->mark;
1025
	__skb->priority = skb->priority;
1026
	__skb->ingress_ifindex = skb->skb_iif;
1027
	__skb->ifindex = skb->dev->ifindex;
1028
	__skb->tstamp = skb->tstamp;
1029
	memcpy(__skb->cb, &cb->data, QDISC_CB_PRIV_LEN);
1030 1031
	__skb->wire_len = cb->pkt_len;
	__skb->gso_segs = skb_shinfo(skb)->gso_segs;
1032
	__skb->hwtstamp = skb_shinfo(skb)->hwtstamps.hwtstamp;
1033 1034
}

1035 1036 1037 1038 1039 1040
static struct proto bpf_dummy_proto = {
	.name   = "bpf_dummy",
	.owner  = THIS_MODULE,
	.obj_size = sizeof(struct sock),
};

1041 1042 1043 1044
int bpf_prog_test_run_skb(struct bpf_prog *prog, const union bpf_attr *kattr,
			  union bpf_attr __user *uattr)
{
	bool is_l2 = false, is_direct_pkt_access = false;
1045 1046
	struct net *net = current->nsproxy->net_ns;
	struct net_device *dev = net->loopback_dev;
1047 1048
	u32 size = kattr->test.data_size_in;
	u32 repeat = kattr->test.repeat;
1049
	struct __sk_buff *ctx = NULL;
1050
	u32 retval, duration;
1051
	int hh_len = ETH_HLEN;
1052
	struct sk_buff *skb;
1053
	struct sock *sk;
1054 1055 1056
	void *data;
	int ret;

1057
	if (kattr->test.flags || kattr->test.cpu || kattr->test.batch_size)
1058 1059
		return -EINVAL;

1060 1061
	data = bpf_test_init(kattr, kattr->test.data_size_in,
			     size, NET_SKB_PAD + NET_IP_ALIGN,
1062 1063 1064 1065
			     SKB_DATA_ALIGN(sizeof(struct skb_shared_info)));
	if (IS_ERR(data))
		return PTR_ERR(data);

1066 1067 1068 1069 1070 1071
	ctx = bpf_ctx_init(kattr, sizeof(struct __sk_buff));
	if (IS_ERR(ctx)) {
		kfree(data);
		return PTR_ERR(ctx);
	}

1072 1073 1074 1075
	switch (prog->type) {
	case BPF_PROG_TYPE_SCHED_CLS:
	case BPF_PROG_TYPE_SCHED_ACT:
		is_l2 = true;
1076
		fallthrough;
1077 1078 1079 1080 1081 1082 1083 1084 1085
	case BPF_PROG_TYPE_LWT_IN:
	case BPF_PROG_TYPE_LWT_OUT:
	case BPF_PROG_TYPE_LWT_XMIT:
		is_direct_pkt_access = true;
		break;
	default:
		break;
	}

1086
	sk = sk_alloc(net, AF_UNSPEC, GFP_USER, &bpf_dummy_proto, 1);
1087 1088
	if (!sk) {
		kfree(data);
1089
		kfree(ctx);
1090 1091 1092 1093
		return -ENOMEM;
	}
	sock_init_data(NULL, sk);

1094 1095 1096
	skb = build_skb(data, 0);
	if (!skb) {
		kfree(data);
1097
		kfree(ctx);
1098
		sk_free(sk);
1099 1100
		return -ENOMEM;
	}
1101
	skb->sk = sk;
1102

1103
	skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
1104
	__skb_put(skb, size);
1105 1106 1107 1108 1109 1110 1111 1112
	if (ctx && ctx->ifindex > 1) {
		dev = dev_get_by_index(net, ctx->ifindex);
		if (!dev) {
			ret = -ENODEV;
			goto out;
		}
	}
	skb->protocol = eth_type_trans(skb, dev);
1113 1114
	skb_reset_network_header(skb);

1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
	switch (skb->protocol) {
	case htons(ETH_P_IP):
		sk->sk_family = AF_INET;
		if (sizeof(struct iphdr) <= skb_headlen(skb)) {
			sk->sk_rcv_saddr = ip_hdr(skb)->saddr;
			sk->sk_daddr = ip_hdr(skb)->daddr;
		}
		break;
#if IS_ENABLED(CONFIG_IPV6)
	case htons(ETH_P_IPV6):
		sk->sk_family = AF_INET6;
		if (sizeof(struct ipv6hdr) <= skb_headlen(skb)) {
			sk->sk_v6_rcv_saddr = ipv6_hdr(skb)->saddr;
			sk->sk_v6_daddr = ipv6_hdr(skb)->daddr;
		}
		break;
#endif
	default:
		break;
	}

1136
	if (is_l2)
1137
		__skb_push(skb, hh_len);
1138
	if (is_direct_pkt_access)
1139
		bpf_compute_data_pointers(skb);
1140 1141 1142
	ret = convert___skb_to_skb(skb, ctx);
	if (ret)
		goto out;
1143
	ret = bpf_test_run(prog, skb, repeat, &retval, &duration, false);
1144 1145
	if (ret)
		goto out;
1146 1147 1148 1149 1150
	if (!is_l2) {
		if (skb_headroom(skb) < hh_len) {
			int nhead = HH_DATA_ALIGN(hh_len - skb_headroom(skb));

			if (pskb_expand_head(skb, nhead, 0, GFP_USER)) {
1151 1152
				ret = -ENOMEM;
				goto out;
1153 1154 1155 1156
			}
		}
		memset(__skb_push(skb, hh_len), 0, hh_len);
	}
1157
	convert_skb_to___skb(skb, ctx);
1158

1159 1160 1161 1162
	size = skb->len;
	/* bpf program can never convert linear skb to non-linear */
	if (WARN_ON_ONCE(skb_is_nonlinear(skb)))
		size = skb_headlen(skb);
1163 1164
	ret = bpf_test_finish(kattr, uattr, skb->data, NULL, size, retval,
			      duration);
1165 1166 1167 1168
	if (!ret)
		ret = bpf_ctx_finish(kattr, uattr, ctx,
				     sizeof(struct __sk_buff));
out:
1169 1170
	if (dev && dev != net->loopback_dev)
		dev_put(dev);
1171
	kfree_skb(skb);
1172
	sk_free(sk);
1173
	kfree(ctx);
1174 1175 1176
	return ret;
}

1177 1178
static int xdp_convert_md_to_buff(struct xdp_md *xdp_md, struct xdp_buff *xdp)
{
1179 1180 1181 1182
	unsigned int ingress_ifindex, rx_queue_index;
	struct netdev_rx_queue *rxqueue;
	struct net_device *device;

1183 1184 1185 1186 1187 1188
	if (!xdp_md)
		return 0;

	if (xdp_md->egress_ifindex != 0)
		return -EINVAL;

1189 1190 1191 1192
	ingress_ifindex = xdp_md->ingress_ifindex;
	rx_queue_index = xdp_md->rx_queue_index;

	if (!ingress_ifindex && rx_queue_index)
1193 1194
		return -EINVAL;

1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
	if (ingress_ifindex) {
		device = dev_get_by_index(current->nsproxy->net_ns,
					  ingress_ifindex);
		if (!device)
			return -ENODEV;

		if (rx_queue_index >= device->real_num_rx_queues)
			goto free_dev;

		rxqueue = __netif_get_rx_queue(device, rx_queue_index);
1205

1206 1207 1208 1209 1210 1211 1212 1213 1214 1215
		if (!xdp_rxq_info_is_reg(&rxqueue->xdp_rxq))
			goto free_dev;

		xdp->rxq = &rxqueue->xdp_rxq;
		/* The device is now tracked in the xdp->rxq for later
		 * dev_put()
		 */
	}

	xdp->data = xdp->data_meta + xdp_md->data;
1216
	return 0;
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232

free_dev:
	dev_put(device);
	return -EINVAL;
}

static void xdp_convert_buff_to_md(struct xdp_buff *xdp, struct xdp_md *xdp_md)
{
	if (!xdp_md)
		return;

	xdp_md->data = xdp->data - xdp->data_meta;
	xdp_md->data_end = xdp->data_end - xdp->data_meta;

	if (xdp_md->ingress_ifindex)
		dev_put(xdp->rxq->dev);
1233 1234
}

1235 1236 1237
int bpf_prog_test_run_xdp(struct bpf_prog *prog, const union bpf_attr *kattr,
			  union bpf_attr __user *uattr)
{
1238
	bool do_live = (kattr->test.flags & BPF_F_TEST_XDP_LIVE_FRAMES);
1239
	u32 tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1240
	u32 batch_size = kattr->test.batch_size;
1241
	u32 retval = 0, duration, max_data_sz;
1242
	u32 size = kattr->test.data_size_in;
1243
	u32 headroom = XDP_PACKET_HEADROOM;
1244
	u32 repeat = kattr->test.repeat;
1245
	struct netdev_rx_queue *rxqueue;
1246
	struct skb_shared_info *sinfo;
1247
	struct xdp_buff xdp = {};
1248
	int i, ret = -EINVAL;
1249
	struct xdp_md *ctx;
1250 1251
	void *data;

1252 1253 1254
	if (prog->expected_attach_type == BPF_XDP_DEVMAP ||
	    prog->expected_attach_type == BPF_XDP_CPUMAP)
		return -EINVAL;
1255

1256 1257 1258 1259 1260 1261 1262 1263
	if (kattr->test.flags & ~BPF_F_TEST_XDP_LIVE_FRAMES)
		return -EINVAL;

	if (do_live) {
		if (!batch_size)
			batch_size = NAPI_POLL_WEIGHT;
		else if (batch_size > TEST_XDP_MAX_BATCH)
			return -E2BIG;
1264 1265

		headroom += sizeof(struct xdp_page_head);
1266 1267 1268 1269
	} else if (batch_size) {
		return -EINVAL;
	}

1270 1271 1272 1273 1274 1275 1276 1277
	ctx = bpf_ctx_init(kattr, sizeof(struct xdp_md));
	if (IS_ERR(ctx))
		return PTR_ERR(ctx);

	if (ctx) {
		/* There can't be user provided data before the meta data */
		if (ctx->data_meta || ctx->data_end != size ||
		    ctx->data > ctx->data_end ||
1278 1279
		    unlikely(xdp_metalen_invalid(ctx->data)) ||
		    (do_live && (kattr->test.data_out || kattr->test.ctx_out)))
1280 1281 1282 1283
			goto free_ctx;
		/* Meta data is allocated from the headroom */
		headroom -= ctx->data;
	}
1284

1285
	max_data_sz = 4096 - headroom - tailroom;
1286 1287 1288 1289 1290 1291
	if (size > max_data_sz) {
		/* disallow live data mode for jumbo frames */
		if (do_live)
			goto free_ctx;
		size = max_data_sz;
	}
1292

1293
	data = bpf_test_init(kattr, size, max_data_sz, headroom, tailroom);
1294 1295 1296 1297
	if (IS_ERR(data)) {
		ret = PTR_ERR(data);
		goto free_ctx;
	}
1298

1299
	rxqueue = __netif_get_rx_queue(current->nsproxy->net_ns->loopback_dev, 0);
1300 1301
	rxqueue->xdp_rxq.frag_size = headroom + max_data_sz + tailroom;
	xdp_init_buff(&xdp, rxqueue->xdp_rxq.frag_size, &rxqueue->xdp_rxq);
1302
	xdp_prepare_buff(&xdp, data, headroom, size, true);
1303
	sinfo = xdp_get_shared_info_from_buff(&xdp);
1304

1305 1306 1307 1308
	ret = xdp_convert_md_to_buff(ctx, &xdp);
	if (ret)
		goto free_data;

1309 1310 1311 1312 1313 1314
	if (unlikely(kattr->test.data_size_in > size)) {
		void __user *data_in = u64_to_user_ptr(kattr->test.data_in);

		while (size < kattr->test.data_size_in) {
			struct page *page;
			skb_frag_t *frag;
1315
			u32 data_len;
1316

1317 1318 1319 1320 1321
			if (sinfo->nr_frags == MAX_SKB_FRAGS) {
				ret = -ENOMEM;
				goto out;
			}

1322 1323 1324 1325 1326 1327 1328 1329 1330
			page = alloc_page(GFP_KERNEL);
			if (!page) {
				ret = -ENOMEM;
				goto out;
			}

			frag = &sinfo->frags[sinfo->nr_frags++];
			__skb_frag_set_page(frag, page);

1331
			data_len = min_t(u32, kattr->test.data_size_in - size,
1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345
					 PAGE_SIZE);
			skb_frag_size_set(frag, data_len);

			if (copy_from_user(page_address(page), data_in + size,
					   data_len)) {
				ret = -EFAULT;
				goto out;
			}
			sinfo->xdp_frags_size += data_len;
			size += data_len;
		}
		xdp_buff_set_frags_flag(&xdp);
	}

1346 1347
	if (repeat > 1)
		bpf_prog_change_xdp(NULL, prog);
1348

1349 1350 1351 1352
	if (do_live)
		ret = bpf_test_run_xdp_live(prog, &xdp, repeat, batch_size, &duration);
	else
		ret = bpf_test_run(prog, &xdp, repeat, &retval, &duration, true);
1353 1354 1355 1356 1357
	/* We convert the xdp_buff back to an xdp_md before checking the return
	 * code so the reference count of any held netdevice will be decremented
	 * even if the test run failed.
	 */
	xdp_convert_buff_to_md(&xdp, ctx);
1358 1359
	if (ret)
		goto out;
1360

1361
	size = xdp.data_end - xdp.data_meta + sinfo->xdp_frags_size;
1362 1363
	ret = bpf_test_finish(kattr, uattr, xdp.data_meta, sinfo, size,
			      retval, duration);
1364 1365 1366 1367
	if (!ret)
		ret = bpf_ctx_finish(kattr, uattr, ctx,
				     sizeof(struct xdp_md));

1368
out:
1369 1370
	if (repeat > 1)
		bpf_prog_change_xdp(prog, NULL);
1371
free_data:
1372 1373
	for (i = 0; i < sinfo->nr_frags; i++)
		__free_page(skb_frag_page(&sinfo->frags[i]));
1374
	kfree(data);
1375 1376
free_ctx:
	kfree(ctx);
1377 1378
	return ret;
}
1379

1380 1381 1382 1383 1384 1385 1386 1387
static int verify_user_bpf_flow_keys(struct bpf_flow_keys *ctx)
{
	/* make sure the fields we don't use are zeroed */
	if (!range_is_zero(ctx, 0, offsetof(struct bpf_flow_keys, flags)))
		return -EINVAL;

	/* flags is allowed */

1388
	if (!range_is_zero(ctx, offsetofend(struct bpf_flow_keys, flags),
1389 1390 1391 1392 1393 1394
			   sizeof(struct bpf_flow_keys)))
		return -EINVAL;

	return 0;
}

1395 1396 1397 1398
int bpf_prog_test_run_flow_dissector(struct bpf_prog *prog,
				     const union bpf_attr *kattr,
				     union bpf_attr __user *uattr)
{
1399
	struct bpf_test_timer t = { NO_PREEMPT };
1400
	u32 size = kattr->test.data_size_in;
1401
	struct bpf_flow_dissector ctx = {};
1402
	u32 repeat = kattr->test.repeat;
1403
	struct bpf_flow_keys *user_ctx;
1404
	struct bpf_flow_keys flow_keys;
1405
	const struct ethhdr *eth;
1406
	unsigned int flags = 0;
1407 1408 1409 1410 1411 1412 1413
	u32 retval, duration;
	void *data;
	int ret;

	if (prog->type != BPF_PROG_TYPE_FLOW_DISSECTOR)
		return -EINVAL;

1414
	if (kattr->test.flags || kattr->test.cpu || kattr->test.batch_size)
1415 1416
		return -EINVAL;

1417 1418 1419
	if (size < ETH_HLEN)
		return -EINVAL;

1420
	data = bpf_test_init(kattr, kattr->test.data_size_in, size, 0, 0);
1421 1422 1423
	if (IS_ERR(data))
		return PTR_ERR(data);

1424
	eth = (struct ethhdr *)data;
1425 1426 1427 1428

	if (!repeat)
		repeat = 1;

1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440
	user_ctx = bpf_ctx_init(kattr, sizeof(struct bpf_flow_keys));
	if (IS_ERR(user_ctx)) {
		kfree(data);
		return PTR_ERR(user_ctx);
	}
	if (user_ctx) {
		ret = verify_user_bpf_flow_keys(user_ctx);
		if (ret)
			goto out;
		flags = user_ctx->flags;
	}

1441 1442 1443 1444
	ctx.flow_keys = &flow_keys;
	ctx.data = data;
	ctx.data_end = (__u8 *)data + size;

1445 1446
	bpf_test_timer_enter(&t);
	do {
1447
		retval = bpf_flow_dissect(prog, &ctx, eth->h_proto, ETH_HLEN,
1448
					  size, flags);
1449
	} while (bpf_test_timer_continue(&t, 1, repeat, &ret, &duration));
1450
	bpf_test_timer_leave(&t);
1451

1452 1453
	if (ret < 0)
		goto out;
1454

1455 1456
	ret = bpf_test_finish(kattr, uattr, &flow_keys, NULL,
			      sizeof(flow_keys), retval, duration);
1457 1458 1459
	if (!ret)
		ret = bpf_ctx_finish(kattr, uattr, user_ctx,
				     sizeof(struct bpf_flow_keys));
1460

1461
out:
1462
	kfree(user_ctx);
1463
	kfree(data);
1464 1465
	return ret;
}
1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480

int bpf_prog_test_run_sk_lookup(struct bpf_prog *prog, const union bpf_attr *kattr,
				union bpf_attr __user *uattr)
{
	struct bpf_test_timer t = { NO_PREEMPT };
	struct bpf_prog_array *progs = NULL;
	struct bpf_sk_lookup_kern ctx = {};
	u32 repeat = kattr->test.repeat;
	struct bpf_sk_lookup *user_ctx;
	u32 retval, duration;
	int ret = -EINVAL;

	if (prog->type != BPF_PROG_TYPE_SK_LOOKUP)
		return -EINVAL;

1481
	if (kattr->test.flags || kattr->test.cpu || kattr->test.batch_size)
1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503
		return -EINVAL;

	if (kattr->test.data_in || kattr->test.data_size_in || kattr->test.data_out ||
	    kattr->test.data_size_out)
		return -EINVAL;

	if (!repeat)
		repeat = 1;

	user_ctx = bpf_ctx_init(kattr, sizeof(*user_ctx));
	if (IS_ERR(user_ctx))
		return PTR_ERR(user_ctx);

	if (!user_ctx)
		return -EINVAL;

	if (user_ctx->sk)
		goto out;

	if (!range_is_zero(user_ctx, offsetofend(typeof(*user_ctx), local_port), sizeof(*user_ctx)))
		goto out;

1504
	if (user_ctx->local_port > U16_MAX) {
1505 1506 1507 1508 1509 1510 1511
		ret = -ERANGE;
		goto out;
	}

	ctx.family = (u16)user_ctx->family;
	ctx.protocol = (u16)user_ctx->protocol;
	ctx.dport = (u16)user_ctx->local_port;
1512
	ctx.sport = user_ctx->remote_port;
1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542

	switch (ctx.family) {
	case AF_INET:
		ctx.v4.daddr = (__force __be32)user_ctx->local_ip4;
		ctx.v4.saddr = (__force __be32)user_ctx->remote_ip4;
		break;

#if IS_ENABLED(CONFIG_IPV6)
	case AF_INET6:
		ctx.v6.daddr = (struct in6_addr *)user_ctx->local_ip6;
		ctx.v6.saddr = (struct in6_addr *)user_ctx->remote_ip6;
		break;
#endif

	default:
		ret = -EAFNOSUPPORT;
		goto out;
	}

	progs = bpf_prog_array_alloc(1, GFP_KERNEL);
	if (!progs) {
		ret = -ENOMEM;
		goto out;
	}

	progs->items[0].prog = prog;

	bpf_test_timer_enter(&t);
	do {
		ctx.selected_sk = NULL;
1543
		retval = BPF_PROG_SK_LOOKUP_RUN_ARRAY(progs, ctx, bpf_prog_run);
1544
	} while (bpf_test_timer_continue(&t, 1, repeat, &ret, &duration));
1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559
	bpf_test_timer_leave(&t);

	if (ret < 0)
		goto out;

	user_ctx->cookie = 0;
	if (ctx.selected_sk) {
		if (ctx.selected_sk->sk_reuseport && !ctx.no_reuseport) {
			ret = -EOPNOTSUPP;
			goto out;
		}

		user_ctx->cookie = sock_gen_cookie(ctx.selected_sk);
	}

1560
	ret = bpf_test_finish(kattr, uattr, NULL, NULL, 0, retval, duration);
1561 1562 1563 1564 1565 1566 1567 1568
	if (!ret)
		ret = bpf_ctx_finish(kattr, uattr, user_ctx, sizeof(*user_ctx));

out:
	bpf_prog_array_free(progs);
	kfree(user_ctx);
	return ret;
}
1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582

int bpf_prog_test_run_syscall(struct bpf_prog *prog,
			      const union bpf_attr *kattr,
			      union bpf_attr __user *uattr)
{
	void __user *ctx_in = u64_to_user_ptr(kattr->test.ctx_in);
	__u32 ctx_size_in = kattr->test.ctx_size_in;
	void *ctx = NULL;
	u32 retval;
	int err = 0;

	/* doesn't support data_in/out, ctx_out, duration, or repeat or flags */
	if (kattr->test.data_in || kattr->test.data_out ||
	    kattr->test.ctx_out || kattr->test.duration ||
1583 1584
	    kattr->test.repeat || kattr->test.flags ||
	    kattr->test.batch_size)
1585 1586 1587 1588 1589 1590 1591
		return -EINVAL;

	if (ctx_size_in < prog->aux->max_ctx_offset ||
	    ctx_size_in > U16_MAX)
		return -EINVAL;

	if (ctx_size_in) {
Q
Qing Wang 已提交
1592 1593 1594
		ctx = memdup_user(ctx_in, ctx_size_in);
		if (IS_ERR(ctx))
			return PTR_ERR(ctx);
1595
	}
1596 1597

	rcu_read_lock_trace();
1598
	retval = bpf_prog_run_pin_on_cpu(prog, ctx);
1599
	rcu_read_unlock_trace();
1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611

	if (copy_to_user(&uattr->test.retval, &retval, sizeof(u32))) {
		err = -EFAULT;
		goto out;
	}
	if (ctx_size_in)
		if (copy_to_user(ctx_in, ctx, ctx_size_in))
			err = -EFAULT;
out:
	kfree(ctx);
	return err;
}
1612 1613

static const struct btf_kfunc_id_set bpf_prog_test_kfunc_set = {
1614
	.owner        = THIS_MODULE,
1615 1616 1617 1618 1619
	.check_set        = &test_sk_check_kfunc_ids,
	.acquire_set      = &test_sk_acquire_kfunc_ids,
	.release_set      = &test_sk_release_kfunc_ids,
	.ret_null_set     = &test_sk_ret_null_kfunc_ids,
	.kptr_acquire_set = &test_sk_kptr_acquire_kfunc_ids
1620 1621
};

1622 1623 1624 1625 1626 1627
BTF_ID_LIST(bpf_prog_test_dtor_kfunc_ids)
BTF_ID(struct, prog_test_ref_kfunc)
BTF_ID(func, bpf_kfunc_call_test_release)
BTF_ID(struct, prog_test_member)
BTF_ID(func, bpf_kfunc_call_memb_release)

1628 1629
static int __init bpf_prog_test_run_init(void)
{
1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645
	const struct btf_id_dtor_kfunc bpf_prog_test_dtor_kfunc[] = {
		{
		  .btf_id       = bpf_prog_test_dtor_kfunc_ids[0],
		  .kfunc_btf_id = bpf_prog_test_dtor_kfunc_ids[1]
		},
		{
		  .btf_id	= bpf_prog_test_dtor_kfunc_ids[2],
		  .kfunc_btf_id = bpf_prog_test_dtor_kfunc_ids[3],
		},
	};
	int ret;

	ret = register_btf_kfunc_id_set(BPF_PROG_TYPE_SCHED_CLS, &bpf_prog_test_kfunc_set);
	return ret ?: register_btf_id_dtor_kfuncs(bpf_prog_test_dtor_kfunc,
						  ARRAY_SIZE(bpf_prog_test_dtor_kfunc),
						  THIS_MODULE);
1646 1647
}
late_initcall(bpf_prog_test_run_init);