blob: 43aa1f8855c7ff59ab562b722cfd8dc19c4eee7e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Linux Socket Filter Data Structures
3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#ifndef __LINUX_FILTER_H__
5#define __LINUX_FILTER_H__
6
Daniel Borkmannb954d832014-09-10 15:01:02 +02007#include <stdarg.h>
8
Arun Sharma600634972011-07-26 16:09:06 -07009#include <linux/atomic.h>
Will Drewry0c5fe1b2012-04-12 16:47:53 -050010#include <linux/compat.h>
Zi Shen Lim9f12fbe2014-07-03 07:56:54 -070011#include <linux/skbuff.h>
Daniel Borkmannb954d832014-09-10 15:01:02 +020012#include <linux/linkage.h>
13#include <linux/printk.h>
Alexei Starovoitovd45ed4a2013-10-04 00:14:06 -070014#include <linux/workqueue.h>
Daniel Borkmannb13138e2015-07-30 12:42:49 +020015#include <linux/sched.h>
Alexei Starovoitovff936a02015-10-07 10:55:41 -070016#include <net/sch_generic.h>
Daniel Borkmannb954d832014-09-10 15:01:02 +020017
Daniel Borkmann60a3b222014-09-02 22:53:44 +020018#include <asm/cacheflush.h>
Daniel Borkmannb954d832014-09-10 15:01:02 +020019
20#include <uapi/linux/filter.h>
Alexei Starovoitovdaedfb22014-09-04 22:17:18 -070021#include <uapi/linux/bpf.h>
Daniel Borkmann60a3b222014-09-02 22:53:44 +020022
23struct sk_buff;
24struct sock;
25struct seccomp_data;
Alexei Starovoitov09756af2014-09-26 00:17:00 -070026struct bpf_prog_aux;
Heiko Carstens792d4b52011-05-22 07:08:11 +000027
Daniel Borkmann30743832014-05-01 18:34:19 +020028/* ArgX, context and stack frame pointer register positions. Note,
29 * Arg1, Arg2, Arg3, etc are used as argument mappings of function
30 * calls in BPF_CALL instruction.
31 */
32#define BPF_REG_ARG1 BPF_REG_1
33#define BPF_REG_ARG2 BPF_REG_2
34#define BPF_REG_ARG3 BPF_REG_3
35#define BPF_REG_ARG4 BPF_REG_4
36#define BPF_REG_ARG5 BPF_REG_5
37#define BPF_REG_CTX BPF_REG_6
38#define BPF_REG_FP BPF_REG_10
39
40/* Additional register mappings for converted user programs. */
41#define BPF_REG_A BPF_REG_0
42#define BPF_REG_X BPF_REG_7
43#define BPF_REG_TMP BPF_REG_8
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +010044
45/* BPF program can access up to 512 bytes of stack space. */
46#define MAX_BPF_STACK 512
47
Daniel Borkmannf8f6d672014-05-29 10:22:51 +020048/* Helper macros for filter block array initializers. */
Alexei Starovoitov9739eef2014-05-08 14:10:51 -070049
Alexei Starovoitove430f342014-06-06 14:46:06 -070050/* ALU ops on registers, bpf_add|sub|...: dst_reg += src_reg */
Alexei Starovoitov9739eef2014-05-08 14:10:51 -070051
Alexei Starovoitove430f342014-06-06 14:46:06 -070052#define BPF_ALU64_REG(OP, DST, SRC) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -070053 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +020054 .code = BPF_ALU64 | BPF_OP(OP) | BPF_X, \
Alexei Starovoitove430f342014-06-06 14:46:06 -070055 .dst_reg = DST, \
56 .src_reg = SRC, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +020057 .off = 0, \
58 .imm = 0 })
Alexei Starovoitov9739eef2014-05-08 14:10:51 -070059
Alexei Starovoitove430f342014-06-06 14:46:06 -070060#define BPF_ALU32_REG(OP, DST, SRC) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -070061 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +020062 .code = BPF_ALU | BPF_OP(OP) | BPF_X, \
Alexei Starovoitove430f342014-06-06 14:46:06 -070063 .dst_reg = DST, \
64 .src_reg = SRC, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +020065 .off = 0, \
66 .imm = 0 })
Alexei Starovoitov9739eef2014-05-08 14:10:51 -070067
Alexei Starovoitove430f342014-06-06 14:46:06 -070068/* ALU ops on immediates, bpf_add|sub|...: dst_reg += imm32 */
Alexei Starovoitov9739eef2014-05-08 14:10:51 -070069
Alexei Starovoitove430f342014-06-06 14:46:06 -070070#define BPF_ALU64_IMM(OP, DST, IMM) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -070071 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +020072 .code = BPF_ALU64 | BPF_OP(OP) | BPF_K, \
Alexei Starovoitove430f342014-06-06 14:46:06 -070073 .dst_reg = DST, \
74 .src_reg = 0, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +020075 .off = 0, \
76 .imm = IMM })
Alexei Starovoitov9739eef2014-05-08 14:10:51 -070077
Alexei Starovoitove430f342014-06-06 14:46:06 -070078#define BPF_ALU32_IMM(OP, DST, IMM) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -070079 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +020080 .code = BPF_ALU | BPF_OP(OP) | BPF_K, \
Alexei Starovoitove430f342014-06-06 14:46:06 -070081 .dst_reg = DST, \
82 .src_reg = 0, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +020083 .off = 0, \
84 .imm = IMM })
Alexei Starovoitov9739eef2014-05-08 14:10:51 -070085
Daniel Borkmannf8f6d672014-05-29 10:22:51 +020086/* Endianess conversion, cpu_to_{l,b}e(), {l,b}e_to_cpu() */
Alexei Starovoitov9739eef2014-05-08 14:10:51 -070087
Alexei Starovoitove430f342014-06-06 14:46:06 -070088#define BPF_ENDIAN(TYPE, DST, LEN) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -070089 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +020090 .code = BPF_ALU | BPF_END | BPF_SRC(TYPE), \
Alexei Starovoitove430f342014-06-06 14:46:06 -070091 .dst_reg = DST, \
92 .src_reg = 0, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +020093 .off = 0, \
94 .imm = LEN })
95
Alexei Starovoitove430f342014-06-06 14:46:06 -070096/* Short form of mov, dst_reg = src_reg */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +020097
Alexei Starovoitove430f342014-06-06 14:46:06 -070098#define BPF_MOV64_REG(DST, SRC) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -070099 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200100 .code = BPF_ALU64 | BPF_MOV | BPF_X, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700101 .dst_reg = DST, \
102 .src_reg = SRC, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200103 .off = 0, \
104 .imm = 0 })
105
Alexei Starovoitove430f342014-06-06 14:46:06 -0700106#define BPF_MOV32_REG(DST, SRC) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700107 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200108 .code = BPF_ALU | BPF_MOV | BPF_X, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700109 .dst_reg = DST, \
110 .src_reg = SRC, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200111 .off = 0, \
112 .imm = 0 })
113
Alexei Starovoitove430f342014-06-06 14:46:06 -0700114/* Short form of mov, dst_reg = imm32 */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200115
Alexei Starovoitove430f342014-06-06 14:46:06 -0700116#define BPF_MOV64_IMM(DST, IMM) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700117 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200118 .code = BPF_ALU64 | BPF_MOV | BPF_K, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700119 .dst_reg = DST, \
120 .src_reg = 0, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200121 .off = 0, \
122 .imm = IMM })
123
Alexei Starovoitove430f342014-06-06 14:46:06 -0700124#define BPF_MOV32_IMM(DST, IMM) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700125 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200126 .code = BPF_ALU | BPF_MOV | BPF_K, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700127 .dst_reg = DST, \
128 .src_reg = 0, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200129 .off = 0, \
130 .imm = IMM })
131
Alexei Starovoitov02ab6952014-09-04 22:17:17 -0700132/* BPF_LD_IMM64 macro encodes single 'load 64-bit immediate' insn */
133#define BPF_LD_IMM64(DST, IMM) \
134 BPF_LD_IMM64_RAW(DST, 0, IMM)
135
136#define BPF_LD_IMM64_RAW(DST, SRC, IMM) \
137 ((struct bpf_insn) { \
138 .code = BPF_LD | BPF_DW | BPF_IMM, \
139 .dst_reg = DST, \
140 .src_reg = SRC, \
141 .off = 0, \
142 .imm = (__u32) (IMM) }), \
143 ((struct bpf_insn) { \
144 .code = 0, /* zero is reserved opcode */ \
145 .dst_reg = 0, \
146 .src_reg = 0, \
147 .off = 0, \
148 .imm = ((__u64) (IMM)) >> 32 })
149
Alexei Starovoitov0246e642014-09-26 00:17:04 -0700150/* pseudo BPF_LD_IMM64 insn used to refer to process-local map_fd */
151#define BPF_LD_MAP_FD(DST, MAP_FD) \
152 BPF_LD_IMM64_RAW(DST, BPF_PSEUDO_MAP_FD, MAP_FD)
153
Alexei Starovoitove430f342014-06-06 14:46:06 -0700154/* Short form of mov based on type, BPF_X: dst_reg = src_reg, BPF_K: dst_reg = imm32 */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200155
Alexei Starovoitove430f342014-06-06 14:46:06 -0700156#define BPF_MOV64_RAW(TYPE, DST, SRC, IMM) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700157 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200158 .code = BPF_ALU64 | BPF_MOV | BPF_SRC(TYPE), \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700159 .dst_reg = DST, \
160 .src_reg = SRC, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200161 .off = 0, \
162 .imm = IMM })
163
Alexei Starovoitove430f342014-06-06 14:46:06 -0700164#define BPF_MOV32_RAW(TYPE, DST, SRC, IMM) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700165 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200166 .code = BPF_ALU | BPF_MOV | BPF_SRC(TYPE), \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700167 .dst_reg = DST, \
168 .src_reg = SRC, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200169 .off = 0, \
170 .imm = IMM })
171
Alexei Starovoitove430f342014-06-06 14:46:06 -0700172/* Direct packet access, R0 = *(uint *) (skb->data + imm32) */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200173
Alexei Starovoitove430f342014-06-06 14:46:06 -0700174#define BPF_LD_ABS(SIZE, IMM) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700175 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200176 .code = BPF_LD | BPF_SIZE(SIZE) | BPF_ABS, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700177 .dst_reg = 0, \
178 .src_reg = 0, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200179 .off = 0, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700180 .imm = IMM })
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200181
Alexei Starovoitove430f342014-06-06 14:46:06 -0700182/* Indirect packet access, R0 = *(uint *) (skb->data + src_reg + imm32) */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200183
Alexei Starovoitove430f342014-06-06 14:46:06 -0700184#define BPF_LD_IND(SIZE, SRC, IMM) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700185 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200186 .code = BPF_LD | BPF_SIZE(SIZE) | BPF_IND, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700187 .dst_reg = 0, \
188 .src_reg = SRC, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200189 .off = 0, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700190 .imm = IMM })
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200191
Alexei Starovoitove430f342014-06-06 14:46:06 -0700192/* Memory load, dst_reg = *(uint *) (src_reg + off16) */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200193
Alexei Starovoitove430f342014-06-06 14:46:06 -0700194#define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700195 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200196 .code = BPF_LDX | BPF_SIZE(SIZE) | BPF_MEM, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700197 .dst_reg = DST, \
198 .src_reg = SRC, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200199 .off = OFF, \
200 .imm = 0 })
201
Alexei Starovoitove430f342014-06-06 14:46:06 -0700202/* Memory store, *(uint *) (dst_reg + off16) = src_reg */
203
204#define BPF_STX_MEM(SIZE, DST, SRC, OFF) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700205 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200206 .code = BPF_STX | BPF_SIZE(SIZE) | BPF_MEM, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700207 .dst_reg = DST, \
208 .src_reg = SRC, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200209 .off = OFF, \
210 .imm = 0 })
211
Michael Holzheucffc6422015-05-11 22:22:44 -0700212/* Atomic memory add, *(uint *)(dst_reg + off16) += src_reg */
213
214#define BPF_STX_XADD(SIZE, DST, SRC, OFF) \
215 ((struct bpf_insn) { \
216 .code = BPF_STX | BPF_SIZE(SIZE) | BPF_XADD, \
217 .dst_reg = DST, \
218 .src_reg = SRC, \
219 .off = OFF, \
220 .imm = 0 })
221
Alexei Starovoitove430f342014-06-06 14:46:06 -0700222/* Memory store, *(uint *) (dst_reg + off16) = imm32 */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200223
Alexei Starovoitove430f342014-06-06 14:46:06 -0700224#define BPF_ST_MEM(SIZE, DST, OFF, IMM) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700225 ((struct bpf_insn) { \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700226 .code = BPF_ST | BPF_SIZE(SIZE) | BPF_MEM, \
227 .dst_reg = DST, \
228 .src_reg = 0, \
229 .off = OFF, \
230 .imm = IMM })
231
232/* Conditional jumps against registers, if (dst_reg 'op' src_reg) goto pc + off16 */
233
234#define BPF_JMP_REG(OP, DST, SRC, OFF) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700235 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200236 .code = BPF_JMP | BPF_OP(OP) | BPF_X, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700237 .dst_reg = DST, \
238 .src_reg = SRC, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200239 .off = OFF, \
240 .imm = 0 })
241
Alexei Starovoitove430f342014-06-06 14:46:06 -0700242/* Conditional jumps against immediates, if (dst_reg 'op' imm32) goto pc + off16 */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200243
Alexei Starovoitove430f342014-06-06 14:46:06 -0700244#define BPF_JMP_IMM(OP, DST, IMM, OFF) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700245 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200246 .code = BPF_JMP | BPF_OP(OP) | BPF_K, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700247 .dst_reg = DST, \
248 .src_reg = 0, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200249 .off = OFF, \
250 .imm = IMM })
251
252/* Function call */
253
254#define BPF_EMIT_CALL(FUNC) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700255 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200256 .code = BPF_JMP | BPF_CALL, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700257 .dst_reg = 0, \
258 .src_reg = 0, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200259 .off = 0, \
260 .imm = ((FUNC) - __bpf_call_base) })
261
262/* Raw code statement block */
263
Alexei Starovoitove430f342014-06-06 14:46:06 -0700264#define BPF_RAW_INSN(CODE, DST, SRC, OFF, IMM) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700265 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200266 .code = CODE, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700267 .dst_reg = DST, \
268 .src_reg = SRC, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200269 .off = OFF, \
270 .imm = IMM })
271
272/* Program exit */
273
274#define BPF_EXIT_INSN() \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700275 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200276 .code = BPF_JMP | BPF_EXIT, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700277 .dst_reg = 0, \
278 .src_reg = 0, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200279 .off = 0, \
280 .imm = 0 })
281
Daniel Borkmanna4afd37b2015-05-13 13:12:43 +0200282/* Internal classic blocks for direct assignment */
283
284#define __BPF_STMT(CODE, K) \
285 ((struct sock_filter) BPF_STMT(CODE, K))
286
287#define __BPF_JUMP(CODE, K, JT, JF) \
288 ((struct sock_filter) BPF_JUMP(CODE, K, JT, JF))
289
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200290#define bytes_to_bpf_size(bytes) \
291({ \
292 int bpf_size = -EINVAL; \
293 \
294 if (bytes == sizeof(u8)) \
295 bpf_size = BPF_B; \
296 else if (bytes == sizeof(u16)) \
297 bpf_size = BPF_H; \
298 else if (bytes == sizeof(u32)) \
299 bpf_size = BPF_W; \
300 else if (bytes == sizeof(u64)) \
301 bpf_size = BPF_DW; \
302 \
303 bpf_size; \
304})
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700305
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100306#ifdef CONFIG_COMPAT
307/* A struct sock_filter is architecture independent. */
Will Drewry0c5fe1b2012-04-12 16:47:53 -0500308struct compat_sock_fprog {
309 u16 len;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100310 compat_uptr_t filter; /* struct sock_filter * */
Will Drewry0c5fe1b2012-04-12 16:47:53 -0500311};
312#endif
313
Daniel Borkmanna3ea2692014-03-28 18:58:19 +0100314struct sock_fprog_kern {
315 u16 len;
316 struct sock_filter *filter;
317};
318
Daniel Borkmann738cbe72014-09-08 08:04:47 +0200319struct bpf_binary_header {
320 unsigned int pages;
321 u8 image[];
322};
323
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700324struct bpf_prog {
Daniel Borkmann286aad32014-09-08 08:04:49 +0200325 u16 pages; /* Number of allocated pages */
Daniel Borkmanna91263d2015-09-30 01:41:50 +0200326 kmemcheck_bitfield_begin(meta);
327 u16 jited:1, /* Is our filter JIT'ed? */
Daniel Borkmannc46646d2015-09-30 01:41:51 +0200328 gpl_compatible:1, /* Is filter GPL compatible? */
Alexei Starovoitovff936a02015-10-07 10:55:41 -0700329 cb_access:1, /* Is control block accessed? */
Daniel Borkmannc46646d2015-09-30 01:41:51 +0200330 dst_needed:1; /* Do we need dst entry? */
Daniel Borkmanna91263d2015-09-30 01:41:50 +0200331 kmemcheck_bitfield_end(meta);
Daniel Borkmann286aad32014-09-08 08:04:49 +0200332 u32 len; /* Number of filter blocks */
Daniel Borkmann24701ec2015-03-01 12:31:47 +0100333 enum bpf_prog_type type; /* Type of BPF program */
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700334 struct bpf_prog_aux *aux; /* Auxiliary fields */
Daniel Borkmann24701ec2015-03-01 12:31:47 +0100335 struct sock_fprog_kern *orig_prog; /* Original BPF program */
Eric Dumazet0a148422011-04-20 09:27:32 +0000336 unsigned int (*bpf_func)(const struct sk_buff *skb,
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700337 const struct bpf_insn *filter);
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200338 /* Instructions for interpreter */
Alexei Starovoitovd45ed4a2013-10-04 00:14:06 -0700339 union {
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100340 struct sock_filter insns[0];
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700341 struct bpf_insn insnsi[0];
Alexei Starovoitovd45ed4a2013-10-04 00:14:06 -0700342 };
Stephen Hemmingerb7156312008-04-10 01:33:47 -0700343};
344
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700345struct sk_filter {
346 atomic_t refcnt;
347 struct rcu_head rcu;
348 struct bpf_prog *prog;
349};
350
351#define BPF_PROG_RUN(filter, ctx) (*filter->bpf_func)(ctx, filter->insnsi)
352
Daniel Borkmann01dd1942016-01-06 22:32:16 +0100353#define BPF_SKB_CB_LEN QDISC_CB_PRIV_LEN
354
355static inline u8 *bpf_skb_cb(struct sk_buff *skb)
356{
357 /* eBPF programs may read/write skb->cb[] area to transfer meta
358 * data between tail calls. Since this also needs to work with
359 * tc, that scratch memory is mapped to qdisc_skb_cb's data area.
360 *
361 * In some socket filter cases, the cb unfortunately needs to be
362 * saved/restored so that protocol specific skb->cb[] data won't
363 * be lost. In any case, due to unpriviledged eBPF programs
364 * attached to sockets, we need to clear the bpf_skb_cb() area
365 * to not leak previous contents to user space.
366 */
367 BUILD_BUG_ON(FIELD_SIZEOF(struct __sk_buff, cb) != BPF_SKB_CB_LEN);
368 BUILD_BUG_ON(FIELD_SIZEOF(struct __sk_buff, cb) !=
369 FIELD_SIZEOF(struct qdisc_skb_cb, data));
370
371 return qdisc_skb_cb(skb)->data;
372}
373
Alexei Starovoitovff936a02015-10-07 10:55:41 -0700374static inline u32 bpf_prog_run_save_cb(const struct bpf_prog *prog,
375 struct sk_buff *skb)
376{
Daniel Borkmann01dd1942016-01-06 22:32:16 +0100377 u8 *cb_data = bpf_skb_cb(skb);
378 u8 cb_saved[BPF_SKB_CB_LEN];
Alexei Starovoitovff936a02015-10-07 10:55:41 -0700379 u32 res;
380
Alexei Starovoitovff936a02015-10-07 10:55:41 -0700381 if (unlikely(prog->cb_access)) {
Daniel Borkmann01dd1942016-01-06 22:32:16 +0100382 memcpy(cb_saved, cb_data, sizeof(cb_saved));
383 memset(cb_data, 0, sizeof(cb_saved));
Alexei Starovoitovff936a02015-10-07 10:55:41 -0700384 }
385
386 res = BPF_PROG_RUN(prog, skb);
387
388 if (unlikely(prog->cb_access))
Daniel Borkmann01dd1942016-01-06 22:32:16 +0100389 memcpy(cb_data, cb_saved, sizeof(cb_saved));
Alexei Starovoitovff936a02015-10-07 10:55:41 -0700390
391 return res;
392}
393
394static inline u32 bpf_prog_run_clear_cb(const struct bpf_prog *prog,
395 struct sk_buff *skb)
396{
Daniel Borkmann01dd1942016-01-06 22:32:16 +0100397 u8 *cb_data = bpf_skb_cb(skb);
Alexei Starovoitovff936a02015-10-07 10:55:41 -0700398
399 if (unlikely(prog->cb_access))
Daniel Borkmann01dd1942016-01-06 22:32:16 +0100400 memset(cb_data, 0, BPF_SKB_CB_LEN);
401
Alexei Starovoitovff936a02015-10-07 10:55:41 -0700402 return BPF_PROG_RUN(prog, skb);
403}
404
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700405static inline unsigned int bpf_prog_size(unsigned int proglen)
Stephen Hemmingerb7156312008-04-10 01:33:47 -0700406{
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700407 return max(sizeof(struct bpf_prog),
408 offsetof(struct bpf_prog, insns[proglen]));
Stephen Hemmingerb7156312008-04-10 01:33:47 -0700409}
410
Daniel Borkmann7b36f922015-07-30 12:42:47 +0200411static inline bool bpf_prog_was_classic(const struct bpf_prog *prog)
412{
413 /* When classic BPF programs have been loaded and the arch
414 * does not have a classic BPF JIT (anymore), they have been
415 * converted via bpf_migrate_filter() to eBPF and thus always
416 * have an unspec program type.
417 */
418 return prog->type == BPF_PROG_TYPE_UNSPEC;
419}
420
Alexei Starovoitov009937e2014-07-30 20:34:13 -0700421#define bpf_classic_proglen(fprog) (fprog->len * sizeof(fprog->filter[0]))
Daniel Borkmanna3ea2692014-03-28 18:58:19 +0100422
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200423#ifdef CONFIG_DEBUG_SET_MODULE_RONX
424static inline void bpf_prog_lock_ro(struct bpf_prog *fp)
425{
426 set_memory_ro((unsigned long)fp, fp->pages);
427}
428
429static inline void bpf_prog_unlock_ro(struct bpf_prog *fp)
430{
431 set_memory_rw((unsigned long)fp, fp->pages);
432}
433#else
434static inline void bpf_prog_lock_ro(struct bpf_prog *fp)
435{
436}
437
438static inline void bpf_prog_unlock_ro(struct bpf_prog *fp)
439{
440}
441#endif /* CONFIG_DEBUG_SET_MODULE_RONX */
442
Daniel Borkmannfbc907f2014-03-28 18:58:20 +0100443int sk_filter(struct sock *sk, struct sk_buff *skb);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100444
Alexei Starovoitov04fd61a2015-05-19 16:59:03 -0700445int bpf_prog_select_runtime(struct bpf_prog *fp);
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700446void bpf_prog_free(struct bpf_prog *fp);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100447
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200448struct bpf_prog *bpf_prog_alloc(unsigned int size, gfp_t gfp_extra_flags);
449struct bpf_prog *bpf_prog_realloc(struct bpf_prog *fp_old, unsigned int size,
450 gfp_t gfp_extra_flags);
451void __bpf_prog_free(struct bpf_prog *fp);
452
453static inline void bpf_prog_unlock_free(struct bpf_prog *fp)
454{
455 bpf_prog_unlock_ro(fp);
456 __bpf_prog_free(fp);
457}
458
Daniel Borkmannac67eb22015-05-06 16:12:30 +0200459typedef int (*bpf_aux_classic_check_t)(struct sock_filter *filter,
460 unsigned int flen);
461
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700462int bpf_prog_create(struct bpf_prog **pfp, struct sock_fprog_kern *fprog);
Daniel Borkmannac67eb22015-05-06 16:12:30 +0200463int bpf_prog_create_from_user(struct bpf_prog **pfp, struct sock_fprog *fprog,
Daniel Borkmannbab18992015-10-02 15:17:33 +0200464 bpf_aux_classic_check_t trans, bool save_orig);
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700465void bpf_prog_destroy(struct bpf_prog *fp);
Daniel Borkmanna3ea2692014-03-28 18:58:19 +0100466
Daniel Borkmannfbc907f2014-03-28 18:58:20 +0100467int sk_attach_filter(struct sock_fprog *fprog, struct sock *sk);
Alexei Starovoitov89aa0752014-12-01 15:06:35 -0800468int sk_attach_bpf(u32 ufd, struct sock *sk);
Craig Gallek538950a2016-01-04 17:41:47 -0500469int sk_reuseport_attach_filter(struct sock_fprog *fprog, struct sock *sk);
470int sk_reuseport_attach_bpf(u32 ufd, struct sock *sk);
Daniel Borkmannfbc907f2014-03-28 18:58:20 +0100471int sk_detach_filter(struct sock *sk);
Daniel Borkmannfbc907f2014-03-28 18:58:20 +0100472int sk_get_filter(struct sock *sk, struct sock_filter __user *filter,
473 unsigned int len);
Daniel Borkmannfbc907f2014-03-28 18:58:20 +0100474
Alexei Starovoitov278571b2014-07-30 20:34:12 -0700475bool sk_filter_charge(struct sock *sk, struct sk_filter *fp);
Daniel Borkmannfbc907f2014-03-28 18:58:20 +0100476void sk_filter_uncharge(struct sock *sk, struct sk_filter *fp);
Eric Dumazet0a148422011-04-20 09:27:32 +0000477
Alexei Starovoitov62258272014-05-13 19:50:46 -0700478u64 __bpf_call_base(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5);
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700479void bpf_int_jit_compile(struct bpf_prog *fp);
Alexei Starovoitov4e10df92015-07-20 20:34:18 -0700480bool bpf_helper_changes_skb_data(void *func);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700481
Daniel Borkmannb954d832014-09-10 15:01:02 +0200482#ifdef CONFIG_BPF_JIT
483typedef void (*bpf_jit_fill_hole_t)(void *area, unsigned int size);
484
485struct bpf_binary_header *
486bpf_jit_binary_alloc(unsigned int proglen, u8 **image_ptr,
487 unsigned int alignment,
488 bpf_jit_fill_hole_t bpf_fill_ill_insns);
489void bpf_jit_binary_free(struct bpf_binary_header *hdr);
490
491void bpf_jit_compile(struct bpf_prog *fp);
492void bpf_jit_free(struct bpf_prog *fp);
493
494static inline void bpf_jit_dump(unsigned int flen, unsigned int proglen,
495 u32 pass, void *image)
496{
Daniel Borkmannb13138e2015-07-30 12:42:49 +0200497 pr_err("flen=%u proglen=%u pass=%u image=%pK from=%s pid=%d\n", flen,
498 proglen, pass, image, current->comm, task_pid_nr(current));
499
Daniel Borkmannb954d832014-09-10 15:01:02 +0200500 if (image)
501 print_hex_dump(KERN_ERR, "JIT code: ", DUMP_PREFIX_OFFSET,
502 16, 1, image, proglen, false);
503}
504#else
505static inline void bpf_jit_compile(struct bpf_prog *fp)
506{
507}
508
509static inline void bpf_jit_free(struct bpf_prog *fp)
510{
511 bpf_prog_unlock_free(fp);
512}
513#endif /* CONFIG_BPF_JIT */
514
Daniel Borkmann34805932014-05-29 10:22:50 +0200515#define BPF_ANC BIT(15)
516
Rabin Vincent55795ef2016-01-05 16:23:07 +0100517static inline bool bpf_needs_clear_a(const struct sock_filter *first)
518{
519 switch (first->code) {
520 case BPF_RET | BPF_K:
521 case BPF_LD | BPF_W | BPF_LEN:
522 return false;
523
524 case BPF_LD | BPF_W | BPF_ABS:
525 case BPF_LD | BPF_H | BPF_ABS:
526 case BPF_LD | BPF_B | BPF_ABS:
527 if (first->k == SKF_AD_OFF + SKF_AD_ALU_XOR_X)
528 return true;
529 return false;
530
531 default:
532 return true;
533 }
534}
535
Daniel Borkmann34805932014-05-29 10:22:50 +0200536static inline u16 bpf_anc_helper(const struct sock_filter *ftest)
537{
538 BUG_ON(ftest->code & BPF_ANC);
539
540 switch (ftest->code) {
541 case BPF_LD | BPF_W | BPF_ABS:
542 case BPF_LD | BPF_H | BPF_ABS:
543 case BPF_LD | BPF_B | BPF_ABS:
544#define BPF_ANCILLARY(CODE) case SKF_AD_OFF + SKF_AD_##CODE: \
545 return BPF_ANC | SKF_AD_##CODE
546 switch (ftest->k) {
547 BPF_ANCILLARY(PROTOCOL);
548 BPF_ANCILLARY(PKTTYPE);
549 BPF_ANCILLARY(IFINDEX);
550 BPF_ANCILLARY(NLATTR);
551 BPF_ANCILLARY(NLATTR_NEST);
552 BPF_ANCILLARY(MARK);
553 BPF_ANCILLARY(QUEUE);
554 BPF_ANCILLARY(HATYPE);
555 BPF_ANCILLARY(RXHASH);
556 BPF_ANCILLARY(CPU);
557 BPF_ANCILLARY(ALU_XOR_X);
558 BPF_ANCILLARY(VLAN_TAG);
559 BPF_ANCILLARY(VLAN_TAG_PRESENT);
560 BPF_ANCILLARY(PAY_OFFSET);
561 BPF_ANCILLARY(RANDOM);
Michal Sekletar27cd5452015-03-24 14:48:41 +0100562 BPF_ANCILLARY(VLAN_TPID);
Daniel Borkmann34805932014-05-29 10:22:50 +0200563 }
564 /* Fallthrough. */
565 default:
566 return ftest->code;
567 }
568}
569
Zi Shen Lim9f12fbe2014-07-03 07:56:54 -0700570void *bpf_internal_load_pointer_neg_helper(const struct sk_buff *skb,
571 int k, unsigned int size);
572
573static inline void *bpf_load_pointer(const struct sk_buff *skb, int k,
574 unsigned int size, void *buffer)
575{
576 if (k >= 0)
577 return skb_header_pointer(skb, k, size, buffer);
578
579 return bpf_internal_load_pointer_neg_helper(skb, k, size);
580}
581
Michal Sekletarea02f942014-01-17 17:09:45 +0100582static inline int bpf_tell_extensions(void)
583{
Daniel Borkmann37692292014-01-21 00:19:37 +0100584 return SKF_AD_MAX;
Michal Sekletarea02f942014-01-17 17:09:45 +0100585}
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587#endif /* __LINUX_FILTER_H__ */