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