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