blob: ebc6dceddb58c00e4253e4fc3b37eda7a17b62be [file] [log] [blame]
Wang Nan8f9e05f2016-01-11 13:47:57 +00001#include <asm/unistd.h>
Wang Nan1b76c132015-07-01 02:13:51 +00002#include <linux/bpf.h>
Wang Nan8f9e05f2016-01-11 13:47:57 +00003#include <unistd.h>
4
5#ifndef __NR_bpf
6# if defined(__i386__)
7# define __NR_bpf 357
8# elif defined(__x86_64__)
9# define __NR_bpf 321
10# elif defined(__aarch64__)
11# define __NR_bpf 280
David S. Millerb0c47802017-04-22 12:31:05 -070012# elif defined(__sparc__)
13# define __NR_bpf 349
14# else
Wang Nan8f9e05f2016-01-11 13:47:57 +000015# error __NR_bpf not defined. libbpf does not support your arch.
16# endif
17#endif
Wang Nan1b76c132015-07-01 02:13:51 +000018
19int main(void)
20{
21 union bpf_attr attr;
22
Wang Nan8f9e05f2016-01-11 13:47:57 +000023 /* Check fields in attr */
Wang Nan1b76c132015-07-01 02:13:51 +000024 attr.prog_type = BPF_PROG_TYPE_KPROBE;
25 attr.insn_cnt = 0;
26 attr.insns = 0;
27 attr.license = 0;
28 attr.log_buf = 0;
29 attr.log_size = 0;
30 attr.log_level = 0;
31 attr.kern_version = 0;
32
Wang Nan8f9e05f2016-01-11 13:47:57 +000033 /*
34 * Test existence of __NR_bpf and BPF_PROG_LOAD.
35 * This call should fail if we run the testcase.
36 */
Florian Fainelli1a714762016-04-24 19:34:54 -070037 return syscall(__NR_bpf, BPF_PROG_LOAD, &attr, sizeof(attr));
Wang Nan1b76c132015-07-01 02:13:51 +000038}