Merge branch '4.14-features' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus
[linux-2.6-block.git] / samples / bpf / bpf_load.h
CommitLineData
249b812d
AS
1#ifndef __BPF_LOAD_H
2#define __BPF_LOAD_H
3
d40fc181
JS
4#include "libbpf.h"
5
249b812d
AS
6#define MAX_MAPS 32
7#define MAX_PROGS 32
8
9fd63d05
MKL
9struct bpf_map_def {
10 unsigned int type;
11 unsigned int key_size;
12 unsigned int value_size;
13 unsigned int max_entries;
14 unsigned int map_flags;
15 unsigned int inner_map_idx;
ad17d0e6 16 unsigned int numa_node;
9fd63d05
MKL
17};
18
6979bcc7
JDB
19struct bpf_map_data {
20 int fd;
21 char *name;
22 size_t elf_offset;
23 struct bpf_map_def def;
24};
25
26typedef void (*fixup_map_cb)(struct bpf_map_data *map, int idx);
9fd63d05 27
249b812d 28extern int prog_fd[MAX_PROGS];
b896c4f9 29extern int event_fd[MAX_PROGS];
d40fc181 30extern char bpf_log_buf[BPF_LOG_BUF_SIZE];
4f2e7ae5 31extern int prog_cnt;
249b812d 32
9178b4c1
JDB
33/* There is a one-to-one mapping between map_fd[] and map_data[].
34 * The map_data[] just contains more rich info on the given map.
35 */
36extern int map_fd[MAX_MAPS];
37extern struct bpf_map_data map_data[MAX_MAPS];
38extern int map_data_count;
39
249b812d
AS
40/* parses elf file compiled by llvm .c->.o
41 * . parses 'maps' section and creates maps via BPF syscall
42 * . parses 'license' section and passes it to syscall
43 * . parses elf relocations for BPF maps and adjusts BPF_LD_IMM64 insns by
44 * storing map_fd into insn->imm and marking such insns as BPF_PSEUDO_MAP_FD
45 * . loads eBPF programs via BPF syscall
46 *
47 * One ELF file can contain multiple BPF programs which will be loaded
48 * and their FDs stored stored in prog_fd array
49 *
50 * returns zero on success
51 */
52int load_bpf_file(char *path);
9fd63d05 53int load_bpf_file_fixup_map(const char *path, fixup_map_cb fixup_map);
249b812d 54
b896c4f9 55void read_trace_pipe(void);
3622e7e4
AS
56struct ksym {
57 long addr;
58 char *name;
59};
b896c4f9 60
3622e7e4
AS
61int load_kallsyms(void);
62struct ksym *ksym_search(long key);
6387d011 63int set_link_xdp_fd(int ifindex, int fd, __u32 flags);
249b812d 64#endif