1 // SPDX-License-Identifier: GPL-2.0-only
3 * Testsuite for eBPF verifier
5 * Copyright (c) 2014 PLUMgrid, http://plumgrid.com
6 * Copyright (c) 2017 Facebook
7 * Copyright (c) 2018 Covalent IO, Inc. http://covalent.io
11 #include <asm/types.h>
12 #include <linux/types.h>
25 #include <linux/unistd.h>
26 #include <linux/filter.h>
27 #include <linux/bpf_perf_event.h>
28 #include <linux/bpf.h>
29 #include <linux/if_ether.h>
30 #include <linux/btf.h>
34 #include <bpf/libbpf.h>
36 #include "autoconf_helper.h"
37 #include "unpriv_helpers.h"
38 #include "cap_helpers.h"
42 #include "../../../include/linux/filter.h"
43 #include "testing_helpers.h"
45 #define MAX_INSNS BPF_MAXINSNS
46 #define MAX_EXPECTED_INSNS 32
47 #define MAX_UNEXPECTED_INSNS 32
48 #define MAX_TEST_INSNS 1000000
50 #define MAX_NR_MAPS 23
51 #define MAX_TEST_RUNS 8
52 #define POINTER_VALUE 0xcafe4all
53 #define TEST_DATA_LEN 64
54 #define MAX_FUNC_INFOS 8
55 #define MAX_BTF_STRINGS 256
56 #define MAX_BTF_TYPES 256
58 #define INSN_OFF_MASK ((__s16)0xFFFF)
59 #define INSN_IMM_MASK ((__s32)0xFFFFFFFF)
60 #define SKIP_INSNS() BPF_RAW_INSN(0xde, 0xa, 0xd, 0xbeef, 0xdeadbeef)
62 #define DEFAULT_LIBBPF_LOG_LEVEL 4
64 #define F_NEEDS_EFFICIENT_UNALIGNED_ACCESS (1 << 0)
65 #define F_LOAD_WITH_STRICT_ALIGNMENT (1 << 1)
66 #define F_NEEDS_JIT_ENABLED (1 << 2)
68 /* need CAP_BPF, CAP_NET_ADMIN, CAP_PERFMON to load progs */
69 #define ADMIN_CAPS (1ULL << CAP_NET_ADMIN | \
70 1ULL << CAP_PERFMON | \
72 #define UNPRIV_SYSCTL "kernel/unprivileged_bpf_disabled"
73 static bool unpriv_disabled = false;
74 static bool jit_disabled;
76 static bool verbose = false;
77 static int verif_log_level = 0;
79 struct kfunc_btf_id_pair {
86 struct bpf_insn insns[MAX_INSNS];
87 struct bpf_insn *fill_insns;
88 /* If specified, test engine looks for this sequence of
89 * instructions in the BPF program after loading. Allows to
90 * test rewrites applied by verifier. Use values
91 * INSN_OFF_MASK and INSN_IMM_MASK to mask `off` and `imm`
92 * fields if content does not matter. The test case fails if
93 * specified instructions are not found.
95 * The sequence could be split into sub-sequences by adding
96 * SKIP_INSNS instruction at the end of each sub-sequence. In
97 * such case sub-sequences are searched for one after another.
99 struct bpf_insn expected_insns[MAX_EXPECTED_INSNS];
100 /* If specified, test engine applies same pattern matching
101 * logic as for `expected_insns`. If the specified pattern is
102 * matched test case is marked as failed.
104 struct bpf_insn unexpected_insns[MAX_UNEXPECTED_INSNS];
105 int fixup_map_hash_8b[MAX_FIXUPS];
106 int fixup_map_hash_48b[MAX_FIXUPS];
107 int fixup_map_hash_16b[MAX_FIXUPS];
108 int fixup_map_array_48b[MAX_FIXUPS];
109 int fixup_map_sockmap[MAX_FIXUPS];
110 int fixup_map_sockhash[MAX_FIXUPS];
111 int fixup_map_xskmap[MAX_FIXUPS];
112 int fixup_map_stacktrace[MAX_FIXUPS];
113 int fixup_prog1[MAX_FIXUPS];
114 int fixup_prog2[MAX_FIXUPS];
115 int fixup_map_in_map[MAX_FIXUPS];
116 int fixup_cgroup_storage[MAX_FIXUPS];
117 int fixup_percpu_cgroup_storage[MAX_FIXUPS];
118 int fixup_map_spin_lock[MAX_FIXUPS];
119 int fixup_map_array_ro[MAX_FIXUPS];
120 int fixup_map_array_wo[MAX_FIXUPS];
121 int fixup_map_array_small[MAX_FIXUPS];
122 int fixup_sk_storage_map[MAX_FIXUPS];
123 int fixup_map_event_output[MAX_FIXUPS];
124 int fixup_map_reuseport_array[MAX_FIXUPS];
125 int fixup_map_ringbuf[MAX_FIXUPS];
126 int fixup_map_timer[MAX_FIXUPS];
127 int fixup_map_kptr[MAX_FIXUPS];
128 struct kfunc_btf_id_pair fixup_kfunc_btf_id[MAX_FIXUPS];
129 /* Expected verifier log output for result REJECT or VERBOSE_ACCEPT.
130 * Can be a tab-separated sequence of expected strings. An empty string
131 * means no log verification.
134 const char *errstr_unpriv;
135 uint32_t insn_processed;
142 } result, result_unpriv;
143 enum bpf_prog_type prog_type;
145 void (*fill_helper)(struct bpf_test *self);
147 #define bpf_testdata_struct_t \
149 uint32_t retval, retval_unpriv; \
151 __u8 data[TEST_DATA_LEN]; \
152 __u64 data64[TEST_DATA_LEN / 8]; \
156 bpf_testdata_struct_t;
157 bpf_testdata_struct_t retvals[MAX_TEST_RUNS];
159 enum bpf_attach_type expected_attach_type;
161 struct bpf_func_info func_info[MAX_FUNC_INFOS];
163 char btf_strings[MAX_BTF_STRINGS];
164 /* A set of BTF types to load when specified,
165 * use macro definitions from test_btf.h,
166 * must end with BTF_END_RAW
168 __u32 btf_types[MAX_BTF_TYPES];
171 /* Note we want this to be 64 bit aligned so that the end of our array is
172 * actually the end of the structure.
174 #define MAX_ENTRIES 11
178 int foo[MAX_ENTRIES];
186 static void bpf_fill_ld_abs_vlan_push_pop(struct bpf_test *self)
188 /* test: {skb->data[0], vlan_push} x 51 + {skb->data[0], vlan_pop} x 51 */
190 /* jump range is limited to 16 bit. PUSH_CNT of ld_abs needs room */
191 unsigned int len = (1 << 15) - PUSH_CNT * 2 * 5 * 6;
192 struct bpf_insn *insn = self->fill_insns;
195 insn[i++] = BPF_MOV64_REG(BPF_REG_6, BPF_REG_1);
197 for (j = 0; j < PUSH_CNT; j++) {
198 insn[i++] = BPF_LD_ABS(BPF_B, 0);
199 /* jump to error label */
200 insn[i] = BPF_JMP32_IMM(BPF_JNE, BPF_REG_0, 0x34, len - i - 3);
202 insn[i++] = BPF_MOV64_REG(BPF_REG_1, BPF_REG_6);
203 insn[i++] = BPF_MOV64_IMM(BPF_REG_2, 1);
204 insn[i++] = BPF_MOV64_IMM(BPF_REG_3, 2);
205 insn[i++] = BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 0, 0,
206 BPF_FUNC_skb_vlan_push);
207 insn[i] = BPF_JMP_IMM(BPF_JNE, BPF_REG_0, 0, len - i - 3);
211 for (j = 0; j < PUSH_CNT; j++) {
212 insn[i++] = BPF_LD_ABS(BPF_B, 0);
213 insn[i] = BPF_JMP32_IMM(BPF_JNE, BPF_REG_0, 0x34, len - i - 3);
215 insn[i++] = BPF_MOV64_REG(BPF_REG_1, BPF_REG_6);
216 insn[i++] = BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 0, 0,
217 BPF_FUNC_skb_vlan_pop);
218 insn[i] = BPF_JMP_IMM(BPF_JNE, BPF_REG_0, 0, len - i - 3);
224 for (; i < len - 3; i++)
225 insn[i] = BPF_ALU64_IMM(BPF_MOV, BPF_REG_0, 0xbef);
226 insn[len - 3] = BPF_JMP_A(1);
228 insn[len - 2] = BPF_MOV32_IMM(BPF_REG_0, 0);
229 insn[len - 1] = BPF_EXIT_INSN();
230 self->prog_len = len;
233 static void bpf_fill_jump_around_ld_abs(struct bpf_test *self)
235 struct bpf_insn *insn = self->fill_insns;
236 /* jump range is limited to 16 bit. every ld_abs is replaced by 6 insns,
237 * but on arches like arm, ppc etc, there will be one BPF_ZEXT inserted
238 * to extend the error value of the inlined ld_abs sequence which then
239 * contains 7 insns. so, set the dividend to 7 so the testcase could
240 * work on all arches.
242 unsigned int len = (1 << 15) / 7;
245 insn[i++] = BPF_MOV64_REG(BPF_REG_6, BPF_REG_1);
246 insn[i++] = BPF_LD_ABS(BPF_B, 0);
247 insn[i] = BPF_JMP_IMM(BPF_JEQ, BPF_REG_0, 10, len - i - 2);
250 insn[i++] = BPF_LD_ABS(BPF_B, 1);
251 insn[i] = BPF_EXIT_INSN();
252 self->prog_len = i + 1;
255 static void bpf_fill_rand_ld_dw(struct bpf_test *self)
257 struct bpf_insn *insn = self->fill_insns;
261 insn[i++] = BPF_MOV32_IMM(BPF_REG_0, 0);
262 while (i < self->retval) {
263 uint64_t val = bpf_semi_rand_get();
264 struct bpf_insn tmp[2] = { BPF_LD_IMM64(BPF_REG_1, val) };
269 insn[i++] = BPF_ALU64_REG(BPF_XOR, BPF_REG_0, BPF_REG_1);
271 insn[i++] = BPF_MOV64_REG(BPF_REG_1, BPF_REG_0);
272 insn[i++] = BPF_ALU64_IMM(BPF_RSH, BPF_REG_1, 32);
273 insn[i++] = BPF_ALU64_REG(BPF_XOR, BPF_REG_0, BPF_REG_1);
274 insn[i] = BPF_EXIT_INSN();
275 self->prog_len = i + 1;
277 self->retval = (uint32_t)res;
280 #define MAX_JMP_SEQ 8192
282 /* test the sequence of 8k jumps */
283 static void bpf_fill_scale1(struct bpf_test *self)
285 struct bpf_insn *insn = self->fill_insns;
288 insn[i++] = BPF_MOV64_REG(BPF_REG_6, BPF_REG_1);
289 /* test to check that the long sequence of jumps is acceptable */
290 while (k++ < MAX_JMP_SEQ) {
291 insn[i++] = BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 0, 0,
292 BPF_FUNC_get_prandom_u32);
293 insn[i++] = BPF_JMP_IMM(BPF_JEQ, BPF_REG_0, bpf_semi_rand_get(), 2);
294 insn[i++] = BPF_MOV64_REG(BPF_REG_1, BPF_REG_10);
295 insn[i++] = BPF_STX_MEM(BPF_DW, BPF_REG_1, BPF_REG_6,
298 /* is_state_visited() doesn't allocate state for pruning for every jump.
299 * Hence multiply jmps by 4 to accommodate that heuristic
301 while (i < MAX_TEST_INSNS - MAX_JMP_SEQ * 4)
302 insn[i++] = BPF_ALU64_IMM(BPF_MOV, BPF_REG_0, 42);
303 insn[i] = BPF_EXIT_INSN();
304 self->prog_len = i + 1;
308 /* test the sequence of 8k jumps in inner most function (function depth 8)*/
309 static void bpf_fill_scale2(struct bpf_test *self)
311 struct bpf_insn *insn = self->fill_insns;
315 for (k = 0; k < FUNC_NEST; k++) {
316 insn[i++] = BPF_CALL_REL(1);
317 insn[i++] = BPF_EXIT_INSN();
319 insn[i++] = BPF_MOV64_REG(BPF_REG_6, BPF_REG_1);
320 /* test to check that the long sequence of jumps is acceptable */
322 while (k++ < MAX_JMP_SEQ) {
323 insn[i++] = BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 0, 0,
324 BPF_FUNC_get_prandom_u32);
325 insn[i++] = BPF_JMP_IMM(BPF_JEQ, BPF_REG_0, bpf_semi_rand_get(), 2);
326 insn[i++] = BPF_MOV64_REG(BPF_REG_1, BPF_REG_10);
327 insn[i++] = BPF_STX_MEM(BPF_DW, BPF_REG_1, BPF_REG_6,
328 -8 * (k % (64 - 4 * FUNC_NEST) + 1));
330 while (i < MAX_TEST_INSNS - MAX_JMP_SEQ * 4)
331 insn[i++] = BPF_ALU64_IMM(BPF_MOV, BPF_REG_0, 42);
332 insn[i] = BPF_EXIT_INSN();
333 self->prog_len = i + 1;
337 static void bpf_fill_scale(struct bpf_test *self)
339 switch (self->retval) {
341 return bpf_fill_scale1(self);
343 return bpf_fill_scale2(self);
350 static int bpf_fill_torturous_jumps_insn_1(struct bpf_insn *insn)
352 unsigned int len = 259, hlen = 128;
355 insn[0] = BPF_EMIT_CALL(BPF_FUNC_get_prandom_u32);
356 for (i = 1; i <= hlen; i++) {
357 insn[i] = BPF_JMP_IMM(BPF_JEQ, BPF_REG_0, i, hlen);
358 insn[i + hlen] = BPF_JMP_A(hlen - i);
360 insn[len - 2] = BPF_MOV64_IMM(BPF_REG_0, 1);
361 insn[len - 1] = BPF_EXIT_INSN();
366 static int bpf_fill_torturous_jumps_insn_2(struct bpf_insn *insn)
368 unsigned int len = 4100, jmp_off = 2048;
371 insn[0] = BPF_EMIT_CALL(BPF_FUNC_get_prandom_u32);
372 for (i = 1; i <= jmp_off; i++) {
373 insn[i] = BPF_JMP_IMM(BPF_JEQ, BPF_REG_0, i, jmp_off);
375 insn[i++] = BPF_JMP_A(jmp_off);
376 for (; i <= jmp_off * 2 + 1; i+=16) {
377 for (j = 0; j < 16; j++) {
378 insn[i + j] = BPF_JMP_A(16 - j - 1);
382 insn[len - 2] = BPF_MOV64_IMM(BPF_REG_0, 2);
383 insn[len - 1] = BPF_EXIT_INSN();
388 static void bpf_fill_torturous_jumps(struct bpf_test *self)
390 struct bpf_insn *insn = self->fill_insns;
393 switch (self->retval) {
395 self->prog_len = bpf_fill_torturous_jumps_insn_1(insn);
398 self->prog_len = bpf_fill_torturous_jumps_insn_2(insn);
402 insn[i++] = BPF_RAW_INSN(BPF_JMP|BPF_CALL, 0, 1, 0, 4);
403 insn[i++] = BPF_RAW_INSN(BPF_JMP|BPF_CALL, 0, 1, 0, 262);
404 insn[i++] = BPF_ST_MEM(BPF_B, BPF_REG_10, -32, 0);
405 insn[i++] = BPF_MOV64_IMM(BPF_REG_0, 3);
406 insn[i++] = BPF_EXIT_INSN();
409 i += bpf_fill_torturous_jumps_insn_1(insn + i);
412 i += bpf_fill_torturous_jumps_insn_2(insn + i);
422 static void bpf_fill_big_prog_with_loop_1(struct bpf_test *self)
424 struct bpf_insn *insn = self->fill_insns;
425 /* This test was added to catch a specific use after free
426 * error, which happened upon BPF program reallocation.
427 * Reallocation is handled by core.c:bpf_prog_realloc, which
428 * reuses old memory if page boundary is not crossed. The
429 * value of `len` is chosen to cross this boundary on bpf_loop
432 const int len = getpagesize() - 25;
433 int callback_load_idx;
437 insn[i++] = BPF_ALU64_IMM(BPF_MOV, BPF_REG_1, 1);
438 callback_load_idx = i;
439 insn[i++] = BPF_RAW_INSN(BPF_LD | BPF_IMM | BPF_DW,
440 BPF_REG_2, BPF_PSEUDO_FUNC, 0,
441 777 /* filled below */);
442 insn[i++] = BPF_RAW_INSN(0, 0, 0, 0, 0);
443 insn[i++] = BPF_ALU64_IMM(BPF_MOV, BPF_REG_3, 0);
444 insn[i++] = BPF_ALU64_IMM(BPF_MOV, BPF_REG_4, 0);
445 insn[i++] = BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 0, 0, BPF_FUNC_loop);
448 insn[i++] = BPF_ALU64_IMM(BPF_MOV, BPF_REG_0, 0);
449 insn[i++] = BPF_EXIT_INSN();
452 insn[i++] = BPF_ALU64_IMM(BPF_MOV, BPF_REG_0, 0);
453 insn[i++] = BPF_EXIT_INSN();
455 insn[callback_load_idx].imm = callback_idx - callback_load_idx - 1;
456 self->func_info[1].insn_off = callback_idx;
461 /* BPF_SK_LOOKUP contains 13 instructions, if you need to fix up maps */
462 #define BPF_SK_LOOKUP(func) \
463 /* struct bpf_sock_tuple tuple = {} */ \
464 BPF_MOV64_IMM(BPF_REG_2, 0), \
465 BPF_STX_MEM(BPF_W, BPF_REG_10, BPF_REG_2, -8), \
466 BPF_STX_MEM(BPF_DW, BPF_REG_10, BPF_REG_2, -16), \
467 BPF_STX_MEM(BPF_DW, BPF_REG_10, BPF_REG_2, -24), \
468 BPF_STX_MEM(BPF_DW, BPF_REG_10, BPF_REG_2, -32), \
469 BPF_STX_MEM(BPF_DW, BPF_REG_10, BPF_REG_2, -40), \
470 BPF_STX_MEM(BPF_DW, BPF_REG_10, BPF_REG_2, -48), \
471 /* sk = func(ctx, &tuple, sizeof tuple, 0, 0) */ \
472 BPF_MOV64_REG(BPF_REG_2, BPF_REG_10), \
473 BPF_ALU64_IMM(BPF_ADD, BPF_REG_2, -48), \
474 BPF_MOV64_IMM(BPF_REG_3, sizeof(struct bpf_sock_tuple)), \
475 BPF_MOV64_IMM(BPF_REG_4, 0), \
476 BPF_MOV64_IMM(BPF_REG_5, 0), \
477 BPF_EMIT_CALL(BPF_FUNC_ ## func)
479 /* BPF_DIRECT_PKT_R2 contains 7 instructions, it initializes default return
480 * value into 0 and does necessary preparation for direct packet access
481 * through r2. The allowed access range is 8 bytes.
483 #define BPF_DIRECT_PKT_R2 \
484 BPF_MOV64_IMM(BPF_REG_0, 0), \
485 BPF_LDX_MEM(BPF_W, BPF_REG_2, BPF_REG_1, \
486 offsetof(struct __sk_buff, data)), \
487 BPF_LDX_MEM(BPF_W, BPF_REG_3, BPF_REG_1, \
488 offsetof(struct __sk_buff, data_end)), \
489 BPF_MOV64_REG(BPF_REG_4, BPF_REG_2), \
490 BPF_ALU64_IMM(BPF_ADD, BPF_REG_4, 8), \
491 BPF_JMP_REG(BPF_JLE, BPF_REG_4, BPF_REG_3, 1), \
494 /* BPF_RAND_UEXT_R7 contains 4 instructions, it initializes R7 into a random
495 * positive u32, and zero-extend it into 64-bit.
497 #define BPF_RAND_UEXT_R7 \
498 BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 0, 0, \
499 BPF_FUNC_get_prandom_u32), \
500 BPF_MOV64_REG(BPF_REG_7, BPF_REG_0), \
501 BPF_ALU64_IMM(BPF_LSH, BPF_REG_7, 33), \
502 BPF_ALU64_IMM(BPF_RSH, BPF_REG_7, 33)
504 /* BPF_RAND_SEXT_R7 contains 5 instructions, it initializes R7 into a random
505 * negative u32, and sign-extend it into 64-bit.
507 #define BPF_RAND_SEXT_R7 \
508 BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 0, 0, \
509 BPF_FUNC_get_prandom_u32), \
510 BPF_MOV64_REG(BPF_REG_7, BPF_REG_0), \
511 BPF_ALU64_IMM(BPF_OR, BPF_REG_7, 0x80000000), \
512 BPF_ALU64_IMM(BPF_LSH, BPF_REG_7, 32), \
513 BPF_ALU64_IMM(BPF_ARSH, BPF_REG_7, 32)
515 static struct bpf_test tests[] = {
517 #include <verifier/tests.h>
521 static int probe_filter_length(const struct bpf_insn *fp)
525 for (len = MAX_INSNS - 1; len > 0; --len)
526 if (fp[len].code != 0 || fp[len].imm != 0)
531 static bool skip_unsupported_map(enum bpf_map_type map_type)
533 if (!libbpf_probe_bpf_map_type(map_type, NULL)) {
534 printf("SKIP (unsupported map type %d)\n", map_type);
541 static int __create_map(uint32_t type, uint32_t size_key,
542 uint32_t size_value, uint32_t max_elem,
543 uint32_t extra_flags)
545 LIBBPF_OPTS(bpf_map_create_opts, opts);
548 opts.map_flags = (type == BPF_MAP_TYPE_HASH ? BPF_F_NO_PREALLOC : 0) | extra_flags;
549 fd = bpf_map_create(type, NULL, size_key, size_value, max_elem, &opts);
551 if (skip_unsupported_map(type))
553 printf("Failed to create hash map '%s'!\n", strerror(errno));
559 static int create_map(uint32_t type, uint32_t size_key,
560 uint32_t size_value, uint32_t max_elem)
562 return __create_map(type, size_key, size_value, max_elem, 0);
565 static void update_map(int fd, int index)
567 struct test_val value = {
568 .index = (6 + 1) * sizeof(int),
569 .foo[6] = 0xabcdef12,
572 assert(!bpf_map_update_elem(fd, &index, &value, 0));
575 static int create_prog_dummy_simple(enum bpf_prog_type prog_type, int ret)
577 struct bpf_insn prog[] = {
578 BPF_MOV64_IMM(BPF_REG_0, ret),
582 return bpf_prog_load(prog_type, NULL, "GPL", prog, ARRAY_SIZE(prog), NULL);
585 static int create_prog_dummy_loop(enum bpf_prog_type prog_type, int mfd,
588 struct bpf_insn prog[] = {
589 BPF_MOV64_IMM(BPF_REG_3, idx),
590 BPF_LD_MAP_FD(BPF_REG_2, mfd),
591 BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 0, 0,
593 BPF_MOV64_IMM(BPF_REG_0, ret),
597 return bpf_prog_load(prog_type, NULL, "GPL", prog, ARRAY_SIZE(prog), NULL);
600 static int create_prog_array(enum bpf_prog_type prog_type, uint32_t max_elem,
601 int p1key, int p2key, int p3key)
603 int mfd, p1fd, p2fd, p3fd;
605 mfd = bpf_map_create(BPF_MAP_TYPE_PROG_ARRAY, NULL, sizeof(int),
606 sizeof(int), max_elem, NULL);
608 if (skip_unsupported_map(BPF_MAP_TYPE_PROG_ARRAY))
610 printf("Failed to create prog array '%s'!\n", strerror(errno));
614 p1fd = create_prog_dummy_simple(prog_type, 42);
615 p2fd = create_prog_dummy_loop(prog_type, mfd, p2key, 41);
616 p3fd = create_prog_dummy_simple(prog_type, 24);
617 if (p1fd < 0 || p2fd < 0 || p3fd < 0)
619 if (bpf_map_update_elem(mfd, &p1key, &p1fd, BPF_ANY) < 0)
621 if (bpf_map_update_elem(mfd, &p2key, &p2fd, BPF_ANY) < 0)
623 if (bpf_map_update_elem(mfd, &p3key, &p3fd, BPF_ANY) < 0) {
634 static int create_map_in_map(void)
636 LIBBPF_OPTS(bpf_map_create_opts, opts);
637 int inner_map_fd, outer_map_fd;
639 inner_map_fd = bpf_map_create(BPF_MAP_TYPE_ARRAY, NULL, sizeof(int),
640 sizeof(int), 1, NULL);
641 if (inner_map_fd < 0) {
642 if (skip_unsupported_map(BPF_MAP_TYPE_ARRAY))
644 printf("Failed to create array '%s'!\n", strerror(errno));
648 opts.inner_map_fd = inner_map_fd;
649 outer_map_fd = bpf_map_create(BPF_MAP_TYPE_ARRAY_OF_MAPS, NULL,
650 sizeof(int), sizeof(int), 1, &opts);
651 if (outer_map_fd < 0) {
652 if (skip_unsupported_map(BPF_MAP_TYPE_ARRAY_OF_MAPS))
654 printf("Failed to create array of maps '%s'!\n",
663 static int create_cgroup_storage(bool percpu)
665 enum bpf_map_type type = percpu ? BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE :
666 BPF_MAP_TYPE_CGROUP_STORAGE;
669 fd = bpf_map_create(type, NULL, sizeof(struct bpf_cgroup_storage_key),
670 TEST_DATA_LEN, 0, NULL);
672 if (skip_unsupported_map(type))
674 printf("Failed to create cgroup storage '%s'!\n",
681 /* struct bpf_spin_lock {
686 * struct bpf_spin_lock l;
691 * } __attribute__((aligned(8)));
693 * struct bpf_timer t;
696 * struct prog_test_ref_kfunc __kptr_untrusted *ptr;
697 * struct prog_test_ref_kfunc __kptr *ptr;
698 * struct prog_test_member __kptr *ptr;
701 static const char btf_str_sec[] = "\0bpf_spin_lock\0val\0cnt\0l\0bpf_timer\0timer\0t"
702 "\0btf_ptr\0prog_test_ref_kfunc\0ptr\0kptr\0kptr_untrusted"
703 "\0prog_test_member";
704 static __u32 btf_raw_types[] = {
706 BTF_TYPE_INT_ENC(0, BTF_INT_SIGNED, 0, 32, 4), /* [1] */
707 /* struct bpf_spin_lock */ /* [2] */
708 BTF_TYPE_ENC(1, BTF_INFO_ENC(BTF_KIND_STRUCT, 0, 1), 4),
709 BTF_MEMBER_ENC(15, 1, 0), /* int val; */
710 /* struct val */ /* [3] */
711 BTF_TYPE_ENC(15, BTF_INFO_ENC(BTF_KIND_STRUCT, 0, 2), 8),
712 BTF_MEMBER_ENC(19, 1, 0), /* int cnt; */
713 BTF_MEMBER_ENC(23, 2, 32),/* struct bpf_spin_lock l; */
714 /* struct bpf_timer */ /* [4] */
715 BTF_TYPE_ENC(25, BTF_INFO_ENC(BTF_KIND_STRUCT, 0, 0), 16),
716 /* struct timer */ /* [5] */
717 BTF_TYPE_ENC(35, BTF_INFO_ENC(BTF_KIND_STRUCT, 0, 1), 16),
718 BTF_MEMBER_ENC(41, 4, 0), /* struct bpf_timer t; */
719 /* struct prog_test_ref_kfunc */ /* [6] */
720 BTF_STRUCT_ENC(51, 0, 0),
721 BTF_STRUCT_ENC(95, 0, 0), /* [7] */
722 /* type tag "kptr_untrusted" */
723 BTF_TYPE_TAG_ENC(80, 6), /* [8] */
724 /* type tag "kptr" */
725 BTF_TYPE_TAG_ENC(75, 6), /* [9] */
726 BTF_TYPE_TAG_ENC(75, 7), /* [10] */
727 BTF_PTR_ENC(8), /* [11] */
728 BTF_PTR_ENC(9), /* [12] */
729 BTF_PTR_ENC(10), /* [13] */
730 /* struct btf_ptr */ /* [14] */
731 BTF_STRUCT_ENC(43, 3, 24),
732 BTF_MEMBER_ENC(71, 11, 0), /* struct prog_test_ref_kfunc __kptr_untrusted *ptr; */
733 BTF_MEMBER_ENC(71, 12, 64), /* struct prog_test_ref_kfunc __kptr *ptr; */
734 BTF_MEMBER_ENC(71, 13, 128), /* struct prog_test_member __kptr *ptr; */
737 static char bpf_vlog[UINT_MAX >> 8];
739 static int load_btf_spec(__u32 *types, int types_len,
740 const char *strings, int strings_len)
742 struct btf_header hdr = {
744 .version = BTF_VERSION,
745 .hdr_len = sizeof(struct btf_header),
746 .type_len = types_len,
747 .str_off = types_len,
748 .str_len = strings_len,
752 LIBBPF_OPTS(bpf_btf_load_opts, opts,
754 .log_size = sizeof(bpf_vlog),
755 .log_level = (verbose
757 : DEFAULT_LIBBPF_LOG_LEVEL),
760 raw_btf = malloc(sizeof(hdr) + types_len + strings_len);
763 memcpy(ptr, &hdr, sizeof(hdr));
765 memcpy(ptr, types, hdr.type_len);
767 memcpy(ptr, strings, hdr.str_len);
770 btf_fd = bpf_btf_load(raw_btf, ptr - raw_btf, &opts);
772 printf("Failed to load BTF spec: '%s'\n", strerror(errno));
776 return btf_fd < 0 ? -1 : btf_fd;
779 static int load_btf(void)
781 return load_btf_spec(btf_raw_types, sizeof(btf_raw_types),
782 btf_str_sec, sizeof(btf_str_sec));
785 static int load_btf_for_test(struct bpf_test *test)
789 while (types_num < MAX_BTF_TYPES &&
790 test->btf_types[types_num] != BTF_END_RAW)
793 int types_len = types_num * sizeof(test->btf_types[0]);
795 return load_btf_spec(test->btf_types, types_len,
796 test->btf_strings, sizeof(test->btf_strings));
799 static int create_map_spin_lock(void)
801 LIBBPF_OPTS(bpf_map_create_opts, opts,
802 .btf_key_type_id = 1,
803 .btf_value_type_id = 3,
810 opts.btf_fd = btf_fd;
811 fd = bpf_map_create(BPF_MAP_TYPE_ARRAY, "test_map", 4, 8, 1, &opts);
813 printf("Failed to create map with spin_lock\n");
817 static int create_sk_storage_map(void)
819 LIBBPF_OPTS(bpf_map_create_opts, opts,
820 .map_flags = BPF_F_NO_PREALLOC,
821 .btf_key_type_id = 1,
822 .btf_value_type_id = 3,
829 opts.btf_fd = btf_fd;
830 fd = bpf_map_create(BPF_MAP_TYPE_SK_STORAGE, "test_map", 4, 8, 0, &opts);
833 printf("Failed to create sk_storage_map\n");
837 static int create_map_timer(void)
839 LIBBPF_OPTS(bpf_map_create_opts, opts,
840 .btf_key_type_id = 1,
841 .btf_value_type_id = 5,
849 opts.btf_fd = btf_fd;
850 fd = bpf_map_create(BPF_MAP_TYPE_ARRAY, "test_map", 4, 16, 1, &opts);
852 printf("Failed to create map with timer\n");
856 static int create_map_kptr(void)
858 LIBBPF_OPTS(bpf_map_create_opts, opts,
859 .btf_key_type_id = 1,
860 .btf_value_type_id = 14,
868 opts.btf_fd = btf_fd;
869 fd = bpf_map_create(BPF_MAP_TYPE_ARRAY, "test_map", 4, 24, 1, &opts);
871 printf("Failed to create map with btf_id pointer\n");
875 static void set_root(bool set)
880 if (cap_enable_effective(1ULL << CAP_SYS_ADMIN, &caps))
881 perror("cap_disable_effective(CAP_SYS_ADMIN)");
883 if (cap_disable_effective(1ULL << CAP_SYS_ADMIN, &caps))
884 perror("cap_disable_effective(CAP_SYS_ADMIN)");
888 static __u64 ptr_to_u64(const void *ptr)
890 return (uintptr_t) ptr;
893 static struct btf *btf__load_testmod_btf(struct btf *vmlinux)
895 struct bpf_btf_info info;
896 __u32 len = sizeof(info);
897 struct btf *btf = NULL;
902 /* Iterate all loaded BTF objects and find bpf_testmod,
903 * we need SYS_ADMIN cap for that.
908 err = bpf_btf_get_next_id(id, &id);
912 perror("bpf_btf_get_next_id failed");
916 fd = bpf_btf_get_fd_by_id(id);
920 perror("bpf_btf_get_fd_by_id failed");
924 memset(&info, 0, sizeof(info));
925 info.name_len = sizeof(name);
926 info.name = ptr_to_u64(name);
929 err = bpf_obj_get_info_by_fd(fd, &info, &len);
932 perror("bpf_obj_get_info_by_fd failed");
936 if (strcmp("bpf_testmod", name)) {
941 btf = btf__load_from_kernel_by_id_split(id, vmlinux);
947 /* We need the fd to stay open so it can be used in fd_array.
948 * The final cleanup call to btf__free will free btf object
949 * and close the file descriptor.
951 btf__set_fd(btf, fd);
959 static struct btf *testmod_btf;
960 static struct btf *vmlinux_btf;
962 static void kfuncs_cleanup(void)
964 btf__free(testmod_btf);
965 btf__free(vmlinux_btf);
968 static void fixup_prog_kfuncs(struct bpf_insn *prog, int *fd_array,
969 struct kfunc_btf_id_pair *fixup_kfunc_btf_id)
971 /* Patch in kfunc BTF IDs */
972 while (fixup_kfunc_btf_id->kfunc) {
975 /* try to find kfunc in kernel BTF */
976 vmlinux_btf = vmlinux_btf ?: btf__load_vmlinux_btf();
978 btf_id = btf__find_by_name_kind(vmlinux_btf,
979 fixup_kfunc_btf_id->kfunc,
981 btf_id = btf_id < 0 ? 0 : btf_id;
984 /* kfunc not found in kernel BTF, try bpf_testmod BTF */
986 testmod_btf = testmod_btf ?: btf__load_testmod_btf(vmlinux_btf);
988 btf_id = btf__find_by_name_kind(testmod_btf,
989 fixup_kfunc_btf_id->kfunc,
991 btf_id = btf_id < 0 ? 0 : btf_id;
993 /* We put bpf_testmod module fd into fd_array
994 * and its index 1 into instruction 'off'.
996 *fd_array = btf__fd(testmod_btf);
997 prog[fixup_kfunc_btf_id->insn_idx].off = 1;
1002 prog[fixup_kfunc_btf_id->insn_idx].imm = btf_id;
1003 fixup_kfunc_btf_id++;
1007 static void do_test_fixup(struct bpf_test *test, enum bpf_prog_type prog_type,
1008 struct bpf_insn *prog, int *map_fds, int *fd_array)
1010 int *fixup_map_hash_8b = test->fixup_map_hash_8b;
1011 int *fixup_map_hash_48b = test->fixup_map_hash_48b;
1012 int *fixup_map_hash_16b = test->fixup_map_hash_16b;
1013 int *fixup_map_array_48b = test->fixup_map_array_48b;
1014 int *fixup_map_sockmap = test->fixup_map_sockmap;
1015 int *fixup_map_sockhash = test->fixup_map_sockhash;
1016 int *fixup_map_xskmap = test->fixup_map_xskmap;
1017 int *fixup_map_stacktrace = test->fixup_map_stacktrace;
1018 int *fixup_prog1 = test->fixup_prog1;
1019 int *fixup_prog2 = test->fixup_prog2;
1020 int *fixup_map_in_map = test->fixup_map_in_map;
1021 int *fixup_cgroup_storage = test->fixup_cgroup_storage;
1022 int *fixup_percpu_cgroup_storage = test->fixup_percpu_cgroup_storage;
1023 int *fixup_map_spin_lock = test->fixup_map_spin_lock;
1024 int *fixup_map_array_ro = test->fixup_map_array_ro;
1025 int *fixup_map_array_wo = test->fixup_map_array_wo;
1026 int *fixup_map_array_small = test->fixup_map_array_small;
1027 int *fixup_sk_storage_map = test->fixup_sk_storage_map;
1028 int *fixup_map_event_output = test->fixup_map_event_output;
1029 int *fixup_map_reuseport_array = test->fixup_map_reuseport_array;
1030 int *fixup_map_ringbuf = test->fixup_map_ringbuf;
1031 int *fixup_map_timer = test->fixup_map_timer;
1032 int *fixup_map_kptr = test->fixup_map_kptr;
1034 if (test->fill_helper) {
1035 test->fill_insns = calloc(MAX_TEST_INSNS, sizeof(struct bpf_insn));
1036 test->fill_helper(test);
1039 /* Allocating HTs with 1 elem is fine here, since we only test
1040 * for verifier and not do a runtime lookup, so the only thing
1041 * that really matters is value size in this case.
1043 if (*fixup_map_hash_8b) {
1044 map_fds[0] = create_map(BPF_MAP_TYPE_HASH, sizeof(long long),
1045 sizeof(long long), 1);
1047 prog[*fixup_map_hash_8b].imm = map_fds[0];
1048 fixup_map_hash_8b++;
1049 } while (*fixup_map_hash_8b);
1052 if (*fixup_map_hash_48b) {
1053 map_fds[1] = create_map(BPF_MAP_TYPE_HASH, sizeof(long long),
1054 sizeof(struct test_val), 1);
1056 prog[*fixup_map_hash_48b].imm = map_fds[1];
1057 fixup_map_hash_48b++;
1058 } while (*fixup_map_hash_48b);
1061 if (*fixup_map_hash_16b) {
1062 map_fds[2] = create_map(BPF_MAP_TYPE_HASH, sizeof(long long),
1063 sizeof(struct other_val), 1);
1065 prog[*fixup_map_hash_16b].imm = map_fds[2];
1066 fixup_map_hash_16b++;
1067 } while (*fixup_map_hash_16b);
1070 if (*fixup_map_array_48b) {
1071 map_fds[3] = create_map(BPF_MAP_TYPE_ARRAY, sizeof(int),
1072 sizeof(struct test_val), 1);
1073 update_map(map_fds[3], 0);
1075 prog[*fixup_map_array_48b].imm = map_fds[3];
1076 fixup_map_array_48b++;
1077 } while (*fixup_map_array_48b);
1081 map_fds[4] = create_prog_array(prog_type, 4, 0, 1, 2);
1083 prog[*fixup_prog1].imm = map_fds[4];
1085 } while (*fixup_prog1);
1089 map_fds[5] = create_prog_array(prog_type, 8, 7, 1, 2);
1091 prog[*fixup_prog2].imm = map_fds[5];
1093 } while (*fixup_prog2);
1096 if (*fixup_map_in_map) {
1097 map_fds[6] = create_map_in_map();
1099 prog[*fixup_map_in_map].imm = map_fds[6];
1101 } while (*fixup_map_in_map);
1104 if (*fixup_cgroup_storage) {
1105 map_fds[7] = create_cgroup_storage(false);
1107 prog[*fixup_cgroup_storage].imm = map_fds[7];
1108 fixup_cgroup_storage++;
1109 } while (*fixup_cgroup_storage);
1112 if (*fixup_percpu_cgroup_storage) {
1113 map_fds[8] = create_cgroup_storage(true);
1115 prog[*fixup_percpu_cgroup_storage].imm = map_fds[8];
1116 fixup_percpu_cgroup_storage++;
1117 } while (*fixup_percpu_cgroup_storage);
1119 if (*fixup_map_sockmap) {
1120 map_fds[9] = create_map(BPF_MAP_TYPE_SOCKMAP, sizeof(int),
1123 prog[*fixup_map_sockmap].imm = map_fds[9];
1124 fixup_map_sockmap++;
1125 } while (*fixup_map_sockmap);
1127 if (*fixup_map_sockhash) {
1128 map_fds[10] = create_map(BPF_MAP_TYPE_SOCKHASH, sizeof(int),
1131 prog[*fixup_map_sockhash].imm = map_fds[10];
1132 fixup_map_sockhash++;
1133 } while (*fixup_map_sockhash);
1135 if (*fixup_map_xskmap) {
1136 map_fds[11] = create_map(BPF_MAP_TYPE_XSKMAP, sizeof(int),
1139 prog[*fixup_map_xskmap].imm = map_fds[11];
1141 } while (*fixup_map_xskmap);
1143 if (*fixup_map_stacktrace) {
1144 map_fds[12] = create_map(BPF_MAP_TYPE_STACK_TRACE, sizeof(u32),
1147 prog[*fixup_map_stacktrace].imm = map_fds[12];
1148 fixup_map_stacktrace++;
1149 } while (*fixup_map_stacktrace);
1151 if (*fixup_map_spin_lock) {
1152 map_fds[13] = create_map_spin_lock();
1154 prog[*fixup_map_spin_lock].imm = map_fds[13];
1155 fixup_map_spin_lock++;
1156 } while (*fixup_map_spin_lock);
1158 if (*fixup_map_array_ro) {
1159 map_fds[14] = __create_map(BPF_MAP_TYPE_ARRAY, sizeof(int),
1160 sizeof(struct test_val), 1,
1162 update_map(map_fds[14], 0);
1164 prog[*fixup_map_array_ro].imm = map_fds[14];
1165 fixup_map_array_ro++;
1166 } while (*fixup_map_array_ro);
1168 if (*fixup_map_array_wo) {
1169 map_fds[15] = __create_map(BPF_MAP_TYPE_ARRAY, sizeof(int),
1170 sizeof(struct test_val), 1,
1172 update_map(map_fds[15], 0);
1174 prog[*fixup_map_array_wo].imm = map_fds[15];
1175 fixup_map_array_wo++;
1176 } while (*fixup_map_array_wo);
1178 if (*fixup_map_array_small) {
1179 map_fds[16] = __create_map(BPF_MAP_TYPE_ARRAY, sizeof(int),
1181 update_map(map_fds[16], 0);
1183 prog[*fixup_map_array_small].imm = map_fds[16];
1184 fixup_map_array_small++;
1185 } while (*fixup_map_array_small);
1187 if (*fixup_sk_storage_map) {
1188 map_fds[17] = create_sk_storage_map();
1190 prog[*fixup_sk_storage_map].imm = map_fds[17];
1191 fixup_sk_storage_map++;
1192 } while (*fixup_sk_storage_map);
1194 if (*fixup_map_event_output) {
1195 map_fds[18] = __create_map(BPF_MAP_TYPE_PERF_EVENT_ARRAY,
1196 sizeof(int), sizeof(int), 1, 0);
1198 prog[*fixup_map_event_output].imm = map_fds[18];
1199 fixup_map_event_output++;
1200 } while (*fixup_map_event_output);
1202 if (*fixup_map_reuseport_array) {
1203 map_fds[19] = __create_map(BPF_MAP_TYPE_REUSEPORT_SOCKARRAY,
1204 sizeof(u32), sizeof(u64), 1, 0);
1206 prog[*fixup_map_reuseport_array].imm = map_fds[19];
1207 fixup_map_reuseport_array++;
1208 } while (*fixup_map_reuseport_array);
1210 if (*fixup_map_ringbuf) {
1211 map_fds[20] = create_map(BPF_MAP_TYPE_RINGBUF, 0,
1214 prog[*fixup_map_ringbuf].imm = map_fds[20];
1215 fixup_map_ringbuf++;
1216 } while (*fixup_map_ringbuf);
1218 if (*fixup_map_timer) {
1219 map_fds[21] = create_map_timer();
1221 prog[*fixup_map_timer].imm = map_fds[21];
1223 } while (*fixup_map_timer);
1225 if (*fixup_map_kptr) {
1226 map_fds[22] = create_map_kptr();
1228 prog[*fixup_map_kptr].imm = map_fds[22];
1230 } while (*fixup_map_kptr);
1233 fixup_prog_kfuncs(prog, fd_array, test->fixup_kfunc_btf_id);
1236 static int set_admin(bool admin)
1241 err = cap_enable_effective(ADMIN_CAPS, NULL);
1243 perror("cap_enable_effective(ADMIN_CAPS)");
1245 err = cap_disable_effective(ADMIN_CAPS, NULL);
1247 perror("cap_disable_effective(ADMIN_CAPS)");
1253 static int do_prog_test_run(int fd_prog, bool unpriv, uint32_t expected_val,
1254 void *data, size_t size_data)
1256 __u8 tmp[TEST_DATA_LEN << 2];
1257 __u32 size_tmp = sizeof(tmp);
1258 int err, saved_errno;
1259 LIBBPF_OPTS(bpf_test_run_opts, topts,
1261 .data_size_in = size_data,
1263 .data_size_out = size_tmp,
1269 err = bpf_prog_test_run_opts(fd_prog, &topts);
1270 saved_errno = errno;
1276 switch (saved_errno) {
1278 printf("Did not run the program (not supported) ");
1282 printf("Did not run the program (no permission) ");
1287 printf("FAIL: Unexpected bpf_prog_test_run error (%s) ",
1288 strerror(saved_errno));
1293 if (topts.retval != expected_val && expected_val != POINTER_VALUE) {
1294 printf("FAIL retval %d != %d ", topts.retval, expected_val);
1301 /* Returns true if every part of exp (tab-separated) appears in log, in order.
1303 * If exp is an empty string, returns true.
1305 static bool cmp_str_seq(const char *log, const char *exp)
1314 p = strchr(exp, '\t');
1316 p = exp + strlen(exp);
1319 if (len >= sizeof(needle) || !len) {
1320 printf("FAIL\nTestcase bug\n");
1323 strncpy(needle, exp, len);
1325 q = strstr(log, needle);
1327 printf("FAIL\nUnexpected verifier log!\n"
1328 "EXP: %s\nRES:\n", needle);
1337 static bool is_null_insn(struct bpf_insn *insn)
1339 struct bpf_insn null_insn = {};
1341 return memcmp(insn, &null_insn, sizeof(null_insn)) == 0;
1344 static bool is_skip_insn(struct bpf_insn *insn)
1346 struct bpf_insn skip_insn = SKIP_INSNS();
1348 return memcmp(insn, &skip_insn, sizeof(skip_insn)) == 0;
1351 static int null_terminated_insn_len(struct bpf_insn *seq, int max_len)
1355 for (i = 0; i < max_len; ++i) {
1356 if (is_null_insn(&seq[i]))
1362 static bool compare_masked_insn(struct bpf_insn *orig, struct bpf_insn *masked)
1364 struct bpf_insn orig_masked;
1366 memcpy(&orig_masked, orig, sizeof(orig_masked));
1367 if (masked->imm == INSN_IMM_MASK)
1368 orig_masked.imm = INSN_IMM_MASK;
1369 if (masked->off == INSN_OFF_MASK)
1370 orig_masked.off = INSN_OFF_MASK;
1372 return memcmp(&orig_masked, masked, sizeof(orig_masked)) == 0;
1375 static int find_insn_subseq(struct bpf_insn *seq, struct bpf_insn *subseq,
1376 int seq_len, int subseq_len)
1380 if (subseq_len > seq_len)
1383 for (i = 0; i < seq_len - subseq_len + 1; ++i) {
1386 for (j = 0; j < subseq_len; ++j) {
1387 if (!compare_masked_insn(&seq[i + j], &subseq[j])) {
1399 static int find_skip_insn_marker(struct bpf_insn *seq, int len)
1403 for (i = 0; i < len; ++i)
1404 if (is_skip_insn(&seq[i]))
1410 /* Return true if all sub-sequences in `subseqs` could be found in
1411 * `seq` one after another. Sub-sequences are separated by a single
1414 static bool find_all_insn_subseqs(struct bpf_insn *seq, struct bpf_insn *subseqs,
1415 int seq_len, int max_subseqs_len)
1417 int subseqs_len = null_terminated_insn_len(subseqs, max_subseqs_len);
1419 while (subseqs_len > 0) {
1420 int skip_idx = find_skip_insn_marker(subseqs, subseqs_len);
1421 int cur_subseq_len = skip_idx < 0 ? subseqs_len : skip_idx;
1422 int subseq_idx = find_insn_subseq(seq, subseqs,
1423 seq_len, cur_subseq_len);
1427 seq += subseq_idx + cur_subseq_len;
1428 seq_len -= subseq_idx + cur_subseq_len;
1429 subseqs += cur_subseq_len + 1;
1430 subseqs_len -= cur_subseq_len + 1;
1436 static void print_insn(struct bpf_insn *buf, int cnt)
1440 printf(" addr op d s off imm\n");
1441 for (i = 0; i < cnt; ++i) {
1442 struct bpf_insn *insn = &buf[i];
1444 if (is_null_insn(insn))
1447 if (is_skip_insn(insn))
1450 printf(" %04x: %02x %1x %x %04hx %08x\n",
1451 i, insn->code, insn->dst_reg,
1452 insn->src_reg, insn->off, insn->imm);
1456 static bool check_xlated_program(struct bpf_test *test, int fd_prog)
1458 struct bpf_insn *buf;
1461 bool check_expected = !is_null_insn(test->expected_insns);
1462 bool check_unexpected = !is_null_insn(test->unexpected_insns);
1464 if (!check_expected && !check_unexpected)
1467 if (get_xlated_program(fd_prog, &buf, &cnt)) {
1468 printf("FAIL: can't get xlated program\n");
1473 if (check_expected &&
1474 !find_all_insn_subseqs(buf, test->expected_insns,
1475 cnt, MAX_EXPECTED_INSNS)) {
1476 printf("FAIL: can't find expected subsequence of instructions\n");
1479 printf("Program:\n");
1480 print_insn(buf, cnt);
1481 printf("Expected subsequence:\n");
1482 print_insn(test->expected_insns, MAX_EXPECTED_INSNS);
1486 if (check_unexpected &&
1487 find_all_insn_subseqs(buf, test->unexpected_insns,
1488 cnt, MAX_UNEXPECTED_INSNS)) {
1489 printf("FAIL: found unexpected subsequence of instructions\n");
1492 printf("Program:\n");
1493 print_insn(buf, cnt);
1494 printf("Un-expected subsequence:\n");
1495 print_insn(test->unexpected_insns, MAX_UNEXPECTED_INSNS);
1504 static void do_test_single(struct bpf_test *test, bool unpriv,
1505 int *passes, int *errors)
1507 int fd_prog, btf_fd, expected_ret, alignment_prevented_execution;
1508 int prog_len, prog_type = test->prog_type;
1509 struct bpf_insn *prog = test->insns;
1510 LIBBPF_OPTS(bpf_prog_load_opts, opts);
1511 int run_errs, run_successes;
1512 int map_fds[MAX_NR_MAPS];
1513 const char *expected_err;
1514 int fd_array[2] = { -1, -1 };
1520 if ((test->flags & F_NEEDS_JIT_ENABLED) && jit_disabled) {
1521 printf("SKIP (requires BPF JIT)\n");
1528 for (i = 0; i < MAX_NR_MAPS; i++)
1533 prog_type = BPF_PROG_TYPE_SOCKET_FILTER;
1534 fixup_skips = skips;
1535 do_test_fixup(test, prog_type, prog, map_fds, &fd_array[1]);
1536 if (test->fill_insns) {
1537 prog = test->fill_insns;
1538 prog_len = test->prog_len;
1540 prog_len = probe_filter_length(prog);
1542 /* If there were some map skips during fixup due to missing bpf
1543 * features, skip this test.
1545 if (fixup_skips != skips)
1548 pflags = testing_prog_flags();
1549 if (test->flags & F_LOAD_WITH_STRICT_ALIGNMENT)
1550 pflags |= BPF_F_STRICT_ALIGNMENT;
1551 if (test->flags & F_NEEDS_EFFICIENT_UNALIGNED_ACCESS)
1552 pflags |= BPF_F_ANY_ALIGNMENT;
1553 if (test->flags & ~3)
1554 pflags |= test->flags;
1556 expected_ret = unpriv && test->result_unpriv != UNDEF ?
1557 test->result_unpriv : test->result;
1558 expected_err = unpriv && test->errstr_unpriv ?
1559 test->errstr_unpriv : test->errstr;
1561 opts.expected_attach_type = test->expected_attach_type;
1563 opts.log_level = verif_log_level | 4; /* force stats */
1564 else if (expected_ret == VERBOSE_ACCEPT)
1567 opts.log_level = DEFAULT_LIBBPF_LOG_LEVEL;
1568 opts.prog_flags = pflags;
1569 if (fd_array[1] != -1)
1570 opts.fd_array = &fd_array[0];
1572 if ((prog_type == BPF_PROG_TYPE_TRACING ||
1573 prog_type == BPF_PROG_TYPE_LSM) && test->kfunc) {
1576 attach_btf_id = libbpf_find_vmlinux_btf_id(test->kfunc,
1577 opts.expected_attach_type);
1578 if (attach_btf_id < 0) {
1579 printf("FAIL\nFailed to find BTF ID for '%s'!\n",
1585 opts.attach_btf_id = attach_btf_id;
1588 if (test->btf_types[0] != 0) {
1589 btf_fd = load_btf_for_test(test);
1592 opts.prog_btf_fd = btf_fd;
1595 if (test->func_info_cnt != 0) {
1596 opts.func_info = test->func_info;
1597 opts.func_info_cnt = test->func_info_cnt;
1598 opts.func_info_rec_size = sizeof(test->func_info[0]);
1601 opts.log_buf = bpf_vlog;
1602 opts.log_size = sizeof(bpf_vlog);
1603 fd_prog = bpf_prog_load(prog_type, NULL, "GPL", prog, prog_len, &opts);
1604 saved_errno = errno;
1606 /* BPF_PROG_TYPE_TRACING requires more setup and
1607 * bpf_probe_prog_type won't give correct answer
1609 if (fd_prog < 0 && prog_type != BPF_PROG_TYPE_TRACING &&
1610 !libbpf_probe_bpf_prog_type(prog_type, NULL)) {
1611 printf("SKIP (unsupported program type %d)\n", prog_type);
1616 if (fd_prog < 0 && saved_errno == ENOTSUPP) {
1617 printf("SKIP (program uses an unsupported feature)\n");
1622 alignment_prevented_execution = 0;
1624 if (expected_ret == ACCEPT || expected_ret == VERBOSE_ACCEPT) {
1626 printf("FAIL\nFailed to load prog '%s'!\n",
1627 strerror(saved_errno));
1630 #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1632 (test->flags & F_NEEDS_EFFICIENT_UNALIGNED_ACCESS))
1633 alignment_prevented_execution = 1;
1635 if (expected_ret == VERBOSE_ACCEPT && !cmp_str_seq(bpf_vlog, expected_err)) {
1640 printf("FAIL\nUnexpected success to load!\n");
1643 if (!expected_err || !cmp_str_seq(bpf_vlog, expected_err)) {
1644 printf("FAIL\nUnexpected error message!\n\tEXP: %s\n\tRES: %s\n",
1645 expected_err, bpf_vlog);
1650 if (!unpriv && test->insn_processed) {
1651 uint32_t insn_processed;
1654 proc = strstr(bpf_vlog, "processed ");
1655 insn_processed = atoi(proc + 10);
1656 if (test->insn_processed != insn_processed) {
1657 printf("FAIL\nUnexpected insn_processed %u vs %u\n",
1658 insn_processed, test->insn_processed);
1664 printf(", verifier log:\n%s", bpf_vlog);
1666 if (!check_xlated_program(test, fd_prog))
1671 if (!alignment_prevented_execution && fd_prog >= 0 && test->runs >= 0) {
1672 uint32_t expected_val;
1678 for (i = 0; i < test->runs; i++) {
1679 if (unpriv && test->retvals[i].retval_unpriv)
1680 expected_val = test->retvals[i].retval_unpriv;
1682 expected_val = test->retvals[i].retval;
1684 err = do_prog_test_run(fd_prog, unpriv, expected_val,
1685 test->retvals[i].data,
1686 sizeof(test->retvals[i].data));
1688 printf("(run %d/%d) ", i + 1, test->runs);
1698 if (run_successes > 1)
1699 printf("%d cases ", run_successes);
1701 if (alignment_prevented_execution)
1702 printf(" (NOTE: not executed due to unknown alignment)");
1709 if (test->fill_insns)
1710 free(test->fill_insns);
1713 for (i = 0; i < MAX_NR_MAPS; i++)
1719 printf("%s", bpf_vlog);
1723 static bool is_admin(void)
1727 /* The test checks for finer cap as CAP_NET_ADMIN,
1728 * CAP_PERFMON, and CAP_BPF instead of CAP_SYS_ADMIN.
1729 * Thus, disable CAP_SYS_ADMIN at the beginning.
1731 if (cap_disable_effective(1ULL << CAP_SYS_ADMIN, &caps)) {
1732 perror("cap_disable_effective(CAP_SYS_ADMIN)");
1736 return (caps & ADMIN_CAPS) == ADMIN_CAPS;
1739 static bool test_as_unpriv(struct bpf_test *test)
1741 #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1742 /* Some architectures have strict alignment requirements. In
1743 * that case, the BPF verifier detects if a program has
1744 * unaligned accesses and rejects them. A user can pass
1745 * BPF_F_ANY_ALIGNMENT to a program to override this
1746 * check. That, however, will only work when a privileged user
1747 * loads a program. An unprivileged user loading a program
1748 * with this flag will be rejected prior entering the
1751 if (test->flags & F_NEEDS_EFFICIENT_UNALIGNED_ACCESS)
1754 return !test->prog_type ||
1755 test->prog_type == BPF_PROG_TYPE_SOCKET_FILTER ||
1756 test->prog_type == BPF_PROG_TYPE_CGROUP_SKB;
1759 static int do_test(bool unpriv, unsigned int from, unsigned int to)
1761 int i, passes = 0, errors = 0;
1763 /* ensure previous instance of the module is unloaded */
1764 unload_bpf_testmod(verbose);
1766 if (load_bpf_testmod(verbose))
1767 return EXIT_FAILURE;
1769 for (i = from; i < to; i++) {
1770 struct bpf_test *test = &tests[i];
1772 /* Program types that are not supported by non-root we
1775 if (test_as_unpriv(test) && unpriv_disabled) {
1776 printf("#%d/u %s SKIP\n", i, test->descr);
1778 } else if (test_as_unpriv(test)) {
1781 printf("#%d/u %s ", i, test->descr);
1782 do_test_single(test, true, &passes, &errors);
1788 printf("#%d/p %s SKIP\n", i, test->descr);
1791 printf("#%d/p %s ", i, test->descr);
1792 do_test_single(test, false, &passes, &errors);
1796 unload_bpf_testmod(verbose);
1799 printf("Summary: %d PASSED, %d SKIPPED, %d FAILED\n", passes,
1801 return errors ? EXIT_FAILURE : EXIT_SUCCESS;
1804 int main(int argc, char **argv)
1806 unsigned int from = 0, to = ARRAY_SIZE(tests);
1807 bool unpriv = !is_admin();
1810 if (argc > 1 && strcmp(argv[1], "-v") == 0) {
1813 verif_log_level = 1;
1816 if (argc > 1 && strcmp(argv[1], "-vv") == 0) {
1819 verif_log_level = 2;
1824 unsigned int l = atoi(argv[arg]);
1825 unsigned int u = atoi(argv[arg + 1]);
1827 if (l < to && u < to) {
1831 } else if (argc == 2) {
1832 unsigned int t = atoi(argv[arg]);
1840 unpriv_disabled = get_unpriv_disabled();
1841 if (unpriv && unpriv_disabled) {
1842 printf("Cannot run as unprivileged user with sysctl %s.\n",
1844 return EXIT_FAILURE;
1847 jit_disabled = !is_jit_enabled();
1849 /* Use libbpf 1.0 API mode */
1850 libbpf_set_strict_mode(LIBBPF_STRICT_ALL);
1852 bpf_semi_rand_init();
1853 return do_test(unpriv, from, to);