xref: /linux-6.15/include/linux/filter.h (revision 257eeded)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Linux Socket Filter Data Structures
4  */
5 #ifndef __LINUX_FILTER_H__
6 #define __LINUX_FILTER_H__
7 
8 #include <stdarg.h>
9 
10 #include <linux/atomic.h>
11 #include <linux/refcount.h>
12 #include <linux/compat.h>
13 #include <linux/skbuff.h>
14 #include <linux/linkage.h>
15 #include <linux/printk.h>
16 #include <linux/workqueue.h>
17 #include <linux/sched.h>
18 #include <linux/capability.h>
19 #include <linux/cryptohash.h>
20 #include <linux/set_memory.h>
21 #include <linux/kallsyms.h>
22 #include <linux/if_vlan.h>
23 
24 #include <net/sch_generic.h>
25 
26 #include <uapi/linux/filter.h>
27 #include <uapi/linux/bpf.h>
28 
29 struct sk_buff;
30 struct sock;
31 struct seccomp_data;
32 struct bpf_prog_aux;
33 struct xdp_rxq_info;
34 struct xdp_buff;
35 struct sock_reuseport;
36 
37 /* ArgX, context and stack frame pointer register positions. Note,
38  * Arg1, Arg2, Arg3, etc are used as argument mappings of function
39  * calls in BPF_CALL instruction.
40  */
41 #define BPF_REG_ARG1	BPF_REG_1
42 #define BPF_REG_ARG2	BPF_REG_2
43 #define BPF_REG_ARG3	BPF_REG_3
44 #define BPF_REG_ARG4	BPF_REG_4
45 #define BPF_REG_ARG5	BPF_REG_5
46 #define BPF_REG_CTX	BPF_REG_6
47 #define BPF_REG_FP	BPF_REG_10
48 
49 /* Additional register mappings for converted user programs. */
50 #define BPF_REG_A	BPF_REG_0
51 #define BPF_REG_X	BPF_REG_7
52 #define BPF_REG_TMP	BPF_REG_2	/* scratch reg */
53 #define BPF_REG_D	BPF_REG_8	/* data, callee-saved */
54 #define BPF_REG_H	BPF_REG_9	/* hlen, callee-saved */
55 
56 /* Kernel hidden auxiliary/helper register. */
57 #define BPF_REG_AX		MAX_BPF_REG
58 #define MAX_BPF_EXT_REG		(MAX_BPF_REG + 1)
59 #define MAX_BPF_JIT_REG		MAX_BPF_EXT_REG
60 
61 /* unused opcode to mark special call to bpf_tail_call() helper */
62 #define BPF_TAIL_CALL	0xf0
63 
64 /* unused opcode to mark call to interpreter with arguments */
65 #define BPF_CALL_ARGS	0xe0
66 
67 /* As per nm, we expose JITed images as text (code) section for
68  * kallsyms. That way, tools like perf can find it to match
69  * addresses.
70  */
71 #define BPF_SYM_ELF_TYPE	't'
72 
73 /* BPF program can access up to 512 bytes of stack space. */
74 #define MAX_BPF_STACK	512
75 
76 /* Helper macros for filter block array initializers. */
77 
78 /* ALU ops on registers, bpf_add|sub|...: dst_reg += src_reg */
79 
80 #define BPF_ALU64_REG(OP, DST, SRC)				\
81 	((struct bpf_insn) {					\
82 		.code  = BPF_ALU64 | BPF_OP(OP) | BPF_X,	\
83 		.dst_reg = DST,					\
84 		.src_reg = SRC,					\
85 		.off   = 0,					\
86 		.imm   = 0 })
87 
88 #define BPF_ALU32_REG(OP, DST, SRC)				\
89 	((struct bpf_insn) {					\
90 		.code  = BPF_ALU | BPF_OP(OP) | BPF_X,		\
91 		.dst_reg = DST,					\
92 		.src_reg = SRC,					\
93 		.off   = 0,					\
94 		.imm   = 0 })
95 
96 /* ALU ops on immediates, bpf_add|sub|...: dst_reg += imm32 */
97 
98 #define BPF_ALU64_IMM(OP, DST, IMM)				\
99 	((struct bpf_insn) {					\
100 		.code  = BPF_ALU64 | BPF_OP(OP) | BPF_K,	\
101 		.dst_reg = DST,					\
102 		.src_reg = 0,					\
103 		.off   = 0,					\
104 		.imm   = IMM })
105 
106 #define BPF_ALU32_IMM(OP, DST, IMM)				\
107 	((struct bpf_insn) {					\
108 		.code  = BPF_ALU | BPF_OP(OP) | BPF_K,		\
109 		.dst_reg = DST,					\
110 		.src_reg = 0,					\
111 		.off   = 0,					\
112 		.imm   = IMM })
113 
114 /* Endianess conversion, cpu_to_{l,b}e(), {l,b}e_to_cpu() */
115 
116 #define BPF_ENDIAN(TYPE, DST, LEN)				\
117 	((struct bpf_insn) {					\
118 		.code  = BPF_ALU | BPF_END | BPF_SRC(TYPE),	\
119 		.dst_reg = DST,					\
120 		.src_reg = 0,					\
121 		.off   = 0,					\
122 		.imm   = LEN })
123 
124 /* Short form of mov, dst_reg = src_reg */
125 
126 #define BPF_MOV64_REG(DST, SRC)					\
127 	((struct bpf_insn) {					\
128 		.code  = BPF_ALU64 | BPF_MOV | BPF_X,		\
129 		.dst_reg = DST,					\
130 		.src_reg = SRC,					\
131 		.off   = 0,					\
132 		.imm   = 0 })
133 
134 #define BPF_MOV32_REG(DST, SRC)					\
135 	((struct bpf_insn) {					\
136 		.code  = BPF_ALU | BPF_MOV | BPF_X,		\
137 		.dst_reg = DST,					\
138 		.src_reg = SRC,					\
139 		.off   = 0,					\
140 		.imm   = 0 })
141 
142 /* Short form of mov, dst_reg = imm32 */
143 
144 #define BPF_MOV64_IMM(DST, IMM)					\
145 	((struct bpf_insn) {					\
146 		.code  = BPF_ALU64 | BPF_MOV | BPF_K,		\
147 		.dst_reg = DST,					\
148 		.src_reg = 0,					\
149 		.off   = 0,					\
150 		.imm   = IMM })
151 
152 #define BPF_MOV32_IMM(DST, IMM)					\
153 	((struct bpf_insn) {					\
154 		.code  = BPF_ALU | BPF_MOV | BPF_K,		\
155 		.dst_reg = DST,					\
156 		.src_reg = 0,					\
157 		.off   = 0,					\
158 		.imm   = IMM })
159 
160 /* BPF_LD_IMM64 macro encodes single 'load 64-bit immediate' insn */
161 #define BPF_LD_IMM64(DST, IMM)					\
162 	BPF_LD_IMM64_RAW(DST, 0, IMM)
163 
164 #define BPF_LD_IMM64_RAW(DST, SRC, IMM)				\
165 	((struct bpf_insn) {					\
166 		.code  = BPF_LD | BPF_DW | BPF_IMM,		\
167 		.dst_reg = DST,					\
168 		.src_reg = SRC,					\
169 		.off   = 0,					\
170 		.imm   = (__u32) (IMM) }),			\
171 	((struct bpf_insn) {					\
172 		.code  = 0, /* zero is reserved opcode */	\
173 		.dst_reg = 0,					\
174 		.src_reg = 0,					\
175 		.off   = 0,					\
176 		.imm   = ((__u64) (IMM)) >> 32 })
177 
178 /* pseudo BPF_LD_IMM64 insn used to refer to process-local map_fd */
179 #define BPF_LD_MAP_FD(DST, MAP_FD)				\
180 	BPF_LD_IMM64_RAW(DST, BPF_PSEUDO_MAP_FD, MAP_FD)
181 
182 /* Short form of mov based on type, BPF_X: dst_reg = src_reg, BPF_K: dst_reg = imm32 */
183 
184 #define BPF_MOV64_RAW(TYPE, DST, SRC, IMM)			\
185 	((struct bpf_insn) {					\
186 		.code  = BPF_ALU64 | BPF_MOV | BPF_SRC(TYPE),	\
187 		.dst_reg = DST,					\
188 		.src_reg = SRC,					\
189 		.off   = 0,					\
190 		.imm   = IMM })
191 
192 #define BPF_MOV32_RAW(TYPE, DST, SRC, IMM)			\
193 	((struct bpf_insn) {					\
194 		.code  = BPF_ALU | BPF_MOV | BPF_SRC(TYPE),	\
195 		.dst_reg = DST,					\
196 		.src_reg = SRC,					\
197 		.off   = 0,					\
198 		.imm   = IMM })
199 
200 /* Direct packet access, R0 = *(uint *) (skb->data + imm32) */
201 
202 #define BPF_LD_ABS(SIZE, IMM)					\
203 	((struct bpf_insn) {					\
204 		.code  = BPF_LD | BPF_SIZE(SIZE) | BPF_ABS,	\
205 		.dst_reg = 0,					\
206 		.src_reg = 0,					\
207 		.off   = 0,					\
208 		.imm   = IMM })
209 
210 /* Indirect packet access, R0 = *(uint *) (skb->data + src_reg + imm32) */
211 
212 #define BPF_LD_IND(SIZE, SRC, IMM)				\
213 	((struct bpf_insn) {					\
214 		.code  = BPF_LD | BPF_SIZE(SIZE) | BPF_IND,	\
215 		.dst_reg = 0,					\
216 		.src_reg = SRC,					\
217 		.off   = 0,					\
218 		.imm   = IMM })
219 
220 /* Memory load, dst_reg = *(uint *) (src_reg + off16) */
221 
222 #define BPF_LDX_MEM(SIZE, DST, SRC, OFF)			\
223 	((struct bpf_insn) {					\
224 		.code  = BPF_LDX | BPF_SIZE(SIZE) | BPF_MEM,	\
225 		.dst_reg = DST,					\
226 		.src_reg = SRC,					\
227 		.off   = OFF,					\
228 		.imm   = 0 })
229 
230 /* Memory store, *(uint *) (dst_reg + off16) = src_reg */
231 
232 #define BPF_STX_MEM(SIZE, DST, SRC, OFF)			\
233 	((struct bpf_insn) {					\
234 		.code  = BPF_STX | BPF_SIZE(SIZE) | BPF_MEM,	\
235 		.dst_reg = DST,					\
236 		.src_reg = SRC,					\
237 		.off   = OFF,					\
238 		.imm   = 0 })
239 
240 /* Atomic memory add, *(uint *)(dst_reg + off16) += src_reg */
241 
242 #define BPF_STX_XADD(SIZE, DST, SRC, OFF)			\
243 	((struct bpf_insn) {					\
244 		.code  = BPF_STX | BPF_SIZE(SIZE) | BPF_XADD,	\
245 		.dst_reg = DST,					\
246 		.src_reg = SRC,					\
247 		.off   = OFF,					\
248 		.imm   = 0 })
249 
250 /* Memory store, *(uint *) (dst_reg + off16) = imm32 */
251 
252 #define BPF_ST_MEM(SIZE, DST, OFF, IMM)				\
253 	((struct bpf_insn) {					\
254 		.code  = BPF_ST | BPF_SIZE(SIZE) | BPF_MEM,	\
255 		.dst_reg = DST,					\
256 		.src_reg = 0,					\
257 		.off   = OFF,					\
258 		.imm   = IMM })
259 
260 /* Conditional jumps against registers, if (dst_reg 'op' src_reg) goto pc + off16 */
261 
262 #define BPF_JMP_REG(OP, DST, SRC, OFF)				\
263 	((struct bpf_insn) {					\
264 		.code  = BPF_JMP | BPF_OP(OP) | BPF_X,		\
265 		.dst_reg = DST,					\
266 		.src_reg = SRC,					\
267 		.off   = OFF,					\
268 		.imm   = 0 })
269 
270 /* Conditional jumps against immediates, if (dst_reg 'op' imm32) goto pc + off16 */
271 
272 #define BPF_JMP_IMM(OP, DST, IMM, OFF)				\
273 	((struct bpf_insn) {					\
274 		.code  = BPF_JMP | BPF_OP(OP) | BPF_K,		\
275 		.dst_reg = DST,					\
276 		.src_reg = 0,					\
277 		.off   = OFF,					\
278 		.imm   = IMM })
279 
280 /* Like BPF_JMP_REG, but with 32-bit wide operands for comparison. */
281 
282 #define BPF_JMP32_REG(OP, DST, SRC, OFF)			\
283 	((struct bpf_insn) {					\
284 		.code  = BPF_JMP32 | BPF_OP(OP) | BPF_X,	\
285 		.dst_reg = DST,					\
286 		.src_reg = SRC,					\
287 		.off   = OFF,					\
288 		.imm   = 0 })
289 
290 /* Like BPF_JMP_IMM, but with 32-bit wide operands for comparison. */
291 
292 #define BPF_JMP32_IMM(OP, DST, IMM, OFF)			\
293 	((struct bpf_insn) {					\
294 		.code  = BPF_JMP32 | BPF_OP(OP) | BPF_K,	\
295 		.dst_reg = DST,					\
296 		.src_reg = 0,					\
297 		.off   = OFF,					\
298 		.imm   = IMM })
299 
300 /* Unconditional jumps, goto pc + off16 */
301 
302 #define BPF_JMP_A(OFF)						\
303 	((struct bpf_insn) {					\
304 		.code  = BPF_JMP | BPF_JA,			\
305 		.dst_reg = 0,					\
306 		.src_reg = 0,					\
307 		.off   = OFF,					\
308 		.imm   = 0 })
309 
310 /* Relative call */
311 
312 #define BPF_CALL_REL(TGT)					\
313 	((struct bpf_insn) {					\
314 		.code  = BPF_JMP | BPF_CALL,			\
315 		.dst_reg = 0,					\
316 		.src_reg = BPF_PSEUDO_CALL,			\
317 		.off   = 0,					\
318 		.imm   = TGT })
319 
320 /* Function call */
321 
322 #define BPF_CAST_CALL(x)					\
323 		((u64 (*)(u64, u64, u64, u64, u64))(x))
324 
325 #define BPF_EMIT_CALL(FUNC)					\
326 	((struct bpf_insn) {					\
327 		.code  = BPF_JMP | BPF_CALL,			\
328 		.dst_reg = 0,					\
329 		.src_reg = 0,					\
330 		.off   = 0,					\
331 		.imm   = ((FUNC) - __bpf_call_base) })
332 
333 /* Raw code statement block */
334 
335 #define BPF_RAW_INSN(CODE, DST, SRC, OFF, IMM)			\
336 	((struct bpf_insn) {					\
337 		.code  = CODE,					\
338 		.dst_reg = DST,					\
339 		.src_reg = SRC,					\
340 		.off   = OFF,					\
341 		.imm   = IMM })
342 
343 /* Program exit */
344 
345 #define BPF_EXIT_INSN()						\
346 	((struct bpf_insn) {					\
347 		.code  = BPF_JMP | BPF_EXIT,			\
348 		.dst_reg = 0,					\
349 		.src_reg = 0,					\
350 		.off   = 0,					\
351 		.imm   = 0 })
352 
353 /* Internal classic blocks for direct assignment */
354 
355 #define __BPF_STMT(CODE, K)					\
356 	((struct sock_filter) BPF_STMT(CODE, K))
357 
358 #define __BPF_JUMP(CODE, K, JT, JF)				\
359 	((struct sock_filter) BPF_JUMP(CODE, K, JT, JF))
360 
361 #define bytes_to_bpf_size(bytes)				\
362 ({								\
363 	int bpf_size = -EINVAL;					\
364 								\
365 	if (bytes == sizeof(u8))				\
366 		bpf_size = BPF_B;				\
367 	else if (bytes == sizeof(u16))				\
368 		bpf_size = BPF_H;				\
369 	else if (bytes == sizeof(u32))				\
370 		bpf_size = BPF_W;				\
371 	else if (bytes == sizeof(u64))				\
372 		bpf_size = BPF_DW;				\
373 								\
374 	bpf_size;						\
375 })
376 
377 #define bpf_size_to_bytes(bpf_size)				\
378 ({								\
379 	int bytes = -EINVAL;					\
380 								\
381 	if (bpf_size == BPF_B)					\
382 		bytes = sizeof(u8);				\
383 	else if (bpf_size == BPF_H)				\
384 		bytes = sizeof(u16);				\
385 	else if (bpf_size == BPF_W)				\
386 		bytes = sizeof(u32);				\
387 	else if (bpf_size == BPF_DW)				\
388 		bytes = sizeof(u64);				\
389 								\
390 	bytes;							\
391 })
392 
393 #define BPF_SIZEOF(type)					\
394 	({							\
395 		const int __size = bytes_to_bpf_size(sizeof(type)); \
396 		BUILD_BUG_ON(__size < 0);			\
397 		__size;						\
398 	})
399 
400 #define BPF_FIELD_SIZEOF(type, field)				\
401 	({							\
402 		const int __size = bytes_to_bpf_size(FIELD_SIZEOF(type, field)); \
403 		BUILD_BUG_ON(__size < 0);			\
404 		__size;						\
405 	})
406 
407 #define BPF_LDST_BYTES(insn)					\
408 	({							\
409 		const int __size = bpf_size_to_bytes(BPF_SIZE((insn)->code)); \
410 		WARN_ON(__size < 0);				\
411 		__size;						\
412 	})
413 
414 #define __BPF_MAP_0(m, v, ...) v
415 #define __BPF_MAP_1(m, v, t, a, ...) m(t, a)
416 #define __BPF_MAP_2(m, v, t, a, ...) m(t, a), __BPF_MAP_1(m, v, __VA_ARGS__)
417 #define __BPF_MAP_3(m, v, t, a, ...) m(t, a), __BPF_MAP_2(m, v, __VA_ARGS__)
418 #define __BPF_MAP_4(m, v, t, a, ...) m(t, a), __BPF_MAP_3(m, v, __VA_ARGS__)
419 #define __BPF_MAP_5(m, v, t, a, ...) m(t, a), __BPF_MAP_4(m, v, __VA_ARGS__)
420 
421 #define __BPF_REG_0(...) __BPF_PAD(5)
422 #define __BPF_REG_1(...) __BPF_MAP(1, __VA_ARGS__), __BPF_PAD(4)
423 #define __BPF_REG_2(...) __BPF_MAP(2, __VA_ARGS__), __BPF_PAD(3)
424 #define __BPF_REG_3(...) __BPF_MAP(3, __VA_ARGS__), __BPF_PAD(2)
425 #define __BPF_REG_4(...) __BPF_MAP(4, __VA_ARGS__), __BPF_PAD(1)
426 #define __BPF_REG_5(...) __BPF_MAP(5, __VA_ARGS__)
427 
428 #define __BPF_MAP(n, ...) __BPF_MAP_##n(__VA_ARGS__)
429 #define __BPF_REG(n, ...) __BPF_REG_##n(__VA_ARGS__)
430 
431 #define __BPF_CAST(t, a)						       \
432 	(__force t)							       \
433 	(__force							       \
434 	 typeof(__builtin_choose_expr(sizeof(t) == sizeof(unsigned long),      \
435 				      (unsigned long)0, (t)0))) a
436 #define __BPF_V void
437 #define __BPF_N
438 
439 #define __BPF_DECL_ARGS(t, a) t   a
440 #define __BPF_DECL_REGS(t, a) u64 a
441 
442 #define __BPF_PAD(n)							       \
443 	__BPF_MAP(n, __BPF_DECL_ARGS, __BPF_N, u64, __ur_1, u64, __ur_2,       \
444 		  u64, __ur_3, u64, __ur_4, u64, __ur_5)
445 
446 #define BPF_CALL_x(x, name, ...)					       \
447 	static __always_inline						       \
448 	u64 ____##name(__BPF_MAP(x, __BPF_DECL_ARGS, __BPF_V, __VA_ARGS__));   \
449 	u64 name(__BPF_REG(x, __BPF_DECL_REGS, __BPF_N, __VA_ARGS__));	       \
450 	u64 name(__BPF_REG(x, __BPF_DECL_REGS, __BPF_N, __VA_ARGS__))	       \
451 	{								       \
452 		return ____##name(__BPF_MAP(x,__BPF_CAST,__BPF_N,__VA_ARGS__));\
453 	}								       \
454 	static __always_inline						       \
455 	u64 ____##name(__BPF_MAP(x, __BPF_DECL_ARGS, __BPF_V, __VA_ARGS__))
456 
457 #define BPF_CALL_0(name, ...)	BPF_CALL_x(0, name, __VA_ARGS__)
458 #define BPF_CALL_1(name, ...)	BPF_CALL_x(1, name, __VA_ARGS__)
459 #define BPF_CALL_2(name, ...)	BPF_CALL_x(2, name, __VA_ARGS__)
460 #define BPF_CALL_3(name, ...)	BPF_CALL_x(3, name, __VA_ARGS__)
461 #define BPF_CALL_4(name, ...)	BPF_CALL_x(4, name, __VA_ARGS__)
462 #define BPF_CALL_5(name, ...)	BPF_CALL_x(5, name, __VA_ARGS__)
463 
464 #define bpf_ctx_range(TYPE, MEMBER)						\
465 	offsetof(TYPE, MEMBER) ... offsetofend(TYPE, MEMBER) - 1
466 #define bpf_ctx_range_till(TYPE, MEMBER1, MEMBER2)				\
467 	offsetof(TYPE, MEMBER1) ... offsetofend(TYPE, MEMBER2) - 1
468 #if BITS_PER_LONG == 64
469 # define bpf_ctx_range_ptr(TYPE, MEMBER)					\
470 	offsetof(TYPE, MEMBER) ... offsetofend(TYPE, MEMBER) - 1
471 #else
472 # define bpf_ctx_range_ptr(TYPE, MEMBER)					\
473 	offsetof(TYPE, MEMBER) ... offsetof(TYPE, MEMBER) + 8 - 1
474 #endif /* BITS_PER_LONG == 64 */
475 
476 #define bpf_target_off(TYPE, MEMBER, SIZE, PTR_SIZE)				\
477 	({									\
478 		BUILD_BUG_ON(FIELD_SIZEOF(TYPE, MEMBER) != (SIZE));		\
479 		*(PTR_SIZE) = (SIZE);						\
480 		offsetof(TYPE, MEMBER);						\
481 	})
482 
483 #ifdef CONFIG_COMPAT
484 /* A struct sock_filter is architecture independent. */
485 struct compat_sock_fprog {
486 	u16		len;
487 	compat_uptr_t	filter;	/* struct sock_filter * */
488 };
489 #endif
490 
491 struct sock_fprog_kern {
492 	u16			len;
493 	struct sock_filter	*filter;
494 };
495 
496 struct bpf_binary_header {
497 	u32 pages;
498 	/* Some arches need word alignment for their instructions */
499 	u8 image[] __aligned(4);
500 };
501 
502 struct bpf_prog {
503 	u16			pages;		/* Number of allocated pages */
504 	u16			jited:1,	/* Is our filter JIT'ed? */
505 				jit_requested:1,/* archs need to JIT the prog */
506 				undo_set_mem:1,	/* Passed set_memory_ro() checkpoint */
507 				gpl_compatible:1, /* Is filter GPL compatible? */
508 				cb_access:1,	/* Is control block accessed? */
509 				dst_needed:1,	/* Do we need dst entry? */
510 				blinded:1,	/* Was blinded */
511 				is_func:1,	/* program is a bpf function */
512 				kprobe_override:1, /* Do we override a kprobe? */
513 				has_callchain_buf:1; /* callchain buffer allocated? */
514 	enum bpf_prog_type	type;		/* Type of BPF program */
515 	enum bpf_attach_type	expected_attach_type; /* For some prog types */
516 	u32			len;		/* Number of filter blocks */
517 	u32			jited_len;	/* Size of jited insns in bytes */
518 	u8			tag[BPF_TAG_SIZE];
519 	struct bpf_prog_aux	*aux;		/* Auxiliary fields */
520 	struct sock_fprog_kern	*orig_prog;	/* Original BPF program */
521 	unsigned int		(*bpf_func)(const void *ctx,
522 					    const struct bpf_insn *insn);
523 	/* Instructions for interpreter */
524 	union {
525 		struct sock_filter	insns[0];
526 		struct bpf_insn		insnsi[0];
527 	};
528 };
529 
530 struct sk_filter {
531 	refcount_t	refcnt;
532 	struct rcu_head	rcu;
533 	struct bpf_prog	*prog;
534 };
535 
536 #define BPF_PROG_RUN(filter, ctx)  (*(filter)->bpf_func)(ctx, (filter)->insnsi)
537 
538 #define BPF_SKB_CB_LEN QDISC_CB_PRIV_LEN
539 
540 struct bpf_skb_data_end {
541 	struct qdisc_skb_cb qdisc_cb;
542 	void *data_meta;
543 	void *data_end;
544 };
545 
546 struct bpf_redirect_info {
547 	u32 ifindex;
548 	u32 flags;
549 	struct bpf_map *map;
550 	struct bpf_map *map_to_flush;
551 	u32 kern_flags;
552 };
553 
554 DECLARE_PER_CPU(struct bpf_redirect_info, bpf_redirect_info);
555 
556 /* flags for bpf_redirect_info kern_flags */
557 #define BPF_RI_F_RF_NO_DIRECT	BIT(0)	/* no napi_direct on return_frame */
558 
559 /* Compute the linear packet data range [data, data_end) which
560  * will be accessed by various program types (cls_bpf, act_bpf,
561  * lwt, ...). Subsystems allowing direct data access must (!)
562  * ensure that cb[] area can be written to when BPF program is
563  * invoked (otherwise cb[] save/restore is necessary).
564  */
565 static inline void bpf_compute_data_pointers(struct sk_buff *skb)
566 {
567 	struct bpf_skb_data_end *cb = (struct bpf_skb_data_end *)skb->cb;
568 
569 	BUILD_BUG_ON(sizeof(*cb) > FIELD_SIZEOF(struct sk_buff, cb));
570 	cb->data_meta = skb->data - skb_metadata_len(skb);
571 	cb->data_end  = skb->data + skb_headlen(skb);
572 }
573 
574 /* Similar to bpf_compute_data_pointers(), except that save orginal
575  * data in cb->data and cb->meta_data for restore.
576  */
577 static inline void bpf_compute_and_save_data_end(
578 	struct sk_buff *skb, void **saved_data_end)
579 {
580 	struct bpf_skb_data_end *cb = (struct bpf_skb_data_end *)skb->cb;
581 
582 	*saved_data_end = cb->data_end;
583 	cb->data_end  = skb->data + skb_headlen(skb);
584 }
585 
586 /* Restore data saved by bpf_compute_data_pointers(). */
587 static inline void bpf_restore_data_end(
588 	struct sk_buff *skb, void *saved_data_end)
589 {
590 	struct bpf_skb_data_end *cb = (struct bpf_skb_data_end *)skb->cb;
591 
592 	cb->data_end = saved_data_end;
593 }
594 
595 static inline u8 *bpf_skb_cb(struct sk_buff *skb)
596 {
597 	/* eBPF programs may read/write skb->cb[] area to transfer meta
598 	 * data between tail calls. Since this also needs to work with
599 	 * tc, that scratch memory is mapped to qdisc_skb_cb's data area.
600 	 *
601 	 * In some socket filter cases, the cb unfortunately needs to be
602 	 * saved/restored so that protocol specific skb->cb[] data won't
603 	 * be lost. In any case, due to unpriviledged eBPF programs
604 	 * attached to sockets, we need to clear the bpf_skb_cb() area
605 	 * to not leak previous contents to user space.
606 	 */
607 	BUILD_BUG_ON(FIELD_SIZEOF(struct __sk_buff, cb) != BPF_SKB_CB_LEN);
608 	BUILD_BUG_ON(FIELD_SIZEOF(struct __sk_buff, cb) !=
609 		     FIELD_SIZEOF(struct qdisc_skb_cb, data));
610 
611 	return qdisc_skb_cb(skb)->data;
612 }
613 
614 static inline u32 __bpf_prog_run_save_cb(const struct bpf_prog *prog,
615 					 struct sk_buff *skb)
616 {
617 	u8 *cb_data = bpf_skb_cb(skb);
618 	u8 cb_saved[BPF_SKB_CB_LEN];
619 	u32 res;
620 
621 	if (unlikely(prog->cb_access)) {
622 		memcpy(cb_saved, cb_data, sizeof(cb_saved));
623 		memset(cb_data, 0, sizeof(cb_saved));
624 	}
625 
626 	res = BPF_PROG_RUN(prog, skb);
627 
628 	if (unlikely(prog->cb_access))
629 		memcpy(cb_data, cb_saved, sizeof(cb_saved));
630 
631 	return res;
632 }
633 
634 static inline u32 bpf_prog_run_save_cb(const struct bpf_prog *prog,
635 				       struct sk_buff *skb)
636 {
637 	u32 res;
638 
639 	preempt_disable();
640 	res = __bpf_prog_run_save_cb(prog, skb);
641 	preempt_enable();
642 	return res;
643 }
644 
645 static inline u32 bpf_prog_run_clear_cb(const struct bpf_prog *prog,
646 					struct sk_buff *skb)
647 {
648 	u8 *cb_data = bpf_skb_cb(skb);
649 	u32 res;
650 
651 	if (unlikely(prog->cb_access))
652 		memset(cb_data, 0, BPF_SKB_CB_LEN);
653 
654 	preempt_disable();
655 	res = BPF_PROG_RUN(prog, skb);
656 	preempt_enable();
657 	return res;
658 }
659 
660 static __always_inline u32 bpf_prog_run_xdp(const struct bpf_prog *prog,
661 					    struct xdp_buff *xdp)
662 {
663 	/* Caller needs to hold rcu_read_lock() (!), otherwise program
664 	 * can be released while still running, or map elements could be
665 	 * freed early while still having concurrent users. XDP fastpath
666 	 * already takes rcu_read_lock() when fetching the program, so
667 	 * it's not necessary here anymore.
668 	 */
669 	return BPF_PROG_RUN(prog, xdp);
670 }
671 
672 static inline u32 bpf_prog_insn_size(const struct bpf_prog *prog)
673 {
674 	return prog->len * sizeof(struct bpf_insn);
675 }
676 
677 static inline u32 bpf_prog_tag_scratch_size(const struct bpf_prog *prog)
678 {
679 	return round_up(bpf_prog_insn_size(prog) +
680 			sizeof(__be64) + 1, SHA_MESSAGE_BYTES);
681 }
682 
683 static inline unsigned int bpf_prog_size(unsigned int proglen)
684 {
685 	return max(sizeof(struct bpf_prog),
686 		   offsetof(struct bpf_prog, insns[proglen]));
687 }
688 
689 static inline bool bpf_prog_was_classic(const struct bpf_prog *prog)
690 {
691 	/* When classic BPF programs have been loaded and the arch
692 	 * does not have a classic BPF JIT (anymore), they have been
693 	 * converted via bpf_migrate_filter() to eBPF and thus always
694 	 * have an unspec program type.
695 	 */
696 	return prog->type == BPF_PROG_TYPE_UNSPEC;
697 }
698 
699 static inline u32 bpf_ctx_off_adjust_machine(u32 size)
700 {
701 	const u32 size_machine = sizeof(unsigned long);
702 
703 	if (size > size_machine && size % size_machine == 0)
704 		size = size_machine;
705 
706 	return size;
707 }
708 
709 static inline bool
710 bpf_ctx_narrow_access_ok(u32 off, u32 size, u32 size_default)
711 {
712 	return size <= size_default && (size & (size - 1)) == 0;
713 }
714 
715 #define bpf_classic_proglen(fprog) (fprog->len * sizeof(fprog->filter[0]))
716 
717 static inline void bpf_prog_lock_ro(struct bpf_prog *fp)
718 {
719 	fp->undo_set_mem = 1;
720 	set_memory_ro((unsigned long)fp, fp->pages);
721 }
722 
723 static inline void bpf_prog_unlock_ro(struct bpf_prog *fp)
724 {
725 	if (fp->undo_set_mem)
726 		set_memory_rw((unsigned long)fp, fp->pages);
727 }
728 
729 static inline void bpf_jit_binary_lock_ro(struct bpf_binary_header *hdr)
730 {
731 	set_memory_ro((unsigned long)hdr, hdr->pages);
732 }
733 
734 static inline void bpf_jit_binary_unlock_ro(struct bpf_binary_header *hdr)
735 {
736 	set_memory_rw((unsigned long)hdr, hdr->pages);
737 }
738 
739 static inline struct bpf_binary_header *
740 bpf_jit_binary_hdr(const struct bpf_prog *fp)
741 {
742 	unsigned long real_start = (unsigned long)fp->bpf_func;
743 	unsigned long addr = real_start & PAGE_MASK;
744 
745 	return (void *)addr;
746 }
747 
748 int sk_filter_trim_cap(struct sock *sk, struct sk_buff *skb, unsigned int cap);
749 static inline int sk_filter(struct sock *sk, struct sk_buff *skb)
750 {
751 	return sk_filter_trim_cap(sk, skb, 1);
752 }
753 
754 struct bpf_prog *bpf_prog_select_runtime(struct bpf_prog *fp, int *err);
755 void bpf_prog_free(struct bpf_prog *fp);
756 
757 bool bpf_opcode_in_insntable(u8 code);
758 
759 void bpf_prog_free_linfo(struct bpf_prog *prog);
760 void bpf_prog_fill_jited_linfo(struct bpf_prog *prog,
761 			       const u32 *insn_to_jit_off);
762 int bpf_prog_alloc_jited_linfo(struct bpf_prog *prog);
763 void bpf_prog_free_jited_linfo(struct bpf_prog *prog);
764 void bpf_prog_free_unused_jited_linfo(struct bpf_prog *prog);
765 
766 struct bpf_prog *bpf_prog_alloc(unsigned int size, gfp_t gfp_extra_flags);
767 struct bpf_prog *bpf_prog_realloc(struct bpf_prog *fp_old, unsigned int size,
768 				  gfp_t gfp_extra_flags);
769 void __bpf_prog_free(struct bpf_prog *fp);
770 
771 static inline void bpf_prog_unlock_free(struct bpf_prog *fp)
772 {
773 	bpf_prog_unlock_ro(fp);
774 	__bpf_prog_free(fp);
775 }
776 
777 typedef int (*bpf_aux_classic_check_t)(struct sock_filter *filter,
778 				       unsigned int flen);
779 
780 int bpf_prog_create(struct bpf_prog **pfp, struct sock_fprog_kern *fprog);
781 int bpf_prog_create_from_user(struct bpf_prog **pfp, struct sock_fprog *fprog,
782 			      bpf_aux_classic_check_t trans, bool save_orig);
783 void bpf_prog_destroy(struct bpf_prog *fp);
784 
785 int sk_attach_filter(struct sock_fprog *fprog, struct sock *sk);
786 int sk_attach_bpf(u32 ufd, struct sock *sk);
787 int sk_reuseport_attach_filter(struct sock_fprog *fprog, struct sock *sk);
788 int sk_reuseport_attach_bpf(u32 ufd, struct sock *sk);
789 void sk_reuseport_prog_free(struct bpf_prog *prog);
790 int sk_detach_filter(struct sock *sk);
791 int sk_get_filter(struct sock *sk, struct sock_filter __user *filter,
792 		  unsigned int len);
793 
794 bool sk_filter_charge(struct sock *sk, struct sk_filter *fp);
795 void sk_filter_uncharge(struct sock *sk, struct sk_filter *fp);
796 
797 u64 __bpf_call_base(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5);
798 #define __bpf_call_base_args \
799 	((u64 (*)(u64, u64, u64, u64, u64, const struct bpf_insn *)) \
800 	 __bpf_call_base)
801 
802 struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *prog);
803 void bpf_jit_compile(struct bpf_prog *prog);
804 bool bpf_helper_changes_pkt_data(void *func);
805 
806 static inline bool bpf_dump_raw_ok(void)
807 {
808 	/* Reconstruction of call-sites is dependent on kallsyms,
809 	 * thus make dump the same restriction.
810 	 */
811 	return kallsyms_show_value() == 1;
812 }
813 
814 struct bpf_prog *bpf_patch_insn_single(struct bpf_prog *prog, u32 off,
815 				       const struct bpf_insn *patch, u32 len);
816 int bpf_remove_insns(struct bpf_prog *prog, u32 off, u32 cnt);
817 
818 void bpf_clear_redirect_map(struct bpf_map *map);
819 
820 static inline bool xdp_return_frame_no_direct(void)
821 {
822 	struct bpf_redirect_info *ri = this_cpu_ptr(&bpf_redirect_info);
823 
824 	return ri->kern_flags & BPF_RI_F_RF_NO_DIRECT;
825 }
826 
827 static inline void xdp_set_return_frame_no_direct(void)
828 {
829 	struct bpf_redirect_info *ri = this_cpu_ptr(&bpf_redirect_info);
830 
831 	ri->kern_flags |= BPF_RI_F_RF_NO_DIRECT;
832 }
833 
834 static inline void xdp_clear_return_frame_no_direct(void)
835 {
836 	struct bpf_redirect_info *ri = this_cpu_ptr(&bpf_redirect_info);
837 
838 	ri->kern_flags &= ~BPF_RI_F_RF_NO_DIRECT;
839 }
840 
841 static inline int xdp_ok_fwd_dev(const struct net_device *fwd,
842 				 unsigned int pktlen)
843 {
844 	unsigned int len;
845 
846 	if (unlikely(!(fwd->flags & IFF_UP)))
847 		return -ENETDOWN;
848 
849 	len = fwd->mtu + fwd->hard_header_len + VLAN_HLEN;
850 	if (pktlen > len)
851 		return -EMSGSIZE;
852 
853 	return 0;
854 }
855 
856 /* The pair of xdp_do_redirect and xdp_do_flush_map MUST be called in the
857  * same cpu context. Further for best results no more than a single map
858  * for the do_redirect/do_flush pair should be used. This limitation is
859  * because we only track one map and force a flush when the map changes.
860  * This does not appear to be a real limitation for existing software.
861  */
862 int xdp_do_generic_redirect(struct net_device *dev, struct sk_buff *skb,
863 			    struct xdp_buff *xdp, struct bpf_prog *prog);
864 int xdp_do_redirect(struct net_device *dev,
865 		    struct xdp_buff *xdp,
866 		    struct bpf_prog *prog);
867 void xdp_do_flush_map(void);
868 
869 void bpf_warn_invalid_xdp_action(u32 act);
870 
871 #ifdef CONFIG_INET
872 struct sock *bpf_run_sk_reuseport(struct sock_reuseport *reuse, struct sock *sk,
873 				  struct bpf_prog *prog, struct sk_buff *skb,
874 				  u32 hash);
875 #else
876 static inline struct sock *
877 bpf_run_sk_reuseport(struct sock_reuseport *reuse, struct sock *sk,
878 		     struct bpf_prog *prog, struct sk_buff *skb,
879 		     u32 hash)
880 {
881 	return NULL;
882 }
883 #endif
884 
885 #ifdef CONFIG_BPF_JIT
886 extern int bpf_jit_enable;
887 extern int bpf_jit_harden;
888 extern int bpf_jit_kallsyms;
889 extern long bpf_jit_limit;
890 
891 typedef void (*bpf_jit_fill_hole_t)(void *area, unsigned int size);
892 
893 struct bpf_binary_header *
894 bpf_jit_binary_alloc(unsigned int proglen, u8 **image_ptr,
895 		     unsigned int alignment,
896 		     bpf_jit_fill_hole_t bpf_fill_ill_insns);
897 void bpf_jit_binary_free(struct bpf_binary_header *hdr);
898 u64 bpf_jit_alloc_exec_limit(void);
899 void *bpf_jit_alloc_exec(unsigned long size);
900 void bpf_jit_free_exec(void *addr);
901 void bpf_jit_free(struct bpf_prog *fp);
902 
903 int bpf_jit_get_func_addr(const struct bpf_prog *prog,
904 			  const struct bpf_insn *insn, bool extra_pass,
905 			  u64 *func_addr, bool *func_addr_fixed);
906 
907 struct bpf_prog *bpf_jit_blind_constants(struct bpf_prog *fp);
908 void bpf_jit_prog_release_other(struct bpf_prog *fp, struct bpf_prog *fp_other);
909 
910 static inline void bpf_jit_dump(unsigned int flen, unsigned int proglen,
911 				u32 pass, void *image)
912 {
913 	pr_err("flen=%u proglen=%u pass=%u image=%pK from=%s pid=%d\n", flen,
914 	       proglen, pass, image, current->comm, task_pid_nr(current));
915 
916 	if (image)
917 		print_hex_dump(KERN_ERR, "JIT code: ", DUMP_PREFIX_OFFSET,
918 			       16, 1, image, proglen, false);
919 }
920 
921 static inline bool bpf_jit_is_ebpf(void)
922 {
923 # ifdef CONFIG_HAVE_EBPF_JIT
924 	return true;
925 # else
926 	return false;
927 # endif
928 }
929 
930 static inline bool ebpf_jit_enabled(void)
931 {
932 	return bpf_jit_enable && bpf_jit_is_ebpf();
933 }
934 
935 static inline bool bpf_prog_ebpf_jited(const struct bpf_prog *fp)
936 {
937 	return fp->jited && bpf_jit_is_ebpf();
938 }
939 
940 static inline bool bpf_jit_blinding_enabled(struct bpf_prog *prog)
941 {
942 	/* These are the prerequisites, should someone ever have the
943 	 * idea to call blinding outside of them, we make sure to
944 	 * bail out.
945 	 */
946 	if (!bpf_jit_is_ebpf())
947 		return false;
948 	if (!prog->jit_requested)
949 		return false;
950 	if (!bpf_jit_harden)
951 		return false;
952 	if (bpf_jit_harden == 1 && capable(CAP_SYS_ADMIN))
953 		return false;
954 
955 	return true;
956 }
957 
958 static inline bool bpf_jit_kallsyms_enabled(void)
959 {
960 	/* There are a couple of corner cases where kallsyms should
961 	 * not be enabled f.e. on hardening.
962 	 */
963 	if (bpf_jit_harden)
964 		return false;
965 	if (!bpf_jit_kallsyms)
966 		return false;
967 	if (bpf_jit_kallsyms == 1)
968 		return true;
969 
970 	return false;
971 }
972 
973 const char *__bpf_address_lookup(unsigned long addr, unsigned long *size,
974 				 unsigned long *off, char *sym);
975 bool is_bpf_text_address(unsigned long addr);
976 int bpf_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
977 		    char *sym);
978 
979 static inline const char *
980 bpf_address_lookup(unsigned long addr, unsigned long *size,
981 		   unsigned long *off, char **modname, char *sym)
982 {
983 	const char *ret = __bpf_address_lookup(addr, size, off, sym);
984 
985 	if (ret && modname)
986 		*modname = NULL;
987 	return ret;
988 }
989 
990 void bpf_prog_kallsyms_add(struct bpf_prog *fp);
991 void bpf_prog_kallsyms_del(struct bpf_prog *fp);
992 
993 #else /* CONFIG_BPF_JIT */
994 
995 static inline bool ebpf_jit_enabled(void)
996 {
997 	return false;
998 }
999 
1000 static inline bool bpf_prog_ebpf_jited(const struct bpf_prog *fp)
1001 {
1002 	return false;
1003 }
1004 
1005 static inline void bpf_jit_free(struct bpf_prog *fp)
1006 {
1007 	bpf_prog_unlock_free(fp);
1008 }
1009 
1010 static inline bool bpf_jit_kallsyms_enabled(void)
1011 {
1012 	return false;
1013 }
1014 
1015 static inline const char *
1016 __bpf_address_lookup(unsigned long addr, unsigned long *size,
1017 		     unsigned long *off, char *sym)
1018 {
1019 	return NULL;
1020 }
1021 
1022 static inline bool is_bpf_text_address(unsigned long addr)
1023 {
1024 	return false;
1025 }
1026 
1027 static inline int bpf_get_kallsym(unsigned int symnum, unsigned long *value,
1028 				  char *type, char *sym)
1029 {
1030 	return -ERANGE;
1031 }
1032 
1033 static inline const char *
1034 bpf_address_lookup(unsigned long addr, unsigned long *size,
1035 		   unsigned long *off, char **modname, char *sym)
1036 {
1037 	return NULL;
1038 }
1039 
1040 static inline void bpf_prog_kallsyms_add(struct bpf_prog *fp)
1041 {
1042 }
1043 
1044 static inline void bpf_prog_kallsyms_del(struct bpf_prog *fp)
1045 {
1046 }
1047 #endif /* CONFIG_BPF_JIT */
1048 
1049 void bpf_prog_kallsyms_del_subprogs(struct bpf_prog *fp);
1050 void bpf_prog_kallsyms_del_all(struct bpf_prog *fp);
1051 
1052 #define BPF_ANC		BIT(15)
1053 
1054 static inline bool bpf_needs_clear_a(const struct sock_filter *first)
1055 {
1056 	switch (first->code) {
1057 	case BPF_RET | BPF_K:
1058 	case BPF_LD | BPF_W | BPF_LEN:
1059 		return false;
1060 
1061 	case BPF_LD | BPF_W | BPF_ABS:
1062 	case BPF_LD | BPF_H | BPF_ABS:
1063 	case BPF_LD | BPF_B | BPF_ABS:
1064 		if (first->k == SKF_AD_OFF + SKF_AD_ALU_XOR_X)
1065 			return true;
1066 		return false;
1067 
1068 	default:
1069 		return true;
1070 	}
1071 }
1072 
1073 static inline u16 bpf_anc_helper(const struct sock_filter *ftest)
1074 {
1075 	BUG_ON(ftest->code & BPF_ANC);
1076 
1077 	switch (ftest->code) {
1078 	case BPF_LD | BPF_W | BPF_ABS:
1079 	case BPF_LD | BPF_H | BPF_ABS:
1080 	case BPF_LD | BPF_B | BPF_ABS:
1081 #define BPF_ANCILLARY(CODE)	case SKF_AD_OFF + SKF_AD_##CODE:	\
1082 				return BPF_ANC | SKF_AD_##CODE
1083 		switch (ftest->k) {
1084 		BPF_ANCILLARY(PROTOCOL);
1085 		BPF_ANCILLARY(PKTTYPE);
1086 		BPF_ANCILLARY(IFINDEX);
1087 		BPF_ANCILLARY(NLATTR);
1088 		BPF_ANCILLARY(NLATTR_NEST);
1089 		BPF_ANCILLARY(MARK);
1090 		BPF_ANCILLARY(QUEUE);
1091 		BPF_ANCILLARY(HATYPE);
1092 		BPF_ANCILLARY(RXHASH);
1093 		BPF_ANCILLARY(CPU);
1094 		BPF_ANCILLARY(ALU_XOR_X);
1095 		BPF_ANCILLARY(VLAN_TAG);
1096 		BPF_ANCILLARY(VLAN_TAG_PRESENT);
1097 		BPF_ANCILLARY(PAY_OFFSET);
1098 		BPF_ANCILLARY(RANDOM);
1099 		BPF_ANCILLARY(VLAN_TPID);
1100 		}
1101 		/* Fallthrough. */
1102 	default:
1103 		return ftest->code;
1104 	}
1105 }
1106 
1107 void *bpf_internal_load_pointer_neg_helper(const struct sk_buff *skb,
1108 					   int k, unsigned int size);
1109 
1110 static inline void *bpf_load_pointer(const struct sk_buff *skb, int k,
1111 				     unsigned int size, void *buffer)
1112 {
1113 	if (k >= 0)
1114 		return skb_header_pointer(skb, k, size, buffer);
1115 
1116 	return bpf_internal_load_pointer_neg_helper(skb, k, size);
1117 }
1118 
1119 static inline int bpf_tell_extensions(void)
1120 {
1121 	return SKF_AD_MAX;
1122 }
1123 
1124 struct bpf_sock_addr_kern {
1125 	struct sock *sk;
1126 	struct sockaddr *uaddr;
1127 	/* Temporary "register" to make indirect stores to nested structures
1128 	 * defined above. We need three registers to make such a store, but
1129 	 * only two (src and dst) are available at convert_ctx_access time
1130 	 */
1131 	u64 tmp_reg;
1132 	void *t_ctx;	/* Attach type specific context. */
1133 };
1134 
1135 struct bpf_sock_ops_kern {
1136 	struct	sock *sk;
1137 	u32	op;
1138 	union {
1139 		u32 args[4];
1140 		u32 reply;
1141 		u32 replylong[4];
1142 	};
1143 	u32	is_fullsock;
1144 	u64	temp;			/* temp and everything after is not
1145 					 * initialized to 0 before calling
1146 					 * the BPF program. New fields that
1147 					 * should be initialized to 0 should
1148 					 * be inserted before temp.
1149 					 * temp is scratch storage used by
1150 					 * sock_ops_convert_ctx_access
1151 					 * as temporary storage of a register.
1152 					 */
1153 };
1154 
1155 #endif /* __LINUX_FILTER_H__ */
1156