xref: /linux/tools/build/feature/test-bpf.c (revision a0fa68d8ce759dbf6aaf19a043ddd77a2128c26c)
1 // SPDX-License-Identifier: GPL-2.0
2 #include <asm/unistd.h>
3 #include <linux/bpf.h>
4 #include <unistd.h>
5 
6 #ifndef __NR_bpf
7 # if defined(__i386__)
8 #  define __NR_bpf 357
9 # elif defined(__x86_64__)
10 #  define __NR_bpf 321
11 # elif defined(__aarch64__)
12 #  define __NR_bpf 280
13 # elif defined(__sparc__)
14 #  define __NR_bpf 349
15 # elif defined(__s390__)
16 #  define __NR_bpf 351
17 # elif defined(__mips__) && defined(_ABIO32)
18 #  define __NR_bpf 4355
19 # elif defined(__mips__) && defined(_ABIN32)
20 #  define __NR_bpf 6319
21 # elif defined(__mips__) && defined(_ABI64)
22 #  define __NR_bpf 5315
23 # elif defined(__loongarch__)
24 #  define __NR_bpf 280
25 # else
26 #  error __NR_bpf not defined. libbpf does not support your arch.
27 # endif
28 #endif
29 
30 int main(void)
31 {
32 	union bpf_attr attr;
33 
34 	/* Check fields in attr */
35 	attr.prog_type = BPF_PROG_TYPE_KPROBE;
36 	attr.insn_cnt = 0;
37 	attr.insns = 0;
38 	attr.license = 0;
39 	attr.log_buf = 0;
40 	attr.log_size = 0;
41 	attr.log_level = 0;
42 	attr.kern_version = 0;
43 	attr.prog_flags = 0;
44 
45 	/*
46 	 * Test existence of __NR_bpf and BPF_PROG_LOAD.
47 	 * This call should fail if we run the testcase.
48 	 */
49 	return syscall(__NR_bpf, BPF_PROG_LOAD, &attr, sizeof(attr)) == 0;
50 }
51