Alexei Starovoitov | 249b812 | 2014-12-01 15:06:37 -0800 | [diff] [blame] | 1 | #ifndef __BPF_LOAD_H |
| 2 | #define __BPF_LOAD_H |
| 3 | |
Joe Stringer | d40fc18 | 2016-12-14 14:43:38 -0800 | [diff] [blame] | 4 | #include "libbpf.h" |
| 5 | |
Alexei Starovoitov | 249b812 | 2014-12-01 15:06:37 -0800 | [diff] [blame] | 6 | #define MAX_MAPS 32 |
| 7 | #define MAX_PROGS 32 |
| 8 | |
Martin KaFai Lau | 9fd63d0 | 2017-04-14 10:30:28 -0700 | [diff] [blame] | 9 | struct 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; |
| 16 | }; |
| 17 | |
Jesper Dangaard Brouer | 6979bcc | 2017-05-02 14:32:01 +0200 | [diff] [blame] | 18 | struct bpf_map_data { |
| 19 | int fd; |
| 20 | char *name; |
| 21 | size_t elf_offset; |
| 22 | struct bpf_map_def def; |
| 23 | }; |
| 24 | |
| 25 | typedef void (*fixup_map_cb)(struct bpf_map_data *map, int idx); |
Martin KaFai Lau | 9fd63d0 | 2017-04-14 10:30:28 -0700 | [diff] [blame] | 26 | |
Alexei Starovoitov | 249b812 | 2014-12-01 15:06:37 -0800 | [diff] [blame] | 27 | extern int prog_fd[MAX_PROGS]; |
Alexei Starovoitov | b896c4f | 2015-03-25 12:49:23 -0700 | [diff] [blame] | 28 | extern int event_fd[MAX_PROGS]; |
Joe Stringer | d40fc18 | 2016-12-14 14:43:38 -0800 | [diff] [blame] | 29 | extern char bpf_log_buf[BPF_LOG_BUF_SIZE]; |
David Ahern | 4f2e7ae | 2016-12-01 08:48:07 -0800 | [diff] [blame] | 30 | extern int prog_cnt; |
Alexei Starovoitov | 249b812 | 2014-12-01 15:06:37 -0800 | [diff] [blame] | 31 | |
Jesper Dangaard Brouer | 9178b4c | 2017-05-02 14:32:06 +0200 | [diff] [blame^] | 32 | /* There is a one-to-one mapping between map_fd[] and map_data[]. |
| 33 | * The map_data[] just contains more rich info on the given map. |
| 34 | */ |
| 35 | extern int map_fd[MAX_MAPS]; |
| 36 | extern struct bpf_map_data map_data[MAX_MAPS]; |
| 37 | extern int map_data_count; |
| 38 | |
Alexei Starovoitov | 249b812 | 2014-12-01 15:06:37 -0800 | [diff] [blame] | 39 | /* parses elf file compiled by llvm .c->.o |
| 40 | * . parses 'maps' section and creates maps via BPF syscall |
| 41 | * . parses 'license' section and passes it to syscall |
| 42 | * . parses elf relocations for BPF maps and adjusts BPF_LD_IMM64 insns by |
| 43 | * storing map_fd into insn->imm and marking such insns as BPF_PSEUDO_MAP_FD |
| 44 | * . loads eBPF programs via BPF syscall |
| 45 | * |
| 46 | * One ELF file can contain multiple BPF programs which will be loaded |
| 47 | * and their FDs stored stored in prog_fd array |
| 48 | * |
| 49 | * returns zero on success |
| 50 | */ |
| 51 | int load_bpf_file(char *path); |
Martin KaFai Lau | 9fd63d0 | 2017-04-14 10:30:28 -0700 | [diff] [blame] | 52 | int load_bpf_file_fixup_map(const char *path, fixup_map_cb fixup_map); |
Alexei Starovoitov | 249b812 | 2014-12-01 15:06:37 -0800 | [diff] [blame] | 53 | |
Alexei Starovoitov | b896c4f | 2015-03-25 12:49:23 -0700 | [diff] [blame] | 54 | void read_trace_pipe(void); |
Alexei Starovoitov | 3622e7e | 2016-03-07 21:57:19 -0800 | [diff] [blame] | 55 | struct ksym { |
| 56 | long addr; |
| 57 | char *name; |
| 58 | }; |
Alexei Starovoitov | b896c4f | 2015-03-25 12:49:23 -0700 | [diff] [blame] | 59 | |
Alexei Starovoitov | 3622e7e | 2016-03-07 21:57:19 -0800 | [diff] [blame] | 60 | int load_kallsyms(void); |
| 61 | struct ksym *ksym_search(long key); |
Jesper Dangaard Brouer | 6387d01 | 2017-05-01 11:26:15 +0200 | [diff] [blame] | 62 | int set_link_xdp_fd(int ifindex, int fd, __u32 flags); |
Alexei Starovoitov | 249b812 | 2014-12-01 15:06:37 -0800 | [diff] [blame] | 63 | #endif |