bpf: mini eBPF library, test stubs and verifier testsuite
commit3c731eba48e1b0650decfc91a839b80f0e05ce8f
authorAlexei Starovoitov <ast@plumgrid.com>
Fri, 26 Sep 2014 07:17:07 +0000 (26 00:17 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 26 Sep 2014 19:05:15 +0000 (26 15:05 -0400)
treead7927653cfca896fd60e2e7b2fb12750e46fd2e
parent17a5267067f3c372fec9ffb798d6eaba6b5e6a4c
bpf: mini eBPF library, test stubs and verifier testsuite

1.
the library includes a trivial set of BPF syscall wrappers:
int bpf_create_map(int key_size, int value_size, int max_entries);
int bpf_update_elem(int fd, void *key, void *value);
int bpf_lookup_elem(int fd, void *key, void *value);
int bpf_delete_elem(int fd, void *key);
int bpf_get_next_key(int fd, void *key, void *next_key);
int bpf_prog_load(enum bpf_prog_type prog_type,
  const struct sock_filter_int *insns, int insn_len,
  const char *license);
bpf_prog_load() stores verifier log into global bpf_log_buf[] array

and BPF_*() macros to build instructions

2.
test stubs configure eBPF infra with 'unspec' map and program types.
These are fake types used by user space testsuite only.

3.
verifier tests valid and invalid programs and expects predefined
error log messages from kernel.
40 tests so far.

$ sudo ./test_verifier
 #0 add+sub+mul OK
 #1 unreachable OK
 #2 unreachable2 OK
 #3 out of range jump OK
 #4 out of range jump2 OK
 #5 test1 ld_imm64 OK
 ...

Signed-off-by: Alexei Starovoitov <ast@plumgrid.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
kernel/bpf/Makefile
kernel/bpf/test_stub.c [new file with mode: 0644]
lib/Kconfig.debug
samples/bpf/Makefile [new file with mode: 0644]
samples/bpf/libbpf.c [new file with mode: 0644]
samples/bpf/libbpf.h [new file with mode: 0644]
samples/bpf/test_verifier.c [new file with mode: 0644]