1 /* 2 * Linux Socket Filter Data Structures 3 */ 4 #ifndef __LINUX_FILTER_H__ 5 #define __LINUX_FILTER_H__ 6 7 #include <stdarg.h> 8 9 #include <linux/atomic.h> 10 #include <linux/compat.h> 11 #include <linux/skbuff.h> 12 #include <linux/linkage.h> 13 #include <linux/printk.h> 14 #include <linux/workqueue.h> 15 #include <linux/sched.h> 16 17 #include <asm/cacheflush.h> 18 19 #include <uapi/linux/filter.h> 20 #include <uapi/linux/bpf.h> 21 22 struct sk_buff; 23 struct sock; 24 struct seccomp_data; 25 struct bpf_prog_aux; 26 27 /* ArgX, context and stack frame pointer register positions. Note, 28 * Arg1, Arg2, Arg3, etc are used as argument mappings of function 29 * calls in BPF_CALL instruction. 30 */ 31 #define BPF_REG_ARG1 BPF_REG_1 32 #define BPF_REG_ARG2 BPF_REG_2 33 #define BPF_REG_ARG3 BPF_REG_3 34 #define BPF_REG_ARG4 BPF_REG_4 35 #define BPF_REG_ARG5 BPF_REG_5 36 #define BPF_REG_CTX BPF_REG_6 37 #define BPF_REG_FP BPF_REG_10 38 39 /* Additional register mappings for converted user programs. */ 40 #define BPF_REG_A BPF_REG_0 41 #define BPF_REG_X BPF_REG_7 42 #define BPF_REG_TMP BPF_REG_8 43 44 /* BPF program can access up to 512 bytes of stack space. */ 45 #define MAX_BPF_STACK 512 46 47 /* Helper macros for filter block array initializers. */ 48 49 /* ALU ops on registers, bpf_add|sub|...: dst_reg += src_reg */ 50 51 #define BPF_ALU64_REG(OP, DST, SRC) \ 52 ((struct bpf_insn) { \ 53 .code = BPF_ALU64 | BPF_OP(OP) | BPF_X, \ 54 .dst_reg = DST, \ 55 .src_reg = SRC, \ 56 .off = 0, \ 57 .imm = 0 }) 58 59 #define BPF_ALU32_REG(OP, DST, SRC) \ 60 ((struct bpf_insn) { \ 61 .code = BPF_ALU | BPF_OP(OP) | BPF_X, \ 62 .dst_reg = DST, \ 63 .src_reg = SRC, \ 64 .off = 0, \ 65 .imm = 0 }) 66 67 /* ALU ops on immediates, bpf_add|sub|...: dst_reg += imm32 */ 68 69 #define BPF_ALU64_IMM(OP, DST, IMM) \ 70 ((struct bpf_insn) { \ 71 .code = BPF_ALU64 | BPF_OP(OP) | BPF_K, \ 72 .dst_reg = DST, \ 73 .src_reg = 0, \ 74 .off = 0, \ 75 .imm = IMM }) 76 77 #define BPF_ALU32_IMM(OP, DST, IMM) \ 78 ((struct bpf_insn) { \ 79 .code = BPF_ALU | BPF_OP(OP) | BPF_K, \ 80 .dst_reg = DST, \ 81 .src_reg = 0, \ 82 .off = 0, \ 83 .imm = IMM }) 84 85 /* Endianess conversion, cpu_to_{l,b}e(), {l,b}e_to_cpu() */ 86 87 #define BPF_ENDIAN(TYPE, DST, LEN) \ 88 ((struct bpf_insn) { \ 89 .code = BPF_ALU | BPF_END | BPF_SRC(TYPE), \ 90 .dst_reg = DST, \ 91 .src_reg = 0, \ 92 .off = 0, \ 93 .imm = LEN }) 94 95 /* Short form of mov, dst_reg = src_reg */ 96 97 #define BPF_MOV64_REG(DST, SRC) \ 98 ((struct bpf_insn) { \ 99 .code = BPF_ALU64 | BPF_MOV | BPF_X, \ 100 .dst_reg = DST, \ 101 .src_reg = SRC, \ 102 .off = 0, \ 103 .imm = 0 }) 104 105 #define BPF_MOV32_REG(DST, SRC) \ 106 ((struct bpf_insn) { \ 107 .code = BPF_ALU | BPF_MOV | BPF_X, \ 108 .dst_reg = DST, \ 109 .src_reg = SRC, \ 110 .off = 0, \ 111 .imm = 0 }) 112 113 /* Short form of mov, dst_reg = imm32 */ 114 115 #define BPF_MOV64_IMM(DST, IMM) \ 116 ((struct bpf_insn) { \ 117 .code = BPF_ALU64 | BPF_MOV | BPF_K, \ 118 .dst_reg = DST, \ 119 .src_reg = 0, \ 120 .off = 0, \ 121 .imm = IMM }) 122 123 #define BPF_MOV32_IMM(DST, IMM) \ 124 ((struct bpf_insn) { \ 125 .code = BPF_ALU | BPF_MOV | BPF_K, \ 126 .dst_reg = DST, \ 127 .src_reg = 0, \ 128 .off = 0, \ 129 .imm = IMM }) 130 131 /* BPF_LD_IMM64 macro encodes single 'load 64-bit immediate' insn */ 132 #define BPF_LD_IMM64(DST, IMM) \ 133 BPF_LD_IMM64_RAW(DST, 0, IMM) 134 135 #define BPF_LD_IMM64_RAW(DST, SRC, IMM) \ 136 ((struct bpf_insn) { \ 137 .code = BPF_LD | BPF_DW | BPF_IMM, \ 138 .dst_reg = DST, \ 139 .src_reg = SRC, \ 140 .off = 0, \ 141 .imm = (__u32) (IMM) }), \ 142 ((struct bpf_insn) { \ 143 .code = 0, /* zero is reserved opcode */ \ 144 .dst_reg = 0, \ 145 .src_reg = 0, \ 146 .off = 0, \ 147 .imm = ((__u64) (IMM)) >> 32 }) 148 149 /* pseudo BPF_LD_IMM64 insn used to refer to process-local map_fd */ 150 #define BPF_LD_MAP_FD(DST, MAP_FD) \ 151 BPF_LD_IMM64_RAW(DST, BPF_PSEUDO_MAP_FD, MAP_FD) 152 153 /* Short form of mov based on type, BPF_X: dst_reg = src_reg, BPF_K: dst_reg = imm32 */ 154 155 #define BPF_MOV64_RAW(TYPE, DST, SRC, IMM) \ 156 ((struct bpf_insn) { \ 157 .code = BPF_ALU64 | BPF_MOV | BPF_SRC(TYPE), \ 158 .dst_reg = DST, \ 159 .src_reg = SRC, \ 160 .off = 0, \ 161 .imm = IMM }) 162 163 #define BPF_MOV32_RAW(TYPE, DST, SRC, IMM) \ 164 ((struct bpf_insn) { \ 165 .code = BPF_ALU | BPF_MOV | BPF_SRC(TYPE), \ 166 .dst_reg = DST, \ 167 .src_reg = SRC, \ 168 .off = 0, \ 169 .imm = IMM }) 170 171 /* Direct packet access, R0 = *(uint *) (skb->data + imm32) */ 172 173 #define BPF_LD_ABS(SIZE, IMM) \ 174 ((struct bpf_insn) { \ 175 .code = BPF_LD | BPF_SIZE(SIZE) | BPF_ABS, \ 176 .dst_reg = 0, \ 177 .src_reg = 0, \ 178 .off = 0, \ 179 .imm = IMM }) 180 181 /* Indirect packet access, R0 = *(uint *) (skb->data + src_reg + imm32) */ 182 183 #define BPF_LD_IND(SIZE, SRC, IMM) \ 184 ((struct bpf_insn) { \ 185 .code = BPF_LD | BPF_SIZE(SIZE) | BPF_IND, \ 186 .dst_reg = 0, \ 187 .src_reg = SRC, \ 188 .off = 0, \ 189 .imm = IMM }) 190 191 /* Memory load, dst_reg = *(uint *) (src_reg + off16) */ 192 193 #define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \ 194 ((struct bpf_insn) { \ 195 .code = BPF_LDX | BPF_SIZE(SIZE) | BPF_MEM, \ 196 .dst_reg = DST, \ 197 .src_reg = SRC, \ 198 .off = OFF, \ 199 .imm = 0 }) 200 201 /* Memory store, *(uint *) (dst_reg + off16) = src_reg */ 202 203 #define BPF_STX_MEM(SIZE, DST, SRC, OFF) \ 204 ((struct bpf_insn) { \ 205 .code = BPF_STX | BPF_SIZE(SIZE) | BPF_MEM, \ 206 .dst_reg = DST, \ 207 .src_reg = SRC, \ 208 .off = OFF, \ 209 .imm = 0 }) 210 211 /* Atomic memory add, *(uint *)(dst_reg + off16) += src_reg */ 212 213 #define BPF_STX_XADD(SIZE, DST, SRC, OFF) \ 214 ((struct bpf_insn) { \ 215 .code = BPF_STX | BPF_SIZE(SIZE) | BPF_XADD, \ 216 .dst_reg = DST, \ 217 .src_reg = SRC, \ 218 .off = OFF, \ 219 .imm = 0 }) 220 221 /* Memory store, *(uint *) (dst_reg + off16) = imm32 */ 222 223 #define BPF_ST_MEM(SIZE, DST, OFF, IMM) \ 224 ((struct bpf_insn) { \ 225 .code = BPF_ST | BPF_SIZE(SIZE) | BPF_MEM, \ 226 .dst_reg = DST, \ 227 .src_reg = 0, \ 228 .off = OFF, \ 229 .imm = IMM }) 230 231 /* Conditional jumps against registers, if (dst_reg 'op' src_reg) goto pc + off16 */ 232 233 #define BPF_JMP_REG(OP, DST, SRC, OFF) \ 234 ((struct bpf_insn) { \ 235 .code = BPF_JMP | BPF_OP(OP) | BPF_X, \ 236 .dst_reg = DST, \ 237 .src_reg = SRC, \ 238 .off = OFF, \ 239 .imm = 0 }) 240 241 /* Conditional jumps against immediates, if (dst_reg 'op' imm32) goto pc + off16 */ 242 243 #define BPF_JMP_IMM(OP, DST, IMM, OFF) \ 244 ((struct bpf_insn) { \ 245 .code = BPF_JMP | BPF_OP(OP) | BPF_K, \ 246 .dst_reg = DST, \ 247 .src_reg = 0, \ 248 .off = OFF, \ 249 .imm = IMM }) 250 251 /* Function call */ 252 253 #define BPF_EMIT_CALL(FUNC) \ 254 ((struct bpf_insn) { \ 255 .code = BPF_JMP | BPF_CALL, \ 256 .dst_reg = 0, \ 257 .src_reg = 0, \ 258 .off = 0, \ 259 .imm = ((FUNC) - __bpf_call_base) }) 260 261 /* Raw code statement block */ 262 263 #define BPF_RAW_INSN(CODE, DST, SRC, OFF, IMM) \ 264 ((struct bpf_insn) { \ 265 .code = CODE, \ 266 .dst_reg = DST, \ 267 .src_reg = SRC, \ 268 .off = OFF, \ 269 .imm = IMM }) 270 271 /* Program exit */ 272 273 #define BPF_EXIT_INSN() \ 274 ((struct bpf_insn) { \ 275 .code = BPF_JMP | BPF_EXIT, \ 276 .dst_reg = 0, \ 277 .src_reg = 0, \ 278 .off = 0, \ 279 .imm = 0 }) 280 281 /* Internal classic blocks for direct assignment */ 282 283 #define __BPF_STMT(CODE, K) \ 284 ((struct sock_filter) BPF_STMT(CODE, K)) 285 286 #define __BPF_JUMP(CODE, K, JT, JF) \ 287 ((struct sock_filter) BPF_JUMP(CODE, K, JT, JF)) 288 289 #define bytes_to_bpf_size(bytes) \ 290 ({ \ 291 int bpf_size = -EINVAL; \ 292 \ 293 if (bytes == sizeof(u8)) \ 294 bpf_size = BPF_B; \ 295 else if (bytes == sizeof(u16)) \ 296 bpf_size = BPF_H; \ 297 else if (bytes == sizeof(u32)) \ 298 bpf_size = BPF_W; \ 299 else if (bytes == sizeof(u64)) \ 300 bpf_size = BPF_DW; \ 301 \ 302 bpf_size; \ 303 }) 304 305 /* Macro to invoke filter function. */ 306 #define SK_RUN_FILTER(filter, ctx) \ 307 (*filter->prog->bpf_func)(ctx, filter->prog->insnsi) 308 309 #ifdef CONFIG_COMPAT 310 /* A struct sock_filter is architecture independent. */ 311 struct compat_sock_fprog { 312 u16 len; 313 compat_uptr_t filter; /* struct sock_filter * */ 314 }; 315 #endif 316 317 struct sock_fprog_kern { 318 u16 len; 319 struct sock_filter *filter; 320 }; 321 322 struct bpf_binary_header { 323 unsigned int pages; 324 u8 image[]; 325 }; 326 327 struct bpf_prog { 328 u16 pages; /* Number of allocated pages */ 329 kmemcheck_bitfield_begin(meta); 330 u16 jited:1, /* Is our filter JIT'ed? */ 331 gpl_compatible:1, /* Is filter GPL compatible? */ 332 dst_needed:1; /* Do we need dst entry? */ 333 kmemcheck_bitfield_end(meta); 334 u32 len; /* Number of filter blocks */ 335 enum bpf_prog_type type; /* Type of BPF program */ 336 struct bpf_prog_aux *aux; /* Auxiliary fields */ 337 struct sock_fprog_kern *orig_prog; /* Original BPF program */ 338 unsigned int (*bpf_func)(const struct sk_buff *skb, 339 const struct bpf_insn *filter); 340 /* Instructions for interpreter */ 341 union { 342 struct sock_filter insns[0]; 343 struct bpf_insn insnsi[0]; 344 }; 345 }; 346 347 struct sk_filter { 348 atomic_t refcnt; 349 struct rcu_head rcu; 350 struct bpf_prog *prog; 351 }; 352 353 #define BPF_PROG_RUN(filter, ctx) (*filter->bpf_func)(ctx, filter->insnsi) 354 355 static inline unsigned int bpf_prog_size(unsigned int proglen) 356 { 357 return max(sizeof(struct bpf_prog), 358 offsetof(struct bpf_prog, insns[proglen])); 359 } 360 361 static inline bool bpf_prog_was_classic(const struct bpf_prog *prog) 362 { 363 /* When classic BPF programs have been loaded and the arch 364 * does not have a classic BPF JIT (anymore), they have been 365 * converted via bpf_migrate_filter() to eBPF and thus always 366 * have an unspec program type. 367 */ 368 return prog->type == BPF_PROG_TYPE_UNSPEC; 369 } 370 371 #define bpf_classic_proglen(fprog) (fprog->len * sizeof(fprog->filter[0])) 372 373 #ifdef CONFIG_DEBUG_SET_MODULE_RONX 374 static inline void bpf_prog_lock_ro(struct bpf_prog *fp) 375 { 376 set_memory_ro((unsigned long)fp, fp->pages); 377 } 378 379 static inline void bpf_prog_unlock_ro(struct bpf_prog *fp) 380 { 381 set_memory_rw((unsigned long)fp, fp->pages); 382 } 383 #else 384 static inline void bpf_prog_lock_ro(struct bpf_prog *fp) 385 { 386 } 387 388 static inline void bpf_prog_unlock_ro(struct bpf_prog *fp) 389 { 390 } 391 #endif /* CONFIG_DEBUG_SET_MODULE_RONX */ 392 393 int sk_filter(struct sock *sk, struct sk_buff *skb); 394 395 int bpf_prog_select_runtime(struct bpf_prog *fp); 396 void bpf_prog_free(struct bpf_prog *fp); 397 398 struct bpf_prog *bpf_prog_alloc(unsigned int size, gfp_t gfp_extra_flags); 399 struct bpf_prog *bpf_prog_realloc(struct bpf_prog *fp_old, unsigned int size, 400 gfp_t gfp_extra_flags); 401 void __bpf_prog_free(struct bpf_prog *fp); 402 403 static inline void bpf_prog_unlock_free(struct bpf_prog *fp) 404 { 405 bpf_prog_unlock_ro(fp); 406 __bpf_prog_free(fp); 407 } 408 409 typedef int (*bpf_aux_classic_check_t)(struct sock_filter *filter, 410 unsigned int flen); 411 412 int bpf_prog_create(struct bpf_prog **pfp, struct sock_fprog_kern *fprog); 413 int bpf_prog_create_from_user(struct bpf_prog **pfp, struct sock_fprog *fprog, 414 bpf_aux_classic_check_t trans, bool save_orig); 415 void bpf_prog_destroy(struct bpf_prog *fp); 416 417 int sk_attach_filter(struct sock_fprog *fprog, struct sock *sk); 418 int sk_attach_bpf(u32 ufd, struct sock *sk); 419 int sk_detach_filter(struct sock *sk); 420 int sk_get_filter(struct sock *sk, struct sock_filter __user *filter, 421 unsigned int len); 422 423 bool sk_filter_charge(struct sock *sk, struct sk_filter *fp); 424 void sk_filter_uncharge(struct sock *sk, struct sk_filter *fp); 425 426 u64 __bpf_call_base(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5); 427 void bpf_int_jit_compile(struct bpf_prog *fp); 428 bool bpf_helper_changes_skb_data(void *func); 429 430 #ifdef CONFIG_BPF_JIT 431 typedef void (*bpf_jit_fill_hole_t)(void *area, unsigned int size); 432 433 struct bpf_binary_header * 434 bpf_jit_binary_alloc(unsigned int proglen, u8 **image_ptr, 435 unsigned int alignment, 436 bpf_jit_fill_hole_t bpf_fill_ill_insns); 437 void bpf_jit_binary_free(struct bpf_binary_header *hdr); 438 439 void bpf_jit_compile(struct bpf_prog *fp); 440 void bpf_jit_free(struct bpf_prog *fp); 441 442 static inline void bpf_jit_dump(unsigned int flen, unsigned int proglen, 443 u32 pass, void *image) 444 { 445 pr_err("flen=%u proglen=%u pass=%u image=%pK from=%s pid=%d\n", flen, 446 proglen, pass, image, current->comm, task_pid_nr(current)); 447 448 if (image) 449 print_hex_dump(KERN_ERR, "JIT code: ", DUMP_PREFIX_OFFSET, 450 16, 1, image, proglen, false); 451 } 452 #else 453 static inline void bpf_jit_compile(struct bpf_prog *fp) 454 { 455 } 456 457 static inline void bpf_jit_free(struct bpf_prog *fp) 458 { 459 bpf_prog_unlock_free(fp); 460 } 461 #endif /* CONFIG_BPF_JIT */ 462 463 #define BPF_ANC BIT(15) 464 465 static inline u16 bpf_anc_helper(const struct sock_filter *ftest) 466 { 467 BUG_ON(ftest->code & BPF_ANC); 468 469 switch (ftest->code) { 470 case BPF_LD | BPF_W | BPF_ABS: 471 case BPF_LD | BPF_H | BPF_ABS: 472 case BPF_LD | BPF_B | BPF_ABS: 473 #define BPF_ANCILLARY(CODE) case SKF_AD_OFF + SKF_AD_##CODE: \ 474 return BPF_ANC | SKF_AD_##CODE 475 switch (ftest->k) { 476 BPF_ANCILLARY(PROTOCOL); 477 BPF_ANCILLARY(PKTTYPE); 478 BPF_ANCILLARY(IFINDEX); 479 BPF_ANCILLARY(NLATTR); 480 BPF_ANCILLARY(NLATTR_NEST); 481 BPF_ANCILLARY(MARK); 482 BPF_ANCILLARY(QUEUE); 483 BPF_ANCILLARY(HATYPE); 484 BPF_ANCILLARY(RXHASH); 485 BPF_ANCILLARY(CPU); 486 BPF_ANCILLARY(ALU_XOR_X); 487 BPF_ANCILLARY(VLAN_TAG); 488 BPF_ANCILLARY(VLAN_TAG_PRESENT); 489 BPF_ANCILLARY(PAY_OFFSET); 490 BPF_ANCILLARY(RANDOM); 491 BPF_ANCILLARY(VLAN_TPID); 492 } 493 /* Fallthrough. */ 494 default: 495 return ftest->code; 496 } 497 } 498 499 void *bpf_internal_load_pointer_neg_helper(const struct sk_buff *skb, 500 int k, unsigned int size); 501 502 static inline void *bpf_load_pointer(const struct sk_buff *skb, int k, 503 unsigned int size, void *buffer) 504 { 505 if (k >= 0) 506 return skb_header_pointer(skb, k, size, buffer); 507 508 return bpf_internal_load_pointer_neg_helper(skb, k, size); 509 } 510 511 static inline int bpf_tell_extensions(void) 512 { 513 return SKF_AD_MAX; 514 } 515 516 #endif /* __LINUX_FILTER_H__ */ 517