1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com
5 #include <linux/bpf_trace.h>
6 #include <linux/bpf_lirc.h>
7 #include <linux/bpf_verifier.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>
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>
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) || \
43 #define BPF_OBJ_FLAG_MASK (BPF_F_RDONLY | BPF_F_WRONLY)
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
);
53 int sysctl_unprivileged_bpf_disabled __read_mostly
;
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) \
59 #define BPF_LINK_TYPE(_id, _name)
60 #include <linux/bpf_types.h>
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.
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.
75 int bpf_check_uarg_tail_zero(void __user
*uaddr
,
79 unsigned char __user
*addr
= uaddr
+ expected_size
;
82 if (unlikely(actual_size
> PAGE_SIZE
)) /* silly large */
85 if (actual_size
<= expected_size
)
88 res
= check_zeroed_user(addr
, actual_size
- expected_size
);
91 return res
? 0 : -E2BIG
;
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
,
101 static struct bpf_map
*find_and_alloc_map(union bpf_attr
*attr
)
103 const struct bpf_map_ops
*ops
;
104 u32 type
= attr
->map_type
;
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
];
113 return ERR_PTR(-EINVAL
);
115 if (ops
->map_alloc_check
) {
116 err
= ops
->map_alloc_check(attr
);
120 if (attr
->map_ifindex
)
121 ops
= &bpf_map_offload_ops
;
122 map
= ops
->map_alloc(attr
);
126 map
->map_type
= type
;
130 static u32
bpf_map_value_size(const struct bpf_map
*map
)
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
))
140 return map
->value_size
;
143 static void maybe_wait_bpf_programs(struct bpf_map
*map
)
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.
149 if (map
->map_type
== BPF_MAP_TYPE_HASH_OF_MAPS
||
150 map
->map_type
== BPF_MAP_TYPE_ARRAY_OF_MAPS
)
154 static int bpf_map_update_value(struct bpf_map
*map
, struct fd f
, void *key
,
155 void *value
, __u64 flags
)
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
,
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
,
182 } else if (IS_FD_ARRAY(map
)) {
184 err
= bpf_fd_array_map_update_elem(map
, f
.file
, key
, value
,
187 } else if (map
->map_type
== BPF_MAP_TYPE_HASH_OF_MAPS
) {
189 err
= bpf_fd_htab_map_update_elem(map
, f
.file
, key
, value
,
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
,
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
);
201 err
= map
->ops
->map_update_elem(map
, key
, value
, flags
);
204 bpf_enable_instrumentation();
205 maybe_wait_bpf_programs(map
);
210 static int bpf_map_copy_value(struct bpf_map
*map
, void *key
, void *value
,
216 if (bpf_map_is_dev_bound(map
))
217 return bpf_map_offload_lookup_elem(map
, key
, value
);
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
);
243 if (map
->ops
->map_lookup_elem_sys_only
)
244 ptr
= map
->ops
->map_lookup_elem_sys_only(map
, key
);
246 ptr
= map
->ops
->map_lookup_elem(map
, key
);
253 if (flags
& BPF_F_LOCK
)
254 /* lock 'ptr' and copy everything but lock */
255 copy_map_value_locked(map
, value
, ptr
, true);
257 copy_map_value(map
, value
, ptr
);
258 /* mask lock, since value wasn't zero inited */
259 check_and_init_map_lock(map
, value
);
264 bpf_enable_instrumentation();
265 maybe_wait_bpf_programs(map
);
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).
274 static void *__bpf_map_area_alloc(u64 size
, int numa_node
, bool mmapable
)
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.
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.
286 const gfp_t gfp
= __GFP_NOWARN
| __GFP_ZERO
| __GFP_ACCOUNT
;
287 unsigned int flags
= 0;
288 unsigned long align
= 1;
291 if (size
>= SIZE_MAX
)
294 /* kmalloc()'ed memory can't be mmap()'ed */
296 BUG_ON(!PAGE_ALIGNED(size
));
299 } else if (size
<= (PAGE_SIZE
<< PAGE_ALLOC_COSTLY_ORDER
)) {
300 area
= kmalloc_node(size
, gfp
| GFP_USER
| __GFP_NORETRY
,
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));
311 void *bpf_map_area_alloc(u64 size
, int numa_node
)
313 return __bpf_map_area_alloc(size
, numa_node
, false);
316 void *bpf_map_area_mmapable_alloc(u64 size
, int numa_node
)
318 return __bpf_map_area_alloc(size
, numa_node
, true);
321 void bpf_map_area_free(void *area
)
326 static u32
bpf_map_flags_retain_permanent(u32 flags
)
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
335 return flags
& ~(BPF_F_RDONLY
| BPF_F_WRONLY
);
338 void bpf_map_init_from_attr(struct bpf_map
*map
, union bpf_attr
*attr
)
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
);
348 static int bpf_map_alloc_id(struct bpf_map
*map
)
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
);
357 spin_unlock_bh(&map_idr_lock
);
360 if (WARN_ON_ONCE(!id
))
363 return id
> 0 ? 0 : id
;
366 void bpf_map_free_id(struct bpf_map
*map
, bool do_idr_lock
)
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.
379 spin_lock_irqsave(&map_idr_lock
, flags
);
381 __acquire(&map_idr_lock
);
383 idr_remove(&map_idr
, map
->id
);
387 spin_unlock_irqrestore(&map_idr_lock
, flags
);
389 __release(&map_idr_lock
);
392 #ifdef CONFIG_MEMCG_KMEM
393 static void bpf_map_save_memcg(struct bpf_map
*map
)
395 map
->memcg
= get_mem_cgroup_from_mm(current
->mm
);
398 static void bpf_map_release_memcg(struct bpf_map
*map
)
400 mem_cgroup_put(map
->memcg
);
403 void *bpf_map_kmalloc_node(const struct bpf_map
*map
, size_t size
, gfp_t flags
,
406 struct mem_cgroup
*old_memcg
;
409 old_memcg
= set_active_memcg(map
->memcg
);
410 ptr
= kmalloc_node(size
, flags
| __GFP_ACCOUNT
, node
);
411 set_active_memcg(old_memcg
);
416 void *bpf_map_kzalloc(const struct bpf_map
*map
, size_t size
, gfp_t flags
)
418 struct mem_cgroup
*old_memcg
;
421 old_memcg
= set_active_memcg(map
->memcg
);
422 ptr
= kzalloc(size
, flags
| __GFP_ACCOUNT
);
423 set_active_memcg(old_memcg
);
428 void __percpu
*bpf_map_alloc_percpu(const struct bpf_map
*map
, size_t size
,
429 size_t align
, gfp_t flags
)
431 struct mem_cgroup
*old_memcg
;
434 old_memcg
= set_active_memcg(map
->memcg
);
435 ptr
= __alloc_percpu_gfp(size
, align
, flags
| __GFP_ACCOUNT
);
436 set_active_memcg(old_memcg
);
442 static void bpf_map_save_memcg(struct bpf_map
*map
)
446 static void bpf_map_release_memcg(struct bpf_map
*map
)
451 /* called from workqueue */
452 static void bpf_map_free_deferred(struct work_struct
*work
)
454 struct bpf_map
*map
= container_of(work
, struct bpf_map
, work
);
456 security_bpf_map_free(map
);
457 bpf_map_release_memcg(map
);
458 /* implementation dependent freeing */
459 map
->ops
->map_free(map
);
462 static void bpf_map_put_uref(struct bpf_map
*map
)
464 if (atomic64_dec_and_test(&map
->usercnt
)) {
465 if (map
->ops
->map_release_uref
)
466 map
->ops
->map_release_uref(map
);
470 /* decrement map refcnt and schedule it for freeing via workqueue
471 * (unrelying map implementation ops->map_free() might sleep)
473 static void __bpf_map_put(struct bpf_map
*map
, bool do_idr_lock
)
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
);
479 INIT_WORK(&map
->work
, bpf_map_free_deferred
);
480 schedule_work(&map
->work
);
484 void bpf_map_put(struct bpf_map
*map
)
486 __bpf_map_put(map
, true);
488 EXPORT_SYMBOL_GPL(bpf_map_put
);
490 void bpf_map_put_with_uref(struct bpf_map
*map
)
492 bpf_map_put_uref(map
);
496 static int bpf_map_release(struct inode
*inode
, struct file
*filp
)
498 struct bpf_map
*map
= filp
->private_data
;
500 if (map
->ops
->map_release
)
501 map
->ops
->map_release(map
, filp
);
503 bpf_map_put_with_uref(map
);
507 static fmode_t
map_get_sys_perms(struct bpf_map
*map
, struct fd f
)
509 fmode_t mode
= f
.file
->f_mode
;
511 /* Our file permissions may have been overridden by global
512 * map permissions facing syscall side.
514 if (READ_ONCE(map
->frozen
))
515 mode
&= ~FMODE_CAN_WRITE
;
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.
524 static unsigned long bpf_map_memory_footprint(const struct bpf_map
*map
)
528 size
= round_up(map
->key_size
+ bpf_map_value_size(map
), 8);
530 return round_up(map
->max_entries
* size
, PAGE_SIZE
);
533 static void bpf_map_show_fdinfo(struct seq_file
*m
, struct file
*filp
)
535 const struct bpf_map
*map
= filp
->private_data
;
536 const struct bpf_array
*array
;
537 u32 type
= 0, jited
= 0;
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
;
559 bpf_map_memory_footprint(map
),
561 READ_ONCE(map
->frozen
));
563 seq_printf(m
, "owner_prog_type:\t%u\n", type
);
564 seq_printf(m
, "owner_jited:\t%u\n", jited
);
569 static ssize_t
bpf_dummy_read(struct file
*filp
, char __user
*buf
, size_t siz
,
572 /* We need this handler such that alloc_file() enables
573 * f_mode with FMODE_CAN_READ.
578 static ssize_t
bpf_dummy_write(struct file
*filp
, const char __user
*buf
,
579 size_t siz
, loff_t
*ppos
)
581 /* We need this handler such that alloc_file() enables
582 * f_mode with FMODE_CAN_WRITE.
587 /* called for any extra memory-mapped regions (except initial) */
588 static void bpf_map_mmap_open(struct vm_area_struct
*vma
)
590 struct bpf_map
*map
= vma
->vm_file
->private_data
;
592 if (vma
->vm_flags
& VM_MAYWRITE
) {
593 mutex_lock(&map
->freeze_mutex
);
595 mutex_unlock(&map
->freeze_mutex
);
599 /* called for all unmapped memory region (including initial) */
600 static void bpf_map_mmap_close(struct vm_area_struct
*vma
)
602 struct bpf_map
*map
= vma
->vm_file
->private_data
;
604 if (vma
->vm_flags
& VM_MAYWRITE
) {
605 mutex_lock(&map
->freeze_mutex
);
607 mutex_unlock(&map
->freeze_mutex
);
611 static const struct vm_operations_struct bpf_map_default_vmops
= {
612 .open
= bpf_map_mmap_open
,
613 .close
= bpf_map_mmap_close
,
616 static int bpf_map_mmap(struct file
*filp
, struct vm_area_struct
*vma
)
618 struct bpf_map
*map
= filp
->private_data
;
621 if (!map
->ops
->map_mmap
|| map_value_has_spin_lock(map
))
624 if (!(vma
->vm_flags
& VM_SHARED
))
627 mutex_lock(&map
->freeze_mutex
);
629 if (vma
->vm_flags
& VM_WRITE
) {
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
639 if (map
->map_flags
& BPF_F_RDONLY_PROG
) {
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
;
653 err
= map
->ops
->map_mmap(map
, vma
);
657 if (vma
->vm_flags
& VM_MAYWRITE
)
660 mutex_unlock(&map
->freeze_mutex
);
664 static __poll_t
bpf_map_poll(struct file
*filp
, struct poll_table_struct
*pts
)
666 struct bpf_map
*map
= filp
->private_data
;
668 if (map
->ops
->map_poll
)
669 return map
->ops
->map_poll(map
, filp
, pts
);
674 const struct file_operations bpf_map_fops
= {
675 #ifdef CONFIG_PROC_FS
676 .show_fdinfo
= bpf_map_show_fdinfo
,
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
,
685 int bpf_map_new_fd(struct bpf_map
*map
, int flags
)
689 ret
= security_bpf_map(map
, OPEN_FMODE(flags
));
693 return anon_inode_getfd("bpf-map", &bpf_map_fops
, map
,
697 int bpf_get_file_flag(int flags
)
699 if ((flags
& BPF_F_RDONLY
) && (flags
& BPF_F_WRONLY
))
701 if (flags
& BPF_F_RDONLY
)
703 if (flags
& BPF_F_WRONLY
)
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, \
713 offsetof(union bpf_attr, CMD##_LAST_FIELD) - \
714 sizeof(attr->CMD##_LAST_FIELD)) != NULL
716 /* dst and src must have at least "size" number of bytes.
717 * Return strlen on success and < 0 on error.
719 int bpf_obj_name_cpy(char *dst
, const char *src
, unsigned int size
)
721 const char *end
= src
+ size
;
722 const char *orig_src
= src
;
724 memset(dst
, 0, size
);
725 /* Copy all isalnum(), '_' and '.' chars. */
726 while (src
< end
&& *src
) {
727 if (!isalnum(*src
) &&
728 *src
!= '_' && *src
!= '.')
733 /* No '\0' found in "size" number of bytes */
737 return src
- orig_src
;
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
)
748 static int map_check_btf(struct bpf_map
*map
, const struct btf
*btf
,
749 u32 btf_key_id
, u32 btf_value_id
)
751 const struct btf_type
*key_type
, *value_type
;
752 u32 key_size
, value_size
;
755 /* Some maps allow key to be unspecified. */
757 key_type
= btf_type_id_size(btf
, &btf_key_id
, &key_size
);
758 if (!key_type
|| key_size
!= map
->key_size
)
761 key_type
= btf_type_by_id(btf
, 0);
762 if (!map
->ops
->map_check_btf
)
766 value_type
= btf_type_id_size(btf
, &btf_value_id
, &value_size
);
767 if (!value_type
|| value_size
!= map
->value_size
)
770 map
->spin_lock_off
= btf_find_spin_lock(btf
, value_type
);
772 if (map_value_has_spin_lock(map
)) {
773 if (map
->map_flags
& BPF_F_RDONLY_PROG
)
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
)
782 if (map
->spin_lock_off
+ sizeof(struct bpf_spin_lock
) >
785 "verifier bug spin_lock_off %d value_size %d\n",
786 map
->spin_lock_off
, map
->value_size
);
791 if (map
->ops
->map_check_btf
)
792 ret
= map
->ops
->map_check_btf(map
, btf
, key_type
, value_type
);
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
)
801 int numa_node
= bpf_map_attr_numa_node(attr
);
806 err
= CHECK_ATTR(BPF_MAP_CREATE
);
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
)
814 } else if (attr
->btf_key_type_id
&& !attr
->btf_value_type_id
) {
818 f_flags
= bpf_get_file_flag(attr
->map_flags
);
822 if (numa_node
!= NUMA_NO_NODE
&&
823 ((unsigned int)numa_node
>= nr_node_ids
||
824 !node_online(numa_node
)))
827 /* find map type and init map: hashtable vs rbtree vs bloom vs ... */
828 map
= find_and_alloc_map(attr
);
832 err
= bpf_obj_name_cpy(map
->name
, attr
->map_name
,
833 sizeof(attr
->map_name
));
837 atomic64_set(&map
->refcnt
, 1);
838 atomic64_set(&map
->usercnt
, 1);
839 mutex_init(&map
->freeze_mutex
);
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
849 attr
->btf_vmlinux_value_type_id
) {
852 btf
= btf_get_by_fd(attr
->btf_fd
);
859 if (attr
->btf_value_type_id
) {
860 err
= map_check_btf(map
, btf
, attr
->btf_key_type_id
,
861 attr
->btf_value_type_id
);
866 map
->btf_key_type_id
= attr
->btf_key_type_id
;
867 map
->btf_value_type_id
= attr
->btf_value_type_id
;
868 map
->btf_vmlinux_value_type_id
=
869 attr
->btf_vmlinux_value_type_id
;
872 err
= security_bpf_map_alloc(map
);
876 err
= bpf_map_alloc_id(map
);
880 bpf_map_save_memcg(map
);
882 err
= bpf_map_new_fd(map
, f_flags
);
884 /* failed to allocate fd.
885 * bpf_map_put_with_uref() is needed because the above
886 * bpf_map_alloc_id() has published the map
887 * to the userspace and the userspace may
888 * have refcnt-ed it through BPF_MAP_GET_FD_BY_ID.
890 bpf_map_put_with_uref(map
);
897 security_bpf_map_free(map
);
900 map
->ops
->map_free(map
);
904 /* if error is returned, fd is released.
905 * On success caller should complete fd access with matching fdput()
907 struct bpf_map
*__bpf_map_get(struct fd f
)
910 return ERR_PTR(-EBADF
);
911 if (f
.file
->f_op
!= &bpf_map_fops
) {
913 return ERR_PTR(-EINVAL
);
916 return f
.file
->private_data
;
919 void bpf_map_inc(struct bpf_map
*map
)
921 atomic64_inc(&map
->refcnt
);
923 EXPORT_SYMBOL_GPL(bpf_map_inc
);
925 void bpf_map_inc_with_uref(struct bpf_map
*map
)
927 atomic64_inc(&map
->refcnt
);
928 atomic64_inc(&map
->usercnt
);
930 EXPORT_SYMBOL_GPL(bpf_map_inc_with_uref
);
932 struct bpf_map
*bpf_map_get(u32 ufd
)
934 struct fd f
= fdget(ufd
);
937 map
= __bpf_map_get(f
);
947 struct bpf_map
*bpf_map_get_with_uref(u32 ufd
)
949 struct fd f
= fdget(ufd
);
952 map
= __bpf_map_get(f
);
956 bpf_map_inc_with_uref(map
);
962 /* map_idr_lock should have been held */
963 static struct bpf_map
*__bpf_map_inc_not_zero(struct bpf_map
*map
, bool uref
)
967 refold
= atomic64_fetch_add_unless(&map
->refcnt
, 1, 0);
969 return ERR_PTR(-ENOENT
);
971 atomic64_inc(&map
->usercnt
);
976 struct bpf_map
*bpf_map_inc_not_zero(struct bpf_map
*map
)
978 spin_lock_bh(&map_idr_lock
);
979 map
= __bpf_map_inc_not_zero(map
, false);
980 spin_unlock_bh(&map_idr_lock
);
984 EXPORT_SYMBOL_GPL(bpf_map_inc_not_zero
);
986 int __weak
bpf_stackmap_copy(struct bpf_map
*map
, void *key
, void *value
)
991 static void *__bpf_copy_key(void __user
*ukey
, u64 key_size
)
994 return memdup_user(ukey
, key_size
);
997 return ERR_PTR(-EINVAL
);
1002 /* last field in 'union bpf_attr' used by this command */
1003 #define BPF_MAP_LOOKUP_ELEM_LAST_FIELD flags
1005 static int map_lookup_elem(union bpf_attr
*attr
)
1007 void __user
*ukey
= u64_to_user_ptr(attr
->key
);
1008 void __user
*uvalue
= u64_to_user_ptr(attr
->value
);
1009 int ufd
= attr
->map_fd
;
1010 struct bpf_map
*map
;
1016 if (CHECK_ATTR(BPF_MAP_LOOKUP_ELEM
))
1019 if (attr
->flags
& ~BPF_F_LOCK
)
1023 map
= __bpf_map_get(f
);
1025 return PTR_ERR(map
);
1026 if (!(map_get_sys_perms(map
, f
) & FMODE_CAN_READ
)) {
1031 if ((attr
->flags
& BPF_F_LOCK
) &&
1032 !map_value_has_spin_lock(map
)) {
1037 key
= __bpf_copy_key(ukey
, map
->key_size
);
1043 value_size
= bpf_map_value_size(map
);
1046 value
= kmalloc(value_size
, GFP_USER
| __GFP_NOWARN
);
1050 err
= bpf_map_copy_value(map
, key
, value
, attr
->flags
);
1055 if (copy_to_user(uvalue
, value
, value_size
) != 0)
1070 #define BPF_MAP_UPDATE_ELEM_LAST_FIELD flags
1072 static int map_update_elem(union bpf_attr
*attr
)
1074 void __user
*ukey
= u64_to_user_ptr(attr
->key
);
1075 void __user
*uvalue
= u64_to_user_ptr(attr
->value
);
1076 int ufd
= attr
->map_fd
;
1077 struct bpf_map
*map
;
1083 if (CHECK_ATTR(BPF_MAP_UPDATE_ELEM
))
1087 map
= __bpf_map_get(f
);
1089 return PTR_ERR(map
);
1090 if (!(map_get_sys_perms(map
, f
) & FMODE_CAN_WRITE
)) {
1095 if ((attr
->flags
& BPF_F_LOCK
) &&
1096 !map_value_has_spin_lock(map
)) {
1101 key
= __bpf_copy_key(ukey
, map
->key_size
);
1107 if (map
->map_type
== BPF_MAP_TYPE_PERCPU_HASH
||
1108 map
->map_type
== BPF_MAP_TYPE_LRU_PERCPU_HASH
||
1109 map
->map_type
== BPF_MAP_TYPE_PERCPU_ARRAY
||
1110 map
->map_type
== BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE
)
1111 value_size
= round_up(map
->value_size
, 8) * num_possible_cpus();
1113 value_size
= map
->value_size
;
1116 value
= kmalloc(value_size
, GFP_USER
| __GFP_NOWARN
);
1121 if (copy_from_user(value
, uvalue
, value_size
) != 0)
1124 err
= bpf_map_update_value(map
, f
, key
, value
, attr
->flags
);
1135 #define BPF_MAP_DELETE_ELEM_LAST_FIELD key
1137 static int map_delete_elem(union bpf_attr
*attr
)
1139 void __user
*ukey
= u64_to_user_ptr(attr
->key
);
1140 int ufd
= attr
->map_fd
;
1141 struct bpf_map
*map
;
1146 if (CHECK_ATTR(BPF_MAP_DELETE_ELEM
))
1150 map
= __bpf_map_get(f
);
1152 return PTR_ERR(map
);
1153 if (!(map_get_sys_perms(map
, f
) & FMODE_CAN_WRITE
)) {
1158 key
= __bpf_copy_key(ukey
, map
->key_size
);
1164 if (bpf_map_is_dev_bound(map
)) {
1165 err
= bpf_map_offload_delete_elem(map
, key
);
1167 } else if (IS_FD_PROG_ARRAY(map
) ||
1168 map
->map_type
== BPF_MAP_TYPE_STRUCT_OPS
) {
1169 /* These maps require sleepable context */
1170 err
= map
->ops
->map_delete_elem(map
, key
);
1174 bpf_disable_instrumentation();
1176 err
= map
->ops
->map_delete_elem(map
, key
);
1178 bpf_enable_instrumentation();
1179 maybe_wait_bpf_programs(map
);
1187 /* last field in 'union bpf_attr' used by this command */
1188 #define BPF_MAP_GET_NEXT_KEY_LAST_FIELD next_key
1190 static int map_get_next_key(union bpf_attr
*attr
)
1192 void __user
*ukey
= u64_to_user_ptr(attr
->key
);
1193 void __user
*unext_key
= u64_to_user_ptr(attr
->next_key
);
1194 int ufd
= attr
->map_fd
;
1195 struct bpf_map
*map
;
1196 void *key
, *next_key
;
1200 if (CHECK_ATTR(BPF_MAP_GET_NEXT_KEY
))
1204 map
= __bpf_map_get(f
);
1206 return PTR_ERR(map
);
1207 if (!(map_get_sys_perms(map
, f
) & FMODE_CAN_READ
)) {
1213 key
= __bpf_copy_key(ukey
, map
->key_size
);
1223 next_key
= kmalloc(map
->key_size
, GFP_USER
);
1227 if (bpf_map_is_dev_bound(map
)) {
1228 err
= bpf_map_offload_get_next_key(map
, key
, next_key
);
1233 err
= map
->ops
->map_get_next_key(map
, key
, next_key
);
1240 if (copy_to_user(unext_key
, next_key
, map
->key_size
) != 0)
1254 int generic_map_delete_batch(struct bpf_map
*map
,
1255 const union bpf_attr
*attr
,
1256 union bpf_attr __user
*uattr
)
1258 void __user
*keys
= u64_to_user_ptr(attr
->batch
.keys
);
1263 if (attr
->batch
.elem_flags
& ~BPF_F_LOCK
)
1266 if ((attr
->batch
.elem_flags
& BPF_F_LOCK
) &&
1267 !map_value_has_spin_lock(map
)) {
1271 max_count
= attr
->batch
.count
;
1275 key
= kmalloc(map
->key_size
, GFP_USER
| __GFP_NOWARN
);
1279 for (cp
= 0; cp
< max_count
; cp
++) {
1281 if (copy_from_user(key
, keys
+ cp
* map
->key_size
,
1285 if (bpf_map_is_dev_bound(map
)) {
1286 err
= bpf_map_offload_delete_elem(map
, key
);
1290 bpf_disable_instrumentation();
1292 err
= map
->ops
->map_delete_elem(map
, key
);
1294 bpf_enable_instrumentation();
1295 maybe_wait_bpf_programs(map
);
1299 if (copy_to_user(&uattr
->batch
.count
, &cp
, sizeof(cp
)))
1306 int generic_map_update_batch(struct bpf_map
*map
,
1307 const union bpf_attr
*attr
,
1308 union bpf_attr __user
*uattr
)
1310 void __user
*values
= u64_to_user_ptr(attr
->batch
.values
);
1311 void __user
*keys
= u64_to_user_ptr(attr
->batch
.keys
);
1312 u32 value_size
, cp
, max_count
;
1313 int ufd
= attr
->map_fd
;
1319 if (attr
->batch
.elem_flags
& ~BPF_F_LOCK
)
1322 if ((attr
->batch
.elem_flags
& BPF_F_LOCK
) &&
1323 !map_value_has_spin_lock(map
)) {
1327 value_size
= bpf_map_value_size(map
);
1329 max_count
= attr
->batch
.count
;
1333 key
= kmalloc(map
->key_size
, GFP_USER
| __GFP_NOWARN
);
1337 value
= kmalloc(value_size
, GFP_USER
| __GFP_NOWARN
);
1343 for (cp
= 0; cp
< max_count
; cp
++) {
1345 if (copy_from_user(key
, keys
+ cp
* map
->key_size
,
1347 copy_from_user(value
, values
+ cp
* value_size
, value_size
))
1350 err
= bpf_map_update_value(map
, f
, key
, value
,
1351 attr
->batch
.elem_flags
);
1357 if (copy_to_user(&uattr
->batch
.count
, &cp
, sizeof(cp
)))
1365 #define MAP_LOOKUP_RETRIES 3
1367 int generic_map_lookup_batch(struct bpf_map
*map
,
1368 const union bpf_attr
*attr
,
1369 union bpf_attr __user
*uattr
)
1371 void __user
*uobatch
= u64_to_user_ptr(attr
->batch
.out_batch
);
1372 void __user
*ubatch
= u64_to_user_ptr(attr
->batch
.in_batch
);
1373 void __user
*values
= u64_to_user_ptr(attr
->batch
.values
);
1374 void __user
*keys
= u64_to_user_ptr(attr
->batch
.keys
);
1375 void *buf
, *buf_prevkey
, *prev_key
, *key
, *value
;
1376 int err
, retry
= MAP_LOOKUP_RETRIES
;
1377 u32 value_size
, cp
, max_count
;
1379 if (attr
->batch
.elem_flags
& ~BPF_F_LOCK
)
1382 if ((attr
->batch
.elem_flags
& BPF_F_LOCK
) &&
1383 !map_value_has_spin_lock(map
))
1386 value_size
= bpf_map_value_size(map
);
1388 max_count
= attr
->batch
.count
;
1392 if (put_user(0, &uattr
->batch
.count
))
1395 buf_prevkey
= kmalloc(map
->key_size
, GFP_USER
| __GFP_NOWARN
);
1399 buf
= kmalloc(map
->key_size
+ value_size
, GFP_USER
| __GFP_NOWARN
);
1407 if (ubatch
&& copy_from_user(buf_prevkey
, ubatch
, map
->key_size
))
1410 value
= key
+ map
->key_size
;
1412 prev_key
= buf_prevkey
;
1414 for (cp
= 0; cp
< max_count
;) {
1416 err
= map
->ops
->map_get_next_key(map
, prev_key
, key
);
1420 err
= bpf_map_copy_value(map
, key
, value
,
1421 attr
->batch
.elem_flags
);
1423 if (err
== -ENOENT
) {
1435 if (copy_to_user(keys
+ cp
* map
->key_size
, key
,
1440 if (copy_to_user(values
+ cp
* value_size
, value
, value_size
)) {
1446 prev_key
= buf_prevkey
;
1448 swap(prev_key
, key
);
1449 retry
= MAP_LOOKUP_RETRIES
;
1456 if ((copy_to_user(&uattr
->batch
.count
, &cp
, sizeof(cp
)) ||
1457 (cp
&& copy_to_user(uobatch
, prev_key
, map
->key_size
))))
1466 #define BPF_MAP_LOOKUP_AND_DELETE_ELEM_LAST_FIELD value
1468 static int map_lookup_and_delete_elem(union bpf_attr
*attr
)
1470 void __user
*ukey
= u64_to_user_ptr(attr
->key
);
1471 void __user
*uvalue
= u64_to_user_ptr(attr
->value
);
1472 int ufd
= attr
->map_fd
;
1473 struct bpf_map
*map
;
1479 if (CHECK_ATTR(BPF_MAP_LOOKUP_AND_DELETE_ELEM
))
1483 map
= __bpf_map_get(f
);
1485 return PTR_ERR(map
);
1486 if (!(map_get_sys_perms(map
, f
) & FMODE_CAN_READ
) ||
1487 !(map_get_sys_perms(map
, f
) & FMODE_CAN_WRITE
)) {
1492 key
= __bpf_copy_key(ukey
, map
->key_size
);
1498 value_size
= map
->value_size
;
1501 value
= kmalloc(value_size
, GFP_USER
| __GFP_NOWARN
);
1505 if (map
->map_type
== BPF_MAP_TYPE_QUEUE
||
1506 map
->map_type
== BPF_MAP_TYPE_STACK
) {
1507 err
= map
->ops
->map_pop_elem(map
, value
);
1515 if (copy_to_user(uvalue
, value
, value_size
) != 0) {
1531 #define BPF_MAP_FREEZE_LAST_FIELD map_fd
1533 static int map_freeze(const union bpf_attr
*attr
)
1535 int err
= 0, ufd
= attr
->map_fd
;
1536 struct bpf_map
*map
;
1539 if (CHECK_ATTR(BPF_MAP_FREEZE
))
1543 map
= __bpf_map_get(f
);
1545 return PTR_ERR(map
);
1547 if (map
->map_type
== BPF_MAP_TYPE_STRUCT_OPS
) {
1552 mutex_lock(&map
->freeze_mutex
);
1554 if (map
->writecnt
) {
1558 if (READ_ONCE(map
->frozen
)) {
1562 if (!bpf_capable()) {
1567 WRITE_ONCE(map
->frozen
, true);
1569 mutex_unlock(&map
->freeze_mutex
);
1574 static const struct bpf_prog_ops
* const bpf_prog_types
[] = {
1575 #define BPF_PROG_TYPE(_id, _name, prog_ctx_type, kern_ctx_type) \
1576 [_id] = & _name ## _prog_ops,
1577 #define BPF_MAP_TYPE(_id, _ops)
1578 #define BPF_LINK_TYPE(_id, _name)
1579 #include <linux/bpf_types.h>
1580 #undef BPF_PROG_TYPE
1582 #undef BPF_LINK_TYPE
1585 static int find_prog_type(enum bpf_prog_type type
, struct bpf_prog
*prog
)
1587 const struct bpf_prog_ops
*ops
;
1589 if (type
>= ARRAY_SIZE(bpf_prog_types
))
1591 type
= array_index_nospec(type
, ARRAY_SIZE(bpf_prog_types
));
1592 ops
= bpf_prog_types
[type
];
1596 if (!bpf_prog_is_dev_bound(prog
->aux
))
1597 prog
->aux
->ops
= ops
;
1599 prog
->aux
->ops
= &bpf_offload_prog_ops
;
1610 static const char * const bpf_audit_str
[BPF_AUDIT_MAX
] = {
1611 [BPF_AUDIT_LOAD
] = "LOAD",
1612 [BPF_AUDIT_UNLOAD
] = "UNLOAD",
1615 static void bpf_audit_prog(const struct bpf_prog
*prog
, unsigned int op
)
1617 struct audit_context
*ctx
= NULL
;
1618 struct audit_buffer
*ab
;
1620 if (WARN_ON_ONCE(op
>= BPF_AUDIT_MAX
))
1622 if (audit_enabled
== AUDIT_OFF
)
1624 if (op
== BPF_AUDIT_LOAD
)
1625 ctx
= audit_context();
1626 ab
= audit_log_start(ctx
, GFP_ATOMIC
, AUDIT_BPF
);
1629 audit_log_format(ab
, "prog-id=%u op=%s",
1630 prog
->aux
->id
, bpf_audit_str
[op
]);
1634 static int bpf_prog_alloc_id(struct bpf_prog
*prog
)
1638 idr_preload(GFP_KERNEL
);
1639 spin_lock_bh(&prog_idr_lock
);
1640 id
= idr_alloc_cyclic(&prog_idr
, prog
, 1, INT_MAX
, GFP_ATOMIC
);
1643 spin_unlock_bh(&prog_idr_lock
);
1646 /* id is in [1, INT_MAX) */
1647 if (WARN_ON_ONCE(!id
))
1650 return id
> 0 ? 0 : id
;
1653 void bpf_prog_free_id(struct bpf_prog
*prog
, bool do_idr_lock
)
1655 /* cBPF to eBPF migrations are currently not in the idr store.
1656 * Offloaded programs are removed from the store when their device
1657 * disappears - even if someone grabs an fd to them they are unusable,
1658 * simply waiting for refcnt to drop to be freed.
1664 spin_lock_bh(&prog_idr_lock
);
1666 __acquire(&prog_idr_lock
);
1668 idr_remove(&prog_idr
, prog
->aux
->id
);
1672 spin_unlock_bh(&prog_idr_lock
);
1674 __release(&prog_idr_lock
);
1677 static void __bpf_prog_put_rcu(struct rcu_head
*rcu
)
1679 struct bpf_prog_aux
*aux
= container_of(rcu
, struct bpf_prog_aux
, rcu
);
1681 kvfree(aux
->func_info
);
1682 kfree(aux
->func_info_aux
);
1683 free_uid(aux
->user
);
1684 security_bpf_prog_free(aux
);
1685 bpf_prog_free(aux
->prog
);
1688 static void __bpf_prog_put_noref(struct bpf_prog
*prog
, bool deferred
)
1690 bpf_prog_kallsyms_del_all(prog
);
1691 btf_put(prog
->aux
->btf
);
1692 bpf_prog_free_linfo(prog
);
1693 if (prog
->aux
->attach_btf
)
1694 btf_put(prog
->aux
->attach_btf
);
1697 if (prog
->aux
->sleepable
)
1698 call_rcu_tasks_trace(&prog
->aux
->rcu
, __bpf_prog_put_rcu
);
1700 call_rcu(&prog
->aux
->rcu
, __bpf_prog_put_rcu
);
1702 __bpf_prog_put_rcu(&prog
->aux
->rcu
);
1706 static void __bpf_prog_put(struct bpf_prog
*prog
, bool do_idr_lock
)
1708 if (atomic64_dec_and_test(&prog
->aux
->refcnt
)) {
1709 perf_event_bpf_event(prog
, PERF_BPF_EVENT_PROG_UNLOAD
, 0);
1710 bpf_audit_prog(prog
, BPF_AUDIT_UNLOAD
);
1711 /* bpf_prog_free_id() must be called first */
1712 bpf_prog_free_id(prog
, do_idr_lock
);
1713 __bpf_prog_put_noref(prog
, true);
1717 void bpf_prog_put(struct bpf_prog
*prog
)
1719 __bpf_prog_put(prog
, true);
1721 EXPORT_SYMBOL_GPL(bpf_prog_put
);
1723 static int bpf_prog_release(struct inode
*inode
, struct file
*filp
)
1725 struct bpf_prog
*prog
= filp
->private_data
;
1731 static void bpf_prog_get_stats(const struct bpf_prog
*prog
,
1732 struct bpf_prog_stats
*stats
)
1734 u64 nsecs
= 0, cnt
= 0;
1737 for_each_possible_cpu(cpu
) {
1738 const struct bpf_prog_stats
*st
;
1742 st
= per_cpu_ptr(prog
->aux
->stats
, cpu
);
1744 start
= u64_stats_fetch_begin_irq(&st
->syncp
);
1747 } while (u64_stats_fetch_retry_irq(&st
->syncp
, start
));
1751 stats
->nsecs
= nsecs
;
1755 #ifdef CONFIG_PROC_FS
1756 static void bpf_prog_show_fdinfo(struct seq_file
*m
, struct file
*filp
)
1758 const struct bpf_prog
*prog
= filp
->private_data
;
1759 char prog_tag
[sizeof(prog
->tag
) * 2 + 1] = { };
1760 struct bpf_prog_stats stats
;
1762 bpf_prog_get_stats(prog
, &stats
);
1763 bin2hex(prog_tag
, prog
->tag
, sizeof(prog
->tag
));
1770 "run_time_ns:\t%llu\n"
1775 prog
->pages
* 1ULL << PAGE_SHIFT
,
1782 const struct file_operations bpf_prog_fops
= {
1783 #ifdef CONFIG_PROC_FS
1784 .show_fdinfo
= bpf_prog_show_fdinfo
,
1786 .release
= bpf_prog_release
,
1787 .read
= bpf_dummy_read
,
1788 .write
= bpf_dummy_write
,
1791 int bpf_prog_new_fd(struct bpf_prog
*prog
)
1795 ret
= security_bpf_prog(prog
);
1799 return anon_inode_getfd("bpf-prog", &bpf_prog_fops
, prog
,
1800 O_RDWR
| O_CLOEXEC
);
1803 static struct bpf_prog
*____bpf_prog_get(struct fd f
)
1806 return ERR_PTR(-EBADF
);
1807 if (f
.file
->f_op
!= &bpf_prog_fops
) {
1809 return ERR_PTR(-EINVAL
);
1812 return f
.file
->private_data
;
1815 void bpf_prog_add(struct bpf_prog
*prog
, int i
)
1817 atomic64_add(i
, &prog
->aux
->refcnt
);
1819 EXPORT_SYMBOL_GPL(bpf_prog_add
);
1821 void bpf_prog_sub(struct bpf_prog
*prog
, int i
)
1823 /* Only to be used for undoing previous bpf_prog_add() in some
1824 * error path. We still know that another entity in our call
1825 * path holds a reference to the program, thus atomic_sub() can
1826 * be safely used in such cases!
1828 WARN_ON(atomic64_sub_return(i
, &prog
->aux
->refcnt
) == 0);
1830 EXPORT_SYMBOL_GPL(bpf_prog_sub
);
1832 void bpf_prog_inc(struct bpf_prog
*prog
)
1834 atomic64_inc(&prog
->aux
->refcnt
);
1836 EXPORT_SYMBOL_GPL(bpf_prog_inc
);
1838 /* prog_idr_lock should have been held */
1839 struct bpf_prog
*bpf_prog_inc_not_zero(struct bpf_prog
*prog
)
1843 refold
= atomic64_fetch_add_unless(&prog
->aux
->refcnt
, 1, 0);
1846 return ERR_PTR(-ENOENT
);
1850 EXPORT_SYMBOL_GPL(bpf_prog_inc_not_zero
);
1852 bool bpf_prog_get_ok(struct bpf_prog
*prog
,
1853 enum bpf_prog_type
*attach_type
, bool attach_drv
)
1855 /* not an attachment, just a refcount inc, always allow */
1859 if (prog
->type
!= *attach_type
)
1861 if (bpf_prog_is_dev_bound(prog
->aux
) && !attach_drv
)
1867 static struct bpf_prog
*__bpf_prog_get(u32 ufd
, enum bpf_prog_type
*attach_type
,
1870 struct fd f
= fdget(ufd
);
1871 struct bpf_prog
*prog
;
1873 prog
= ____bpf_prog_get(f
);
1876 if (!bpf_prog_get_ok(prog
, attach_type
, attach_drv
)) {
1877 prog
= ERR_PTR(-EINVAL
);
1887 struct bpf_prog
*bpf_prog_get(u32 ufd
)
1889 return __bpf_prog_get(ufd
, NULL
, false);
1892 struct bpf_prog
*bpf_prog_get_type_dev(u32 ufd
, enum bpf_prog_type type
,
1895 return __bpf_prog_get(ufd
, &type
, attach_drv
);
1897 EXPORT_SYMBOL_GPL(bpf_prog_get_type_dev
);
1899 /* Initially all BPF programs could be loaded w/o specifying
1900 * expected_attach_type. Later for some of them specifying expected_attach_type
1901 * at load time became required so that program could be validated properly.
1902 * Programs of types that are allowed to be loaded both w/ and w/o (for
1903 * backward compatibility) expected_attach_type, should have the default attach
1904 * type assigned to expected_attach_type for the latter case, so that it can be
1905 * validated later at attach time.
1907 * bpf_prog_load_fixup_attach_type() sets expected_attach_type in @attr if
1908 * prog type requires it but has some attach types that have to be backward
1911 static void bpf_prog_load_fixup_attach_type(union bpf_attr
*attr
)
1913 switch (attr
->prog_type
) {
1914 case BPF_PROG_TYPE_CGROUP_SOCK
:
1915 /* Unfortunately BPF_ATTACH_TYPE_UNSPEC enumeration doesn't
1916 * exist so checking for non-zero is the way to go here.
1918 if (!attr
->expected_attach_type
)
1919 attr
->expected_attach_type
=
1920 BPF_CGROUP_INET_SOCK_CREATE
;
1926 bpf_prog_load_check_attach(enum bpf_prog_type prog_type
,
1927 enum bpf_attach_type expected_attach_type
,
1928 struct btf
*attach_btf
, u32 btf_id
,
1929 struct bpf_prog
*dst_prog
)
1932 if (btf_id
> BTF_MAX_TYPE
)
1935 if (!attach_btf
&& !dst_prog
)
1938 switch (prog_type
) {
1939 case BPF_PROG_TYPE_TRACING
:
1940 case BPF_PROG_TYPE_LSM
:
1941 case BPF_PROG_TYPE_STRUCT_OPS
:
1942 case BPF_PROG_TYPE_EXT
:
1949 if (attach_btf
&& (!btf_id
|| dst_prog
))
1952 if (dst_prog
&& prog_type
!= BPF_PROG_TYPE_TRACING
&&
1953 prog_type
!= BPF_PROG_TYPE_EXT
)
1956 switch (prog_type
) {
1957 case BPF_PROG_TYPE_CGROUP_SOCK
:
1958 switch (expected_attach_type
) {
1959 case BPF_CGROUP_INET_SOCK_CREATE
:
1960 case BPF_CGROUP_INET_SOCK_RELEASE
:
1961 case BPF_CGROUP_INET4_POST_BIND
:
1962 case BPF_CGROUP_INET6_POST_BIND
:
1967 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR
:
1968 switch (expected_attach_type
) {
1969 case BPF_CGROUP_INET4_BIND
:
1970 case BPF_CGROUP_INET6_BIND
:
1971 case BPF_CGROUP_INET4_CONNECT
:
1972 case BPF_CGROUP_INET6_CONNECT
:
1973 case BPF_CGROUP_INET4_GETPEERNAME
:
1974 case BPF_CGROUP_INET6_GETPEERNAME
:
1975 case BPF_CGROUP_INET4_GETSOCKNAME
:
1976 case BPF_CGROUP_INET6_GETSOCKNAME
:
1977 case BPF_CGROUP_UDP4_SENDMSG
:
1978 case BPF_CGROUP_UDP6_SENDMSG
:
1979 case BPF_CGROUP_UDP4_RECVMSG
:
1980 case BPF_CGROUP_UDP6_RECVMSG
:
1985 case BPF_PROG_TYPE_CGROUP_SKB
:
1986 switch (expected_attach_type
) {
1987 case BPF_CGROUP_INET_INGRESS
:
1988 case BPF_CGROUP_INET_EGRESS
:
1993 case BPF_PROG_TYPE_CGROUP_SOCKOPT
:
1994 switch (expected_attach_type
) {
1995 case BPF_CGROUP_SETSOCKOPT
:
1996 case BPF_CGROUP_GETSOCKOPT
:
2001 case BPF_PROG_TYPE_SK_LOOKUP
:
2002 if (expected_attach_type
== BPF_SK_LOOKUP
)
2005 case BPF_PROG_TYPE_EXT
:
2006 if (expected_attach_type
)
2014 static bool is_net_admin_prog_type(enum bpf_prog_type prog_type
)
2016 switch (prog_type
) {
2017 case BPF_PROG_TYPE_SCHED_CLS
:
2018 case BPF_PROG_TYPE_SCHED_ACT
:
2019 case BPF_PROG_TYPE_XDP
:
2020 case BPF_PROG_TYPE_LWT_IN
:
2021 case BPF_PROG_TYPE_LWT_OUT
:
2022 case BPF_PROG_TYPE_LWT_XMIT
:
2023 case BPF_PROG_TYPE_LWT_SEG6LOCAL
:
2024 case BPF_PROG_TYPE_SK_SKB
:
2025 case BPF_PROG_TYPE_SK_MSG
:
2026 case BPF_PROG_TYPE_LIRC_MODE2
:
2027 case BPF_PROG_TYPE_FLOW_DISSECTOR
:
2028 case BPF_PROG_TYPE_CGROUP_DEVICE
:
2029 case BPF_PROG_TYPE_CGROUP_SOCK
:
2030 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR
:
2031 case BPF_PROG_TYPE_CGROUP_SOCKOPT
:
2032 case BPF_PROG_TYPE_CGROUP_SYSCTL
:
2033 case BPF_PROG_TYPE_SOCK_OPS
:
2034 case BPF_PROG_TYPE_EXT
: /* extends any prog */
2036 case BPF_PROG_TYPE_CGROUP_SKB
:
2038 case BPF_PROG_TYPE_SK_REUSEPORT
:
2039 /* equivalent to SOCKET_FILTER. need CAP_BPF only */
2045 static bool is_perfmon_prog_type(enum bpf_prog_type prog_type
)
2047 switch (prog_type
) {
2048 case BPF_PROG_TYPE_KPROBE
:
2049 case BPF_PROG_TYPE_TRACEPOINT
:
2050 case BPF_PROG_TYPE_PERF_EVENT
:
2051 case BPF_PROG_TYPE_RAW_TRACEPOINT
:
2052 case BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE
:
2053 case BPF_PROG_TYPE_TRACING
:
2054 case BPF_PROG_TYPE_LSM
:
2055 case BPF_PROG_TYPE_STRUCT_OPS
: /* has access to struct sock */
2056 case BPF_PROG_TYPE_EXT
: /* extends any prog */
2063 /* last field in 'union bpf_attr' used by this command */
2064 #define BPF_PROG_LOAD_LAST_FIELD attach_prog_fd
2066 static int bpf_prog_load(union bpf_attr
*attr
, union bpf_attr __user
*uattr
)
2068 enum bpf_prog_type type
= attr
->prog_type
;
2069 struct bpf_prog
*prog
, *dst_prog
= NULL
;
2070 struct btf
*attach_btf
= NULL
;
2075 if (CHECK_ATTR(BPF_PROG_LOAD
))
2078 if (attr
->prog_flags
& ~(BPF_F_STRICT_ALIGNMENT
|
2079 BPF_F_ANY_ALIGNMENT
|
2080 BPF_F_TEST_STATE_FREQ
|
2082 BPF_F_TEST_RND_HI32
))
2085 if (!IS_ENABLED(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
) &&
2086 (attr
->prog_flags
& BPF_F_ANY_ALIGNMENT
) &&
2090 /* copy eBPF program license from user space */
2091 if (strncpy_from_user(license
, u64_to_user_ptr(attr
->license
),
2092 sizeof(license
) - 1) < 0)
2094 license
[sizeof(license
) - 1] = 0;
2096 /* eBPF programs must be GPL compatible to use GPL-ed functions */
2097 is_gpl
= license_is_gpl_compatible(license
);
2099 if (attr
->insn_cnt
== 0 ||
2100 attr
->insn_cnt
> (bpf_capable() ? BPF_COMPLEXITY_LIMIT_INSNS
: BPF_MAXINSNS
))
2102 if (type
!= BPF_PROG_TYPE_SOCKET_FILTER
&&
2103 type
!= BPF_PROG_TYPE_CGROUP_SKB
&&
2107 if (is_net_admin_prog_type(type
) && !capable(CAP_NET_ADMIN
) && !capable(CAP_SYS_ADMIN
))
2109 if (is_perfmon_prog_type(type
) && !perfmon_capable())
2112 /* attach_prog_fd/attach_btf_obj_fd can specify fd of either bpf_prog
2113 * or btf, we need to check which one it is
2115 if (attr
->attach_prog_fd
) {
2116 dst_prog
= bpf_prog_get(attr
->attach_prog_fd
);
2117 if (IS_ERR(dst_prog
)) {
2119 attach_btf
= btf_get_by_fd(attr
->attach_btf_obj_fd
);
2120 if (IS_ERR(attach_btf
))
2122 if (!btf_is_kernel(attach_btf
)) {
2123 /* attaching through specifying bpf_prog's BTF
2124 * objects directly might be supported eventually
2126 btf_put(attach_btf
);
2130 } else if (attr
->attach_btf_id
) {
2131 /* fall back to vmlinux BTF, if BTF type ID is specified */
2132 attach_btf
= bpf_get_btf_vmlinux();
2133 if (IS_ERR(attach_btf
))
2134 return PTR_ERR(attach_btf
);
2137 btf_get(attach_btf
);
2140 bpf_prog_load_fixup_attach_type(attr
);
2141 if (bpf_prog_load_check_attach(type
, attr
->expected_attach_type
,
2142 attach_btf
, attr
->attach_btf_id
,
2145 bpf_prog_put(dst_prog
);
2147 btf_put(attach_btf
);
2151 /* plain bpf_prog allocation */
2152 prog
= bpf_prog_alloc(bpf_prog_size(attr
->insn_cnt
), GFP_USER
);
2155 bpf_prog_put(dst_prog
);
2157 btf_put(attach_btf
);
2161 prog
->expected_attach_type
= attr
->expected_attach_type
;
2162 prog
->aux
->attach_btf
= attach_btf
;
2163 prog
->aux
->attach_btf_id
= attr
->attach_btf_id
;
2164 prog
->aux
->dst_prog
= dst_prog
;
2165 prog
->aux
->offload_requested
= !!attr
->prog_ifindex
;
2166 prog
->aux
->sleepable
= attr
->prog_flags
& BPF_F_SLEEPABLE
;
2168 err
= security_bpf_prog_alloc(prog
->aux
);
2172 prog
->aux
->user
= get_current_user();
2173 prog
->len
= attr
->insn_cnt
;
2176 if (copy_from_user(prog
->insns
, u64_to_user_ptr(attr
->insns
),
2177 bpf_prog_insn_size(prog
)) != 0)
2180 prog
->orig_prog
= NULL
;
2183 atomic64_set(&prog
->aux
->refcnt
, 1);
2184 prog
->gpl_compatible
= is_gpl
? 1 : 0;
2186 if (bpf_prog_is_dev_bound(prog
->aux
)) {
2187 err
= bpf_prog_offload_init(prog
, attr
);
2192 /* find program type: socket_filter vs tracing_filter */
2193 err
= find_prog_type(type
, prog
);
2197 prog
->aux
->load_time
= ktime_get_boottime_ns();
2198 err
= bpf_obj_name_cpy(prog
->aux
->name
, attr
->prog_name
,
2199 sizeof(attr
->prog_name
));
2203 /* run eBPF verifier */
2204 err
= bpf_check(&prog
, attr
, uattr
);
2206 goto free_used_maps
;
2208 prog
= bpf_prog_select_runtime(prog
, &err
);
2210 goto free_used_maps
;
2212 err
= bpf_prog_alloc_id(prog
);
2214 goto free_used_maps
;
2216 /* Upon success of bpf_prog_alloc_id(), the BPF prog is
2217 * effectively publicly exposed. However, retrieving via
2218 * bpf_prog_get_fd_by_id() will take another reference,
2219 * therefore it cannot be gone underneath us.
2221 * Only for the time /after/ successful bpf_prog_new_fd()
2222 * and before returning to userspace, we might just hold
2223 * one reference and any parallel close on that fd could
2224 * rip everything out. Hence, below notifications must
2225 * happen before bpf_prog_new_fd().
2227 * Also, any failure handling from this point onwards must
2228 * be using bpf_prog_put() given the program is exposed.
2230 bpf_prog_kallsyms_add(prog
);
2231 perf_event_bpf_event(prog
, PERF_BPF_EVENT_PROG_LOAD
, 0);
2232 bpf_audit_prog(prog
, BPF_AUDIT_LOAD
);
2234 err
= bpf_prog_new_fd(prog
);
2240 /* In case we have subprogs, we need to wait for a grace
2241 * period before we can tear down JIT memory since symbols
2242 * are already exposed under kallsyms.
2244 __bpf_prog_put_noref(prog
, prog
->aux
->func_cnt
);
2247 free_uid(prog
->aux
->user
);
2248 security_bpf_prog_free(prog
->aux
);
2250 if (prog
->aux
->attach_btf
)
2251 btf_put(prog
->aux
->attach_btf
);
2252 bpf_prog_free(prog
);
2256 #define BPF_OBJ_LAST_FIELD file_flags
2258 static int bpf_obj_pin(const union bpf_attr
*attr
)
2260 if (CHECK_ATTR(BPF_OBJ
) || attr
->file_flags
!= 0)
2263 return bpf_obj_pin_user(attr
->bpf_fd
, u64_to_user_ptr(attr
->pathname
));
2266 static int bpf_obj_get(const union bpf_attr
*attr
)
2268 if (CHECK_ATTR(BPF_OBJ
) || attr
->bpf_fd
!= 0 ||
2269 attr
->file_flags
& ~BPF_OBJ_FLAG_MASK
)
2272 return bpf_obj_get_user(u64_to_user_ptr(attr
->pathname
),
2276 void bpf_link_init(struct bpf_link
*link
, enum bpf_link_type type
,
2277 const struct bpf_link_ops
*ops
, struct bpf_prog
*prog
)
2279 atomic64_set(&link
->refcnt
, 1);
2286 static void bpf_link_free_id(int id
)
2291 spin_lock_bh(&link_idr_lock
);
2292 idr_remove(&link_idr
, id
);
2293 spin_unlock_bh(&link_idr_lock
);
2296 /* Clean up bpf_link and corresponding anon_inode file and FD. After
2297 * anon_inode is created, bpf_link can't be just kfree()'d due to deferred
2298 * anon_inode's release() call. This helper marksbpf_link as
2299 * defunct, releases anon_inode file and puts reserved FD. bpf_prog's refcnt
2300 * is not decremented, it's the responsibility of a calling code that failed
2301 * to complete bpf_link initialization.
2303 void bpf_link_cleanup(struct bpf_link_primer
*primer
)
2305 primer
->link
->prog
= NULL
;
2306 bpf_link_free_id(primer
->id
);
2308 put_unused_fd(primer
->fd
);
2311 void bpf_link_inc(struct bpf_link
*link
)
2313 atomic64_inc(&link
->refcnt
);
2316 /* bpf_link_free is guaranteed to be called from process context */
2317 static void bpf_link_free(struct bpf_link
*link
)
2319 bpf_link_free_id(link
->id
);
2321 /* detach BPF program, clean up used resources */
2322 link
->ops
->release(link
);
2323 bpf_prog_put(link
->prog
);
2325 /* free bpf_link and its containing memory */
2326 link
->ops
->dealloc(link
);
2329 static void bpf_link_put_deferred(struct work_struct
*work
)
2331 struct bpf_link
*link
= container_of(work
, struct bpf_link
, work
);
2333 bpf_link_free(link
);
2336 /* bpf_link_put can be called from atomic context, but ensures that resources
2337 * are freed from process context
2339 void bpf_link_put(struct bpf_link
*link
)
2341 if (!atomic64_dec_and_test(&link
->refcnt
))
2345 INIT_WORK(&link
->work
, bpf_link_put_deferred
);
2346 schedule_work(&link
->work
);
2348 bpf_link_free(link
);
2352 static int bpf_link_release(struct inode
*inode
, struct file
*filp
)
2354 struct bpf_link
*link
= filp
->private_data
;
2360 #ifdef CONFIG_PROC_FS
2361 #define BPF_PROG_TYPE(_id, _name, prog_ctx_type, kern_ctx_type)
2362 #define BPF_MAP_TYPE(_id, _ops)
2363 #define BPF_LINK_TYPE(_id, _name) [_id] = #_name,
2364 static const char *bpf_link_type_strs
[] = {
2365 [BPF_LINK_TYPE_UNSPEC
] = "<invalid>",
2366 #include <linux/bpf_types.h>
2368 #undef BPF_PROG_TYPE
2370 #undef BPF_LINK_TYPE
2372 static void bpf_link_show_fdinfo(struct seq_file
*m
, struct file
*filp
)
2374 const struct bpf_link
*link
= filp
->private_data
;
2375 const struct bpf_prog
*prog
= link
->prog
;
2376 char prog_tag
[sizeof(prog
->tag
) * 2 + 1] = { };
2378 bin2hex(prog_tag
, prog
->tag
, sizeof(prog
->tag
));
2384 bpf_link_type_strs
[link
->type
],
2388 if (link
->ops
->show_fdinfo
)
2389 link
->ops
->show_fdinfo(link
, m
);
2393 static const struct file_operations bpf_link_fops
= {
2394 #ifdef CONFIG_PROC_FS
2395 .show_fdinfo
= bpf_link_show_fdinfo
,
2397 .release
= bpf_link_release
,
2398 .read
= bpf_dummy_read
,
2399 .write
= bpf_dummy_write
,
2402 static int bpf_link_alloc_id(struct bpf_link
*link
)
2406 idr_preload(GFP_KERNEL
);
2407 spin_lock_bh(&link_idr_lock
);
2408 id
= idr_alloc_cyclic(&link_idr
, link
, 1, INT_MAX
, GFP_ATOMIC
);
2409 spin_unlock_bh(&link_idr_lock
);
2415 /* Prepare bpf_link to be exposed to user-space by allocating anon_inode file,
2416 * reserving unused FD and allocating ID from link_idr. This is to be paired
2417 * with bpf_link_settle() to install FD and ID and expose bpf_link to
2418 * user-space, if bpf_link is successfully attached. If not, bpf_link and
2419 * pre-allocated resources are to be freed with bpf_cleanup() call. All the
2420 * transient state is passed around in struct bpf_link_primer.
2421 * This is preferred way to create and initialize bpf_link, especially when
2422 * there are complicated and expensive operations inbetween creating bpf_link
2423 * itself and attaching it to BPF hook. By using bpf_link_prime() and
2424 * bpf_link_settle() kernel code using bpf_link doesn't have to perform
2425 * expensive (and potentially failing) roll back operations in a rare case
2426 * that file, FD, or ID can't be allocated.
2428 int bpf_link_prime(struct bpf_link
*link
, struct bpf_link_primer
*primer
)
2433 fd
= get_unused_fd_flags(O_CLOEXEC
);
2438 id
= bpf_link_alloc_id(link
);
2444 file
= anon_inode_getfile("bpf_link", &bpf_link_fops
, link
, O_CLOEXEC
);
2446 bpf_link_free_id(id
);
2448 return PTR_ERR(file
);
2451 primer
->link
= link
;
2452 primer
->file
= file
;
2458 int bpf_link_settle(struct bpf_link_primer
*primer
)
2460 /* make bpf_link fetchable by ID */
2461 spin_lock_bh(&link_idr_lock
);
2462 primer
->link
->id
= primer
->id
;
2463 spin_unlock_bh(&link_idr_lock
);
2464 /* make bpf_link fetchable by FD */
2465 fd_install(primer
->fd
, primer
->file
);
2466 /* pass through installed FD */
2470 int bpf_link_new_fd(struct bpf_link
*link
)
2472 return anon_inode_getfd("bpf-link", &bpf_link_fops
, link
, O_CLOEXEC
);
2475 struct bpf_link
*bpf_link_get_from_fd(u32 ufd
)
2477 struct fd f
= fdget(ufd
);
2478 struct bpf_link
*link
;
2481 return ERR_PTR(-EBADF
);
2482 if (f
.file
->f_op
!= &bpf_link_fops
) {
2484 return ERR_PTR(-EINVAL
);
2487 link
= f
.file
->private_data
;
2494 struct bpf_tracing_link
{
2495 struct bpf_link link
;
2496 enum bpf_attach_type attach_type
;
2497 struct bpf_trampoline
*trampoline
;
2498 struct bpf_prog
*tgt_prog
;
2501 static void bpf_tracing_link_release(struct bpf_link
*link
)
2503 struct bpf_tracing_link
*tr_link
=
2504 container_of(link
, struct bpf_tracing_link
, link
);
2506 WARN_ON_ONCE(bpf_trampoline_unlink_prog(link
->prog
,
2507 tr_link
->trampoline
));
2509 bpf_trampoline_put(tr_link
->trampoline
);
2511 /* tgt_prog is NULL if target is a kernel function */
2512 if (tr_link
->tgt_prog
)
2513 bpf_prog_put(tr_link
->tgt_prog
);
2516 static void bpf_tracing_link_dealloc(struct bpf_link
*link
)
2518 struct bpf_tracing_link
*tr_link
=
2519 container_of(link
, struct bpf_tracing_link
, link
);
2524 static void bpf_tracing_link_show_fdinfo(const struct bpf_link
*link
,
2525 struct seq_file
*seq
)
2527 struct bpf_tracing_link
*tr_link
=
2528 container_of(link
, struct bpf_tracing_link
, link
);
2531 "attach_type:\t%d\n",
2532 tr_link
->attach_type
);
2535 static int bpf_tracing_link_fill_link_info(const struct bpf_link
*link
,
2536 struct bpf_link_info
*info
)
2538 struct bpf_tracing_link
*tr_link
=
2539 container_of(link
, struct bpf_tracing_link
, link
);
2541 info
->tracing
.attach_type
= tr_link
->attach_type
;
2546 static const struct bpf_link_ops bpf_tracing_link_lops
= {
2547 .release
= bpf_tracing_link_release
,
2548 .dealloc
= bpf_tracing_link_dealloc
,
2549 .show_fdinfo
= bpf_tracing_link_show_fdinfo
,
2550 .fill_link_info
= bpf_tracing_link_fill_link_info
,
2553 static int bpf_tracing_prog_attach(struct bpf_prog
*prog
,
2557 struct bpf_link_primer link_primer
;
2558 struct bpf_prog
*tgt_prog
= NULL
;
2559 struct bpf_trampoline
*tr
= NULL
;
2560 struct bpf_tracing_link
*link
;
2564 switch (prog
->type
) {
2565 case BPF_PROG_TYPE_TRACING
:
2566 if (prog
->expected_attach_type
!= BPF_TRACE_FENTRY
&&
2567 prog
->expected_attach_type
!= BPF_TRACE_FEXIT
&&
2568 prog
->expected_attach_type
!= BPF_MODIFY_RETURN
) {
2573 case BPF_PROG_TYPE_EXT
:
2574 if (prog
->expected_attach_type
!= 0) {
2579 case BPF_PROG_TYPE_LSM
:
2580 if (prog
->expected_attach_type
!= BPF_LSM_MAC
) {
2590 if (!!tgt_prog_fd
!= !!btf_id
) {
2596 /* For now we only allow new targets for BPF_PROG_TYPE_EXT */
2597 if (prog
->type
!= BPF_PROG_TYPE_EXT
) {
2602 tgt_prog
= bpf_prog_get(tgt_prog_fd
);
2603 if (IS_ERR(tgt_prog
)) {
2604 err
= PTR_ERR(tgt_prog
);
2609 key
= bpf_trampoline_compute_key(tgt_prog
, NULL
, btf_id
);
2612 link
= kzalloc(sizeof(*link
), GFP_USER
);
2617 bpf_link_init(&link
->link
, BPF_LINK_TYPE_TRACING
,
2618 &bpf_tracing_link_lops
, prog
);
2619 link
->attach_type
= prog
->expected_attach_type
;
2621 mutex_lock(&prog
->aux
->dst_mutex
);
2623 /* There are a few possible cases here:
2625 * - if prog->aux->dst_trampoline is set, the program was just loaded
2626 * and not yet attached to anything, so we can use the values stored
2629 * - if prog->aux->dst_trampoline is NULL, the program has already been
2630 * attached to a target and its initial target was cleared (below)
2632 * - if tgt_prog != NULL, the caller specified tgt_prog_fd +
2633 * target_btf_id using the link_create API.
2635 * - if tgt_prog == NULL when this function was called using the old
2636 * raw_tracepoint_open API, and we need a target from prog->aux
2638 * The combination of no saved target in prog->aux, and no target
2639 * specified on load is illegal, and we reject that here.
2641 if (!prog
->aux
->dst_trampoline
&& !tgt_prog
) {
2646 if (!prog
->aux
->dst_trampoline
||
2647 (key
&& key
!= prog
->aux
->dst_trampoline
->key
)) {
2648 /* If there is no saved target, or the specified target is
2649 * different from the destination specified at load time, we
2650 * need a new trampoline and a check for compatibility
2652 struct bpf_attach_target_info tgt_info
= {};
2654 err
= bpf_check_attach_target(NULL
, prog
, tgt_prog
, btf_id
,
2659 tr
= bpf_trampoline_get(key
, &tgt_info
);
2665 /* The caller didn't specify a target, or the target was the
2666 * same as the destination supplied during program load. This
2667 * means we can reuse the trampoline and reference from program
2668 * load time, and there is no need to allocate a new one. This
2669 * can only happen once for any program, as the saved values in
2670 * prog->aux are cleared below.
2672 tr
= prog
->aux
->dst_trampoline
;
2673 tgt_prog
= prog
->aux
->dst_prog
;
2676 err
= bpf_link_prime(&link
->link
, &link_primer
);
2680 err
= bpf_trampoline_link_prog(prog
, tr
);
2682 bpf_link_cleanup(&link_primer
);
2687 link
->tgt_prog
= tgt_prog
;
2688 link
->trampoline
= tr
;
2690 /* Always clear the trampoline and target prog from prog->aux to make
2691 * sure the original attach destination is not kept alive after a
2692 * program is (re-)attached to another target.
2694 if (prog
->aux
->dst_prog
&&
2695 (tgt_prog_fd
|| tr
!= prog
->aux
->dst_trampoline
))
2696 /* got extra prog ref from syscall, or attaching to different prog */
2697 bpf_prog_put(prog
->aux
->dst_prog
);
2698 if (prog
->aux
->dst_trampoline
&& tr
!= prog
->aux
->dst_trampoline
)
2699 /* we allocated a new trampoline, so free the old one */
2700 bpf_trampoline_put(prog
->aux
->dst_trampoline
);
2702 prog
->aux
->dst_prog
= NULL
;
2703 prog
->aux
->dst_trampoline
= NULL
;
2704 mutex_unlock(&prog
->aux
->dst_mutex
);
2706 return bpf_link_settle(&link_primer
);
2708 if (tr
&& tr
!= prog
->aux
->dst_trampoline
)
2709 bpf_trampoline_put(tr
);
2710 mutex_unlock(&prog
->aux
->dst_mutex
);
2713 if (tgt_prog_fd
&& tgt_prog
)
2714 bpf_prog_put(tgt_prog
);
2719 struct bpf_raw_tp_link
{
2720 struct bpf_link link
;
2721 struct bpf_raw_event_map
*btp
;
2724 static void bpf_raw_tp_link_release(struct bpf_link
*link
)
2726 struct bpf_raw_tp_link
*raw_tp
=
2727 container_of(link
, struct bpf_raw_tp_link
, link
);
2729 bpf_probe_unregister(raw_tp
->btp
, raw_tp
->link
.prog
);
2730 bpf_put_raw_tracepoint(raw_tp
->btp
);
2733 static void bpf_raw_tp_link_dealloc(struct bpf_link
*link
)
2735 struct bpf_raw_tp_link
*raw_tp
=
2736 container_of(link
, struct bpf_raw_tp_link
, link
);
2741 static void bpf_raw_tp_link_show_fdinfo(const struct bpf_link
*link
,
2742 struct seq_file
*seq
)
2744 struct bpf_raw_tp_link
*raw_tp_link
=
2745 container_of(link
, struct bpf_raw_tp_link
, link
);
2749 raw_tp_link
->btp
->tp
->name
);
2752 static int bpf_raw_tp_link_fill_link_info(const struct bpf_link
*link
,
2753 struct bpf_link_info
*info
)
2755 struct bpf_raw_tp_link
*raw_tp_link
=
2756 container_of(link
, struct bpf_raw_tp_link
, link
);
2757 char __user
*ubuf
= u64_to_user_ptr(info
->raw_tracepoint
.tp_name
);
2758 const char *tp_name
= raw_tp_link
->btp
->tp
->name
;
2759 u32 ulen
= info
->raw_tracepoint
.tp_name_len
;
2760 size_t tp_len
= strlen(tp_name
);
2765 info
->raw_tracepoint
.tp_name_len
= tp_len
+ 1;
2770 if (ulen
>= tp_len
+ 1) {
2771 if (copy_to_user(ubuf
, tp_name
, tp_len
+ 1))
2776 if (copy_to_user(ubuf
, tp_name
, ulen
- 1))
2778 if (put_user(zero
, ubuf
+ ulen
- 1))
2786 static const struct bpf_link_ops bpf_raw_tp_link_lops
= {
2787 .release
= bpf_raw_tp_link_release
,
2788 .dealloc
= bpf_raw_tp_link_dealloc
,
2789 .show_fdinfo
= bpf_raw_tp_link_show_fdinfo
,
2790 .fill_link_info
= bpf_raw_tp_link_fill_link_info
,
2793 #define BPF_RAW_TRACEPOINT_OPEN_LAST_FIELD raw_tracepoint.prog_fd
2795 static int bpf_raw_tracepoint_open(const union bpf_attr
*attr
)
2797 struct bpf_link_primer link_primer
;
2798 struct bpf_raw_tp_link
*link
;
2799 struct bpf_raw_event_map
*btp
;
2800 struct bpf_prog
*prog
;
2801 const char *tp_name
;
2805 if (CHECK_ATTR(BPF_RAW_TRACEPOINT_OPEN
))
2808 prog
= bpf_prog_get(attr
->raw_tracepoint
.prog_fd
);
2810 return PTR_ERR(prog
);
2812 switch (prog
->type
) {
2813 case BPF_PROG_TYPE_TRACING
:
2814 case BPF_PROG_TYPE_EXT
:
2815 case BPF_PROG_TYPE_LSM
:
2816 if (attr
->raw_tracepoint
.name
) {
2817 /* The attach point for this category of programs
2818 * should be specified via btf_id during program load.
2823 if (prog
->type
== BPF_PROG_TYPE_TRACING
&&
2824 prog
->expected_attach_type
== BPF_TRACE_RAW_TP
) {
2825 tp_name
= prog
->aux
->attach_func_name
;
2828 return bpf_tracing_prog_attach(prog
, 0, 0);
2829 case BPF_PROG_TYPE_RAW_TRACEPOINT
:
2830 case BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE
:
2831 if (strncpy_from_user(buf
,
2832 u64_to_user_ptr(attr
->raw_tracepoint
.name
),
2833 sizeof(buf
) - 1) < 0) {
2837 buf
[sizeof(buf
) - 1] = 0;
2845 btp
= bpf_get_raw_tracepoint(tp_name
);
2851 link
= kzalloc(sizeof(*link
), GFP_USER
);
2856 bpf_link_init(&link
->link
, BPF_LINK_TYPE_RAW_TRACEPOINT
,
2857 &bpf_raw_tp_link_lops
, prog
);
2860 err
= bpf_link_prime(&link
->link
, &link_primer
);
2866 err
= bpf_probe_register(link
->btp
, prog
);
2868 bpf_link_cleanup(&link_primer
);
2872 return bpf_link_settle(&link_primer
);
2875 bpf_put_raw_tracepoint(btp
);
2881 static int bpf_prog_attach_check_attach_type(const struct bpf_prog
*prog
,
2882 enum bpf_attach_type attach_type
)
2884 switch (prog
->type
) {
2885 case BPF_PROG_TYPE_CGROUP_SOCK
:
2886 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR
:
2887 case BPF_PROG_TYPE_CGROUP_SOCKOPT
:
2888 case BPF_PROG_TYPE_SK_LOOKUP
:
2889 return attach_type
== prog
->expected_attach_type
? 0 : -EINVAL
;
2890 case BPF_PROG_TYPE_CGROUP_SKB
:
2891 if (!capable(CAP_NET_ADMIN
))
2892 /* cg-skb progs can be loaded by unpriv user.
2893 * check permissions at attach time.
2896 return prog
->enforce_expected_attach_type
&&
2897 prog
->expected_attach_type
!= attach_type
?
2904 static enum bpf_prog_type
2905 attach_type_to_prog_type(enum bpf_attach_type attach_type
)
2907 switch (attach_type
) {
2908 case BPF_CGROUP_INET_INGRESS
:
2909 case BPF_CGROUP_INET_EGRESS
:
2910 return BPF_PROG_TYPE_CGROUP_SKB
;
2911 case BPF_CGROUP_INET_SOCK_CREATE
:
2912 case BPF_CGROUP_INET_SOCK_RELEASE
:
2913 case BPF_CGROUP_INET4_POST_BIND
:
2914 case BPF_CGROUP_INET6_POST_BIND
:
2915 return BPF_PROG_TYPE_CGROUP_SOCK
;
2916 case BPF_CGROUP_INET4_BIND
:
2917 case BPF_CGROUP_INET6_BIND
:
2918 case BPF_CGROUP_INET4_CONNECT
:
2919 case BPF_CGROUP_INET6_CONNECT
:
2920 case BPF_CGROUP_INET4_GETPEERNAME
:
2921 case BPF_CGROUP_INET6_GETPEERNAME
:
2922 case BPF_CGROUP_INET4_GETSOCKNAME
:
2923 case BPF_CGROUP_INET6_GETSOCKNAME
:
2924 case BPF_CGROUP_UDP4_SENDMSG
:
2925 case BPF_CGROUP_UDP6_SENDMSG
:
2926 case BPF_CGROUP_UDP4_RECVMSG
:
2927 case BPF_CGROUP_UDP6_RECVMSG
:
2928 return BPF_PROG_TYPE_CGROUP_SOCK_ADDR
;
2929 case BPF_CGROUP_SOCK_OPS
:
2930 return BPF_PROG_TYPE_SOCK_OPS
;
2931 case BPF_CGROUP_DEVICE
:
2932 return BPF_PROG_TYPE_CGROUP_DEVICE
;
2933 case BPF_SK_MSG_VERDICT
:
2934 return BPF_PROG_TYPE_SK_MSG
;
2935 case BPF_SK_SKB_STREAM_PARSER
:
2936 case BPF_SK_SKB_STREAM_VERDICT
:
2937 return BPF_PROG_TYPE_SK_SKB
;
2938 case BPF_LIRC_MODE2
:
2939 return BPF_PROG_TYPE_LIRC_MODE2
;
2940 case BPF_FLOW_DISSECTOR
:
2941 return BPF_PROG_TYPE_FLOW_DISSECTOR
;
2942 case BPF_CGROUP_SYSCTL
:
2943 return BPF_PROG_TYPE_CGROUP_SYSCTL
;
2944 case BPF_CGROUP_GETSOCKOPT
:
2945 case BPF_CGROUP_SETSOCKOPT
:
2946 return BPF_PROG_TYPE_CGROUP_SOCKOPT
;
2947 case BPF_TRACE_ITER
:
2948 return BPF_PROG_TYPE_TRACING
;
2950 return BPF_PROG_TYPE_SK_LOOKUP
;
2952 return BPF_PROG_TYPE_XDP
;
2954 return BPF_PROG_TYPE_UNSPEC
;
2958 #define BPF_PROG_ATTACH_LAST_FIELD replace_bpf_fd
2960 #define BPF_F_ATTACH_MASK \
2961 (BPF_F_ALLOW_OVERRIDE | BPF_F_ALLOW_MULTI | BPF_F_REPLACE)
2963 static int bpf_prog_attach(const union bpf_attr
*attr
)
2965 enum bpf_prog_type ptype
;
2966 struct bpf_prog
*prog
;
2969 if (CHECK_ATTR(BPF_PROG_ATTACH
))
2972 if (attr
->attach_flags
& ~BPF_F_ATTACH_MASK
)
2975 ptype
= attach_type_to_prog_type(attr
->attach_type
);
2976 if (ptype
== BPF_PROG_TYPE_UNSPEC
)
2979 prog
= bpf_prog_get_type(attr
->attach_bpf_fd
, ptype
);
2981 return PTR_ERR(prog
);
2983 if (bpf_prog_attach_check_attach_type(prog
, attr
->attach_type
)) {
2989 case BPF_PROG_TYPE_SK_SKB
:
2990 case BPF_PROG_TYPE_SK_MSG
:
2991 ret
= sock_map_get_from_fd(attr
, prog
);
2993 case BPF_PROG_TYPE_LIRC_MODE2
:
2994 ret
= lirc_prog_attach(attr
, prog
);
2996 case BPF_PROG_TYPE_FLOW_DISSECTOR
:
2997 ret
= netns_bpf_prog_attach(attr
, prog
);
2999 case BPF_PROG_TYPE_CGROUP_DEVICE
:
3000 case BPF_PROG_TYPE_CGROUP_SKB
:
3001 case BPF_PROG_TYPE_CGROUP_SOCK
:
3002 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR
:
3003 case BPF_PROG_TYPE_CGROUP_SOCKOPT
:
3004 case BPF_PROG_TYPE_CGROUP_SYSCTL
:
3005 case BPF_PROG_TYPE_SOCK_OPS
:
3006 ret
= cgroup_bpf_prog_attach(attr
, ptype
, prog
);
3017 #define BPF_PROG_DETACH_LAST_FIELD attach_type
3019 static int bpf_prog_detach(const union bpf_attr
*attr
)
3021 enum bpf_prog_type ptype
;
3023 if (CHECK_ATTR(BPF_PROG_DETACH
))
3026 ptype
= attach_type_to_prog_type(attr
->attach_type
);
3029 case BPF_PROG_TYPE_SK_MSG
:
3030 case BPF_PROG_TYPE_SK_SKB
:
3031 return sock_map_prog_detach(attr
, ptype
);
3032 case BPF_PROG_TYPE_LIRC_MODE2
:
3033 return lirc_prog_detach(attr
);
3034 case BPF_PROG_TYPE_FLOW_DISSECTOR
:
3035 return netns_bpf_prog_detach(attr
, ptype
);
3036 case BPF_PROG_TYPE_CGROUP_DEVICE
:
3037 case BPF_PROG_TYPE_CGROUP_SKB
:
3038 case BPF_PROG_TYPE_CGROUP_SOCK
:
3039 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR
:
3040 case BPF_PROG_TYPE_CGROUP_SOCKOPT
:
3041 case BPF_PROG_TYPE_CGROUP_SYSCTL
:
3042 case BPF_PROG_TYPE_SOCK_OPS
:
3043 return cgroup_bpf_prog_detach(attr
, ptype
);
3049 #define BPF_PROG_QUERY_LAST_FIELD query.prog_cnt
3051 static int bpf_prog_query(const union bpf_attr
*attr
,
3052 union bpf_attr __user
*uattr
)
3054 if (!capable(CAP_NET_ADMIN
))
3056 if (CHECK_ATTR(BPF_PROG_QUERY
))
3058 if (attr
->query
.query_flags
& ~BPF_F_QUERY_EFFECTIVE
)
3061 switch (attr
->query
.attach_type
) {
3062 case BPF_CGROUP_INET_INGRESS
:
3063 case BPF_CGROUP_INET_EGRESS
:
3064 case BPF_CGROUP_INET_SOCK_CREATE
:
3065 case BPF_CGROUP_INET_SOCK_RELEASE
:
3066 case BPF_CGROUP_INET4_BIND
:
3067 case BPF_CGROUP_INET6_BIND
:
3068 case BPF_CGROUP_INET4_POST_BIND
:
3069 case BPF_CGROUP_INET6_POST_BIND
:
3070 case BPF_CGROUP_INET4_CONNECT
:
3071 case BPF_CGROUP_INET6_CONNECT
:
3072 case BPF_CGROUP_INET4_GETPEERNAME
:
3073 case BPF_CGROUP_INET6_GETPEERNAME
:
3074 case BPF_CGROUP_INET4_GETSOCKNAME
:
3075 case BPF_CGROUP_INET6_GETSOCKNAME
:
3076 case BPF_CGROUP_UDP4_SENDMSG
:
3077 case BPF_CGROUP_UDP6_SENDMSG
:
3078 case BPF_CGROUP_UDP4_RECVMSG
:
3079 case BPF_CGROUP_UDP6_RECVMSG
:
3080 case BPF_CGROUP_SOCK_OPS
:
3081 case BPF_CGROUP_DEVICE
:
3082 case BPF_CGROUP_SYSCTL
:
3083 case BPF_CGROUP_GETSOCKOPT
:
3084 case BPF_CGROUP_SETSOCKOPT
:
3085 return cgroup_bpf_prog_query(attr
, uattr
);
3086 case BPF_LIRC_MODE2
:
3087 return lirc_prog_query(attr
, uattr
);
3088 case BPF_FLOW_DISSECTOR
:
3090 return netns_bpf_prog_query(attr
, uattr
);
3096 #define BPF_PROG_TEST_RUN_LAST_FIELD test.cpu
3098 static int bpf_prog_test_run(const union bpf_attr
*attr
,
3099 union bpf_attr __user
*uattr
)
3101 struct bpf_prog
*prog
;
3102 int ret
= -ENOTSUPP
;
3104 if (CHECK_ATTR(BPF_PROG_TEST_RUN
))
3107 if ((attr
->test
.ctx_size_in
&& !attr
->test
.ctx_in
) ||
3108 (!attr
->test
.ctx_size_in
&& attr
->test
.ctx_in
))
3111 if ((attr
->test
.ctx_size_out
&& !attr
->test
.ctx_out
) ||
3112 (!attr
->test
.ctx_size_out
&& attr
->test
.ctx_out
))
3115 prog
= bpf_prog_get(attr
->test
.prog_fd
);
3117 return PTR_ERR(prog
);
3119 if (prog
->aux
->ops
->test_run
)
3120 ret
= prog
->aux
->ops
->test_run(prog
, attr
, uattr
);
3126 #define BPF_OBJ_GET_NEXT_ID_LAST_FIELD next_id
3128 static int bpf_obj_get_next_id(const union bpf_attr
*attr
,
3129 union bpf_attr __user
*uattr
,
3133 u32 next_id
= attr
->start_id
;
3136 if (CHECK_ATTR(BPF_OBJ_GET_NEXT_ID
) || next_id
>= INT_MAX
)
3139 if (!capable(CAP_SYS_ADMIN
))
3144 if (!idr_get_next(idr
, &next_id
))
3146 spin_unlock_bh(lock
);
3149 err
= put_user(next_id
, &uattr
->next_id
);
3154 struct bpf_map
*bpf_map_get_curr_or_next(u32
*id
)
3156 struct bpf_map
*map
;
3158 spin_lock_bh(&map_idr_lock
);
3160 map
= idr_get_next(&map_idr
, id
);
3162 map
= __bpf_map_inc_not_zero(map
, false);
3168 spin_unlock_bh(&map_idr_lock
);
3173 struct bpf_prog
*bpf_prog_get_curr_or_next(u32
*id
)
3175 struct bpf_prog
*prog
;
3177 spin_lock_bh(&prog_idr_lock
);
3179 prog
= idr_get_next(&prog_idr
, id
);
3181 prog
= bpf_prog_inc_not_zero(prog
);
3187 spin_unlock_bh(&prog_idr_lock
);
3192 #define BPF_PROG_GET_FD_BY_ID_LAST_FIELD prog_id
3194 struct bpf_prog
*bpf_prog_by_id(u32 id
)
3196 struct bpf_prog
*prog
;
3199 return ERR_PTR(-ENOENT
);
3201 spin_lock_bh(&prog_idr_lock
);
3202 prog
= idr_find(&prog_idr
, id
);
3204 prog
= bpf_prog_inc_not_zero(prog
);
3206 prog
= ERR_PTR(-ENOENT
);
3207 spin_unlock_bh(&prog_idr_lock
);
3211 static int bpf_prog_get_fd_by_id(const union bpf_attr
*attr
)
3213 struct bpf_prog
*prog
;
3214 u32 id
= attr
->prog_id
;
3217 if (CHECK_ATTR(BPF_PROG_GET_FD_BY_ID
))
3220 if (!capable(CAP_SYS_ADMIN
))
3223 prog
= bpf_prog_by_id(id
);
3225 return PTR_ERR(prog
);
3227 fd
= bpf_prog_new_fd(prog
);
3234 #define BPF_MAP_GET_FD_BY_ID_LAST_FIELD open_flags
3236 static int bpf_map_get_fd_by_id(const union bpf_attr
*attr
)
3238 struct bpf_map
*map
;
3239 u32 id
= attr
->map_id
;
3243 if (CHECK_ATTR(BPF_MAP_GET_FD_BY_ID
) ||
3244 attr
->open_flags
& ~BPF_OBJ_FLAG_MASK
)
3247 if (!capable(CAP_SYS_ADMIN
))
3250 f_flags
= bpf_get_file_flag(attr
->open_flags
);
3254 spin_lock_bh(&map_idr_lock
);
3255 map
= idr_find(&map_idr
, id
);
3257 map
= __bpf_map_inc_not_zero(map
, true);
3259 map
= ERR_PTR(-ENOENT
);
3260 spin_unlock_bh(&map_idr_lock
);
3263 return PTR_ERR(map
);
3265 fd
= bpf_map_new_fd(map
, f_flags
);
3267 bpf_map_put_with_uref(map
);
3272 static const struct bpf_map
*bpf_map_from_imm(const struct bpf_prog
*prog
,
3273 unsigned long addr
, u32
*off
,
3276 const struct bpf_map
*map
;
3279 mutex_lock(&prog
->aux
->used_maps_mutex
);
3280 for (i
= 0, *off
= 0; i
< prog
->aux
->used_map_cnt
; i
++) {
3281 map
= prog
->aux
->used_maps
[i
];
3282 if (map
== (void *)addr
) {
3283 *type
= BPF_PSEUDO_MAP_FD
;
3286 if (!map
->ops
->map_direct_value_meta
)
3288 if (!map
->ops
->map_direct_value_meta(map
, addr
, off
)) {
3289 *type
= BPF_PSEUDO_MAP_VALUE
;
3296 mutex_unlock(&prog
->aux
->used_maps_mutex
);
3300 static struct bpf_insn
*bpf_insn_prepare_dump(const struct bpf_prog
*prog
,
3301 const struct cred
*f_cred
)
3303 const struct bpf_map
*map
;
3304 struct bpf_insn
*insns
;
3310 insns
= kmemdup(prog
->insnsi
, bpf_prog_insn_size(prog
),
3315 for (i
= 0; i
< prog
->len
; i
++) {
3316 code
= insns
[i
].code
;
3318 if (code
== (BPF_JMP
| BPF_TAIL_CALL
)) {
3319 insns
[i
].code
= BPF_JMP
| BPF_CALL
;
3320 insns
[i
].imm
= BPF_FUNC_tail_call
;
3323 if (code
== (BPF_JMP
| BPF_CALL
) ||
3324 code
== (BPF_JMP
| BPF_CALL_ARGS
)) {
3325 if (code
== (BPF_JMP
| BPF_CALL_ARGS
))
3326 insns
[i
].code
= BPF_JMP
| BPF_CALL
;
3327 if (!bpf_dump_raw_ok(f_cred
))
3331 if (BPF_CLASS(code
) == BPF_LDX
&& BPF_MODE(code
) == BPF_PROBE_MEM
) {
3332 insns
[i
].code
= BPF_LDX
| BPF_SIZE(code
) | BPF_MEM
;
3336 if (code
!= (BPF_LD
| BPF_IMM
| BPF_DW
))
3339 imm
= ((u64
)insns
[i
+ 1].imm
<< 32) | (u32
)insns
[i
].imm
;
3340 map
= bpf_map_from_imm(prog
, imm
, &off
, &type
);
3342 insns
[i
].src_reg
= type
;
3343 insns
[i
].imm
= map
->id
;
3344 insns
[i
+ 1].imm
= off
;
3352 static int set_info_rec_size(struct bpf_prog_info
*info
)
3355 * Ensure info.*_rec_size is the same as kernel expected size
3359 * Only allow zero *_rec_size if both _rec_size and _cnt are
3360 * zero. In this case, the kernel will set the expected
3361 * _rec_size back to the info.
3364 if ((info
->nr_func_info
|| info
->func_info_rec_size
) &&
3365 info
->func_info_rec_size
!= sizeof(struct bpf_func_info
))
3368 if ((info
->nr_line_info
|| info
->line_info_rec_size
) &&
3369 info
->line_info_rec_size
!= sizeof(struct bpf_line_info
))
3372 if ((info
->nr_jited_line_info
|| info
->jited_line_info_rec_size
) &&
3373 info
->jited_line_info_rec_size
!= sizeof(__u64
))
3376 info
->func_info_rec_size
= sizeof(struct bpf_func_info
);
3377 info
->line_info_rec_size
= sizeof(struct bpf_line_info
);
3378 info
->jited_line_info_rec_size
= sizeof(__u64
);
3383 static int bpf_prog_get_info_by_fd(struct file
*file
,
3384 struct bpf_prog
*prog
,
3385 const union bpf_attr
*attr
,
3386 union bpf_attr __user
*uattr
)
3388 struct bpf_prog_info __user
*uinfo
= u64_to_user_ptr(attr
->info
.info
);
3389 struct bpf_prog_info info
;
3390 u32 info_len
= attr
->info
.info_len
;
3391 struct bpf_prog_stats stats
;
3392 char __user
*uinsns
;
3396 err
= bpf_check_uarg_tail_zero(uinfo
, sizeof(info
), info_len
);
3399 info_len
= min_t(u32
, sizeof(info
), info_len
);
3401 memset(&info
, 0, sizeof(info
));
3402 if (copy_from_user(&info
, uinfo
, info_len
))
3405 info
.type
= prog
->type
;
3406 info
.id
= prog
->aux
->id
;
3407 info
.load_time
= prog
->aux
->load_time
;
3408 info
.created_by_uid
= from_kuid_munged(current_user_ns(),
3409 prog
->aux
->user
->uid
);
3410 info
.gpl_compatible
= prog
->gpl_compatible
;
3412 memcpy(info
.tag
, prog
->tag
, sizeof(prog
->tag
));
3413 memcpy(info
.name
, prog
->aux
->name
, sizeof(prog
->aux
->name
));
3415 mutex_lock(&prog
->aux
->used_maps_mutex
);
3416 ulen
= info
.nr_map_ids
;
3417 info
.nr_map_ids
= prog
->aux
->used_map_cnt
;
3418 ulen
= min_t(u32
, info
.nr_map_ids
, ulen
);
3420 u32 __user
*user_map_ids
= u64_to_user_ptr(info
.map_ids
);
3423 for (i
= 0; i
< ulen
; i
++)
3424 if (put_user(prog
->aux
->used_maps
[i
]->id
,
3425 &user_map_ids
[i
])) {
3426 mutex_unlock(&prog
->aux
->used_maps_mutex
);
3430 mutex_unlock(&prog
->aux
->used_maps_mutex
);
3432 err
= set_info_rec_size(&info
);
3436 bpf_prog_get_stats(prog
, &stats
);
3437 info
.run_time_ns
= stats
.nsecs
;
3438 info
.run_cnt
= stats
.cnt
;
3440 if (!bpf_capable()) {
3441 info
.jited_prog_len
= 0;
3442 info
.xlated_prog_len
= 0;
3443 info
.nr_jited_ksyms
= 0;
3444 info
.nr_jited_func_lens
= 0;
3445 info
.nr_func_info
= 0;
3446 info
.nr_line_info
= 0;
3447 info
.nr_jited_line_info
= 0;
3451 ulen
= info
.xlated_prog_len
;
3452 info
.xlated_prog_len
= bpf_prog_insn_size(prog
);
3453 if (info
.xlated_prog_len
&& ulen
) {
3454 struct bpf_insn
*insns_sanitized
;
3457 if (prog
->blinded
&& !bpf_dump_raw_ok(file
->f_cred
)) {
3458 info
.xlated_prog_insns
= 0;
3461 insns_sanitized
= bpf_insn_prepare_dump(prog
, file
->f_cred
);
3462 if (!insns_sanitized
)
3464 uinsns
= u64_to_user_ptr(info
.xlated_prog_insns
);
3465 ulen
= min_t(u32
, info
.xlated_prog_len
, ulen
);
3466 fault
= copy_to_user(uinsns
, insns_sanitized
, ulen
);
3467 kfree(insns_sanitized
);
3472 if (bpf_prog_is_dev_bound(prog
->aux
)) {
3473 err
= bpf_prog_offload_info_fill(&info
, prog
);
3479 /* NOTE: the following code is supposed to be skipped for offload.
3480 * bpf_prog_offload_info_fill() is the place to fill similar fields
3483 ulen
= info
.jited_prog_len
;
3484 if (prog
->aux
->func_cnt
) {
3487 info
.jited_prog_len
= 0;
3488 for (i
= 0; i
< prog
->aux
->func_cnt
; i
++)
3489 info
.jited_prog_len
+= prog
->aux
->func
[i
]->jited_len
;
3491 info
.jited_prog_len
= prog
->jited_len
;
3494 if (info
.jited_prog_len
&& ulen
) {
3495 if (bpf_dump_raw_ok(file
->f_cred
)) {
3496 uinsns
= u64_to_user_ptr(info
.jited_prog_insns
);
3497 ulen
= min_t(u32
, info
.jited_prog_len
, ulen
);
3499 /* for multi-function programs, copy the JITed
3500 * instructions for all the functions
3502 if (prog
->aux
->func_cnt
) {
3507 for (i
= 0; i
< prog
->aux
->func_cnt
; i
++) {
3508 len
= prog
->aux
->func
[i
]->jited_len
;
3509 len
= min_t(u32
, len
, free
);
3510 img
= (u8
*) prog
->aux
->func
[i
]->bpf_func
;
3511 if (copy_to_user(uinsns
, img
, len
))
3519 if (copy_to_user(uinsns
, prog
->bpf_func
, ulen
))
3523 info
.jited_prog_insns
= 0;
3527 ulen
= info
.nr_jited_ksyms
;
3528 info
.nr_jited_ksyms
= prog
->aux
->func_cnt
? : 1;
3530 if (bpf_dump_raw_ok(file
->f_cred
)) {
3531 unsigned long ksym_addr
;
3532 u64 __user
*user_ksyms
;
3535 /* copy the address of the kernel symbol
3536 * corresponding to each function
3538 ulen
= min_t(u32
, info
.nr_jited_ksyms
, ulen
);
3539 user_ksyms
= u64_to_user_ptr(info
.jited_ksyms
);
3540 if (prog
->aux
->func_cnt
) {
3541 for (i
= 0; i
< ulen
; i
++) {
3542 ksym_addr
= (unsigned long)
3543 prog
->aux
->func
[i
]->bpf_func
;
3544 if (put_user((u64
) ksym_addr
,
3549 ksym_addr
= (unsigned long) prog
->bpf_func
;
3550 if (put_user((u64
) ksym_addr
, &user_ksyms
[0]))
3554 info
.jited_ksyms
= 0;
3558 ulen
= info
.nr_jited_func_lens
;
3559 info
.nr_jited_func_lens
= prog
->aux
->func_cnt
? : 1;
3561 if (bpf_dump_raw_ok(file
->f_cred
)) {
3562 u32 __user
*user_lens
;
3565 /* copy the JITed image lengths for each function */
3566 ulen
= min_t(u32
, info
.nr_jited_func_lens
, ulen
);
3567 user_lens
= u64_to_user_ptr(info
.jited_func_lens
);
3568 if (prog
->aux
->func_cnt
) {
3569 for (i
= 0; i
< ulen
; i
++) {
3571 prog
->aux
->func
[i
]->jited_len
;
3572 if (put_user(func_len
, &user_lens
[i
]))
3576 func_len
= prog
->jited_len
;
3577 if (put_user(func_len
, &user_lens
[0]))
3581 info
.jited_func_lens
= 0;
3586 info
.btf_id
= btf_obj_id(prog
->aux
->btf
);
3588 ulen
= info
.nr_func_info
;
3589 info
.nr_func_info
= prog
->aux
->func_info_cnt
;
3590 if (info
.nr_func_info
&& ulen
) {
3591 char __user
*user_finfo
;
3593 user_finfo
= u64_to_user_ptr(info
.func_info
);
3594 ulen
= min_t(u32
, info
.nr_func_info
, ulen
);
3595 if (copy_to_user(user_finfo
, prog
->aux
->func_info
,
3596 info
.func_info_rec_size
* ulen
))
3600 ulen
= info
.nr_line_info
;
3601 info
.nr_line_info
= prog
->aux
->nr_linfo
;
3602 if (info
.nr_line_info
&& ulen
) {
3603 __u8 __user
*user_linfo
;
3605 user_linfo
= u64_to_user_ptr(info
.line_info
);
3606 ulen
= min_t(u32
, info
.nr_line_info
, ulen
);
3607 if (copy_to_user(user_linfo
, prog
->aux
->linfo
,
3608 info
.line_info_rec_size
* ulen
))
3612 ulen
= info
.nr_jited_line_info
;
3613 if (prog
->aux
->jited_linfo
)
3614 info
.nr_jited_line_info
= prog
->aux
->nr_linfo
;
3616 info
.nr_jited_line_info
= 0;
3617 if (info
.nr_jited_line_info
&& ulen
) {
3618 if (bpf_dump_raw_ok(file
->f_cred
)) {
3619 __u64 __user
*user_linfo
;
3622 user_linfo
= u64_to_user_ptr(info
.jited_line_info
);
3623 ulen
= min_t(u32
, info
.nr_jited_line_info
, ulen
);
3624 for (i
= 0; i
< ulen
; i
++) {
3625 if (put_user((__u64
)(long)prog
->aux
->jited_linfo
[i
],
3630 info
.jited_line_info
= 0;
3634 ulen
= info
.nr_prog_tags
;
3635 info
.nr_prog_tags
= prog
->aux
->func_cnt
? : 1;
3637 __u8
__user (*user_prog_tags
)[BPF_TAG_SIZE
];
3640 user_prog_tags
= u64_to_user_ptr(info
.prog_tags
);
3641 ulen
= min_t(u32
, info
.nr_prog_tags
, ulen
);
3642 if (prog
->aux
->func_cnt
) {
3643 for (i
= 0; i
< ulen
; i
++) {
3644 if (copy_to_user(user_prog_tags
[i
],
3645 prog
->aux
->func
[i
]->tag
,
3650 if (copy_to_user(user_prog_tags
[0],
3651 prog
->tag
, BPF_TAG_SIZE
))
3657 if (copy_to_user(uinfo
, &info
, info_len
) ||
3658 put_user(info_len
, &uattr
->info
.info_len
))
3664 static int bpf_map_get_info_by_fd(struct file
*file
,
3665 struct bpf_map
*map
,
3666 const union bpf_attr
*attr
,
3667 union bpf_attr __user
*uattr
)
3669 struct bpf_map_info __user
*uinfo
= u64_to_user_ptr(attr
->info
.info
);
3670 struct bpf_map_info info
;
3671 u32 info_len
= attr
->info
.info_len
;
3674 err
= bpf_check_uarg_tail_zero(uinfo
, sizeof(info
), info_len
);
3677 info_len
= min_t(u32
, sizeof(info
), info_len
);
3679 memset(&info
, 0, sizeof(info
));
3680 info
.type
= map
->map_type
;
3682 info
.key_size
= map
->key_size
;
3683 info
.value_size
= map
->value_size
;
3684 info
.max_entries
= map
->max_entries
;
3685 info
.map_flags
= map
->map_flags
;
3686 memcpy(info
.name
, map
->name
, sizeof(map
->name
));
3689 info
.btf_id
= btf_obj_id(map
->btf
);
3690 info
.btf_key_type_id
= map
->btf_key_type_id
;
3691 info
.btf_value_type_id
= map
->btf_value_type_id
;
3693 info
.btf_vmlinux_value_type_id
= map
->btf_vmlinux_value_type_id
;
3695 if (bpf_map_is_dev_bound(map
)) {
3696 err
= bpf_map_offload_info_fill(&info
, map
);
3701 if (copy_to_user(uinfo
, &info
, info_len
) ||
3702 put_user(info_len
, &uattr
->info
.info_len
))
3708 static int bpf_btf_get_info_by_fd(struct file
*file
,
3710 const union bpf_attr
*attr
,
3711 union bpf_attr __user
*uattr
)
3713 struct bpf_btf_info __user
*uinfo
= u64_to_user_ptr(attr
->info
.info
);
3714 u32 info_len
= attr
->info
.info_len
;
3717 err
= bpf_check_uarg_tail_zero(uinfo
, sizeof(*uinfo
), info_len
);
3721 return btf_get_info_by_fd(btf
, attr
, uattr
);
3724 static int bpf_link_get_info_by_fd(struct file
*file
,
3725 struct bpf_link
*link
,
3726 const union bpf_attr
*attr
,
3727 union bpf_attr __user
*uattr
)
3729 struct bpf_link_info __user
*uinfo
= u64_to_user_ptr(attr
->info
.info
);
3730 struct bpf_link_info info
;
3731 u32 info_len
= attr
->info
.info_len
;
3734 err
= bpf_check_uarg_tail_zero(uinfo
, sizeof(info
), info_len
);
3737 info_len
= min_t(u32
, sizeof(info
), info_len
);
3739 memset(&info
, 0, sizeof(info
));
3740 if (copy_from_user(&info
, uinfo
, info_len
))
3743 info
.type
= link
->type
;
3745 info
.prog_id
= link
->prog
->aux
->id
;
3747 if (link
->ops
->fill_link_info
) {
3748 err
= link
->ops
->fill_link_info(link
, &info
);
3753 if (copy_to_user(uinfo
, &info
, info_len
) ||
3754 put_user(info_len
, &uattr
->info
.info_len
))
3761 #define BPF_OBJ_GET_INFO_BY_FD_LAST_FIELD info.info
3763 static int bpf_obj_get_info_by_fd(const union bpf_attr
*attr
,
3764 union bpf_attr __user
*uattr
)
3766 int ufd
= attr
->info
.bpf_fd
;
3770 if (CHECK_ATTR(BPF_OBJ_GET_INFO_BY_FD
))
3777 if (f
.file
->f_op
== &bpf_prog_fops
)
3778 err
= bpf_prog_get_info_by_fd(f
.file
, f
.file
->private_data
, attr
,
3780 else if (f
.file
->f_op
== &bpf_map_fops
)
3781 err
= bpf_map_get_info_by_fd(f
.file
, f
.file
->private_data
, attr
,
3783 else if (f
.file
->f_op
== &btf_fops
)
3784 err
= bpf_btf_get_info_by_fd(f
.file
, f
.file
->private_data
, attr
, uattr
);
3785 else if (f
.file
->f_op
== &bpf_link_fops
)
3786 err
= bpf_link_get_info_by_fd(f
.file
, f
.file
->private_data
,
3795 #define BPF_BTF_LOAD_LAST_FIELD btf_log_level
3797 static int bpf_btf_load(const union bpf_attr
*attr
)
3799 if (CHECK_ATTR(BPF_BTF_LOAD
))
3805 return btf_new_fd(attr
);
3808 #define BPF_BTF_GET_FD_BY_ID_LAST_FIELD btf_id
3810 static int bpf_btf_get_fd_by_id(const union bpf_attr
*attr
)
3812 if (CHECK_ATTR(BPF_BTF_GET_FD_BY_ID
))
3815 if (!capable(CAP_SYS_ADMIN
))
3818 return btf_get_fd_by_id(attr
->btf_id
);
3821 static int bpf_task_fd_query_copy(const union bpf_attr
*attr
,
3822 union bpf_attr __user
*uattr
,
3823 u32 prog_id
, u32 fd_type
,
3824 const char *buf
, u64 probe_offset
,
3827 char __user
*ubuf
= u64_to_user_ptr(attr
->task_fd_query
.buf
);
3828 u32 len
= buf
? strlen(buf
) : 0, input_len
;
3831 if (put_user(len
, &uattr
->task_fd_query
.buf_len
))
3833 input_len
= attr
->task_fd_query
.buf_len
;
3834 if (input_len
&& ubuf
) {
3836 /* nothing to copy, just make ubuf NULL terminated */
3839 if (put_user(zero
, ubuf
))
3841 } else if (input_len
>= len
+ 1) {
3842 /* ubuf can hold the string with NULL terminator */
3843 if (copy_to_user(ubuf
, buf
, len
+ 1))
3846 /* ubuf cannot hold the string with NULL terminator,
3847 * do a partial copy with NULL terminator.
3852 if (copy_to_user(ubuf
, buf
, input_len
- 1))
3854 if (put_user(zero
, ubuf
+ input_len
- 1))
3859 if (put_user(prog_id
, &uattr
->task_fd_query
.prog_id
) ||
3860 put_user(fd_type
, &uattr
->task_fd_query
.fd_type
) ||
3861 put_user(probe_offset
, &uattr
->task_fd_query
.probe_offset
) ||
3862 put_user(probe_addr
, &uattr
->task_fd_query
.probe_addr
))
3868 #define BPF_TASK_FD_QUERY_LAST_FIELD task_fd_query.probe_addr
3870 static int bpf_task_fd_query(const union bpf_attr
*attr
,
3871 union bpf_attr __user
*uattr
)
3873 pid_t pid
= attr
->task_fd_query
.pid
;
3874 u32 fd
= attr
->task_fd_query
.fd
;
3875 const struct perf_event
*event
;
3876 struct task_struct
*task
;
3880 if (CHECK_ATTR(BPF_TASK_FD_QUERY
))
3883 if (!capable(CAP_SYS_ADMIN
))
3886 if (attr
->task_fd_query
.flags
!= 0)
3889 task
= get_pid_task(find_vpid(pid
), PIDTYPE_PID
);
3894 file
= fget_task(task
, fd
);
3895 put_task_struct(task
);
3899 if (file
->f_op
== &bpf_link_fops
) {
3900 struct bpf_link
*link
= file
->private_data
;
3902 if (link
->ops
== &bpf_raw_tp_link_lops
) {
3903 struct bpf_raw_tp_link
*raw_tp
=
3904 container_of(link
, struct bpf_raw_tp_link
, link
);
3905 struct bpf_raw_event_map
*btp
= raw_tp
->btp
;
3907 err
= bpf_task_fd_query_copy(attr
, uattr
,
3908 raw_tp
->link
.prog
->aux
->id
,
3909 BPF_FD_TYPE_RAW_TRACEPOINT
,
3910 btp
->tp
->name
, 0, 0);
3916 event
= perf_get_event(file
);
3917 if (!IS_ERR(event
)) {
3918 u64 probe_offset
, probe_addr
;
3919 u32 prog_id
, fd_type
;
3922 err
= bpf_get_perf_event_info(event
, &prog_id
, &fd_type
,
3923 &buf
, &probe_offset
,
3926 err
= bpf_task_fd_query_copy(attr
, uattr
, prog_id
,
3940 #define BPF_MAP_BATCH_LAST_FIELD batch.flags
3942 #define BPF_DO_BATCH(fn) \
3948 err = fn(map, attr, uattr); \
3951 static int bpf_map_do_batch(const union bpf_attr
*attr
,
3952 union bpf_attr __user
*uattr
,
3955 struct bpf_map
*map
;
3959 if (CHECK_ATTR(BPF_MAP_BATCH
))
3962 ufd
= attr
->batch
.map_fd
;
3964 map
= __bpf_map_get(f
);
3966 return PTR_ERR(map
);
3968 if ((cmd
== BPF_MAP_LOOKUP_BATCH
||
3969 cmd
== BPF_MAP_LOOKUP_AND_DELETE_BATCH
) &&
3970 !(map_get_sys_perms(map
, f
) & FMODE_CAN_READ
)) {
3975 if (cmd
!= BPF_MAP_LOOKUP_BATCH
&&
3976 !(map_get_sys_perms(map
, f
) & FMODE_CAN_WRITE
)) {
3981 if (cmd
== BPF_MAP_LOOKUP_BATCH
)
3982 BPF_DO_BATCH(map
->ops
->map_lookup_batch
);
3983 else if (cmd
== BPF_MAP_LOOKUP_AND_DELETE_BATCH
)
3984 BPF_DO_BATCH(map
->ops
->map_lookup_and_delete_batch
);
3985 else if (cmd
== BPF_MAP_UPDATE_BATCH
)
3986 BPF_DO_BATCH(map
->ops
->map_update_batch
);
3988 BPF_DO_BATCH(map
->ops
->map_delete_batch
);
3995 static int tracing_bpf_link_attach(const union bpf_attr
*attr
, struct bpf_prog
*prog
)
3997 if (attr
->link_create
.attach_type
!= prog
->expected_attach_type
)
4000 if (prog
->expected_attach_type
== BPF_TRACE_ITER
)
4001 return bpf_iter_link_attach(attr
, prog
);
4002 else if (prog
->type
== BPF_PROG_TYPE_EXT
)
4003 return bpf_tracing_prog_attach(prog
,
4004 attr
->link_create
.target_fd
,
4005 attr
->link_create
.target_btf_id
);
4009 #define BPF_LINK_CREATE_LAST_FIELD link_create.iter_info_len
4010 static int link_create(union bpf_attr
*attr
)
4012 enum bpf_prog_type ptype
;
4013 struct bpf_prog
*prog
;
4016 if (CHECK_ATTR(BPF_LINK_CREATE
))
4019 prog
= bpf_prog_get(attr
->link_create
.prog_fd
);
4021 return PTR_ERR(prog
);
4023 ret
= bpf_prog_attach_check_attach_type(prog
,
4024 attr
->link_create
.attach_type
);
4028 if (prog
->type
== BPF_PROG_TYPE_EXT
) {
4029 ret
= tracing_bpf_link_attach(attr
, prog
);
4033 ptype
= attach_type_to_prog_type(attr
->link_create
.attach_type
);
4034 if (ptype
== BPF_PROG_TYPE_UNSPEC
|| ptype
!= prog
->type
) {
4040 case BPF_PROG_TYPE_CGROUP_SKB
:
4041 case BPF_PROG_TYPE_CGROUP_SOCK
:
4042 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR
:
4043 case BPF_PROG_TYPE_SOCK_OPS
:
4044 case BPF_PROG_TYPE_CGROUP_DEVICE
:
4045 case BPF_PROG_TYPE_CGROUP_SYSCTL
:
4046 case BPF_PROG_TYPE_CGROUP_SOCKOPT
:
4047 ret
= cgroup_bpf_link_attach(attr
, prog
);
4049 case BPF_PROG_TYPE_TRACING
:
4050 ret
= tracing_bpf_link_attach(attr
, prog
);
4052 case BPF_PROG_TYPE_FLOW_DISSECTOR
:
4053 case BPF_PROG_TYPE_SK_LOOKUP
:
4054 ret
= netns_bpf_link_create(attr
, prog
);
4057 case BPF_PROG_TYPE_XDP
:
4058 ret
= bpf_xdp_link_attach(attr
, prog
);
4071 #define BPF_LINK_UPDATE_LAST_FIELD link_update.old_prog_fd
4073 static int link_update(union bpf_attr
*attr
)
4075 struct bpf_prog
*old_prog
= NULL
, *new_prog
;
4076 struct bpf_link
*link
;
4080 if (CHECK_ATTR(BPF_LINK_UPDATE
))
4083 flags
= attr
->link_update
.flags
;
4084 if (flags
& ~BPF_F_REPLACE
)
4087 link
= bpf_link_get_from_fd(attr
->link_update
.link_fd
);
4089 return PTR_ERR(link
);
4091 new_prog
= bpf_prog_get(attr
->link_update
.new_prog_fd
);
4092 if (IS_ERR(new_prog
)) {
4093 ret
= PTR_ERR(new_prog
);
4097 if (flags
& BPF_F_REPLACE
) {
4098 old_prog
= bpf_prog_get(attr
->link_update
.old_prog_fd
);
4099 if (IS_ERR(old_prog
)) {
4100 ret
= PTR_ERR(old_prog
);
4104 } else if (attr
->link_update
.old_prog_fd
) {
4109 if (link
->ops
->update_prog
)
4110 ret
= link
->ops
->update_prog(link
, new_prog
, old_prog
);
4116 bpf_prog_put(old_prog
);
4118 bpf_prog_put(new_prog
);
4124 #define BPF_LINK_DETACH_LAST_FIELD link_detach.link_fd
4126 static int link_detach(union bpf_attr
*attr
)
4128 struct bpf_link
*link
;
4131 if (CHECK_ATTR(BPF_LINK_DETACH
))
4134 link
= bpf_link_get_from_fd(attr
->link_detach
.link_fd
);
4136 return PTR_ERR(link
);
4138 if (link
->ops
->detach
)
4139 ret
= link
->ops
->detach(link
);
4147 static struct bpf_link
*bpf_link_inc_not_zero(struct bpf_link
*link
)
4149 return atomic64_fetch_add_unless(&link
->refcnt
, 1, 0) ? link
: ERR_PTR(-ENOENT
);
4152 struct bpf_link
*bpf_link_by_id(u32 id
)
4154 struct bpf_link
*link
;
4157 return ERR_PTR(-ENOENT
);
4159 spin_lock_bh(&link_idr_lock
);
4160 /* before link is "settled", ID is 0, pretend it doesn't exist yet */
4161 link
= idr_find(&link_idr
, id
);
4164 link
= bpf_link_inc_not_zero(link
);
4166 link
= ERR_PTR(-EAGAIN
);
4168 link
= ERR_PTR(-ENOENT
);
4170 spin_unlock_bh(&link_idr_lock
);
4174 #define BPF_LINK_GET_FD_BY_ID_LAST_FIELD link_id
4176 static int bpf_link_get_fd_by_id(const union bpf_attr
*attr
)
4178 struct bpf_link
*link
;
4179 u32 id
= attr
->link_id
;
4182 if (CHECK_ATTR(BPF_LINK_GET_FD_BY_ID
))
4185 if (!capable(CAP_SYS_ADMIN
))
4188 link
= bpf_link_by_id(id
);
4190 return PTR_ERR(link
);
4192 fd
= bpf_link_new_fd(link
);
4199 DEFINE_MUTEX(bpf_stats_enabled_mutex
);
4201 static int bpf_stats_release(struct inode
*inode
, struct file
*file
)
4203 mutex_lock(&bpf_stats_enabled_mutex
);
4204 static_key_slow_dec(&bpf_stats_enabled_key
.key
);
4205 mutex_unlock(&bpf_stats_enabled_mutex
);
4209 static const struct file_operations bpf_stats_fops
= {
4210 .release
= bpf_stats_release
,
4213 static int bpf_enable_runtime_stats(void)
4217 mutex_lock(&bpf_stats_enabled_mutex
);
4219 /* Set a very high limit to avoid overflow */
4220 if (static_key_count(&bpf_stats_enabled_key
.key
) > INT_MAX
/ 2) {
4221 mutex_unlock(&bpf_stats_enabled_mutex
);
4225 fd
= anon_inode_getfd("bpf-stats", &bpf_stats_fops
, NULL
, O_CLOEXEC
);
4227 static_key_slow_inc(&bpf_stats_enabled_key
.key
);
4229 mutex_unlock(&bpf_stats_enabled_mutex
);
4233 #define BPF_ENABLE_STATS_LAST_FIELD enable_stats.type
4235 static int bpf_enable_stats(union bpf_attr
*attr
)
4238 if (CHECK_ATTR(BPF_ENABLE_STATS
))
4241 if (!capable(CAP_SYS_ADMIN
))
4244 switch (attr
->enable_stats
.type
) {
4245 case BPF_STATS_RUN_TIME
:
4246 return bpf_enable_runtime_stats();
4253 #define BPF_ITER_CREATE_LAST_FIELD iter_create.flags
4255 static int bpf_iter_create(union bpf_attr
*attr
)
4257 struct bpf_link
*link
;
4260 if (CHECK_ATTR(BPF_ITER_CREATE
))
4263 if (attr
->iter_create
.flags
)
4266 link
= bpf_link_get_from_fd(attr
->iter_create
.link_fd
);
4268 return PTR_ERR(link
);
4270 err
= bpf_iter_new_fd(link
);
4276 #define BPF_PROG_BIND_MAP_LAST_FIELD prog_bind_map.flags
4278 static int bpf_prog_bind_map(union bpf_attr
*attr
)
4280 struct bpf_prog
*prog
;
4281 struct bpf_map
*map
;
4282 struct bpf_map
**used_maps_old
, **used_maps_new
;
4285 if (CHECK_ATTR(BPF_PROG_BIND_MAP
))
4288 if (attr
->prog_bind_map
.flags
)
4291 prog
= bpf_prog_get(attr
->prog_bind_map
.prog_fd
);
4293 return PTR_ERR(prog
);
4295 map
= bpf_map_get(attr
->prog_bind_map
.map_fd
);
4301 mutex_lock(&prog
->aux
->used_maps_mutex
);
4303 used_maps_old
= prog
->aux
->used_maps
;
4305 for (i
= 0; i
< prog
->aux
->used_map_cnt
; i
++)
4306 if (used_maps_old
[i
] == map
) {
4311 used_maps_new
= kmalloc_array(prog
->aux
->used_map_cnt
+ 1,
4312 sizeof(used_maps_new
[0]),
4314 if (!used_maps_new
) {
4319 memcpy(used_maps_new
, used_maps_old
,
4320 sizeof(used_maps_old
[0]) * prog
->aux
->used_map_cnt
);
4321 used_maps_new
[prog
->aux
->used_map_cnt
] = map
;
4323 prog
->aux
->used_map_cnt
++;
4324 prog
->aux
->used_maps
= used_maps_new
;
4326 kfree(used_maps_old
);
4329 mutex_unlock(&prog
->aux
->used_maps_mutex
);
4338 SYSCALL_DEFINE3(bpf
, int, cmd
, union bpf_attr __user
*, uattr
, unsigned int, size
)
4340 union bpf_attr attr
;
4343 if (sysctl_unprivileged_bpf_disabled
&& !bpf_capable())
4346 err
= bpf_check_uarg_tail_zero(uattr
, sizeof(attr
), size
);
4349 size
= min_t(u32
, size
, sizeof(attr
));
4351 /* copy attributes from user space, may be less than sizeof(bpf_attr) */
4352 memset(&attr
, 0, sizeof(attr
));
4353 if (copy_from_user(&attr
, uattr
, size
) != 0)
4356 err
= security_bpf(cmd
, &attr
, size
);
4361 case BPF_MAP_CREATE
:
4362 err
= map_create(&attr
);
4364 case BPF_MAP_LOOKUP_ELEM
:
4365 err
= map_lookup_elem(&attr
);
4367 case BPF_MAP_UPDATE_ELEM
:
4368 err
= map_update_elem(&attr
);
4370 case BPF_MAP_DELETE_ELEM
:
4371 err
= map_delete_elem(&attr
);
4373 case BPF_MAP_GET_NEXT_KEY
:
4374 err
= map_get_next_key(&attr
);
4376 case BPF_MAP_FREEZE
:
4377 err
= map_freeze(&attr
);
4380 err
= bpf_prog_load(&attr
, uattr
);
4383 err
= bpf_obj_pin(&attr
);
4386 err
= bpf_obj_get(&attr
);
4388 case BPF_PROG_ATTACH
:
4389 err
= bpf_prog_attach(&attr
);
4391 case BPF_PROG_DETACH
:
4392 err
= bpf_prog_detach(&attr
);
4394 case BPF_PROG_QUERY
:
4395 err
= bpf_prog_query(&attr
, uattr
);
4397 case BPF_PROG_TEST_RUN
:
4398 err
= bpf_prog_test_run(&attr
, uattr
);
4400 case BPF_PROG_GET_NEXT_ID
:
4401 err
= bpf_obj_get_next_id(&attr
, uattr
,
4402 &prog_idr
, &prog_idr_lock
);
4404 case BPF_MAP_GET_NEXT_ID
:
4405 err
= bpf_obj_get_next_id(&attr
, uattr
,
4406 &map_idr
, &map_idr_lock
);
4408 case BPF_BTF_GET_NEXT_ID
:
4409 err
= bpf_obj_get_next_id(&attr
, uattr
,
4410 &btf_idr
, &btf_idr_lock
);
4412 case BPF_PROG_GET_FD_BY_ID
:
4413 err
= bpf_prog_get_fd_by_id(&attr
);
4415 case BPF_MAP_GET_FD_BY_ID
:
4416 err
= bpf_map_get_fd_by_id(&attr
);
4418 case BPF_OBJ_GET_INFO_BY_FD
:
4419 err
= bpf_obj_get_info_by_fd(&attr
, uattr
);
4421 case BPF_RAW_TRACEPOINT_OPEN
:
4422 err
= bpf_raw_tracepoint_open(&attr
);
4425 err
= bpf_btf_load(&attr
);
4427 case BPF_BTF_GET_FD_BY_ID
:
4428 err
= bpf_btf_get_fd_by_id(&attr
);
4430 case BPF_TASK_FD_QUERY
:
4431 err
= bpf_task_fd_query(&attr
, uattr
);
4433 case BPF_MAP_LOOKUP_AND_DELETE_ELEM
:
4434 err
= map_lookup_and_delete_elem(&attr
);
4436 case BPF_MAP_LOOKUP_BATCH
:
4437 err
= bpf_map_do_batch(&attr
, uattr
, BPF_MAP_LOOKUP_BATCH
);
4439 case BPF_MAP_LOOKUP_AND_DELETE_BATCH
:
4440 err
= bpf_map_do_batch(&attr
, uattr
,
4441 BPF_MAP_LOOKUP_AND_DELETE_BATCH
);
4443 case BPF_MAP_UPDATE_BATCH
:
4444 err
= bpf_map_do_batch(&attr
, uattr
, BPF_MAP_UPDATE_BATCH
);
4446 case BPF_MAP_DELETE_BATCH
:
4447 err
= bpf_map_do_batch(&attr
, uattr
, BPF_MAP_DELETE_BATCH
);
4449 case BPF_LINK_CREATE
:
4450 err
= link_create(&attr
);
4452 case BPF_LINK_UPDATE
:
4453 err
= link_update(&attr
);
4455 case BPF_LINK_GET_FD_BY_ID
:
4456 err
= bpf_link_get_fd_by_id(&attr
);
4458 case BPF_LINK_GET_NEXT_ID
:
4459 err
= bpf_obj_get_next_id(&attr
, uattr
,
4460 &link_idr
, &link_idr_lock
);
4462 case BPF_ENABLE_STATS
:
4463 err
= bpf_enable_stats(&attr
);
4465 case BPF_ITER_CREATE
:
4466 err
= bpf_iter_create(&attr
);
4468 case BPF_LINK_DETACH
:
4469 err
= link_detach(&attr
);
4471 case BPF_PROG_BIND_MAP
:
4472 err
= bpf_prog_bind_map(&attr
);