selftests/bpf: add xdp noinline test
[linux-block.git] / include / linux / filter.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2/*
3 * Linux Socket Filter Data Structures
4 */
1da177e4
LT
5#ifndef __LINUX_FILTER_H__
6#define __LINUX_FILTER_H__
7
b954d834
DB
8#include <stdarg.h>
9
60063497 10#include <linux/atomic.h>
4c355cdf 11#include <linux/refcount.h>
0c5fe1b4 12#include <linux/compat.h>
9f12fbe6 13#include <linux/skbuff.h>
b954d834
DB
14#include <linux/linkage.h>
15#include <linux/printk.h>
d45ed4a4 16#include <linux/workqueue.h>
b13138ef 17#include <linux/sched.h>
4f3446bb 18#include <linux/capability.h>
7bd509e3 19#include <linux/cryptohash.h>
820a0b24 20#include <linux/set_memory.h>
4f3446bb 21
ff936a04 22#include <net/sch_generic.h>
b954d834 23
b954d834 24#include <uapi/linux/filter.h>
daedfb22 25#include <uapi/linux/bpf.h>
60a3b225
DB
26
27struct sk_buff;
28struct sock;
29struct seccomp_data;
09756af4 30struct bpf_prog_aux;
792d4b5c 31
30743837
DB
32/* ArgX, context and stack frame pointer register positions. Note,
33 * Arg1, Arg2, Arg3, etc are used as argument mappings of function
34 * calls in BPF_CALL instruction.
35 */
36#define BPF_REG_ARG1 BPF_REG_1
37#define BPF_REG_ARG2 BPF_REG_2
38#define BPF_REG_ARG3 BPF_REG_3
39#define BPF_REG_ARG4 BPF_REG_4
40#define BPF_REG_ARG5 BPF_REG_5
41#define BPF_REG_CTX BPF_REG_6
42#define BPF_REG_FP BPF_REG_10
43
44/* Additional register mappings for converted user programs. */
45#define BPF_REG_A BPF_REG_0
46#define BPF_REG_X BPF_REG_7
47#define BPF_REG_TMP BPF_REG_8
bd4cf0ed 48
4f3446bb
DB
49/* Kernel hidden auxiliary/helper register for hardening step.
50 * Only used by eBPF JITs. It's nothing more than a temporary
51 * register that JITs use internally, only that here it's part
52 * of eBPF instructions that have been rewritten for blinding
53 * constants. See JIT pre-step in bpf_jit_blind_constants().
54 */
55#define BPF_REG_AX MAX_BPF_REG
56#define MAX_BPF_JIT_REG (MAX_BPF_REG + 1)
57
71189fa9
AS
58/* unused opcode to mark special call to bpf_tail_call() helper */
59#define BPF_TAIL_CALL 0xf0
60
74451e66
DB
61/* As per nm, we expose JITed images as text (code) section for
62 * kallsyms. That way, tools like perf can find it to match
63 * addresses.
64 */
65#define BPF_SYM_ELF_TYPE 't'
66
bd4cf0ed
AS
67/* BPF program can access up to 512 bytes of stack space. */
68#define MAX_BPF_STACK 512
69
f8f6d679
DB
70/* Helper macros for filter block array initializers. */
71
e430f34e 72/* ALU ops on registers, bpf_add|sub|...: dst_reg += src_reg */
f8f6d679 73
e430f34e 74#define BPF_ALU64_REG(OP, DST, SRC) \
2695fb55 75 ((struct bpf_insn) { \
f8f6d679 76 .code = BPF_ALU64 | BPF_OP(OP) | BPF_X, \
e430f34e
AS
77 .dst_reg = DST, \
78 .src_reg = SRC, \
f8f6d679
DB
79 .off = 0, \
80 .imm = 0 })
81
e430f34e 82#define BPF_ALU32_REG(OP, DST, SRC) \
2695fb55 83 ((struct bpf_insn) { \
f8f6d679 84 .code = BPF_ALU | BPF_OP(OP) | BPF_X, \
e430f34e
AS
85 .dst_reg = DST, \
86 .src_reg = SRC, \
f8f6d679
DB
87 .off = 0, \
88 .imm = 0 })
89
e430f34e 90/* ALU ops on immediates, bpf_add|sub|...: dst_reg += imm32 */
f8f6d679 91
e430f34e 92#define BPF_ALU64_IMM(OP, DST, IMM) \
2695fb55 93 ((struct bpf_insn) { \
f8f6d679 94 .code = BPF_ALU64 | BPF_OP(OP) | BPF_K, \
e430f34e
AS
95 .dst_reg = DST, \
96 .src_reg = 0, \
f8f6d679
DB
97 .off = 0, \
98 .imm = IMM })
99
e430f34e 100#define BPF_ALU32_IMM(OP, DST, IMM) \
2695fb55 101 ((struct bpf_insn) { \
f8f6d679 102 .code = BPF_ALU | BPF_OP(OP) | BPF_K, \
e430f34e
AS
103 .dst_reg = DST, \
104 .src_reg = 0, \
f8f6d679
DB
105 .off = 0, \
106 .imm = IMM })
107
108/* Endianess conversion, cpu_to_{l,b}e(), {l,b}e_to_cpu() */
109
e430f34e 110#define BPF_ENDIAN(TYPE, DST, LEN) \
2695fb55 111 ((struct bpf_insn) { \
f8f6d679 112 .code = BPF_ALU | BPF_END | BPF_SRC(TYPE), \
e430f34e
AS
113 .dst_reg = DST, \
114 .src_reg = 0, \
f8f6d679
DB
115 .off = 0, \
116 .imm = LEN })
117
e430f34e 118/* Short form of mov, dst_reg = src_reg */
f8f6d679 119
e430f34e 120#define BPF_MOV64_REG(DST, SRC) \
2695fb55 121 ((struct bpf_insn) { \
f8f6d679 122 .code = BPF_ALU64 | BPF_MOV | BPF_X, \
e430f34e
AS
123 .dst_reg = DST, \
124 .src_reg = SRC, \
f8f6d679
DB
125 .off = 0, \
126 .imm = 0 })
127
e430f34e 128#define BPF_MOV32_REG(DST, SRC) \
2695fb55 129 ((struct bpf_insn) { \
f8f6d679 130 .code = BPF_ALU | BPF_MOV | BPF_X, \
e430f34e
AS
131 .dst_reg = DST, \
132 .src_reg = SRC, \
f8f6d679
DB
133 .off = 0, \
134 .imm = 0 })
135
e430f34e 136/* Short form of mov, dst_reg = imm32 */
f8f6d679 137
e430f34e 138#define BPF_MOV64_IMM(DST, IMM) \
2695fb55 139 ((struct bpf_insn) { \
f8f6d679 140 .code = BPF_ALU64 | BPF_MOV | BPF_K, \
e430f34e
AS
141 .dst_reg = DST, \
142 .src_reg = 0, \
f8f6d679
DB
143 .off = 0, \
144 .imm = IMM })
145
e430f34e 146#define BPF_MOV32_IMM(DST, IMM) \
2695fb55 147 ((struct bpf_insn) { \
f8f6d679 148 .code = BPF_ALU | BPF_MOV | BPF_K, \
e430f34e
AS
149 .dst_reg = DST, \
150 .src_reg = 0, \
f8f6d679
DB
151 .off = 0, \
152 .imm = IMM })
153
02ab695b
AS
154/* BPF_LD_IMM64 macro encodes single 'load 64-bit immediate' insn */
155#define BPF_LD_IMM64(DST, IMM) \
156 BPF_LD_IMM64_RAW(DST, 0, IMM)
157
158#define BPF_LD_IMM64_RAW(DST, SRC, IMM) \
159 ((struct bpf_insn) { \
160 .code = BPF_LD | BPF_DW | BPF_IMM, \
161 .dst_reg = DST, \
162 .src_reg = SRC, \
163 .off = 0, \
164 .imm = (__u32) (IMM) }), \
165 ((struct bpf_insn) { \
166 .code = 0, /* zero is reserved opcode */ \
167 .dst_reg = 0, \
168 .src_reg = 0, \
169 .off = 0, \
170 .imm = ((__u64) (IMM)) >> 32 })
171
0246e64d
AS
172/* pseudo BPF_LD_IMM64 insn used to refer to process-local map_fd */
173#define BPF_LD_MAP_FD(DST, MAP_FD) \
174 BPF_LD_IMM64_RAW(DST, BPF_PSEUDO_MAP_FD, MAP_FD)
175
e430f34e 176/* Short form of mov based on type, BPF_X: dst_reg = src_reg, BPF_K: dst_reg = imm32 */
f8f6d679 177
e430f34e 178#define BPF_MOV64_RAW(TYPE, DST, SRC, IMM) \
2695fb55 179 ((struct bpf_insn) { \
f8f6d679 180 .code = BPF_ALU64 | BPF_MOV | BPF_SRC(TYPE), \
e430f34e
AS
181 .dst_reg = DST, \
182 .src_reg = SRC, \
f8f6d679
DB
183 .off = 0, \
184 .imm = IMM })
185
e430f34e 186#define BPF_MOV32_RAW(TYPE, DST, SRC, IMM) \
2695fb55 187 ((struct bpf_insn) { \
f8f6d679 188 .code = BPF_ALU | BPF_MOV | BPF_SRC(TYPE), \
e430f34e
AS
189 .dst_reg = DST, \
190 .src_reg = SRC, \
f8f6d679
DB
191 .off = 0, \
192 .imm = IMM })
193
e430f34e 194/* Direct packet access, R0 = *(uint *) (skb->data + imm32) */
f8f6d679 195
e430f34e 196#define BPF_LD_ABS(SIZE, IMM) \
2695fb55 197 ((struct bpf_insn) { \
f8f6d679 198 .code = BPF_LD | BPF_SIZE(SIZE) | BPF_ABS, \
e430f34e
AS
199 .dst_reg = 0, \
200 .src_reg = 0, \
f8f6d679 201 .off = 0, \
e430f34e 202 .imm = IMM })
f8f6d679 203
e430f34e 204/* Indirect packet access, R0 = *(uint *) (skb->data + src_reg + imm32) */
f8f6d679 205
e430f34e 206#define BPF_LD_IND(SIZE, SRC, IMM) \
2695fb55 207 ((struct bpf_insn) { \
f8f6d679 208 .code = BPF_LD | BPF_SIZE(SIZE) | BPF_IND, \
e430f34e
AS
209 .dst_reg = 0, \
210 .src_reg = SRC, \
f8f6d679 211 .off = 0, \
e430f34e 212 .imm = IMM })
f8f6d679 213
e430f34e 214/* Memory load, dst_reg = *(uint *) (src_reg + off16) */
f8f6d679 215
e430f34e 216#define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \
2695fb55 217 ((struct bpf_insn) { \
f8f6d679 218 .code = BPF_LDX | BPF_SIZE(SIZE) | BPF_MEM, \
e430f34e
AS
219 .dst_reg = DST, \
220 .src_reg = SRC, \
f8f6d679
DB
221 .off = OFF, \
222 .imm = 0 })
223
e430f34e
AS
224/* Memory store, *(uint *) (dst_reg + off16) = src_reg */
225
226#define BPF_STX_MEM(SIZE, DST, SRC, OFF) \
2695fb55 227 ((struct bpf_insn) { \
f8f6d679 228 .code = BPF_STX | BPF_SIZE(SIZE) | BPF_MEM, \
e430f34e
AS
229 .dst_reg = DST, \
230 .src_reg = SRC, \
f8f6d679
DB
231 .off = OFF, \
232 .imm = 0 })
233
cffc642d
MH
234/* Atomic memory add, *(uint *)(dst_reg + off16) += src_reg */
235
236#define BPF_STX_XADD(SIZE, DST, SRC, OFF) \
237 ((struct bpf_insn) { \
238 .code = BPF_STX | BPF_SIZE(SIZE) | BPF_XADD, \
239 .dst_reg = DST, \
240 .src_reg = SRC, \
241 .off = OFF, \
242 .imm = 0 })
243
e430f34e
AS
244/* Memory store, *(uint *) (dst_reg + off16) = imm32 */
245
246#define BPF_ST_MEM(SIZE, DST, OFF, IMM) \
2695fb55 247 ((struct bpf_insn) { \
e430f34e
AS
248 .code = BPF_ST | BPF_SIZE(SIZE) | BPF_MEM, \
249 .dst_reg = DST, \
250 .src_reg = 0, \
251 .off = OFF, \
252 .imm = IMM })
253
254/* Conditional jumps against registers, if (dst_reg 'op' src_reg) goto pc + off16 */
f8f6d679 255
e430f34e 256#define BPF_JMP_REG(OP, DST, SRC, OFF) \
2695fb55 257 ((struct bpf_insn) { \
f8f6d679 258 .code = BPF_JMP | BPF_OP(OP) | BPF_X, \
e430f34e
AS
259 .dst_reg = DST, \
260 .src_reg = SRC, \
f8f6d679
DB
261 .off = OFF, \
262 .imm = 0 })
263
e430f34e 264/* Conditional jumps against immediates, if (dst_reg 'op' imm32) goto pc + off16 */
f8f6d679 265
e430f34e 266#define BPF_JMP_IMM(OP, DST, IMM, OFF) \
2695fb55 267 ((struct bpf_insn) { \
f8f6d679 268 .code = BPF_JMP | BPF_OP(OP) | BPF_K, \
e430f34e
AS
269 .dst_reg = DST, \
270 .src_reg = 0, \
f8f6d679
DB
271 .off = OFF, \
272 .imm = IMM })
273
614d0d77
DB
274/* Unconditional jumps, goto pc + off16 */
275
276#define BPF_JMP_A(OFF) \
277 ((struct bpf_insn) { \
278 .code = BPF_JMP | BPF_JA, \
279 .dst_reg = 0, \
280 .src_reg = 0, \
281 .off = OFF, \
282 .imm = 0 })
283
f8f6d679
DB
284/* Function call */
285
286#define BPF_EMIT_CALL(FUNC) \
2695fb55 287 ((struct bpf_insn) { \
f8f6d679 288 .code = BPF_JMP | BPF_CALL, \
e430f34e
AS
289 .dst_reg = 0, \
290 .src_reg = 0, \
f8f6d679
DB
291 .off = 0, \
292 .imm = ((FUNC) - __bpf_call_base) })
293
294/* Raw code statement block */
295
e430f34e 296#define BPF_RAW_INSN(CODE, DST, SRC, OFF, IMM) \
2695fb55 297 ((struct bpf_insn) { \
f8f6d679 298 .code = CODE, \
e430f34e
AS
299 .dst_reg = DST, \
300 .src_reg = SRC, \
f8f6d679
DB
301 .off = OFF, \
302 .imm = IMM })
303
304/* Program exit */
305
306#define BPF_EXIT_INSN() \
2695fb55 307 ((struct bpf_insn) { \
f8f6d679 308 .code = BPF_JMP | BPF_EXIT, \
e430f34e
AS
309 .dst_reg = 0, \
310 .src_reg = 0, \
f8f6d679
DB
311 .off = 0, \
312 .imm = 0 })
313
a4afd37b
DB
314/* Internal classic blocks for direct assignment */
315
316#define __BPF_STMT(CODE, K) \
317 ((struct sock_filter) BPF_STMT(CODE, K))
318
319#define __BPF_JUMP(CODE, K, JT, JF) \
320 ((struct sock_filter) BPF_JUMP(CODE, K, JT, JF))
321
f8f6d679
DB
322#define bytes_to_bpf_size(bytes) \
323({ \
324 int bpf_size = -EINVAL; \
325 \
326 if (bytes == sizeof(u8)) \
327 bpf_size = BPF_B; \
328 else if (bytes == sizeof(u16)) \
329 bpf_size = BPF_H; \
330 else if (bytes == sizeof(u32)) \
331 bpf_size = BPF_W; \
332 else if (bytes == sizeof(u64)) \
333 bpf_size = BPF_DW; \
334 \
335 bpf_size; \
336})
9739eef1 337
f96da094
DB
338#define bpf_size_to_bytes(bpf_size) \
339({ \
340 int bytes = -EINVAL; \
341 \
342 if (bpf_size == BPF_B) \
343 bytes = sizeof(u8); \
344 else if (bpf_size == BPF_H) \
345 bytes = sizeof(u16); \
346 else if (bpf_size == BPF_W) \
347 bytes = sizeof(u32); \
348 else if (bpf_size == BPF_DW) \
349 bytes = sizeof(u64); \
350 \
351 bytes; \
352})
353
f035a515
DB
354#define BPF_SIZEOF(type) \
355 ({ \
356 const int __size = bytes_to_bpf_size(sizeof(type)); \
357 BUILD_BUG_ON(__size < 0); \
358 __size; \
359 })
360
361#define BPF_FIELD_SIZEOF(type, field) \
362 ({ \
363 const int __size = bytes_to_bpf_size(FIELD_SIZEOF(type, field)); \
364 BUILD_BUG_ON(__size < 0); \
365 __size; \
366 })
367
f96da094
DB
368#define BPF_LDST_BYTES(insn) \
369 ({ \
370 const int __size = bpf_size_to_bytes(BPF_SIZE(insn->code)); \
371 WARN_ON(__size < 0); \
372 __size; \
373 })
374
f3694e00
DB
375#define __BPF_MAP_0(m, v, ...) v
376#define __BPF_MAP_1(m, v, t, a, ...) m(t, a)
377#define __BPF_MAP_2(m, v, t, a, ...) m(t, a), __BPF_MAP_1(m, v, __VA_ARGS__)
378#define __BPF_MAP_3(m, v, t, a, ...) m(t, a), __BPF_MAP_2(m, v, __VA_ARGS__)
379#define __BPF_MAP_4(m, v, t, a, ...) m(t, a), __BPF_MAP_3(m, v, __VA_ARGS__)
380#define __BPF_MAP_5(m, v, t, a, ...) m(t, a), __BPF_MAP_4(m, v, __VA_ARGS__)
381
382#define __BPF_REG_0(...) __BPF_PAD(5)
383#define __BPF_REG_1(...) __BPF_MAP(1, __VA_ARGS__), __BPF_PAD(4)
384#define __BPF_REG_2(...) __BPF_MAP(2, __VA_ARGS__), __BPF_PAD(3)
385#define __BPF_REG_3(...) __BPF_MAP(3, __VA_ARGS__), __BPF_PAD(2)
386#define __BPF_REG_4(...) __BPF_MAP(4, __VA_ARGS__), __BPF_PAD(1)
387#define __BPF_REG_5(...) __BPF_MAP(5, __VA_ARGS__)
388
389#define __BPF_MAP(n, ...) __BPF_MAP_##n(__VA_ARGS__)
390#define __BPF_REG(n, ...) __BPF_REG_##n(__VA_ARGS__)
391
392#define __BPF_CAST(t, a) \
393 (__force t) \
394 (__force \
395 typeof(__builtin_choose_expr(sizeof(t) == sizeof(unsigned long), \
396 (unsigned long)0, (t)0))) a
397#define __BPF_V void
398#define __BPF_N
399
400#define __BPF_DECL_ARGS(t, a) t a
401#define __BPF_DECL_REGS(t, a) u64 a
402
403#define __BPF_PAD(n) \
404 __BPF_MAP(n, __BPF_DECL_ARGS, __BPF_N, u64, __ur_1, u64, __ur_2, \
405 u64, __ur_3, u64, __ur_4, u64, __ur_5)
406
407#define BPF_CALL_x(x, name, ...) \
408 static __always_inline \
409 u64 ____##name(__BPF_MAP(x, __BPF_DECL_ARGS, __BPF_V, __VA_ARGS__)); \
410 u64 name(__BPF_REG(x, __BPF_DECL_REGS, __BPF_N, __VA_ARGS__)); \
411 u64 name(__BPF_REG(x, __BPF_DECL_REGS, __BPF_N, __VA_ARGS__)) \
412 { \
413 return ____##name(__BPF_MAP(x,__BPF_CAST,__BPF_N,__VA_ARGS__));\
414 } \
415 static __always_inline \
416 u64 ____##name(__BPF_MAP(x, __BPF_DECL_ARGS, __BPF_V, __VA_ARGS__))
417
418#define BPF_CALL_0(name, ...) BPF_CALL_x(0, name, __VA_ARGS__)
419#define BPF_CALL_1(name, ...) BPF_CALL_x(1, name, __VA_ARGS__)
420#define BPF_CALL_2(name, ...) BPF_CALL_x(2, name, __VA_ARGS__)
421#define BPF_CALL_3(name, ...) BPF_CALL_x(3, name, __VA_ARGS__)
422#define BPF_CALL_4(name, ...) BPF_CALL_x(4, name, __VA_ARGS__)
423#define BPF_CALL_5(name, ...) BPF_CALL_x(5, name, __VA_ARGS__)
424
f96da094
DB
425#define bpf_ctx_range(TYPE, MEMBER) \
426 offsetof(TYPE, MEMBER) ... offsetofend(TYPE, MEMBER) - 1
427#define bpf_ctx_range_till(TYPE, MEMBER1, MEMBER2) \
428 offsetof(TYPE, MEMBER1) ... offsetofend(TYPE, MEMBER2) - 1
429
430#define bpf_target_off(TYPE, MEMBER, SIZE, PTR_SIZE) \
431 ({ \
432 BUILD_BUG_ON(FIELD_SIZEOF(TYPE, MEMBER) != (SIZE)); \
433 *(PTR_SIZE) = (SIZE); \
434 offsetof(TYPE, MEMBER); \
435 })
436
bd4cf0ed
AS
437#ifdef CONFIG_COMPAT
438/* A struct sock_filter is architecture independent. */
0c5fe1b4
WD
439struct compat_sock_fprog {
440 u16 len;
bd4cf0ed 441 compat_uptr_t filter; /* struct sock_filter * */
0c5fe1b4
WD
442};
443#endif
444
a3ea269b
DB
445struct sock_fprog_kern {
446 u16 len;
447 struct sock_filter *filter;
448};
449
738cbe72
DB
450struct bpf_binary_header {
451 unsigned int pages;
452 u8 image[];
453};
454
7ae457c1 455struct bpf_prog {
286aad3c 456 u16 pages; /* Number of allocated pages */
a91263d5 457 u16 jited:1, /* Is our filter JIT'ed? */
65869a47 458 locked:1, /* Program image locked? */
c46646d0 459 gpl_compatible:1, /* Is filter GPL compatible? */
ff936a04 460 cb_access:1, /* Is control block accessed? */
9802d865
JB
461 dst_needed:1, /* Do we need dst entry? */
462 kprobe_override:1; /* Do we override a kprobe? */
24701ece 463 enum bpf_prog_type type; /* Type of BPF program */
7bd509e3 464 u32 len; /* Number of filter blocks */
783d28dd 465 u32 jited_len; /* Size of jited insns in bytes */
f1f7714e 466 u8 tag[BPF_TAG_SIZE];
09756af4 467 struct bpf_prog_aux *aux; /* Auxiliary fields */
24701ece 468 struct sock_fprog_kern *orig_prog; /* Original BPF program */
88575199
DB
469 unsigned int (*bpf_func)(const void *ctx,
470 const struct bpf_insn *insn);
60a3b225 471 /* Instructions for interpreter */
d45ed4a4 472 union {
bd4cf0ed 473 struct sock_filter insns[0];
2695fb55 474 struct bpf_insn insnsi[0];
d45ed4a4 475 };
b715631f
SH
476};
477
7ae457c1 478struct sk_filter {
4c355cdf 479 refcount_t refcnt;
7ae457c1
AS
480 struct rcu_head rcu;
481 struct bpf_prog *prog;
482};
483
324bda9e 484#define BPF_PROG_RUN(filter, ctx) (*(filter)->bpf_func)(ctx, (filter)->insnsi)
7ae457c1 485
01dd194c
DB
486#define BPF_SKB_CB_LEN QDISC_CB_PRIV_LEN
487
db58ba45
AS
488struct bpf_skb_data_end {
489 struct qdisc_skb_cb qdisc_cb;
de8f3a83 490 void *data_meta;
db58ba45
AS
491 void *data_end;
492};
493
6a773a15
BB
494struct xdp_buff {
495 void *data;
496 void *data_end;
de8f3a83 497 void *data_meta;
17bedab2 498 void *data_hard_start;
6a773a15
BB
499};
500
6aaae2b6
DB
501/* Compute the linear packet data range [data, data_end) which
502 * will be accessed by various program types (cls_bpf, act_bpf,
503 * lwt, ...). Subsystems allowing direct data access must (!)
504 * ensure that cb[] area can be written to when BPF program is
505 * invoked (otherwise cb[] save/restore is necessary).
db58ba45 506 */
6aaae2b6 507static inline void bpf_compute_data_pointers(struct sk_buff *skb)
db58ba45
AS
508{
509 struct bpf_skb_data_end *cb = (struct bpf_skb_data_end *)skb->cb;
510
511 BUILD_BUG_ON(sizeof(*cb) > FIELD_SIZEOF(struct sk_buff, cb));
de8f3a83
DB
512 cb->data_meta = skb->data - skb_metadata_len(skb);
513 cb->data_end = skb->data + skb_headlen(skb);
db58ba45
AS
514}
515
01dd194c
DB
516static inline u8 *bpf_skb_cb(struct sk_buff *skb)
517{
518 /* eBPF programs may read/write skb->cb[] area to transfer meta
519 * data between tail calls. Since this also needs to work with
520 * tc, that scratch memory is mapped to qdisc_skb_cb's data area.
521 *
522 * In some socket filter cases, the cb unfortunately needs to be
523 * saved/restored so that protocol specific skb->cb[] data won't
524 * be lost. In any case, due to unpriviledged eBPF programs
525 * attached to sockets, we need to clear the bpf_skb_cb() area
526 * to not leak previous contents to user space.
527 */
528 BUILD_BUG_ON(FIELD_SIZEOF(struct __sk_buff, cb) != BPF_SKB_CB_LEN);
529 BUILD_BUG_ON(FIELD_SIZEOF(struct __sk_buff, cb) !=
530 FIELD_SIZEOF(struct qdisc_skb_cb, data));
531
532 return qdisc_skb_cb(skb)->data;
533}
534
ff936a04
AS
535static inline u32 bpf_prog_run_save_cb(const struct bpf_prog *prog,
536 struct sk_buff *skb)
537{
01dd194c
DB
538 u8 *cb_data = bpf_skb_cb(skb);
539 u8 cb_saved[BPF_SKB_CB_LEN];
ff936a04
AS
540 u32 res;
541
ff936a04 542 if (unlikely(prog->cb_access)) {
01dd194c
DB
543 memcpy(cb_saved, cb_data, sizeof(cb_saved));
544 memset(cb_data, 0, sizeof(cb_saved));
ff936a04
AS
545 }
546
547 res = BPF_PROG_RUN(prog, skb);
548
549 if (unlikely(prog->cb_access))
01dd194c 550 memcpy(cb_data, cb_saved, sizeof(cb_saved));
ff936a04
AS
551
552 return res;
553}
554
555static inline u32 bpf_prog_run_clear_cb(const struct bpf_prog *prog,
556 struct sk_buff *skb)
557{
01dd194c 558 u8 *cb_data = bpf_skb_cb(skb);
ff936a04
AS
559
560 if (unlikely(prog->cb_access))
01dd194c
DB
561 memset(cb_data, 0, BPF_SKB_CB_LEN);
562
ff936a04
AS
563 return BPF_PROG_RUN(prog, skb);
564}
565
366cbf2f
DB
566static __always_inline u32 bpf_prog_run_xdp(const struct bpf_prog *prog,
567 struct xdp_buff *xdp)
6a773a15 568{
366cbf2f
DB
569 /* Caller needs to hold rcu_read_lock() (!), otherwise program
570 * can be released while still running, or map elements could be
571 * freed early while still having concurrent users. XDP fastpath
572 * already takes rcu_read_lock() when fetching the program, so
573 * it's not necessary here anymore.
574 */
575 return BPF_PROG_RUN(prog, xdp);
6a773a15
BB
576}
577
aafe6ae9
DB
578static inline u32 bpf_prog_insn_size(const struct bpf_prog *prog)
579{
580 return prog->len * sizeof(struct bpf_insn);
581}
582
f1f7714e 583static inline u32 bpf_prog_tag_scratch_size(const struct bpf_prog *prog)
aafe6ae9
DB
584{
585 return round_up(bpf_prog_insn_size(prog) +
586 sizeof(__be64) + 1, SHA_MESSAGE_BYTES);
587}
588
7ae457c1 589static inline unsigned int bpf_prog_size(unsigned int proglen)
b715631f 590{
7ae457c1
AS
591 return max(sizeof(struct bpf_prog),
592 offsetof(struct bpf_prog, insns[proglen]));
b715631f
SH
593}
594
7b36f929
DB
595static inline bool bpf_prog_was_classic(const struct bpf_prog *prog)
596{
597 /* When classic BPF programs have been loaded and the arch
598 * does not have a classic BPF JIT (anymore), they have been
599 * converted via bpf_migrate_filter() to eBPF and thus always
600 * have an unspec program type.
601 */
602 return prog->type == BPF_PROG_TYPE_UNSPEC;
603}
604
f96da094
DB
605static inline bool
606bpf_ctx_narrow_access_ok(u32 off, u32 size, const u32 size_default)
607{
608 bool off_ok;
609#ifdef __LITTLE_ENDIAN
610 off_ok = (off & (size_default - 1)) == 0;
611#else
612 off_ok = (off & (size_default - 1)) + size == size_default;
613#endif
614 return off_ok && size <= size_default && (size & (size - 1)) == 0;
615}
616
009937e7 617#define bpf_classic_proglen(fprog) (fprog->len * sizeof(fprog->filter[0]))
a3ea269b 618
9d876e79 619#ifdef CONFIG_ARCH_HAS_SET_MEMORY
60a3b225
DB
620static inline void bpf_prog_lock_ro(struct bpf_prog *fp)
621{
65869a47
DB
622 fp->locked = 1;
623 WARN_ON_ONCE(set_memory_ro((unsigned long)fp, fp->pages));
60a3b225
DB
624}
625
626static inline void bpf_prog_unlock_ro(struct bpf_prog *fp)
627{
65869a47
DB
628 if (fp->locked) {
629 WARN_ON_ONCE(set_memory_rw((unsigned long)fp, fp->pages));
630 /* In case set_memory_rw() fails, we want to be the first
631 * to crash here instead of some random place later on.
632 */
633 fp->locked = 0;
634 }
60a3b225 635}
74451e66 636
9d876e79
DB
637static inline void bpf_jit_binary_lock_ro(struct bpf_binary_header *hdr)
638{
65869a47 639 WARN_ON_ONCE(set_memory_ro((unsigned long)hdr, hdr->pages));
9d876e79
DB
640}
641
74451e66
DB
642static inline void bpf_jit_binary_unlock_ro(struct bpf_binary_header *hdr)
643{
65869a47 644 WARN_ON_ONCE(set_memory_rw((unsigned long)hdr, hdr->pages));
74451e66 645}
60a3b225
DB
646#else
647static inline void bpf_prog_lock_ro(struct bpf_prog *fp)
648{
649}
650
651static inline void bpf_prog_unlock_ro(struct bpf_prog *fp)
652{
653}
74451e66 654
9d876e79
DB
655static inline void bpf_jit_binary_lock_ro(struct bpf_binary_header *hdr)
656{
657}
658
74451e66
DB
659static inline void bpf_jit_binary_unlock_ro(struct bpf_binary_header *hdr)
660{
661}
9d876e79 662#endif /* CONFIG_ARCH_HAS_SET_MEMORY */
60a3b225 663
74451e66
DB
664static inline struct bpf_binary_header *
665bpf_jit_binary_hdr(const struct bpf_prog *fp)
666{
667 unsigned long real_start = (unsigned long)fp->bpf_func;
668 unsigned long addr = real_start & PAGE_MASK;
669
670 return (void *)addr;
671}
672
f4979fce
WB
673int sk_filter_trim_cap(struct sock *sk, struct sk_buff *skb, unsigned int cap);
674static inline int sk_filter(struct sock *sk, struct sk_buff *skb)
675{
676 return sk_filter_trim_cap(sk, skb, 1);
677}
bd4cf0ed 678
d1c55ab5 679struct bpf_prog *bpf_prog_select_runtime(struct bpf_prog *fp, int *err);
7ae457c1 680void bpf_prog_free(struct bpf_prog *fp);
bd4cf0ed 681
60a3b225
DB
682struct bpf_prog *bpf_prog_alloc(unsigned int size, gfp_t gfp_extra_flags);
683struct bpf_prog *bpf_prog_realloc(struct bpf_prog *fp_old, unsigned int size,
684 gfp_t gfp_extra_flags);
685void __bpf_prog_free(struct bpf_prog *fp);
686
687static inline void bpf_prog_unlock_free(struct bpf_prog *fp)
688{
689 bpf_prog_unlock_ro(fp);
690 __bpf_prog_free(fp);
691}
692
ac67eb2c
DB
693typedef int (*bpf_aux_classic_check_t)(struct sock_filter *filter,
694 unsigned int flen);
695
7ae457c1 696int bpf_prog_create(struct bpf_prog **pfp, struct sock_fprog_kern *fprog);
ac67eb2c 697int bpf_prog_create_from_user(struct bpf_prog **pfp, struct sock_fprog *fprog,
bab18991 698 bpf_aux_classic_check_t trans, bool save_orig);
7ae457c1 699void bpf_prog_destroy(struct bpf_prog *fp);
a3ea269b 700
fbc907f0 701int sk_attach_filter(struct sock_fprog *fprog, struct sock *sk);
89aa0758 702int sk_attach_bpf(u32 ufd, struct sock *sk);
538950a1
CG
703int sk_reuseport_attach_filter(struct sock_fprog *fprog, struct sock *sk);
704int sk_reuseport_attach_bpf(u32 ufd, struct sock *sk);
fbc907f0 705int sk_detach_filter(struct sock *sk);
fbc907f0
DB
706int sk_get_filter(struct sock *sk, struct sock_filter __user *filter,
707 unsigned int len);
fbc907f0 708
278571ba 709bool sk_filter_charge(struct sock *sk, struct sk_filter *fp);
fbc907f0 710void sk_filter_uncharge(struct sock *sk, struct sk_filter *fp);
0a14842f 711
62258278 712u64 __bpf_call_base(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5);
d1c55ab5
DB
713
714struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *prog);
9383191d 715void bpf_jit_compile(struct bpf_prog *prog);
17bedab2 716bool bpf_helper_changes_pkt_data(void *func);
62258278 717
c237ee5e
DB
718struct bpf_prog *bpf_patch_insn_single(struct bpf_prog *prog, u32 off,
719 const struct bpf_insn *patch, u32 len);
814abfab 720
11393cc9
JF
721/* The pair of xdp_do_redirect and xdp_do_flush_map MUST be called in the
722 * same cpu context. Further for best results no more than a single map
723 * for the do_redirect/do_flush pair should be used. This limitation is
724 * because we only track one map and force a flush when the map changes.
2ddf71e2 725 * This does not appear to be a real limitation for existing software.
11393cc9 726 */
2facaad6
JDB
727int xdp_do_generic_redirect(struct net_device *dev, struct sk_buff *skb,
728 struct bpf_prog *prog);
5acaee0a
JF
729int xdp_do_redirect(struct net_device *dev,
730 struct xdp_buff *xdp,
731 struct bpf_prog *prog);
11393cc9 732void xdp_do_flush_map(void);
814abfab 733
de8f3a83
DB
734/* Drivers not supporting XDP metadata can use this helper, which
735 * rejects any room expansion for metadata as a result.
736 */
737static __always_inline void
738xdp_set_data_meta_invalid(struct xdp_buff *xdp)
739{
740 xdp->data_meta = xdp->data + 1;
741}
742
743static __always_inline bool
744xdp_data_meta_unsupported(const struct xdp_buff *xdp)
745{
746 return unlikely(xdp->data_meta > xdp->data);
747}
748
6a773a15 749void bpf_warn_invalid_xdp_action(u32 act);
c237ee5e 750
34f79502 751struct sock *do_sk_redirect_map(struct sk_buff *skb);
174a79ff 752
b954d834 753#ifdef CONFIG_BPF_JIT
c94987e4 754extern int bpf_jit_enable;
4f3446bb 755extern int bpf_jit_harden;
74451e66 756extern int bpf_jit_kallsyms;
c94987e4 757
b954d834
DB
758typedef void (*bpf_jit_fill_hole_t)(void *area, unsigned int size);
759
760struct bpf_binary_header *
761bpf_jit_binary_alloc(unsigned int proglen, u8 **image_ptr,
762 unsigned int alignment,
763 bpf_jit_fill_hole_t bpf_fill_ill_insns);
764void bpf_jit_binary_free(struct bpf_binary_header *hdr);
765
b954d834
DB
766void bpf_jit_free(struct bpf_prog *fp);
767
4f3446bb
DB
768struct bpf_prog *bpf_jit_blind_constants(struct bpf_prog *fp);
769void bpf_jit_prog_release_other(struct bpf_prog *fp, struct bpf_prog *fp_other);
770
b954d834
DB
771static inline void bpf_jit_dump(unsigned int flen, unsigned int proglen,
772 u32 pass, void *image)
773{
b13138ef
DB
774 pr_err("flen=%u proglen=%u pass=%u image=%pK from=%s pid=%d\n", flen,
775 proglen, pass, image, current->comm, task_pid_nr(current));
776
b954d834
DB
777 if (image)
778 print_hex_dump(KERN_ERR, "JIT code: ", DUMP_PREFIX_OFFSET,
779 16, 1, image, proglen, false);
780}
4f3446bb
DB
781
782static inline bool bpf_jit_is_ebpf(void)
783{
784# ifdef CONFIG_HAVE_EBPF_JIT
785 return true;
786# else
787 return false;
788# endif
789}
790
81ed18ab
AS
791static inline bool ebpf_jit_enabled(void)
792{
793 return bpf_jit_enable && bpf_jit_is_ebpf();
794}
795
74451e66
DB
796static inline bool bpf_prog_ebpf_jited(const struct bpf_prog *fp)
797{
798 return fp->jited && bpf_jit_is_ebpf();
799}
800
4f3446bb
DB
801static inline bool bpf_jit_blinding_enabled(void)
802{
803 /* These are the prerequisites, should someone ever have the
804 * idea to call blinding outside of them, we make sure to
805 * bail out.
806 */
807 if (!bpf_jit_is_ebpf())
808 return false;
809 if (!bpf_jit_enable)
810 return false;
811 if (!bpf_jit_harden)
812 return false;
813 if (bpf_jit_harden == 1 && capable(CAP_SYS_ADMIN))
814 return false;
815
816 return true;
817}
74451e66
DB
818
819static inline bool bpf_jit_kallsyms_enabled(void)
820{
821 /* There are a couple of corner cases where kallsyms should
822 * not be enabled f.e. on hardening.
823 */
824 if (bpf_jit_harden)
825 return false;
826 if (!bpf_jit_kallsyms)
827 return false;
828 if (bpf_jit_kallsyms == 1)
829 return true;
830
831 return false;
832}
833
834const char *__bpf_address_lookup(unsigned long addr, unsigned long *size,
835 unsigned long *off, char *sym);
836bool is_bpf_text_address(unsigned long addr);
837int bpf_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
838 char *sym);
839
840static inline const char *
841bpf_address_lookup(unsigned long addr, unsigned long *size,
842 unsigned long *off, char **modname, char *sym)
843{
844 const char *ret = __bpf_address_lookup(addr, size, off, sym);
845
846 if (ret && modname)
847 *modname = NULL;
848 return ret;
849}
850
851void bpf_prog_kallsyms_add(struct bpf_prog *fp);
852void bpf_prog_kallsyms_del(struct bpf_prog *fp);
853
854#else /* CONFIG_BPF_JIT */
855
81ed18ab
AS
856static inline bool ebpf_jit_enabled(void)
857{
858 return false;
859}
860
74451e66
DB
861static inline bool bpf_prog_ebpf_jited(const struct bpf_prog *fp)
862{
863 return false;
864}
865
b954d834
DB
866static inline void bpf_jit_free(struct bpf_prog *fp)
867{
868 bpf_prog_unlock_free(fp);
869}
74451e66
DB
870
871static inline bool bpf_jit_kallsyms_enabled(void)
872{
873 return false;
874}
875
876static inline const char *
877__bpf_address_lookup(unsigned long addr, unsigned long *size,
878 unsigned long *off, char *sym)
879{
880 return NULL;
881}
882
883static inline bool is_bpf_text_address(unsigned long addr)
884{
885 return false;
886}
887
888static inline int bpf_get_kallsym(unsigned int symnum, unsigned long *value,
889 char *type, char *sym)
890{
891 return -ERANGE;
892}
893
894static inline const char *
895bpf_address_lookup(unsigned long addr, unsigned long *size,
896 unsigned long *off, char **modname, char *sym)
897{
898 return NULL;
899}
900
901static inline void bpf_prog_kallsyms_add(struct bpf_prog *fp)
902{
903}
904
905static inline void bpf_prog_kallsyms_del(struct bpf_prog *fp)
906{
907}
b954d834
DB
908#endif /* CONFIG_BPF_JIT */
909
34805931
DB
910#define BPF_ANC BIT(15)
911
55795ef5
RV
912static inline bool bpf_needs_clear_a(const struct sock_filter *first)
913{
914 switch (first->code) {
915 case BPF_RET | BPF_K:
916 case BPF_LD | BPF_W | BPF_LEN:
917 return false;
918
919 case BPF_LD | BPF_W | BPF_ABS:
920 case BPF_LD | BPF_H | BPF_ABS:
921 case BPF_LD | BPF_B | BPF_ABS:
922 if (first->k == SKF_AD_OFF + SKF_AD_ALU_XOR_X)
923 return true;
924 return false;
925
926 default:
927 return true;
928 }
929}
930
34805931
DB
931static inline u16 bpf_anc_helper(const struct sock_filter *ftest)
932{
933 BUG_ON(ftest->code & BPF_ANC);
934
935 switch (ftest->code) {
936 case BPF_LD | BPF_W | BPF_ABS:
937 case BPF_LD | BPF_H | BPF_ABS:
938 case BPF_LD | BPF_B | BPF_ABS:
939#define BPF_ANCILLARY(CODE) case SKF_AD_OFF + SKF_AD_##CODE: \
940 return BPF_ANC | SKF_AD_##CODE
941 switch (ftest->k) {
942 BPF_ANCILLARY(PROTOCOL);
943 BPF_ANCILLARY(PKTTYPE);
944 BPF_ANCILLARY(IFINDEX);
945 BPF_ANCILLARY(NLATTR);
946 BPF_ANCILLARY(NLATTR_NEST);
947 BPF_ANCILLARY(MARK);
948 BPF_ANCILLARY(QUEUE);
949 BPF_ANCILLARY(HATYPE);
950 BPF_ANCILLARY(RXHASH);
951 BPF_ANCILLARY(CPU);
952 BPF_ANCILLARY(ALU_XOR_X);
953 BPF_ANCILLARY(VLAN_TAG);
954 BPF_ANCILLARY(VLAN_TAG_PRESENT);
955 BPF_ANCILLARY(PAY_OFFSET);
956 BPF_ANCILLARY(RANDOM);
27cd5452 957 BPF_ANCILLARY(VLAN_TPID);
34805931
DB
958 }
959 /* Fallthrough. */
960 default:
961 return ftest->code;
962 }
963}
964
9f12fbe6
ZSL
965void *bpf_internal_load_pointer_neg_helper(const struct sk_buff *skb,
966 int k, unsigned int size);
967
968static inline void *bpf_load_pointer(const struct sk_buff *skb, int k,
969 unsigned int size, void *buffer)
970{
971 if (k >= 0)
972 return skb_header_pointer(skb, k, size, buffer);
973
974 return bpf_internal_load_pointer_neg_helper(skb, k, size);
975}
976
ea02f941
MS
977static inline int bpf_tell_extensions(void)
978{
37692299 979 return SKF_AD_MAX;
ea02f941
MS
980}
981
40304b2a
LB
982struct bpf_sock_ops_kern {
983 struct sock *sk;
984 u32 op;
985 union {
986 u32 reply;
987 u32 replylong[4];
988 };
f19397a5 989 u32 is_fullsock;
40304b2a
LB
990};
991
1da177e4 992#endif /* __LINUX_FILTER_H__ */