]> git.ipfire.org Git - people/arne_f/kernel.git/blame - samples/bpf/bpf_load.h
KVM: VMX: Don't freeze guest when event delivery causes an APIC-access exit
[people/arne_f/kernel.git] / samples / bpf / bpf_load.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
249b812d
AS
2#ifndef __BPF_LOAD_H
3#define __BPF_LOAD_H
4
d40fc181
JS
5#include "libbpf.h"
6
249b812d
AS
7#define MAX_MAPS 32
8#define MAX_PROGS 32
9
9fd63d05
MKL
10struct bpf_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;
ad17d0e6 17 unsigned int numa_node;
9fd63d05
MKL
18};
19
6979bcc7
JDB
20struct bpf_map_data {
21 int fd;
22 char *name;
23 size_t elf_offset;
24 struct bpf_map_def def;
25};
26
27typedef void (*fixup_map_cb)(struct bpf_map_data *map, int idx);
9fd63d05 28
249b812d 29extern int prog_fd[MAX_PROGS];
b896c4f9 30extern int event_fd[MAX_PROGS];
d40fc181 31extern char bpf_log_buf[BPF_LOG_BUF_SIZE];
4f2e7ae5 32extern int prog_cnt;
249b812d 33
9178b4c1
JDB
34/* There is a one-to-one mapping between map_fd[] and map_data[].
35 * The map_data[] just contains more rich info on the given map.
36 */
37extern int map_fd[MAX_MAPS];
38extern struct bpf_map_data map_data[MAX_MAPS];
39extern int map_data_count;
40
249b812d
AS
41/* parses elf file compiled by llvm .c->.o
42 * . parses 'maps' section and creates maps via BPF syscall
43 * . parses 'license' section and passes it to syscall
44 * . parses elf relocations for BPF maps and adjusts BPF_LD_IMM64 insns by
45 * storing map_fd into insn->imm and marking such insns as BPF_PSEUDO_MAP_FD
46 * . loads eBPF programs via BPF syscall
47 *
48 * One ELF file can contain multiple BPF programs which will be loaded
49 * and their FDs stored stored in prog_fd array
50 *
51 * returns zero on success
52 */
53int load_bpf_file(char *path);
9fd63d05 54int load_bpf_file_fixup_map(const char *path, fixup_map_cb fixup_map);
249b812d 55
b896c4f9 56void read_trace_pipe(void);
3622e7e4
AS
57struct ksym {
58 long addr;
59 char *name;
60};
b896c4f9 61
3622e7e4
AS
62int load_kallsyms(void);
63struct ksym *ksym_search(long key);
6387d011 64int set_link_xdp_fd(int ifindex, int fd, __u32 flags);
249b812d 65#endif