blob: a5227ab8ccb17ebd4cf9ed7a55f80c352a2d6fb3 [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
Arun Sharma600634972011-07-26 16:09:06 -07007#include <linux/atomic.h>
Will Drewry0c5fe1b2012-04-12 16:47:53 -05008#include <linux/compat.h>
Zi Shen Lim9f12fbe2014-07-03 07:56:54 -07009#include <linux/skbuff.h>
Alexei Starovoitovd45ed4a2013-10-04 00:14:06 -070010#include <linux/workqueue.h>
David Howells607ca462012-10-13 10:46:48 +010011#include <uapi/linux/filter.h>
Heiko Carstens792d4b52011-05-22 07:08:11 +000012
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +010013/* Internally used and optimized filter representation with extended
14 * instruction set based on top of classic BPF.
Will Drewry0c5fe1b2012-04-12 16:47:53 -050015 */
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +010016
17/* instruction classes */
18#define BPF_ALU64 0x07 /* alu mode in double word width */
19
20/* ld/ldx fields */
21#define BPF_DW 0x18 /* double word */
22#define BPF_XADD 0xc0 /* exclusive add */
23
24/* alu/jmp fields */
25#define BPF_MOV 0xb0 /* mov reg to reg */
26#define BPF_ARSH 0xc0 /* sign extending arithmetic shift right */
27
28/* change endianness of a register */
29#define BPF_END 0xd0 /* flags for endianness conversion: */
30#define BPF_TO_LE 0x00 /* convert to little-endian */
31#define BPF_TO_BE 0x08 /* convert to big-endian */
32#define BPF_FROM_LE BPF_TO_LE
33#define BPF_FROM_BE BPF_TO_BE
34
35#define BPF_JNE 0x50 /* jump != */
36#define BPF_JSGT 0x60 /* SGT is signed '>', GT in x86 */
37#define BPF_JSGE 0x70 /* SGE is signed '>=', GE in x86 */
38#define BPF_CALL 0x80 /* function call */
39#define BPF_EXIT 0x90 /* function return */
40
Daniel Borkmann30743832014-05-01 18:34:19 +020041/* Register numbers */
42enum {
43 BPF_REG_0 = 0,
44 BPF_REG_1,
45 BPF_REG_2,
46 BPF_REG_3,
47 BPF_REG_4,
48 BPF_REG_5,
49 BPF_REG_6,
50 BPF_REG_7,
51 BPF_REG_8,
52 BPF_REG_9,
53 BPF_REG_10,
54 __MAX_BPF_REG,
55};
56
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +010057/* BPF has 10 general purpose 64-bit registers and stack frame. */
Daniel Borkmann30743832014-05-01 18:34:19 +020058#define MAX_BPF_REG __MAX_BPF_REG
59
60/* ArgX, context and stack frame pointer register positions. Note,
61 * Arg1, Arg2, Arg3, etc are used as argument mappings of function
62 * calls in BPF_CALL instruction.
63 */
64#define BPF_REG_ARG1 BPF_REG_1
65#define BPF_REG_ARG2 BPF_REG_2
66#define BPF_REG_ARG3 BPF_REG_3
67#define BPF_REG_ARG4 BPF_REG_4
68#define BPF_REG_ARG5 BPF_REG_5
69#define BPF_REG_CTX BPF_REG_6
70#define BPF_REG_FP BPF_REG_10
71
72/* Additional register mappings for converted user programs. */
73#define BPF_REG_A BPF_REG_0
74#define BPF_REG_X BPF_REG_7
75#define BPF_REG_TMP BPF_REG_8
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +010076
77/* BPF program can access up to 512 bytes of stack space. */
78#define MAX_BPF_STACK 512
79
Daniel Borkmannf8f6d672014-05-29 10:22:51 +020080/* Helper macros for filter block array initializers. */
Alexei Starovoitov9739eef2014-05-08 14:10:51 -070081
Alexei Starovoitove430f342014-06-06 14:46:06 -070082/* ALU ops on registers, bpf_add|sub|...: dst_reg += src_reg */
Alexei Starovoitov9739eef2014-05-08 14:10:51 -070083
Alexei Starovoitove430f342014-06-06 14:46:06 -070084#define BPF_ALU64_REG(OP, DST, SRC) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -070085 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +020086 .code = BPF_ALU64 | BPF_OP(OP) | BPF_X, \
Alexei Starovoitove430f342014-06-06 14:46:06 -070087 .dst_reg = DST, \
88 .src_reg = SRC, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +020089 .off = 0, \
90 .imm = 0 })
Alexei Starovoitov9739eef2014-05-08 14:10:51 -070091
Alexei Starovoitove430f342014-06-06 14:46:06 -070092#define BPF_ALU32_REG(OP, DST, SRC) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -070093 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +020094 .code = BPF_ALU | BPF_OP(OP) | BPF_X, \
Alexei Starovoitove430f342014-06-06 14:46:06 -070095 .dst_reg = DST, \
96 .src_reg = SRC, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +020097 .off = 0, \
98 .imm = 0 })
Alexei Starovoitov9739eef2014-05-08 14:10:51 -070099
Alexei Starovoitove430f342014-06-06 14:46:06 -0700100/* ALU ops on immediates, bpf_add|sub|...: dst_reg += imm32 */
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700101
Alexei Starovoitove430f342014-06-06 14:46:06 -0700102#define BPF_ALU64_IMM(OP, DST, IMM) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700103 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200104 .code = BPF_ALU64 | BPF_OP(OP) | BPF_K, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700105 .dst_reg = DST, \
106 .src_reg = 0, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200107 .off = 0, \
108 .imm = IMM })
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700109
Alexei Starovoitove430f342014-06-06 14:46:06 -0700110#define BPF_ALU32_IMM(OP, DST, IMM) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700111 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200112 .code = BPF_ALU | BPF_OP(OP) | BPF_K, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700113 .dst_reg = DST, \
114 .src_reg = 0, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200115 .off = 0, \
116 .imm = IMM })
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700117
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200118/* Endianess conversion, cpu_to_{l,b}e(), {l,b}e_to_cpu() */
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700119
Alexei Starovoitove430f342014-06-06 14:46:06 -0700120#define BPF_ENDIAN(TYPE, DST, LEN) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700121 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200122 .code = BPF_ALU | BPF_END | BPF_SRC(TYPE), \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700123 .dst_reg = DST, \
124 .src_reg = 0, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200125 .off = 0, \
126 .imm = LEN })
127
Alexei Starovoitove430f342014-06-06 14:46:06 -0700128/* Short form of mov, dst_reg = src_reg */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200129
Alexei Starovoitove430f342014-06-06 14:46:06 -0700130#define BPF_MOV64_REG(DST, SRC) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700131 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200132 .code = BPF_ALU64 | BPF_MOV | BPF_X, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700133 .dst_reg = DST, \
134 .src_reg = SRC, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200135 .off = 0, \
136 .imm = 0 })
137
Alexei Starovoitove430f342014-06-06 14:46:06 -0700138#define BPF_MOV32_REG(DST, SRC) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700139 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200140 .code = BPF_ALU | BPF_MOV | BPF_X, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700141 .dst_reg = DST, \
142 .src_reg = SRC, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200143 .off = 0, \
144 .imm = 0 })
145
Alexei Starovoitove430f342014-06-06 14:46:06 -0700146/* Short form of mov, dst_reg = imm32 */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200147
Alexei Starovoitove430f342014-06-06 14:46:06 -0700148#define BPF_MOV64_IMM(DST, IMM) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700149 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200150 .code = BPF_ALU64 | BPF_MOV | BPF_K, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700151 .dst_reg = DST, \
152 .src_reg = 0, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200153 .off = 0, \
154 .imm = IMM })
155
Alexei Starovoitove430f342014-06-06 14:46:06 -0700156#define BPF_MOV32_IMM(DST, IMM) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700157 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200158 .code = BPF_ALU | BPF_MOV | BPF_K, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700159 .dst_reg = DST, \
160 .src_reg = 0, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200161 .off = 0, \
162 .imm = IMM })
163
Alexei Starovoitove430f342014-06-06 14:46:06 -0700164/* 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 +0200165
Alexei Starovoitove430f342014-06-06 14:46:06 -0700166#define BPF_MOV64_RAW(TYPE, DST, SRC, IMM) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700167 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200168 .code = BPF_ALU64 | BPF_MOV | BPF_SRC(TYPE), \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700169 .dst_reg = DST, \
170 .src_reg = SRC, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200171 .off = 0, \
172 .imm = IMM })
173
Alexei Starovoitove430f342014-06-06 14:46:06 -0700174#define BPF_MOV32_RAW(TYPE, DST, SRC, IMM) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700175 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200176 .code = BPF_ALU | BPF_MOV | BPF_SRC(TYPE), \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700177 .dst_reg = DST, \
178 .src_reg = SRC, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200179 .off = 0, \
180 .imm = IMM })
181
Alexei Starovoitove430f342014-06-06 14:46:06 -0700182/* Direct packet access, R0 = *(uint *) (skb->data + imm32) */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200183
Alexei Starovoitove430f342014-06-06 14:46:06 -0700184#define BPF_LD_ABS(SIZE, 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_ABS, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700187 .dst_reg = 0, \
188 .src_reg = 0, \
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/* Indirect packet access, R0 = *(uint *) (skb->data + src_reg + imm32) */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200193
Alexei Starovoitove430f342014-06-06 14:46:06 -0700194#define BPF_LD_IND(SIZE, SRC, IMM) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700195 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200196 .code = BPF_LD | BPF_SIZE(SIZE) | BPF_IND, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700197 .dst_reg = 0, \
198 .src_reg = SRC, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200199 .off = 0, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700200 .imm = IMM })
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200201
Alexei Starovoitove430f342014-06-06 14:46:06 -0700202/* Memory load, dst_reg = *(uint *) (src_reg + off16) */
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200203
Alexei Starovoitove430f342014-06-06 14:46:06 -0700204#define BPF_LDX_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_LDX | 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
Alexei Starovoitove430f342014-06-06 14:46:06 -0700212/* Memory store, *(uint *) (dst_reg + off16) = src_reg */
213
214#define BPF_STX_MEM(SIZE, DST, SRC, OFF) \
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700215 ((struct bpf_insn) { \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200216 .code = BPF_STX | BPF_SIZE(SIZE) | BPF_MEM, \
Alexei Starovoitove430f342014-06-06 14:46:06 -0700217 .dst_reg = DST, \
218 .src_reg = SRC, \
Daniel Borkmannf8f6d672014-05-29 10:22:51 +0200219 .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
282#define bytes_to_bpf_size(bytes) \
283({ \
284 int bpf_size = -EINVAL; \
285 \
286 if (bytes == sizeof(u8)) \
287 bpf_size = BPF_B; \
288 else if (bytes == sizeof(u16)) \
289 bpf_size = BPF_H; \
290 else if (bytes == sizeof(u32)) \
291 bpf_size = BPF_W; \
292 else if (bytes == sizeof(u64)) \
293 bpf_size = BPF_DW; \
294 \
295 bpf_size; \
296})
Alexei Starovoitov9739eef2014-05-08 14:10:51 -0700297
Daniel Borkmann30743832014-05-01 18:34:19 +0200298/* Macro to invoke filter function. */
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700299#define SK_RUN_FILTER(filter, ctx) \
300 (*filter->prog->bpf_func)(ctx, filter->prog->insnsi)
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100301
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700302struct bpf_insn {
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100303 __u8 code; /* opcode */
Alexei Starovoitove430f342014-06-06 14:46:06 -0700304 __u8 dst_reg:4; /* dest register */
305 __u8 src_reg:4; /* source register */
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100306 __s16 off; /* signed offset */
307 __s32 imm; /* signed immediate constant */
308};
309
310#ifdef CONFIG_COMPAT
311/* A struct sock_filter is architecture independent. */
Will Drewry0c5fe1b2012-04-12 16:47:53 -0500312struct compat_sock_fprog {
313 u16 len;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100314 compat_uptr_t filter; /* struct sock_filter * */
Will Drewry0c5fe1b2012-04-12 16:47:53 -0500315};
316#endif
317
Daniel Borkmanna3ea2692014-03-28 18:58:19 +0100318struct sock_fprog_kern {
319 u16 len;
320 struct sock_filter *filter;
321};
322
Heiko Carstens792d4b52011-05-22 07:08:11 +0000323struct sk_buff;
324struct sock;
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100325struct seccomp_data;
Heiko Carstens792d4b52011-05-22 07:08:11 +0000326
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700327struct bpf_prog {
Daniel Borkmannf8bbbfc2014-03-28 18:58:18 +0100328 u32 jited:1, /* Is our filter JIT'ed? */
329 len:31; /* Number of filter blocks */
Daniel Borkmanna3ea2692014-03-28 18:58:19 +0100330 struct sock_fprog_kern *orig_prog; /* Original BPF program */
Eric Dumazet0a148422011-04-20 09:27:32 +0000331 unsigned int (*bpf_func)(const struct sk_buff *skb,
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700332 const struct bpf_insn *filter);
Alexei Starovoitovd45ed4a2013-10-04 00:14:06 -0700333 union {
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100334 struct sock_filter insns[0];
Alexei Starovoitov2695fb52014-07-24 16:38:21 -0700335 struct bpf_insn insnsi[0];
Alexei Starovoitovd45ed4a2013-10-04 00:14:06 -0700336 struct work_struct work;
337 };
Stephen Hemmingerb7156312008-04-10 01:33:47 -0700338};
339
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700340struct sk_filter {
341 atomic_t refcnt;
342 struct rcu_head rcu;
343 struct bpf_prog *prog;
344};
345
346#define BPF_PROG_RUN(filter, ctx) (*filter->bpf_func)(ctx, filter->insnsi)
347
348static inline unsigned int bpf_prog_size(unsigned int proglen)
Stephen Hemmingerb7156312008-04-10 01:33:47 -0700349{
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700350 return max(sizeof(struct bpf_prog),
351 offsetof(struct bpf_prog, insns[proglen]));
Stephen Hemmingerb7156312008-04-10 01:33:47 -0700352}
353
Alexei Starovoitov009937e2014-07-30 20:34:13 -0700354#define bpf_classic_proglen(fprog) (fprog->len * sizeof(fprog->filter[0]))
Daniel Borkmanna3ea2692014-03-28 18:58:19 +0100355
Daniel Borkmannfbc907f2014-03-28 18:58:20 +0100356int sk_filter(struct sock *sk, struct sk_buff *skb);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100357
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700358void bpf_prog_select_runtime(struct bpf_prog *fp);
359void bpf_prog_free(struct bpf_prog *fp);
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100360
Alexei Starovoitov8fb575c2014-07-30 20:34:15 -0700361int bpf_convert_filter(struct sock_filter *prog, int len,
362 struct bpf_insn *new_prog, int *new_len);
Daniel Borkmanna3ea2692014-03-28 18:58:19 +0100363
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700364int bpf_prog_create(struct bpf_prog **pfp, struct sock_fprog_kern *fprog);
365void bpf_prog_destroy(struct bpf_prog *fp);
Daniel Borkmanna3ea2692014-03-28 18:58:19 +0100366
Daniel Borkmannfbc907f2014-03-28 18:58:20 +0100367int sk_attach_filter(struct sock_fprog *fprog, struct sock *sk);
368int sk_detach_filter(struct sock *sk);
Daniel Borkmanna3ea2692014-03-28 18:58:19 +0100369
Alexei Starovoitov4df95ff2014-07-30 20:34:14 -0700370int bpf_check_classic(const struct sock_filter *filter, unsigned int flen);
Daniel Borkmannfbc907f2014-03-28 18:58:20 +0100371int sk_get_filter(struct sock *sk, struct sock_filter __user *filter,
372 unsigned int len);
Daniel Borkmannfbc907f2014-03-28 18:58:20 +0100373
Alexei Starovoitov278571b2014-07-30 20:34:12 -0700374bool sk_filter_charge(struct sock *sk, struct sk_filter *fp);
Daniel Borkmannfbc907f2014-03-28 18:58:20 +0100375void sk_filter_uncharge(struct sock *sk, struct sk_filter *fp);
Eric Dumazet0a148422011-04-20 09:27:32 +0000376
Alexei Starovoitov62258272014-05-13 19:50:46 -0700377u64 __bpf_call_base(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5);
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700378void bpf_int_jit_compile(struct bpf_prog *fp);
Alexei Starovoitov62258272014-05-13 19:50:46 -0700379
Daniel Borkmann34805932014-05-29 10:22:50 +0200380#define BPF_ANC BIT(15)
381
382static inline u16 bpf_anc_helper(const struct sock_filter *ftest)
383{
384 BUG_ON(ftest->code & BPF_ANC);
385
386 switch (ftest->code) {
387 case BPF_LD | BPF_W | BPF_ABS:
388 case BPF_LD | BPF_H | BPF_ABS:
389 case BPF_LD | BPF_B | BPF_ABS:
390#define BPF_ANCILLARY(CODE) case SKF_AD_OFF + SKF_AD_##CODE: \
391 return BPF_ANC | SKF_AD_##CODE
392 switch (ftest->k) {
393 BPF_ANCILLARY(PROTOCOL);
394 BPF_ANCILLARY(PKTTYPE);
395 BPF_ANCILLARY(IFINDEX);
396 BPF_ANCILLARY(NLATTR);
397 BPF_ANCILLARY(NLATTR_NEST);
398 BPF_ANCILLARY(MARK);
399 BPF_ANCILLARY(QUEUE);
400 BPF_ANCILLARY(HATYPE);
401 BPF_ANCILLARY(RXHASH);
402 BPF_ANCILLARY(CPU);
403 BPF_ANCILLARY(ALU_XOR_X);
404 BPF_ANCILLARY(VLAN_TAG);
405 BPF_ANCILLARY(VLAN_TAG_PRESENT);
406 BPF_ANCILLARY(PAY_OFFSET);
407 BPF_ANCILLARY(RANDOM);
408 }
409 /* Fallthrough. */
410 default:
411 return ftest->code;
412 }
413}
414
Zi Shen Lim9f12fbe2014-07-03 07:56:54 -0700415void *bpf_internal_load_pointer_neg_helper(const struct sk_buff *skb,
416 int k, unsigned int size);
417
418static inline void *bpf_load_pointer(const struct sk_buff *skb, int k,
419 unsigned int size, void *buffer)
420{
421 if (k >= 0)
422 return skb_header_pointer(skb, k, size, buffer);
423
424 return bpf_internal_load_pointer_neg_helper(skb, k, size);
425}
426
Eric Dumazet0a148422011-04-20 09:27:32 +0000427#ifdef CONFIG_BPF_JIT
Xi Wang20074f32013-05-01 16:24:08 -0400428#include <stdarg.h>
Chen Ganga691ce72013-03-28 15:24:53 +0000429#include <linux/linkage.h>
430#include <linux/printk.h>
431
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700432void bpf_jit_compile(struct bpf_prog *fp);
433void bpf_jit_free(struct bpf_prog *fp);
Daniel Borkmann79617802013-03-21 22:22:03 +0100434
435static inline void bpf_jit_dump(unsigned int flen, unsigned int proglen,
436 u32 pass, void *image)
437{
Eric Dumazet16495442013-05-17 16:57:37 +0000438 pr_err("flen=%u proglen=%u pass=%u image=%pK\n",
Daniel Borkmann79617802013-03-21 22:22:03 +0100439 flen, proglen, pass, image);
440 if (image)
Eric Dumazet16495442013-05-17 16:57:37 +0000441 print_hex_dump(KERN_ERR, "JIT code: ", DUMP_PREFIX_OFFSET,
Daniel Borkmann79617802013-03-21 22:22:03 +0100442 16, 1, image, proglen, false);
443}
Eric Dumazet0a148422011-04-20 09:27:32 +0000444#else
Alexei Starovoitovd45ed4a2013-10-04 00:14:06 -0700445#include <linux/slab.h>
Daniel Borkmann34805932014-05-29 10:22:50 +0200446
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700447static inline void bpf_jit_compile(struct bpf_prog *fp)
Eric Dumazet0a148422011-04-20 09:27:32 +0000448{
449}
Daniel Borkmann34805932014-05-29 10:22:50 +0200450
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700451static inline void bpf_jit_free(struct bpf_prog *fp)
Eric Dumazet0a148422011-04-20 09:27:32 +0000452{
Alexei Starovoitovd45ed4a2013-10-04 00:14:06 -0700453 kfree(fp);
Eric Dumazet0a148422011-04-20 09:27:32 +0000454}
Daniel Borkmann34805932014-05-29 10:22:50 +0200455#endif /* CONFIG_BPF_JIT */
Eric Dumazet0a148422011-04-20 09:27:32 +0000456
Michal Sekletarea02f942014-01-17 17:09:45 +0100457static inline int bpf_tell_extensions(void)
458{
Daniel Borkmann37692292014-01-21 00:19:37 +0100459 return SKF_AD_MAX;
Michal Sekletarea02f942014-01-17 17:09:45 +0100460}
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462#endif /* __LINUX_FILTER_H__ */