1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com 3 */ 4 #ifndef _LINUX_BPF_H 5 #define _LINUX_BPF_H 1 6 7 #include <uapi/linux/bpf.h> 8 9 #include <linux/workqueue.h> 10 #include <linux/file.h> 11 #include <linux/percpu.h> 12 #include <linux/err.h> 13 #include <linux/rbtree_latch.h> 14 #include <linux/numa.h> 15 #include <linux/mm_types.h> 16 #include <linux/wait.h> 17 #include <linux/u64_stats_sync.h> 18 #include <linux/refcount.h> 19 #include <linux/mutex.h> 20 #include <linux/module.h> 21 #include <linux/kallsyms.h> 22 #include <linux/capability.h> 23 24 struct bpf_verifier_env; 25 struct bpf_verifier_log; 26 struct perf_event; 27 struct bpf_prog; 28 struct bpf_prog_aux; 29 struct bpf_map; 30 struct sock; 31 struct seq_file; 32 struct btf; 33 struct btf_type; 34 struct exception_table_entry; 35 struct seq_operations; 36 37 extern struct idr btf_idr; 38 extern spinlock_t btf_idr_lock; 39 40 /* map is generic key/value storage optionally accesible by eBPF programs */ 41 struct bpf_map_ops { 42 /* funcs callable from userspace (via syscall) */ 43 int (*map_alloc_check)(union bpf_attr *attr); 44 struct bpf_map *(*map_alloc)(union bpf_attr *attr); 45 void (*map_release)(struct bpf_map *map, struct file *map_file); 46 void (*map_free)(struct bpf_map *map); 47 int (*map_get_next_key)(struct bpf_map *map, void *key, void *next_key); 48 void (*map_release_uref)(struct bpf_map *map); 49 void *(*map_lookup_elem_sys_only)(struct bpf_map *map, void *key); 50 int (*map_lookup_batch)(struct bpf_map *map, const union bpf_attr *attr, 51 union bpf_attr __user *uattr); 52 int (*map_lookup_and_delete_batch)(struct bpf_map *map, 53 const union bpf_attr *attr, 54 union bpf_attr __user *uattr); 55 int (*map_update_batch)(struct bpf_map *map, const union bpf_attr *attr, 56 union bpf_attr __user *uattr); 57 int (*map_delete_batch)(struct bpf_map *map, const union bpf_attr *attr, 58 union bpf_attr __user *uattr); 59 60 /* funcs callable from userspace and from eBPF programs */ 61 void *(*map_lookup_elem)(struct bpf_map *map, void *key); 62 int (*map_update_elem)(struct bpf_map *map, void *key, void *value, u64 flags); 63 int (*map_delete_elem)(struct bpf_map *map, void *key); 64 int (*map_push_elem)(struct bpf_map *map, void *value, u64 flags); 65 int (*map_pop_elem)(struct bpf_map *map, void *value); 66 int (*map_peek_elem)(struct bpf_map *map, void *value); 67 68 /* funcs called by prog_array and perf_event_array map */ 69 void *(*map_fd_get_ptr)(struct bpf_map *map, struct file *map_file, 70 int fd); 71 void (*map_fd_put_ptr)(void *ptr); 72 u32 (*map_gen_lookup)(struct bpf_map *map, struct bpf_insn *insn_buf); 73 u32 (*map_fd_sys_lookup_elem)(void *ptr); 74 void (*map_seq_show_elem)(struct bpf_map *map, void *key, 75 struct seq_file *m); 76 int (*map_check_btf)(const struct bpf_map *map, 77 const struct btf *btf, 78 const struct btf_type *key_type, 79 const struct btf_type *value_type); 80 81 /* Prog poke tracking helpers. */ 82 int (*map_poke_track)(struct bpf_map *map, struct bpf_prog_aux *aux); 83 void (*map_poke_untrack)(struct bpf_map *map, struct bpf_prog_aux *aux); 84 void (*map_poke_run)(struct bpf_map *map, u32 key, struct bpf_prog *old, 85 struct bpf_prog *new); 86 87 /* Direct value access helpers. */ 88 int (*map_direct_value_addr)(const struct bpf_map *map, 89 u64 *imm, u32 off); 90 int (*map_direct_value_meta)(const struct bpf_map *map, 91 u64 imm, u32 *off); 92 int (*map_mmap)(struct bpf_map *map, struct vm_area_struct *vma); 93 __poll_t (*map_poll)(struct bpf_map *map, struct file *filp, 94 struct poll_table_struct *pts); 95 96 /* BTF name and id of struct allocated by map_alloc */ 97 const char * const map_btf_name; 98 int *map_btf_id; 99 }; 100 101 struct bpf_map_memory { 102 u32 pages; 103 struct user_struct *user; 104 }; 105 106 struct bpf_map { 107 /* The first two cachelines with read-mostly members of which some 108 * are also accessed in fast-path (e.g. ops, max_entries). 109 */ 110 const struct bpf_map_ops *ops ____cacheline_aligned; 111 struct bpf_map *inner_map_meta; 112 #ifdef CONFIG_SECURITY 113 void *security; 114 #endif 115 enum bpf_map_type map_type; 116 u32 key_size; 117 u32 value_size; 118 u32 max_entries; 119 u32 map_flags; 120 int spin_lock_off; /* >=0 valid offset, <0 error */ 121 u32 id; 122 int numa_node; 123 u32 btf_key_type_id; 124 u32 btf_value_type_id; 125 struct btf *btf; 126 struct bpf_map_memory memory; 127 char name[BPF_OBJ_NAME_LEN]; 128 u32 btf_vmlinux_value_type_id; 129 bool bypass_spec_v1; 130 bool frozen; /* write-once; write-protected by freeze_mutex */ 131 /* 22 bytes hole */ 132 133 /* The 3rd and 4th cacheline with misc members to avoid false sharing 134 * particularly with refcounting. 135 */ 136 atomic64_t refcnt ____cacheline_aligned; 137 atomic64_t usercnt; 138 struct work_struct work; 139 struct mutex freeze_mutex; 140 u64 writecnt; /* writable mmap cnt; protected by freeze_mutex */ 141 }; 142 143 static inline bool map_value_has_spin_lock(const struct bpf_map *map) 144 { 145 return map->spin_lock_off >= 0; 146 } 147 148 static inline void check_and_init_map_lock(struct bpf_map *map, void *dst) 149 { 150 if (likely(!map_value_has_spin_lock(map))) 151 return; 152 *(struct bpf_spin_lock *)(dst + map->spin_lock_off) = 153 (struct bpf_spin_lock){}; 154 } 155 156 /* copy everything but bpf_spin_lock */ 157 static inline void copy_map_value(struct bpf_map *map, void *dst, void *src) 158 { 159 if (unlikely(map_value_has_spin_lock(map))) { 160 u32 off = map->spin_lock_off; 161 162 memcpy(dst, src, off); 163 memcpy(dst + off + sizeof(struct bpf_spin_lock), 164 src + off + sizeof(struct bpf_spin_lock), 165 map->value_size - off - sizeof(struct bpf_spin_lock)); 166 } else { 167 memcpy(dst, src, map->value_size); 168 } 169 } 170 void copy_map_value_locked(struct bpf_map *map, void *dst, void *src, 171 bool lock_src); 172 int bpf_obj_name_cpy(char *dst, const char *src, unsigned int size); 173 174 struct bpf_offload_dev; 175 struct bpf_offloaded_map; 176 177 struct bpf_map_dev_ops { 178 int (*map_get_next_key)(struct bpf_offloaded_map *map, 179 void *key, void *next_key); 180 int (*map_lookup_elem)(struct bpf_offloaded_map *map, 181 void *key, void *value); 182 int (*map_update_elem)(struct bpf_offloaded_map *map, 183 void *key, void *value, u64 flags); 184 int (*map_delete_elem)(struct bpf_offloaded_map *map, void *key); 185 }; 186 187 struct bpf_offloaded_map { 188 struct bpf_map map; 189 struct net_device *netdev; 190 const struct bpf_map_dev_ops *dev_ops; 191 void *dev_priv; 192 struct list_head offloads; 193 }; 194 195 static inline struct bpf_offloaded_map *map_to_offmap(struct bpf_map *map) 196 { 197 return container_of(map, struct bpf_offloaded_map, map); 198 } 199 200 static inline bool bpf_map_offload_neutral(const struct bpf_map *map) 201 { 202 return map->map_type == BPF_MAP_TYPE_PERF_EVENT_ARRAY; 203 } 204 205 static inline bool bpf_map_support_seq_show(const struct bpf_map *map) 206 { 207 return (map->btf_value_type_id || map->btf_vmlinux_value_type_id) && 208 map->ops->map_seq_show_elem; 209 } 210 211 int map_check_no_btf(const struct bpf_map *map, 212 const struct btf *btf, 213 const struct btf_type *key_type, 214 const struct btf_type *value_type); 215 216 extern const struct bpf_map_ops bpf_map_offload_ops; 217 218 /* function argument constraints */ 219 enum bpf_arg_type { 220 ARG_DONTCARE = 0, /* unused argument in helper function */ 221 222 /* the following constraints used to prototype 223 * bpf_map_lookup/update/delete_elem() functions 224 */ 225 ARG_CONST_MAP_PTR, /* const argument used as pointer to bpf_map */ 226 ARG_PTR_TO_MAP_KEY, /* pointer to stack used as map key */ 227 ARG_PTR_TO_MAP_VALUE, /* pointer to stack used as map value */ 228 ARG_PTR_TO_UNINIT_MAP_VALUE, /* pointer to valid memory used to store a map value */ 229 ARG_PTR_TO_MAP_VALUE_OR_NULL, /* pointer to stack used as map value or NULL */ 230 231 /* the following constraints used to prototype bpf_memcmp() and other 232 * functions that access data on eBPF program stack 233 */ 234 ARG_PTR_TO_MEM, /* pointer to valid memory (stack, packet, map value) */ 235 ARG_PTR_TO_MEM_OR_NULL, /* pointer to valid memory or NULL */ 236 ARG_PTR_TO_UNINIT_MEM, /* pointer to memory does not need to be initialized, 237 * helper function must fill all bytes or clear 238 * them in error case. 239 */ 240 241 ARG_CONST_SIZE, /* number of bytes accessed from memory */ 242 ARG_CONST_SIZE_OR_ZERO, /* number of bytes accessed from memory or 0 */ 243 244 ARG_PTR_TO_CTX, /* pointer to context */ 245 ARG_PTR_TO_CTX_OR_NULL, /* pointer to context or NULL */ 246 ARG_ANYTHING, /* any (initialized) argument is ok */ 247 ARG_PTR_TO_SPIN_LOCK, /* pointer to bpf_spin_lock */ 248 ARG_PTR_TO_SOCK_COMMON, /* pointer to sock_common */ 249 ARG_PTR_TO_INT, /* pointer to int */ 250 ARG_PTR_TO_LONG, /* pointer to long */ 251 ARG_PTR_TO_SOCKET, /* pointer to bpf_sock (fullsock) */ 252 ARG_PTR_TO_SOCKET_OR_NULL, /* pointer to bpf_sock (fullsock) or NULL */ 253 ARG_PTR_TO_BTF_ID, /* pointer to in-kernel struct */ 254 ARG_PTR_TO_ALLOC_MEM, /* pointer to dynamically allocated memory */ 255 ARG_PTR_TO_ALLOC_MEM_OR_NULL, /* pointer to dynamically allocated memory or NULL */ 256 ARG_CONST_ALLOC_SIZE_OR_ZERO, /* number of allocated bytes requested */ 257 }; 258 259 /* type of values returned from helper functions */ 260 enum bpf_return_type { 261 RET_INTEGER, /* function returns integer */ 262 RET_VOID, /* function doesn't return anything */ 263 RET_PTR_TO_MAP_VALUE, /* returns a pointer to map elem value */ 264 RET_PTR_TO_MAP_VALUE_OR_NULL, /* returns a pointer to map elem value or NULL */ 265 RET_PTR_TO_SOCKET_OR_NULL, /* returns a pointer to a socket or NULL */ 266 RET_PTR_TO_TCP_SOCK_OR_NULL, /* returns a pointer to a tcp_sock or NULL */ 267 RET_PTR_TO_SOCK_COMMON_OR_NULL, /* returns a pointer to a sock_common or NULL */ 268 RET_PTR_TO_ALLOC_MEM_OR_NULL, /* returns a pointer to dynamically allocated memory or NULL */ 269 RET_PTR_TO_BTF_ID_OR_NULL, /* returns a pointer to a btf_id or NULL */ 270 }; 271 272 /* eBPF function prototype used by verifier to allow BPF_CALLs from eBPF programs 273 * to in-kernel helper functions and for adjusting imm32 field in BPF_CALL 274 * instructions after verifying 275 */ 276 struct bpf_func_proto { 277 u64 (*func)(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5); 278 bool gpl_only; 279 bool pkt_access; 280 enum bpf_return_type ret_type; 281 union { 282 struct { 283 enum bpf_arg_type arg1_type; 284 enum bpf_arg_type arg2_type; 285 enum bpf_arg_type arg3_type; 286 enum bpf_arg_type arg4_type; 287 enum bpf_arg_type arg5_type; 288 }; 289 enum bpf_arg_type arg_type[5]; 290 }; 291 int *btf_id; /* BTF ids of arguments */ 292 bool (*check_btf_id)(u32 btf_id, u32 arg); /* if the argument btf_id is 293 * valid. Often used if more 294 * than one btf id is permitted 295 * for this argument. 296 */ 297 int *ret_btf_id; /* return value btf_id */ 298 }; 299 300 /* bpf_context is intentionally undefined structure. Pointer to bpf_context is 301 * the first argument to eBPF programs. 302 * For socket filters: 'struct bpf_context *' == 'struct sk_buff *' 303 */ 304 struct bpf_context; 305 306 enum bpf_access_type { 307 BPF_READ = 1, 308 BPF_WRITE = 2 309 }; 310 311 /* types of values stored in eBPF registers */ 312 /* Pointer types represent: 313 * pointer 314 * pointer + imm 315 * pointer + (u16) var 316 * pointer + (u16) var + imm 317 * if (range > 0) then [ptr, ptr + range - off) is safe to access 318 * if (id > 0) means that some 'var' was added 319 * if (off > 0) means that 'imm' was added 320 */ 321 enum bpf_reg_type { 322 NOT_INIT = 0, /* nothing was written into register */ 323 SCALAR_VALUE, /* reg doesn't contain a valid pointer */ 324 PTR_TO_CTX, /* reg points to bpf_context */ 325 CONST_PTR_TO_MAP, /* reg points to struct bpf_map */ 326 PTR_TO_MAP_VALUE, /* reg points to map element value */ 327 PTR_TO_MAP_VALUE_OR_NULL,/* points to map elem value or NULL */ 328 PTR_TO_STACK, /* reg == frame_pointer + offset */ 329 PTR_TO_PACKET_META, /* skb->data - meta_len */ 330 PTR_TO_PACKET, /* reg points to skb->data */ 331 PTR_TO_PACKET_END, /* skb->data + headlen */ 332 PTR_TO_FLOW_KEYS, /* reg points to bpf_flow_keys */ 333 PTR_TO_SOCKET, /* reg points to struct bpf_sock */ 334 PTR_TO_SOCKET_OR_NULL, /* reg points to struct bpf_sock or NULL */ 335 PTR_TO_SOCK_COMMON, /* reg points to sock_common */ 336 PTR_TO_SOCK_COMMON_OR_NULL, /* reg points to sock_common or NULL */ 337 PTR_TO_TCP_SOCK, /* reg points to struct tcp_sock */ 338 PTR_TO_TCP_SOCK_OR_NULL, /* reg points to struct tcp_sock or NULL */ 339 PTR_TO_TP_BUFFER, /* reg points to a writable raw tp's buffer */ 340 PTR_TO_XDP_SOCK, /* reg points to struct xdp_sock */ 341 PTR_TO_BTF_ID, /* reg points to kernel struct */ 342 PTR_TO_BTF_ID_OR_NULL, /* reg points to kernel struct or NULL */ 343 PTR_TO_MEM, /* reg points to valid memory region */ 344 PTR_TO_MEM_OR_NULL, /* reg points to valid memory region or NULL */ 345 }; 346 347 /* The information passed from prog-specific *_is_valid_access 348 * back to the verifier. 349 */ 350 struct bpf_insn_access_aux { 351 enum bpf_reg_type reg_type; 352 union { 353 int ctx_field_size; 354 u32 btf_id; 355 }; 356 struct bpf_verifier_log *log; /* for verbose logs */ 357 }; 358 359 static inline void 360 bpf_ctx_record_field_size(struct bpf_insn_access_aux *aux, u32 size) 361 { 362 aux->ctx_field_size = size; 363 } 364 365 struct bpf_prog_ops { 366 int (*test_run)(struct bpf_prog *prog, const union bpf_attr *kattr, 367 union bpf_attr __user *uattr); 368 }; 369 370 struct bpf_verifier_ops { 371 /* return eBPF function prototype for verification */ 372 const struct bpf_func_proto * 373 (*get_func_proto)(enum bpf_func_id func_id, 374 const struct bpf_prog *prog); 375 376 /* return true if 'size' wide access at offset 'off' within bpf_context 377 * with 'type' (read or write) is allowed 378 */ 379 bool (*is_valid_access)(int off, int size, enum bpf_access_type type, 380 const struct bpf_prog *prog, 381 struct bpf_insn_access_aux *info); 382 int (*gen_prologue)(struct bpf_insn *insn, bool direct_write, 383 const struct bpf_prog *prog); 384 int (*gen_ld_abs)(const struct bpf_insn *orig, 385 struct bpf_insn *insn_buf); 386 u32 (*convert_ctx_access)(enum bpf_access_type type, 387 const struct bpf_insn *src, 388 struct bpf_insn *dst, 389 struct bpf_prog *prog, u32 *target_size); 390 int (*btf_struct_access)(struct bpf_verifier_log *log, 391 const struct btf_type *t, int off, int size, 392 enum bpf_access_type atype, 393 u32 *next_btf_id); 394 }; 395 396 struct bpf_prog_offload_ops { 397 /* verifier basic callbacks */ 398 int (*insn_hook)(struct bpf_verifier_env *env, 399 int insn_idx, int prev_insn_idx); 400 int (*finalize)(struct bpf_verifier_env *env); 401 /* verifier optimization callbacks (called after .finalize) */ 402 int (*replace_insn)(struct bpf_verifier_env *env, u32 off, 403 struct bpf_insn *insn); 404 int (*remove_insns)(struct bpf_verifier_env *env, u32 off, u32 cnt); 405 /* program management callbacks */ 406 int (*prepare)(struct bpf_prog *prog); 407 int (*translate)(struct bpf_prog *prog); 408 void (*destroy)(struct bpf_prog *prog); 409 }; 410 411 struct bpf_prog_offload { 412 struct bpf_prog *prog; 413 struct net_device *netdev; 414 struct bpf_offload_dev *offdev; 415 void *dev_priv; 416 struct list_head offloads; 417 bool dev_state; 418 bool opt_failed; 419 void *jited_image; 420 u32 jited_len; 421 }; 422 423 enum bpf_cgroup_storage_type { 424 BPF_CGROUP_STORAGE_SHARED, 425 BPF_CGROUP_STORAGE_PERCPU, 426 __BPF_CGROUP_STORAGE_MAX 427 }; 428 429 #define MAX_BPF_CGROUP_STORAGE_TYPE __BPF_CGROUP_STORAGE_MAX 430 431 /* The longest tracepoint has 12 args. 432 * See include/trace/bpf_probe.h 433 */ 434 #define MAX_BPF_FUNC_ARGS 12 435 436 struct bpf_prog_stats { 437 u64 cnt; 438 u64 nsecs; 439 struct u64_stats_sync syncp; 440 } __aligned(2 * sizeof(u64)); 441 442 struct btf_func_model { 443 u8 ret_size; 444 u8 nr_args; 445 u8 arg_size[MAX_BPF_FUNC_ARGS]; 446 }; 447 448 /* Restore arguments before returning from trampoline to let original function 449 * continue executing. This flag is used for fentry progs when there are no 450 * fexit progs. 451 */ 452 #define BPF_TRAMP_F_RESTORE_REGS BIT(0) 453 /* Call original function after fentry progs, but before fexit progs. 454 * Makes sense for fentry/fexit, normal calls and indirect calls. 455 */ 456 #define BPF_TRAMP_F_CALL_ORIG BIT(1) 457 /* Skip current frame and return to parent. Makes sense for fentry/fexit 458 * programs only. Should not be used with normal calls and indirect calls. 459 */ 460 #define BPF_TRAMP_F_SKIP_FRAME BIT(2) 461 462 /* Each call __bpf_prog_enter + call bpf_func + call __bpf_prog_exit is ~50 463 * bytes on x86. Pick a number to fit into BPF_IMAGE_SIZE / 2 464 */ 465 #define BPF_MAX_TRAMP_PROGS 40 466 467 struct bpf_tramp_progs { 468 struct bpf_prog *progs[BPF_MAX_TRAMP_PROGS]; 469 int nr_progs; 470 }; 471 472 /* Different use cases for BPF trampoline: 473 * 1. replace nop at the function entry (kprobe equivalent) 474 * flags = BPF_TRAMP_F_RESTORE_REGS 475 * fentry = a set of programs to run before returning from trampoline 476 * 477 * 2. replace nop at the function entry (kprobe + kretprobe equivalent) 478 * flags = BPF_TRAMP_F_CALL_ORIG | BPF_TRAMP_F_SKIP_FRAME 479 * orig_call = fentry_ip + MCOUNT_INSN_SIZE 480 * fentry = a set of program to run before calling original function 481 * fexit = a set of program to run after original function 482 * 483 * 3. replace direct call instruction anywhere in the function body 484 * or assign a function pointer for indirect call (like tcp_congestion_ops->cong_avoid) 485 * With flags = 0 486 * fentry = a set of programs to run before returning from trampoline 487 * With flags = BPF_TRAMP_F_CALL_ORIG 488 * orig_call = original callback addr or direct function addr 489 * fentry = a set of program to run before calling original function 490 * fexit = a set of program to run after original function 491 */ 492 int arch_prepare_bpf_trampoline(void *image, void *image_end, 493 const struct btf_func_model *m, u32 flags, 494 struct bpf_tramp_progs *tprogs, 495 void *orig_call); 496 /* these two functions are called from generated trampoline */ 497 u64 notrace __bpf_prog_enter(void); 498 void notrace __bpf_prog_exit(struct bpf_prog *prog, u64 start); 499 500 struct bpf_ksym { 501 unsigned long start; 502 unsigned long end; 503 char name[KSYM_NAME_LEN]; 504 struct list_head lnode; 505 struct latch_tree_node tnode; 506 bool prog; 507 }; 508 509 enum bpf_tramp_prog_type { 510 BPF_TRAMP_FENTRY, 511 BPF_TRAMP_FEXIT, 512 BPF_TRAMP_MODIFY_RETURN, 513 BPF_TRAMP_MAX, 514 BPF_TRAMP_REPLACE, /* more than MAX */ 515 }; 516 517 struct bpf_trampoline { 518 /* hlist for trampoline_table */ 519 struct hlist_node hlist; 520 /* serializes access to fields of this trampoline */ 521 struct mutex mutex; 522 refcount_t refcnt; 523 u64 key; 524 struct { 525 struct btf_func_model model; 526 void *addr; 527 bool ftrace_managed; 528 } func; 529 /* if !NULL this is BPF_PROG_TYPE_EXT program that extends another BPF 530 * program by replacing one of its functions. func.addr is the address 531 * of the function it replaced. 532 */ 533 struct bpf_prog *extension_prog; 534 /* list of BPF programs using this trampoline */ 535 struct hlist_head progs_hlist[BPF_TRAMP_MAX]; 536 /* Number of attached programs. A counter per kind. */ 537 int progs_cnt[BPF_TRAMP_MAX]; 538 /* Executable image of trampoline */ 539 void *image; 540 u64 selector; 541 struct bpf_ksym ksym; 542 }; 543 544 #define BPF_DISPATCHER_MAX 48 /* Fits in 2048B */ 545 546 struct bpf_dispatcher_prog { 547 struct bpf_prog *prog; 548 refcount_t users; 549 }; 550 551 struct bpf_dispatcher { 552 /* dispatcher mutex */ 553 struct mutex mutex; 554 void *func; 555 struct bpf_dispatcher_prog progs[BPF_DISPATCHER_MAX]; 556 int num_progs; 557 void *image; 558 u32 image_off; 559 struct bpf_ksym ksym; 560 }; 561 562 static __always_inline unsigned int bpf_dispatcher_nop_func( 563 const void *ctx, 564 const struct bpf_insn *insnsi, 565 unsigned int (*bpf_func)(const void *, 566 const struct bpf_insn *)) 567 { 568 return bpf_func(ctx, insnsi); 569 } 570 #ifdef CONFIG_BPF_JIT 571 struct bpf_trampoline *bpf_trampoline_lookup(u64 key); 572 int bpf_trampoline_link_prog(struct bpf_prog *prog); 573 int bpf_trampoline_unlink_prog(struct bpf_prog *prog); 574 void bpf_trampoline_put(struct bpf_trampoline *tr); 575 #define BPF_DISPATCHER_INIT(_name) { \ 576 .mutex = __MUTEX_INITIALIZER(_name.mutex), \ 577 .func = &_name##_func, \ 578 .progs = {}, \ 579 .num_progs = 0, \ 580 .image = NULL, \ 581 .image_off = 0, \ 582 .ksym = { \ 583 .name = #_name, \ 584 .lnode = LIST_HEAD_INIT(_name.ksym.lnode), \ 585 }, \ 586 } 587 588 #define DEFINE_BPF_DISPATCHER(name) \ 589 noinline unsigned int bpf_dispatcher_##name##_func( \ 590 const void *ctx, \ 591 const struct bpf_insn *insnsi, \ 592 unsigned int (*bpf_func)(const void *, \ 593 const struct bpf_insn *)) \ 594 { \ 595 return bpf_func(ctx, insnsi); \ 596 } \ 597 EXPORT_SYMBOL(bpf_dispatcher_##name##_func); \ 598 struct bpf_dispatcher bpf_dispatcher_##name = \ 599 BPF_DISPATCHER_INIT(bpf_dispatcher_##name); 600 #define DECLARE_BPF_DISPATCHER(name) \ 601 unsigned int bpf_dispatcher_##name##_func( \ 602 const void *ctx, \ 603 const struct bpf_insn *insnsi, \ 604 unsigned int (*bpf_func)(const void *, \ 605 const struct bpf_insn *)); \ 606 extern struct bpf_dispatcher bpf_dispatcher_##name; 607 #define BPF_DISPATCHER_FUNC(name) bpf_dispatcher_##name##_func 608 #define BPF_DISPATCHER_PTR(name) (&bpf_dispatcher_##name) 609 void bpf_dispatcher_change_prog(struct bpf_dispatcher *d, struct bpf_prog *from, 610 struct bpf_prog *to); 611 /* Called only from JIT-enabled code, so there's no need for stubs. */ 612 void *bpf_jit_alloc_exec_page(void); 613 void bpf_image_ksym_add(void *data, struct bpf_ksym *ksym); 614 void bpf_image_ksym_del(struct bpf_ksym *ksym); 615 void bpf_ksym_add(struct bpf_ksym *ksym); 616 void bpf_ksym_del(struct bpf_ksym *ksym); 617 #else 618 static inline struct bpf_trampoline *bpf_trampoline_lookup(u64 key) 619 { 620 return NULL; 621 } 622 static inline int bpf_trampoline_link_prog(struct bpf_prog *prog) 623 { 624 return -ENOTSUPP; 625 } 626 static inline int bpf_trampoline_unlink_prog(struct bpf_prog *prog) 627 { 628 return -ENOTSUPP; 629 } 630 static inline void bpf_trampoline_put(struct bpf_trampoline *tr) {} 631 #define DEFINE_BPF_DISPATCHER(name) 632 #define DECLARE_BPF_DISPATCHER(name) 633 #define BPF_DISPATCHER_FUNC(name) bpf_dispatcher_nop_func 634 #define BPF_DISPATCHER_PTR(name) NULL 635 static inline void bpf_dispatcher_change_prog(struct bpf_dispatcher *d, 636 struct bpf_prog *from, 637 struct bpf_prog *to) {} 638 static inline bool is_bpf_image_address(unsigned long address) 639 { 640 return false; 641 } 642 #endif 643 644 struct bpf_func_info_aux { 645 u16 linkage; 646 bool unreliable; 647 }; 648 649 enum bpf_jit_poke_reason { 650 BPF_POKE_REASON_TAIL_CALL, 651 }; 652 653 /* Descriptor of pokes pointing /into/ the JITed image. */ 654 struct bpf_jit_poke_descriptor { 655 void *ip; 656 union { 657 struct { 658 struct bpf_map *map; 659 u32 key; 660 } tail_call; 661 }; 662 bool ip_stable; 663 u8 adj_off; 664 u16 reason; 665 }; 666 667 /* reg_type info for ctx arguments */ 668 struct bpf_ctx_arg_aux { 669 u32 offset; 670 enum bpf_reg_type reg_type; 671 u32 btf_id; 672 }; 673 674 struct bpf_prog_aux { 675 atomic64_t refcnt; 676 u32 used_map_cnt; 677 u32 max_ctx_offset; 678 u32 max_pkt_offset; 679 u32 max_tp_access; 680 u32 stack_depth; 681 u32 id; 682 u32 func_cnt; /* used by non-func prog as the number of func progs */ 683 u32 func_idx; /* 0 for non-func prog, the index in func array for func prog */ 684 u32 attach_btf_id; /* in-kernel BTF type id to attach to */ 685 u32 ctx_arg_info_size; 686 const struct bpf_ctx_arg_aux *ctx_arg_info; 687 struct bpf_prog *linked_prog; 688 bool verifier_zext; /* Zero extensions has been inserted by verifier. */ 689 bool offload_requested; 690 bool attach_btf_trace; /* true if attaching to BTF-enabled raw tp */ 691 bool func_proto_unreliable; 692 enum bpf_tramp_prog_type trampoline_prog_type; 693 struct bpf_trampoline *trampoline; 694 struct hlist_node tramp_hlist; 695 /* BTF_KIND_FUNC_PROTO for valid attach_btf_id */ 696 const struct btf_type *attach_func_proto; 697 /* function name for valid attach_btf_id */ 698 const char *attach_func_name; 699 struct bpf_prog **func; 700 void *jit_data; /* JIT specific data. arch dependent */ 701 struct bpf_jit_poke_descriptor *poke_tab; 702 u32 size_poke_tab; 703 struct bpf_ksym ksym; 704 const struct bpf_prog_ops *ops; 705 struct bpf_map **used_maps; 706 struct bpf_prog *prog; 707 struct user_struct *user; 708 u64 load_time; /* ns since boottime */ 709 struct bpf_map *cgroup_storage[MAX_BPF_CGROUP_STORAGE_TYPE]; 710 char name[BPF_OBJ_NAME_LEN]; 711 #ifdef CONFIG_SECURITY 712 void *security; 713 #endif 714 struct bpf_prog_offload *offload; 715 struct btf *btf; 716 struct bpf_func_info *func_info; 717 struct bpf_func_info_aux *func_info_aux; 718 /* bpf_line_info loaded from userspace. linfo->insn_off 719 * has the xlated insn offset. 720 * Both the main and sub prog share the same linfo. 721 * The subprog can access its first linfo by 722 * using the linfo_idx. 723 */ 724 struct bpf_line_info *linfo; 725 /* jited_linfo is the jited addr of the linfo. It has a 726 * one to one mapping to linfo: 727 * jited_linfo[i] is the jited addr for the linfo[i]->insn_off. 728 * Both the main and sub prog share the same jited_linfo. 729 * The subprog can access its first jited_linfo by 730 * using the linfo_idx. 731 */ 732 void **jited_linfo; 733 u32 func_info_cnt; 734 u32 nr_linfo; 735 /* subprog can use linfo_idx to access its first linfo and 736 * jited_linfo. 737 * main prog always has linfo_idx == 0 738 */ 739 u32 linfo_idx; 740 u32 num_exentries; 741 struct exception_table_entry *extable; 742 struct bpf_prog_stats __percpu *stats; 743 union { 744 struct work_struct work; 745 struct rcu_head rcu; 746 }; 747 }; 748 749 struct bpf_array_aux { 750 /* 'Ownership' of prog array is claimed by the first program that 751 * is going to use this map or by the first program which FD is 752 * stored in the map to make sure that all callers and callees have 753 * the same prog type and JITed flag. 754 */ 755 enum bpf_prog_type type; 756 bool jited; 757 /* Programs with direct jumps into programs part of this array. */ 758 struct list_head poke_progs; 759 struct bpf_map *map; 760 struct mutex poke_mutex; 761 struct work_struct work; 762 }; 763 764 struct bpf_struct_ops_value; 765 struct btf_type; 766 struct btf_member; 767 768 #define BPF_STRUCT_OPS_MAX_NR_MEMBERS 64 769 struct bpf_struct_ops { 770 const struct bpf_verifier_ops *verifier_ops; 771 int (*init)(struct btf *btf); 772 int (*check_member)(const struct btf_type *t, 773 const struct btf_member *member); 774 int (*init_member)(const struct btf_type *t, 775 const struct btf_member *member, 776 void *kdata, const void *udata); 777 int (*reg)(void *kdata); 778 void (*unreg)(void *kdata); 779 const struct btf_type *type; 780 const struct btf_type *value_type; 781 const char *name; 782 struct btf_func_model func_models[BPF_STRUCT_OPS_MAX_NR_MEMBERS]; 783 u32 type_id; 784 u32 value_id; 785 }; 786 787 #if defined(CONFIG_BPF_JIT) && defined(CONFIG_BPF_SYSCALL) 788 #define BPF_MODULE_OWNER ((void *)((0xeB9FUL << 2) + POISON_POINTER_DELTA)) 789 const struct bpf_struct_ops *bpf_struct_ops_find(u32 type_id); 790 void bpf_struct_ops_init(struct btf *btf, struct bpf_verifier_log *log); 791 bool bpf_struct_ops_get(const void *kdata); 792 void bpf_struct_ops_put(const void *kdata); 793 int bpf_struct_ops_map_sys_lookup_elem(struct bpf_map *map, void *key, 794 void *value); 795 static inline bool bpf_try_module_get(const void *data, struct module *owner) 796 { 797 if (owner == BPF_MODULE_OWNER) 798 return bpf_struct_ops_get(data); 799 else 800 return try_module_get(owner); 801 } 802 static inline void bpf_module_put(const void *data, struct module *owner) 803 { 804 if (owner == BPF_MODULE_OWNER) 805 bpf_struct_ops_put(data); 806 else 807 module_put(owner); 808 } 809 #else 810 static inline const struct bpf_struct_ops *bpf_struct_ops_find(u32 type_id) 811 { 812 return NULL; 813 } 814 static inline void bpf_struct_ops_init(struct btf *btf, 815 struct bpf_verifier_log *log) 816 { 817 } 818 static inline bool bpf_try_module_get(const void *data, struct module *owner) 819 { 820 return try_module_get(owner); 821 } 822 static inline void bpf_module_put(const void *data, struct module *owner) 823 { 824 module_put(owner); 825 } 826 static inline int bpf_struct_ops_map_sys_lookup_elem(struct bpf_map *map, 827 void *key, 828 void *value) 829 { 830 return -EINVAL; 831 } 832 #endif 833 834 struct bpf_array { 835 struct bpf_map map; 836 u32 elem_size; 837 u32 index_mask; 838 struct bpf_array_aux *aux; 839 union { 840 char value[0] __aligned(8); 841 void *ptrs[0] __aligned(8); 842 void __percpu *pptrs[0] __aligned(8); 843 }; 844 }; 845 846 #define BPF_COMPLEXITY_LIMIT_INSNS 1000000 /* yes. 1M insns */ 847 #define MAX_TAIL_CALL_CNT 32 848 849 #define BPF_F_ACCESS_MASK (BPF_F_RDONLY | \ 850 BPF_F_RDONLY_PROG | \ 851 BPF_F_WRONLY | \ 852 BPF_F_WRONLY_PROG) 853 854 #define BPF_MAP_CAN_READ BIT(0) 855 #define BPF_MAP_CAN_WRITE BIT(1) 856 857 static inline u32 bpf_map_flags_to_cap(struct bpf_map *map) 858 { 859 u32 access_flags = map->map_flags & (BPF_F_RDONLY_PROG | BPF_F_WRONLY_PROG); 860 861 /* Combination of BPF_F_RDONLY_PROG | BPF_F_WRONLY_PROG is 862 * not possible. 863 */ 864 if (access_flags & BPF_F_RDONLY_PROG) 865 return BPF_MAP_CAN_READ; 866 else if (access_flags & BPF_F_WRONLY_PROG) 867 return BPF_MAP_CAN_WRITE; 868 else 869 return BPF_MAP_CAN_READ | BPF_MAP_CAN_WRITE; 870 } 871 872 static inline bool bpf_map_flags_access_ok(u32 access_flags) 873 { 874 return (access_flags & (BPF_F_RDONLY_PROG | BPF_F_WRONLY_PROG)) != 875 (BPF_F_RDONLY_PROG | BPF_F_WRONLY_PROG); 876 } 877 878 struct bpf_event_entry { 879 struct perf_event *event; 880 struct file *perf_file; 881 struct file *map_file; 882 struct rcu_head rcu; 883 }; 884 885 bool bpf_prog_array_compatible(struct bpf_array *array, const struct bpf_prog *fp); 886 int bpf_prog_calc_tag(struct bpf_prog *fp); 887 const char *kernel_type_name(u32 btf_type_id); 888 889 const struct bpf_func_proto *bpf_get_trace_printk_proto(void); 890 891 typedef unsigned long (*bpf_ctx_copy_t)(void *dst, const void *src, 892 unsigned long off, unsigned long len); 893 typedef u32 (*bpf_convert_ctx_access_t)(enum bpf_access_type type, 894 const struct bpf_insn *src, 895 struct bpf_insn *dst, 896 struct bpf_prog *prog, 897 u32 *target_size); 898 899 u64 bpf_event_output(struct bpf_map *map, u64 flags, void *meta, u64 meta_size, 900 void *ctx, u64 ctx_size, bpf_ctx_copy_t ctx_copy); 901 902 /* an array of programs to be executed under rcu_lock. 903 * 904 * Typical usage: 905 * ret = BPF_PROG_RUN_ARRAY(&bpf_prog_array, ctx, BPF_PROG_RUN); 906 * 907 * the structure returned by bpf_prog_array_alloc() should be populated 908 * with program pointers and the last pointer must be NULL. 909 * The user has to keep refcnt on the program and make sure the program 910 * is removed from the array before bpf_prog_put(). 911 * The 'struct bpf_prog_array *' should only be replaced with xchg() 912 * since other cpus are walking the array of pointers in parallel. 913 */ 914 struct bpf_prog_array_item { 915 struct bpf_prog *prog; 916 struct bpf_cgroup_storage *cgroup_storage[MAX_BPF_CGROUP_STORAGE_TYPE]; 917 }; 918 919 struct bpf_prog_array { 920 struct rcu_head rcu; 921 struct bpf_prog_array_item items[]; 922 }; 923 924 struct bpf_prog_array *bpf_prog_array_alloc(u32 prog_cnt, gfp_t flags); 925 void bpf_prog_array_free(struct bpf_prog_array *progs); 926 int bpf_prog_array_length(struct bpf_prog_array *progs); 927 bool bpf_prog_array_is_empty(struct bpf_prog_array *array); 928 int bpf_prog_array_copy_to_user(struct bpf_prog_array *progs, 929 __u32 __user *prog_ids, u32 cnt); 930 931 void bpf_prog_array_delete_safe(struct bpf_prog_array *progs, 932 struct bpf_prog *old_prog); 933 int bpf_prog_array_delete_safe_at(struct bpf_prog_array *array, int index); 934 int bpf_prog_array_update_at(struct bpf_prog_array *array, int index, 935 struct bpf_prog *prog); 936 int bpf_prog_array_copy_info(struct bpf_prog_array *array, 937 u32 *prog_ids, u32 request_cnt, 938 u32 *prog_cnt); 939 int bpf_prog_array_copy(struct bpf_prog_array *old_array, 940 struct bpf_prog *exclude_prog, 941 struct bpf_prog *include_prog, 942 struct bpf_prog_array **new_array); 943 944 #define __BPF_PROG_RUN_ARRAY(array, ctx, func, check_non_null) \ 945 ({ \ 946 struct bpf_prog_array_item *_item; \ 947 struct bpf_prog *_prog; \ 948 struct bpf_prog_array *_array; \ 949 u32 _ret = 1; \ 950 migrate_disable(); \ 951 rcu_read_lock(); \ 952 _array = rcu_dereference(array); \ 953 if (unlikely(check_non_null && !_array))\ 954 goto _out; \ 955 _item = &_array->items[0]; \ 956 while ((_prog = READ_ONCE(_item->prog))) { \ 957 bpf_cgroup_storage_set(_item->cgroup_storage); \ 958 _ret &= func(_prog, ctx); \ 959 _item++; \ 960 } \ 961 _out: \ 962 rcu_read_unlock(); \ 963 migrate_enable(); \ 964 _ret; \ 965 }) 966 967 /* To be used by __cgroup_bpf_run_filter_skb for EGRESS BPF progs 968 * so BPF programs can request cwr for TCP packets. 969 * 970 * Current cgroup skb programs can only return 0 or 1 (0 to drop the 971 * packet. This macro changes the behavior so the low order bit 972 * indicates whether the packet should be dropped (0) or not (1) 973 * and the next bit is a congestion notification bit. This could be 974 * used by TCP to call tcp_enter_cwr() 975 * 976 * Hence, new allowed return values of CGROUP EGRESS BPF programs are: 977 * 0: drop packet 978 * 1: keep packet 979 * 2: drop packet and cn 980 * 3: keep packet and cn 981 * 982 * This macro then converts it to one of the NET_XMIT or an error 983 * code that is then interpreted as drop packet (and no cn): 984 * 0: NET_XMIT_SUCCESS skb should be transmitted 985 * 1: NET_XMIT_DROP skb should be dropped and cn 986 * 2: NET_XMIT_CN skb should be transmitted and cn 987 * 3: -EPERM skb should be dropped 988 */ 989 #define BPF_PROG_CGROUP_INET_EGRESS_RUN_ARRAY(array, ctx, func) \ 990 ({ \ 991 struct bpf_prog_array_item *_item; \ 992 struct bpf_prog *_prog; \ 993 struct bpf_prog_array *_array; \ 994 u32 ret; \ 995 u32 _ret = 1; \ 996 u32 _cn = 0; \ 997 migrate_disable(); \ 998 rcu_read_lock(); \ 999 _array = rcu_dereference(array); \ 1000 _item = &_array->items[0]; \ 1001 while ((_prog = READ_ONCE(_item->prog))) { \ 1002 bpf_cgroup_storage_set(_item->cgroup_storage); \ 1003 ret = func(_prog, ctx); \ 1004 _ret &= (ret & 1); \ 1005 _cn |= (ret & 2); \ 1006 _item++; \ 1007 } \ 1008 rcu_read_unlock(); \ 1009 migrate_enable(); \ 1010 if (_ret) \ 1011 _ret = (_cn ? NET_XMIT_CN : NET_XMIT_SUCCESS); \ 1012 else \ 1013 _ret = (_cn ? NET_XMIT_DROP : -EPERM); \ 1014 _ret; \ 1015 }) 1016 1017 #define BPF_PROG_RUN_ARRAY(array, ctx, func) \ 1018 __BPF_PROG_RUN_ARRAY(array, ctx, func, false) 1019 1020 #define BPF_PROG_RUN_ARRAY_CHECK(array, ctx, func) \ 1021 __BPF_PROG_RUN_ARRAY(array, ctx, func, true) 1022 1023 #ifdef CONFIG_BPF_SYSCALL 1024 DECLARE_PER_CPU(int, bpf_prog_active); 1025 extern struct mutex bpf_stats_enabled_mutex; 1026 1027 /* 1028 * Block execution of BPF programs attached to instrumentation (perf, 1029 * kprobes, tracepoints) to prevent deadlocks on map operations as any of 1030 * these events can happen inside a region which holds a map bucket lock 1031 * and can deadlock on it. 1032 * 1033 * Use the preemption safe inc/dec variants on RT because migrate disable 1034 * is preemptible on RT and preemption in the middle of the RMW operation 1035 * might lead to inconsistent state. Use the raw variants for non RT 1036 * kernels as migrate_disable() maps to preempt_disable() so the slightly 1037 * more expensive save operation can be avoided. 1038 */ 1039 static inline void bpf_disable_instrumentation(void) 1040 { 1041 migrate_disable(); 1042 if (IS_ENABLED(CONFIG_PREEMPT_RT)) 1043 this_cpu_inc(bpf_prog_active); 1044 else 1045 __this_cpu_inc(bpf_prog_active); 1046 } 1047 1048 static inline void bpf_enable_instrumentation(void) 1049 { 1050 if (IS_ENABLED(CONFIG_PREEMPT_RT)) 1051 this_cpu_dec(bpf_prog_active); 1052 else 1053 __this_cpu_dec(bpf_prog_active); 1054 migrate_enable(); 1055 } 1056 1057 extern const struct file_operations bpf_map_fops; 1058 extern const struct file_operations bpf_prog_fops; 1059 extern const struct file_operations bpf_iter_fops; 1060 1061 #define BPF_PROG_TYPE(_id, _name, prog_ctx_type, kern_ctx_type) \ 1062 extern const struct bpf_prog_ops _name ## _prog_ops; \ 1063 extern const struct bpf_verifier_ops _name ## _verifier_ops; 1064 #define BPF_MAP_TYPE(_id, _ops) \ 1065 extern const struct bpf_map_ops _ops; 1066 #define BPF_LINK_TYPE(_id, _name) 1067 #include <linux/bpf_types.h> 1068 #undef BPF_PROG_TYPE 1069 #undef BPF_MAP_TYPE 1070 #undef BPF_LINK_TYPE 1071 1072 extern const struct bpf_prog_ops bpf_offload_prog_ops; 1073 extern const struct bpf_verifier_ops tc_cls_act_analyzer_ops; 1074 extern const struct bpf_verifier_ops xdp_analyzer_ops; 1075 1076 struct bpf_prog *bpf_prog_get(u32 ufd); 1077 struct bpf_prog *bpf_prog_get_type_dev(u32 ufd, enum bpf_prog_type type, 1078 bool attach_drv); 1079 void bpf_prog_add(struct bpf_prog *prog, int i); 1080 void bpf_prog_sub(struct bpf_prog *prog, int i); 1081 void bpf_prog_inc(struct bpf_prog *prog); 1082 struct bpf_prog * __must_check bpf_prog_inc_not_zero(struct bpf_prog *prog); 1083 void bpf_prog_put(struct bpf_prog *prog); 1084 int __bpf_prog_charge(struct user_struct *user, u32 pages); 1085 void __bpf_prog_uncharge(struct user_struct *user, u32 pages); 1086 void __bpf_free_used_maps(struct bpf_prog_aux *aux, 1087 struct bpf_map **used_maps, u32 len); 1088 1089 void bpf_prog_free_id(struct bpf_prog *prog, bool do_idr_lock); 1090 void bpf_map_free_id(struct bpf_map *map, bool do_idr_lock); 1091 1092 struct bpf_map *bpf_map_get(u32 ufd); 1093 struct bpf_map *bpf_map_get_with_uref(u32 ufd); 1094 struct bpf_map *__bpf_map_get(struct fd f); 1095 void bpf_map_inc(struct bpf_map *map); 1096 void bpf_map_inc_with_uref(struct bpf_map *map); 1097 struct bpf_map * __must_check bpf_map_inc_not_zero(struct bpf_map *map); 1098 void bpf_map_put_with_uref(struct bpf_map *map); 1099 void bpf_map_put(struct bpf_map *map); 1100 int bpf_map_charge_memlock(struct bpf_map *map, u32 pages); 1101 void bpf_map_uncharge_memlock(struct bpf_map *map, u32 pages); 1102 int bpf_map_charge_init(struct bpf_map_memory *mem, u64 size); 1103 void bpf_map_charge_finish(struct bpf_map_memory *mem); 1104 void bpf_map_charge_move(struct bpf_map_memory *dst, 1105 struct bpf_map_memory *src); 1106 void *bpf_map_area_alloc(u64 size, int numa_node); 1107 void *bpf_map_area_mmapable_alloc(u64 size, int numa_node); 1108 void bpf_map_area_free(void *base); 1109 void bpf_map_init_from_attr(struct bpf_map *map, union bpf_attr *attr); 1110 int generic_map_lookup_batch(struct bpf_map *map, 1111 const union bpf_attr *attr, 1112 union bpf_attr __user *uattr); 1113 int generic_map_update_batch(struct bpf_map *map, 1114 const union bpf_attr *attr, 1115 union bpf_attr __user *uattr); 1116 int generic_map_delete_batch(struct bpf_map *map, 1117 const union bpf_attr *attr, 1118 union bpf_attr __user *uattr); 1119 struct bpf_map *bpf_map_get_curr_or_next(u32 *id); 1120 1121 extern int sysctl_unprivileged_bpf_disabled; 1122 1123 static inline bool bpf_allow_ptr_leaks(void) 1124 { 1125 return perfmon_capable(); 1126 } 1127 1128 static inline bool bpf_allow_ptr_to_map_access(void) 1129 { 1130 return perfmon_capable(); 1131 } 1132 1133 static inline bool bpf_bypass_spec_v1(void) 1134 { 1135 return perfmon_capable(); 1136 } 1137 1138 static inline bool bpf_bypass_spec_v4(void) 1139 { 1140 return perfmon_capable(); 1141 } 1142 1143 int bpf_map_new_fd(struct bpf_map *map, int flags); 1144 int bpf_prog_new_fd(struct bpf_prog *prog); 1145 1146 struct bpf_link { 1147 atomic64_t refcnt; 1148 u32 id; 1149 enum bpf_link_type type; 1150 const struct bpf_link_ops *ops; 1151 struct bpf_prog *prog; 1152 struct work_struct work; 1153 }; 1154 1155 struct bpf_link_primer { 1156 struct bpf_link *link; 1157 struct file *file; 1158 int fd; 1159 u32 id; 1160 }; 1161 1162 struct bpf_link_ops { 1163 void (*release)(struct bpf_link *link); 1164 void (*dealloc)(struct bpf_link *link); 1165 int (*update_prog)(struct bpf_link *link, struct bpf_prog *new_prog, 1166 struct bpf_prog *old_prog); 1167 void (*show_fdinfo)(const struct bpf_link *link, struct seq_file *seq); 1168 int (*fill_link_info)(const struct bpf_link *link, 1169 struct bpf_link_info *info); 1170 }; 1171 1172 void bpf_link_init(struct bpf_link *link, enum bpf_link_type type, 1173 const struct bpf_link_ops *ops, struct bpf_prog *prog); 1174 int bpf_link_prime(struct bpf_link *link, struct bpf_link_primer *primer); 1175 int bpf_link_settle(struct bpf_link_primer *primer); 1176 void bpf_link_cleanup(struct bpf_link_primer *primer); 1177 void bpf_link_inc(struct bpf_link *link); 1178 void bpf_link_put(struct bpf_link *link); 1179 int bpf_link_new_fd(struct bpf_link *link); 1180 struct file *bpf_link_new_file(struct bpf_link *link, int *reserved_fd); 1181 struct bpf_link *bpf_link_get_from_fd(u32 ufd); 1182 1183 int bpf_obj_pin_user(u32 ufd, const char __user *pathname); 1184 int bpf_obj_get_user(const char __user *pathname, int flags); 1185 1186 #define BPF_ITER_FUNC_PREFIX "bpf_iter_" 1187 #define DEFINE_BPF_ITER_FUNC(target, args...) \ 1188 extern int bpf_iter_ ## target(args); \ 1189 int __init bpf_iter_ ## target(args) { return 0; } 1190 1191 typedef int (*bpf_iter_init_seq_priv_t)(void *private_data); 1192 typedef void (*bpf_iter_fini_seq_priv_t)(void *private_data); 1193 1194 #define BPF_ITER_CTX_ARG_MAX 2 1195 struct bpf_iter_reg { 1196 const char *target; 1197 const struct seq_operations *seq_ops; 1198 bpf_iter_init_seq_priv_t init_seq_private; 1199 bpf_iter_fini_seq_priv_t fini_seq_private; 1200 u32 seq_priv_size; 1201 u32 ctx_arg_info_size; 1202 struct bpf_ctx_arg_aux ctx_arg_info[BPF_ITER_CTX_ARG_MAX]; 1203 }; 1204 1205 struct bpf_iter_meta { 1206 __bpf_md_ptr(struct seq_file *, seq); 1207 u64 session_id; 1208 u64 seq_num; 1209 }; 1210 1211 int bpf_iter_reg_target(const struct bpf_iter_reg *reg_info); 1212 void bpf_iter_unreg_target(const struct bpf_iter_reg *reg_info); 1213 bool bpf_iter_prog_supported(struct bpf_prog *prog); 1214 int bpf_iter_link_attach(const union bpf_attr *attr, struct bpf_prog *prog); 1215 int bpf_iter_new_fd(struct bpf_link *link); 1216 bool bpf_link_is_iter(struct bpf_link *link); 1217 struct bpf_prog *bpf_iter_get_info(struct bpf_iter_meta *meta, bool in_stop); 1218 int bpf_iter_run_prog(struct bpf_prog *prog, void *ctx); 1219 1220 int bpf_percpu_hash_copy(struct bpf_map *map, void *key, void *value); 1221 int bpf_percpu_array_copy(struct bpf_map *map, void *key, void *value); 1222 int bpf_percpu_hash_update(struct bpf_map *map, void *key, void *value, 1223 u64 flags); 1224 int bpf_percpu_array_update(struct bpf_map *map, void *key, void *value, 1225 u64 flags); 1226 1227 int bpf_stackmap_copy(struct bpf_map *map, void *key, void *value); 1228 1229 int bpf_fd_array_map_update_elem(struct bpf_map *map, struct file *map_file, 1230 void *key, void *value, u64 map_flags); 1231 int bpf_fd_array_map_lookup_elem(struct bpf_map *map, void *key, u32 *value); 1232 int bpf_fd_htab_map_update_elem(struct bpf_map *map, struct file *map_file, 1233 void *key, void *value, u64 map_flags); 1234 int bpf_fd_htab_map_lookup_elem(struct bpf_map *map, void *key, u32 *value); 1235 1236 int bpf_get_file_flag(int flags); 1237 int bpf_check_uarg_tail_zero(void __user *uaddr, size_t expected_size, 1238 size_t actual_size); 1239 1240 /* memcpy that is used with 8-byte aligned pointers, power-of-8 size and 1241 * forced to use 'long' read/writes to try to atomically copy long counters. 1242 * Best-effort only. No barriers here, since it _will_ race with concurrent 1243 * updates from BPF programs. Called from bpf syscall and mostly used with 1244 * size 8 or 16 bytes, so ask compiler to inline it. 1245 */ 1246 static inline void bpf_long_memcpy(void *dst, const void *src, u32 size) 1247 { 1248 const long *lsrc = src; 1249 long *ldst = dst; 1250 1251 size /= sizeof(long); 1252 while (size--) 1253 *ldst++ = *lsrc++; 1254 } 1255 1256 /* verify correctness of eBPF program */ 1257 int bpf_check(struct bpf_prog **fp, union bpf_attr *attr, 1258 union bpf_attr __user *uattr); 1259 void bpf_patch_call_args(struct bpf_insn *insn, u32 stack_depth); 1260 1261 /* Map specifics */ 1262 struct xdp_buff; 1263 struct sk_buff; 1264 1265 struct bpf_dtab_netdev *__dev_map_lookup_elem(struct bpf_map *map, u32 key); 1266 struct bpf_dtab_netdev *__dev_map_hash_lookup_elem(struct bpf_map *map, u32 key); 1267 void __dev_flush(void); 1268 int dev_xdp_enqueue(struct net_device *dev, struct xdp_buff *xdp, 1269 struct net_device *dev_rx); 1270 int dev_map_enqueue(struct bpf_dtab_netdev *dst, struct xdp_buff *xdp, 1271 struct net_device *dev_rx); 1272 int dev_map_generic_redirect(struct bpf_dtab_netdev *dst, struct sk_buff *skb, 1273 struct bpf_prog *xdp_prog); 1274 bool dev_map_can_have_prog(struct bpf_map *map); 1275 1276 struct bpf_cpu_map_entry *__cpu_map_lookup_elem(struct bpf_map *map, u32 key); 1277 void __cpu_map_flush(void); 1278 int cpu_map_enqueue(struct bpf_cpu_map_entry *rcpu, struct xdp_buff *xdp, 1279 struct net_device *dev_rx); 1280 bool cpu_map_prog_allowed(struct bpf_map *map); 1281 1282 /* Return map's numa specified by userspace */ 1283 static inline int bpf_map_attr_numa_node(const union bpf_attr *attr) 1284 { 1285 return (attr->map_flags & BPF_F_NUMA_NODE) ? 1286 attr->numa_node : NUMA_NO_NODE; 1287 } 1288 1289 struct bpf_prog *bpf_prog_get_type_path(const char *name, enum bpf_prog_type type); 1290 int array_map_alloc_check(union bpf_attr *attr); 1291 1292 int bpf_prog_test_run_xdp(struct bpf_prog *prog, const union bpf_attr *kattr, 1293 union bpf_attr __user *uattr); 1294 int bpf_prog_test_run_skb(struct bpf_prog *prog, const union bpf_attr *kattr, 1295 union bpf_attr __user *uattr); 1296 int bpf_prog_test_run_tracing(struct bpf_prog *prog, 1297 const union bpf_attr *kattr, 1298 union bpf_attr __user *uattr); 1299 int bpf_prog_test_run_flow_dissector(struct bpf_prog *prog, 1300 const union bpf_attr *kattr, 1301 union bpf_attr __user *uattr); 1302 bool btf_ctx_access(int off, int size, enum bpf_access_type type, 1303 const struct bpf_prog *prog, 1304 struct bpf_insn_access_aux *info); 1305 int btf_struct_access(struct bpf_verifier_log *log, 1306 const struct btf_type *t, int off, int size, 1307 enum bpf_access_type atype, 1308 u32 *next_btf_id); 1309 int btf_resolve_helper_id(struct bpf_verifier_log *log, 1310 const struct bpf_func_proto *fn, int); 1311 1312 int btf_distill_func_proto(struct bpf_verifier_log *log, 1313 struct btf *btf, 1314 const struct btf_type *func_proto, 1315 const char *func_name, 1316 struct btf_func_model *m); 1317 1318 struct bpf_reg_state; 1319 int btf_check_func_arg_match(struct bpf_verifier_env *env, int subprog, 1320 struct bpf_reg_state *regs); 1321 int btf_prepare_func_args(struct bpf_verifier_env *env, int subprog, 1322 struct bpf_reg_state *reg); 1323 int btf_check_type_match(struct bpf_verifier_env *env, struct bpf_prog *prog, 1324 struct btf *btf, const struct btf_type *t); 1325 1326 struct bpf_prog *bpf_prog_by_id(u32 id); 1327 1328 const struct bpf_func_proto *bpf_base_func_proto(enum bpf_func_id func_id); 1329 #else /* !CONFIG_BPF_SYSCALL */ 1330 static inline struct bpf_prog *bpf_prog_get(u32 ufd) 1331 { 1332 return ERR_PTR(-EOPNOTSUPP); 1333 } 1334 1335 static inline struct bpf_prog *bpf_prog_get_type_dev(u32 ufd, 1336 enum bpf_prog_type type, 1337 bool attach_drv) 1338 { 1339 return ERR_PTR(-EOPNOTSUPP); 1340 } 1341 1342 static inline void bpf_prog_add(struct bpf_prog *prog, int i) 1343 { 1344 } 1345 1346 static inline void bpf_prog_sub(struct bpf_prog *prog, int i) 1347 { 1348 } 1349 1350 static inline void bpf_prog_put(struct bpf_prog *prog) 1351 { 1352 } 1353 1354 static inline void bpf_prog_inc(struct bpf_prog *prog) 1355 { 1356 } 1357 1358 static inline struct bpf_prog *__must_check 1359 bpf_prog_inc_not_zero(struct bpf_prog *prog) 1360 { 1361 return ERR_PTR(-EOPNOTSUPP); 1362 } 1363 1364 static inline int __bpf_prog_charge(struct user_struct *user, u32 pages) 1365 { 1366 return 0; 1367 } 1368 1369 static inline void __bpf_prog_uncharge(struct user_struct *user, u32 pages) 1370 { 1371 } 1372 1373 static inline int bpf_obj_get_user(const char __user *pathname, int flags) 1374 { 1375 return -EOPNOTSUPP; 1376 } 1377 1378 static inline struct net_device *__dev_map_lookup_elem(struct bpf_map *map, 1379 u32 key) 1380 { 1381 return NULL; 1382 } 1383 1384 static inline struct net_device *__dev_map_hash_lookup_elem(struct bpf_map *map, 1385 u32 key) 1386 { 1387 return NULL; 1388 } 1389 static inline bool dev_map_can_have_prog(struct bpf_map *map) 1390 { 1391 return false; 1392 } 1393 1394 static inline void __dev_flush(void) 1395 { 1396 } 1397 1398 struct xdp_buff; 1399 struct bpf_dtab_netdev; 1400 1401 static inline 1402 int dev_xdp_enqueue(struct net_device *dev, struct xdp_buff *xdp, 1403 struct net_device *dev_rx) 1404 { 1405 return 0; 1406 } 1407 1408 static inline 1409 int dev_map_enqueue(struct bpf_dtab_netdev *dst, struct xdp_buff *xdp, 1410 struct net_device *dev_rx) 1411 { 1412 return 0; 1413 } 1414 1415 struct sk_buff; 1416 1417 static inline int dev_map_generic_redirect(struct bpf_dtab_netdev *dst, 1418 struct sk_buff *skb, 1419 struct bpf_prog *xdp_prog) 1420 { 1421 return 0; 1422 } 1423 1424 static inline 1425 struct bpf_cpu_map_entry *__cpu_map_lookup_elem(struct bpf_map *map, u32 key) 1426 { 1427 return NULL; 1428 } 1429 1430 static inline void __cpu_map_flush(void) 1431 { 1432 } 1433 1434 static inline int cpu_map_enqueue(struct bpf_cpu_map_entry *rcpu, 1435 struct xdp_buff *xdp, 1436 struct net_device *dev_rx) 1437 { 1438 return 0; 1439 } 1440 1441 static inline bool cpu_map_prog_allowed(struct bpf_map *map) 1442 { 1443 return false; 1444 } 1445 1446 static inline struct bpf_prog *bpf_prog_get_type_path(const char *name, 1447 enum bpf_prog_type type) 1448 { 1449 return ERR_PTR(-EOPNOTSUPP); 1450 } 1451 1452 static inline int bpf_prog_test_run_xdp(struct bpf_prog *prog, 1453 const union bpf_attr *kattr, 1454 union bpf_attr __user *uattr) 1455 { 1456 return -ENOTSUPP; 1457 } 1458 1459 static inline int bpf_prog_test_run_skb(struct bpf_prog *prog, 1460 const union bpf_attr *kattr, 1461 union bpf_attr __user *uattr) 1462 { 1463 return -ENOTSUPP; 1464 } 1465 1466 static inline int bpf_prog_test_run_tracing(struct bpf_prog *prog, 1467 const union bpf_attr *kattr, 1468 union bpf_attr __user *uattr) 1469 { 1470 return -ENOTSUPP; 1471 } 1472 1473 static inline int bpf_prog_test_run_flow_dissector(struct bpf_prog *prog, 1474 const union bpf_attr *kattr, 1475 union bpf_attr __user *uattr) 1476 { 1477 return -ENOTSUPP; 1478 } 1479 1480 static inline void bpf_map_put(struct bpf_map *map) 1481 { 1482 } 1483 1484 static inline struct bpf_prog *bpf_prog_by_id(u32 id) 1485 { 1486 return ERR_PTR(-ENOTSUPP); 1487 } 1488 1489 static inline const struct bpf_func_proto * 1490 bpf_base_func_proto(enum bpf_func_id func_id) 1491 { 1492 return NULL; 1493 } 1494 #endif /* CONFIG_BPF_SYSCALL */ 1495 1496 static inline struct bpf_prog *bpf_prog_get_type(u32 ufd, 1497 enum bpf_prog_type type) 1498 { 1499 return bpf_prog_get_type_dev(ufd, type, false); 1500 } 1501 1502 bool bpf_prog_get_ok(struct bpf_prog *, enum bpf_prog_type *, bool); 1503 1504 int bpf_prog_offload_compile(struct bpf_prog *prog); 1505 void bpf_prog_offload_destroy(struct bpf_prog *prog); 1506 int bpf_prog_offload_info_fill(struct bpf_prog_info *info, 1507 struct bpf_prog *prog); 1508 1509 int bpf_map_offload_info_fill(struct bpf_map_info *info, struct bpf_map *map); 1510 1511 int bpf_map_offload_lookup_elem(struct bpf_map *map, void *key, void *value); 1512 int bpf_map_offload_update_elem(struct bpf_map *map, 1513 void *key, void *value, u64 flags); 1514 int bpf_map_offload_delete_elem(struct bpf_map *map, void *key); 1515 int bpf_map_offload_get_next_key(struct bpf_map *map, 1516 void *key, void *next_key); 1517 1518 bool bpf_offload_prog_map_match(struct bpf_prog *prog, struct bpf_map *map); 1519 1520 struct bpf_offload_dev * 1521 bpf_offload_dev_create(const struct bpf_prog_offload_ops *ops, void *priv); 1522 void bpf_offload_dev_destroy(struct bpf_offload_dev *offdev); 1523 void *bpf_offload_dev_priv(struct bpf_offload_dev *offdev); 1524 int bpf_offload_dev_netdev_register(struct bpf_offload_dev *offdev, 1525 struct net_device *netdev); 1526 void bpf_offload_dev_netdev_unregister(struct bpf_offload_dev *offdev, 1527 struct net_device *netdev); 1528 bool bpf_offload_dev_match(struct bpf_prog *prog, struct net_device *netdev); 1529 1530 #if defined(CONFIG_NET) && defined(CONFIG_BPF_SYSCALL) 1531 int bpf_prog_offload_init(struct bpf_prog *prog, union bpf_attr *attr); 1532 1533 static inline bool bpf_prog_is_dev_bound(const struct bpf_prog_aux *aux) 1534 { 1535 return aux->offload_requested; 1536 } 1537 1538 static inline bool bpf_map_is_dev_bound(struct bpf_map *map) 1539 { 1540 return unlikely(map->ops == &bpf_map_offload_ops); 1541 } 1542 1543 struct bpf_map *bpf_map_offload_map_alloc(union bpf_attr *attr); 1544 void bpf_map_offload_map_free(struct bpf_map *map); 1545 #else 1546 static inline int bpf_prog_offload_init(struct bpf_prog *prog, 1547 union bpf_attr *attr) 1548 { 1549 return -EOPNOTSUPP; 1550 } 1551 1552 static inline bool bpf_prog_is_dev_bound(struct bpf_prog_aux *aux) 1553 { 1554 return false; 1555 } 1556 1557 static inline bool bpf_map_is_dev_bound(struct bpf_map *map) 1558 { 1559 return false; 1560 } 1561 1562 static inline struct bpf_map *bpf_map_offload_map_alloc(union bpf_attr *attr) 1563 { 1564 return ERR_PTR(-EOPNOTSUPP); 1565 } 1566 1567 static inline void bpf_map_offload_map_free(struct bpf_map *map) 1568 { 1569 } 1570 #endif /* CONFIG_NET && CONFIG_BPF_SYSCALL */ 1571 1572 #if defined(CONFIG_BPF_STREAM_PARSER) 1573 int sock_map_prog_update(struct bpf_map *map, struct bpf_prog *prog, 1574 struct bpf_prog *old, u32 which); 1575 int sock_map_get_from_fd(const union bpf_attr *attr, struct bpf_prog *prog); 1576 int sock_map_prog_detach(const union bpf_attr *attr, enum bpf_prog_type ptype); 1577 void sock_map_unhash(struct sock *sk); 1578 void sock_map_close(struct sock *sk, long timeout); 1579 #else 1580 static inline int sock_map_prog_update(struct bpf_map *map, 1581 struct bpf_prog *prog, 1582 struct bpf_prog *old, u32 which) 1583 { 1584 return -EOPNOTSUPP; 1585 } 1586 1587 static inline int sock_map_get_from_fd(const union bpf_attr *attr, 1588 struct bpf_prog *prog) 1589 { 1590 return -EINVAL; 1591 } 1592 1593 static inline int sock_map_prog_detach(const union bpf_attr *attr, 1594 enum bpf_prog_type ptype) 1595 { 1596 return -EOPNOTSUPP; 1597 } 1598 #endif /* CONFIG_BPF_STREAM_PARSER */ 1599 1600 #if defined(CONFIG_INET) && defined(CONFIG_BPF_SYSCALL) 1601 void bpf_sk_reuseport_detach(struct sock *sk); 1602 int bpf_fd_reuseport_array_lookup_elem(struct bpf_map *map, void *key, 1603 void *value); 1604 int bpf_fd_reuseport_array_update_elem(struct bpf_map *map, void *key, 1605 void *value, u64 map_flags); 1606 #else 1607 static inline void bpf_sk_reuseport_detach(struct sock *sk) 1608 { 1609 } 1610 1611 #ifdef CONFIG_BPF_SYSCALL 1612 static inline int bpf_fd_reuseport_array_lookup_elem(struct bpf_map *map, 1613 void *key, void *value) 1614 { 1615 return -EOPNOTSUPP; 1616 } 1617 1618 static inline int bpf_fd_reuseport_array_update_elem(struct bpf_map *map, 1619 void *key, void *value, 1620 u64 map_flags) 1621 { 1622 return -EOPNOTSUPP; 1623 } 1624 #endif /* CONFIG_BPF_SYSCALL */ 1625 #endif /* defined(CONFIG_INET) && defined(CONFIG_BPF_SYSCALL) */ 1626 1627 /* verifier prototypes for helper functions called from eBPF programs */ 1628 extern const struct bpf_func_proto bpf_map_lookup_elem_proto; 1629 extern const struct bpf_func_proto bpf_map_update_elem_proto; 1630 extern const struct bpf_func_proto bpf_map_delete_elem_proto; 1631 extern const struct bpf_func_proto bpf_map_push_elem_proto; 1632 extern const struct bpf_func_proto bpf_map_pop_elem_proto; 1633 extern const struct bpf_func_proto bpf_map_peek_elem_proto; 1634 1635 extern const struct bpf_func_proto bpf_get_prandom_u32_proto; 1636 extern const struct bpf_func_proto bpf_get_smp_processor_id_proto; 1637 extern const struct bpf_func_proto bpf_get_numa_node_id_proto; 1638 extern const struct bpf_func_proto bpf_tail_call_proto; 1639 extern const struct bpf_func_proto bpf_ktime_get_ns_proto; 1640 extern const struct bpf_func_proto bpf_ktime_get_boot_ns_proto; 1641 extern const struct bpf_func_proto bpf_get_current_pid_tgid_proto; 1642 extern const struct bpf_func_proto bpf_get_current_uid_gid_proto; 1643 extern const struct bpf_func_proto bpf_get_current_comm_proto; 1644 extern const struct bpf_func_proto bpf_get_stackid_proto; 1645 extern const struct bpf_func_proto bpf_get_stack_proto; 1646 extern const struct bpf_func_proto bpf_get_task_stack_proto; 1647 extern const struct bpf_func_proto bpf_sock_map_update_proto; 1648 extern const struct bpf_func_proto bpf_sock_hash_update_proto; 1649 extern const struct bpf_func_proto bpf_get_current_cgroup_id_proto; 1650 extern const struct bpf_func_proto bpf_get_current_ancestor_cgroup_id_proto; 1651 extern const struct bpf_func_proto bpf_msg_redirect_hash_proto; 1652 extern const struct bpf_func_proto bpf_msg_redirect_map_proto; 1653 extern const struct bpf_func_proto bpf_sk_redirect_hash_proto; 1654 extern const struct bpf_func_proto bpf_sk_redirect_map_proto; 1655 extern const struct bpf_func_proto bpf_spin_lock_proto; 1656 extern const struct bpf_func_proto bpf_spin_unlock_proto; 1657 extern const struct bpf_func_proto bpf_get_local_storage_proto; 1658 extern const struct bpf_func_proto bpf_strtol_proto; 1659 extern const struct bpf_func_proto bpf_strtoul_proto; 1660 extern const struct bpf_func_proto bpf_tcp_sock_proto; 1661 extern const struct bpf_func_proto bpf_jiffies64_proto; 1662 extern const struct bpf_func_proto bpf_get_ns_current_pid_tgid_proto; 1663 extern const struct bpf_func_proto bpf_event_output_data_proto; 1664 extern const struct bpf_func_proto bpf_ringbuf_output_proto; 1665 extern const struct bpf_func_proto bpf_ringbuf_reserve_proto; 1666 extern const struct bpf_func_proto bpf_ringbuf_submit_proto; 1667 extern const struct bpf_func_proto bpf_ringbuf_discard_proto; 1668 extern const struct bpf_func_proto bpf_ringbuf_query_proto; 1669 extern const struct bpf_func_proto bpf_skc_to_tcp6_sock_proto; 1670 extern const struct bpf_func_proto bpf_skc_to_tcp_sock_proto; 1671 extern const struct bpf_func_proto bpf_skc_to_tcp_timewait_sock_proto; 1672 extern const struct bpf_func_proto bpf_skc_to_tcp_request_sock_proto; 1673 extern const struct bpf_func_proto bpf_skc_to_udp6_sock_proto; 1674 1675 const struct bpf_func_proto *bpf_tracing_func_proto( 1676 enum bpf_func_id func_id, const struct bpf_prog *prog); 1677 1678 const struct bpf_func_proto *tracing_prog_func_proto( 1679 enum bpf_func_id func_id, const struct bpf_prog *prog); 1680 1681 /* Shared helpers among cBPF and eBPF. */ 1682 void bpf_user_rnd_init_once(void); 1683 u64 bpf_user_rnd_u32(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5); 1684 u64 bpf_get_raw_cpu_id(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5); 1685 1686 #if defined(CONFIG_NET) 1687 bool bpf_sock_common_is_valid_access(int off, int size, 1688 enum bpf_access_type type, 1689 struct bpf_insn_access_aux *info); 1690 bool bpf_sock_is_valid_access(int off, int size, enum bpf_access_type type, 1691 struct bpf_insn_access_aux *info); 1692 u32 bpf_sock_convert_ctx_access(enum bpf_access_type type, 1693 const struct bpf_insn *si, 1694 struct bpf_insn *insn_buf, 1695 struct bpf_prog *prog, 1696 u32 *target_size); 1697 #else 1698 static inline bool bpf_sock_common_is_valid_access(int off, int size, 1699 enum bpf_access_type type, 1700 struct bpf_insn_access_aux *info) 1701 { 1702 return false; 1703 } 1704 static inline bool bpf_sock_is_valid_access(int off, int size, 1705 enum bpf_access_type type, 1706 struct bpf_insn_access_aux *info) 1707 { 1708 return false; 1709 } 1710 static inline u32 bpf_sock_convert_ctx_access(enum bpf_access_type type, 1711 const struct bpf_insn *si, 1712 struct bpf_insn *insn_buf, 1713 struct bpf_prog *prog, 1714 u32 *target_size) 1715 { 1716 return 0; 1717 } 1718 #endif 1719 1720 #ifdef CONFIG_INET 1721 struct sk_reuseport_kern { 1722 struct sk_buff *skb; 1723 struct sock *sk; 1724 struct sock *selected_sk; 1725 void *data_end; 1726 u32 hash; 1727 u32 reuseport_id; 1728 bool bind_inany; 1729 }; 1730 bool bpf_tcp_sock_is_valid_access(int off, int size, enum bpf_access_type type, 1731 struct bpf_insn_access_aux *info); 1732 1733 u32 bpf_tcp_sock_convert_ctx_access(enum bpf_access_type type, 1734 const struct bpf_insn *si, 1735 struct bpf_insn *insn_buf, 1736 struct bpf_prog *prog, 1737 u32 *target_size); 1738 1739 bool bpf_xdp_sock_is_valid_access(int off, int size, enum bpf_access_type type, 1740 struct bpf_insn_access_aux *info); 1741 1742 u32 bpf_xdp_sock_convert_ctx_access(enum bpf_access_type type, 1743 const struct bpf_insn *si, 1744 struct bpf_insn *insn_buf, 1745 struct bpf_prog *prog, 1746 u32 *target_size); 1747 #else 1748 static inline bool bpf_tcp_sock_is_valid_access(int off, int size, 1749 enum bpf_access_type type, 1750 struct bpf_insn_access_aux *info) 1751 { 1752 return false; 1753 } 1754 1755 static inline u32 bpf_tcp_sock_convert_ctx_access(enum bpf_access_type type, 1756 const struct bpf_insn *si, 1757 struct bpf_insn *insn_buf, 1758 struct bpf_prog *prog, 1759 u32 *target_size) 1760 { 1761 return 0; 1762 } 1763 static inline bool bpf_xdp_sock_is_valid_access(int off, int size, 1764 enum bpf_access_type type, 1765 struct bpf_insn_access_aux *info) 1766 { 1767 return false; 1768 } 1769 1770 static inline u32 bpf_xdp_sock_convert_ctx_access(enum bpf_access_type type, 1771 const struct bpf_insn *si, 1772 struct bpf_insn *insn_buf, 1773 struct bpf_prog *prog, 1774 u32 *target_size) 1775 { 1776 return 0; 1777 } 1778 #endif /* CONFIG_INET */ 1779 1780 enum bpf_text_poke_type { 1781 BPF_MOD_CALL, 1782 BPF_MOD_JUMP, 1783 }; 1784 1785 int bpf_arch_text_poke(void *ip, enum bpf_text_poke_type t, 1786 void *addr1, void *addr2); 1787 1788 #endif /* _LINUX_BPF_H */ 1789