1 // SPDX-License-Identifier: GPL-2.0-only 2 /* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com 3 */ 4 #include <linux/bpf.h> 5 #include <linux/bpf-cgroup.h> 6 #include <linux/bpf_trace.h> 7 #include <linux/bpf_lirc.h> 8 #include <linux/bpf_verifier.h> 9 #include <linux/bsearch.h> 10 #include <linux/btf.h> 11 #include <linux/syscalls.h> 12 #include <linux/slab.h> 13 #include <linux/sched/signal.h> 14 #include <linux/vmalloc.h> 15 #include <linux/mmzone.h> 16 #include <linux/anon_inodes.h> 17 #include <linux/fdtable.h> 18 #include <linux/file.h> 19 #include <linux/fs.h> 20 #include <linux/license.h> 21 #include <linux/filter.h> 22 #include <linux/kernel.h> 23 #include <linux/idr.h> 24 #include <linux/cred.h> 25 #include <linux/timekeeping.h> 26 #include <linux/ctype.h> 27 #include <linux/nospec.h> 28 #include <linux/audit.h> 29 #include <uapi/linux/btf.h> 30 #include <linux/pgtable.h> 31 #include <linux/bpf_lsm.h> 32 #include <linux/poll.h> 33 #include <linux/sort.h> 34 #include <linux/bpf-netns.h> 35 #include <linux/rcupdate_trace.h> 36 #include <linux/memcontrol.h> 37 #include <linux/trace_events.h> 38 39 #include <net/netfilter/nf_bpf_link.h> 40 #include <net/netkit.h> 41 #include <net/tcx.h> 42 43 #define IS_FD_ARRAY(map) ((map)->map_type == BPF_MAP_TYPE_PERF_EVENT_ARRAY || \ 44 (map)->map_type == BPF_MAP_TYPE_CGROUP_ARRAY || \ 45 (map)->map_type == BPF_MAP_TYPE_ARRAY_OF_MAPS) 46 #define IS_FD_PROG_ARRAY(map) ((map)->map_type == BPF_MAP_TYPE_PROG_ARRAY) 47 #define IS_FD_HASH(map) ((map)->map_type == BPF_MAP_TYPE_HASH_OF_MAPS) 48 #define IS_FD_MAP(map) (IS_FD_ARRAY(map) || IS_FD_PROG_ARRAY(map) || \ 49 IS_FD_HASH(map)) 50 51 #define BPF_OBJ_FLAG_MASK (BPF_F_RDONLY | BPF_F_WRONLY) 52 53 DEFINE_PER_CPU(int, bpf_prog_active); 54 static DEFINE_IDR(prog_idr); 55 static DEFINE_SPINLOCK(prog_idr_lock); 56 static DEFINE_IDR(map_idr); 57 static DEFINE_SPINLOCK(map_idr_lock); 58 static DEFINE_IDR(link_idr); 59 static DEFINE_SPINLOCK(link_idr_lock); 60 61 int sysctl_unprivileged_bpf_disabled __read_mostly = 62 IS_BUILTIN(CONFIG_BPF_UNPRIV_DEFAULT_OFF) ? 2 : 0; 63 64 static const struct bpf_map_ops * const bpf_map_types[] = { 65 #define BPF_PROG_TYPE(_id, _name, prog_ctx_type, kern_ctx_type) 66 #define BPF_MAP_TYPE(_id, _ops) \ 67 [_id] = &_ops, 68 #define BPF_LINK_TYPE(_id, _name) 69 #include <linux/bpf_types.h> 70 #undef BPF_PROG_TYPE 71 #undef BPF_MAP_TYPE 72 #undef BPF_LINK_TYPE 73 }; 74 75 /* 76 * If we're handed a bigger struct than we know of, ensure all the unknown bits 77 * are 0 - i.e. new user-space does not rely on any kernel feature extensions 78 * we don't know about yet. 79 * 80 * There is a ToCToU between this function call and the following 81 * copy_from_user() call. However, this is not a concern since this function is 82 * meant to be a future-proofing of bits. 83 */ 84 int bpf_check_uarg_tail_zero(bpfptr_t uaddr, 85 size_t expected_size, 86 size_t actual_size) 87 { 88 int res; 89 90 if (unlikely(actual_size > PAGE_SIZE)) /* silly large */ 91 return -E2BIG; 92 93 if (actual_size <= expected_size) 94 return 0; 95 96 if (uaddr.is_kernel) 97 res = memchr_inv(uaddr.kernel + expected_size, 0, 98 actual_size - expected_size) == NULL; 99 else 100 res = check_zeroed_user(uaddr.user + expected_size, 101 actual_size - expected_size); 102 if (res < 0) 103 return res; 104 return res ? 0 : -E2BIG; 105 } 106 107 const struct bpf_map_ops bpf_map_offload_ops = { 108 .map_meta_equal = bpf_map_meta_equal, 109 .map_alloc = bpf_map_offload_map_alloc, 110 .map_free = bpf_map_offload_map_free, 111 .map_check_btf = map_check_no_btf, 112 .map_mem_usage = bpf_map_offload_map_mem_usage, 113 }; 114 115 static void bpf_map_write_active_inc(struct bpf_map *map) 116 { 117 atomic64_inc(&map->writecnt); 118 } 119 120 static void bpf_map_write_active_dec(struct bpf_map *map) 121 { 122 atomic64_dec(&map->writecnt); 123 } 124 125 bool bpf_map_write_active(const struct bpf_map *map) 126 { 127 return atomic64_read(&map->writecnt) != 0; 128 } 129 130 static u32 bpf_map_value_size(const struct bpf_map *map) 131 { 132 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH || 133 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH || 134 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY || 135 map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) 136 return round_up(map->value_size, 8) * num_possible_cpus(); 137 else if (IS_FD_MAP(map)) 138 return sizeof(u32); 139 else 140 return map->value_size; 141 } 142 143 static void maybe_wait_bpf_programs(struct bpf_map *map) 144 { 145 /* Wait for any running non-sleepable BPF programs to complete so that 146 * userspace, when we return to it, knows that all non-sleepable 147 * programs that could be running use the new map value. For sleepable 148 * BPF programs, synchronize_rcu_tasks_trace() should be used to wait 149 * for the completions of these programs, but considering the waiting 150 * time can be very long and userspace may think it will hang forever, 151 * so don't handle sleepable BPF programs now. 152 */ 153 if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS || 154 map->map_type == BPF_MAP_TYPE_ARRAY_OF_MAPS) 155 synchronize_rcu(); 156 } 157 158 static int bpf_map_update_value(struct bpf_map *map, struct file *map_file, 159 void *key, void *value, __u64 flags) 160 { 161 int err; 162 163 /* Need to create a kthread, thus must support schedule */ 164 if (bpf_map_is_offloaded(map)) { 165 return bpf_map_offload_update_elem(map, key, value, flags); 166 } else if (map->map_type == BPF_MAP_TYPE_CPUMAP || 167 map->map_type == BPF_MAP_TYPE_ARENA || 168 map->map_type == BPF_MAP_TYPE_STRUCT_OPS) { 169 return map->ops->map_update_elem(map, key, value, flags); 170 } else if (map->map_type == BPF_MAP_TYPE_SOCKHASH || 171 map->map_type == BPF_MAP_TYPE_SOCKMAP) { 172 return sock_map_update_elem_sys(map, key, value, flags); 173 } else if (IS_FD_PROG_ARRAY(map)) { 174 return bpf_fd_array_map_update_elem(map, map_file, key, value, 175 flags); 176 } 177 178 bpf_disable_instrumentation(); 179 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH || 180 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) { 181 err = bpf_percpu_hash_update(map, key, value, flags); 182 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) { 183 err = bpf_percpu_array_update(map, key, value, flags); 184 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) { 185 err = bpf_percpu_cgroup_storage_update(map, key, value, 186 flags); 187 } else if (IS_FD_ARRAY(map)) { 188 err = bpf_fd_array_map_update_elem(map, map_file, key, value, 189 flags); 190 } else if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS) { 191 err = bpf_fd_htab_map_update_elem(map, map_file, key, value, 192 flags); 193 } else if (map->map_type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY) { 194 /* rcu_read_lock() is not needed */ 195 err = bpf_fd_reuseport_array_update_elem(map, key, value, 196 flags); 197 } else if (map->map_type == BPF_MAP_TYPE_QUEUE || 198 map->map_type == BPF_MAP_TYPE_STACK || 199 map->map_type == BPF_MAP_TYPE_BLOOM_FILTER) { 200 err = map->ops->map_push_elem(map, value, flags); 201 } else { 202 rcu_read_lock(); 203 err = map->ops->map_update_elem(map, key, value, flags); 204 rcu_read_unlock(); 205 } 206 bpf_enable_instrumentation(); 207 208 return err; 209 } 210 211 static int bpf_map_copy_value(struct bpf_map *map, void *key, void *value, 212 __u64 flags) 213 { 214 void *ptr; 215 int err; 216 217 if (bpf_map_is_offloaded(map)) 218 return bpf_map_offload_lookup_elem(map, key, value); 219 220 bpf_disable_instrumentation(); 221 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH || 222 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) { 223 err = bpf_percpu_hash_copy(map, key, value); 224 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) { 225 err = bpf_percpu_array_copy(map, key, value); 226 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) { 227 err = bpf_percpu_cgroup_storage_copy(map, key, value); 228 } else if (map->map_type == BPF_MAP_TYPE_STACK_TRACE) { 229 err = bpf_stackmap_copy(map, key, value); 230 } else if (IS_FD_ARRAY(map) || IS_FD_PROG_ARRAY(map)) { 231 err = bpf_fd_array_map_lookup_elem(map, key, value); 232 } else if (IS_FD_HASH(map)) { 233 err = bpf_fd_htab_map_lookup_elem(map, key, value); 234 } else if (map->map_type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY) { 235 err = bpf_fd_reuseport_array_lookup_elem(map, key, value); 236 } else if (map->map_type == BPF_MAP_TYPE_QUEUE || 237 map->map_type == BPF_MAP_TYPE_STACK || 238 map->map_type == BPF_MAP_TYPE_BLOOM_FILTER) { 239 err = map->ops->map_peek_elem(map, value); 240 } else if (map->map_type == BPF_MAP_TYPE_STRUCT_OPS) { 241 /* struct_ops map requires directly updating "value" */ 242 err = bpf_struct_ops_map_sys_lookup_elem(map, key, value); 243 } else { 244 rcu_read_lock(); 245 if (map->ops->map_lookup_elem_sys_only) 246 ptr = map->ops->map_lookup_elem_sys_only(map, key); 247 else 248 ptr = map->ops->map_lookup_elem(map, key); 249 if (IS_ERR(ptr)) { 250 err = PTR_ERR(ptr); 251 } else if (!ptr) { 252 err = -ENOENT; 253 } else { 254 err = 0; 255 if (flags & BPF_F_LOCK) 256 /* lock 'ptr' and copy everything but lock */ 257 copy_map_value_locked(map, value, ptr, true); 258 else 259 copy_map_value(map, value, ptr); 260 /* mask lock and timer, since value wasn't zero inited */ 261 check_and_init_map_value(map, value); 262 } 263 rcu_read_unlock(); 264 } 265 266 bpf_enable_instrumentation(); 267 268 return err; 269 } 270 271 /* Please, do not use this function outside from the map creation path 272 * (e.g. in map update path) without taking care of setting the active 273 * memory cgroup (see at bpf_map_kmalloc_node() for example). 274 */ 275 static void *__bpf_map_area_alloc(u64 size, int numa_node, bool mmapable) 276 { 277 /* We really just want to fail instead of triggering OOM killer 278 * under memory pressure, therefore we set __GFP_NORETRY to kmalloc, 279 * which is used for lower order allocation requests. 280 * 281 * It has been observed that higher order allocation requests done by 282 * vmalloc with __GFP_NORETRY being set might fail due to not trying 283 * to reclaim memory from the page cache, thus we set 284 * __GFP_RETRY_MAYFAIL to avoid such situations. 285 */ 286 287 gfp_t gfp = bpf_memcg_flags(__GFP_NOWARN | __GFP_ZERO); 288 unsigned int flags = 0; 289 unsigned long align = 1; 290 void *area; 291 292 if (size >= SIZE_MAX) 293 return NULL; 294 295 /* kmalloc()'ed memory can't be mmap()'ed */ 296 if (mmapable) { 297 BUG_ON(!PAGE_ALIGNED(size)); 298 align = SHMLBA; 299 flags = VM_USERMAP; 300 } else if (size <= (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER)) { 301 area = kmalloc_node(size, gfp | GFP_USER | __GFP_NORETRY, 302 numa_node); 303 if (area != NULL) 304 return area; 305 } 306 307 return __vmalloc_node_range(size, align, VMALLOC_START, VMALLOC_END, 308 gfp | GFP_KERNEL | __GFP_RETRY_MAYFAIL, PAGE_KERNEL, 309 flags, numa_node, __builtin_return_address(0)); 310 } 311 312 void *bpf_map_area_alloc(u64 size, int numa_node) 313 { 314 return __bpf_map_area_alloc(size, numa_node, false); 315 } 316 317 void *bpf_map_area_mmapable_alloc(u64 size, int numa_node) 318 { 319 return __bpf_map_area_alloc(size, numa_node, true); 320 } 321 322 void bpf_map_area_free(void *area) 323 { 324 kvfree(area); 325 } 326 327 static u32 bpf_map_flags_retain_permanent(u32 flags) 328 { 329 /* Some map creation flags are not tied to the map object but 330 * rather to the map fd instead, so they have no meaning upon 331 * map object inspection since multiple file descriptors with 332 * different (access) properties can exist here. Thus, given 333 * this has zero meaning for the map itself, lets clear these 334 * from here. 335 */ 336 return flags & ~(BPF_F_RDONLY | BPF_F_WRONLY); 337 } 338 339 void bpf_map_init_from_attr(struct bpf_map *map, union bpf_attr *attr) 340 { 341 map->map_type = attr->map_type; 342 map->key_size = attr->key_size; 343 map->value_size = attr->value_size; 344 map->max_entries = attr->max_entries; 345 map->map_flags = bpf_map_flags_retain_permanent(attr->map_flags); 346 map->numa_node = bpf_map_attr_numa_node(attr); 347 map->map_extra = attr->map_extra; 348 } 349 350 static int bpf_map_alloc_id(struct bpf_map *map) 351 { 352 int id; 353 354 idr_preload(GFP_KERNEL); 355 spin_lock_bh(&map_idr_lock); 356 id = idr_alloc_cyclic(&map_idr, map, 1, INT_MAX, GFP_ATOMIC); 357 if (id > 0) 358 map->id = id; 359 spin_unlock_bh(&map_idr_lock); 360 idr_preload_end(); 361 362 if (WARN_ON_ONCE(!id)) 363 return -ENOSPC; 364 365 return id > 0 ? 0 : id; 366 } 367 368 void bpf_map_free_id(struct bpf_map *map) 369 { 370 unsigned long flags; 371 372 /* Offloaded maps are removed from the IDR store when their device 373 * disappears - even if someone holds an fd to them they are unusable, 374 * the memory is gone, all ops will fail; they are simply waiting for 375 * refcnt to drop to be freed. 376 */ 377 if (!map->id) 378 return; 379 380 spin_lock_irqsave(&map_idr_lock, flags); 381 382 idr_remove(&map_idr, map->id); 383 map->id = 0; 384 385 spin_unlock_irqrestore(&map_idr_lock, flags); 386 } 387 388 #ifdef CONFIG_MEMCG 389 static void bpf_map_save_memcg(struct bpf_map *map) 390 { 391 /* Currently if a map is created by a process belonging to the root 392 * memory cgroup, get_obj_cgroup_from_current() will return NULL. 393 * So we have to check map->objcg for being NULL each time it's 394 * being used. 395 */ 396 if (memcg_bpf_enabled()) 397 map->objcg = get_obj_cgroup_from_current(); 398 } 399 400 static void bpf_map_release_memcg(struct bpf_map *map) 401 { 402 if (map->objcg) 403 obj_cgroup_put(map->objcg); 404 } 405 406 static struct mem_cgroup *bpf_map_get_memcg(const struct bpf_map *map) 407 { 408 if (map->objcg) 409 return get_mem_cgroup_from_objcg(map->objcg); 410 411 return root_mem_cgroup; 412 } 413 414 void *bpf_map_kmalloc_node(const struct bpf_map *map, size_t size, gfp_t flags, 415 int node) 416 { 417 struct mem_cgroup *memcg, *old_memcg; 418 void *ptr; 419 420 memcg = bpf_map_get_memcg(map); 421 old_memcg = set_active_memcg(memcg); 422 ptr = kmalloc_node(size, flags | __GFP_ACCOUNT, node); 423 set_active_memcg(old_memcg); 424 mem_cgroup_put(memcg); 425 426 return ptr; 427 } 428 429 void *bpf_map_kzalloc(const struct bpf_map *map, size_t size, gfp_t flags) 430 { 431 struct mem_cgroup *memcg, *old_memcg; 432 void *ptr; 433 434 memcg = bpf_map_get_memcg(map); 435 old_memcg = set_active_memcg(memcg); 436 ptr = kzalloc(size, flags | __GFP_ACCOUNT); 437 set_active_memcg(old_memcg); 438 mem_cgroup_put(memcg); 439 440 return ptr; 441 } 442 443 void *bpf_map_kvcalloc(struct bpf_map *map, size_t n, size_t size, 444 gfp_t flags) 445 { 446 struct mem_cgroup *memcg, *old_memcg; 447 void *ptr; 448 449 memcg = bpf_map_get_memcg(map); 450 old_memcg = set_active_memcg(memcg); 451 ptr = kvcalloc(n, size, flags | __GFP_ACCOUNT); 452 set_active_memcg(old_memcg); 453 mem_cgroup_put(memcg); 454 455 return ptr; 456 } 457 458 void __percpu *bpf_map_alloc_percpu(const struct bpf_map *map, size_t size, 459 size_t align, gfp_t flags) 460 { 461 struct mem_cgroup *memcg, *old_memcg; 462 void __percpu *ptr; 463 464 memcg = bpf_map_get_memcg(map); 465 old_memcg = set_active_memcg(memcg); 466 ptr = __alloc_percpu_gfp(size, align, flags | __GFP_ACCOUNT); 467 set_active_memcg(old_memcg); 468 mem_cgroup_put(memcg); 469 470 return ptr; 471 } 472 473 #else 474 static void bpf_map_save_memcg(struct bpf_map *map) 475 { 476 } 477 478 static void bpf_map_release_memcg(struct bpf_map *map) 479 { 480 } 481 #endif 482 483 int bpf_map_alloc_pages(const struct bpf_map *map, gfp_t gfp, int nid, 484 unsigned long nr_pages, struct page **pages) 485 { 486 unsigned long i, j; 487 struct page *pg; 488 int ret = 0; 489 #ifdef CONFIG_MEMCG 490 struct mem_cgroup *memcg, *old_memcg; 491 492 memcg = bpf_map_get_memcg(map); 493 old_memcg = set_active_memcg(memcg); 494 #endif 495 for (i = 0; i < nr_pages; i++) { 496 pg = alloc_pages_node(nid, gfp | __GFP_ACCOUNT, 0); 497 498 if (pg) { 499 pages[i] = pg; 500 continue; 501 } 502 for (j = 0; j < i; j++) 503 __free_page(pages[j]); 504 ret = -ENOMEM; 505 break; 506 } 507 508 #ifdef CONFIG_MEMCG 509 set_active_memcg(old_memcg); 510 mem_cgroup_put(memcg); 511 #endif 512 return ret; 513 } 514 515 516 static int btf_field_cmp(const void *a, const void *b) 517 { 518 const struct btf_field *f1 = a, *f2 = b; 519 520 if (f1->offset < f2->offset) 521 return -1; 522 else if (f1->offset > f2->offset) 523 return 1; 524 return 0; 525 } 526 527 struct btf_field *btf_record_find(const struct btf_record *rec, u32 offset, 528 u32 field_mask) 529 { 530 struct btf_field *field; 531 532 if (IS_ERR_OR_NULL(rec) || !(rec->field_mask & field_mask)) 533 return NULL; 534 field = bsearch(&offset, rec->fields, rec->cnt, sizeof(rec->fields[0]), btf_field_cmp); 535 if (!field || !(field->type & field_mask)) 536 return NULL; 537 return field; 538 } 539 540 void btf_record_free(struct btf_record *rec) 541 { 542 int i; 543 544 if (IS_ERR_OR_NULL(rec)) 545 return; 546 for (i = 0; i < rec->cnt; i++) { 547 switch (rec->fields[i].type) { 548 case BPF_KPTR_UNREF: 549 case BPF_KPTR_REF: 550 case BPF_KPTR_PERCPU: 551 if (rec->fields[i].kptr.module) 552 module_put(rec->fields[i].kptr.module); 553 if (btf_is_kernel(rec->fields[i].kptr.btf)) 554 btf_put(rec->fields[i].kptr.btf); 555 break; 556 case BPF_LIST_HEAD: 557 case BPF_LIST_NODE: 558 case BPF_RB_ROOT: 559 case BPF_RB_NODE: 560 case BPF_SPIN_LOCK: 561 case BPF_TIMER: 562 case BPF_REFCOUNT: 563 case BPF_WORKQUEUE: 564 /* Nothing to release */ 565 break; 566 default: 567 WARN_ON_ONCE(1); 568 continue; 569 } 570 } 571 kfree(rec); 572 } 573 574 void bpf_map_free_record(struct bpf_map *map) 575 { 576 btf_record_free(map->record); 577 map->record = NULL; 578 } 579 580 struct btf_record *btf_record_dup(const struct btf_record *rec) 581 { 582 const struct btf_field *fields; 583 struct btf_record *new_rec; 584 int ret, size, i; 585 586 if (IS_ERR_OR_NULL(rec)) 587 return NULL; 588 size = offsetof(struct btf_record, fields[rec->cnt]); 589 new_rec = kmemdup(rec, size, GFP_KERNEL | __GFP_NOWARN); 590 if (!new_rec) 591 return ERR_PTR(-ENOMEM); 592 /* Do a deep copy of the btf_record */ 593 fields = rec->fields; 594 new_rec->cnt = 0; 595 for (i = 0; i < rec->cnt; i++) { 596 switch (fields[i].type) { 597 case BPF_KPTR_UNREF: 598 case BPF_KPTR_REF: 599 case BPF_KPTR_PERCPU: 600 if (btf_is_kernel(fields[i].kptr.btf)) 601 btf_get(fields[i].kptr.btf); 602 if (fields[i].kptr.module && !try_module_get(fields[i].kptr.module)) { 603 ret = -ENXIO; 604 goto free; 605 } 606 break; 607 case BPF_LIST_HEAD: 608 case BPF_LIST_NODE: 609 case BPF_RB_ROOT: 610 case BPF_RB_NODE: 611 case BPF_SPIN_LOCK: 612 case BPF_TIMER: 613 case BPF_REFCOUNT: 614 case BPF_WORKQUEUE: 615 /* Nothing to acquire */ 616 break; 617 default: 618 ret = -EFAULT; 619 WARN_ON_ONCE(1); 620 goto free; 621 } 622 new_rec->cnt++; 623 } 624 return new_rec; 625 free: 626 btf_record_free(new_rec); 627 return ERR_PTR(ret); 628 } 629 630 bool btf_record_equal(const struct btf_record *rec_a, const struct btf_record *rec_b) 631 { 632 bool a_has_fields = !IS_ERR_OR_NULL(rec_a), b_has_fields = !IS_ERR_OR_NULL(rec_b); 633 int size; 634 635 if (!a_has_fields && !b_has_fields) 636 return true; 637 if (a_has_fields != b_has_fields) 638 return false; 639 if (rec_a->cnt != rec_b->cnt) 640 return false; 641 size = offsetof(struct btf_record, fields[rec_a->cnt]); 642 /* btf_parse_fields uses kzalloc to allocate a btf_record, so unused 643 * members are zeroed out. So memcmp is safe to do without worrying 644 * about padding/unused fields. 645 * 646 * While spin_lock, timer, and kptr have no relation to map BTF, 647 * list_head metadata is specific to map BTF, the btf and value_rec 648 * members in particular. btf is the map BTF, while value_rec points to 649 * btf_record in that map BTF. 650 * 651 * So while by default, we don't rely on the map BTF (which the records 652 * were parsed from) matching for both records, which is not backwards 653 * compatible, in case list_head is part of it, we implicitly rely on 654 * that by way of depending on memcmp succeeding for it. 655 */ 656 return !memcmp(rec_a, rec_b, size); 657 } 658 659 void bpf_obj_free_timer(const struct btf_record *rec, void *obj) 660 { 661 if (WARN_ON_ONCE(!btf_record_has_field(rec, BPF_TIMER))) 662 return; 663 bpf_timer_cancel_and_free(obj + rec->timer_off); 664 } 665 666 void bpf_obj_free_workqueue(const struct btf_record *rec, void *obj) 667 { 668 if (WARN_ON_ONCE(!btf_record_has_field(rec, BPF_WORKQUEUE))) 669 return; 670 bpf_wq_cancel_and_free(obj + rec->wq_off); 671 } 672 673 void bpf_obj_free_fields(const struct btf_record *rec, void *obj) 674 { 675 const struct btf_field *fields; 676 int i; 677 678 if (IS_ERR_OR_NULL(rec)) 679 return; 680 fields = rec->fields; 681 for (i = 0; i < rec->cnt; i++) { 682 struct btf_struct_meta *pointee_struct_meta; 683 const struct btf_field *field = &fields[i]; 684 void *field_ptr = obj + field->offset; 685 void *xchgd_field; 686 687 switch (fields[i].type) { 688 case BPF_SPIN_LOCK: 689 break; 690 case BPF_TIMER: 691 bpf_timer_cancel_and_free(field_ptr); 692 break; 693 case BPF_WORKQUEUE: 694 bpf_wq_cancel_and_free(field_ptr); 695 break; 696 case BPF_KPTR_UNREF: 697 WRITE_ONCE(*(u64 *)field_ptr, 0); 698 break; 699 case BPF_KPTR_REF: 700 case BPF_KPTR_PERCPU: 701 xchgd_field = (void *)xchg((unsigned long *)field_ptr, 0); 702 if (!xchgd_field) 703 break; 704 705 if (!btf_is_kernel(field->kptr.btf)) { 706 pointee_struct_meta = btf_find_struct_meta(field->kptr.btf, 707 field->kptr.btf_id); 708 migrate_disable(); 709 __bpf_obj_drop_impl(xchgd_field, pointee_struct_meta ? 710 pointee_struct_meta->record : NULL, 711 fields[i].type == BPF_KPTR_PERCPU); 712 migrate_enable(); 713 } else { 714 field->kptr.dtor(xchgd_field); 715 } 716 break; 717 case BPF_LIST_HEAD: 718 if (WARN_ON_ONCE(rec->spin_lock_off < 0)) 719 continue; 720 bpf_list_head_free(field, field_ptr, obj + rec->spin_lock_off); 721 break; 722 case BPF_RB_ROOT: 723 if (WARN_ON_ONCE(rec->spin_lock_off < 0)) 724 continue; 725 bpf_rb_root_free(field, field_ptr, obj + rec->spin_lock_off); 726 break; 727 case BPF_LIST_NODE: 728 case BPF_RB_NODE: 729 case BPF_REFCOUNT: 730 break; 731 default: 732 WARN_ON_ONCE(1); 733 continue; 734 } 735 } 736 } 737 738 /* called from workqueue */ 739 static void bpf_map_free_deferred(struct work_struct *work) 740 { 741 struct bpf_map *map = container_of(work, struct bpf_map, work); 742 struct btf_record *rec = map->record; 743 struct btf *btf = map->btf; 744 745 security_bpf_map_free(map); 746 bpf_map_release_memcg(map); 747 /* implementation dependent freeing */ 748 map->ops->map_free(map); 749 /* Delay freeing of btf_record for maps, as map_free 750 * callback usually needs access to them. It is better to do it here 751 * than require each callback to do the free itself manually. 752 * 753 * Note that the btf_record stashed in map->inner_map_meta->record was 754 * already freed using the map_free callback for map in map case which 755 * eventually calls bpf_map_free_meta, since inner_map_meta is only a 756 * template bpf_map struct used during verification. 757 */ 758 btf_record_free(rec); 759 /* Delay freeing of btf for maps, as map_free callback may need 760 * struct_meta info which will be freed with btf_put(). 761 */ 762 btf_put(btf); 763 } 764 765 static void bpf_map_put_uref(struct bpf_map *map) 766 { 767 if (atomic64_dec_and_test(&map->usercnt)) { 768 if (map->ops->map_release_uref) 769 map->ops->map_release_uref(map); 770 } 771 } 772 773 static void bpf_map_free_in_work(struct bpf_map *map) 774 { 775 INIT_WORK(&map->work, bpf_map_free_deferred); 776 /* Avoid spawning kworkers, since they all might contend 777 * for the same mutex like slab_mutex. 778 */ 779 queue_work(system_unbound_wq, &map->work); 780 } 781 782 static void bpf_map_free_rcu_gp(struct rcu_head *rcu) 783 { 784 bpf_map_free_in_work(container_of(rcu, struct bpf_map, rcu)); 785 } 786 787 static void bpf_map_free_mult_rcu_gp(struct rcu_head *rcu) 788 { 789 if (rcu_trace_implies_rcu_gp()) 790 bpf_map_free_rcu_gp(rcu); 791 else 792 call_rcu(rcu, bpf_map_free_rcu_gp); 793 } 794 795 /* decrement map refcnt and schedule it for freeing via workqueue 796 * (underlying map implementation ops->map_free() might sleep) 797 */ 798 void bpf_map_put(struct bpf_map *map) 799 { 800 if (atomic64_dec_and_test(&map->refcnt)) { 801 /* bpf_map_free_id() must be called first */ 802 bpf_map_free_id(map); 803 804 WARN_ON_ONCE(atomic64_read(&map->sleepable_refcnt)); 805 if (READ_ONCE(map->free_after_mult_rcu_gp)) 806 call_rcu_tasks_trace(&map->rcu, bpf_map_free_mult_rcu_gp); 807 else if (READ_ONCE(map->free_after_rcu_gp)) 808 call_rcu(&map->rcu, bpf_map_free_rcu_gp); 809 else 810 bpf_map_free_in_work(map); 811 } 812 } 813 EXPORT_SYMBOL_GPL(bpf_map_put); 814 815 void bpf_map_put_with_uref(struct bpf_map *map) 816 { 817 bpf_map_put_uref(map); 818 bpf_map_put(map); 819 } 820 821 static int bpf_map_release(struct inode *inode, struct file *filp) 822 { 823 struct bpf_map *map = filp->private_data; 824 825 if (map->ops->map_release) 826 map->ops->map_release(map, filp); 827 828 bpf_map_put_with_uref(map); 829 return 0; 830 } 831 832 static fmode_t map_get_sys_perms(struct bpf_map *map, struct fd f) 833 { 834 fmode_t mode = f.file->f_mode; 835 836 /* Our file permissions may have been overridden by global 837 * map permissions facing syscall side. 838 */ 839 if (READ_ONCE(map->frozen)) 840 mode &= ~FMODE_CAN_WRITE; 841 return mode; 842 } 843 844 #ifdef CONFIG_PROC_FS 845 /* Show the memory usage of a bpf map */ 846 static u64 bpf_map_memory_usage(const struct bpf_map *map) 847 { 848 return map->ops->map_mem_usage(map); 849 } 850 851 static void bpf_map_show_fdinfo(struct seq_file *m, struct file *filp) 852 { 853 struct bpf_map *map = filp->private_data; 854 u32 type = 0, jited = 0; 855 856 if (map_type_contains_progs(map)) { 857 spin_lock(&map->owner.lock); 858 type = map->owner.type; 859 jited = map->owner.jited; 860 spin_unlock(&map->owner.lock); 861 } 862 863 seq_printf(m, 864 "map_type:\t%u\n" 865 "key_size:\t%u\n" 866 "value_size:\t%u\n" 867 "max_entries:\t%u\n" 868 "map_flags:\t%#x\n" 869 "map_extra:\t%#llx\n" 870 "memlock:\t%llu\n" 871 "map_id:\t%u\n" 872 "frozen:\t%u\n", 873 map->map_type, 874 map->key_size, 875 map->value_size, 876 map->max_entries, 877 map->map_flags, 878 (unsigned long long)map->map_extra, 879 bpf_map_memory_usage(map), 880 map->id, 881 READ_ONCE(map->frozen)); 882 if (type) { 883 seq_printf(m, "owner_prog_type:\t%u\n", type); 884 seq_printf(m, "owner_jited:\t%u\n", jited); 885 } 886 } 887 #endif 888 889 static ssize_t bpf_dummy_read(struct file *filp, char __user *buf, size_t siz, 890 loff_t *ppos) 891 { 892 /* We need this handler such that alloc_file() enables 893 * f_mode with FMODE_CAN_READ. 894 */ 895 return -EINVAL; 896 } 897 898 static ssize_t bpf_dummy_write(struct file *filp, const char __user *buf, 899 size_t siz, loff_t *ppos) 900 { 901 /* We need this handler such that alloc_file() enables 902 * f_mode with FMODE_CAN_WRITE. 903 */ 904 return -EINVAL; 905 } 906 907 /* called for any extra memory-mapped regions (except initial) */ 908 static void bpf_map_mmap_open(struct vm_area_struct *vma) 909 { 910 struct bpf_map *map = vma->vm_file->private_data; 911 912 if (vma->vm_flags & VM_MAYWRITE) 913 bpf_map_write_active_inc(map); 914 } 915 916 /* called for all unmapped memory region (including initial) */ 917 static void bpf_map_mmap_close(struct vm_area_struct *vma) 918 { 919 struct bpf_map *map = vma->vm_file->private_data; 920 921 if (vma->vm_flags & VM_MAYWRITE) 922 bpf_map_write_active_dec(map); 923 } 924 925 static const struct vm_operations_struct bpf_map_default_vmops = { 926 .open = bpf_map_mmap_open, 927 .close = bpf_map_mmap_close, 928 }; 929 930 static int bpf_map_mmap(struct file *filp, struct vm_area_struct *vma) 931 { 932 struct bpf_map *map = filp->private_data; 933 int err; 934 935 if (!map->ops->map_mmap || !IS_ERR_OR_NULL(map->record)) 936 return -ENOTSUPP; 937 938 if (!(vma->vm_flags & VM_SHARED)) 939 return -EINVAL; 940 941 mutex_lock(&map->freeze_mutex); 942 943 if (vma->vm_flags & VM_WRITE) { 944 if (map->frozen) { 945 err = -EPERM; 946 goto out; 947 } 948 /* map is meant to be read-only, so do not allow mapping as 949 * writable, because it's possible to leak a writable page 950 * reference and allows user-space to still modify it after 951 * freezing, while verifier will assume contents do not change 952 */ 953 if (map->map_flags & BPF_F_RDONLY_PROG) { 954 err = -EACCES; 955 goto out; 956 } 957 } 958 959 /* set default open/close callbacks */ 960 vma->vm_ops = &bpf_map_default_vmops; 961 vma->vm_private_data = map; 962 vm_flags_clear(vma, VM_MAYEXEC); 963 if (!(vma->vm_flags & VM_WRITE)) 964 /* disallow re-mapping with PROT_WRITE */ 965 vm_flags_clear(vma, VM_MAYWRITE); 966 967 err = map->ops->map_mmap(map, vma); 968 if (err) 969 goto out; 970 971 if (vma->vm_flags & VM_MAYWRITE) 972 bpf_map_write_active_inc(map); 973 out: 974 mutex_unlock(&map->freeze_mutex); 975 return err; 976 } 977 978 static __poll_t bpf_map_poll(struct file *filp, struct poll_table_struct *pts) 979 { 980 struct bpf_map *map = filp->private_data; 981 982 if (map->ops->map_poll) 983 return map->ops->map_poll(map, filp, pts); 984 985 return EPOLLERR; 986 } 987 988 static unsigned long bpf_get_unmapped_area(struct file *filp, unsigned long addr, 989 unsigned long len, unsigned long pgoff, 990 unsigned long flags) 991 { 992 struct bpf_map *map = filp->private_data; 993 994 if (map->ops->map_get_unmapped_area) 995 return map->ops->map_get_unmapped_area(filp, addr, len, pgoff, flags); 996 #ifdef CONFIG_MMU 997 return mm_get_unmapped_area(current->mm, filp, addr, len, pgoff, flags); 998 #else 999 return addr; 1000 #endif 1001 } 1002 1003 const struct file_operations bpf_map_fops = { 1004 #ifdef CONFIG_PROC_FS 1005 .show_fdinfo = bpf_map_show_fdinfo, 1006 #endif 1007 .release = bpf_map_release, 1008 .read = bpf_dummy_read, 1009 .write = bpf_dummy_write, 1010 .mmap = bpf_map_mmap, 1011 .poll = bpf_map_poll, 1012 .get_unmapped_area = bpf_get_unmapped_area, 1013 }; 1014 1015 int bpf_map_new_fd(struct bpf_map *map, int flags) 1016 { 1017 int ret; 1018 1019 ret = security_bpf_map(map, OPEN_FMODE(flags)); 1020 if (ret < 0) 1021 return ret; 1022 1023 return anon_inode_getfd("bpf-map", &bpf_map_fops, map, 1024 flags | O_CLOEXEC); 1025 } 1026 1027 int bpf_get_file_flag(int flags) 1028 { 1029 if ((flags & BPF_F_RDONLY) && (flags & BPF_F_WRONLY)) 1030 return -EINVAL; 1031 if (flags & BPF_F_RDONLY) 1032 return O_RDONLY; 1033 if (flags & BPF_F_WRONLY) 1034 return O_WRONLY; 1035 return O_RDWR; 1036 } 1037 1038 /* helper macro to check that unused fields 'union bpf_attr' are zero */ 1039 #define CHECK_ATTR(CMD) \ 1040 memchr_inv((void *) &attr->CMD##_LAST_FIELD + \ 1041 sizeof(attr->CMD##_LAST_FIELD), 0, \ 1042 sizeof(*attr) - \ 1043 offsetof(union bpf_attr, CMD##_LAST_FIELD) - \ 1044 sizeof(attr->CMD##_LAST_FIELD)) != NULL 1045 1046 /* dst and src must have at least "size" number of bytes. 1047 * Return strlen on success and < 0 on error. 1048 */ 1049 int bpf_obj_name_cpy(char *dst, const char *src, unsigned int size) 1050 { 1051 const char *end = src + size; 1052 const char *orig_src = src; 1053 1054 memset(dst, 0, size); 1055 /* Copy all isalnum(), '_' and '.' chars. */ 1056 while (src < end && *src) { 1057 if (!isalnum(*src) && 1058 *src != '_' && *src != '.') 1059 return -EINVAL; 1060 *dst++ = *src++; 1061 } 1062 1063 /* No '\0' found in "size" number of bytes */ 1064 if (src == end) 1065 return -EINVAL; 1066 1067 return src - orig_src; 1068 } 1069 1070 int map_check_no_btf(const struct bpf_map *map, 1071 const struct btf *btf, 1072 const struct btf_type *key_type, 1073 const struct btf_type *value_type) 1074 { 1075 return -ENOTSUPP; 1076 } 1077 1078 static int map_check_btf(struct bpf_map *map, struct bpf_token *token, 1079 const struct btf *btf, u32 btf_key_id, u32 btf_value_id) 1080 { 1081 const struct btf_type *key_type, *value_type; 1082 u32 key_size, value_size; 1083 int ret = 0; 1084 1085 /* Some maps allow key to be unspecified. */ 1086 if (btf_key_id) { 1087 key_type = btf_type_id_size(btf, &btf_key_id, &key_size); 1088 if (!key_type || key_size != map->key_size) 1089 return -EINVAL; 1090 } else { 1091 key_type = btf_type_by_id(btf, 0); 1092 if (!map->ops->map_check_btf) 1093 return -EINVAL; 1094 } 1095 1096 value_type = btf_type_id_size(btf, &btf_value_id, &value_size); 1097 if (!value_type || value_size != map->value_size) 1098 return -EINVAL; 1099 1100 map->record = btf_parse_fields(btf, value_type, 1101 BPF_SPIN_LOCK | BPF_TIMER | BPF_KPTR | BPF_LIST_HEAD | 1102 BPF_RB_ROOT | BPF_REFCOUNT | BPF_WORKQUEUE, 1103 map->value_size); 1104 if (!IS_ERR_OR_NULL(map->record)) { 1105 int i; 1106 1107 if (!bpf_token_capable(token, CAP_BPF)) { 1108 ret = -EPERM; 1109 goto free_map_tab; 1110 } 1111 if (map->map_flags & (BPF_F_RDONLY_PROG | BPF_F_WRONLY_PROG)) { 1112 ret = -EACCES; 1113 goto free_map_tab; 1114 } 1115 for (i = 0; i < sizeof(map->record->field_mask) * 8; i++) { 1116 switch (map->record->field_mask & (1 << i)) { 1117 case 0: 1118 continue; 1119 case BPF_SPIN_LOCK: 1120 if (map->map_type != BPF_MAP_TYPE_HASH && 1121 map->map_type != BPF_MAP_TYPE_ARRAY && 1122 map->map_type != BPF_MAP_TYPE_CGROUP_STORAGE && 1123 map->map_type != BPF_MAP_TYPE_SK_STORAGE && 1124 map->map_type != BPF_MAP_TYPE_INODE_STORAGE && 1125 map->map_type != BPF_MAP_TYPE_TASK_STORAGE && 1126 map->map_type != BPF_MAP_TYPE_CGRP_STORAGE) { 1127 ret = -EOPNOTSUPP; 1128 goto free_map_tab; 1129 } 1130 break; 1131 case BPF_TIMER: 1132 case BPF_WORKQUEUE: 1133 if (map->map_type != BPF_MAP_TYPE_HASH && 1134 map->map_type != BPF_MAP_TYPE_LRU_HASH && 1135 map->map_type != BPF_MAP_TYPE_ARRAY) { 1136 ret = -EOPNOTSUPP; 1137 goto free_map_tab; 1138 } 1139 break; 1140 case BPF_KPTR_UNREF: 1141 case BPF_KPTR_REF: 1142 case BPF_KPTR_PERCPU: 1143 case BPF_REFCOUNT: 1144 if (map->map_type != BPF_MAP_TYPE_HASH && 1145 map->map_type != BPF_MAP_TYPE_PERCPU_HASH && 1146 map->map_type != BPF_MAP_TYPE_LRU_HASH && 1147 map->map_type != BPF_MAP_TYPE_LRU_PERCPU_HASH && 1148 map->map_type != BPF_MAP_TYPE_ARRAY && 1149 map->map_type != BPF_MAP_TYPE_PERCPU_ARRAY && 1150 map->map_type != BPF_MAP_TYPE_SK_STORAGE && 1151 map->map_type != BPF_MAP_TYPE_INODE_STORAGE && 1152 map->map_type != BPF_MAP_TYPE_TASK_STORAGE && 1153 map->map_type != BPF_MAP_TYPE_CGRP_STORAGE) { 1154 ret = -EOPNOTSUPP; 1155 goto free_map_tab; 1156 } 1157 break; 1158 case BPF_LIST_HEAD: 1159 case BPF_RB_ROOT: 1160 if (map->map_type != BPF_MAP_TYPE_HASH && 1161 map->map_type != BPF_MAP_TYPE_LRU_HASH && 1162 map->map_type != BPF_MAP_TYPE_ARRAY) { 1163 ret = -EOPNOTSUPP; 1164 goto free_map_tab; 1165 } 1166 break; 1167 default: 1168 /* Fail if map_type checks are missing for a field type */ 1169 ret = -EOPNOTSUPP; 1170 goto free_map_tab; 1171 } 1172 } 1173 } 1174 1175 ret = btf_check_and_fixup_fields(btf, map->record); 1176 if (ret < 0) 1177 goto free_map_tab; 1178 1179 if (map->ops->map_check_btf) { 1180 ret = map->ops->map_check_btf(map, btf, key_type, value_type); 1181 if (ret < 0) 1182 goto free_map_tab; 1183 } 1184 1185 return ret; 1186 free_map_tab: 1187 bpf_map_free_record(map); 1188 return ret; 1189 } 1190 1191 static bool bpf_net_capable(void) 1192 { 1193 return capable(CAP_NET_ADMIN) || capable(CAP_SYS_ADMIN); 1194 } 1195 1196 #define BPF_MAP_CREATE_LAST_FIELD map_token_fd 1197 /* called via syscall */ 1198 static int map_create(union bpf_attr *attr) 1199 { 1200 const struct bpf_map_ops *ops; 1201 struct bpf_token *token = NULL; 1202 int numa_node = bpf_map_attr_numa_node(attr); 1203 u32 map_type = attr->map_type; 1204 struct bpf_map *map; 1205 bool token_flag; 1206 int f_flags; 1207 int err; 1208 1209 err = CHECK_ATTR(BPF_MAP_CREATE); 1210 if (err) 1211 return -EINVAL; 1212 1213 /* check BPF_F_TOKEN_FD flag, remember if it's set, and then clear it 1214 * to avoid per-map type checks tripping on unknown flag 1215 */ 1216 token_flag = attr->map_flags & BPF_F_TOKEN_FD; 1217 attr->map_flags &= ~BPF_F_TOKEN_FD; 1218 1219 if (attr->btf_vmlinux_value_type_id) { 1220 if (attr->map_type != BPF_MAP_TYPE_STRUCT_OPS || 1221 attr->btf_key_type_id || attr->btf_value_type_id) 1222 return -EINVAL; 1223 } else if (attr->btf_key_type_id && !attr->btf_value_type_id) { 1224 return -EINVAL; 1225 } 1226 1227 if (attr->map_type != BPF_MAP_TYPE_BLOOM_FILTER && 1228 attr->map_type != BPF_MAP_TYPE_ARENA && 1229 attr->map_extra != 0) 1230 return -EINVAL; 1231 1232 f_flags = bpf_get_file_flag(attr->map_flags); 1233 if (f_flags < 0) 1234 return f_flags; 1235 1236 if (numa_node != NUMA_NO_NODE && 1237 ((unsigned int)numa_node >= nr_node_ids || 1238 !node_online(numa_node))) 1239 return -EINVAL; 1240 1241 /* find map type and init map: hashtable vs rbtree vs bloom vs ... */ 1242 map_type = attr->map_type; 1243 if (map_type >= ARRAY_SIZE(bpf_map_types)) 1244 return -EINVAL; 1245 map_type = array_index_nospec(map_type, ARRAY_SIZE(bpf_map_types)); 1246 ops = bpf_map_types[map_type]; 1247 if (!ops) 1248 return -EINVAL; 1249 1250 if (ops->map_alloc_check) { 1251 err = ops->map_alloc_check(attr); 1252 if (err) 1253 return err; 1254 } 1255 if (attr->map_ifindex) 1256 ops = &bpf_map_offload_ops; 1257 if (!ops->map_mem_usage) 1258 return -EINVAL; 1259 1260 if (token_flag) { 1261 token = bpf_token_get_from_fd(attr->map_token_fd); 1262 if (IS_ERR(token)) 1263 return PTR_ERR(token); 1264 1265 /* if current token doesn't grant map creation permissions, 1266 * then we can't use this token, so ignore it and rely on 1267 * system-wide capabilities checks 1268 */ 1269 if (!bpf_token_allow_cmd(token, BPF_MAP_CREATE) || 1270 !bpf_token_allow_map_type(token, attr->map_type)) { 1271 bpf_token_put(token); 1272 token = NULL; 1273 } 1274 } 1275 1276 err = -EPERM; 1277 1278 /* Intent here is for unprivileged_bpf_disabled to block BPF map 1279 * creation for unprivileged users; other actions depend 1280 * on fd availability and access to bpffs, so are dependent on 1281 * object creation success. Even with unprivileged BPF disabled, 1282 * capability checks are still carried out. 1283 */ 1284 if (sysctl_unprivileged_bpf_disabled && !bpf_token_capable(token, CAP_BPF)) 1285 goto put_token; 1286 1287 /* check privileged map type permissions */ 1288 switch (map_type) { 1289 case BPF_MAP_TYPE_ARRAY: 1290 case BPF_MAP_TYPE_PERCPU_ARRAY: 1291 case BPF_MAP_TYPE_PROG_ARRAY: 1292 case BPF_MAP_TYPE_PERF_EVENT_ARRAY: 1293 case BPF_MAP_TYPE_CGROUP_ARRAY: 1294 case BPF_MAP_TYPE_ARRAY_OF_MAPS: 1295 case BPF_MAP_TYPE_HASH: 1296 case BPF_MAP_TYPE_PERCPU_HASH: 1297 case BPF_MAP_TYPE_HASH_OF_MAPS: 1298 case BPF_MAP_TYPE_RINGBUF: 1299 case BPF_MAP_TYPE_USER_RINGBUF: 1300 case BPF_MAP_TYPE_CGROUP_STORAGE: 1301 case BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE: 1302 /* unprivileged */ 1303 break; 1304 case BPF_MAP_TYPE_SK_STORAGE: 1305 case BPF_MAP_TYPE_INODE_STORAGE: 1306 case BPF_MAP_TYPE_TASK_STORAGE: 1307 case BPF_MAP_TYPE_CGRP_STORAGE: 1308 case BPF_MAP_TYPE_BLOOM_FILTER: 1309 case BPF_MAP_TYPE_LPM_TRIE: 1310 case BPF_MAP_TYPE_REUSEPORT_SOCKARRAY: 1311 case BPF_MAP_TYPE_STACK_TRACE: 1312 case BPF_MAP_TYPE_QUEUE: 1313 case BPF_MAP_TYPE_STACK: 1314 case BPF_MAP_TYPE_LRU_HASH: 1315 case BPF_MAP_TYPE_LRU_PERCPU_HASH: 1316 case BPF_MAP_TYPE_STRUCT_OPS: 1317 case BPF_MAP_TYPE_CPUMAP: 1318 case BPF_MAP_TYPE_ARENA: 1319 if (!bpf_token_capable(token, CAP_BPF)) 1320 goto put_token; 1321 break; 1322 case BPF_MAP_TYPE_SOCKMAP: 1323 case BPF_MAP_TYPE_SOCKHASH: 1324 case BPF_MAP_TYPE_DEVMAP: 1325 case BPF_MAP_TYPE_DEVMAP_HASH: 1326 case BPF_MAP_TYPE_XSKMAP: 1327 if (!bpf_token_capable(token, CAP_NET_ADMIN)) 1328 goto put_token; 1329 break; 1330 default: 1331 WARN(1, "unsupported map type %d", map_type); 1332 goto put_token; 1333 } 1334 1335 map = ops->map_alloc(attr); 1336 if (IS_ERR(map)) { 1337 err = PTR_ERR(map); 1338 goto put_token; 1339 } 1340 map->ops = ops; 1341 map->map_type = map_type; 1342 1343 err = bpf_obj_name_cpy(map->name, attr->map_name, 1344 sizeof(attr->map_name)); 1345 if (err < 0) 1346 goto free_map; 1347 1348 atomic64_set(&map->refcnt, 1); 1349 atomic64_set(&map->usercnt, 1); 1350 mutex_init(&map->freeze_mutex); 1351 spin_lock_init(&map->owner.lock); 1352 1353 if (attr->btf_key_type_id || attr->btf_value_type_id || 1354 /* Even the map's value is a kernel's struct, 1355 * the bpf_prog.o must have BTF to begin with 1356 * to figure out the corresponding kernel's 1357 * counter part. Thus, attr->btf_fd has 1358 * to be valid also. 1359 */ 1360 attr->btf_vmlinux_value_type_id) { 1361 struct btf *btf; 1362 1363 btf = btf_get_by_fd(attr->btf_fd); 1364 if (IS_ERR(btf)) { 1365 err = PTR_ERR(btf); 1366 goto free_map; 1367 } 1368 if (btf_is_kernel(btf)) { 1369 btf_put(btf); 1370 err = -EACCES; 1371 goto free_map; 1372 } 1373 map->btf = btf; 1374 1375 if (attr->btf_value_type_id) { 1376 err = map_check_btf(map, token, btf, attr->btf_key_type_id, 1377 attr->btf_value_type_id); 1378 if (err) 1379 goto free_map; 1380 } 1381 1382 map->btf_key_type_id = attr->btf_key_type_id; 1383 map->btf_value_type_id = attr->btf_value_type_id; 1384 map->btf_vmlinux_value_type_id = 1385 attr->btf_vmlinux_value_type_id; 1386 } 1387 1388 err = security_bpf_map_create(map, attr, token); 1389 if (err) 1390 goto free_map_sec; 1391 1392 err = bpf_map_alloc_id(map); 1393 if (err) 1394 goto free_map_sec; 1395 1396 bpf_map_save_memcg(map); 1397 bpf_token_put(token); 1398 1399 err = bpf_map_new_fd(map, f_flags); 1400 if (err < 0) { 1401 /* failed to allocate fd. 1402 * bpf_map_put_with_uref() is needed because the above 1403 * bpf_map_alloc_id() has published the map 1404 * to the userspace and the userspace may 1405 * have refcnt-ed it through BPF_MAP_GET_FD_BY_ID. 1406 */ 1407 bpf_map_put_with_uref(map); 1408 return err; 1409 } 1410 1411 return err; 1412 1413 free_map_sec: 1414 security_bpf_map_free(map); 1415 free_map: 1416 btf_put(map->btf); 1417 map->ops->map_free(map); 1418 put_token: 1419 bpf_token_put(token); 1420 return err; 1421 } 1422 1423 /* if error is returned, fd is released. 1424 * On success caller should complete fd access with matching fdput() 1425 */ 1426 struct bpf_map *__bpf_map_get(struct fd f) 1427 { 1428 if (!f.file) 1429 return ERR_PTR(-EBADF); 1430 if (f.file->f_op != &bpf_map_fops) { 1431 fdput(f); 1432 return ERR_PTR(-EINVAL); 1433 } 1434 1435 return f.file->private_data; 1436 } 1437 1438 void bpf_map_inc(struct bpf_map *map) 1439 { 1440 atomic64_inc(&map->refcnt); 1441 } 1442 EXPORT_SYMBOL_GPL(bpf_map_inc); 1443 1444 void bpf_map_inc_with_uref(struct bpf_map *map) 1445 { 1446 atomic64_inc(&map->refcnt); 1447 atomic64_inc(&map->usercnt); 1448 } 1449 EXPORT_SYMBOL_GPL(bpf_map_inc_with_uref); 1450 1451 struct bpf_map *bpf_map_get(u32 ufd) 1452 { 1453 struct fd f = fdget(ufd); 1454 struct bpf_map *map; 1455 1456 map = __bpf_map_get(f); 1457 if (IS_ERR(map)) 1458 return map; 1459 1460 bpf_map_inc(map); 1461 fdput(f); 1462 1463 return map; 1464 } 1465 EXPORT_SYMBOL(bpf_map_get); 1466 1467 struct bpf_map *bpf_map_get_with_uref(u32 ufd) 1468 { 1469 struct fd f = fdget(ufd); 1470 struct bpf_map *map; 1471 1472 map = __bpf_map_get(f); 1473 if (IS_ERR(map)) 1474 return map; 1475 1476 bpf_map_inc_with_uref(map); 1477 fdput(f); 1478 1479 return map; 1480 } 1481 1482 /* map_idr_lock should have been held or the map should have been 1483 * protected by rcu read lock. 1484 */ 1485 struct bpf_map *__bpf_map_inc_not_zero(struct bpf_map *map, bool uref) 1486 { 1487 int refold; 1488 1489 refold = atomic64_fetch_add_unless(&map->refcnt, 1, 0); 1490 if (!refold) 1491 return ERR_PTR(-ENOENT); 1492 if (uref) 1493 atomic64_inc(&map->usercnt); 1494 1495 return map; 1496 } 1497 1498 struct bpf_map *bpf_map_inc_not_zero(struct bpf_map *map) 1499 { 1500 spin_lock_bh(&map_idr_lock); 1501 map = __bpf_map_inc_not_zero(map, false); 1502 spin_unlock_bh(&map_idr_lock); 1503 1504 return map; 1505 } 1506 EXPORT_SYMBOL_GPL(bpf_map_inc_not_zero); 1507 1508 int __weak bpf_stackmap_copy(struct bpf_map *map, void *key, void *value) 1509 { 1510 return -ENOTSUPP; 1511 } 1512 1513 static void *__bpf_copy_key(void __user *ukey, u64 key_size) 1514 { 1515 if (key_size) 1516 return vmemdup_user(ukey, key_size); 1517 1518 if (ukey) 1519 return ERR_PTR(-EINVAL); 1520 1521 return NULL; 1522 } 1523 1524 static void *___bpf_copy_key(bpfptr_t ukey, u64 key_size) 1525 { 1526 if (key_size) 1527 return kvmemdup_bpfptr(ukey, key_size); 1528 1529 if (!bpfptr_is_null(ukey)) 1530 return ERR_PTR(-EINVAL); 1531 1532 return NULL; 1533 } 1534 1535 /* last field in 'union bpf_attr' used by this command */ 1536 #define BPF_MAP_LOOKUP_ELEM_LAST_FIELD flags 1537 1538 static int map_lookup_elem(union bpf_attr *attr) 1539 { 1540 void __user *ukey = u64_to_user_ptr(attr->key); 1541 void __user *uvalue = u64_to_user_ptr(attr->value); 1542 int ufd = attr->map_fd; 1543 struct bpf_map *map; 1544 void *key, *value; 1545 u32 value_size; 1546 struct fd f; 1547 int err; 1548 1549 if (CHECK_ATTR(BPF_MAP_LOOKUP_ELEM)) 1550 return -EINVAL; 1551 1552 if (attr->flags & ~BPF_F_LOCK) 1553 return -EINVAL; 1554 1555 f = fdget(ufd); 1556 map = __bpf_map_get(f); 1557 if (IS_ERR(map)) 1558 return PTR_ERR(map); 1559 if (!(map_get_sys_perms(map, f) & FMODE_CAN_READ)) { 1560 err = -EPERM; 1561 goto err_put; 1562 } 1563 1564 if ((attr->flags & BPF_F_LOCK) && 1565 !btf_record_has_field(map->record, BPF_SPIN_LOCK)) { 1566 err = -EINVAL; 1567 goto err_put; 1568 } 1569 1570 key = __bpf_copy_key(ukey, map->key_size); 1571 if (IS_ERR(key)) { 1572 err = PTR_ERR(key); 1573 goto err_put; 1574 } 1575 1576 value_size = bpf_map_value_size(map); 1577 1578 err = -ENOMEM; 1579 value = kvmalloc(value_size, GFP_USER | __GFP_NOWARN); 1580 if (!value) 1581 goto free_key; 1582 1583 if (map->map_type == BPF_MAP_TYPE_BLOOM_FILTER) { 1584 if (copy_from_user(value, uvalue, value_size)) 1585 err = -EFAULT; 1586 else 1587 err = bpf_map_copy_value(map, key, value, attr->flags); 1588 goto free_value; 1589 } 1590 1591 err = bpf_map_copy_value(map, key, value, attr->flags); 1592 if (err) 1593 goto free_value; 1594 1595 err = -EFAULT; 1596 if (copy_to_user(uvalue, value, value_size) != 0) 1597 goto free_value; 1598 1599 err = 0; 1600 1601 free_value: 1602 kvfree(value); 1603 free_key: 1604 kvfree(key); 1605 err_put: 1606 fdput(f); 1607 return err; 1608 } 1609 1610 1611 #define BPF_MAP_UPDATE_ELEM_LAST_FIELD flags 1612 1613 static int map_update_elem(union bpf_attr *attr, bpfptr_t uattr) 1614 { 1615 bpfptr_t ukey = make_bpfptr(attr->key, uattr.is_kernel); 1616 bpfptr_t uvalue = make_bpfptr(attr->value, uattr.is_kernel); 1617 int ufd = attr->map_fd; 1618 struct bpf_map *map; 1619 void *key, *value; 1620 u32 value_size; 1621 struct fd f; 1622 int err; 1623 1624 if (CHECK_ATTR(BPF_MAP_UPDATE_ELEM)) 1625 return -EINVAL; 1626 1627 f = fdget(ufd); 1628 map = __bpf_map_get(f); 1629 if (IS_ERR(map)) 1630 return PTR_ERR(map); 1631 bpf_map_write_active_inc(map); 1632 if (!(map_get_sys_perms(map, f) & FMODE_CAN_WRITE)) { 1633 err = -EPERM; 1634 goto err_put; 1635 } 1636 1637 if ((attr->flags & BPF_F_LOCK) && 1638 !btf_record_has_field(map->record, BPF_SPIN_LOCK)) { 1639 err = -EINVAL; 1640 goto err_put; 1641 } 1642 1643 key = ___bpf_copy_key(ukey, map->key_size); 1644 if (IS_ERR(key)) { 1645 err = PTR_ERR(key); 1646 goto err_put; 1647 } 1648 1649 value_size = bpf_map_value_size(map); 1650 value = kvmemdup_bpfptr(uvalue, value_size); 1651 if (IS_ERR(value)) { 1652 err = PTR_ERR(value); 1653 goto free_key; 1654 } 1655 1656 err = bpf_map_update_value(map, f.file, key, value, attr->flags); 1657 if (!err) 1658 maybe_wait_bpf_programs(map); 1659 1660 kvfree(value); 1661 free_key: 1662 kvfree(key); 1663 err_put: 1664 bpf_map_write_active_dec(map); 1665 fdput(f); 1666 return err; 1667 } 1668 1669 #define BPF_MAP_DELETE_ELEM_LAST_FIELD key 1670 1671 static int map_delete_elem(union bpf_attr *attr, bpfptr_t uattr) 1672 { 1673 bpfptr_t ukey = make_bpfptr(attr->key, uattr.is_kernel); 1674 int ufd = attr->map_fd; 1675 struct bpf_map *map; 1676 struct fd f; 1677 void *key; 1678 int err; 1679 1680 if (CHECK_ATTR(BPF_MAP_DELETE_ELEM)) 1681 return -EINVAL; 1682 1683 f = fdget(ufd); 1684 map = __bpf_map_get(f); 1685 if (IS_ERR(map)) 1686 return PTR_ERR(map); 1687 bpf_map_write_active_inc(map); 1688 if (!(map_get_sys_perms(map, f) & FMODE_CAN_WRITE)) { 1689 err = -EPERM; 1690 goto err_put; 1691 } 1692 1693 key = ___bpf_copy_key(ukey, map->key_size); 1694 if (IS_ERR(key)) { 1695 err = PTR_ERR(key); 1696 goto err_put; 1697 } 1698 1699 if (bpf_map_is_offloaded(map)) { 1700 err = bpf_map_offload_delete_elem(map, key); 1701 goto out; 1702 } else if (IS_FD_PROG_ARRAY(map) || 1703 map->map_type == BPF_MAP_TYPE_STRUCT_OPS) { 1704 /* These maps require sleepable context */ 1705 err = map->ops->map_delete_elem(map, key); 1706 goto out; 1707 } 1708 1709 bpf_disable_instrumentation(); 1710 rcu_read_lock(); 1711 err = map->ops->map_delete_elem(map, key); 1712 rcu_read_unlock(); 1713 bpf_enable_instrumentation(); 1714 if (!err) 1715 maybe_wait_bpf_programs(map); 1716 out: 1717 kvfree(key); 1718 err_put: 1719 bpf_map_write_active_dec(map); 1720 fdput(f); 1721 return err; 1722 } 1723 1724 /* last field in 'union bpf_attr' used by this command */ 1725 #define BPF_MAP_GET_NEXT_KEY_LAST_FIELD next_key 1726 1727 static int map_get_next_key(union bpf_attr *attr) 1728 { 1729 void __user *ukey = u64_to_user_ptr(attr->key); 1730 void __user *unext_key = u64_to_user_ptr(attr->next_key); 1731 int ufd = attr->map_fd; 1732 struct bpf_map *map; 1733 void *key, *next_key; 1734 struct fd f; 1735 int err; 1736 1737 if (CHECK_ATTR(BPF_MAP_GET_NEXT_KEY)) 1738 return -EINVAL; 1739 1740 f = fdget(ufd); 1741 map = __bpf_map_get(f); 1742 if (IS_ERR(map)) 1743 return PTR_ERR(map); 1744 if (!(map_get_sys_perms(map, f) & FMODE_CAN_READ)) { 1745 err = -EPERM; 1746 goto err_put; 1747 } 1748 1749 if (ukey) { 1750 key = __bpf_copy_key(ukey, map->key_size); 1751 if (IS_ERR(key)) { 1752 err = PTR_ERR(key); 1753 goto err_put; 1754 } 1755 } else { 1756 key = NULL; 1757 } 1758 1759 err = -ENOMEM; 1760 next_key = kvmalloc(map->key_size, GFP_USER); 1761 if (!next_key) 1762 goto free_key; 1763 1764 if (bpf_map_is_offloaded(map)) { 1765 err = bpf_map_offload_get_next_key(map, key, next_key); 1766 goto out; 1767 } 1768 1769 rcu_read_lock(); 1770 err = map->ops->map_get_next_key(map, key, next_key); 1771 rcu_read_unlock(); 1772 out: 1773 if (err) 1774 goto free_next_key; 1775 1776 err = -EFAULT; 1777 if (copy_to_user(unext_key, next_key, map->key_size) != 0) 1778 goto free_next_key; 1779 1780 err = 0; 1781 1782 free_next_key: 1783 kvfree(next_key); 1784 free_key: 1785 kvfree(key); 1786 err_put: 1787 fdput(f); 1788 return err; 1789 } 1790 1791 int generic_map_delete_batch(struct bpf_map *map, 1792 const union bpf_attr *attr, 1793 union bpf_attr __user *uattr) 1794 { 1795 void __user *keys = u64_to_user_ptr(attr->batch.keys); 1796 u32 cp, max_count; 1797 int err = 0; 1798 void *key; 1799 1800 if (attr->batch.elem_flags & ~BPF_F_LOCK) 1801 return -EINVAL; 1802 1803 if ((attr->batch.elem_flags & BPF_F_LOCK) && 1804 !btf_record_has_field(map->record, BPF_SPIN_LOCK)) { 1805 return -EINVAL; 1806 } 1807 1808 max_count = attr->batch.count; 1809 if (!max_count) 1810 return 0; 1811 1812 if (put_user(0, &uattr->batch.count)) 1813 return -EFAULT; 1814 1815 key = kvmalloc(map->key_size, GFP_USER | __GFP_NOWARN); 1816 if (!key) 1817 return -ENOMEM; 1818 1819 for (cp = 0; cp < max_count; cp++) { 1820 err = -EFAULT; 1821 if (copy_from_user(key, keys + cp * map->key_size, 1822 map->key_size)) 1823 break; 1824 1825 if (bpf_map_is_offloaded(map)) { 1826 err = bpf_map_offload_delete_elem(map, key); 1827 break; 1828 } 1829 1830 bpf_disable_instrumentation(); 1831 rcu_read_lock(); 1832 err = map->ops->map_delete_elem(map, key); 1833 rcu_read_unlock(); 1834 bpf_enable_instrumentation(); 1835 if (err) 1836 break; 1837 cond_resched(); 1838 } 1839 if (copy_to_user(&uattr->batch.count, &cp, sizeof(cp))) 1840 err = -EFAULT; 1841 1842 kvfree(key); 1843 1844 return err; 1845 } 1846 1847 int generic_map_update_batch(struct bpf_map *map, struct file *map_file, 1848 const union bpf_attr *attr, 1849 union bpf_attr __user *uattr) 1850 { 1851 void __user *values = u64_to_user_ptr(attr->batch.values); 1852 void __user *keys = u64_to_user_ptr(attr->batch.keys); 1853 u32 value_size, cp, max_count; 1854 void *key, *value; 1855 int err = 0; 1856 1857 if (attr->batch.elem_flags & ~BPF_F_LOCK) 1858 return -EINVAL; 1859 1860 if ((attr->batch.elem_flags & BPF_F_LOCK) && 1861 !btf_record_has_field(map->record, BPF_SPIN_LOCK)) { 1862 return -EINVAL; 1863 } 1864 1865 value_size = bpf_map_value_size(map); 1866 1867 max_count = attr->batch.count; 1868 if (!max_count) 1869 return 0; 1870 1871 if (put_user(0, &uattr->batch.count)) 1872 return -EFAULT; 1873 1874 key = kvmalloc(map->key_size, GFP_USER | __GFP_NOWARN); 1875 if (!key) 1876 return -ENOMEM; 1877 1878 value = kvmalloc(value_size, GFP_USER | __GFP_NOWARN); 1879 if (!value) { 1880 kvfree(key); 1881 return -ENOMEM; 1882 } 1883 1884 for (cp = 0; cp < max_count; cp++) { 1885 err = -EFAULT; 1886 if (copy_from_user(key, keys + cp * map->key_size, 1887 map->key_size) || 1888 copy_from_user(value, values + cp * value_size, value_size)) 1889 break; 1890 1891 err = bpf_map_update_value(map, map_file, key, value, 1892 attr->batch.elem_flags); 1893 1894 if (err) 1895 break; 1896 cond_resched(); 1897 } 1898 1899 if (copy_to_user(&uattr->batch.count, &cp, sizeof(cp))) 1900 err = -EFAULT; 1901 1902 kvfree(value); 1903 kvfree(key); 1904 1905 return err; 1906 } 1907 1908 #define MAP_LOOKUP_RETRIES 3 1909 1910 int generic_map_lookup_batch(struct bpf_map *map, 1911 const union bpf_attr *attr, 1912 union bpf_attr __user *uattr) 1913 { 1914 void __user *uobatch = u64_to_user_ptr(attr->batch.out_batch); 1915 void __user *ubatch = u64_to_user_ptr(attr->batch.in_batch); 1916 void __user *values = u64_to_user_ptr(attr->batch.values); 1917 void __user *keys = u64_to_user_ptr(attr->batch.keys); 1918 void *buf, *buf_prevkey, *prev_key, *key, *value; 1919 int err, retry = MAP_LOOKUP_RETRIES; 1920 u32 value_size, cp, max_count; 1921 1922 if (attr->batch.elem_flags & ~BPF_F_LOCK) 1923 return -EINVAL; 1924 1925 if ((attr->batch.elem_flags & BPF_F_LOCK) && 1926 !btf_record_has_field(map->record, BPF_SPIN_LOCK)) 1927 return -EINVAL; 1928 1929 value_size = bpf_map_value_size(map); 1930 1931 max_count = attr->batch.count; 1932 if (!max_count) 1933 return 0; 1934 1935 if (put_user(0, &uattr->batch.count)) 1936 return -EFAULT; 1937 1938 buf_prevkey = kvmalloc(map->key_size, GFP_USER | __GFP_NOWARN); 1939 if (!buf_prevkey) 1940 return -ENOMEM; 1941 1942 buf = kvmalloc(map->key_size + value_size, GFP_USER | __GFP_NOWARN); 1943 if (!buf) { 1944 kvfree(buf_prevkey); 1945 return -ENOMEM; 1946 } 1947 1948 err = -EFAULT; 1949 prev_key = NULL; 1950 if (ubatch && copy_from_user(buf_prevkey, ubatch, map->key_size)) 1951 goto free_buf; 1952 key = buf; 1953 value = key + map->key_size; 1954 if (ubatch) 1955 prev_key = buf_prevkey; 1956 1957 for (cp = 0; cp < max_count;) { 1958 rcu_read_lock(); 1959 err = map->ops->map_get_next_key(map, prev_key, key); 1960 rcu_read_unlock(); 1961 if (err) 1962 break; 1963 err = bpf_map_copy_value(map, key, value, 1964 attr->batch.elem_flags); 1965 1966 if (err == -ENOENT) { 1967 if (retry) { 1968 retry--; 1969 continue; 1970 } 1971 err = -EINTR; 1972 break; 1973 } 1974 1975 if (err) 1976 goto free_buf; 1977 1978 if (copy_to_user(keys + cp * map->key_size, key, 1979 map->key_size)) { 1980 err = -EFAULT; 1981 goto free_buf; 1982 } 1983 if (copy_to_user(values + cp * value_size, value, value_size)) { 1984 err = -EFAULT; 1985 goto free_buf; 1986 } 1987 1988 if (!prev_key) 1989 prev_key = buf_prevkey; 1990 1991 swap(prev_key, key); 1992 retry = MAP_LOOKUP_RETRIES; 1993 cp++; 1994 cond_resched(); 1995 } 1996 1997 if (err == -EFAULT) 1998 goto free_buf; 1999 2000 if ((copy_to_user(&uattr->batch.count, &cp, sizeof(cp)) || 2001 (cp && copy_to_user(uobatch, prev_key, map->key_size)))) 2002 err = -EFAULT; 2003 2004 free_buf: 2005 kvfree(buf_prevkey); 2006 kvfree(buf); 2007 return err; 2008 } 2009 2010 #define BPF_MAP_LOOKUP_AND_DELETE_ELEM_LAST_FIELD flags 2011 2012 static int map_lookup_and_delete_elem(union bpf_attr *attr) 2013 { 2014 void __user *ukey = u64_to_user_ptr(attr->key); 2015 void __user *uvalue = u64_to_user_ptr(attr->value); 2016 int ufd = attr->map_fd; 2017 struct bpf_map *map; 2018 void *key, *value; 2019 u32 value_size; 2020 struct fd f; 2021 int err; 2022 2023 if (CHECK_ATTR(BPF_MAP_LOOKUP_AND_DELETE_ELEM)) 2024 return -EINVAL; 2025 2026 if (attr->flags & ~BPF_F_LOCK) 2027 return -EINVAL; 2028 2029 f = fdget(ufd); 2030 map = __bpf_map_get(f); 2031 if (IS_ERR(map)) 2032 return PTR_ERR(map); 2033 bpf_map_write_active_inc(map); 2034 if (!(map_get_sys_perms(map, f) & FMODE_CAN_READ) || 2035 !(map_get_sys_perms(map, f) & FMODE_CAN_WRITE)) { 2036 err = -EPERM; 2037 goto err_put; 2038 } 2039 2040 if (attr->flags && 2041 (map->map_type == BPF_MAP_TYPE_QUEUE || 2042 map->map_type == BPF_MAP_TYPE_STACK)) { 2043 err = -EINVAL; 2044 goto err_put; 2045 } 2046 2047 if ((attr->flags & BPF_F_LOCK) && 2048 !btf_record_has_field(map->record, BPF_SPIN_LOCK)) { 2049 err = -EINVAL; 2050 goto err_put; 2051 } 2052 2053 key = __bpf_copy_key(ukey, map->key_size); 2054 if (IS_ERR(key)) { 2055 err = PTR_ERR(key); 2056 goto err_put; 2057 } 2058 2059 value_size = bpf_map_value_size(map); 2060 2061 err = -ENOMEM; 2062 value = kvmalloc(value_size, GFP_USER | __GFP_NOWARN); 2063 if (!value) 2064 goto free_key; 2065 2066 err = -ENOTSUPP; 2067 if (map->map_type == BPF_MAP_TYPE_QUEUE || 2068 map->map_type == BPF_MAP_TYPE_STACK) { 2069 err = map->ops->map_pop_elem(map, value); 2070 } else if (map->map_type == BPF_MAP_TYPE_HASH || 2071 map->map_type == BPF_MAP_TYPE_PERCPU_HASH || 2072 map->map_type == BPF_MAP_TYPE_LRU_HASH || 2073 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) { 2074 if (!bpf_map_is_offloaded(map)) { 2075 bpf_disable_instrumentation(); 2076 rcu_read_lock(); 2077 err = map->ops->map_lookup_and_delete_elem(map, key, value, attr->flags); 2078 rcu_read_unlock(); 2079 bpf_enable_instrumentation(); 2080 } 2081 } 2082 2083 if (err) 2084 goto free_value; 2085 2086 if (copy_to_user(uvalue, value, value_size) != 0) { 2087 err = -EFAULT; 2088 goto free_value; 2089 } 2090 2091 err = 0; 2092 2093 free_value: 2094 kvfree(value); 2095 free_key: 2096 kvfree(key); 2097 err_put: 2098 bpf_map_write_active_dec(map); 2099 fdput(f); 2100 return err; 2101 } 2102 2103 #define BPF_MAP_FREEZE_LAST_FIELD map_fd 2104 2105 static int map_freeze(const union bpf_attr *attr) 2106 { 2107 int err = 0, ufd = attr->map_fd; 2108 struct bpf_map *map; 2109 struct fd f; 2110 2111 if (CHECK_ATTR(BPF_MAP_FREEZE)) 2112 return -EINVAL; 2113 2114 f = fdget(ufd); 2115 map = __bpf_map_get(f); 2116 if (IS_ERR(map)) 2117 return PTR_ERR(map); 2118 2119 if (map->map_type == BPF_MAP_TYPE_STRUCT_OPS || !IS_ERR_OR_NULL(map->record)) { 2120 fdput(f); 2121 return -ENOTSUPP; 2122 } 2123 2124 if (!(map_get_sys_perms(map, f) & FMODE_CAN_WRITE)) { 2125 fdput(f); 2126 return -EPERM; 2127 } 2128 2129 mutex_lock(&map->freeze_mutex); 2130 if (bpf_map_write_active(map)) { 2131 err = -EBUSY; 2132 goto err_put; 2133 } 2134 if (READ_ONCE(map->frozen)) { 2135 err = -EBUSY; 2136 goto err_put; 2137 } 2138 2139 WRITE_ONCE(map->frozen, true); 2140 err_put: 2141 mutex_unlock(&map->freeze_mutex); 2142 fdput(f); 2143 return err; 2144 } 2145 2146 static const struct bpf_prog_ops * const bpf_prog_types[] = { 2147 #define BPF_PROG_TYPE(_id, _name, prog_ctx_type, kern_ctx_type) \ 2148 [_id] = & _name ## _prog_ops, 2149 #define BPF_MAP_TYPE(_id, _ops) 2150 #define BPF_LINK_TYPE(_id, _name) 2151 #include <linux/bpf_types.h> 2152 #undef BPF_PROG_TYPE 2153 #undef BPF_MAP_TYPE 2154 #undef BPF_LINK_TYPE 2155 }; 2156 2157 static int find_prog_type(enum bpf_prog_type type, struct bpf_prog *prog) 2158 { 2159 const struct bpf_prog_ops *ops; 2160 2161 if (type >= ARRAY_SIZE(bpf_prog_types)) 2162 return -EINVAL; 2163 type = array_index_nospec(type, ARRAY_SIZE(bpf_prog_types)); 2164 ops = bpf_prog_types[type]; 2165 if (!ops) 2166 return -EINVAL; 2167 2168 if (!bpf_prog_is_offloaded(prog->aux)) 2169 prog->aux->ops = ops; 2170 else 2171 prog->aux->ops = &bpf_offload_prog_ops; 2172 prog->type = type; 2173 return 0; 2174 } 2175 2176 enum bpf_audit { 2177 BPF_AUDIT_LOAD, 2178 BPF_AUDIT_UNLOAD, 2179 BPF_AUDIT_MAX, 2180 }; 2181 2182 static const char * const bpf_audit_str[BPF_AUDIT_MAX] = { 2183 [BPF_AUDIT_LOAD] = "LOAD", 2184 [BPF_AUDIT_UNLOAD] = "UNLOAD", 2185 }; 2186 2187 static void bpf_audit_prog(const struct bpf_prog *prog, unsigned int op) 2188 { 2189 struct audit_context *ctx = NULL; 2190 struct audit_buffer *ab; 2191 2192 if (WARN_ON_ONCE(op >= BPF_AUDIT_MAX)) 2193 return; 2194 if (audit_enabled == AUDIT_OFF) 2195 return; 2196 if (!in_irq() && !irqs_disabled()) 2197 ctx = audit_context(); 2198 ab = audit_log_start(ctx, GFP_ATOMIC, AUDIT_BPF); 2199 if (unlikely(!ab)) 2200 return; 2201 audit_log_format(ab, "prog-id=%u op=%s", 2202 prog->aux->id, bpf_audit_str[op]); 2203 audit_log_end(ab); 2204 } 2205 2206 static int bpf_prog_alloc_id(struct bpf_prog *prog) 2207 { 2208 int id; 2209 2210 idr_preload(GFP_KERNEL); 2211 spin_lock_bh(&prog_idr_lock); 2212 id = idr_alloc_cyclic(&prog_idr, prog, 1, INT_MAX, GFP_ATOMIC); 2213 if (id > 0) 2214 prog->aux->id = id; 2215 spin_unlock_bh(&prog_idr_lock); 2216 idr_preload_end(); 2217 2218 /* id is in [1, INT_MAX) */ 2219 if (WARN_ON_ONCE(!id)) 2220 return -ENOSPC; 2221 2222 return id > 0 ? 0 : id; 2223 } 2224 2225 void bpf_prog_free_id(struct bpf_prog *prog) 2226 { 2227 unsigned long flags; 2228 2229 /* cBPF to eBPF migrations are currently not in the idr store. 2230 * Offloaded programs are removed from the store when their device 2231 * disappears - even if someone grabs an fd to them they are unusable, 2232 * simply waiting for refcnt to drop to be freed. 2233 */ 2234 if (!prog->aux->id) 2235 return; 2236 2237 spin_lock_irqsave(&prog_idr_lock, flags); 2238 idr_remove(&prog_idr, prog->aux->id); 2239 prog->aux->id = 0; 2240 spin_unlock_irqrestore(&prog_idr_lock, flags); 2241 } 2242 2243 static void __bpf_prog_put_rcu(struct rcu_head *rcu) 2244 { 2245 struct bpf_prog_aux *aux = container_of(rcu, struct bpf_prog_aux, rcu); 2246 2247 kvfree(aux->func_info); 2248 kfree(aux->func_info_aux); 2249 free_uid(aux->user); 2250 security_bpf_prog_free(aux->prog); 2251 bpf_prog_free(aux->prog); 2252 } 2253 2254 static void __bpf_prog_put_noref(struct bpf_prog *prog, bool deferred) 2255 { 2256 bpf_prog_kallsyms_del_all(prog); 2257 btf_put(prog->aux->btf); 2258 module_put(prog->aux->mod); 2259 kvfree(prog->aux->jited_linfo); 2260 kvfree(prog->aux->linfo); 2261 kfree(prog->aux->kfunc_tab); 2262 if (prog->aux->attach_btf) 2263 btf_put(prog->aux->attach_btf); 2264 2265 if (deferred) { 2266 if (prog->sleepable) 2267 call_rcu_tasks_trace(&prog->aux->rcu, __bpf_prog_put_rcu); 2268 else 2269 call_rcu(&prog->aux->rcu, __bpf_prog_put_rcu); 2270 } else { 2271 __bpf_prog_put_rcu(&prog->aux->rcu); 2272 } 2273 } 2274 2275 static void bpf_prog_put_deferred(struct work_struct *work) 2276 { 2277 struct bpf_prog_aux *aux; 2278 struct bpf_prog *prog; 2279 2280 aux = container_of(work, struct bpf_prog_aux, work); 2281 prog = aux->prog; 2282 perf_event_bpf_event(prog, PERF_BPF_EVENT_PROG_UNLOAD, 0); 2283 bpf_audit_prog(prog, BPF_AUDIT_UNLOAD); 2284 bpf_prog_free_id(prog); 2285 __bpf_prog_put_noref(prog, true); 2286 } 2287 2288 static void __bpf_prog_put(struct bpf_prog *prog) 2289 { 2290 struct bpf_prog_aux *aux = prog->aux; 2291 2292 if (atomic64_dec_and_test(&aux->refcnt)) { 2293 if (in_irq() || irqs_disabled()) { 2294 INIT_WORK(&aux->work, bpf_prog_put_deferred); 2295 schedule_work(&aux->work); 2296 } else { 2297 bpf_prog_put_deferred(&aux->work); 2298 } 2299 } 2300 } 2301 2302 void bpf_prog_put(struct bpf_prog *prog) 2303 { 2304 __bpf_prog_put(prog); 2305 } 2306 EXPORT_SYMBOL_GPL(bpf_prog_put); 2307 2308 static int bpf_prog_release(struct inode *inode, struct file *filp) 2309 { 2310 struct bpf_prog *prog = filp->private_data; 2311 2312 bpf_prog_put(prog); 2313 return 0; 2314 } 2315 2316 struct bpf_prog_kstats { 2317 u64 nsecs; 2318 u64 cnt; 2319 u64 misses; 2320 }; 2321 2322 void notrace bpf_prog_inc_misses_counter(struct bpf_prog *prog) 2323 { 2324 struct bpf_prog_stats *stats; 2325 unsigned int flags; 2326 2327 stats = this_cpu_ptr(prog->stats); 2328 flags = u64_stats_update_begin_irqsave(&stats->syncp); 2329 u64_stats_inc(&stats->misses); 2330 u64_stats_update_end_irqrestore(&stats->syncp, flags); 2331 } 2332 2333 static void bpf_prog_get_stats(const struct bpf_prog *prog, 2334 struct bpf_prog_kstats *stats) 2335 { 2336 u64 nsecs = 0, cnt = 0, misses = 0; 2337 int cpu; 2338 2339 for_each_possible_cpu(cpu) { 2340 const struct bpf_prog_stats *st; 2341 unsigned int start; 2342 u64 tnsecs, tcnt, tmisses; 2343 2344 st = per_cpu_ptr(prog->stats, cpu); 2345 do { 2346 start = u64_stats_fetch_begin(&st->syncp); 2347 tnsecs = u64_stats_read(&st->nsecs); 2348 tcnt = u64_stats_read(&st->cnt); 2349 tmisses = u64_stats_read(&st->misses); 2350 } while (u64_stats_fetch_retry(&st->syncp, start)); 2351 nsecs += tnsecs; 2352 cnt += tcnt; 2353 misses += tmisses; 2354 } 2355 stats->nsecs = nsecs; 2356 stats->cnt = cnt; 2357 stats->misses = misses; 2358 } 2359 2360 #ifdef CONFIG_PROC_FS 2361 static void bpf_prog_show_fdinfo(struct seq_file *m, struct file *filp) 2362 { 2363 const struct bpf_prog *prog = filp->private_data; 2364 char prog_tag[sizeof(prog->tag) * 2 + 1] = { }; 2365 struct bpf_prog_kstats stats; 2366 2367 bpf_prog_get_stats(prog, &stats); 2368 bin2hex(prog_tag, prog->tag, sizeof(prog->tag)); 2369 seq_printf(m, 2370 "prog_type:\t%u\n" 2371 "prog_jited:\t%u\n" 2372 "prog_tag:\t%s\n" 2373 "memlock:\t%llu\n" 2374 "prog_id:\t%u\n" 2375 "run_time_ns:\t%llu\n" 2376 "run_cnt:\t%llu\n" 2377 "recursion_misses:\t%llu\n" 2378 "verified_insns:\t%u\n", 2379 prog->type, 2380 prog->jited, 2381 prog_tag, 2382 prog->pages * 1ULL << PAGE_SHIFT, 2383 prog->aux->id, 2384 stats.nsecs, 2385 stats.cnt, 2386 stats.misses, 2387 prog->aux->verified_insns); 2388 } 2389 #endif 2390 2391 const struct file_operations bpf_prog_fops = { 2392 #ifdef CONFIG_PROC_FS 2393 .show_fdinfo = bpf_prog_show_fdinfo, 2394 #endif 2395 .release = bpf_prog_release, 2396 .read = bpf_dummy_read, 2397 .write = bpf_dummy_write, 2398 }; 2399 2400 int bpf_prog_new_fd(struct bpf_prog *prog) 2401 { 2402 int ret; 2403 2404 ret = security_bpf_prog(prog); 2405 if (ret < 0) 2406 return ret; 2407 2408 return anon_inode_getfd("bpf-prog", &bpf_prog_fops, prog, 2409 O_RDWR | O_CLOEXEC); 2410 } 2411 2412 static struct bpf_prog *____bpf_prog_get(struct fd f) 2413 { 2414 if (!f.file) 2415 return ERR_PTR(-EBADF); 2416 if (f.file->f_op != &bpf_prog_fops) { 2417 fdput(f); 2418 return ERR_PTR(-EINVAL); 2419 } 2420 2421 return f.file->private_data; 2422 } 2423 2424 void bpf_prog_add(struct bpf_prog *prog, int i) 2425 { 2426 atomic64_add(i, &prog->aux->refcnt); 2427 } 2428 EXPORT_SYMBOL_GPL(bpf_prog_add); 2429 2430 void bpf_prog_sub(struct bpf_prog *prog, int i) 2431 { 2432 /* Only to be used for undoing previous bpf_prog_add() in some 2433 * error path. We still know that another entity in our call 2434 * path holds a reference to the program, thus atomic_sub() can 2435 * be safely used in such cases! 2436 */ 2437 WARN_ON(atomic64_sub_return(i, &prog->aux->refcnt) == 0); 2438 } 2439 EXPORT_SYMBOL_GPL(bpf_prog_sub); 2440 2441 void bpf_prog_inc(struct bpf_prog *prog) 2442 { 2443 atomic64_inc(&prog->aux->refcnt); 2444 } 2445 EXPORT_SYMBOL_GPL(bpf_prog_inc); 2446 2447 /* prog_idr_lock should have been held */ 2448 struct bpf_prog *bpf_prog_inc_not_zero(struct bpf_prog *prog) 2449 { 2450 int refold; 2451 2452 refold = atomic64_fetch_add_unless(&prog->aux->refcnt, 1, 0); 2453 2454 if (!refold) 2455 return ERR_PTR(-ENOENT); 2456 2457 return prog; 2458 } 2459 EXPORT_SYMBOL_GPL(bpf_prog_inc_not_zero); 2460 2461 bool bpf_prog_get_ok(struct bpf_prog *prog, 2462 enum bpf_prog_type *attach_type, bool attach_drv) 2463 { 2464 /* not an attachment, just a refcount inc, always allow */ 2465 if (!attach_type) 2466 return true; 2467 2468 if (prog->type != *attach_type) 2469 return false; 2470 if (bpf_prog_is_offloaded(prog->aux) && !attach_drv) 2471 return false; 2472 2473 return true; 2474 } 2475 2476 static struct bpf_prog *__bpf_prog_get(u32 ufd, enum bpf_prog_type *attach_type, 2477 bool attach_drv) 2478 { 2479 struct fd f = fdget(ufd); 2480 struct bpf_prog *prog; 2481 2482 prog = ____bpf_prog_get(f); 2483 if (IS_ERR(prog)) 2484 return prog; 2485 if (!bpf_prog_get_ok(prog, attach_type, attach_drv)) { 2486 prog = ERR_PTR(-EINVAL); 2487 goto out; 2488 } 2489 2490 bpf_prog_inc(prog); 2491 out: 2492 fdput(f); 2493 return prog; 2494 } 2495 2496 struct bpf_prog *bpf_prog_get(u32 ufd) 2497 { 2498 return __bpf_prog_get(ufd, NULL, false); 2499 } 2500 2501 struct bpf_prog *bpf_prog_get_type_dev(u32 ufd, enum bpf_prog_type type, 2502 bool attach_drv) 2503 { 2504 return __bpf_prog_get(ufd, &type, attach_drv); 2505 } 2506 EXPORT_SYMBOL_GPL(bpf_prog_get_type_dev); 2507 2508 /* Initially all BPF programs could be loaded w/o specifying 2509 * expected_attach_type. Later for some of them specifying expected_attach_type 2510 * at load time became required so that program could be validated properly. 2511 * Programs of types that are allowed to be loaded both w/ and w/o (for 2512 * backward compatibility) expected_attach_type, should have the default attach 2513 * type assigned to expected_attach_type for the latter case, so that it can be 2514 * validated later at attach time. 2515 * 2516 * bpf_prog_load_fixup_attach_type() sets expected_attach_type in @attr if 2517 * prog type requires it but has some attach types that have to be backward 2518 * compatible. 2519 */ 2520 static void bpf_prog_load_fixup_attach_type(union bpf_attr *attr) 2521 { 2522 switch (attr->prog_type) { 2523 case BPF_PROG_TYPE_CGROUP_SOCK: 2524 /* Unfortunately BPF_ATTACH_TYPE_UNSPEC enumeration doesn't 2525 * exist so checking for non-zero is the way to go here. 2526 */ 2527 if (!attr->expected_attach_type) 2528 attr->expected_attach_type = 2529 BPF_CGROUP_INET_SOCK_CREATE; 2530 break; 2531 case BPF_PROG_TYPE_SK_REUSEPORT: 2532 if (!attr->expected_attach_type) 2533 attr->expected_attach_type = 2534 BPF_SK_REUSEPORT_SELECT; 2535 break; 2536 } 2537 } 2538 2539 static int 2540 bpf_prog_load_check_attach(enum bpf_prog_type prog_type, 2541 enum bpf_attach_type expected_attach_type, 2542 struct btf *attach_btf, u32 btf_id, 2543 struct bpf_prog *dst_prog) 2544 { 2545 if (btf_id) { 2546 if (btf_id > BTF_MAX_TYPE) 2547 return -EINVAL; 2548 2549 if (!attach_btf && !dst_prog) 2550 return -EINVAL; 2551 2552 switch (prog_type) { 2553 case BPF_PROG_TYPE_TRACING: 2554 case BPF_PROG_TYPE_LSM: 2555 case BPF_PROG_TYPE_STRUCT_OPS: 2556 case BPF_PROG_TYPE_EXT: 2557 break; 2558 default: 2559 return -EINVAL; 2560 } 2561 } 2562 2563 if (attach_btf && (!btf_id || dst_prog)) 2564 return -EINVAL; 2565 2566 if (dst_prog && prog_type != BPF_PROG_TYPE_TRACING && 2567 prog_type != BPF_PROG_TYPE_EXT) 2568 return -EINVAL; 2569 2570 switch (prog_type) { 2571 case BPF_PROG_TYPE_CGROUP_SOCK: 2572 switch (expected_attach_type) { 2573 case BPF_CGROUP_INET_SOCK_CREATE: 2574 case BPF_CGROUP_INET_SOCK_RELEASE: 2575 case BPF_CGROUP_INET4_POST_BIND: 2576 case BPF_CGROUP_INET6_POST_BIND: 2577 return 0; 2578 default: 2579 return -EINVAL; 2580 } 2581 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR: 2582 switch (expected_attach_type) { 2583 case BPF_CGROUP_INET4_BIND: 2584 case BPF_CGROUP_INET6_BIND: 2585 case BPF_CGROUP_INET4_CONNECT: 2586 case BPF_CGROUP_INET6_CONNECT: 2587 case BPF_CGROUP_UNIX_CONNECT: 2588 case BPF_CGROUP_INET4_GETPEERNAME: 2589 case BPF_CGROUP_INET6_GETPEERNAME: 2590 case BPF_CGROUP_UNIX_GETPEERNAME: 2591 case BPF_CGROUP_INET4_GETSOCKNAME: 2592 case BPF_CGROUP_INET6_GETSOCKNAME: 2593 case BPF_CGROUP_UNIX_GETSOCKNAME: 2594 case BPF_CGROUP_UDP4_SENDMSG: 2595 case BPF_CGROUP_UDP6_SENDMSG: 2596 case BPF_CGROUP_UNIX_SENDMSG: 2597 case BPF_CGROUP_UDP4_RECVMSG: 2598 case BPF_CGROUP_UDP6_RECVMSG: 2599 case BPF_CGROUP_UNIX_RECVMSG: 2600 return 0; 2601 default: 2602 return -EINVAL; 2603 } 2604 case BPF_PROG_TYPE_CGROUP_SKB: 2605 switch (expected_attach_type) { 2606 case BPF_CGROUP_INET_INGRESS: 2607 case BPF_CGROUP_INET_EGRESS: 2608 return 0; 2609 default: 2610 return -EINVAL; 2611 } 2612 case BPF_PROG_TYPE_CGROUP_SOCKOPT: 2613 switch (expected_attach_type) { 2614 case BPF_CGROUP_SETSOCKOPT: 2615 case BPF_CGROUP_GETSOCKOPT: 2616 return 0; 2617 default: 2618 return -EINVAL; 2619 } 2620 case BPF_PROG_TYPE_SK_LOOKUP: 2621 if (expected_attach_type == BPF_SK_LOOKUP) 2622 return 0; 2623 return -EINVAL; 2624 case BPF_PROG_TYPE_SK_REUSEPORT: 2625 switch (expected_attach_type) { 2626 case BPF_SK_REUSEPORT_SELECT: 2627 case BPF_SK_REUSEPORT_SELECT_OR_MIGRATE: 2628 return 0; 2629 default: 2630 return -EINVAL; 2631 } 2632 case BPF_PROG_TYPE_NETFILTER: 2633 if (expected_attach_type == BPF_NETFILTER) 2634 return 0; 2635 return -EINVAL; 2636 case BPF_PROG_TYPE_SYSCALL: 2637 case BPF_PROG_TYPE_EXT: 2638 if (expected_attach_type) 2639 return -EINVAL; 2640 fallthrough; 2641 default: 2642 return 0; 2643 } 2644 } 2645 2646 static bool is_net_admin_prog_type(enum bpf_prog_type prog_type) 2647 { 2648 switch (prog_type) { 2649 case BPF_PROG_TYPE_SCHED_CLS: 2650 case BPF_PROG_TYPE_SCHED_ACT: 2651 case BPF_PROG_TYPE_XDP: 2652 case BPF_PROG_TYPE_LWT_IN: 2653 case BPF_PROG_TYPE_LWT_OUT: 2654 case BPF_PROG_TYPE_LWT_XMIT: 2655 case BPF_PROG_TYPE_LWT_SEG6LOCAL: 2656 case BPF_PROG_TYPE_SK_SKB: 2657 case BPF_PROG_TYPE_SK_MSG: 2658 case BPF_PROG_TYPE_FLOW_DISSECTOR: 2659 case BPF_PROG_TYPE_CGROUP_DEVICE: 2660 case BPF_PROG_TYPE_CGROUP_SOCK: 2661 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR: 2662 case BPF_PROG_TYPE_CGROUP_SOCKOPT: 2663 case BPF_PROG_TYPE_CGROUP_SYSCTL: 2664 case BPF_PROG_TYPE_SOCK_OPS: 2665 case BPF_PROG_TYPE_EXT: /* extends any prog */ 2666 case BPF_PROG_TYPE_NETFILTER: 2667 return true; 2668 case BPF_PROG_TYPE_CGROUP_SKB: 2669 /* always unpriv */ 2670 case BPF_PROG_TYPE_SK_REUSEPORT: 2671 /* equivalent to SOCKET_FILTER. need CAP_BPF only */ 2672 default: 2673 return false; 2674 } 2675 } 2676 2677 static bool is_perfmon_prog_type(enum bpf_prog_type prog_type) 2678 { 2679 switch (prog_type) { 2680 case BPF_PROG_TYPE_KPROBE: 2681 case BPF_PROG_TYPE_TRACEPOINT: 2682 case BPF_PROG_TYPE_PERF_EVENT: 2683 case BPF_PROG_TYPE_RAW_TRACEPOINT: 2684 case BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE: 2685 case BPF_PROG_TYPE_TRACING: 2686 case BPF_PROG_TYPE_LSM: 2687 case BPF_PROG_TYPE_STRUCT_OPS: /* has access to struct sock */ 2688 case BPF_PROG_TYPE_EXT: /* extends any prog */ 2689 return true; 2690 default: 2691 return false; 2692 } 2693 } 2694 2695 /* last field in 'union bpf_attr' used by this command */ 2696 #define BPF_PROG_LOAD_LAST_FIELD prog_token_fd 2697 2698 static int bpf_prog_load(union bpf_attr *attr, bpfptr_t uattr, u32 uattr_size) 2699 { 2700 enum bpf_prog_type type = attr->prog_type; 2701 struct bpf_prog *prog, *dst_prog = NULL; 2702 struct btf *attach_btf = NULL; 2703 struct bpf_token *token = NULL; 2704 bool bpf_cap; 2705 int err; 2706 char license[128]; 2707 2708 if (CHECK_ATTR(BPF_PROG_LOAD)) 2709 return -EINVAL; 2710 2711 if (attr->prog_flags & ~(BPF_F_STRICT_ALIGNMENT | 2712 BPF_F_ANY_ALIGNMENT | 2713 BPF_F_TEST_STATE_FREQ | 2714 BPF_F_SLEEPABLE | 2715 BPF_F_TEST_RND_HI32 | 2716 BPF_F_XDP_HAS_FRAGS | 2717 BPF_F_XDP_DEV_BOUND_ONLY | 2718 BPF_F_TEST_REG_INVARIANTS | 2719 BPF_F_TOKEN_FD)) 2720 return -EINVAL; 2721 2722 bpf_prog_load_fixup_attach_type(attr); 2723 2724 if (attr->prog_flags & BPF_F_TOKEN_FD) { 2725 token = bpf_token_get_from_fd(attr->prog_token_fd); 2726 if (IS_ERR(token)) 2727 return PTR_ERR(token); 2728 /* if current token doesn't grant prog loading permissions, 2729 * then we can't use this token, so ignore it and rely on 2730 * system-wide capabilities checks 2731 */ 2732 if (!bpf_token_allow_cmd(token, BPF_PROG_LOAD) || 2733 !bpf_token_allow_prog_type(token, attr->prog_type, 2734 attr->expected_attach_type)) { 2735 bpf_token_put(token); 2736 token = NULL; 2737 } 2738 } 2739 2740 bpf_cap = bpf_token_capable(token, CAP_BPF); 2741 err = -EPERM; 2742 2743 if (!IS_ENABLED(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && 2744 (attr->prog_flags & BPF_F_ANY_ALIGNMENT) && 2745 !bpf_cap) 2746 goto put_token; 2747 2748 /* Intent here is for unprivileged_bpf_disabled to block BPF program 2749 * creation for unprivileged users; other actions depend 2750 * on fd availability and access to bpffs, so are dependent on 2751 * object creation success. Even with unprivileged BPF disabled, 2752 * capability checks are still carried out for these 2753 * and other operations. 2754 */ 2755 if (sysctl_unprivileged_bpf_disabled && !bpf_cap) 2756 goto put_token; 2757 2758 if (attr->insn_cnt == 0 || 2759 attr->insn_cnt > (bpf_cap ? BPF_COMPLEXITY_LIMIT_INSNS : BPF_MAXINSNS)) { 2760 err = -E2BIG; 2761 goto put_token; 2762 } 2763 if (type != BPF_PROG_TYPE_SOCKET_FILTER && 2764 type != BPF_PROG_TYPE_CGROUP_SKB && 2765 !bpf_cap) 2766 goto put_token; 2767 2768 if (is_net_admin_prog_type(type) && !bpf_token_capable(token, CAP_NET_ADMIN)) 2769 goto put_token; 2770 if (is_perfmon_prog_type(type) && !bpf_token_capable(token, CAP_PERFMON)) 2771 goto put_token; 2772 2773 /* attach_prog_fd/attach_btf_obj_fd can specify fd of either bpf_prog 2774 * or btf, we need to check which one it is 2775 */ 2776 if (attr->attach_prog_fd) { 2777 dst_prog = bpf_prog_get(attr->attach_prog_fd); 2778 if (IS_ERR(dst_prog)) { 2779 dst_prog = NULL; 2780 attach_btf = btf_get_by_fd(attr->attach_btf_obj_fd); 2781 if (IS_ERR(attach_btf)) { 2782 err = -EINVAL; 2783 goto put_token; 2784 } 2785 if (!btf_is_kernel(attach_btf)) { 2786 /* attaching through specifying bpf_prog's BTF 2787 * objects directly might be supported eventually 2788 */ 2789 btf_put(attach_btf); 2790 err = -ENOTSUPP; 2791 goto put_token; 2792 } 2793 } 2794 } else if (attr->attach_btf_id) { 2795 /* fall back to vmlinux BTF, if BTF type ID is specified */ 2796 attach_btf = bpf_get_btf_vmlinux(); 2797 if (IS_ERR(attach_btf)) { 2798 err = PTR_ERR(attach_btf); 2799 goto put_token; 2800 } 2801 if (!attach_btf) { 2802 err = -EINVAL; 2803 goto put_token; 2804 } 2805 btf_get(attach_btf); 2806 } 2807 2808 if (bpf_prog_load_check_attach(type, attr->expected_attach_type, 2809 attach_btf, attr->attach_btf_id, 2810 dst_prog)) { 2811 if (dst_prog) 2812 bpf_prog_put(dst_prog); 2813 if (attach_btf) 2814 btf_put(attach_btf); 2815 err = -EINVAL; 2816 goto put_token; 2817 } 2818 2819 /* plain bpf_prog allocation */ 2820 prog = bpf_prog_alloc(bpf_prog_size(attr->insn_cnt), GFP_USER); 2821 if (!prog) { 2822 if (dst_prog) 2823 bpf_prog_put(dst_prog); 2824 if (attach_btf) 2825 btf_put(attach_btf); 2826 err = -EINVAL; 2827 goto put_token; 2828 } 2829 2830 prog->expected_attach_type = attr->expected_attach_type; 2831 prog->sleepable = !!(attr->prog_flags & BPF_F_SLEEPABLE); 2832 prog->aux->attach_btf = attach_btf; 2833 prog->aux->attach_btf_id = attr->attach_btf_id; 2834 prog->aux->dst_prog = dst_prog; 2835 prog->aux->dev_bound = !!attr->prog_ifindex; 2836 prog->aux->xdp_has_frags = attr->prog_flags & BPF_F_XDP_HAS_FRAGS; 2837 2838 /* move token into prog->aux, reuse taken refcnt */ 2839 prog->aux->token = token; 2840 token = NULL; 2841 2842 prog->aux->user = get_current_user(); 2843 prog->len = attr->insn_cnt; 2844 2845 err = -EFAULT; 2846 if (copy_from_bpfptr(prog->insns, 2847 make_bpfptr(attr->insns, uattr.is_kernel), 2848 bpf_prog_insn_size(prog)) != 0) 2849 goto free_prog; 2850 /* copy eBPF program license from user space */ 2851 if (strncpy_from_bpfptr(license, 2852 make_bpfptr(attr->license, uattr.is_kernel), 2853 sizeof(license) - 1) < 0) 2854 goto free_prog; 2855 license[sizeof(license) - 1] = 0; 2856 2857 /* eBPF programs must be GPL compatible to use GPL-ed functions */ 2858 prog->gpl_compatible = license_is_gpl_compatible(license) ? 1 : 0; 2859 2860 prog->orig_prog = NULL; 2861 prog->jited = 0; 2862 2863 atomic64_set(&prog->aux->refcnt, 1); 2864 2865 if (bpf_prog_is_dev_bound(prog->aux)) { 2866 err = bpf_prog_dev_bound_init(prog, attr); 2867 if (err) 2868 goto free_prog; 2869 } 2870 2871 if (type == BPF_PROG_TYPE_EXT && dst_prog && 2872 bpf_prog_is_dev_bound(dst_prog->aux)) { 2873 err = bpf_prog_dev_bound_inherit(prog, dst_prog); 2874 if (err) 2875 goto free_prog; 2876 } 2877 2878 /* 2879 * Bookkeeping for managing the program attachment chain. 2880 * 2881 * It might be tempting to set attach_tracing_prog flag at the attachment 2882 * time, but this will not prevent from loading bunch of tracing prog 2883 * first, then attach them one to another. 2884 * 2885 * The flag attach_tracing_prog is set for the whole program lifecycle, and 2886 * doesn't have to be cleared in bpf_tracing_link_release, since tracing 2887 * programs cannot change attachment target. 2888 */ 2889 if (type == BPF_PROG_TYPE_TRACING && dst_prog && 2890 dst_prog->type == BPF_PROG_TYPE_TRACING) { 2891 prog->aux->attach_tracing_prog = true; 2892 } 2893 2894 /* find program type: socket_filter vs tracing_filter */ 2895 err = find_prog_type(type, prog); 2896 if (err < 0) 2897 goto free_prog; 2898 2899 prog->aux->load_time = ktime_get_boottime_ns(); 2900 err = bpf_obj_name_cpy(prog->aux->name, attr->prog_name, 2901 sizeof(attr->prog_name)); 2902 if (err < 0) 2903 goto free_prog; 2904 2905 err = security_bpf_prog_load(prog, attr, token); 2906 if (err) 2907 goto free_prog_sec; 2908 2909 /* run eBPF verifier */ 2910 err = bpf_check(&prog, attr, uattr, uattr_size); 2911 if (err < 0) 2912 goto free_used_maps; 2913 2914 prog = bpf_prog_select_runtime(prog, &err); 2915 if (err < 0) 2916 goto free_used_maps; 2917 2918 err = bpf_prog_alloc_id(prog); 2919 if (err) 2920 goto free_used_maps; 2921 2922 /* Upon success of bpf_prog_alloc_id(), the BPF prog is 2923 * effectively publicly exposed. However, retrieving via 2924 * bpf_prog_get_fd_by_id() will take another reference, 2925 * therefore it cannot be gone underneath us. 2926 * 2927 * Only for the time /after/ successful bpf_prog_new_fd() 2928 * and before returning to userspace, we might just hold 2929 * one reference and any parallel close on that fd could 2930 * rip everything out. Hence, below notifications must 2931 * happen before bpf_prog_new_fd(). 2932 * 2933 * Also, any failure handling from this point onwards must 2934 * be using bpf_prog_put() given the program is exposed. 2935 */ 2936 bpf_prog_kallsyms_add(prog); 2937 perf_event_bpf_event(prog, PERF_BPF_EVENT_PROG_LOAD, 0); 2938 bpf_audit_prog(prog, BPF_AUDIT_LOAD); 2939 2940 err = bpf_prog_new_fd(prog); 2941 if (err < 0) 2942 bpf_prog_put(prog); 2943 return err; 2944 2945 free_used_maps: 2946 /* In case we have subprogs, we need to wait for a grace 2947 * period before we can tear down JIT memory since symbols 2948 * are already exposed under kallsyms. 2949 */ 2950 __bpf_prog_put_noref(prog, prog->aux->real_func_cnt); 2951 return err; 2952 2953 free_prog_sec: 2954 security_bpf_prog_free(prog); 2955 free_prog: 2956 free_uid(prog->aux->user); 2957 if (prog->aux->attach_btf) 2958 btf_put(prog->aux->attach_btf); 2959 bpf_prog_free(prog); 2960 put_token: 2961 bpf_token_put(token); 2962 return err; 2963 } 2964 2965 #define BPF_OBJ_LAST_FIELD path_fd 2966 2967 static int bpf_obj_pin(const union bpf_attr *attr) 2968 { 2969 int path_fd; 2970 2971 if (CHECK_ATTR(BPF_OBJ) || attr->file_flags & ~BPF_F_PATH_FD) 2972 return -EINVAL; 2973 2974 /* path_fd has to be accompanied by BPF_F_PATH_FD flag */ 2975 if (!(attr->file_flags & BPF_F_PATH_FD) && attr->path_fd) 2976 return -EINVAL; 2977 2978 path_fd = attr->file_flags & BPF_F_PATH_FD ? attr->path_fd : AT_FDCWD; 2979 return bpf_obj_pin_user(attr->bpf_fd, path_fd, 2980 u64_to_user_ptr(attr->pathname)); 2981 } 2982 2983 static int bpf_obj_get(const union bpf_attr *attr) 2984 { 2985 int path_fd; 2986 2987 if (CHECK_ATTR(BPF_OBJ) || attr->bpf_fd != 0 || 2988 attr->file_flags & ~(BPF_OBJ_FLAG_MASK | BPF_F_PATH_FD)) 2989 return -EINVAL; 2990 2991 /* path_fd has to be accompanied by BPF_F_PATH_FD flag */ 2992 if (!(attr->file_flags & BPF_F_PATH_FD) && attr->path_fd) 2993 return -EINVAL; 2994 2995 path_fd = attr->file_flags & BPF_F_PATH_FD ? attr->path_fd : AT_FDCWD; 2996 return bpf_obj_get_user(path_fd, u64_to_user_ptr(attr->pathname), 2997 attr->file_flags); 2998 } 2999 3000 void bpf_link_init(struct bpf_link *link, enum bpf_link_type type, 3001 const struct bpf_link_ops *ops, struct bpf_prog *prog) 3002 { 3003 WARN_ON(ops->dealloc && ops->dealloc_deferred); 3004 atomic64_set(&link->refcnt, 1); 3005 link->type = type; 3006 link->id = 0; 3007 link->ops = ops; 3008 link->prog = prog; 3009 } 3010 3011 static void bpf_link_free_id(int id) 3012 { 3013 if (!id) 3014 return; 3015 3016 spin_lock_bh(&link_idr_lock); 3017 idr_remove(&link_idr, id); 3018 spin_unlock_bh(&link_idr_lock); 3019 } 3020 3021 /* Clean up bpf_link and corresponding anon_inode file and FD. After 3022 * anon_inode is created, bpf_link can't be just kfree()'d due to deferred 3023 * anon_inode's release() call. This helper marks bpf_link as 3024 * defunct, releases anon_inode file and puts reserved FD. bpf_prog's refcnt 3025 * is not decremented, it's the responsibility of a calling code that failed 3026 * to complete bpf_link initialization. 3027 * This helper eventually calls link's dealloc callback, but does not call 3028 * link's release callback. 3029 */ 3030 void bpf_link_cleanup(struct bpf_link_primer *primer) 3031 { 3032 primer->link->prog = NULL; 3033 bpf_link_free_id(primer->id); 3034 fput(primer->file); 3035 put_unused_fd(primer->fd); 3036 } 3037 3038 void bpf_link_inc(struct bpf_link *link) 3039 { 3040 atomic64_inc(&link->refcnt); 3041 } 3042 3043 static void bpf_link_defer_dealloc_rcu_gp(struct rcu_head *rcu) 3044 { 3045 struct bpf_link *link = container_of(rcu, struct bpf_link, rcu); 3046 3047 /* free bpf_link and its containing memory */ 3048 link->ops->dealloc_deferred(link); 3049 } 3050 3051 static void bpf_link_defer_dealloc_mult_rcu_gp(struct rcu_head *rcu) 3052 { 3053 if (rcu_trace_implies_rcu_gp()) 3054 bpf_link_defer_dealloc_rcu_gp(rcu); 3055 else 3056 call_rcu(rcu, bpf_link_defer_dealloc_rcu_gp); 3057 } 3058 3059 /* bpf_link_free is guaranteed to be called from process context */ 3060 static void bpf_link_free(struct bpf_link *link) 3061 { 3062 const struct bpf_link_ops *ops = link->ops; 3063 bool sleepable = false; 3064 3065 bpf_link_free_id(link->id); 3066 if (link->prog) { 3067 sleepable = link->prog->sleepable; 3068 /* detach BPF program, clean up used resources */ 3069 ops->release(link); 3070 bpf_prog_put(link->prog); 3071 } 3072 if (ops->dealloc_deferred) { 3073 /* schedule BPF link deallocation; if underlying BPF program 3074 * is sleepable, we need to first wait for RCU tasks trace 3075 * sync, then go through "classic" RCU grace period 3076 */ 3077 if (sleepable) 3078 call_rcu_tasks_trace(&link->rcu, bpf_link_defer_dealloc_mult_rcu_gp); 3079 else 3080 call_rcu(&link->rcu, bpf_link_defer_dealloc_rcu_gp); 3081 } else if (ops->dealloc) 3082 ops->dealloc(link); 3083 } 3084 3085 static void bpf_link_put_deferred(struct work_struct *work) 3086 { 3087 struct bpf_link *link = container_of(work, struct bpf_link, work); 3088 3089 bpf_link_free(link); 3090 } 3091 3092 /* bpf_link_put might be called from atomic context. It needs to be called 3093 * from sleepable context in order to acquire sleeping locks during the process. 3094 */ 3095 void bpf_link_put(struct bpf_link *link) 3096 { 3097 if (!atomic64_dec_and_test(&link->refcnt)) 3098 return; 3099 3100 INIT_WORK(&link->work, bpf_link_put_deferred); 3101 schedule_work(&link->work); 3102 } 3103 EXPORT_SYMBOL(bpf_link_put); 3104 3105 static void bpf_link_put_direct(struct bpf_link *link) 3106 { 3107 if (!atomic64_dec_and_test(&link->refcnt)) 3108 return; 3109 bpf_link_free(link); 3110 } 3111 3112 static int bpf_link_release(struct inode *inode, struct file *filp) 3113 { 3114 struct bpf_link *link = filp->private_data; 3115 3116 bpf_link_put_direct(link); 3117 return 0; 3118 } 3119 3120 #ifdef CONFIG_PROC_FS 3121 #define BPF_PROG_TYPE(_id, _name, prog_ctx_type, kern_ctx_type) 3122 #define BPF_MAP_TYPE(_id, _ops) 3123 #define BPF_LINK_TYPE(_id, _name) [_id] = #_name, 3124 static const char *bpf_link_type_strs[] = { 3125 [BPF_LINK_TYPE_UNSPEC] = "<invalid>", 3126 #include <linux/bpf_types.h> 3127 }; 3128 #undef BPF_PROG_TYPE 3129 #undef BPF_MAP_TYPE 3130 #undef BPF_LINK_TYPE 3131 3132 static void bpf_link_show_fdinfo(struct seq_file *m, struct file *filp) 3133 { 3134 const struct bpf_link *link = filp->private_data; 3135 const struct bpf_prog *prog = link->prog; 3136 char prog_tag[sizeof(prog->tag) * 2 + 1] = { }; 3137 3138 seq_printf(m, 3139 "link_type:\t%s\n" 3140 "link_id:\t%u\n", 3141 bpf_link_type_strs[link->type], 3142 link->id); 3143 if (prog) { 3144 bin2hex(prog_tag, prog->tag, sizeof(prog->tag)); 3145 seq_printf(m, 3146 "prog_tag:\t%s\n" 3147 "prog_id:\t%u\n", 3148 prog_tag, 3149 prog->aux->id); 3150 } 3151 if (link->ops->show_fdinfo) 3152 link->ops->show_fdinfo(link, m); 3153 } 3154 #endif 3155 3156 static __poll_t bpf_link_poll(struct file *file, struct poll_table_struct *pts) 3157 { 3158 struct bpf_link *link = file->private_data; 3159 3160 return link->ops->poll(file, pts); 3161 } 3162 3163 static const struct file_operations bpf_link_fops = { 3164 #ifdef CONFIG_PROC_FS 3165 .show_fdinfo = bpf_link_show_fdinfo, 3166 #endif 3167 .release = bpf_link_release, 3168 .read = bpf_dummy_read, 3169 .write = bpf_dummy_write, 3170 }; 3171 3172 static const struct file_operations bpf_link_fops_poll = { 3173 #ifdef CONFIG_PROC_FS 3174 .show_fdinfo = bpf_link_show_fdinfo, 3175 #endif 3176 .release = bpf_link_release, 3177 .read = bpf_dummy_read, 3178 .write = bpf_dummy_write, 3179 .poll = bpf_link_poll, 3180 }; 3181 3182 static int bpf_link_alloc_id(struct bpf_link *link) 3183 { 3184 int id; 3185 3186 idr_preload(GFP_KERNEL); 3187 spin_lock_bh(&link_idr_lock); 3188 id = idr_alloc_cyclic(&link_idr, link, 1, INT_MAX, GFP_ATOMIC); 3189 spin_unlock_bh(&link_idr_lock); 3190 idr_preload_end(); 3191 3192 return id; 3193 } 3194 3195 /* Prepare bpf_link to be exposed to user-space by allocating anon_inode file, 3196 * reserving unused FD and allocating ID from link_idr. This is to be paired 3197 * with bpf_link_settle() to install FD and ID and expose bpf_link to 3198 * user-space, if bpf_link is successfully attached. If not, bpf_link and 3199 * pre-allocated resources are to be freed with bpf_cleanup() call. All the 3200 * transient state is passed around in struct bpf_link_primer. 3201 * This is preferred way to create and initialize bpf_link, especially when 3202 * there are complicated and expensive operations in between creating bpf_link 3203 * itself and attaching it to BPF hook. By using bpf_link_prime() and 3204 * bpf_link_settle() kernel code using bpf_link doesn't have to perform 3205 * expensive (and potentially failing) roll back operations in a rare case 3206 * that file, FD, or ID can't be allocated. 3207 */ 3208 int bpf_link_prime(struct bpf_link *link, struct bpf_link_primer *primer) 3209 { 3210 struct file *file; 3211 int fd, id; 3212 3213 fd = get_unused_fd_flags(O_CLOEXEC); 3214 if (fd < 0) 3215 return fd; 3216 3217 3218 id = bpf_link_alloc_id(link); 3219 if (id < 0) { 3220 put_unused_fd(fd); 3221 return id; 3222 } 3223 3224 file = anon_inode_getfile("bpf_link", 3225 link->ops->poll ? &bpf_link_fops_poll : &bpf_link_fops, 3226 link, O_CLOEXEC); 3227 if (IS_ERR(file)) { 3228 bpf_link_free_id(id); 3229 put_unused_fd(fd); 3230 return PTR_ERR(file); 3231 } 3232 3233 primer->link = link; 3234 primer->file = file; 3235 primer->fd = fd; 3236 primer->id = id; 3237 return 0; 3238 } 3239 3240 int bpf_link_settle(struct bpf_link_primer *primer) 3241 { 3242 /* make bpf_link fetchable by ID */ 3243 spin_lock_bh(&link_idr_lock); 3244 primer->link->id = primer->id; 3245 spin_unlock_bh(&link_idr_lock); 3246 /* make bpf_link fetchable by FD */ 3247 fd_install(primer->fd, primer->file); 3248 /* pass through installed FD */ 3249 return primer->fd; 3250 } 3251 3252 int bpf_link_new_fd(struct bpf_link *link) 3253 { 3254 return anon_inode_getfd("bpf-link", 3255 link->ops->poll ? &bpf_link_fops_poll : &bpf_link_fops, 3256 link, O_CLOEXEC); 3257 } 3258 3259 struct bpf_link *bpf_link_get_from_fd(u32 ufd) 3260 { 3261 struct fd f = fdget(ufd); 3262 struct bpf_link *link; 3263 3264 if (!f.file) 3265 return ERR_PTR(-EBADF); 3266 if (f.file->f_op != &bpf_link_fops && f.file->f_op != &bpf_link_fops_poll) { 3267 fdput(f); 3268 return ERR_PTR(-EINVAL); 3269 } 3270 3271 link = f.file->private_data; 3272 bpf_link_inc(link); 3273 fdput(f); 3274 3275 return link; 3276 } 3277 EXPORT_SYMBOL(bpf_link_get_from_fd); 3278 3279 static void bpf_tracing_link_release(struct bpf_link *link) 3280 { 3281 struct bpf_tracing_link *tr_link = 3282 container_of(link, struct bpf_tracing_link, link.link); 3283 3284 WARN_ON_ONCE(bpf_trampoline_unlink_prog(&tr_link->link, 3285 tr_link->trampoline)); 3286 3287 bpf_trampoline_put(tr_link->trampoline); 3288 3289 /* tgt_prog is NULL if target is a kernel function */ 3290 if (tr_link->tgt_prog) 3291 bpf_prog_put(tr_link->tgt_prog); 3292 } 3293 3294 static void bpf_tracing_link_dealloc(struct bpf_link *link) 3295 { 3296 struct bpf_tracing_link *tr_link = 3297 container_of(link, struct bpf_tracing_link, link.link); 3298 3299 kfree(tr_link); 3300 } 3301 3302 static void bpf_tracing_link_show_fdinfo(const struct bpf_link *link, 3303 struct seq_file *seq) 3304 { 3305 struct bpf_tracing_link *tr_link = 3306 container_of(link, struct bpf_tracing_link, link.link); 3307 u32 target_btf_id, target_obj_id; 3308 3309 bpf_trampoline_unpack_key(tr_link->trampoline->key, 3310 &target_obj_id, &target_btf_id); 3311 seq_printf(seq, 3312 "attach_type:\t%d\n" 3313 "target_obj_id:\t%u\n" 3314 "target_btf_id:\t%u\n", 3315 tr_link->attach_type, 3316 target_obj_id, 3317 target_btf_id); 3318 } 3319 3320 static int bpf_tracing_link_fill_link_info(const struct bpf_link *link, 3321 struct bpf_link_info *info) 3322 { 3323 struct bpf_tracing_link *tr_link = 3324 container_of(link, struct bpf_tracing_link, link.link); 3325 3326 info->tracing.attach_type = tr_link->attach_type; 3327 bpf_trampoline_unpack_key(tr_link->trampoline->key, 3328 &info->tracing.target_obj_id, 3329 &info->tracing.target_btf_id); 3330 3331 return 0; 3332 } 3333 3334 static const struct bpf_link_ops bpf_tracing_link_lops = { 3335 .release = bpf_tracing_link_release, 3336 .dealloc = bpf_tracing_link_dealloc, 3337 .show_fdinfo = bpf_tracing_link_show_fdinfo, 3338 .fill_link_info = bpf_tracing_link_fill_link_info, 3339 }; 3340 3341 static int bpf_tracing_prog_attach(struct bpf_prog *prog, 3342 int tgt_prog_fd, 3343 u32 btf_id, 3344 u64 bpf_cookie) 3345 { 3346 struct bpf_link_primer link_primer; 3347 struct bpf_prog *tgt_prog = NULL; 3348 struct bpf_trampoline *tr = NULL; 3349 struct bpf_tracing_link *link; 3350 u64 key = 0; 3351 int err; 3352 3353 switch (prog->type) { 3354 case BPF_PROG_TYPE_TRACING: 3355 if (prog->expected_attach_type != BPF_TRACE_FENTRY && 3356 prog->expected_attach_type != BPF_TRACE_FEXIT && 3357 prog->expected_attach_type != BPF_MODIFY_RETURN) { 3358 err = -EINVAL; 3359 goto out_put_prog; 3360 } 3361 break; 3362 case BPF_PROG_TYPE_EXT: 3363 if (prog->expected_attach_type != 0) { 3364 err = -EINVAL; 3365 goto out_put_prog; 3366 } 3367 break; 3368 case BPF_PROG_TYPE_LSM: 3369 if (prog->expected_attach_type != BPF_LSM_MAC) { 3370 err = -EINVAL; 3371 goto out_put_prog; 3372 } 3373 break; 3374 default: 3375 err = -EINVAL; 3376 goto out_put_prog; 3377 } 3378 3379 if (!!tgt_prog_fd != !!btf_id) { 3380 err = -EINVAL; 3381 goto out_put_prog; 3382 } 3383 3384 if (tgt_prog_fd) { 3385 /* 3386 * For now we only allow new targets for BPF_PROG_TYPE_EXT. If this 3387 * part would be changed to implement the same for 3388 * BPF_PROG_TYPE_TRACING, do not forget to update the way how 3389 * attach_tracing_prog flag is set. 3390 */ 3391 if (prog->type != BPF_PROG_TYPE_EXT) { 3392 err = -EINVAL; 3393 goto out_put_prog; 3394 } 3395 3396 tgt_prog = bpf_prog_get(tgt_prog_fd); 3397 if (IS_ERR(tgt_prog)) { 3398 err = PTR_ERR(tgt_prog); 3399 tgt_prog = NULL; 3400 goto out_put_prog; 3401 } 3402 3403 key = bpf_trampoline_compute_key(tgt_prog, NULL, btf_id); 3404 } 3405 3406 link = kzalloc(sizeof(*link), GFP_USER); 3407 if (!link) { 3408 err = -ENOMEM; 3409 goto out_put_prog; 3410 } 3411 bpf_link_init(&link->link.link, BPF_LINK_TYPE_TRACING, 3412 &bpf_tracing_link_lops, prog); 3413 link->attach_type = prog->expected_attach_type; 3414 link->link.cookie = bpf_cookie; 3415 3416 mutex_lock(&prog->aux->dst_mutex); 3417 3418 /* There are a few possible cases here: 3419 * 3420 * - if prog->aux->dst_trampoline is set, the program was just loaded 3421 * and not yet attached to anything, so we can use the values stored 3422 * in prog->aux 3423 * 3424 * - if prog->aux->dst_trampoline is NULL, the program has already been 3425 * attached to a target and its initial target was cleared (below) 3426 * 3427 * - if tgt_prog != NULL, the caller specified tgt_prog_fd + 3428 * target_btf_id using the link_create API. 3429 * 3430 * - if tgt_prog == NULL when this function was called using the old 3431 * raw_tracepoint_open API, and we need a target from prog->aux 3432 * 3433 * - if prog->aux->dst_trampoline and tgt_prog is NULL, the program 3434 * was detached and is going for re-attachment. 3435 * 3436 * - if prog->aux->dst_trampoline is NULL and tgt_prog and prog->aux->attach_btf 3437 * are NULL, then program was already attached and user did not provide 3438 * tgt_prog_fd so we have no way to find out or create trampoline 3439 */ 3440 if (!prog->aux->dst_trampoline && !tgt_prog) { 3441 /* 3442 * Allow re-attach for TRACING and LSM programs. If it's 3443 * currently linked, bpf_trampoline_link_prog will fail. 3444 * EXT programs need to specify tgt_prog_fd, so they 3445 * re-attach in separate code path. 3446 */ 3447 if (prog->type != BPF_PROG_TYPE_TRACING && 3448 prog->type != BPF_PROG_TYPE_LSM) { 3449 err = -EINVAL; 3450 goto out_unlock; 3451 } 3452 /* We can allow re-attach only if we have valid attach_btf. */ 3453 if (!prog->aux->attach_btf) { 3454 err = -EINVAL; 3455 goto out_unlock; 3456 } 3457 btf_id = prog->aux->attach_btf_id; 3458 key = bpf_trampoline_compute_key(NULL, prog->aux->attach_btf, btf_id); 3459 } 3460 3461 if (!prog->aux->dst_trampoline || 3462 (key && key != prog->aux->dst_trampoline->key)) { 3463 /* If there is no saved target, or the specified target is 3464 * different from the destination specified at load time, we 3465 * need a new trampoline and a check for compatibility 3466 */ 3467 struct bpf_attach_target_info tgt_info = {}; 3468 3469 err = bpf_check_attach_target(NULL, prog, tgt_prog, btf_id, 3470 &tgt_info); 3471 if (err) 3472 goto out_unlock; 3473 3474 if (tgt_info.tgt_mod) { 3475 module_put(prog->aux->mod); 3476 prog->aux->mod = tgt_info.tgt_mod; 3477 } 3478 3479 tr = bpf_trampoline_get(key, &tgt_info); 3480 if (!tr) { 3481 err = -ENOMEM; 3482 goto out_unlock; 3483 } 3484 } else { 3485 /* The caller didn't specify a target, or the target was the 3486 * same as the destination supplied during program load. This 3487 * means we can reuse the trampoline and reference from program 3488 * load time, and there is no need to allocate a new one. This 3489 * can only happen once for any program, as the saved values in 3490 * prog->aux are cleared below. 3491 */ 3492 tr = prog->aux->dst_trampoline; 3493 tgt_prog = prog->aux->dst_prog; 3494 } 3495 3496 err = bpf_link_prime(&link->link.link, &link_primer); 3497 if (err) 3498 goto out_unlock; 3499 3500 err = bpf_trampoline_link_prog(&link->link, tr); 3501 if (err) { 3502 bpf_link_cleanup(&link_primer); 3503 link = NULL; 3504 goto out_unlock; 3505 } 3506 3507 link->tgt_prog = tgt_prog; 3508 link->trampoline = tr; 3509 3510 /* Always clear the trampoline and target prog from prog->aux to make 3511 * sure the original attach destination is not kept alive after a 3512 * program is (re-)attached to another target. 3513 */ 3514 if (prog->aux->dst_prog && 3515 (tgt_prog_fd || tr != prog->aux->dst_trampoline)) 3516 /* got extra prog ref from syscall, or attaching to different prog */ 3517 bpf_prog_put(prog->aux->dst_prog); 3518 if (prog->aux->dst_trampoline && tr != prog->aux->dst_trampoline) 3519 /* we allocated a new trampoline, so free the old one */ 3520 bpf_trampoline_put(prog->aux->dst_trampoline); 3521 3522 prog->aux->dst_prog = NULL; 3523 prog->aux->dst_trampoline = NULL; 3524 mutex_unlock(&prog->aux->dst_mutex); 3525 3526 return bpf_link_settle(&link_primer); 3527 out_unlock: 3528 if (tr && tr != prog->aux->dst_trampoline) 3529 bpf_trampoline_put(tr); 3530 mutex_unlock(&prog->aux->dst_mutex); 3531 kfree(link); 3532 out_put_prog: 3533 if (tgt_prog_fd && tgt_prog) 3534 bpf_prog_put(tgt_prog); 3535 return err; 3536 } 3537 3538 static void bpf_raw_tp_link_release(struct bpf_link *link) 3539 { 3540 struct bpf_raw_tp_link *raw_tp = 3541 container_of(link, struct bpf_raw_tp_link, link); 3542 3543 bpf_probe_unregister(raw_tp->btp, raw_tp); 3544 bpf_put_raw_tracepoint(raw_tp->btp); 3545 } 3546 3547 static void bpf_raw_tp_link_dealloc(struct bpf_link *link) 3548 { 3549 struct bpf_raw_tp_link *raw_tp = 3550 container_of(link, struct bpf_raw_tp_link, link); 3551 3552 kfree(raw_tp); 3553 } 3554 3555 static void bpf_raw_tp_link_show_fdinfo(const struct bpf_link *link, 3556 struct seq_file *seq) 3557 { 3558 struct bpf_raw_tp_link *raw_tp_link = 3559 container_of(link, struct bpf_raw_tp_link, link); 3560 3561 seq_printf(seq, 3562 "tp_name:\t%s\n", 3563 raw_tp_link->btp->tp->name); 3564 } 3565 3566 static int bpf_copy_to_user(char __user *ubuf, const char *buf, u32 ulen, 3567 u32 len) 3568 { 3569 if (ulen >= len + 1) { 3570 if (copy_to_user(ubuf, buf, len + 1)) 3571 return -EFAULT; 3572 } else { 3573 char zero = '\0'; 3574 3575 if (copy_to_user(ubuf, buf, ulen - 1)) 3576 return -EFAULT; 3577 if (put_user(zero, ubuf + ulen - 1)) 3578 return -EFAULT; 3579 return -ENOSPC; 3580 } 3581 3582 return 0; 3583 } 3584 3585 static int bpf_raw_tp_link_fill_link_info(const struct bpf_link *link, 3586 struct bpf_link_info *info) 3587 { 3588 struct bpf_raw_tp_link *raw_tp_link = 3589 container_of(link, struct bpf_raw_tp_link, link); 3590 char __user *ubuf = u64_to_user_ptr(info->raw_tracepoint.tp_name); 3591 const char *tp_name = raw_tp_link->btp->tp->name; 3592 u32 ulen = info->raw_tracepoint.tp_name_len; 3593 size_t tp_len = strlen(tp_name); 3594 3595 if (!ulen ^ !ubuf) 3596 return -EINVAL; 3597 3598 info->raw_tracepoint.tp_name_len = tp_len + 1; 3599 3600 if (!ubuf) 3601 return 0; 3602 3603 return bpf_copy_to_user(ubuf, tp_name, ulen, tp_len); 3604 } 3605 3606 static const struct bpf_link_ops bpf_raw_tp_link_lops = { 3607 .release = bpf_raw_tp_link_release, 3608 .dealloc_deferred = bpf_raw_tp_link_dealloc, 3609 .show_fdinfo = bpf_raw_tp_link_show_fdinfo, 3610 .fill_link_info = bpf_raw_tp_link_fill_link_info, 3611 }; 3612 3613 #ifdef CONFIG_PERF_EVENTS 3614 struct bpf_perf_link { 3615 struct bpf_link link; 3616 struct file *perf_file; 3617 }; 3618 3619 static void bpf_perf_link_release(struct bpf_link *link) 3620 { 3621 struct bpf_perf_link *perf_link = container_of(link, struct bpf_perf_link, link); 3622 struct perf_event *event = perf_link->perf_file->private_data; 3623 3624 perf_event_free_bpf_prog(event); 3625 fput(perf_link->perf_file); 3626 } 3627 3628 static void bpf_perf_link_dealloc(struct bpf_link *link) 3629 { 3630 struct bpf_perf_link *perf_link = container_of(link, struct bpf_perf_link, link); 3631 3632 kfree(perf_link); 3633 } 3634 3635 static int bpf_perf_link_fill_common(const struct perf_event *event, 3636 char __user *uname, u32 ulen, 3637 u64 *probe_offset, u64 *probe_addr, 3638 u32 *fd_type, unsigned long *missed) 3639 { 3640 const char *buf; 3641 u32 prog_id; 3642 size_t len; 3643 int err; 3644 3645 if (!ulen ^ !uname) 3646 return -EINVAL; 3647 3648 err = bpf_get_perf_event_info(event, &prog_id, fd_type, &buf, 3649 probe_offset, probe_addr, missed); 3650 if (err) 3651 return err; 3652 if (!uname) 3653 return 0; 3654 if (buf) { 3655 len = strlen(buf); 3656 err = bpf_copy_to_user(uname, buf, ulen, len); 3657 if (err) 3658 return err; 3659 } else { 3660 char zero = '\0'; 3661 3662 if (put_user(zero, uname)) 3663 return -EFAULT; 3664 } 3665 return 0; 3666 } 3667 3668 #ifdef CONFIG_KPROBE_EVENTS 3669 static int bpf_perf_link_fill_kprobe(const struct perf_event *event, 3670 struct bpf_link_info *info) 3671 { 3672 unsigned long missed; 3673 char __user *uname; 3674 u64 addr, offset; 3675 u32 ulen, type; 3676 int err; 3677 3678 uname = u64_to_user_ptr(info->perf_event.kprobe.func_name); 3679 ulen = info->perf_event.kprobe.name_len; 3680 err = bpf_perf_link_fill_common(event, uname, ulen, &offset, &addr, 3681 &type, &missed); 3682 if (err) 3683 return err; 3684 if (type == BPF_FD_TYPE_KRETPROBE) 3685 info->perf_event.type = BPF_PERF_EVENT_KRETPROBE; 3686 else 3687 info->perf_event.type = BPF_PERF_EVENT_KPROBE; 3688 3689 info->perf_event.kprobe.offset = offset; 3690 info->perf_event.kprobe.missed = missed; 3691 if (!kallsyms_show_value(current_cred())) 3692 addr = 0; 3693 info->perf_event.kprobe.addr = addr; 3694 info->perf_event.kprobe.cookie = event->bpf_cookie; 3695 return 0; 3696 } 3697 #endif 3698 3699 #ifdef CONFIG_UPROBE_EVENTS 3700 static int bpf_perf_link_fill_uprobe(const struct perf_event *event, 3701 struct bpf_link_info *info) 3702 { 3703 char __user *uname; 3704 u64 addr, offset; 3705 u32 ulen, type; 3706 int err; 3707 3708 uname = u64_to_user_ptr(info->perf_event.uprobe.file_name); 3709 ulen = info->perf_event.uprobe.name_len; 3710 err = bpf_perf_link_fill_common(event, uname, ulen, &offset, &addr, 3711 &type, NULL); 3712 if (err) 3713 return err; 3714 3715 if (type == BPF_FD_TYPE_URETPROBE) 3716 info->perf_event.type = BPF_PERF_EVENT_URETPROBE; 3717 else 3718 info->perf_event.type = BPF_PERF_EVENT_UPROBE; 3719 info->perf_event.uprobe.offset = offset; 3720 info->perf_event.uprobe.cookie = event->bpf_cookie; 3721 return 0; 3722 } 3723 #endif 3724 3725 static int bpf_perf_link_fill_probe(const struct perf_event *event, 3726 struct bpf_link_info *info) 3727 { 3728 #ifdef CONFIG_KPROBE_EVENTS 3729 if (event->tp_event->flags & TRACE_EVENT_FL_KPROBE) 3730 return bpf_perf_link_fill_kprobe(event, info); 3731 #endif 3732 #ifdef CONFIG_UPROBE_EVENTS 3733 if (event->tp_event->flags & TRACE_EVENT_FL_UPROBE) 3734 return bpf_perf_link_fill_uprobe(event, info); 3735 #endif 3736 return -EOPNOTSUPP; 3737 } 3738 3739 static int bpf_perf_link_fill_tracepoint(const struct perf_event *event, 3740 struct bpf_link_info *info) 3741 { 3742 char __user *uname; 3743 u32 ulen; 3744 3745 uname = u64_to_user_ptr(info->perf_event.tracepoint.tp_name); 3746 ulen = info->perf_event.tracepoint.name_len; 3747 info->perf_event.type = BPF_PERF_EVENT_TRACEPOINT; 3748 info->perf_event.tracepoint.cookie = event->bpf_cookie; 3749 return bpf_perf_link_fill_common(event, uname, ulen, NULL, NULL, NULL, NULL); 3750 } 3751 3752 static int bpf_perf_link_fill_perf_event(const struct perf_event *event, 3753 struct bpf_link_info *info) 3754 { 3755 info->perf_event.event.type = event->attr.type; 3756 info->perf_event.event.config = event->attr.config; 3757 info->perf_event.event.cookie = event->bpf_cookie; 3758 info->perf_event.type = BPF_PERF_EVENT_EVENT; 3759 return 0; 3760 } 3761 3762 static int bpf_perf_link_fill_link_info(const struct bpf_link *link, 3763 struct bpf_link_info *info) 3764 { 3765 struct bpf_perf_link *perf_link; 3766 const struct perf_event *event; 3767 3768 perf_link = container_of(link, struct bpf_perf_link, link); 3769 event = perf_get_event(perf_link->perf_file); 3770 if (IS_ERR(event)) 3771 return PTR_ERR(event); 3772 3773 switch (event->prog->type) { 3774 case BPF_PROG_TYPE_PERF_EVENT: 3775 return bpf_perf_link_fill_perf_event(event, info); 3776 case BPF_PROG_TYPE_TRACEPOINT: 3777 return bpf_perf_link_fill_tracepoint(event, info); 3778 case BPF_PROG_TYPE_KPROBE: 3779 return bpf_perf_link_fill_probe(event, info); 3780 default: 3781 return -EOPNOTSUPP; 3782 } 3783 } 3784 3785 static const struct bpf_link_ops bpf_perf_link_lops = { 3786 .release = bpf_perf_link_release, 3787 .dealloc = bpf_perf_link_dealloc, 3788 .fill_link_info = bpf_perf_link_fill_link_info, 3789 }; 3790 3791 static int bpf_perf_link_attach(const union bpf_attr *attr, struct bpf_prog *prog) 3792 { 3793 struct bpf_link_primer link_primer; 3794 struct bpf_perf_link *link; 3795 struct perf_event *event; 3796 struct file *perf_file; 3797 int err; 3798 3799 if (attr->link_create.flags) 3800 return -EINVAL; 3801 3802 perf_file = perf_event_get(attr->link_create.target_fd); 3803 if (IS_ERR(perf_file)) 3804 return PTR_ERR(perf_file); 3805 3806 link = kzalloc(sizeof(*link), GFP_USER); 3807 if (!link) { 3808 err = -ENOMEM; 3809 goto out_put_file; 3810 } 3811 bpf_link_init(&link->link, BPF_LINK_TYPE_PERF_EVENT, &bpf_perf_link_lops, prog); 3812 link->perf_file = perf_file; 3813 3814 err = bpf_link_prime(&link->link, &link_primer); 3815 if (err) { 3816 kfree(link); 3817 goto out_put_file; 3818 } 3819 3820 event = perf_file->private_data; 3821 err = perf_event_set_bpf_prog(event, prog, attr->link_create.perf_event.bpf_cookie); 3822 if (err) { 3823 bpf_link_cleanup(&link_primer); 3824 goto out_put_file; 3825 } 3826 /* perf_event_set_bpf_prog() doesn't take its own refcnt on prog */ 3827 bpf_prog_inc(prog); 3828 3829 return bpf_link_settle(&link_primer); 3830 3831 out_put_file: 3832 fput(perf_file); 3833 return err; 3834 } 3835 #else 3836 static int bpf_perf_link_attach(const union bpf_attr *attr, struct bpf_prog *prog) 3837 { 3838 return -EOPNOTSUPP; 3839 } 3840 #endif /* CONFIG_PERF_EVENTS */ 3841 3842 static int bpf_raw_tp_link_attach(struct bpf_prog *prog, 3843 const char __user *user_tp_name, u64 cookie) 3844 { 3845 struct bpf_link_primer link_primer; 3846 struct bpf_raw_tp_link *link; 3847 struct bpf_raw_event_map *btp; 3848 const char *tp_name; 3849 char buf[128]; 3850 int err; 3851 3852 switch (prog->type) { 3853 case BPF_PROG_TYPE_TRACING: 3854 case BPF_PROG_TYPE_EXT: 3855 case BPF_PROG_TYPE_LSM: 3856 if (user_tp_name) 3857 /* The attach point for this category of programs 3858 * should be specified via btf_id during program load. 3859 */ 3860 return -EINVAL; 3861 if (prog->type == BPF_PROG_TYPE_TRACING && 3862 prog->expected_attach_type == BPF_TRACE_RAW_TP) { 3863 tp_name = prog->aux->attach_func_name; 3864 break; 3865 } 3866 return bpf_tracing_prog_attach(prog, 0, 0, 0); 3867 case BPF_PROG_TYPE_RAW_TRACEPOINT: 3868 case BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE: 3869 if (strncpy_from_user(buf, user_tp_name, sizeof(buf) - 1) < 0) 3870 return -EFAULT; 3871 buf[sizeof(buf) - 1] = 0; 3872 tp_name = buf; 3873 break; 3874 default: 3875 return -EINVAL; 3876 } 3877 3878 btp = bpf_get_raw_tracepoint(tp_name); 3879 if (!btp) 3880 return -ENOENT; 3881 3882 link = kzalloc(sizeof(*link), GFP_USER); 3883 if (!link) { 3884 err = -ENOMEM; 3885 goto out_put_btp; 3886 } 3887 bpf_link_init(&link->link, BPF_LINK_TYPE_RAW_TRACEPOINT, 3888 &bpf_raw_tp_link_lops, prog); 3889 link->btp = btp; 3890 link->cookie = cookie; 3891 3892 err = bpf_link_prime(&link->link, &link_primer); 3893 if (err) { 3894 kfree(link); 3895 goto out_put_btp; 3896 } 3897 3898 err = bpf_probe_register(link->btp, link); 3899 if (err) { 3900 bpf_link_cleanup(&link_primer); 3901 goto out_put_btp; 3902 } 3903 3904 return bpf_link_settle(&link_primer); 3905 3906 out_put_btp: 3907 bpf_put_raw_tracepoint(btp); 3908 return err; 3909 } 3910 3911 #define BPF_RAW_TRACEPOINT_OPEN_LAST_FIELD raw_tracepoint.cookie 3912 3913 static int bpf_raw_tracepoint_open(const union bpf_attr *attr) 3914 { 3915 struct bpf_prog *prog; 3916 void __user *tp_name; 3917 __u64 cookie; 3918 int fd; 3919 3920 if (CHECK_ATTR(BPF_RAW_TRACEPOINT_OPEN)) 3921 return -EINVAL; 3922 3923 prog = bpf_prog_get(attr->raw_tracepoint.prog_fd); 3924 if (IS_ERR(prog)) 3925 return PTR_ERR(prog); 3926 3927 tp_name = u64_to_user_ptr(attr->raw_tracepoint.name); 3928 cookie = attr->raw_tracepoint.cookie; 3929 fd = bpf_raw_tp_link_attach(prog, tp_name, cookie); 3930 if (fd < 0) 3931 bpf_prog_put(prog); 3932 return fd; 3933 } 3934 3935 static enum bpf_prog_type 3936 attach_type_to_prog_type(enum bpf_attach_type attach_type) 3937 { 3938 switch (attach_type) { 3939 case BPF_CGROUP_INET_INGRESS: 3940 case BPF_CGROUP_INET_EGRESS: 3941 return BPF_PROG_TYPE_CGROUP_SKB; 3942 case BPF_CGROUP_INET_SOCK_CREATE: 3943 case BPF_CGROUP_INET_SOCK_RELEASE: 3944 case BPF_CGROUP_INET4_POST_BIND: 3945 case BPF_CGROUP_INET6_POST_BIND: 3946 return BPF_PROG_TYPE_CGROUP_SOCK; 3947 case BPF_CGROUP_INET4_BIND: 3948 case BPF_CGROUP_INET6_BIND: 3949 case BPF_CGROUP_INET4_CONNECT: 3950 case BPF_CGROUP_INET6_CONNECT: 3951 case BPF_CGROUP_UNIX_CONNECT: 3952 case BPF_CGROUP_INET4_GETPEERNAME: 3953 case BPF_CGROUP_INET6_GETPEERNAME: 3954 case BPF_CGROUP_UNIX_GETPEERNAME: 3955 case BPF_CGROUP_INET4_GETSOCKNAME: 3956 case BPF_CGROUP_INET6_GETSOCKNAME: 3957 case BPF_CGROUP_UNIX_GETSOCKNAME: 3958 case BPF_CGROUP_UDP4_SENDMSG: 3959 case BPF_CGROUP_UDP6_SENDMSG: 3960 case BPF_CGROUP_UNIX_SENDMSG: 3961 case BPF_CGROUP_UDP4_RECVMSG: 3962 case BPF_CGROUP_UDP6_RECVMSG: 3963 case BPF_CGROUP_UNIX_RECVMSG: 3964 return BPF_PROG_TYPE_CGROUP_SOCK_ADDR; 3965 case BPF_CGROUP_SOCK_OPS: 3966 return BPF_PROG_TYPE_SOCK_OPS; 3967 case BPF_CGROUP_DEVICE: 3968 return BPF_PROG_TYPE_CGROUP_DEVICE; 3969 case BPF_SK_MSG_VERDICT: 3970 return BPF_PROG_TYPE_SK_MSG; 3971 case BPF_SK_SKB_STREAM_PARSER: 3972 case BPF_SK_SKB_STREAM_VERDICT: 3973 case BPF_SK_SKB_VERDICT: 3974 return BPF_PROG_TYPE_SK_SKB; 3975 case BPF_LIRC_MODE2: 3976 return BPF_PROG_TYPE_LIRC_MODE2; 3977 case BPF_FLOW_DISSECTOR: 3978 return BPF_PROG_TYPE_FLOW_DISSECTOR; 3979 case BPF_CGROUP_SYSCTL: 3980 return BPF_PROG_TYPE_CGROUP_SYSCTL; 3981 case BPF_CGROUP_GETSOCKOPT: 3982 case BPF_CGROUP_SETSOCKOPT: 3983 return BPF_PROG_TYPE_CGROUP_SOCKOPT; 3984 case BPF_TRACE_ITER: 3985 case BPF_TRACE_RAW_TP: 3986 case BPF_TRACE_FENTRY: 3987 case BPF_TRACE_FEXIT: 3988 case BPF_MODIFY_RETURN: 3989 return BPF_PROG_TYPE_TRACING; 3990 case BPF_LSM_MAC: 3991 return BPF_PROG_TYPE_LSM; 3992 case BPF_SK_LOOKUP: 3993 return BPF_PROG_TYPE_SK_LOOKUP; 3994 case BPF_XDP: 3995 return BPF_PROG_TYPE_XDP; 3996 case BPF_LSM_CGROUP: 3997 return BPF_PROG_TYPE_LSM; 3998 case BPF_TCX_INGRESS: 3999 case BPF_TCX_EGRESS: 4000 case BPF_NETKIT_PRIMARY: 4001 case BPF_NETKIT_PEER: 4002 return BPF_PROG_TYPE_SCHED_CLS; 4003 default: 4004 return BPF_PROG_TYPE_UNSPEC; 4005 } 4006 } 4007 4008 static int bpf_prog_attach_check_attach_type(const struct bpf_prog *prog, 4009 enum bpf_attach_type attach_type) 4010 { 4011 enum bpf_prog_type ptype; 4012 4013 switch (prog->type) { 4014 case BPF_PROG_TYPE_CGROUP_SOCK: 4015 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR: 4016 case BPF_PROG_TYPE_CGROUP_SOCKOPT: 4017 case BPF_PROG_TYPE_SK_LOOKUP: 4018 return attach_type == prog->expected_attach_type ? 0 : -EINVAL; 4019 case BPF_PROG_TYPE_CGROUP_SKB: 4020 if (!bpf_token_capable(prog->aux->token, CAP_NET_ADMIN)) 4021 /* cg-skb progs can be loaded by unpriv user. 4022 * check permissions at attach time. 4023 */ 4024 return -EPERM; 4025 4026 ptype = attach_type_to_prog_type(attach_type); 4027 if (prog->type != ptype) 4028 return -EINVAL; 4029 4030 return prog->enforce_expected_attach_type && 4031 prog->expected_attach_type != attach_type ? 4032 -EINVAL : 0; 4033 case BPF_PROG_TYPE_EXT: 4034 return 0; 4035 case BPF_PROG_TYPE_NETFILTER: 4036 if (attach_type != BPF_NETFILTER) 4037 return -EINVAL; 4038 return 0; 4039 case BPF_PROG_TYPE_PERF_EVENT: 4040 case BPF_PROG_TYPE_TRACEPOINT: 4041 if (attach_type != BPF_PERF_EVENT) 4042 return -EINVAL; 4043 return 0; 4044 case BPF_PROG_TYPE_KPROBE: 4045 if (prog->expected_attach_type == BPF_TRACE_KPROBE_MULTI && 4046 attach_type != BPF_TRACE_KPROBE_MULTI) 4047 return -EINVAL; 4048 if (prog->expected_attach_type == BPF_TRACE_KPROBE_SESSION && 4049 attach_type != BPF_TRACE_KPROBE_SESSION) 4050 return -EINVAL; 4051 if (prog->expected_attach_type == BPF_TRACE_UPROBE_MULTI && 4052 attach_type != BPF_TRACE_UPROBE_MULTI) 4053 return -EINVAL; 4054 if (attach_type != BPF_PERF_EVENT && 4055 attach_type != BPF_TRACE_KPROBE_MULTI && 4056 attach_type != BPF_TRACE_KPROBE_SESSION && 4057 attach_type != BPF_TRACE_UPROBE_MULTI) 4058 return -EINVAL; 4059 return 0; 4060 case BPF_PROG_TYPE_SCHED_CLS: 4061 if (attach_type != BPF_TCX_INGRESS && 4062 attach_type != BPF_TCX_EGRESS && 4063 attach_type != BPF_NETKIT_PRIMARY && 4064 attach_type != BPF_NETKIT_PEER) 4065 return -EINVAL; 4066 return 0; 4067 default: 4068 ptype = attach_type_to_prog_type(attach_type); 4069 if (ptype == BPF_PROG_TYPE_UNSPEC || ptype != prog->type) 4070 return -EINVAL; 4071 return 0; 4072 } 4073 } 4074 4075 #define BPF_PROG_ATTACH_LAST_FIELD expected_revision 4076 4077 #define BPF_F_ATTACH_MASK_BASE \ 4078 (BPF_F_ALLOW_OVERRIDE | \ 4079 BPF_F_ALLOW_MULTI | \ 4080 BPF_F_REPLACE) 4081 4082 #define BPF_F_ATTACH_MASK_MPROG \ 4083 (BPF_F_REPLACE | \ 4084 BPF_F_BEFORE | \ 4085 BPF_F_AFTER | \ 4086 BPF_F_ID | \ 4087 BPF_F_LINK) 4088 4089 static int bpf_prog_attach(const union bpf_attr *attr) 4090 { 4091 enum bpf_prog_type ptype; 4092 struct bpf_prog *prog; 4093 int ret; 4094 4095 if (CHECK_ATTR(BPF_PROG_ATTACH)) 4096 return -EINVAL; 4097 4098 ptype = attach_type_to_prog_type(attr->attach_type); 4099 if (ptype == BPF_PROG_TYPE_UNSPEC) 4100 return -EINVAL; 4101 if (bpf_mprog_supported(ptype)) { 4102 if (attr->attach_flags & ~BPF_F_ATTACH_MASK_MPROG) 4103 return -EINVAL; 4104 } else { 4105 if (attr->attach_flags & ~BPF_F_ATTACH_MASK_BASE) 4106 return -EINVAL; 4107 if (attr->relative_fd || 4108 attr->expected_revision) 4109 return -EINVAL; 4110 } 4111 4112 prog = bpf_prog_get_type(attr->attach_bpf_fd, ptype); 4113 if (IS_ERR(prog)) 4114 return PTR_ERR(prog); 4115 4116 if (bpf_prog_attach_check_attach_type(prog, attr->attach_type)) { 4117 bpf_prog_put(prog); 4118 return -EINVAL; 4119 } 4120 4121 switch (ptype) { 4122 case BPF_PROG_TYPE_SK_SKB: 4123 case BPF_PROG_TYPE_SK_MSG: 4124 ret = sock_map_get_from_fd(attr, prog); 4125 break; 4126 case BPF_PROG_TYPE_LIRC_MODE2: 4127 ret = lirc_prog_attach(attr, prog); 4128 break; 4129 case BPF_PROG_TYPE_FLOW_DISSECTOR: 4130 ret = netns_bpf_prog_attach(attr, prog); 4131 break; 4132 case BPF_PROG_TYPE_CGROUP_DEVICE: 4133 case BPF_PROG_TYPE_CGROUP_SKB: 4134 case BPF_PROG_TYPE_CGROUP_SOCK: 4135 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR: 4136 case BPF_PROG_TYPE_CGROUP_SOCKOPT: 4137 case BPF_PROG_TYPE_CGROUP_SYSCTL: 4138 case BPF_PROG_TYPE_SOCK_OPS: 4139 case BPF_PROG_TYPE_LSM: 4140 if (ptype == BPF_PROG_TYPE_LSM && 4141 prog->expected_attach_type != BPF_LSM_CGROUP) 4142 ret = -EINVAL; 4143 else 4144 ret = cgroup_bpf_prog_attach(attr, ptype, prog); 4145 break; 4146 case BPF_PROG_TYPE_SCHED_CLS: 4147 if (attr->attach_type == BPF_TCX_INGRESS || 4148 attr->attach_type == BPF_TCX_EGRESS) 4149 ret = tcx_prog_attach(attr, prog); 4150 else 4151 ret = netkit_prog_attach(attr, prog); 4152 break; 4153 default: 4154 ret = -EINVAL; 4155 } 4156 4157 if (ret) 4158 bpf_prog_put(prog); 4159 return ret; 4160 } 4161 4162 #define BPF_PROG_DETACH_LAST_FIELD expected_revision 4163 4164 static int bpf_prog_detach(const union bpf_attr *attr) 4165 { 4166 struct bpf_prog *prog = NULL; 4167 enum bpf_prog_type ptype; 4168 int ret; 4169 4170 if (CHECK_ATTR(BPF_PROG_DETACH)) 4171 return -EINVAL; 4172 4173 ptype = attach_type_to_prog_type(attr->attach_type); 4174 if (bpf_mprog_supported(ptype)) { 4175 if (ptype == BPF_PROG_TYPE_UNSPEC) 4176 return -EINVAL; 4177 if (attr->attach_flags & ~BPF_F_ATTACH_MASK_MPROG) 4178 return -EINVAL; 4179 if (attr->attach_bpf_fd) { 4180 prog = bpf_prog_get_type(attr->attach_bpf_fd, ptype); 4181 if (IS_ERR(prog)) 4182 return PTR_ERR(prog); 4183 } 4184 } else if (attr->attach_flags || 4185 attr->relative_fd || 4186 attr->expected_revision) { 4187 return -EINVAL; 4188 } 4189 4190 switch (ptype) { 4191 case BPF_PROG_TYPE_SK_MSG: 4192 case BPF_PROG_TYPE_SK_SKB: 4193 ret = sock_map_prog_detach(attr, ptype); 4194 break; 4195 case BPF_PROG_TYPE_LIRC_MODE2: 4196 ret = lirc_prog_detach(attr); 4197 break; 4198 case BPF_PROG_TYPE_FLOW_DISSECTOR: 4199 ret = netns_bpf_prog_detach(attr, ptype); 4200 break; 4201 case BPF_PROG_TYPE_CGROUP_DEVICE: 4202 case BPF_PROG_TYPE_CGROUP_SKB: 4203 case BPF_PROG_TYPE_CGROUP_SOCK: 4204 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR: 4205 case BPF_PROG_TYPE_CGROUP_SOCKOPT: 4206 case BPF_PROG_TYPE_CGROUP_SYSCTL: 4207 case BPF_PROG_TYPE_SOCK_OPS: 4208 case BPF_PROG_TYPE_LSM: 4209 ret = cgroup_bpf_prog_detach(attr, ptype); 4210 break; 4211 case BPF_PROG_TYPE_SCHED_CLS: 4212 if (attr->attach_type == BPF_TCX_INGRESS || 4213 attr->attach_type == BPF_TCX_EGRESS) 4214 ret = tcx_prog_detach(attr, prog); 4215 else 4216 ret = netkit_prog_detach(attr, prog); 4217 break; 4218 default: 4219 ret = -EINVAL; 4220 } 4221 4222 if (prog) 4223 bpf_prog_put(prog); 4224 return ret; 4225 } 4226 4227 #define BPF_PROG_QUERY_LAST_FIELD query.revision 4228 4229 static int bpf_prog_query(const union bpf_attr *attr, 4230 union bpf_attr __user *uattr) 4231 { 4232 if (!bpf_net_capable()) 4233 return -EPERM; 4234 if (CHECK_ATTR(BPF_PROG_QUERY)) 4235 return -EINVAL; 4236 if (attr->query.query_flags & ~BPF_F_QUERY_EFFECTIVE) 4237 return -EINVAL; 4238 4239 switch (attr->query.attach_type) { 4240 case BPF_CGROUP_INET_INGRESS: 4241 case BPF_CGROUP_INET_EGRESS: 4242 case BPF_CGROUP_INET_SOCK_CREATE: 4243 case BPF_CGROUP_INET_SOCK_RELEASE: 4244 case BPF_CGROUP_INET4_BIND: 4245 case BPF_CGROUP_INET6_BIND: 4246 case BPF_CGROUP_INET4_POST_BIND: 4247 case BPF_CGROUP_INET6_POST_BIND: 4248 case BPF_CGROUP_INET4_CONNECT: 4249 case BPF_CGROUP_INET6_CONNECT: 4250 case BPF_CGROUP_UNIX_CONNECT: 4251 case BPF_CGROUP_INET4_GETPEERNAME: 4252 case BPF_CGROUP_INET6_GETPEERNAME: 4253 case BPF_CGROUP_UNIX_GETPEERNAME: 4254 case BPF_CGROUP_INET4_GETSOCKNAME: 4255 case BPF_CGROUP_INET6_GETSOCKNAME: 4256 case BPF_CGROUP_UNIX_GETSOCKNAME: 4257 case BPF_CGROUP_UDP4_SENDMSG: 4258 case BPF_CGROUP_UDP6_SENDMSG: 4259 case BPF_CGROUP_UNIX_SENDMSG: 4260 case BPF_CGROUP_UDP4_RECVMSG: 4261 case BPF_CGROUP_UDP6_RECVMSG: 4262 case BPF_CGROUP_UNIX_RECVMSG: 4263 case BPF_CGROUP_SOCK_OPS: 4264 case BPF_CGROUP_DEVICE: 4265 case BPF_CGROUP_SYSCTL: 4266 case BPF_CGROUP_GETSOCKOPT: 4267 case BPF_CGROUP_SETSOCKOPT: 4268 case BPF_LSM_CGROUP: 4269 return cgroup_bpf_prog_query(attr, uattr); 4270 case BPF_LIRC_MODE2: 4271 return lirc_prog_query(attr, uattr); 4272 case BPF_FLOW_DISSECTOR: 4273 case BPF_SK_LOOKUP: 4274 return netns_bpf_prog_query(attr, uattr); 4275 case BPF_SK_SKB_STREAM_PARSER: 4276 case BPF_SK_SKB_STREAM_VERDICT: 4277 case BPF_SK_MSG_VERDICT: 4278 case BPF_SK_SKB_VERDICT: 4279 return sock_map_bpf_prog_query(attr, uattr); 4280 case BPF_TCX_INGRESS: 4281 case BPF_TCX_EGRESS: 4282 return tcx_prog_query(attr, uattr); 4283 case BPF_NETKIT_PRIMARY: 4284 case BPF_NETKIT_PEER: 4285 return netkit_prog_query(attr, uattr); 4286 default: 4287 return -EINVAL; 4288 } 4289 } 4290 4291 #define BPF_PROG_TEST_RUN_LAST_FIELD test.batch_size 4292 4293 static int bpf_prog_test_run(const union bpf_attr *attr, 4294 union bpf_attr __user *uattr) 4295 { 4296 struct bpf_prog *prog; 4297 int ret = -ENOTSUPP; 4298 4299 if (CHECK_ATTR(BPF_PROG_TEST_RUN)) 4300 return -EINVAL; 4301 4302 if ((attr->test.ctx_size_in && !attr->test.ctx_in) || 4303 (!attr->test.ctx_size_in && attr->test.ctx_in)) 4304 return -EINVAL; 4305 4306 if ((attr->test.ctx_size_out && !attr->test.ctx_out) || 4307 (!attr->test.ctx_size_out && attr->test.ctx_out)) 4308 return -EINVAL; 4309 4310 prog = bpf_prog_get(attr->test.prog_fd); 4311 if (IS_ERR(prog)) 4312 return PTR_ERR(prog); 4313 4314 if (prog->aux->ops->test_run) 4315 ret = prog->aux->ops->test_run(prog, attr, uattr); 4316 4317 bpf_prog_put(prog); 4318 return ret; 4319 } 4320 4321 #define BPF_OBJ_GET_NEXT_ID_LAST_FIELD next_id 4322 4323 static int bpf_obj_get_next_id(const union bpf_attr *attr, 4324 union bpf_attr __user *uattr, 4325 struct idr *idr, 4326 spinlock_t *lock) 4327 { 4328 u32 next_id = attr->start_id; 4329 int err = 0; 4330 4331 if (CHECK_ATTR(BPF_OBJ_GET_NEXT_ID) || next_id >= INT_MAX) 4332 return -EINVAL; 4333 4334 if (!capable(CAP_SYS_ADMIN)) 4335 return -EPERM; 4336 4337 next_id++; 4338 spin_lock_bh(lock); 4339 if (!idr_get_next(idr, &next_id)) 4340 err = -ENOENT; 4341 spin_unlock_bh(lock); 4342 4343 if (!err) 4344 err = put_user(next_id, &uattr->next_id); 4345 4346 return err; 4347 } 4348 4349 struct bpf_map *bpf_map_get_curr_or_next(u32 *id) 4350 { 4351 struct bpf_map *map; 4352 4353 spin_lock_bh(&map_idr_lock); 4354 again: 4355 map = idr_get_next(&map_idr, id); 4356 if (map) { 4357 map = __bpf_map_inc_not_zero(map, false); 4358 if (IS_ERR(map)) { 4359 (*id)++; 4360 goto again; 4361 } 4362 } 4363 spin_unlock_bh(&map_idr_lock); 4364 4365 return map; 4366 } 4367 4368 struct bpf_prog *bpf_prog_get_curr_or_next(u32 *id) 4369 { 4370 struct bpf_prog *prog; 4371 4372 spin_lock_bh(&prog_idr_lock); 4373 again: 4374 prog = idr_get_next(&prog_idr, id); 4375 if (prog) { 4376 prog = bpf_prog_inc_not_zero(prog); 4377 if (IS_ERR(prog)) { 4378 (*id)++; 4379 goto again; 4380 } 4381 } 4382 spin_unlock_bh(&prog_idr_lock); 4383 4384 return prog; 4385 } 4386 4387 #define BPF_PROG_GET_FD_BY_ID_LAST_FIELD prog_id 4388 4389 struct bpf_prog *bpf_prog_by_id(u32 id) 4390 { 4391 struct bpf_prog *prog; 4392 4393 if (!id) 4394 return ERR_PTR(-ENOENT); 4395 4396 spin_lock_bh(&prog_idr_lock); 4397 prog = idr_find(&prog_idr, id); 4398 if (prog) 4399 prog = bpf_prog_inc_not_zero(prog); 4400 else 4401 prog = ERR_PTR(-ENOENT); 4402 spin_unlock_bh(&prog_idr_lock); 4403 return prog; 4404 } 4405 4406 static int bpf_prog_get_fd_by_id(const union bpf_attr *attr) 4407 { 4408 struct bpf_prog *prog; 4409 u32 id = attr->prog_id; 4410 int fd; 4411 4412 if (CHECK_ATTR(BPF_PROG_GET_FD_BY_ID)) 4413 return -EINVAL; 4414 4415 if (!capable(CAP_SYS_ADMIN)) 4416 return -EPERM; 4417 4418 prog = bpf_prog_by_id(id); 4419 if (IS_ERR(prog)) 4420 return PTR_ERR(prog); 4421 4422 fd = bpf_prog_new_fd(prog); 4423 if (fd < 0) 4424 bpf_prog_put(prog); 4425 4426 return fd; 4427 } 4428 4429 #define BPF_MAP_GET_FD_BY_ID_LAST_FIELD open_flags 4430 4431 static int bpf_map_get_fd_by_id(const union bpf_attr *attr) 4432 { 4433 struct bpf_map *map; 4434 u32 id = attr->map_id; 4435 int f_flags; 4436 int fd; 4437 4438 if (CHECK_ATTR(BPF_MAP_GET_FD_BY_ID) || 4439 attr->open_flags & ~BPF_OBJ_FLAG_MASK) 4440 return -EINVAL; 4441 4442 if (!capable(CAP_SYS_ADMIN)) 4443 return -EPERM; 4444 4445 f_flags = bpf_get_file_flag(attr->open_flags); 4446 if (f_flags < 0) 4447 return f_flags; 4448 4449 spin_lock_bh(&map_idr_lock); 4450 map = idr_find(&map_idr, id); 4451 if (map) 4452 map = __bpf_map_inc_not_zero(map, true); 4453 else 4454 map = ERR_PTR(-ENOENT); 4455 spin_unlock_bh(&map_idr_lock); 4456 4457 if (IS_ERR(map)) 4458 return PTR_ERR(map); 4459 4460 fd = bpf_map_new_fd(map, f_flags); 4461 if (fd < 0) 4462 bpf_map_put_with_uref(map); 4463 4464 return fd; 4465 } 4466 4467 static const struct bpf_map *bpf_map_from_imm(const struct bpf_prog *prog, 4468 unsigned long addr, u32 *off, 4469 u32 *type) 4470 { 4471 const struct bpf_map *map; 4472 int i; 4473 4474 mutex_lock(&prog->aux->used_maps_mutex); 4475 for (i = 0, *off = 0; i < prog->aux->used_map_cnt; i++) { 4476 map = prog->aux->used_maps[i]; 4477 if (map == (void *)addr) { 4478 *type = BPF_PSEUDO_MAP_FD; 4479 goto out; 4480 } 4481 if (!map->ops->map_direct_value_meta) 4482 continue; 4483 if (!map->ops->map_direct_value_meta(map, addr, off)) { 4484 *type = BPF_PSEUDO_MAP_VALUE; 4485 goto out; 4486 } 4487 } 4488 map = NULL; 4489 4490 out: 4491 mutex_unlock(&prog->aux->used_maps_mutex); 4492 return map; 4493 } 4494 4495 static struct bpf_insn *bpf_insn_prepare_dump(const struct bpf_prog *prog, 4496 const struct cred *f_cred) 4497 { 4498 const struct bpf_map *map; 4499 struct bpf_insn *insns; 4500 u32 off, type; 4501 u64 imm; 4502 u8 code; 4503 int i; 4504 4505 insns = kmemdup(prog->insnsi, bpf_prog_insn_size(prog), 4506 GFP_USER); 4507 if (!insns) 4508 return insns; 4509 4510 for (i = 0; i < prog->len; i++) { 4511 code = insns[i].code; 4512 4513 if (code == (BPF_JMP | BPF_TAIL_CALL)) { 4514 insns[i].code = BPF_JMP | BPF_CALL; 4515 insns[i].imm = BPF_FUNC_tail_call; 4516 /* fall-through */ 4517 } 4518 if (code == (BPF_JMP | BPF_CALL) || 4519 code == (BPF_JMP | BPF_CALL_ARGS)) { 4520 if (code == (BPF_JMP | BPF_CALL_ARGS)) 4521 insns[i].code = BPF_JMP | BPF_CALL; 4522 if (!bpf_dump_raw_ok(f_cred)) 4523 insns[i].imm = 0; 4524 continue; 4525 } 4526 if (BPF_CLASS(code) == BPF_LDX && BPF_MODE(code) == BPF_PROBE_MEM) { 4527 insns[i].code = BPF_LDX | BPF_SIZE(code) | BPF_MEM; 4528 continue; 4529 } 4530 4531 if ((BPF_CLASS(code) == BPF_LDX || BPF_CLASS(code) == BPF_STX || 4532 BPF_CLASS(code) == BPF_ST) && BPF_MODE(code) == BPF_PROBE_MEM32) { 4533 insns[i].code = BPF_CLASS(code) | BPF_SIZE(code) | BPF_MEM; 4534 continue; 4535 } 4536 4537 if (code != (BPF_LD | BPF_IMM | BPF_DW)) 4538 continue; 4539 4540 imm = ((u64)insns[i + 1].imm << 32) | (u32)insns[i].imm; 4541 map = bpf_map_from_imm(prog, imm, &off, &type); 4542 if (map) { 4543 insns[i].src_reg = type; 4544 insns[i].imm = map->id; 4545 insns[i + 1].imm = off; 4546 continue; 4547 } 4548 } 4549 4550 return insns; 4551 } 4552 4553 static int set_info_rec_size(struct bpf_prog_info *info) 4554 { 4555 /* 4556 * Ensure info.*_rec_size is the same as kernel expected size 4557 * 4558 * or 4559 * 4560 * Only allow zero *_rec_size if both _rec_size and _cnt are 4561 * zero. In this case, the kernel will set the expected 4562 * _rec_size back to the info. 4563 */ 4564 4565 if ((info->nr_func_info || info->func_info_rec_size) && 4566 info->func_info_rec_size != sizeof(struct bpf_func_info)) 4567 return -EINVAL; 4568 4569 if ((info->nr_line_info || info->line_info_rec_size) && 4570 info->line_info_rec_size != sizeof(struct bpf_line_info)) 4571 return -EINVAL; 4572 4573 if ((info->nr_jited_line_info || info->jited_line_info_rec_size) && 4574 info->jited_line_info_rec_size != sizeof(__u64)) 4575 return -EINVAL; 4576 4577 info->func_info_rec_size = sizeof(struct bpf_func_info); 4578 info->line_info_rec_size = sizeof(struct bpf_line_info); 4579 info->jited_line_info_rec_size = sizeof(__u64); 4580 4581 return 0; 4582 } 4583 4584 static int bpf_prog_get_info_by_fd(struct file *file, 4585 struct bpf_prog *prog, 4586 const union bpf_attr *attr, 4587 union bpf_attr __user *uattr) 4588 { 4589 struct bpf_prog_info __user *uinfo = u64_to_user_ptr(attr->info.info); 4590 struct btf *attach_btf = bpf_prog_get_target_btf(prog); 4591 struct bpf_prog_info info; 4592 u32 info_len = attr->info.info_len; 4593 struct bpf_prog_kstats stats; 4594 char __user *uinsns; 4595 u32 ulen; 4596 int err; 4597 4598 err = bpf_check_uarg_tail_zero(USER_BPFPTR(uinfo), sizeof(info), info_len); 4599 if (err) 4600 return err; 4601 info_len = min_t(u32, sizeof(info), info_len); 4602 4603 memset(&info, 0, sizeof(info)); 4604 if (copy_from_user(&info, uinfo, info_len)) 4605 return -EFAULT; 4606 4607 info.type = prog->type; 4608 info.id = prog->aux->id; 4609 info.load_time = prog->aux->load_time; 4610 info.created_by_uid = from_kuid_munged(current_user_ns(), 4611 prog->aux->user->uid); 4612 info.gpl_compatible = prog->gpl_compatible; 4613 4614 memcpy(info.tag, prog->tag, sizeof(prog->tag)); 4615 memcpy(info.name, prog->aux->name, sizeof(prog->aux->name)); 4616 4617 mutex_lock(&prog->aux->used_maps_mutex); 4618 ulen = info.nr_map_ids; 4619 info.nr_map_ids = prog->aux->used_map_cnt; 4620 ulen = min_t(u32, info.nr_map_ids, ulen); 4621 if (ulen) { 4622 u32 __user *user_map_ids = u64_to_user_ptr(info.map_ids); 4623 u32 i; 4624 4625 for (i = 0; i < ulen; i++) 4626 if (put_user(prog->aux->used_maps[i]->id, 4627 &user_map_ids[i])) { 4628 mutex_unlock(&prog->aux->used_maps_mutex); 4629 return -EFAULT; 4630 } 4631 } 4632 mutex_unlock(&prog->aux->used_maps_mutex); 4633 4634 err = set_info_rec_size(&info); 4635 if (err) 4636 return err; 4637 4638 bpf_prog_get_stats(prog, &stats); 4639 info.run_time_ns = stats.nsecs; 4640 info.run_cnt = stats.cnt; 4641 info.recursion_misses = stats.misses; 4642 4643 info.verified_insns = prog->aux->verified_insns; 4644 4645 if (!bpf_capable()) { 4646 info.jited_prog_len = 0; 4647 info.xlated_prog_len = 0; 4648 info.nr_jited_ksyms = 0; 4649 info.nr_jited_func_lens = 0; 4650 info.nr_func_info = 0; 4651 info.nr_line_info = 0; 4652 info.nr_jited_line_info = 0; 4653 goto done; 4654 } 4655 4656 ulen = info.xlated_prog_len; 4657 info.xlated_prog_len = bpf_prog_insn_size(prog); 4658 if (info.xlated_prog_len && ulen) { 4659 struct bpf_insn *insns_sanitized; 4660 bool fault; 4661 4662 if (prog->blinded && !bpf_dump_raw_ok(file->f_cred)) { 4663 info.xlated_prog_insns = 0; 4664 goto done; 4665 } 4666 insns_sanitized = bpf_insn_prepare_dump(prog, file->f_cred); 4667 if (!insns_sanitized) 4668 return -ENOMEM; 4669 uinsns = u64_to_user_ptr(info.xlated_prog_insns); 4670 ulen = min_t(u32, info.xlated_prog_len, ulen); 4671 fault = copy_to_user(uinsns, insns_sanitized, ulen); 4672 kfree(insns_sanitized); 4673 if (fault) 4674 return -EFAULT; 4675 } 4676 4677 if (bpf_prog_is_offloaded(prog->aux)) { 4678 err = bpf_prog_offload_info_fill(&info, prog); 4679 if (err) 4680 return err; 4681 goto done; 4682 } 4683 4684 /* NOTE: the following code is supposed to be skipped for offload. 4685 * bpf_prog_offload_info_fill() is the place to fill similar fields 4686 * for offload. 4687 */ 4688 ulen = info.jited_prog_len; 4689 if (prog->aux->func_cnt) { 4690 u32 i; 4691 4692 info.jited_prog_len = 0; 4693 for (i = 0; i < prog->aux->func_cnt; i++) 4694 info.jited_prog_len += prog->aux->func[i]->jited_len; 4695 } else { 4696 info.jited_prog_len = prog->jited_len; 4697 } 4698 4699 if (info.jited_prog_len && ulen) { 4700 if (bpf_dump_raw_ok(file->f_cred)) { 4701 uinsns = u64_to_user_ptr(info.jited_prog_insns); 4702 ulen = min_t(u32, info.jited_prog_len, ulen); 4703 4704 /* for multi-function programs, copy the JITed 4705 * instructions for all the functions 4706 */ 4707 if (prog->aux->func_cnt) { 4708 u32 len, free, i; 4709 u8 *img; 4710 4711 free = ulen; 4712 for (i = 0; i < prog->aux->func_cnt; i++) { 4713 len = prog->aux->func[i]->jited_len; 4714 len = min_t(u32, len, free); 4715 img = (u8 *) prog->aux->func[i]->bpf_func; 4716 if (copy_to_user(uinsns, img, len)) 4717 return -EFAULT; 4718 uinsns += len; 4719 free -= len; 4720 if (!free) 4721 break; 4722 } 4723 } else { 4724 if (copy_to_user(uinsns, prog->bpf_func, ulen)) 4725 return -EFAULT; 4726 } 4727 } else { 4728 info.jited_prog_insns = 0; 4729 } 4730 } 4731 4732 ulen = info.nr_jited_ksyms; 4733 info.nr_jited_ksyms = prog->aux->func_cnt ? : 1; 4734 if (ulen) { 4735 if (bpf_dump_raw_ok(file->f_cred)) { 4736 unsigned long ksym_addr; 4737 u64 __user *user_ksyms; 4738 u32 i; 4739 4740 /* copy the address of the kernel symbol 4741 * corresponding to each function 4742 */ 4743 ulen = min_t(u32, info.nr_jited_ksyms, ulen); 4744 user_ksyms = u64_to_user_ptr(info.jited_ksyms); 4745 if (prog->aux->func_cnt) { 4746 for (i = 0; i < ulen; i++) { 4747 ksym_addr = (unsigned long) 4748 prog->aux->func[i]->bpf_func; 4749 if (put_user((u64) ksym_addr, 4750 &user_ksyms[i])) 4751 return -EFAULT; 4752 } 4753 } else { 4754 ksym_addr = (unsigned long) prog->bpf_func; 4755 if (put_user((u64) ksym_addr, &user_ksyms[0])) 4756 return -EFAULT; 4757 } 4758 } else { 4759 info.jited_ksyms = 0; 4760 } 4761 } 4762 4763 ulen = info.nr_jited_func_lens; 4764 info.nr_jited_func_lens = prog->aux->func_cnt ? : 1; 4765 if (ulen) { 4766 if (bpf_dump_raw_ok(file->f_cred)) { 4767 u32 __user *user_lens; 4768 u32 func_len, i; 4769 4770 /* copy the JITed image lengths for each function */ 4771 ulen = min_t(u32, info.nr_jited_func_lens, ulen); 4772 user_lens = u64_to_user_ptr(info.jited_func_lens); 4773 if (prog->aux->func_cnt) { 4774 for (i = 0; i < ulen; i++) { 4775 func_len = 4776 prog->aux->func[i]->jited_len; 4777 if (put_user(func_len, &user_lens[i])) 4778 return -EFAULT; 4779 } 4780 } else { 4781 func_len = prog->jited_len; 4782 if (put_user(func_len, &user_lens[0])) 4783 return -EFAULT; 4784 } 4785 } else { 4786 info.jited_func_lens = 0; 4787 } 4788 } 4789 4790 if (prog->aux->btf) 4791 info.btf_id = btf_obj_id(prog->aux->btf); 4792 info.attach_btf_id = prog->aux->attach_btf_id; 4793 if (attach_btf) 4794 info.attach_btf_obj_id = btf_obj_id(attach_btf); 4795 4796 ulen = info.nr_func_info; 4797 info.nr_func_info = prog->aux->func_info_cnt; 4798 if (info.nr_func_info && ulen) { 4799 char __user *user_finfo; 4800 4801 user_finfo = u64_to_user_ptr(info.func_info); 4802 ulen = min_t(u32, info.nr_func_info, ulen); 4803 if (copy_to_user(user_finfo, prog->aux->func_info, 4804 info.func_info_rec_size * ulen)) 4805 return -EFAULT; 4806 } 4807 4808 ulen = info.nr_line_info; 4809 info.nr_line_info = prog->aux->nr_linfo; 4810 if (info.nr_line_info && ulen) { 4811 __u8 __user *user_linfo; 4812 4813 user_linfo = u64_to_user_ptr(info.line_info); 4814 ulen = min_t(u32, info.nr_line_info, ulen); 4815 if (copy_to_user(user_linfo, prog->aux->linfo, 4816 info.line_info_rec_size * ulen)) 4817 return -EFAULT; 4818 } 4819 4820 ulen = info.nr_jited_line_info; 4821 if (prog->aux->jited_linfo) 4822 info.nr_jited_line_info = prog->aux->nr_linfo; 4823 else 4824 info.nr_jited_line_info = 0; 4825 if (info.nr_jited_line_info && ulen) { 4826 if (bpf_dump_raw_ok(file->f_cred)) { 4827 unsigned long line_addr; 4828 __u64 __user *user_linfo; 4829 u32 i; 4830 4831 user_linfo = u64_to_user_ptr(info.jited_line_info); 4832 ulen = min_t(u32, info.nr_jited_line_info, ulen); 4833 for (i = 0; i < ulen; i++) { 4834 line_addr = (unsigned long)prog->aux->jited_linfo[i]; 4835 if (put_user((__u64)line_addr, &user_linfo[i])) 4836 return -EFAULT; 4837 } 4838 } else { 4839 info.jited_line_info = 0; 4840 } 4841 } 4842 4843 ulen = info.nr_prog_tags; 4844 info.nr_prog_tags = prog->aux->func_cnt ? : 1; 4845 if (ulen) { 4846 __u8 __user (*user_prog_tags)[BPF_TAG_SIZE]; 4847 u32 i; 4848 4849 user_prog_tags = u64_to_user_ptr(info.prog_tags); 4850 ulen = min_t(u32, info.nr_prog_tags, ulen); 4851 if (prog->aux->func_cnt) { 4852 for (i = 0; i < ulen; i++) { 4853 if (copy_to_user(user_prog_tags[i], 4854 prog->aux->func[i]->tag, 4855 BPF_TAG_SIZE)) 4856 return -EFAULT; 4857 } 4858 } else { 4859 if (copy_to_user(user_prog_tags[0], 4860 prog->tag, BPF_TAG_SIZE)) 4861 return -EFAULT; 4862 } 4863 } 4864 4865 done: 4866 if (copy_to_user(uinfo, &info, info_len) || 4867 put_user(info_len, &uattr->info.info_len)) 4868 return -EFAULT; 4869 4870 return 0; 4871 } 4872 4873 static int bpf_map_get_info_by_fd(struct file *file, 4874 struct bpf_map *map, 4875 const union bpf_attr *attr, 4876 union bpf_attr __user *uattr) 4877 { 4878 struct bpf_map_info __user *uinfo = u64_to_user_ptr(attr->info.info); 4879 struct bpf_map_info info; 4880 u32 info_len = attr->info.info_len; 4881 int err; 4882 4883 err = bpf_check_uarg_tail_zero(USER_BPFPTR(uinfo), sizeof(info), info_len); 4884 if (err) 4885 return err; 4886 info_len = min_t(u32, sizeof(info), info_len); 4887 4888 memset(&info, 0, sizeof(info)); 4889 info.type = map->map_type; 4890 info.id = map->id; 4891 info.key_size = map->key_size; 4892 info.value_size = map->value_size; 4893 info.max_entries = map->max_entries; 4894 info.map_flags = map->map_flags; 4895 info.map_extra = map->map_extra; 4896 memcpy(info.name, map->name, sizeof(map->name)); 4897 4898 if (map->btf) { 4899 info.btf_id = btf_obj_id(map->btf); 4900 info.btf_key_type_id = map->btf_key_type_id; 4901 info.btf_value_type_id = map->btf_value_type_id; 4902 } 4903 info.btf_vmlinux_value_type_id = map->btf_vmlinux_value_type_id; 4904 if (map->map_type == BPF_MAP_TYPE_STRUCT_OPS) 4905 bpf_map_struct_ops_info_fill(&info, map); 4906 4907 if (bpf_map_is_offloaded(map)) { 4908 err = bpf_map_offload_info_fill(&info, map); 4909 if (err) 4910 return err; 4911 } 4912 4913 if (copy_to_user(uinfo, &info, info_len) || 4914 put_user(info_len, &uattr->info.info_len)) 4915 return -EFAULT; 4916 4917 return 0; 4918 } 4919 4920 static int bpf_btf_get_info_by_fd(struct file *file, 4921 struct btf *btf, 4922 const union bpf_attr *attr, 4923 union bpf_attr __user *uattr) 4924 { 4925 struct bpf_btf_info __user *uinfo = u64_to_user_ptr(attr->info.info); 4926 u32 info_len = attr->info.info_len; 4927 int err; 4928 4929 err = bpf_check_uarg_tail_zero(USER_BPFPTR(uinfo), sizeof(*uinfo), info_len); 4930 if (err) 4931 return err; 4932 4933 return btf_get_info_by_fd(btf, attr, uattr); 4934 } 4935 4936 static int bpf_link_get_info_by_fd(struct file *file, 4937 struct bpf_link *link, 4938 const union bpf_attr *attr, 4939 union bpf_attr __user *uattr) 4940 { 4941 struct bpf_link_info __user *uinfo = u64_to_user_ptr(attr->info.info); 4942 struct bpf_link_info info; 4943 u32 info_len = attr->info.info_len; 4944 int err; 4945 4946 err = bpf_check_uarg_tail_zero(USER_BPFPTR(uinfo), sizeof(info), info_len); 4947 if (err) 4948 return err; 4949 info_len = min_t(u32, sizeof(info), info_len); 4950 4951 memset(&info, 0, sizeof(info)); 4952 if (copy_from_user(&info, uinfo, info_len)) 4953 return -EFAULT; 4954 4955 info.type = link->type; 4956 info.id = link->id; 4957 if (link->prog) 4958 info.prog_id = link->prog->aux->id; 4959 4960 if (link->ops->fill_link_info) { 4961 err = link->ops->fill_link_info(link, &info); 4962 if (err) 4963 return err; 4964 } 4965 4966 if (copy_to_user(uinfo, &info, info_len) || 4967 put_user(info_len, &uattr->info.info_len)) 4968 return -EFAULT; 4969 4970 return 0; 4971 } 4972 4973 4974 #define BPF_OBJ_GET_INFO_BY_FD_LAST_FIELD info.info 4975 4976 static int bpf_obj_get_info_by_fd(const union bpf_attr *attr, 4977 union bpf_attr __user *uattr) 4978 { 4979 int ufd = attr->info.bpf_fd; 4980 struct fd f; 4981 int err; 4982 4983 if (CHECK_ATTR(BPF_OBJ_GET_INFO_BY_FD)) 4984 return -EINVAL; 4985 4986 f = fdget(ufd); 4987 if (!f.file) 4988 return -EBADFD; 4989 4990 if (f.file->f_op == &bpf_prog_fops) 4991 err = bpf_prog_get_info_by_fd(f.file, f.file->private_data, attr, 4992 uattr); 4993 else if (f.file->f_op == &bpf_map_fops) 4994 err = bpf_map_get_info_by_fd(f.file, f.file->private_data, attr, 4995 uattr); 4996 else if (f.file->f_op == &btf_fops) 4997 err = bpf_btf_get_info_by_fd(f.file, f.file->private_data, attr, uattr); 4998 else if (f.file->f_op == &bpf_link_fops || f.file->f_op == &bpf_link_fops_poll) 4999 err = bpf_link_get_info_by_fd(f.file, f.file->private_data, 5000 attr, uattr); 5001 else 5002 err = -EINVAL; 5003 5004 fdput(f); 5005 return err; 5006 } 5007 5008 #define BPF_BTF_LOAD_LAST_FIELD btf_token_fd 5009 5010 static int bpf_btf_load(const union bpf_attr *attr, bpfptr_t uattr, __u32 uattr_size) 5011 { 5012 struct bpf_token *token = NULL; 5013 5014 if (CHECK_ATTR(BPF_BTF_LOAD)) 5015 return -EINVAL; 5016 5017 if (attr->btf_flags & ~BPF_F_TOKEN_FD) 5018 return -EINVAL; 5019 5020 if (attr->btf_flags & BPF_F_TOKEN_FD) { 5021 token = bpf_token_get_from_fd(attr->btf_token_fd); 5022 if (IS_ERR(token)) 5023 return PTR_ERR(token); 5024 if (!bpf_token_allow_cmd(token, BPF_BTF_LOAD)) { 5025 bpf_token_put(token); 5026 token = NULL; 5027 } 5028 } 5029 5030 if (!bpf_token_capable(token, CAP_BPF)) { 5031 bpf_token_put(token); 5032 return -EPERM; 5033 } 5034 5035 bpf_token_put(token); 5036 5037 return btf_new_fd(attr, uattr, uattr_size); 5038 } 5039 5040 #define BPF_BTF_GET_FD_BY_ID_LAST_FIELD btf_id 5041 5042 static int bpf_btf_get_fd_by_id(const union bpf_attr *attr) 5043 { 5044 if (CHECK_ATTR(BPF_BTF_GET_FD_BY_ID)) 5045 return -EINVAL; 5046 5047 if (!capable(CAP_SYS_ADMIN)) 5048 return -EPERM; 5049 5050 return btf_get_fd_by_id(attr->btf_id); 5051 } 5052 5053 static int bpf_task_fd_query_copy(const union bpf_attr *attr, 5054 union bpf_attr __user *uattr, 5055 u32 prog_id, u32 fd_type, 5056 const char *buf, u64 probe_offset, 5057 u64 probe_addr) 5058 { 5059 char __user *ubuf = u64_to_user_ptr(attr->task_fd_query.buf); 5060 u32 len = buf ? strlen(buf) : 0, input_len; 5061 int err = 0; 5062 5063 if (put_user(len, &uattr->task_fd_query.buf_len)) 5064 return -EFAULT; 5065 input_len = attr->task_fd_query.buf_len; 5066 if (input_len && ubuf) { 5067 if (!len) { 5068 /* nothing to copy, just make ubuf NULL terminated */ 5069 char zero = '\0'; 5070 5071 if (put_user(zero, ubuf)) 5072 return -EFAULT; 5073 } else if (input_len >= len + 1) { 5074 /* ubuf can hold the string with NULL terminator */ 5075 if (copy_to_user(ubuf, buf, len + 1)) 5076 return -EFAULT; 5077 } else { 5078 /* ubuf cannot hold the string with NULL terminator, 5079 * do a partial copy with NULL terminator. 5080 */ 5081 char zero = '\0'; 5082 5083 err = -ENOSPC; 5084 if (copy_to_user(ubuf, buf, input_len - 1)) 5085 return -EFAULT; 5086 if (put_user(zero, ubuf + input_len - 1)) 5087 return -EFAULT; 5088 } 5089 } 5090 5091 if (put_user(prog_id, &uattr->task_fd_query.prog_id) || 5092 put_user(fd_type, &uattr->task_fd_query.fd_type) || 5093 put_user(probe_offset, &uattr->task_fd_query.probe_offset) || 5094 put_user(probe_addr, &uattr->task_fd_query.probe_addr)) 5095 return -EFAULT; 5096 5097 return err; 5098 } 5099 5100 #define BPF_TASK_FD_QUERY_LAST_FIELD task_fd_query.probe_addr 5101 5102 static int bpf_task_fd_query(const union bpf_attr *attr, 5103 union bpf_attr __user *uattr) 5104 { 5105 pid_t pid = attr->task_fd_query.pid; 5106 u32 fd = attr->task_fd_query.fd; 5107 const struct perf_event *event; 5108 struct task_struct *task; 5109 struct file *file; 5110 int err; 5111 5112 if (CHECK_ATTR(BPF_TASK_FD_QUERY)) 5113 return -EINVAL; 5114 5115 if (!capable(CAP_SYS_ADMIN)) 5116 return -EPERM; 5117 5118 if (attr->task_fd_query.flags != 0) 5119 return -EINVAL; 5120 5121 rcu_read_lock(); 5122 task = get_pid_task(find_vpid(pid), PIDTYPE_PID); 5123 rcu_read_unlock(); 5124 if (!task) 5125 return -ENOENT; 5126 5127 err = 0; 5128 file = fget_task(task, fd); 5129 put_task_struct(task); 5130 if (!file) 5131 return -EBADF; 5132 5133 if (file->f_op == &bpf_link_fops || file->f_op == &bpf_link_fops_poll) { 5134 struct bpf_link *link = file->private_data; 5135 5136 if (link->ops == &bpf_raw_tp_link_lops) { 5137 struct bpf_raw_tp_link *raw_tp = 5138 container_of(link, struct bpf_raw_tp_link, link); 5139 struct bpf_raw_event_map *btp = raw_tp->btp; 5140 5141 err = bpf_task_fd_query_copy(attr, uattr, 5142 raw_tp->link.prog->aux->id, 5143 BPF_FD_TYPE_RAW_TRACEPOINT, 5144 btp->tp->name, 0, 0); 5145 goto put_file; 5146 } 5147 goto out_not_supp; 5148 } 5149 5150 event = perf_get_event(file); 5151 if (!IS_ERR(event)) { 5152 u64 probe_offset, probe_addr; 5153 u32 prog_id, fd_type; 5154 const char *buf; 5155 5156 err = bpf_get_perf_event_info(event, &prog_id, &fd_type, 5157 &buf, &probe_offset, 5158 &probe_addr, NULL); 5159 if (!err) 5160 err = bpf_task_fd_query_copy(attr, uattr, prog_id, 5161 fd_type, buf, 5162 probe_offset, 5163 probe_addr); 5164 goto put_file; 5165 } 5166 5167 out_not_supp: 5168 err = -ENOTSUPP; 5169 put_file: 5170 fput(file); 5171 return err; 5172 } 5173 5174 #define BPF_MAP_BATCH_LAST_FIELD batch.flags 5175 5176 #define BPF_DO_BATCH(fn, ...) \ 5177 do { \ 5178 if (!fn) { \ 5179 err = -ENOTSUPP; \ 5180 goto err_put; \ 5181 } \ 5182 err = fn(__VA_ARGS__); \ 5183 } while (0) 5184 5185 static int bpf_map_do_batch(const union bpf_attr *attr, 5186 union bpf_attr __user *uattr, 5187 int cmd) 5188 { 5189 bool has_read = cmd == BPF_MAP_LOOKUP_BATCH || 5190 cmd == BPF_MAP_LOOKUP_AND_DELETE_BATCH; 5191 bool has_write = cmd != BPF_MAP_LOOKUP_BATCH; 5192 struct bpf_map *map; 5193 int err, ufd; 5194 struct fd f; 5195 5196 if (CHECK_ATTR(BPF_MAP_BATCH)) 5197 return -EINVAL; 5198 5199 ufd = attr->batch.map_fd; 5200 f = fdget(ufd); 5201 map = __bpf_map_get(f); 5202 if (IS_ERR(map)) 5203 return PTR_ERR(map); 5204 if (has_write) 5205 bpf_map_write_active_inc(map); 5206 if (has_read && !(map_get_sys_perms(map, f) & FMODE_CAN_READ)) { 5207 err = -EPERM; 5208 goto err_put; 5209 } 5210 if (has_write && !(map_get_sys_perms(map, f) & FMODE_CAN_WRITE)) { 5211 err = -EPERM; 5212 goto err_put; 5213 } 5214 5215 if (cmd == BPF_MAP_LOOKUP_BATCH) 5216 BPF_DO_BATCH(map->ops->map_lookup_batch, map, attr, uattr); 5217 else if (cmd == BPF_MAP_LOOKUP_AND_DELETE_BATCH) 5218 BPF_DO_BATCH(map->ops->map_lookup_and_delete_batch, map, attr, uattr); 5219 else if (cmd == BPF_MAP_UPDATE_BATCH) 5220 BPF_DO_BATCH(map->ops->map_update_batch, map, f.file, attr, uattr); 5221 else 5222 BPF_DO_BATCH(map->ops->map_delete_batch, map, attr, uattr); 5223 err_put: 5224 if (has_write) { 5225 maybe_wait_bpf_programs(map); 5226 bpf_map_write_active_dec(map); 5227 } 5228 fdput(f); 5229 return err; 5230 } 5231 5232 #define BPF_LINK_CREATE_LAST_FIELD link_create.uprobe_multi.pid 5233 static int link_create(union bpf_attr *attr, bpfptr_t uattr) 5234 { 5235 struct bpf_prog *prog; 5236 int ret; 5237 5238 if (CHECK_ATTR(BPF_LINK_CREATE)) 5239 return -EINVAL; 5240 5241 if (attr->link_create.attach_type == BPF_STRUCT_OPS) 5242 return bpf_struct_ops_link_create(attr); 5243 5244 prog = bpf_prog_get(attr->link_create.prog_fd); 5245 if (IS_ERR(prog)) 5246 return PTR_ERR(prog); 5247 5248 ret = bpf_prog_attach_check_attach_type(prog, 5249 attr->link_create.attach_type); 5250 if (ret) 5251 goto out; 5252 5253 switch (prog->type) { 5254 case BPF_PROG_TYPE_CGROUP_SKB: 5255 case BPF_PROG_TYPE_CGROUP_SOCK: 5256 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR: 5257 case BPF_PROG_TYPE_SOCK_OPS: 5258 case BPF_PROG_TYPE_CGROUP_DEVICE: 5259 case BPF_PROG_TYPE_CGROUP_SYSCTL: 5260 case BPF_PROG_TYPE_CGROUP_SOCKOPT: 5261 ret = cgroup_bpf_link_attach(attr, prog); 5262 break; 5263 case BPF_PROG_TYPE_EXT: 5264 ret = bpf_tracing_prog_attach(prog, 5265 attr->link_create.target_fd, 5266 attr->link_create.target_btf_id, 5267 attr->link_create.tracing.cookie); 5268 break; 5269 case BPF_PROG_TYPE_LSM: 5270 case BPF_PROG_TYPE_TRACING: 5271 if (attr->link_create.attach_type != prog->expected_attach_type) { 5272 ret = -EINVAL; 5273 goto out; 5274 } 5275 if (prog->expected_attach_type == BPF_TRACE_RAW_TP) 5276 ret = bpf_raw_tp_link_attach(prog, NULL, attr->link_create.tracing.cookie); 5277 else if (prog->expected_attach_type == BPF_TRACE_ITER) 5278 ret = bpf_iter_link_attach(attr, uattr, prog); 5279 else if (prog->expected_attach_type == BPF_LSM_CGROUP) 5280 ret = cgroup_bpf_link_attach(attr, prog); 5281 else 5282 ret = bpf_tracing_prog_attach(prog, 5283 attr->link_create.target_fd, 5284 attr->link_create.target_btf_id, 5285 attr->link_create.tracing.cookie); 5286 break; 5287 case BPF_PROG_TYPE_FLOW_DISSECTOR: 5288 case BPF_PROG_TYPE_SK_LOOKUP: 5289 ret = netns_bpf_link_create(attr, prog); 5290 break; 5291 case BPF_PROG_TYPE_SK_MSG: 5292 case BPF_PROG_TYPE_SK_SKB: 5293 ret = sock_map_link_create(attr, prog); 5294 break; 5295 #ifdef CONFIG_NET 5296 case BPF_PROG_TYPE_XDP: 5297 ret = bpf_xdp_link_attach(attr, prog); 5298 break; 5299 case BPF_PROG_TYPE_SCHED_CLS: 5300 if (attr->link_create.attach_type == BPF_TCX_INGRESS || 5301 attr->link_create.attach_type == BPF_TCX_EGRESS) 5302 ret = tcx_link_attach(attr, prog); 5303 else 5304 ret = netkit_link_attach(attr, prog); 5305 break; 5306 case BPF_PROG_TYPE_NETFILTER: 5307 ret = bpf_nf_link_attach(attr, prog); 5308 break; 5309 #endif 5310 case BPF_PROG_TYPE_PERF_EVENT: 5311 case BPF_PROG_TYPE_TRACEPOINT: 5312 ret = bpf_perf_link_attach(attr, prog); 5313 break; 5314 case BPF_PROG_TYPE_KPROBE: 5315 if (attr->link_create.attach_type == BPF_PERF_EVENT) 5316 ret = bpf_perf_link_attach(attr, prog); 5317 else if (attr->link_create.attach_type == BPF_TRACE_KPROBE_MULTI || 5318 attr->link_create.attach_type == BPF_TRACE_KPROBE_SESSION) 5319 ret = bpf_kprobe_multi_link_attach(attr, prog); 5320 else if (attr->link_create.attach_type == BPF_TRACE_UPROBE_MULTI) 5321 ret = bpf_uprobe_multi_link_attach(attr, prog); 5322 break; 5323 default: 5324 ret = -EINVAL; 5325 } 5326 5327 out: 5328 if (ret < 0) 5329 bpf_prog_put(prog); 5330 return ret; 5331 } 5332 5333 static int link_update_map(struct bpf_link *link, union bpf_attr *attr) 5334 { 5335 struct bpf_map *new_map, *old_map = NULL; 5336 int ret; 5337 5338 new_map = bpf_map_get(attr->link_update.new_map_fd); 5339 if (IS_ERR(new_map)) 5340 return PTR_ERR(new_map); 5341 5342 if (attr->link_update.flags & BPF_F_REPLACE) { 5343 old_map = bpf_map_get(attr->link_update.old_map_fd); 5344 if (IS_ERR(old_map)) { 5345 ret = PTR_ERR(old_map); 5346 goto out_put; 5347 } 5348 } else if (attr->link_update.old_map_fd) { 5349 ret = -EINVAL; 5350 goto out_put; 5351 } 5352 5353 ret = link->ops->update_map(link, new_map, old_map); 5354 5355 if (old_map) 5356 bpf_map_put(old_map); 5357 out_put: 5358 bpf_map_put(new_map); 5359 return ret; 5360 } 5361 5362 #define BPF_LINK_UPDATE_LAST_FIELD link_update.old_prog_fd 5363 5364 static int link_update(union bpf_attr *attr) 5365 { 5366 struct bpf_prog *old_prog = NULL, *new_prog; 5367 struct bpf_link *link; 5368 u32 flags; 5369 int ret; 5370 5371 if (CHECK_ATTR(BPF_LINK_UPDATE)) 5372 return -EINVAL; 5373 5374 flags = attr->link_update.flags; 5375 if (flags & ~BPF_F_REPLACE) 5376 return -EINVAL; 5377 5378 link = bpf_link_get_from_fd(attr->link_update.link_fd); 5379 if (IS_ERR(link)) 5380 return PTR_ERR(link); 5381 5382 if (link->ops->update_map) { 5383 ret = link_update_map(link, attr); 5384 goto out_put_link; 5385 } 5386 5387 new_prog = bpf_prog_get(attr->link_update.new_prog_fd); 5388 if (IS_ERR(new_prog)) { 5389 ret = PTR_ERR(new_prog); 5390 goto out_put_link; 5391 } 5392 5393 if (flags & BPF_F_REPLACE) { 5394 old_prog = bpf_prog_get(attr->link_update.old_prog_fd); 5395 if (IS_ERR(old_prog)) { 5396 ret = PTR_ERR(old_prog); 5397 old_prog = NULL; 5398 goto out_put_progs; 5399 } 5400 } else if (attr->link_update.old_prog_fd) { 5401 ret = -EINVAL; 5402 goto out_put_progs; 5403 } 5404 5405 if (link->ops->update_prog) 5406 ret = link->ops->update_prog(link, new_prog, old_prog); 5407 else 5408 ret = -EINVAL; 5409 5410 out_put_progs: 5411 if (old_prog) 5412 bpf_prog_put(old_prog); 5413 if (ret) 5414 bpf_prog_put(new_prog); 5415 out_put_link: 5416 bpf_link_put_direct(link); 5417 return ret; 5418 } 5419 5420 #define BPF_LINK_DETACH_LAST_FIELD link_detach.link_fd 5421 5422 static int link_detach(union bpf_attr *attr) 5423 { 5424 struct bpf_link *link; 5425 int ret; 5426 5427 if (CHECK_ATTR(BPF_LINK_DETACH)) 5428 return -EINVAL; 5429 5430 link = bpf_link_get_from_fd(attr->link_detach.link_fd); 5431 if (IS_ERR(link)) 5432 return PTR_ERR(link); 5433 5434 if (link->ops->detach) 5435 ret = link->ops->detach(link); 5436 else 5437 ret = -EOPNOTSUPP; 5438 5439 bpf_link_put_direct(link); 5440 return ret; 5441 } 5442 5443 struct bpf_link *bpf_link_inc_not_zero(struct bpf_link *link) 5444 { 5445 return atomic64_fetch_add_unless(&link->refcnt, 1, 0) ? link : ERR_PTR(-ENOENT); 5446 } 5447 EXPORT_SYMBOL(bpf_link_inc_not_zero); 5448 5449 struct bpf_link *bpf_link_by_id(u32 id) 5450 { 5451 struct bpf_link *link; 5452 5453 if (!id) 5454 return ERR_PTR(-ENOENT); 5455 5456 spin_lock_bh(&link_idr_lock); 5457 /* before link is "settled", ID is 0, pretend it doesn't exist yet */ 5458 link = idr_find(&link_idr, id); 5459 if (link) { 5460 if (link->id) 5461 link = bpf_link_inc_not_zero(link); 5462 else 5463 link = ERR_PTR(-EAGAIN); 5464 } else { 5465 link = ERR_PTR(-ENOENT); 5466 } 5467 spin_unlock_bh(&link_idr_lock); 5468 return link; 5469 } 5470 5471 struct bpf_link *bpf_link_get_curr_or_next(u32 *id) 5472 { 5473 struct bpf_link *link; 5474 5475 spin_lock_bh(&link_idr_lock); 5476 again: 5477 link = idr_get_next(&link_idr, id); 5478 if (link) { 5479 link = bpf_link_inc_not_zero(link); 5480 if (IS_ERR(link)) { 5481 (*id)++; 5482 goto again; 5483 } 5484 } 5485 spin_unlock_bh(&link_idr_lock); 5486 5487 return link; 5488 } 5489 5490 #define BPF_LINK_GET_FD_BY_ID_LAST_FIELD link_id 5491 5492 static int bpf_link_get_fd_by_id(const union bpf_attr *attr) 5493 { 5494 struct bpf_link *link; 5495 u32 id = attr->link_id; 5496 int fd; 5497 5498 if (CHECK_ATTR(BPF_LINK_GET_FD_BY_ID)) 5499 return -EINVAL; 5500 5501 if (!capable(CAP_SYS_ADMIN)) 5502 return -EPERM; 5503 5504 link = bpf_link_by_id(id); 5505 if (IS_ERR(link)) 5506 return PTR_ERR(link); 5507 5508 fd = bpf_link_new_fd(link); 5509 if (fd < 0) 5510 bpf_link_put_direct(link); 5511 5512 return fd; 5513 } 5514 5515 DEFINE_MUTEX(bpf_stats_enabled_mutex); 5516 5517 static int bpf_stats_release(struct inode *inode, struct file *file) 5518 { 5519 mutex_lock(&bpf_stats_enabled_mutex); 5520 static_key_slow_dec(&bpf_stats_enabled_key.key); 5521 mutex_unlock(&bpf_stats_enabled_mutex); 5522 return 0; 5523 } 5524 5525 static const struct file_operations bpf_stats_fops = { 5526 .release = bpf_stats_release, 5527 }; 5528 5529 static int bpf_enable_runtime_stats(void) 5530 { 5531 int fd; 5532 5533 mutex_lock(&bpf_stats_enabled_mutex); 5534 5535 /* Set a very high limit to avoid overflow */ 5536 if (static_key_count(&bpf_stats_enabled_key.key) > INT_MAX / 2) { 5537 mutex_unlock(&bpf_stats_enabled_mutex); 5538 return -EBUSY; 5539 } 5540 5541 fd = anon_inode_getfd("bpf-stats", &bpf_stats_fops, NULL, O_CLOEXEC); 5542 if (fd >= 0) 5543 static_key_slow_inc(&bpf_stats_enabled_key.key); 5544 5545 mutex_unlock(&bpf_stats_enabled_mutex); 5546 return fd; 5547 } 5548 5549 #define BPF_ENABLE_STATS_LAST_FIELD enable_stats.type 5550 5551 static int bpf_enable_stats(union bpf_attr *attr) 5552 { 5553 5554 if (CHECK_ATTR(BPF_ENABLE_STATS)) 5555 return -EINVAL; 5556 5557 if (!capable(CAP_SYS_ADMIN)) 5558 return -EPERM; 5559 5560 switch (attr->enable_stats.type) { 5561 case BPF_STATS_RUN_TIME: 5562 return bpf_enable_runtime_stats(); 5563 default: 5564 break; 5565 } 5566 return -EINVAL; 5567 } 5568 5569 #define BPF_ITER_CREATE_LAST_FIELD iter_create.flags 5570 5571 static int bpf_iter_create(union bpf_attr *attr) 5572 { 5573 struct bpf_link *link; 5574 int err; 5575 5576 if (CHECK_ATTR(BPF_ITER_CREATE)) 5577 return -EINVAL; 5578 5579 if (attr->iter_create.flags) 5580 return -EINVAL; 5581 5582 link = bpf_link_get_from_fd(attr->iter_create.link_fd); 5583 if (IS_ERR(link)) 5584 return PTR_ERR(link); 5585 5586 err = bpf_iter_new_fd(link); 5587 bpf_link_put_direct(link); 5588 5589 return err; 5590 } 5591 5592 #define BPF_PROG_BIND_MAP_LAST_FIELD prog_bind_map.flags 5593 5594 static int bpf_prog_bind_map(union bpf_attr *attr) 5595 { 5596 struct bpf_prog *prog; 5597 struct bpf_map *map; 5598 struct bpf_map **used_maps_old, **used_maps_new; 5599 int i, ret = 0; 5600 5601 if (CHECK_ATTR(BPF_PROG_BIND_MAP)) 5602 return -EINVAL; 5603 5604 if (attr->prog_bind_map.flags) 5605 return -EINVAL; 5606 5607 prog = bpf_prog_get(attr->prog_bind_map.prog_fd); 5608 if (IS_ERR(prog)) 5609 return PTR_ERR(prog); 5610 5611 map = bpf_map_get(attr->prog_bind_map.map_fd); 5612 if (IS_ERR(map)) { 5613 ret = PTR_ERR(map); 5614 goto out_prog_put; 5615 } 5616 5617 mutex_lock(&prog->aux->used_maps_mutex); 5618 5619 used_maps_old = prog->aux->used_maps; 5620 5621 for (i = 0; i < prog->aux->used_map_cnt; i++) 5622 if (used_maps_old[i] == map) { 5623 bpf_map_put(map); 5624 goto out_unlock; 5625 } 5626 5627 used_maps_new = kmalloc_array(prog->aux->used_map_cnt + 1, 5628 sizeof(used_maps_new[0]), 5629 GFP_KERNEL); 5630 if (!used_maps_new) { 5631 ret = -ENOMEM; 5632 goto out_unlock; 5633 } 5634 5635 /* The bpf program will not access the bpf map, but for the sake of 5636 * simplicity, increase sleepable_refcnt for sleepable program as well. 5637 */ 5638 if (prog->sleepable) 5639 atomic64_inc(&map->sleepable_refcnt); 5640 memcpy(used_maps_new, used_maps_old, 5641 sizeof(used_maps_old[0]) * prog->aux->used_map_cnt); 5642 used_maps_new[prog->aux->used_map_cnt] = map; 5643 5644 prog->aux->used_map_cnt++; 5645 prog->aux->used_maps = used_maps_new; 5646 5647 kfree(used_maps_old); 5648 5649 out_unlock: 5650 mutex_unlock(&prog->aux->used_maps_mutex); 5651 5652 if (ret) 5653 bpf_map_put(map); 5654 out_prog_put: 5655 bpf_prog_put(prog); 5656 return ret; 5657 } 5658 5659 #define BPF_TOKEN_CREATE_LAST_FIELD token_create.bpffs_fd 5660 5661 static int token_create(union bpf_attr *attr) 5662 { 5663 if (CHECK_ATTR(BPF_TOKEN_CREATE)) 5664 return -EINVAL; 5665 5666 /* no flags are supported yet */ 5667 if (attr->token_create.flags) 5668 return -EINVAL; 5669 5670 return bpf_token_create(attr); 5671 } 5672 5673 static int __sys_bpf(int cmd, bpfptr_t uattr, unsigned int size) 5674 { 5675 union bpf_attr attr; 5676 int err; 5677 5678 err = bpf_check_uarg_tail_zero(uattr, sizeof(attr), size); 5679 if (err) 5680 return err; 5681 size = min_t(u32, size, sizeof(attr)); 5682 5683 /* copy attributes from user space, may be less than sizeof(bpf_attr) */ 5684 memset(&attr, 0, sizeof(attr)); 5685 if (copy_from_bpfptr(&attr, uattr, size) != 0) 5686 return -EFAULT; 5687 5688 err = security_bpf(cmd, &attr, size); 5689 if (err < 0) 5690 return err; 5691 5692 switch (cmd) { 5693 case BPF_MAP_CREATE: 5694 err = map_create(&attr); 5695 break; 5696 case BPF_MAP_LOOKUP_ELEM: 5697 err = map_lookup_elem(&attr); 5698 break; 5699 case BPF_MAP_UPDATE_ELEM: 5700 err = map_update_elem(&attr, uattr); 5701 break; 5702 case BPF_MAP_DELETE_ELEM: 5703 err = map_delete_elem(&attr, uattr); 5704 break; 5705 case BPF_MAP_GET_NEXT_KEY: 5706 err = map_get_next_key(&attr); 5707 break; 5708 case BPF_MAP_FREEZE: 5709 err = map_freeze(&attr); 5710 break; 5711 case BPF_PROG_LOAD: 5712 err = bpf_prog_load(&attr, uattr, size); 5713 break; 5714 case BPF_OBJ_PIN: 5715 err = bpf_obj_pin(&attr); 5716 break; 5717 case BPF_OBJ_GET: 5718 err = bpf_obj_get(&attr); 5719 break; 5720 case BPF_PROG_ATTACH: 5721 err = bpf_prog_attach(&attr); 5722 break; 5723 case BPF_PROG_DETACH: 5724 err = bpf_prog_detach(&attr); 5725 break; 5726 case BPF_PROG_QUERY: 5727 err = bpf_prog_query(&attr, uattr.user); 5728 break; 5729 case BPF_PROG_TEST_RUN: 5730 err = bpf_prog_test_run(&attr, uattr.user); 5731 break; 5732 case BPF_PROG_GET_NEXT_ID: 5733 err = bpf_obj_get_next_id(&attr, uattr.user, 5734 &prog_idr, &prog_idr_lock); 5735 break; 5736 case BPF_MAP_GET_NEXT_ID: 5737 err = bpf_obj_get_next_id(&attr, uattr.user, 5738 &map_idr, &map_idr_lock); 5739 break; 5740 case BPF_BTF_GET_NEXT_ID: 5741 err = bpf_obj_get_next_id(&attr, uattr.user, 5742 &btf_idr, &btf_idr_lock); 5743 break; 5744 case BPF_PROG_GET_FD_BY_ID: 5745 err = bpf_prog_get_fd_by_id(&attr); 5746 break; 5747 case BPF_MAP_GET_FD_BY_ID: 5748 err = bpf_map_get_fd_by_id(&attr); 5749 break; 5750 case BPF_OBJ_GET_INFO_BY_FD: 5751 err = bpf_obj_get_info_by_fd(&attr, uattr.user); 5752 break; 5753 case BPF_RAW_TRACEPOINT_OPEN: 5754 err = bpf_raw_tracepoint_open(&attr); 5755 break; 5756 case BPF_BTF_LOAD: 5757 err = bpf_btf_load(&attr, uattr, size); 5758 break; 5759 case BPF_BTF_GET_FD_BY_ID: 5760 err = bpf_btf_get_fd_by_id(&attr); 5761 break; 5762 case BPF_TASK_FD_QUERY: 5763 err = bpf_task_fd_query(&attr, uattr.user); 5764 break; 5765 case BPF_MAP_LOOKUP_AND_DELETE_ELEM: 5766 err = map_lookup_and_delete_elem(&attr); 5767 break; 5768 case BPF_MAP_LOOKUP_BATCH: 5769 err = bpf_map_do_batch(&attr, uattr.user, BPF_MAP_LOOKUP_BATCH); 5770 break; 5771 case BPF_MAP_LOOKUP_AND_DELETE_BATCH: 5772 err = bpf_map_do_batch(&attr, uattr.user, 5773 BPF_MAP_LOOKUP_AND_DELETE_BATCH); 5774 break; 5775 case BPF_MAP_UPDATE_BATCH: 5776 err = bpf_map_do_batch(&attr, uattr.user, BPF_MAP_UPDATE_BATCH); 5777 break; 5778 case BPF_MAP_DELETE_BATCH: 5779 err = bpf_map_do_batch(&attr, uattr.user, BPF_MAP_DELETE_BATCH); 5780 break; 5781 case BPF_LINK_CREATE: 5782 err = link_create(&attr, uattr); 5783 break; 5784 case BPF_LINK_UPDATE: 5785 err = link_update(&attr); 5786 break; 5787 case BPF_LINK_GET_FD_BY_ID: 5788 err = bpf_link_get_fd_by_id(&attr); 5789 break; 5790 case BPF_LINK_GET_NEXT_ID: 5791 err = bpf_obj_get_next_id(&attr, uattr.user, 5792 &link_idr, &link_idr_lock); 5793 break; 5794 case BPF_ENABLE_STATS: 5795 err = bpf_enable_stats(&attr); 5796 break; 5797 case BPF_ITER_CREATE: 5798 err = bpf_iter_create(&attr); 5799 break; 5800 case BPF_LINK_DETACH: 5801 err = link_detach(&attr); 5802 break; 5803 case BPF_PROG_BIND_MAP: 5804 err = bpf_prog_bind_map(&attr); 5805 break; 5806 case BPF_TOKEN_CREATE: 5807 err = token_create(&attr); 5808 break; 5809 default: 5810 err = -EINVAL; 5811 break; 5812 } 5813 5814 return err; 5815 } 5816 5817 SYSCALL_DEFINE3(bpf, int, cmd, union bpf_attr __user *, uattr, unsigned int, size) 5818 { 5819 return __sys_bpf(cmd, USER_BPFPTR(uattr), size); 5820 } 5821 5822 static bool syscall_prog_is_valid_access(int off, int size, 5823 enum bpf_access_type type, 5824 const struct bpf_prog *prog, 5825 struct bpf_insn_access_aux *info) 5826 { 5827 if (off < 0 || off >= U16_MAX) 5828 return false; 5829 if (off % size != 0) 5830 return false; 5831 return true; 5832 } 5833 5834 BPF_CALL_3(bpf_sys_bpf, int, cmd, union bpf_attr *, attr, u32, attr_size) 5835 { 5836 switch (cmd) { 5837 case BPF_MAP_CREATE: 5838 case BPF_MAP_DELETE_ELEM: 5839 case BPF_MAP_UPDATE_ELEM: 5840 case BPF_MAP_FREEZE: 5841 case BPF_MAP_GET_FD_BY_ID: 5842 case BPF_PROG_LOAD: 5843 case BPF_BTF_LOAD: 5844 case BPF_LINK_CREATE: 5845 case BPF_RAW_TRACEPOINT_OPEN: 5846 break; 5847 default: 5848 return -EINVAL; 5849 } 5850 return __sys_bpf(cmd, KERNEL_BPFPTR(attr), attr_size); 5851 } 5852 5853 5854 /* To shut up -Wmissing-prototypes. 5855 * This function is used by the kernel light skeleton 5856 * to load bpf programs when modules are loaded or during kernel boot. 5857 * See tools/lib/bpf/skel_internal.h 5858 */ 5859 int kern_sys_bpf(int cmd, union bpf_attr *attr, unsigned int size); 5860 5861 int kern_sys_bpf(int cmd, union bpf_attr *attr, unsigned int size) 5862 { 5863 struct bpf_prog * __maybe_unused prog; 5864 struct bpf_tramp_run_ctx __maybe_unused run_ctx; 5865 5866 switch (cmd) { 5867 #ifdef CONFIG_BPF_JIT /* __bpf_prog_enter_sleepable used by trampoline and JIT */ 5868 case BPF_PROG_TEST_RUN: 5869 if (attr->test.data_in || attr->test.data_out || 5870 attr->test.ctx_out || attr->test.duration || 5871 attr->test.repeat || attr->test.flags) 5872 return -EINVAL; 5873 5874 prog = bpf_prog_get_type(attr->test.prog_fd, BPF_PROG_TYPE_SYSCALL); 5875 if (IS_ERR(prog)) 5876 return PTR_ERR(prog); 5877 5878 if (attr->test.ctx_size_in < prog->aux->max_ctx_offset || 5879 attr->test.ctx_size_in > U16_MAX) { 5880 bpf_prog_put(prog); 5881 return -EINVAL; 5882 } 5883 5884 run_ctx.bpf_cookie = 0; 5885 if (!__bpf_prog_enter_sleepable_recur(prog, &run_ctx)) { 5886 /* recursion detected */ 5887 __bpf_prog_exit_sleepable_recur(prog, 0, &run_ctx); 5888 bpf_prog_put(prog); 5889 return -EBUSY; 5890 } 5891 attr->test.retval = bpf_prog_run(prog, (void *) (long) attr->test.ctx_in); 5892 __bpf_prog_exit_sleepable_recur(prog, 0 /* bpf_prog_run does runtime stats */, 5893 &run_ctx); 5894 bpf_prog_put(prog); 5895 return 0; 5896 #endif 5897 default: 5898 return ____bpf_sys_bpf(cmd, attr, size); 5899 } 5900 } 5901 EXPORT_SYMBOL(kern_sys_bpf); 5902 5903 static const struct bpf_func_proto bpf_sys_bpf_proto = { 5904 .func = bpf_sys_bpf, 5905 .gpl_only = false, 5906 .ret_type = RET_INTEGER, 5907 .arg1_type = ARG_ANYTHING, 5908 .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, 5909 .arg3_type = ARG_CONST_SIZE, 5910 }; 5911 5912 const struct bpf_func_proto * __weak 5913 tracing_prog_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog) 5914 { 5915 return bpf_base_func_proto(func_id, prog); 5916 } 5917 5918 BPF_CALL_1(bpf_sys_close, u32, fd) 5919 { 5920 /* When bpf program calls this helper there should not be 5921 * an fdget() without matching completed fdput(). 5922 * This helper is allowed in the following callchain only: 5923 * sys_bpf->prog_test_run->bpf_prog->bpf_sys_close 5924 */ 5925 return close_fd(fd); 5926 } 5927 5928 static const struct bpf_func_proto bpf_sys_close_proto = { 5929 .func = bpf_sys_close, 5930 .gpl_only = false, 5931 .ret_type = RET_INTEGER, 5932 .arg1_type = ARG_ANYTHING, 5933 }; 5934 5935 BPF_CALL_4(bpf_kallsyms_lookup_name, const char *, name, int, name_sz, int, flags, u64 *, res) 5936 { 5937 if (flags) 5938 return -EINVAL; 5939 5940 if (name_sz <= 1 || name[name_sz - 1]) 5941 return -EINVAL; 5942 5943 if (!bpf_dump_raw_ok(current_cred())) 5944 return -EPERM; 5945 5946 *res = kallsyms_lookup_name(name); 5947 return *res ? 0 : -ENOENT; 5948 } 5949 5950 static const struct bpf_func_proto bpf_kallsyms_lookup_name_proto = { 5951 .func = bpf_kallsyms_lookup_name, 5952 .gpl_only = false, 5953 .ret_type = RET_INTEGER, 5954 .arg1_type = ARG_PTR_TO_MEM, 5955 .arg2_type = ARG_CONST_SIZE_OR_ZERO, 5956 .arg3_type = ARG_ANYTHING, 5957 .arg4_type = ARG_PTR_TO_LONG, 5958 }; 5959 5960 static const struct bpf_func_proto * 5961 syscall_prog_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog) 5962 { 5963 switch (func_id) { 5964 case BPF_FUNC_sys_bpf: 5965 return !bpf_token_capable(prog->aux->token, CAP_PERFMON) 5966 ? NULL : &bpf_sys_bpf_proto; 5967 case BPF_FUNC_btf_find_by_name_kind: 5968 return &bpf_btf_find_by_name_kind_proto; 5969 case BPF_FUNC_sys_close: 5970 return &bpf_sys_close_proto; 5971 case BPF_FUNC_kallsyms_lookup_name: 5972 return &bpf_kallsyms_lookup_name_proto; 5973 default: 5974 return tracing_prog_func_proto(func_id, prog); 5975 } 5976 } 5977 5978 const struct bpf_verifier_ops bpf_syscall_verifier_ops = { 5979 .get_func_proto = syscall_prog_func_proto, 5980 .is_valid_access = syscall_prog_is_valid_access, 5981 }; 5982 5983 const struct bpf_prog_ops bpf_syscall_prog_ops = { 5984 .test_run = bpf_prog_test_run_syscall, 5985 }; 5986 5987 #ifdef CONFIG_SYSCTL 5988 static int bpf_stats_handler(const struct ctl_table *table, int write, 5989 void *buffer, size_t *lenp, loff_t *ppos) 5990 { 5991 struct static_key *key = (struct static_key *)table->data; 5992 static int saved_val; 5993 int val, ret; 5994 struct ctl_table tmp = { 5995 .data = &val, 5996 .maxlen = sizeof(val), 5997 .mode = table->mode, 5998 .extra1 = SYSCTL_ZERO, 5999 .extra2 = SYSCTL_ONE, 6000 }; 6001 6002 if (write && !capable(CAP_SYS_ADMIN)) 6003 return -EPERM; 6004 6005 mutex_lock(&bpf_stats_enabled_mutex); 6006 val = saved_val; 6007 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos); 6008 if (write && !ret && val != saved_val) { 6009 if (val) 6010 static_key_slow_inc(key); 6011 else 6012 static_key_slow_dec(key); 6013 saved_val = val; 6014 } 6015 mutex_unlock(&bpf_stats_enabled_mutex); 6016 return ret; 6017 } 6018 6019 void __weak unpriv_ebpf_notify(int new_state) 6020 { 6021 } 6022 6023 static int bpf_unpriv_handler(const struct ctl_table *table, int write, 6024 void *buffer, size_t *lenp, loff_t *ppos) 6025 { 6026 int ret, unpriv_enable = *(int *)table->data; 6027 bool locked_state = unpriv_enable == 1; 6028 struct ctl_table tmp = *table; 6029 6030 if (write && !capable(CAP_SYS_ADMIN)) 6031 return -EPERM; 6032 6033 tmp.data = &unpriv_enable; 6034 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos); 6035 if (write && !ret) { 6036 if (locked_state && unpriv_enable != 1) 6037 return -EPERM; 6038 *(int *)table->data = unpriv_enable; 6039 } 6040 6041 if (write) 6042 unpriv_ebpf_notify(unpriv_enable); 6043 6044 return ret; 6045 } 6046 6047 static struct ctl_table bpf_syscall_table[] = { 6048 { 6049 .procname = "unprivileged_bpf_disabled", 6050 .data = &sysctl_unprivileged_bpf_disabled, 6051 .maxlen = sizeof(sysctl_unprivileged_bpf_disabled), 6052 .mode = 0644, 6053 .proc_handler = bpf_unpriv_handler, 6054 .extra1 = SYSCTL_ZERO, 6055 .extra2 = SYSCTL_TWO, 6056 }, 6057 { 6058 .procname = "bpf_stats_enabled", 6059 .data = &bpf_stats_enabled_key.key, 6060 .mode = 0644, 6061 .proc_handler = bpf_stats_handler, 6062 }, 6063 }; 6064 6065 static int __init bpf_syscall_sysctl_init(void) 6066 { 6067 register_sysctl_init("kernel", bpf_syscall_table); 6068 return 0; 6069 } 6070 late_initcall(bpf_syscall_sysctl_init); 6071 #endif /* CONFIG_SYSCTL */ 6072