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