blob: c827827299b3b77831650e762376b061b6c93021 [file] [log] [blame]
Alexei Starovoitov249b8122014-12-01 15:06:37 -08001#ifndef __BPF_LOAD_H
2#define __BPF_LOAD_H
3
Joe Stringerd40fc182016-12-14 14:43:38 -08004#include "libbpf.h"
5
Alexei Starovoitov249b8122014-12-01 15:06:37 -08006#define MAX_MAPS 32
7#define MAX_PROGS 32
8
9extern int map_fd[MAX_MAPS];
10extern int prog_fd[MAX_PROGS];
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070011extern int event_fd[MAX_PROGS];
Joe Stringerd40fc182016-12-14 14:43:38 -080012extern char bpf_log_buf[BPF_LOG_BUF_SIZE];
David Ahern4f2e7ae2016-12-01 08:48:07 -080013extern int prog_cnt;
Alexei Starovoitov249b8122014-12-01 15:06:37 -080014
15/* parses elf file compiled by llvm .c->.o
16 * . parses 'maps' section and creates maps via BPF syscall
17 * . parses 'license' section and passes it to syscall
18 * . parses elf relocations for BPF maps and adjusts BPF_LD_IMM64 insns by
19 * storing map_fd into insn->imm and marking such insns as BPF_PSEUDO_MAP_FD
20 * . loads eBPF programs via BPF syscall
21 *
22 * One ELF file can contain multiple BPF programs which will be loaded
23 * and their FDs stored stored in prog_fd array
24 *
25 * returns zero on success
26 */
27int load_bpf_file(char *path);
28
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070029void read_trace_pipe(void);
Alexei Starovoitov3622e7e2016-03-07 21:57:19 -080030struct ksym {
31 long addr;
32 char *name;
33};
Alexei Starovoitovb896c4f2015-03-25 12:49:23 -070034
Alexei Starovoitov3622e7e2016-03-07 21:57:19 -080035int load_kallsyms(void);
36struct ksym *ksym_search(long key);
Martin KaFai Lau12d8bb62016-12-07 15:53:14 -080037int set_link_xdp_fd(int ifindex, int fd);
Alexei Starovoitov249b8122014-12-01 15:06:37 -080038#endif