1 /* eBPF mini library */
7 int bpf_create_map(enum bpf_map_type map_type
, int key_size
, int value_size
,
9 int bpf_update_elem(int fd
, void *key
, void *value
, unsigned long long flags
);
10 int bpf_lookup_elem(int fd
, void *key
, void *value
);
11 int bpf_delete_elem(int fd
, void *key
);
12 int bpf_get_next_key(int fd
, void *key
, void *next_key
);
14 int bpf_prog_load(enum bpf_prog_type prog_type
,
15 const struct bpf_insn
*insns
, int insn_len
,
16 const char *license
, int kern_version
);
18 #define LOG_BUF_SIZE 65536
19 extern char bpf_log_buf
[LOG_BUF_SIZE
];
21 /* ALU ops on registers, bpf_add|sub|...: dst_reg += src_reg */
23 #define BPF_ALU64_REG(OP, DST, SRC) \
24 ((struct bpf_insn) { \
25 .code = BPF_ALU64 | BPF_OP(OP) | BPF_X, \
31 #define BPF_ALU32_REG(OP, DST, SRC) \
32 ((struct bpf_insn) { \
33 .code = BPF_ALU | BPF_OP(OP) | BPF_X, \
39 /* ALU ops on immediates, bpf_add|sub|...: dst_reg += imm32 */
41 #define BPF_ALU64_IMM(OP, DST, IMM) \
42 ((struct bpf_insn) { \
43 .code = BPF_ALU64 | BPF_OP(OP) | BPF_K, \
49 #define BPF_ALU32_IMM(OP, DST, IMM) \
50 ((struct bpf_insn) { \
51 .code = BPF_ALU | BPF_OP(OP) | BPF_K, \
57 /* Short form of mov, dst_reg = src_reg */
59 #define BPF_MOV64_REG(DST, SRC) \
60 ((struct bpf_insn) { \
61 .code = BPF_ALU64 | BPF_MOV | BPF_X, \
67 /* Short form of mov, dst_reg = imm32 */
69 #define BPF_MOV64_IMM(DST, IMM) \
70 ((struct bpf_insn) { \
71 .code = BPF_ALU64 | BPF_MOV | BPF_K, \
77 /* BPF_LD_IMM64 macro encodes single 'load 64-bit immediate' insn */
78 #define BPF_LD_IMM64(DST, IMM) \
79 BPF_LD_IMM64_RAW(DST, 0, IMM)
81 #define BPF_LD_IMM64_RAW(DST, SRC, IMM) \
82 ((struct bpf_insn) { \
83 .code = BPF_LD | BPF_DW | BPF_IMM, \
87 .imm = (__u32) (IMM) }), \
88 ((struct bpf_insn) { \
89 .code = 0, /* zero is reserved opcode */ \
93 .imm = ((__u64) (IMM)) >> 32 })
95 #ifndef BPF_PSEUDO_MAP_FD
96 # define BPF_PSEUDO_MAP_FD 1
99 /* pseudo BPF_LD_IMM64 insn used to refer to process-local map_fd */
100 #define BPF_LD_MAP_FD(DST, MAP_FD) \
101 BPF_LD_IMM64_RAW(DST, BPF_PSEUDO_MAP_FD, MAP_FD)
104 /* Direct packet access, R0 = *(uint *) (skb->data + imm32) */
106 #define BPF_LD_ABS(SIZE, IMM) \
107 ((struct bpf_insn) { \
108 .code = BPF_LD | BPF_SIZE(SIZE) | BPF_ABS, \
114 /* Memory load, dst_reg = *(uint *) (src_reg + off16) */
116 #define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \
117 ((struct bpf_insn) { \
118 .code = BPF_LDX | BPF_SIZE(SIZE) | BPF_MEM, \
124 /* Memory store, *(uint *) (dst_reg + off16) = src_reg */
126 #define BPF_STX_MEM(SIZE, DST, SRC, OFF) \
127 ((struct bpf_insn) { \
128 .code = BPF_STX | BPF_SIZE(SIZE) | BPF_MEM, \
134 /* Memory store, *(uint *) (dst_reg + off16) = imm32 */
136 #define BPF_ST_MEM(SIZE, DST, OFF, IMM) \
137 ((struct bpf_insn) { \
138 .code = BPF_ST | BPF_SIZE(SIZE) | BPF_MEM, \
144 /* Conditional jumps against registers, if (dst_reg 'op' src_reg) goto pc + off16 */
146 #define BPF_JMP_REG(OP, DST, SRC, OFF) \
147 ((struct bpf_insn) { \
148 .code = BPF_JMP | BPF_OP(OP) | BPF_X, \
154 /* Conditional jumps against immediates, if (dst_reg 'op' imm32) goto pc + off16 */
156 #define BPF_JMP_IMM(OP, DST, IMM, OFF) \
157 ((struct bpf_insn) { \
158 .code = BPF_JMP | BPF_OP(OP) | BPF_K, \
164 /* Raw code statement block */
166 #define BPF_RAW_INSN(CODE, DST, SRC, OFF, IMM) \
167 ((struct bpf_insn) { \
176 #define BPF_EXIT_INSN() \
177 ((struct bpf_insn) { \
178 .code = BPF_JMP | BPF_EXIT, \
184 /* create RAW socket and bind to interface 'name' */
185 int open_raw_sock(const char *name
);
187 struct perf_event_attr
;
188 int perf_event_open(struct perf_event_attr
*attr
, int pid
, int cpu
,
189 int group_fd
, unsigned long flags
);