1
2 #ifndef __BPF_LOAD_H
3 #define __BPF_LOAD_H
4
5 #include <bpf/bpf.h>
6
7 #define MAX_MAPS 32
8 #define MAX_PROGS 32
9
10 struct bpf_load_map_def {
11 unsigned int type;
12 unsigned int key_size;
13 unsigned int value_size;
14 unsigned int max_entries;
15 unsigned int map_flags;
16 unsigned int inner_map_idx;
17 unsigned int numa_node;
18 };
19
20 struct bpf_map_data {
21 int fd;
22 char *name;
23 size_t elf_offset;
24 struct bpf_load_map_def def;
25 };
26
27 typedef void (*fixup_map_cb)(struct bpf_map_data *map, int idx);
28
29 extern int prog_fd[MAX_PROGS];
30 extern int event_fd[MAX_PROGS];
31 extern char bpf_log_buf[BPF_LOG_BUF_SIZE];
32 extern int prog_cnt;
33
34
35
36
37 extern int map_fd[MAX_MAPS];
38 extern struct bpf_map_data map_data[MAX_MAPS];
39 extern int map_data_count;
40
41
42
43
44
45
46
47
48
49
50
51
52
53 int load_bpf_file(char *path);
54 int load_bpf_file_fixup_map(const char *path, fixup_map_cb fixup_map);
55
56 void read_trace_pipe(void);
57 int bpf_set_link_xdp_fd(int ifindex, int fd, __u32 flags);
58 #endif