blob: fb46a421ab411fefe2c23ed36af4cbfee27a3807 [file] [log] [blame]
Alexei Starovoitov249b8122014-12-01 15:06:37 -08001#ifndef __BPF_LOAD_H
2#define __BPF_LOAD_H
3
4#define MAX_MAPS 32
5#define MAX_PROGS 32
6
7extern int map_fd[MAX_MAPS];
8extern int prog_fd[MAX_PROGS];
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -07009extern int event_fd[MAX_PROGS];
David Ahern4f2e7ae2016-12-01 08:48:07 -080010extern int prog_cnt;
Alexei Starovoitov249b8122014-12-01 15:06:37 -080011
12/* parses elf file compiled by llvm .c->.o
13 * . parses 'maps' section and creates maps via BPF syscall
14 * . parses 'license' section and passes it to syscall
15 * . parses elf relocations for BPF maps and adjusts BPF_LD_IMM64 insns by
16 * storing map_fd into insn->imm and marking such insns as BPF_PSEUDO_MAP_FD
17 * . loads eBPF programs via BPF syscall
18 *
19 * One ELF file can contain multiple BPF programs which will be loaded
20 * and their FDs stored stored in prog_fd array
21 *
22 * returns zero on success
23 */
24int load_bpf_file(char *path);
25
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070026void read_trace_pipe(void);
Alexei Starovoitov3622e7e2016-03-07 21:57:19 -080027struct ksym {
28 long addr;
29 char *name;
30};
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070031
Alexei Starovoitov3622e7e2016-03-07 21:57:19 -080032int load_kallsyms(void);
33struct ksym *ksym_search(long key);
Martin KaFai Lau12d8bb62016-12-07 15:53:14 -080034int set_link_xdp_fd(int ifindex, int fd);
Alexei Starovoitov249b8122014-12-01 15:06:37 -080035#endif