bpf, cgroups: clean up kerneldoc warnings
[linux-block.git] / kernel / bpf / syscall.c
CommitLineData
99c55f7d
AS
1/* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com
2 *
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of version 2 of the GNU General Public
5 * License as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful, but
8 * WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 * General Public License for more details.
11 */
12#include <linux/bpf.h>
a67edbf4 13#include <linux/bpf_trace.h>
f4364dcf 14#include <linux/bpf_lirc.h>
f56a653c 15#include <linux/btf.h>
99c55f7d
AS
16#include <linux/syscalls.h>
17#include <linux/slab.h>
3f07c014 18#include <linux/sched/signal.h>
d407bd25
DB
19#include <linux/vmalloc.h>
20#include <linux/mmzone.h>
99c55f7d 21#include <linux/anon_inodes.h>
41bdc4b4 22#include <linux/fdtable.h>
db20fd2b 23#include <linux/file.h>
41bdc4b4 24#include <linux/fs.h>
09756af4
AS
25#include <linux/license.h>
26#include <linux/filter.h>
2541517c 27#include <linux/version.h>
535e7b4b 28#include <linux/kernel.h>
dc4bb0e2 29#include <linux/idr.h>
cb4d2b3f
MKL
30#include <linux/cred.h>
31#include <linux/timekeeping.h>
32#include <linux/ctype.h>
9ef09e35 33#include <linux/nospec.h>
99c55f7d 34
14dc6f04
MKL
35#define IS_FD_ARRAY(map) ((map)->map_type == BPF_MAP_TYPE_PROG_ARRAY || \
36 (map)->map_type == BPF_MAP_TYPE_PERF_EVENT_ARRAY || \
37 (map)->map_type == BPF_MAP_TYPE_CGROUP_ARRAY || \
38 (map)->map_type == BPF_MAP_TYPE_ARRAY_OF_MAPS)
39#define IS_FD_HASH(map) ((map)->map_type == BPF_MAP_TYPE_HASH_OF_MAPS)
40#define IS_FD_MAP(map) (IS_FD_ARRAY(map) || IS_FD_HASH(map))
41
6e71b04a
CF
42#define BPF_OBJ_FLAG_MASK (BPF_F_RDONLY | BPF_F_WRONLY)
43
b121d1e7 44DEFINE_PER_CPU(int, bpf_prog_active);
dc4bb0e2
MKL
45static DEFINE_IDR(prog_idr);
46static DEFINE_SPINLOCK(prog_idr_lock);
f3f1c054
MKL
47static DEFINE_IDR(map_idr);
48static DEFINE_SPINLOCK(map_idr_lock);
b121d1e7 49
1be7f75d
AS
50int sysctl_unprivileged_bpf_disabled __read_mostly;
51
40077e0c
JB
52static const struct bpf_map_ops * const bpf_map_types[] = {
53#define BPF_PROG_TYPE(_id, _ops)
54#define BPF_MAP_TYPE(_id, _ops) \
55 [_id] = &_ops,
56#include <linux/bpf_types.h>
57#undef BPF_PROG_TYPE
58#undef BPF_MAP_TYPE
59};
99c55f7d 60
752ba56f
MS
61/*
62 * If we're handed a bigger struct than we know of, ensure all the unknown bits
63 * are 0 - i.e. new user-space does not rely on any kernel feature extensions
64 * we don't know about yet.
65 *
66 * There is a ToCToU between this function call and the following
67 * copy_from_user() call. However, this is not a concern since this function is
68 * meant to be a future-proofing of bits.
69 */
dcab51f1
MKL
70int bpf_check_uarg_tail_zero(void __user *uaddr,
71 size_t expected_size,
72 size_t actual_size)
58291a74
MS
73{
74 unsigned char __user *addr;
75 unsigned char __user *end;
76 unsigned char val;
77 int err;
78
752ba56f
MS
79 if (unlikely(actual_size > PAGE_SIZE)) /* silly large */
80 return -E2BIG;
81
96d4f267 82 if (unlikely(!access_ok(uaddr, actual_size)))
752ba56f
MS
83 return -EFAULT;
84
58291a74
MS
85 if (actual_size <= expected_size)
86 return 0;
87
88 addr = uaddr + expected_size;
89 end = uaddr + actual_size;
90
91 for (; addr < end; addr++) {
92 err = get_user(val, addr);
93 if (err)
94 return err;
95 if (val)
96 return -E2BIG;
97 }
98
99 return 0;
100}
101
a3884572
JK
102const struct bpf_map_ops bpf_map_offload_ops = {
103 .map_alloc = bpf_map_offload_map_alloc,
104 .map_free = bpf_map_offload_map_free,
e8d2bec0 105 .map_check_btf = map_check_no_btf,
a3884572
JK
106};
107
99c55f7d
AS
108static struct bpf_map *find_and_alloc_map(union bpf_attr *attr)
109{
1110f3a9 110 const struct bpf_map_ops *ops;
9ef09e35 111 u32 type = attr->map_type;
99c55f7d 112 struct bpf_map *map;
1110f3a9 113 int err;
99c55f7d 114
9ef09e35 115 if (type >= ARRAY_SIZE(bpf_map_types))
1110f3a9 116 return ERR_PTR(-EINVAL);
9ef09e35
MR
117 type = array_index_nospec(type, ARRAY_SIZE(bpf_map_types));
118 ops = bpf_map_types[type];
1110f3a9 119 if (!ops)
40077e0c 120 return ERR_PTR(-EINVAL);
99c55f7d 121
1110f3a9
JK
122 if (ops->map_alloc_check) {
123 err = ops->map_alloc_check(attr);
124 if (err)
125 return ERR_PTR(err);
126 }
a3884572
JK
127 if (attr->map_ifindex)
128 ops = &bpf_map_offload_ops;
1110f3a9 129 map = ops->map_alloc(attr);
40077e0c
JB
130 if (IS_ERR(map))
131 return map;
1110f3a9 132 map->ops = ops;
9ef09e35 133 map->map_type = type;
40077e0c 134 return map;
99c55f7d
AS
135}
136
96eabe7a 137void *bpf_map_area_alloc(size_t size, int numa_node)
d407bd25
DB
138{
139 /* We definitely need __GFP_NORETRY, so OOM killer doesn't
140 * trigger under memory pressure as we really just want to
141 * fail instead.
142 */
143 const gfp_t flags = __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO;
144 void *area;
145
146 if (size <= (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER)) {
96eabe7a 147 area = kmalloc_node(size, GFP_USER | flags, numa_node);
d407bd25
DB
148 if (area != NULL)
149 return area;
150 }
151
96eabe7a
MKL
152 return __vmalloc_node_flags_caller(size, numa_node, GFP_KERNEL | flags,
153 __builtin_return_address(0));
d407bd25
DB
154}
155
156void bpf_map_area_free(void *area)
157{
158 kvfree(area);
159}
160
bd475643
JK
161void bpf_map_init_from_attr(struct bpf_map *map, union bpf_attr *attr)
162{
163 map->map_type = attr->map_type;
164 map->key_size = attr->key_size;
165 map->value_size = attr->value_size;
166 map->max_entries = attr->max_entries;
167 map->map_flags = attr->map_flags;
168 map->numa_node = bpf_map_attr_numa_node(attr);
169}
170
6c905981
AS
171int bpf_map_precharge_memlock(u32 pages)
172{
173 struct user_struct *user = get_current_user();
174 unsigned long memlock_limit, cur;
175
176 memlock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
177 cur = atomic_long_read(&user->locked_vm);
178 free_uid(user);
179 if (cur + pages > memlock_limit)
180 return -EPERM;
181 return 0;
182}
183
0a4c58f5 184static int bpf_charge_memlock(struct user_struct *user, u32 pages)
aaac3ba9 185{
0a4c58f5 186 unsigned long memlock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
aaac3ba9 187
0a4c58f5
RG
188 if (atomic_long_add_return(pages, &user->locked_vm) > memlock_limit) {
189 atomic_long_sub(pages, &user->locked_vm);
190 return -EPERM;
191 }
192 return 0;
193}
aaac3ba9 194
0a4c58f5
RG
195static void bpf_uncharge_memlock(struct user_struct *user, u32 pages)
196{
197 atomic_long_sub(pages, &user->locked_vm);
198}
aaac3ba9 199
0a4c58f5
RG
200static int bpf_map_init_memlock(struct bpf_map *map)
201{
202 struct user_struct *user = get_current_user();
203 int ret;
aaac3ba9 204
0a4c58f5
RG
205 ret = bpf_charge_memlock(user, map->pages);
206 if (ret) {
aaac3ba9 207 free_uid(user);
0a4c58f5 208 return ret;
aaac3ba9
AS
209 }
210 map->user = user;
0a4c58f5 211 return ret;
aaac3ba9
AS
212}
213
0a4c58f5 214static void bpf_map_release_memlock(struct bpf_map *map)
aaac3ba9
AS
215{
216 struct user_struct *user = map->user;
0a4c58f5 217 bpf_uncharge_memlock(user, map->pages);
aaac3ba9
AS
218 free_uid(user);
219}
220
0a4c58f5
RG
221int bpf_map_charge_memlock(struct bpf_map *map, u32 pages)
222{
223 int ret;
224
225 ret = bpf_charge_memlock(map->user, pages);
226 if (ret)
227 return ret;
228 map->pages += pages;
229 return ret;
230}
231
232void bpf_map_uncharge_memlock(struct bpf_map *map, u32 pages)
233{
234 bpf_uncharge_memlock(map->user, pages);
235 map->pages -= pages;
236}
237
f3f1c054
MKL
238static int bpf_map_alloc_id(struct bpf_map *map)
239{
240 int id;
241
b76354cd 242 idr_preload(GFP_KERNEL);
f3f1c054
MKL
243 spin_lock_bh(&map_idr_lock);
244 id = idr_alloc_cyclic(&map_idr, map, 1, INT_MAX, GFP_ATOMIC);
245 if (id > 0)
246 map->id = id;
247 spin_unlock_bh(&map_idr_lock);
b76354cd 248 idr_preload_end();
f3f1c054
MKL
249
250 if (WARN_ON_ONCE(!id))
251 return -ENOSPC;
252
253 return id > 0 ? 0 : id;
254}
255
a3884572 256void bpf_map_free_id(struct bpf_map *map, bool do_idr_lock)
f3f1c054 257{
930651a7
ED
258 unsigned long flags;
259
a3884572
JK
260 /* Offloaded maps are removed from the IDR store when their device
261 * disappears - even if someone holds an fd to them they are unusable,
262 * the memory is gone, all ops will fail; they are simply waiting for
263 * refcnt to drop to be freed.
264 */
265 if (!map->id)
266 return;
267
bd5f5f4e 268 if (do_idr_lock)
930651a7 269 spin_lock_irqsave(&map_idr_lock, flags);
bd5f5f4e
MKL
270 else
271 __acquire(&map_idr_lock);
272
f3f1c054 273 idr_remove(&map_idr, map->id);
a3884572 274 map->id = 0;
bd5f5f4e
MKL
275
276 if (do_idr_lock)
930651a7 277 spin_unlock_irqrestore(&map_idr_lock, flags);
bd5f5f4e
MKL
278 else
279 __release(&map_idr_lock);
f3f1c054
MKL
280}
281
99c55f7d
AS
282/* called from workqueue */
283static void bpf_map_free_deferred(struct work_struct *work)
284{
285 struct bpf_map *map = container_of(work, struct bpf_map, work);
286
0a4c58f5 287 bpf_map_release_memlock(map);
afdb09c7 288 security_bpf_map_free(map);
99c55f7d
AS
289 /* implementation dependent freeing */
290 map->ops->map_free(map);
291}
292
c9da161c
DB
293static void bpf_map_put_uref(struct bpf_map *map)
294{
295 if (atomic_dec_and_test(&map->usercnt)) {
ba6b8de4
JF
296 if (map->ops->map_release_uref)
297 map->ops->map_release_uref(map);
c9da161c
DB
298 }
299}
300
99c55f7d
AS
301/* decrement map refcnt and schedule it for freeing via workqueue
302 * (unrelying map implementation ops->map_free() might sleep)
303 */
bd5f5f4e 304static void __bpf_map_put(struct bpf_map *map, bool do_idr_lock)
99c55f7d
AS
305{
306 if (atomic_dec_and_test(&map->refcnt)) {
34ad5580 307 /* bpf_map_free_id() must be called first */
bd5f5f4e 308 bpf_map_free_id(map, do_idr_lock);
78958fca 309 btf_put(map->btf);
99c55f7d
AS
310 INIT_WORK(&map->work, bpf_map_free_deferred);
311 schedule_work(&map->work);
312 }
313}
314
bd5f5f4e
MKL
315void bpf_map_put(struct bpf_map *map)
316{
317 __bpf_map_put(map, true);
318}
630a4d38 319EXPORT_SYMBOL_GPL(bpf_map_put);
bd5f5f4e 320
c9da161c 321void bpf_map_put_with_uref(struct bpf_map *map)
99c55f7d 322{
c9da161c 323 bpf_map_put_uref(map);
99c55f7d 324 bpf_map_put(map);
c9da161c
DB
325}
326
327static int bpf_map_release(struct inode *inode, struct file *filp)
328{
61d1b6a4
DB
329 struct bpf_map *map = filp->private_data;
330
331 if (map->ops->map_release)
332 map->ops->map_release(map, filp);
333
334 bpf_map_put_with_uref(map);
99c55f7d
AS
335 return 0;
336}
337
f99bf205
DB
338#ifdef CONFIG_PROC_FS
339static void bpf_map_show_fdinfo(struct seq_file *m, struct file *filp)
340{
341 const struct bpf_map *map = filp->private_data;
21116b70
DB
342 const struct bpf_array *array;
343 u32 owner_prog_type = 0;
9780c0ab 344 u32 owner_jited = 0;
21116b70
DB
345
346 if (map->map_type == BPF_MAP_TYPE_PROG_ARRAY) {
347 array = container_of(map, struct bpf_array, map);
348 owner_prog_type = array->owner_prog_type;
9780c0ab 349 owner_jited = array->owner_jited;
21116b70 350 }
f99bf205
DB
351
352 seq_printf(m,
353 "map_type:\t%u\n"
354 "key_size:\t%u\n"
355 "value_size:\t%u\n"
322cea2f 356 "max_entries:\t%u\n"
21116b70 357 "map_flags:\t%#x\n"
4316b409
DB
358 "memlock:\t%llu\n"
359 "map_id:\t%u\n",
f99bf205
DB
360 map->map_type,
361 map->key_size,
362 map->value_size,
322cea2f 363 map->max_entries,
21116b70 364 map->map_flags,
4316b409
DB
365 map->pages * 1ULL << PAGE_SHIFT,
366 map->id);
21116b70 367
9780c0ab 368 if (owner_prog_type) {
21116b70
DB
369 seq_printf(m, "owner_prog_type:\t%u\n",
370 owner_prog_type);
9780c0ab
DB
371 seq_printf(m, "owner_jited:\t%u\n",
372 owner_jited);
373 }
f99bf205
DB
374}
375#endif
376
6e71b04a
CF
377static ssize_t bpf_dummy_read(struct file *filp, char __user *buf, size_t siz,
378 loff_t *ppos)
379{
380 /* We need this handler such that alloc_file() enables
381 * f_mode with FMODE_CAN_READ.
382 */
383 return -EINVAL;
384}
385
386static ssize_t bpf_dummy_write(struct file *filp, const char __user *buf,
387 size_t siz, loff_t *ppos)
388{
389 /* We need this handler such that alloc_file() enables
390 * f_mode with FMODE_CAN_WRITE.
391 */
392 return -EINVAL;
393}
394
f66e448c 395const struct file_operations bpf_map_fops = {
f99bf205
DB
396#ifdef CONFIG_PROC_FS
397 .show_fdinfo = bpf_map_show_fdinfo,
398#endif
399 .release = bpf_map_release,
6e71b04a
CF
400 .read = bpf_dummy_read,
401 .write = bpf_dummy_write,
99c55f7d
AS
402};
403
6e71b04a 404int bpf_map_new_fd(struct bpf_map *map, int flags)
aa79781b 405{
afdb09c7
CF
406 int ret;
407
408 ret = security_bpf_map(map, OPEN_FMODE(flags));
409 if (ret < 0)
410 return ret;
411
aa79781b 412 return anon_inode_getfd("bpf-map", &bpf_map_fops, map,
6e71b04a
CF
413 flags | O_CLOEXEC);
414}
415
416int bpf_get_file_flag(int flags)
417{
418 if ((flags & BPF_F_RDONLY) && (flags & BPF_F_WRONLY))
419 return -EINVAL;
420 if (flags & BPF_F_RDONLY)
421 return O_RDONLY;
422 if (flags & BPF_F_WRONLY)
423 return O_WRONLY;
424 return O_RDWR;
aa79781b
DB
425}
426
99c55f7d
AS
427/* helper macro to check that unused fields 'union bpf_attr' are zero */
428#define CHECK_ATTR(CMD) \
429 memchr_inv((void *) &attr->CMD##_LAST_FIELD + \
430 sizeof(attr->CMD##_LAST_FIELD), 0, \
431 sizeof(*attr) - \
432 offsetof(union bpf_attr, CMD##_LAST_FIELD) - \
433 sizeof(attr->CMD##_LAST_FIELD)) != NULL
434
cb4d2b3f
MKL
435/* dst and src must have at least BPF_OBJ_NAME_LEN number of bytes.
436 * Return 0 on success and < 0 on error.
437 */
438static int bpf_obj_name_cpy(char *dst, const char *src)
439{
440 const char *end = src + BPF_OBJ_NAME_LEN;
441
473d9734
MKL
442 memset(dst, 0, BPF_OBJ_NAME_LEN);
443
cb4d2b3f
MKL
444 /* Copy all isalnum() and '_' char */
445 while (src < end && *src) {
446 if (!isalnum(*src) && *src != '_')
447 return -EINVAL;
448 *dst++ = *src++;
449 }
450
451 /* No '\0' found in BPF_OBJ_NAME_LEN number of bytes */
452 if (src == end)
453 return -EINVAL;
454
cb4d2b3f
MKL
455 return 0;
456}
457
e8d2bec0 458int map_check_no_btf(const struct bpf_map *map,
1b2b234b 459 const struct btf *btf,
e8d2bec0
DB
460 const struct btf_type *key_type,
461 const struct btf_type *value_type)
462{
463 return -ENOTSUPP;
464}
465
466static int map_check_btf(const struct bpf_map *map, const struct btf *btf,
467 u32 btf_key_id, u32 btf_value_id)
468{
469 const struct btf_type *key_type, *value_type;
470 u32 key_size, value_size;
471 int ret = 0;
472
473 key_type = btf_type_id_size(btf, &btf_key_id, &key_size);
474 if (!key_type || key_size != map->key_size)
475 return -EINVAL;
476
477 value_type = btf_type_id_size(btf, &btf_value_id, &value_size);
478 if (!value_type || value_size != map->value_size)
479 return -EINVAL;
480
481 if (map->ops->map_check_btf)
1b2b234b 482 ret = map->ops->map_check_btf(map, btf, key_type, value_type);
e8d2bec0
DB
483
484 return ret;
485}
486
9b2cf328 487#define BPF_MAP_CREATE_LAST_FIELD btf_value_type_id
99c55f7d
AS
488/* called via syscall */
489static int map_create(union bpf_attr *attr)
490{
96eabe7a 491 int numa_node = bpf_map_attr_numa_node(attr);
99c55f7d 492 struct bpf_map *map;
6e71b04a 493 int f_flags;
99c55f7d
AS
494 int err;
495
496 err = CHECK_ATTR(BPF_MAP_CREATE);
497 if (err)
498 return -EINVAL;
499
6e71b04a
CF
500 f_flags = bpf_get_file_flag(attr->map_flags);
501 if (f_flags < 0)
502 return f_flags;
503
96eabe7a 504 if (numa_node != NUMA_NO_NODE &&
96e5ae4e
ED
505 ((unsigned int)numa_node >= nr_node_ids ||
506 !node_online(numa_node)))
96eabe7a
MKL
507 return -EINVAL;
508
99c55f7d
AS
509 /* find map type and init map: hashtable vs rbtree vs bloom vs ... */
510 map = find_and_alloc_map(attr);
511 if (IS_ERR(map))
512 return PTR_ERR(map);
513
ad5b177b
MKL
514 err = bpf_obj_name_cpy(map->name, attr->map_name);
515 if (err)
516 goto free_map_nouncharge;
517
99c55f7d 518 atomic_set(&map->refcnt, 1);
c9da161c 519 atomic_set(&map->usercnt, 1);
99c55f7d 520
e8d2bec0 521 if (attr->btf_key_type_id || attr->btf_value_type_id) {
a26ca7c9
MKL
522 struct btf *btf;
523
9b2cf328 524 if (!attr->btf_key_type_id || !attr->btf_value_type_id) {
a26ca7c9
MKL
525 err = -EINVAL;
526 goto free_map_nouncharge;
527 }
528
529 btf = btf_get_by_fd(attr->btf_fd);
530 if (IS_ERR(btf)) {
531 err = PTR_ERR(btf);
532 goto free_map_nouncharge;
533 }
534
e8d2bec0
DB
535 err = map_check_btf(map, btf, attr->btf_key_type_id,
536 attr->btf_value_type_id);
a26ca7c9
MKL
537 if (err) {
538 btf_put(btf);
539 goto free_map_nouncharge;
540 }
541
542 map->btf = btf;
9b2cf328
MKL
543 map->btf_key_type_id = attr->btf_key_type_id;
544 map->btf_value_type_id = attr->btf_value_type_id;
a26ca7c9
MKL
545 }
546
afdb09c7 547 err = security_bpf_map_alloc(map);
aaac3ba9 548 if (err)
20b2b24f 549 goto free_map_nouncharge;
aaac3ba9 550
0a4c58f5 551 err = bpf_map_init_memlock(map);
afdb09c7
CF
552 if (err)
553 goto free_map_sec;
554
f3f1c054
MKL
555 err = bpf_map_alloc_id(map);
556 if (err)
557 goto free_map;
558
6e71b04a 559 err = bpf_map_new_fd(map, f_flags);
bd5f5f4e
MKL
560 if (err < 0) {
561 /* failed to allocate fd.
562 * bpf_map_put() is needed because the above
563 * bpf_map_alloc_id() has published the map
564 * to the userspace and the userspace may
565 * have refcnt-ed it through BPF_MAP_GET_FD_BY_ID.
566 */
567 bpf_map_put(map);
568 return err;
569 }
99c55f7d
AS
570
571 return err;
572
573free_map:
0a4c58f5 574 bpf_map_release_memlock(map);
afdb09c7
CF
575free_map_sec:
576 security_bpf_map_free(map);
20b2b24f 577free_map_nouncharge:
a26ca7c9 578 btf_put(map->btf);
99c55f7d
AS
579 map->ops->map_free(map);
580 return err;
581}
582
db20fd2b
AS
583/* if error is returned, fd is released.
584 * On success caller should complete fd access with matching fdput()
585 */
c2101297 586struct bpf_map *__bpf_map_get(struct fd f)
db20fd2b 587{
db20fd2b
AS
588 if (!f.file)
589 return ERR_PTR(-EBADF);
db20fd2b
AS
590 if (f.file->f_op != &bpf_map_fops) {
591 fdput(f);
592 return ERR_PTR(-EINVAL);
593 }
594
c2101297
DB
595 return f.file->private_data;
596}
597
92117d84
AS
598/* prog's and map's refcnt limit */
599#define BPF_MAX_REFCNT 32768
600
601struct bpf_map *bpf_map_inc(struct bpf_map *map, bool uref)
c9da161c 602{
92117d84
AS
603 if (atomic_inc_return(&map->refcnt) > BPF_MAX_REFCNT) {
604 atomic_dec(&map->refcnt);
605 return ERR_PTR(-EBUSY);
606 }
c9da161c
DB
607 if (uref)
608 atomic_inc(&map->usercnt);
92117d84 609 return map;
c9da161c 610}
630a4d38 611EXPORT_SYMBOL_GPL(bpf_map_inc);
c9da161c
DB
612
613struct bpf_map *bpf_map_get_with_uref(u32 ufd)
c2101297
DB
614{
615 struct fd f = fdget(ufd);
616 struct bpf_map *map;
617
618 map = __bpf_map_get(f);
619 if (IS_ERR(map))
620 return map;
621
92117d84 622 map = bpf_map_inc(map, true);
c2101297 623 fdput(f);
db20fd2b
AS
624
625 return map;
626}
627
bd5f5f4e
MKL
628/* map_idr_lock should have been held */
629static struct bpf_map *bpf_map_inc_not_zero(struct bpf_map *map,
630 bool uref)
631{
632 int refold;
633
bfc18e38 634 refold = atomic_fetch_add_unless(&map->refcnt, 1, 0);
bd5f5f4e
MKL
635
636 if (refold >= BPF_MAX_REFCNT) {
637 __bpf_map_put(map, false);
638 return ERR_PTR(-EBUSY);
639 }
640
641 if (!refold)
642 return ERR_PTR(-ENOENT);
643
644 if (uref)
645 atomic_inc(&map->usercnt);
646
647 return map;
648}
649
b8cdc051
AS
650int __weak bpf_stackmap_copy(struct bpf_map *map, void *key, void *value)
651{
652 return -ENOTSUPP;
653}
654
c9d29f46
MV
655static void *__bpf_copy_key(void __user *ukey, u64 key_size)
656{
657 if (key_size)
658 return memdup_user(ukey, key_size);
659
660 if (ukey)
661 return ERR_PTR(-EINVAL);
662
663 return NULL;
664}
665
db20fd2b
AS
666/* last field in 'union bpf_attr' used by this command */
667#define BPF_MAP_LOOKUP_ELEM_LAST_FIELD value
668
669static int map_lookup_elem(union bpf_attr *attr)
670{
535e7b4b
MS
671 void __user *ukey = u64_to_user_ptr(attr->key);
672 void __user *uvalue = u64_to_user_ptr(attr->value);
db20fd2b 673 int ufd = attr->map_fd;
db20fd2b 674 struct bpf_map *map;
8ebe667c 675 void *key, *value, *ptr;
15a07b33 676 u32 value_size;
592867bf 677 struct fd f;
db20fd2b
AS
678 int err;
679
680 if (CHECK_ATTR(BPF_MAP_LOOKUP_ELEM))
681 return -EINVAL;
682
592867bf 683 f = fdget(ufd);
c2101297 684 map = __bpf_map_get(f);
db20fd2b
AS
685 if (IS_ERR(map))
686 return PTR_ERR(map);
687
6e71b04a
CF
688 if (!(f.file->f_mode & FMODE_CAN_READ)) {
689 err = -EPERM;
690 goto err_put;
691 }
692
c9d29f46 693 key = __bpf_copy_key(ukey, map->key_size);
e4448ed8
AV
694 if (IS_ERR(key)) {
695 err = PTR_ERR(key);
db20fd2b 696 goto err_put;
e4448ed8 697 }
db20fd2b 698
15a07b33 699 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
8f844938 700 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH ||
b741f163
RG
701 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY ||
702 map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE)
15a07b33 703 value_size = round_up(map->value_size, 8) * num_possible_cpus();
14dc6f04
MKL
704 else if (IS_FD_MAP(map))
705 value_size = sizeof(u32);
15a07b33
AS
706 else
707 value_size = map->value_size;
708
8ebe667c 709 err = -ENOMEM;
15a07b33 710 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
db20fd2b 711 if (!value)
8ebe667c
AS
712 goto free_key;
713
a3884572
JK
714 if (bpf_map_is_dev_bound(map)) {
715 err = bpf_map_offload_lookup_elem(map, key, value);
716 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
717 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) {
15a07b33
AS
718 err = bpf_percpu_hash_copy(map, key, value);
719 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) {
720 err = bpf_percpu_array_copy(map, key, value);
b741f163
RG
721 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) {
722 err = bpf_percpu_cgroup_storage_copy(map, key, value);
557c0c6e
AS
723 } else if (map->map_type == BPF_MAP_TYPE_STACK_TRACE) {
724 err = bpf_stackmap_copy(map, key, value);
14dc6f04
MKL
725 } else if (IS_FD_ARRAY(map)) {
726 err = bpf_fd_array_map_lookup_elem(map, key, value);
727 } else if (IS_FD_HASH(map)) {
728 err = bpf_fd_htab_map_lookup_elem(map, key, value);
5dc4c4b7
MKL
729 } else if (map->map_type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY) {
730 err = bpf_fd_reuseport_array_lookup_elem(map, key, value);
f1a2e44a
MV
731 } else if (map->map_type == BPF_MAP_TYPE_QUEUE ||
732 map->map_type == BPF_MAP_TYPE_STACK) {
733 err = map->ops->map_peek_elem(map, value);
15a07b33
AS
734 } else {
735 rcu_read_lock();
736 ptr = map->ops->map_lookup_elem(map, key);
509db283
PB
737 if (IS_ERR(ptr)) {
738 err = PTR_ERR(ptr);
739 } else if (!ptr) {
740 err = -ENOENT;
741 } else {
742 err = 0;
15a07b33 743 memcpy(value, ptr, value_size);
509db283 744 }
15a07b33 745 rcu_read_unlock();
15a07b33 746 }
8ebe667c 747
15a07b33 748 if (err)
8ebe667c 749 goto free_value;
db20fd2b
AS
750
751 err = -EFAULT;
15a07b33 752 if (copy_to_user(uvalue, value, value_size) != 0)
8ebe667c 753 goto free_value;
db20fd2b
AS
754
755 err = 0;
756
8ebe667c
AS
757free_value:
758 kfree(value);
db20fd2b
AS
759free_key:
760 kfree(key);
761err_put:
762 fdput(f);
763 return err;
764}
765
1ae80cf3
DC
766static void maybe_wait_bpf_programs(struct bpf_map *map)
767{
768 /* Wait for any running BPF programs to complete so that
769 * userspace, when we return to it, knows that all programs
770 * that could be running use the new map value.
771 */
772 if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS ||
773 map->map_type == BPF_MAP_TYPE_ARRAY_OF_MAPS)
774 synchronize_rcu();
775}
776
3274f520 777#define BPF_MAP_UPDATE_ELEM_LAST_FIELD flags
db20fd2b
AS
778
779static int map_update_elem(union bpf_attr *attr)
780{
535e7b4b
MS
781 void __user *ukey = u64_to_user_ptr(attr->key);
782 void __user *uvalue = u64_to_user_ptr(attr->value);
db20fd2b 783 int ufd = attr->map_fd;
db20fd2b
AS
784 struct bpf_map *map;
785 void *key, *value;
15a07b33 786 u32 value_size;
592867bf 787 struct fd f;
db20fd2b
AS
788 int err;
789
790 if (CHECK_ATTR(BPF_MAP_UPDATE_ELEM))
791 return -EINVAL;
792
592867bf 793 f = fdget(ufd);
c2101297 794 map = __bpf_map_get(f);
db20fd2b
AS
795 if (IS_ERR(map))
796 return PTR_ERR(map);
797
6e71b04a
CF
798 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
799 err = -EPERM;
800 goto err_put;
801 }
802
c9d29f46 803 key = __bpf_copy_key(ukey, map->key_size);
e4448ed8
AV
804 if (IS_ERR(key)) {
805 err = PTR_ERR(key);
db20fd2b 806 goto err_put;
e4448ed8 807 }
db20fd2b 808
15a07b33 809 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
8f844938 810 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH ||
b741f163
RG
811 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY ||
812 map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE)
15a07b33
AS
813 value_size = round_up(map->value_size, 8) * num_possible_cpus();
814 else
815 value_size = map->value_size;
816
db20fd2b 817 err = -ENOMEM;
15a07b33 818 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
db20fd2b
AS
819 if (!value)
820 goto free_key;
821
822 err = -EFAULT;
15a07b33 823 if (copy_from_user(value, uvalue, value_size) != 0)
db20fd2b
AS
824 goto free_value;
825
6710e112 826 /* Need to create a kthread, thus must support schedule */
a3884572
JK
827 if (bpf_map_is_dev_bound(map)) {
828 err = bpf_map_offload_update_elem(map, key, value, attr->flags);
829 goto out;
99ba2b5a
JF
830 } else if (map->map_type == BPF_MAP_TYPE_CPUMAP ||
831 map->map_type == BPF_MAP_TYPE_SOCKHASH ||
832 map->map_type == BPF_MAP_TYPE_SOCKMAP) {
6710e112
JDB
833 err = map->ops->map_update_elem(map, key, value, attr->flags);
834 goto out;
835 }
836
b121d1e7
AS
837 /* must increment bpf_prog_active to avoid kprobe+bpf triggering from
838 * inside bpf map update or delete otherwise deadlocks are possible
839 */
840 preempt_disable();
841 __this_cpu_inc(bpf_prog_active);
8f844938
MKL
842 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
843 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) {
15a07b33
AS
844 err = bpf_percpu_hash_update(map, key, value, attr->flags);
845 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) {
846 err = bpf_percpu_array_update(map, key, value, attr->flags);
b741f163
RG
847 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) {
848 err = bpf_percpu_cgroup_storage_update(map, key, value,
849 attr->flags);
9c147b56 850 } else if (IS_FD_ARRAY(map)) {
d056a788
DB
851 rcu_read_lock();
852 err = bpf_fd_array_map_update_elem(map, f.file, key, value,
853 attr->flags);
854 rcu_read_unlock();
bcc6b1b7
MKL
855 } else if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS) {
856 rcu_read_lock();
857 err = bpf_fd_htab_map_update_elem(map, f.file, key, value,
858 attr->flags);
859 rcu_read_unlock();
5dc4c4b7
MKL
860 } else if (map->map_type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY) {
861 /* rcu_read_lock() is not needed */
862 err = bpf_fd_reuseport_array_update_elem(map, key, value,
863 attr->flags);
f1a2e44a
MV
864 } else if (map->map_type == BPF_MAP_TYPE_QUEUE ||
865 map->map_type == BPF_MAP_TYPE_STACK) {
866 err = map->ops->map_push_elem(map, value, attr->flags);
15a07b33
AS
867 } else {
868 rcu_read_lock();
869 err = map->ops->map_update_elem(map, key, value, attr->flags);
870 rcu_read_unlock();
871 }
b121d1e7
AS
872 __this_cpu_dec(bpf_prog_active);
873 preempt_enable();
1ae80cf3 874 maybe_wait_bpf_programs(map);
6710e112 875out:
db20fd2b
AS
876free_value:
877 kfree(value);
878free_key:
879 kfree(key);
880err_put:
881 fdput(f);
882 return err;
883}
884
885#define BPF_MAP_DELETE_ELEM_LAST_FIELD key
886
887static int map_delete_elem(union bpf_attr *attr)
888{
535e7b4b 889 void __user *ukey = u64_to_user_ptr(attr->key);
db20fd2b 890 int ufd = attr->map_fd;
db20fd2b 891 struct bpf_map *map;
592867bf 892 struct fd f;
db20fd2b
AS
893 void *key;
894 int err;
895
896 if (CHECK_ATTR(BPF_MAP_DELETE_ELEM))
897 return -EINVAL;
898
592867bf 899 f = fdget(ufd);
c2101297 900 map = __bpf_map_get(f);
db20fd2b
AS
901 if (IS_ERR(map))
902 return PTR_ERR(map);
903
6e71b04a
CF
904 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
905 err = -EPERM;
906 goto err_put;
907 }
908
c9d29f46 909 key = __bpf_copy_key(ukey, map->key_size);
e4448ed8
AV
910 if (IS_ERR(key)) {
911 err = PTR_ERR(key);
db20fd2b 912 goto err_put;
e4448ed8 913 }
db20fd2b 914
a3884572
JK
915 if (bpf_map_is_dev_bound(map)) {
916 err = bpf_map_offload_delete_elem(map, key);
917 goto out;
918 }
919
b121d1e7
AS
920 preempt_disable();
921 __this_cpu_inc(bpf_prog_active);
db20fd2b
AS
922 rcu_read_lock();
923 err = map->ops->map_delete_elem(map, key);
924 rcu_read_unlock();
b121d1e7
AS
925 __this_cpu_dec(bpf_prog_active);
926 preempt_enable();
1ae80cf3 927 maybe_wait_bpf_programs(map);
a3884572 928out:
db20fd2b
AS
929 kfree(key);
930err_put:
931 fdput(f);
932 return err;
933}
934
935/* last field in 'union bpf_attr' used by this command */
936#define BPF_MAP_GET_NEXT_KEY_LAST_FIELD next_key
937
938static int map_get_next_key(union bpf_attr *attr)
939{
535e7b4b
MS
940 void __user *ukey = u64_to_user_ptr(attr->key);
941 void __user *unext_key = u64_to_user_ptr(attr->next_key);
db20fd2b 942 int ufd = attr->map_fd;
db20fd2b
AS
943 struct bpf_map *map;
944 void *key, *next_key;
592867bf 945 struct fd f;
db20fd2b
AS
946 int err;
947
948 if (CHECK_ATTR(BPF_MAP_GET_NEXT_KEY))
949 return -EINVAL;
950
592867bf 951 f = fdget(ufd);
c2101297 952 map = __bpf_map_get(f);
db20fd2b
AS
953 if (IS_ERR(map))
954 return PTR_ERR(map);
955
6e71b04a
CF
956 if (!(f.file->f_mode & FMODE_CAN_READ)) {
957 err = -EPERM;
958 goto err_put;
959 }
960
8fe45924 961 if (ukey) {
c9d29f46 962 key = __bpf_copy_key(ukey, map->key_size);
e4448ed8
AV
963 if (IS_ERR(key)) {
964 err = PTR_ERR(key);
8fe45924 965 goto err_put;
e4448ed8 966 }
8fe45924
TQ
967 } else {
968 key = NULL;
969 }
db20fd2b
AS
970
971 err = -ENOMEM;
972 next_key = kmalloc(map->key_size, GFP_USER);
973 if (!next_key)
974 goto free_key;
975
a3884572
JK
976 if (bpf_map_is_dev_bound(map)) {
977 err = bpf_map_offload_get_next_key(map, key, next_key);
978 goto out;
979 }
980
db20fd2b
AS
981 rcu_read_lock();
982 err = map->ops->map_get_next_key(map, key, next_key);
983 rcu_read_unlock();
a3884572 984out:
db20fd2b
AS
985 if (err)
986 goto free_next_key;
987
988 err = -EFAULT;
989 if (copy_to_user(unext_key, next_key, map->key_size) != 0)
990 goto free_next_key;
991
992 err = 0;
993
994free_next_key:
995 kfree(next_key);
996free_key:
997 kfree(key);
998err_put:
999 fdput(f);
1000 return err;
1001}
1002
bd513cd0
MV
1003#define BPF_MAP_LOOKUP_AND_DELETE_ELEM_LAST_FIELD value
1004
1005static int map_lookup_and_delete_elem(union bpf_attr *attr)
1006{
1007 void __user *ukey = u64_to_user_ptr(attr->key);
1008 void __user *uvalue = u64_to_user_ptr(attr->value);
1009 int ufd = attr->map_fd;
1010 struct bpf_map *map;
540fefc0 1011 void *key, *value;
bd513cd0
MV
1012 u32 value_size;
1013 struct fd f;
1014 int err;
1015
1016 if (CHECK_ATTR(BPF_MAP_LOOKUP_AND_DELETE_ELEM))
1017 return -EINVAL;
1018
1019 f = fdget(ufd);
1020 map = __bpf_map_get(f);
1021 if (IS_ERR(map))
1022 return PTR_ERR(map);
1023
1024 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
1025 err = -EPERM;
1026 goto err_put;
1027 }
1028
1029 key = __bpf_copy_key(ukey, map->key_size);
1030 if (IS_ERR(key)) {
1031 err = PTR_ERR(key);
1032 goto err_put;
1033 }
1034
1035 value_size = map->value_size;
1036
1037 err = -ENOMEM;
1038 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
1039 if (!value)
1040 goto free_key;
1041
1042 if (map->map_type == BPF_MAP_TYPE_QUEUE ||
1043 map->map_type == BPF_MAP_TYPE_STACK) {
1044 err = map->ops->map_pop_elem(map, value);
1045 } else {
1046 err = -ENOTSUPP;
1047 }
1048
1049 if (err)
1050 goto free_value;
1051
1052 if (copy_to_user(uvalue, value, value_size) != 0)
1053 goto free_value;
1054
1055 err = 0;
1056
1057free_value:
1058 kfree(value);
1059free_key:
1060 kfree(key);
1061err_put:
1062 fdput(f);
1063 return err;
1064}
1065
7de16e3a
JK
1066static const struct bpf_prog_ops * const bpf_prog_types[] = {
1067#define BPF_PROG_TYPE(_id, _name) \
1068 [_id] = & _name ## _prog_ops,
1069#define BPF_MAP_TYPE(_id, _ops)
1070#include <linux/bpf_types.h>
1071#undef BPF_PROG_TYPE
1072#undef BPF_MAP_TYPE
1073};
1074
09756af4
AS
1075static int find_prog_type(enum bpf_prog_type type, struct bpf_prog *prog)
1076{
d0f1a451
DB
1077 const struct bpf_prog_ops *ops;
1078
1079 if (type >= ARRAY_SIZE(bpf_prog_types))
1080 return -EINVAL;
1081 type = array_index_nospec(type, ARRAY_SIZE(bpf_prog_types));
1082 ops = bpf_prog_types[type];
1083 if (!ops)
be9370a7 1084 return -EINVAL;
09756af4 1085
ab3f0063 1086 if (!bpf_prog_is_dev_bound(prog->aux))
d0f1a451 1087 prog->aux->ops = ops;
ab3f0063
JK
1088 else
1089 prog->aux->ops = &bpf_offload_prog_ops;
be9370a7
JB
1090 prog->type = type;
1091 return 0;
09756af4
AS
1092}
1093
1094/* drop refcnt on maps used by eBPF program and free auxilary data */
1095static void free_used_maps(struct bpf_prog_aux *aux)
1096{
8bad74f9 1097 enum bpf_cgroup_storage_type stype;
09756af4
AS
1098 int i;
1099
8bad74f9
RG
1100 for_each_cgroup_storage_type(stype) {
1101 if (!aux->cgroup_storage[stype])
1102 continue;
1103 bpf_cgroup_storage_release(aux->prog,
1104 aux->cgroup_storage[stype]);
1105 }
de9cbbaa 1106
09756af4
AS
1107 for (i = 0; i < aux->used_map_cnt; i++)
1108 bpf_map_put(aux->used_maps[i]);
1109
1110 kfree(aux->used_maps);
1111}
1112
5ccb071e
DB
1113int __bpf_prog_charge(struct user_struct *user, u32 pages)
1114{
1115 unsigned long memlock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1116 unsigned long user_bufs;
1117
1118 if (user) {
1119 user_bufs = atomic_long_add_return(pages, &user->locked_vm);
1120 if (user_bufs > memlock_limit) {
1121 atomic_long_sub(pages, &user->locked_vm);
1122 return -EPERM;
1123 }
1124 }
1125
1126 return 0;
1127}
1128
1129void __bpf_prog_uncharge(struct user_struct *user, u32 pages)
1130{
1131 if (user)
1132 atomic_long_sub(pages, &user->locked_vm);
1133}
1134
aaac3ba9
AS
1135static int bpf_prog_charge_memlock(struct bpf_prog *prog)
1136{
1137 struct user_struct *user = get_current_user();
5ccb071e 1138 int ret;
aaac3ba9 1139
5ccb071e
DB
1140 ret = __bpf_prog_charge(user, prog->pages);
1141 if (ret) {
aaac3ba9 1142 free_uid(user);
5ccb071e 1143 return ret;
aaac3ba9 1144 }
5ccb071e 1145
aaac3ba9
AS
1146 prog->aux->user = user;
1147 return 0;
1148}
1149
1150static void bpf_prog_uncharge_memlock(struct bpf_prog *prog)
1151{
1152 struct user_struct *user = prog->aux->user;
1153
5ccb071e 1154 __bpf_prog_uncharge(user, prog->pages);
aaac3ba9
AS
1155 free_uid(user);
1156}
1157
dc4bb0e2
MKL
1158static int bpf_prog_alloc_id(struct bpf_prog *prog)
1159{
1160 int id;
1161
b76354cd 1162 idr_preload(GFP_KERNEL);
dc4bb0e2
MKL
1163 spin_lock_bh(&prog_idr_lock);
1164 id = idr_alloc_cyclic(&prog_idr, prog, 1, INT_MAX, GFP_ATOMIC);
1165 if (id > 0)
1166 prog->aux->id = id;
1167 spin_unlock_bh(&prog_idr_lock);
b76354cd 1168 idr_preload_end();
dc4bb0e2
MKL
1169
1170 /* id is in [1, INT_MAX) */
1171 if (WARN_ON_ONCE(!id))
1172 return -ENOSPC;
1173
1174 return id > 0 ? 0 : id;
1175}
1176
ad8ad79f 1177void bpf_prog_free_id(struct bpf_prog *prog, bool do_idr_lock)
dc4bb0e2 1178{
ad8ad79f
JK
1179 /* cBPF to eBPF migrations are currently not in the idr store.
1180 * Offloaded programs are removed from the store when their device
1181 * disappears - even if someone grabs an fd to them they are unusable,
1182 * simply waiting for refcnt to drop to be freed.
1183 */
dc4bb0e2
MKL
1184 if (!prog->aux->id)
1185 return;
1186
b16d9aa4
MKL
1187 if (do_idr_lock)
1188 spin_lock_bh(&prog_idr_lock);
1189 else
1190 __acquire(&prog_idr_lock);
1191
dc4bb0e2 1192 idr_remove(&prog_idr, prog->aux->id);
ad8ad79f 1193 prog->aux->id = 0;
b16d9aa4
MKL
1194
1195 if (do_idr_lock)
1196 spin_unlock_bh(&prog_idr_lock);
1197 else
1198 __release(&prog_idr_lock);
dc4bb0e2
MKL
1199}
1200
1aacde3d 1201static void __bpf_prog_put_rcu(struct rcu_head *rcu)
abf2e7d6
AS
1202{
1203 struct bpf_prog_aux *aux = container_of(rcu, struct bpf_prog_aux, rcu);
1204
1205 free_used_maps(aux);
aaac3ba9 1206 bpf_prog_uncharge_memlock(aux->prog);
afdb09c7 1207 security_bpf_prog_free(aux);
abf2e7d6
AS
1208 bpf_prog_free(aux->prog);
1209}
1210
b16d9aa4 1211static void __bpf_prog_put(struct bpf_prog *prog, bool do_idr_lock)
09756af4 1212{
a67edbf4 1213 if (atomic_dec_and_test(&prog->aux->refcnt)) {
34ad5580 1214 /* bpf_prog_free_id() must be called first */
b16d9aa4 1215 bpf_prog_free_id(prog, do_idr_lock);
7d1982b4 1216 bpf_prog_kallsyms_del_all(prog);
838e9690 1217 btf_put(prog->aux->btf);
ba64e7d8 1218 kvfree(prog->aux->func_info);
c454a46b 1219 bpf_prog_free_linfo(prog);
4f74d809 1220
1aacde3d 1221 call_rcu(&prog->aux->rcu, __bpf_prog_put_rcu);
a67edbf4 1222 }
09756af4 1223}
b16d9aa4
MKL
1224
1225void bpf_prog_put(struct bpf_prog *prog)
1226{
1227 __bpf_prog_put(prog, true);
1228}
e2e9b654 1229EXPORT_SYMBOL_GPL(bpf_prog_put);
09756af4
AS
1230
1231static int bpf_prog_release(struct inode *inode, struct file *filp)
1232{
1233 struct bpf_prog *prog = filp->private_data;
1234
1aacde3d 1235 bpf_prog_put(prog);
09756af4
AS
1236 return 0;
1237}
1238
7bd509e3
DB
1239#ifdef CONFIG_PROC_FS
1240static void bpf_prog_show_fdinfo(struct seq_file *m, struct file *filp)
1241{
1242 const struct bpf_prog *prog = filp->private_data;
f1f7714e 1243 char prog_tag[sizeof(prog->tag) * 2 + 1] = { };
7bd509e3 1244
f1f7714e 1245 bin2hex(prog_tag, prog->tag, sizeof(prog->tag));
7bd509e3
DB
1246 seq_printf(m,
1247 "prog_type:\t%u\n"
1248 "prog_jited:\t%u\n"
f1f7714e 1249 "prog_tag:\t%s\n"
4316b409
DB
1250 "memlock:\t%llu\n"
1251 "prog_id:\t%u\n",
7bd509e3
DB
1252 prog->type,
1253 prog->jited,
f1f7714e 1254 prog_tag,
4316b409
DB
1255 prog->pages * 1ULL << PAGE_SHIFT,
1256 prog->aux->id);
7bd509e3
DB
1257}
1258#endif
1259
f66e448c 1260const struct file_operations bpf_prog_fops = {
7bd509e3
DB
1261#ifdef CONFIG_PROC_FS
1262 .show_fdinfo = bpf_prog_show_fdinfo,
1263#endif
1264 .release = bpf_prog_release,
6e71b04a
CF
1265 .read = bpf_dummy_read,
1266 .write = bpf_dummy_write,
09756af4
AS
1267};
1268
b2197755 1269int bpf_prog_new_fd(struct bpf_prog *prog)
aa79781b 1270{
afdb09c7
CF
1271 int ret;
1272
1273 ret = security_bpf_prog(prog);
1274 if (ret < 0)
1275 return ret;
1276
aa79781b
DB
1277 return anon_inode_getfd("bpf-prog", &bpf_prog_fops, prog,
1278 O_RDWR | O_CLOEXEC);
1279}
1280
113214be 1281static struct bpf_prog *____bpf_prog_get(struct fd f)
09756af4 1282{
09756af4
AS
1283 if (!f.file)
1284 return ERR_PTR(-EBADF);
09756af4
AS
1285 if (f.file->f_op != &bpf_prog_fops) {
1286 fdput(f);
1287 return ERR_PTR(-EINVAL);
1288 }
1289
c2101297 1290 return f.file->private_data;
09756af4
AS
1291}
1292
59d3656d 1293struct bpf_prog *bpf_prog_add(struct bpf_prog *prog, int i)
92117d84 1294{
59d3656d
BB
1295 if (atomic_add_return(i, &prog->aux->refcnt) > BPF_MAX_REFCNT) {
1296 atomic_sub(i, &prog->aux->refcnt);
92117d84
AS
1297 return ERR_PTR(-EBUSY);
1298 }
1299 return prog;
1300}
59d3656d
BB
1301EXPORT_SYMBOL_GPL(bpf_prog_add);
1302
c540594f
DB
1303void bpf_prog_sub(struct bpf_prog *prog, int i)
1304{
1305 /* Only to be used for undoing previous bpf_prog_add() in some
1306 * error path. We still know that another entity in our call
1307 * path holds a reference to the program, thus atomic_sub() can
1308 * be safely used in such cases!
1309 */
1310 WARN_ON(atomic_sub_return(i, &prog->aux->refcnt) == 0);
1311}
1312EXPORT_SYMBOL_GPL(bpf_prog_sub);
1313
59d3656d
BB
1314struct bpf_prog *bpf_prog_inc(struct bpf_prog *prog)
1315{
1316 return bpf_prog_add(prog, 1);
1317}
97bc402d 1318EXPORT_SYMBOL_GPL(bpf_prog_inc);
92117d84 1319
b16d9aa4 1320/* prog_idr_lock should have been held */
a6f6df69 1321struct bpf_prog *bpf_prog_inc_not_zero(struct bpf_prog *prog)
b16d9aa4
MKL
1322{
1323 int refold;
1324
bfc18e38 1325 refold = atomic_fetch_add_unless(&prog->aux->refcnt, 1, 0);
b16d9aa4
MKL
1326
1327 if (refold >= BPF_MAX_REFCNT) {
1328 __bpf_prog_put(prog, false);
1329 return ERR_PTR(-EBUSY);
1330 }
1331
1332 if (!refold)
1333 return ERR_PTR(-ENOENT);
1334
1335 return prog;
1336}
a6f6df69 1337EXPORT_SYMBOL_GPL(bpf_prog_inc_not_zero);
b16d9aa4 1338
040ee692 1339bool bpf_prog_get_ok(struct bpf_prog *prog,
288b3de5 1340 enum bpf_prog_type *attach_type, bool attach_drv)
248f346f 1341{
288b3de5
JK
1342 /* not an attachment, just a refcount inc, always allow */
1343 if (!attach_type)
1344 return true;
248f346f
JK
1345
1346 if (prog->type != *attach_type)
1347 return false;
288b3de5 1348 if (bpf_prog_is_dev_bound(prog->aux) && !attach_drv)
248f346f
JK
1349 return false;
1350
1351 return true;
1352}
1353
1354static struct bpf_prog *__bpf_prog_get(u32 ufd, enum bpf_prog_type *attach_type,
288b3de5 1355 bool attach_drv)
09756af4
AS
1356{
1357 struct fd f = fdget(ufd);
1358 struct bpf_prog *prog;
1359
113214be 1360 prog = ____bpf_prog_get(f);
09756af4
AS
1361 if (IS_ERR(prog))
1362 return prog;
288b3de5 1363 if (!bpf_prog_get_ok(prog, attach_type, attach_drv)) {
113214be
DB
1364 prog = ERR_PTR(-EINVAL);
1365 goto out;
1366 }
09756af4 1367
92117d84 1368 prog = bpf_prog_inc(prog);
113214be 1369out:
09756af4
AS
1370 fdput(f);
1371 return prog;
1372}
113214be
DB
1373
1374struct bpf_prog *bpf_prog_get(u32 ufd)
1375{
288b3de5 1376 return __bpf_prog_get(ufd, NULL, false);
113214be
DB
1377}
1378
248f346f 1379struct bpf_prog *bpf_prog_get_type_dev(u32 ufd, enum bpf_prog_type type,
288b3de5 1380 bool attach_drv)
248f346f 1381{
4d220ed0 1382 return __bpf_prog_get(ufd, &type, attach_drv);
248f346f 1383}
6c8dfe21 1384EXPORT_SYMBOL_GPL(bpf_prog_get_type_dev);
248f346f 1385
aac3fc32
AI
1386/* Initially all BPF programs could be loaded w/o specifying
1387 * expected_attach_type. Later for some of them specifying expected_attach_type
1388 * at load time became required so that program could be validated properly.
1389 * Programs of types that are allowed to be loaded both w/ and w/o (for
1390 * backward compatibility) expected_attach_type, should have the default attach
1391 * type assigned to expected_attach_type for the latter case, so that it can be
1392 * validated later at attach time.
1393 *
1394 * bpf_prog_load_fixup_attach_type() sets expected_attach_type in @attr if
1395 * prog type requires it but has some attach types that have to be backward
1396 * compatible.
1397 */
1398static void bpf_prog_load_fixup_attach_type(union bpf_attr *attr)
1399{
1400 switch (attr->prog_type) {
1401 case BPF_PROG_TYPE_CGROUP_SOCK:
1402 /* Unfortunately BPF_ATTACH_TYPE_UNSPEC enumeration doesn't
1403 * exist so checking for non-zero is the way to go here.
1404 */
1405 if (!attr->expected_attach_type)
1406 attr->expected_attach_type =
1407 BPF_CGROUP_INET_SOCK_CREATE;
1408 break;
1409 }
1410}
1411
5e43f899
AI
1412static int
1413bpf_prog_load_check_attach_type(enum bpf_prog_type prog_type,
1414 enum bpf_attach_type expected_attach_type)
1415{
4fbac77d 1416 switch (prog_type) {
aac3fc32
AI
1417 case BPF_PROG_TYPE_CGROUP_SOCK:
1418 switch (expected_attach_type) {
1419 case BPF_CGROUP_INET_SOCK_CREATE:
1420 case BPF_CGROUP_INET4_POST_BIND:
1421 case BPF_CGROUP_INET6_POST_BIND:
1422 return 0;
1423 default:
1424 return -EINVAL;
1425 }
4fbac77d
AI
1426 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
1427 switch (expected_attach_type) {
1428 case BPF_CGROUP_INET4_BIND:
1429 case BPF_CGROUP_INET6_BIND:
d74bad4e
AI
1430 case BPF_CGROUP_INET4_CONNECT:
1431 case BPF_CGROUP_INET6_CONNECT:
1cedee13
AI
1432 case BPF_CGROUP_UDP4_SENDMSG:
1433 case BPF_CGROUP_UDP6_SENDMSG:
4fbac77d
AI
1434 return 0;
1435 default:
1436 return -EINVAL;
1437 }
1438 default:
1439 return 0;
1440 }
5e43f899
AI
1441}
1442
09756af4 1443/* last field in 'union bpf_attr' used by this command */
c454a46b 1444#define BPF_PROG_LOAD_LAST_FIELD line_info_cnt
09756af4 1445
838e9690 1446static int bpf_prog_load(union bpf_attr *attr, union bpf_attr __user *uattr)
09756af4
AS
1447{
1448 enum bpf_prog_type type = attr->prog_type;
1449 struct bpf_prog *prog;
1450 int err;
1451 char license[128];
1452 bool is_gpl;
1453
1454 if (CHECK_ATTR(BPF_PROG_LOAD))
1455 return -EINVAL;
1456
e9ee9efc 1457 if (attr->prog_flags & ~(BPF_F_STRICT_ALIGNMENT | BPF_F_ANY_ALIGNMENT))
e07b98d9
DM
1458 return -EINVAL;
1459
e9ee9efc
DM
1460 if (!IS_ENABLED(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) &&
1461 (attr->prog_flags & BPF_F_ANY_ALIGNMENT) &&
1462 !capable(CAP_SYS_ADMIN))
1463 return -EPERM;
1464
09756af4 1465 /* copy eBPF program license from user space */
535e7b4b 1466 if (strncpy_from_user(license, u64_to_user_ptr(attr->license),
09756af4
AS
1467 sizeof(license) - 1) < 0)
1468 return -EFAULT;
1469 license[sizeof(license) - 1] = 0;
1470
1471 /* eBPF programs must be GPL compatible to use GPL-ed functions */
1472 is_gpl = license_is_gpl_compatible(license);
1473
ef0915ca
DB
1474 if (attr->insn_cnt == 0 || attr->insn_cnt > BPF_MAXINSNS)
1475 return -E2BIG;
80b7d819
CF
1476 if (type != BPF_PROG_TYPE_SOCKET_FILTER &&
1477 type != BPF_PROG_TYPE_CGROUP_SKB &&
1478 !capable(CAP_SYS_ADMIN))
1be7f75d
AS
1479 return -EPERM;
1480
aac3fc32 1481 bpf_prog_load_fixup_attach_type(attr);
5e43f899
AI
1482 if (bpf_prog_load_check_attach_type(type, attr->expected_attach_type))
1483 return -EINVAL;
1484
09756af4
AS
1485 /* plain bpf_prog allocation */
1486 prog = bpf_prog_alloc(bpf_prog_size(attr->insn_cnt), GFP_USER);
1487 if (!prog)
1488 return -ENOMEM;
1489
5e43f899
AI
1490 prog->expected_attach_type = attr->expected_attach_type;
1491
9a18eedb
JK
1492 prog->aux->offload_requested = !!attr->prog_ifindex;
1493
afdb09c7 1494 err = security_bpf_prog_alloc(prog->aux);
aaac3ba9
AS
1495 if (err)
1496 goto free_prog_nouncharge;
1497
afdb09c7
CF
1498 err = bpf_prog_charge_memlock(prog);
1499 if (err)
1500 goto free_prog_sec;
1501
09756af4
AS
1502 prog->len = attr->insn_cnt;
1503
1504 err = -EFAULT;
535e7b4b 1505 if (copy_from_user(prog->insns, u64_to_user_ptr(attr->insns),
aafe6ae9 1506 bpf_prog_insn_size(prog)) != 0)
09756af4
AS
1507 goto free_prog;
1508
1509 prog->orig_prog = NULL;
a91263d5 1510 prog->jited = 0;
09756af4
AS
1511
1512 atomic_set(&prog->aux->refcnt, 1);
a91263d5 1513 prog->gpl_compatible = is_gpl ? 1 : 0;
09756af4 1514
9a18eedb 1515 if (bpf_prog_is_dev_bound(prog->aux)) {
ab3f0063
JK
1516 err = bpf_prog_offload_init(prog, attr);
1517 if (err)
1518 goto free_prog;
1519 }
1520
09756af4
AS
1521 /* find program type: socket_filter vs tracing_filter */
1522 err = find_prog_type(type, prog);
1523 if (err < 0)
1524 goto free_prog;
1525
cb4d2b3f
MKL
1526 prog->aux->load_time = ktime_get_boot_ns();
1527 err = bpf_obj_name_cpy(prog->aux->name, attr->prog_name);
1528 if (err)
1529 goto free_prog;
1530
09756af4 1531 /* run eBPF verifier */
838e9690 1532 err = bpf_check(&prog, attr, uattr);
09756af4
AS
1533 if (err < 0)
1534 goto free_used_maps;
1535
9facc336 1536 prog = bpf_prog_select_runtime(prog, &err);
04fd61ab
AS
1537 if (err < 0)
1538 goto free_used_maps;
09756af4 1539
dc4bb0e2
MKL
1540 err = bpf_prog_alloc_id(prog);
1541 if (err)
1542 goto free_used_maps;
1543
aa79781b 1544 err = bpf_prog_new_fd(prog);
b16d9aa4
MKL
1545 if (err < 0) {
1546 /* failed to allocate fd.
1547 * bpf_prog_put() is needed because the above
1548 * bpf_prog_alloc_id() has published the prog
1549 * to the userspace and the userspace may
1550 * have refcnt-ed it through BPF_PROG_GET_FD_BY_ID.
1551 */
1552 bpf_prog_put(prog);
1553 return err;
1554 }
09756af4 1555
74451e66 1556 bpf_prog_kallsyms_add(prog);
09756af4
AS
1557 return err;
1558
1559free_used_maps:
c454a46b 1560 bpf_prog_free_linfo(prog);
5482e9a9
MKL
1561 kvfree(prog->aux->func_info);
1562 btf_put(prog->aux->btf);
7d1982b4 1563 bpf_prog_kallsyms_del_subprogs(prog);
09756af4
AS
1564 free_used_maps(prog->aux);
1565free_prog:
aaac3ba9 1566 bpf_prog_uncharge_memlock(prog);
afdb09c7
CF
1567free_prog_sec:
1568 security_bpf_prog_free(prog->aux);
aaac3ba9 1569free_prog_nouncharge:
09756af4
AS
1570 bpf_prog_free(prog);
1571 return err;
1572}
1573
6e71b04a 1574#define BPF_OBJ_LAST_FIELD file_flags
b2197755
DB
1575
1576static int bpf_obj_pin(const union bpf_attr *attr)
1577{
6e71b04a 1578 if (CHECK_ATTR(BPF_OBJ) || attr->file_flags != 0)
b2197755
DB
1579 return -EINVAL;
1580
535e7b4b 1581 return bpf_obj_pin_user(attr->bpf_fd, u64_to_user_ptr(attr->pathname));
b2197755
DB
1582}
1583
1584static int bpf_obj_get(const union bpf_attr *attr)
1585{
6e71b04a
CF
1586 if (CHECK_ATTR(BPF_OBJ) || attr->bpf_fd != 0 ||
1587 attr->file_flags & ~BPF_OBJ_FLAG_MASK)
b2197755
DB
1588 return -EINVAL;
1589
6e71b04a
CF
1590 return bpf_obj_get_user(u64_to_user_ptr(attr->pathname),
1591 attr->file_flags);
b2197755
DB
1592}
1593
c4f6699d
AS
1594struct bpf_raw_tracepoint {
1595 struct bpf_raw_event_map *btp;
1596 struct bpf_prog *prog;
1597};
1598
1599static int bpf_raw_tracepoint_release(struct inode *inode, struct file *filp)
1600{
1601 struct bpf_raw_tracepoint *raw_tp = filp->private_data;
1602
1603 if (raw_tp->prog) {
1604 bpf_probe_unregister(raw_tp->btp, raw_tp->prog);
1605 bpf_prog_put(raw_tp->prog);
1606 }
a38d1107 1607 bpf_put_raw_tracepoint(raw_tp->btp);
c4f6699d
AS
1608 kfree(raw_tp);
1609 return 0;
1610}
1611
1612static const struct file_operations bpf_raw_tp_fops = {
1613 .release = bpf_raw_tracepoint_release,
1614 .read = bpf_dummy_read,
1615 .write = bpf_dummy_write,
1616};
1617
1618#define BPF_RAW_TRACEPOINT_OPEN_LAST_FIELD raw_tracepoint.prog_fd
1619
1620static int bpf_raw_tracepoint_open(const union bpf_attr *attr)
1621{
1622 struct bpf_raw_tracepoint *raw_tp;
1623 struct bpf_raw_event_map *btp;
1624 struct bpf_prog *prog;
1625 char tp_name[128];
1626 int tp_fd, err;
1627
1628 if (strncpy_from_user(tp_name, u64_to_user_ptr(attr->raw_tracepoint.name),
1629 sizeof(tp_name) - 1) < 0)
1630 return -EFAULT;
1631 tp_name[sizeof(tp_name) - 1] = 0;
1632
a38d1107 1633 btp = bpf_get_raw_tracepoint(tp_name);
c4f6699d
AS
1634 if (!btp)
1635 return -ENOENT;
1636
1637 raw_tp = kzalloc(sizeof(*raw_tp), GFP_USER);
a38d1107
MM
1638 if (!raw_tp) {
1639 err = -ENOMEM;
1640 goto out_put_btp;
1641 }
c4f6699d
AS
1642 raw_tp->btp = btp;
1643
1644 prog = bpf_prog_get_type(attr->raw_tracepoint.prog_fd,
1645 BPF_PROG_TYPE_RAW_TRACEPOINT);
1646 if (IS_ERR(prog)) {
1647 err = PTR_ERR(prog);
1648 goto out_free_tp;
1649 }
1650
1651 err = bpf_probe_register(raw_tp->btp, prog);
1652 if (err)
1653 goto out_put_prog;
1654
1655 raw_tp->prog = prog;
1656 tp_fd = anon_inode_getfd("bpf-raw-tracepoint", &bpf_raw_tp_fops, raw_tp,
1657 O_CLOEXEC);
1658 if (tp_fd < 0) {
1659 bpf_probe_unregister(raw_tp->btp, prog);
1660 err = tp_fd;
1661 goto out_put_prog;
1662 }
1663 return tp_fd;
1664
1665out_put_prog:
1666 bpf_prog_put(prog);
1667out_free_tp:
1668 kfree(raw_tp);
a38d1107
MM
1669out_put_btp:
1670 bpf_put_raw_tracepoint(btp);
c4f6699d
AS
1671 return err;
1672}
1673
33491588
AR
1674static int bpf_prog_attach_check_attach_type(const struct bpf_prog *prog,
1675 enum bpf_attach_type attach_type)
1676{
1677 switch (prog->type) {
1678 case BPF_PROG_TYPE_CGROUP_SOCK:
1679 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
1680 return attach_type == prog->expected_attach_type ? 0 : -EINVAL;
1681 default:
1682 return 0;
1683 }
1684}
1685
464bc0fd 1686#define BPF_PROG_ATTACH_LAST_FIELD attach_flags
174a79ff 1687
324bda9e
AS
1688#define BPF_F_ATTACH_MASK \
1689 (BPF_F_ALLOW_OVERRIDE | BPF_F_ALLOW_MULTI)
1690
f4324551
DM
1691static int bpf_prog_attach(const union bpf_attr *attr)
1692{
7f677633 1693 enum bpf_prog_type ptype;
f4324551 1694 struct bpf_prog *prog;
7f677633 1695 int ret;
f4324551
DM
1696
1697 if (!capable(CAP_NET_ADMIN))
1698 return -EPERM;
1699
1700 if (CHECK_ATTR(BPF_PROG_ATTACH))
1701 return -EINVAL;
1702
324bda9e 1703 if (attr->attach_flags & ~BPF_F_ATTACH_MASK)
7f677633
AS
1704 return -EINVAL;
1705
f4324551
DM
1706 switch (attr->attach_type) {
1707 case BPF_CGROUP_INET_INGRESS:
1708 case BPF_CGROUP_INET_EGRESS:
b2cd1257 1709 ptype = BPF_PROG_TYPE_CGROUP_SKB;
f4324551 1710 break;
61023658 1711 case BPF_CGROUP_INET_SOCK_CREATE:
aac3fc32
AI
1712 case BPF_CGROUP_INET4_POST_BIND:
1713 case BPF_CGROUP_INET6_POST_BIND:
61023658
DA
1714 ptype = BPF_PROG_TYPE_CGROUP_SOCK;
1715 break;
4fbac77d
AI
1716 case BPF_CGROUP_INET4_BIND:
1717 case BPF_CGROUP_INET6_BIND:
d74bad4e
AI
1718 case BPF_CGROUP_INET4_CONNECT:
1719 case BPF_CGROUP_INET6_CONNECT:
1cedee13
AI
1720 case BPF_CGROUP_UDP4_SENDMSG:
1721 case BPF_CGROUP_UDP6_SENDMSG:
4fbac77d
AI
1722 ptype = BPF_PROG_TYPE_CGROUP_SOCK_ADDR;
1723 break;
40304b2a
LB
1724 case BPF_CGROUP_SOCK_OPS:
1725 ptype = BPF_PROG_TYPE_SOCK_OPS;
1726 break;
ebc614f6
RG
1727 case BPF_CGROUP_DEVICE:
1728 ptype = BPF_PROG_TYPE_CGROUP_DEVICE;
1729 break;
4f738adb 1730 case BPF_SK_MSG_VERDICT:
fdb5c453
SY
1731 ptype = BPF_PROG_TYPE_SK_MSG;
1732 break;
464bc0fd
JF
1733 case BPF_SK_SKB_STREAM_PARSER:
1734 case BPF_SK_SKB_STREAM_VERDICT:
fdb5c453
SY
1735 ptype = BPF_PROG_TYPE_SK_SKB;
1736 break;
f4364dcf 1737 case BPF_LIRC_MODE2:
fdb5c453
SY
1738 ptype = BPF_PROG_TYPE_LIRC_MODE2;
1739 break;
d58e468b
PP
1740 case BPF_FLOW_DISSECTOR:
1741 ptype = BPF_PROG_TYPE_FLOW_DISSECTOR;
1742 break;
f4324551
DM
1743 default:
1744 return -EINVAL;
1745 }
1746
b2cd1257
DA
1747 prog = bpf_prog_get_type(attr->attach_bpf_fd, ptype);
1748 if (IS_ERR(prog))
1749 return PTR_ERR(prog);
1750
5e43f899
AI
1751 if (bpf_prog_attach_check_attach_type(prog, attr->attach_type)) {
1752 bpf_prog_put(prog);
1753 return -EINVAL;
1754 }
1755
fdb5c453
SY
1756 switch (ptype) {
1757 case BPF_PROG_TYPE_SK_SKB:
1758 case BPF_PROG_TYPE_SK_MSG:
604326b4 1759 ret = sock_map_get_from_fd(attr, prog);
fdb5c453
SY
1760 break;
1761 case BPF_PROG_TYPE_LIRC_MODE2:
1762 ret = lirc_prog_attach(attr, prog);
1763 break;
d58e468b
PP
1764 case BPF_PROG_TYPE_FLOW_DISSECTOR:
1765 ret = skb_flow_dissector_bpf_prog_attach(attr, prog);
1766 break;
fdb5c453
SY
1767 default:
1768 ret = cgroup_bpf_prog_attach(attr, ptype, prog);
b2cd1257
DA
1769 }
1770
7f677633
AS
1771 if (ret)
1772 bpf_prog_put(prog);
7f677633 1773 return ret;
f4324551
DM
1774}
1775
1776#define BPF_PROG_DETACH_LAST_FIELD attach_type
1777
1778static int bpf_prog_detach(const union bpf_attr *attr)
1779{
324bda9e 1780 enum bpf_prog_type ptype;
f4324551
DM
1781
1782 if (!capable(CAP_NET_ADMIN))
1783 return -EPERM;
1784
1785 if (CHECK_ATTR(BPF_PROG_DETACH))
1786 return -EINVAL;
1787
1788 switch (attr->attach_type) {
1789 case BPF_CGROUP_INET_INGRESS:
1790 case BPF_CGROUP_INET_EGRESS:
324bda9e
AS
1791 ptype = BPF_PROG_TYPE_CGROUP_SKB;
1792 break;
61023658 1793 case BPF_CGROUP_INET_SOCK_CREATE:
aac3fc32
AI
1794 case BPF_CGROUP_INET4_POST_BIND:
1795 case BPF_CGROUP_INET6_POST_BIND:
324bda9e
AS
1796 ptype = BPF_PROG_TYPE_CGROUP_SOCK;
1797 break;
4fbac77d
AI
1798 case BPF_CGROUP_INET4_BIND:
1799 case BPF_CGROUP_INET6_BIND:
d74bad4e
AI
1800 case BPF_CGROUP_INET4_CONNECT:
1801 case BPF_CGROUP_INET6_CONNECT:
1cedee13
AI
1802 case BPF_CGROUP_UDP4_SENDMSG:
1803 case BPF_CGROUP_UDP6_SENDMSG:
4fbac77d
AI
1804 ptype = BPF_PROG_TYPE_CGROUP_SOCK_ADDR;
1805 break;
40304b2a 1806 case BPF_CGROUP_SOCK_OPS:
324bda9e 1807 ptype = BPF_PROG_TYPE_SOCK_OPS;
f4324551 1808 break;
ebc614f6
RG
1809 case BPF_CGROUP_DEVICE:
1810 ptype = BPF_PROG_TYPE_CGROUP_DEVICE;
1811 break;
4f738adb 1812 case BPF_SK_MSG_VERDICT:
604326b4 1813 return sock_map_get_from_fd(attr, NULL);
5a67da2a
JF
1814 case BPF_SK_SKB_STREAM_PARSER:
1815 case BPF_SK_SKB_STREAM_VERDICT:
604326b4 1816 return sock_map_get_from_fd(attr, NULL);
f4364dcf
SY
1817 case BPF_LIRC_MODE2:
1818 return lirc_prog_detach(attr);
d58e468b
PP
1819 case BPF_FLOW_DISSECTOR:
1820 return skb_flow_dissector_bpf_prog_detach(attr);
f4324551
DM
1821 default:
1822 return -EINVAL;
1823 }
1824
fdb5c453 1825 return cgroup_bpf_prog_detach(attr, ptype);
f4324551 1826}
40304b2a 1827
468e2f64
AS
1828#define BPF_PROG_QUERY_LAST_FIELD query.prog_cnt
1829
1830static int bpf_prog_query(const union bpf_attr *attr,
1831 union bpf_attr __user *uattr)
1832{
468e2f64
AS
1833 if (!capable(CAP_NET_ADMIN))
1834 return -EPERM;
1835 if (CHECK_ATTR(BPF_PROG_QUERY))
1836 return -EINVAL;
1837 if (attr->query.query_flags & ~BPF_F_QUERY_EFFECTIVE)
1838 return -EINVAL;
1839
1840 switch (attr->query.attach_type) {
1841 case BPF_CGROUP_INET_INGRESS:
1842 case BPF_CGROUP_INET_EGRESS:
1843 case BPF_CGROUP_INET_SOCK_CREATE:
4fbac77d
AI
1844 case BPF_CGROUP_INET4_BIND:
1845 case BPF_CGROUP_INET6_BIND:
aac3fc32
AI
1846 case BPF_CGROUP_INET4_POST_BIND:
1847 case BPF_CGROUP_INET6_POST_BIND:
d74bad4e
AI
1848 case BPF_CGROUP_INET4_CONNECT:
1849 case BPF_CGROUP_INET6_CONNECT:
1cedee13
AI
1850 case BPF_CGROUP_UDP4_SENDMSG:
1851 case BPF_CGROUP_UDP6_SENDMSG:
468e2f64 1852 case BPF_CGROUP_SOCK_OPS:
ebc614f6 1853 case BPF_CGROUP_DEVICE:
468e2f64 1854 break;
f4364dcf
SY
1855 case BPF_LIRC_MODE2:
1856 return lirc_prog_query(attr, uattr);
468e2f64
AS
1857 default:
1858 return -EINVAL;
1859 }
fdb5c453
SY
1860
1861 return cgroup_bpf_prog_query(attr, uattr);
468e2f64 1862}
f4324551 1863
1cf1cae9
AS
1864#define BPF_PROG_TEST_RUN_LAST_FIELD test.duration
1865
1866static int bpf_prog_test_run(const union bpf_attr *attr,
1867 union bpf_attr __user *uattr)
1868{
1869 struct bpf_prog *prog;
1870 int ret = -ENOTSUPP;
1871
61f3c964
AS
1872 if (!capable(CAP_SYS_ADMIN))
1873 return -EPERM;
1cf1cae9
AS
1874 if (CHECK_ATTR(BPF_PROG_TEST_RUN))
1875 return -EINVAL;
1876
1877 prog = bpf_prog_get(attr->test.prog_fd);
1878 if (IS_ERR(prog))
1879 return PTR_ERR(prog);
1880
1881 if (prog->aux->ops->test_run)
1882 ret = prog->aux->ops->test_run(prog, attr, uattr);
1883
1884 bpf_prog_put(prog);
1885 return ret;
1886}
1887
34ad5580
MKL
1888#define BPF_OBJ_GET_NEXT_ID_LAST_FIELD next_id
1889
1890static int bpf_obj_get_next_id(const union bpf_attr *attr,
1891 union bpf_attr __user *uattr,
1892 struct idr *idr,
1893 spinlock_t *lock)
1894{
1895 u32 next_id = attr->start_id;
1896 int err = 0;
1897
1898 if (CHECK_ATTR(BPF_OBJ_GET_NEXT_ID) || next_id >= INT_MAX)
1899 return -EINVAL;
1900
1901 if (!capable(CAP_SYS_ADMIN))
1902 return -EPERM;
1903
1904 next_id++;
1905 spin_lock_bh(lock);
1906 if (!idr_get_next(idr, &next_id))
1907 err = -ENOENT;
1908 spin_unlock_bh(lock);
1909
1910 if (!err)
1911 err = put_user(next_id, &uattr->next_id);
1912
1913 return err;
1914}
1915
b16d9aa4
MKL
1916#define BPF_PROG_GET_FD_BY_ID_LAST_FIELD prog_id
1917
1918static int bpf_prog_get_fd_by_id(const union bpf_attr *attr)
1919{
1920 struct bpf_prog *prog;
1921 u32 id = attr->prog_id;
1922 int fd;
1923
1924 if (CHECK_ATTR(BPF_PROG_GET_FD_BY_ID))
1925 return -EINVAL;
1926
1927 if (!capable(CAP_SYS_ADMIN))
1928 return -EPERM;
1929
1930 spin_lock_bh(&prog_idr_lock);
1931 prog = idr_find(&prog_idr, id);
1932 if (prog)
1933 prog = bpf_prog_inc_not_zero(prog);
1934 else
1935 prog = ERR_PTR(-ENOENT);
1936 spin_unlock_bh(&prog_idr_lock);
1937
1938 if (IS_ERR(prog))
1939 return PTR_ERR(prog);
1940
1941 fd = bpf_prog_new_fd(prog);
1942 if (fd < 0)
1943 bpf_prog_put(prog);
1944
1945 return fd;
1946}
1947
6e71b04a 1948#define BPF_MAP_GET_FD_BY_ID_LAST_FIELD open_flags
bd5f5f4e
MKL
1949
1950static int bpf_map_get_fd_by_id(const union bpf_attr *attr)
1951{
1952 struct bpf_map *map;
1953 u32 id = attr->map_id;
6e71b04a 1954 int f_flags;
bd5f5f4e
MKL
1955 int fd;
1956
6e71b04a
CF
1957 if (CHECK_ATTR(BPF_MAP_GET_FD_BY_ID) ||
1958 attr->open_flags & ~BPF_OBJ_FLAG_MASK)
bd5f5f4e
MKL
1959 return -EINVAL;
1960
1961 if (!capable(CAP_SYS_ADMIN))
1962 return -EPERM;
1963
6e71b04a
CF
1964 f_flags = bpf_get_file_flag(attr->open_flags);
1965 if (f_flags < 0)
1966 return f_flags;
1967
bd5f5f4e
MKL
1968 spin_lock_bh(&map_idr_lock);
1969 map = idr_find(&map_idr, id);
1970 if (map)
1971 map = bpf_map_inc_not_zero(map, true);
1972 else
1973 map = ERR_PTR(-ENOENT);
1974 spin_unlock_bh(&map_idr_lock);
1975
1976 if (IS_ERR(map))
1977 return PTR_ERR(map);
1978
6e71b04a 1979 fd = bpf_map_new_fd(map, f_flags);
bd5f5f4e
MKL
1980 if (fd < 0)
1981 bpf_map_put(map);
1982
1983 return fd;
1984}
1985
7105e828
DB
1986static const struct bpf_map *bpf_map_from_imm(const struct bpf_prog *prog,
1987 unsigned long addr)
1988{
1989 int i;
1990
1991 for (i = 0; i < prog->aux->used_map_cnt; i++)
1992 if (prog->aux->used_maps[i] == (void *)addr)
1993 return prog->aux->used_maps[i];
1994 return NULL;
1995}
1996
1997static struct bpf_insn *bpf_insn_prepare_dump(const struct bpf_prog *prog)
1998{
1999 const struct bpf_map *map;
2000 struct bpf_insn *insns;
2001 u64 imm;
2002 int i;
2003
2004 insns = kmemdup(prog->insnsi, bpf_prog_insn_size(prog),
2005 GFP_USER);
2006 if (!insns)
2007 return insns;
2008
2009 for (i = 0; i < prog->len; i++) {
2010 if (insns[i].code == (BPF_JMP | BPF_TAIL_CALL)) {
2011 insns[i].code = BPF_JMP | BPF_CALL;
2012 insns[i].imm = BPF_FUNC_tail_call;
2013 /* fall-through */
2014 }
2015 if (insns[i].code == (BPF_JMP | BPF_CALL) ||
2016 insns[i].code == (BPF_JMP | BPF_CALL_ARGS)) {
2017 if (insns[i].code == (BPF_JMP | BPF_CALL_ARGS))
2018 insns[i].code = BPF_JMP | BPF_CALL;
2019 if (!bpf_dump_raw_ok())
2020 insns[i].imm = 0;
2021 continue;
2022 }
2023
2024 if (insns[i].code != (BPF_LD | BPF_IMM | BPF_DW))
2025 continue;
2026
2027 imm = ((u64)insns[i + 1].imm << 32) | (u32)insns[i].imm;
2028 map = bpf_map_from_imm(prog, imm);
2029 if (map) {
2030 insns[i].src_reg = BPF_PSEUDO_MAP_FD;
2031 insns[i].imm = map->id;
2032 insns[i + 1].imm = 0;
2033 continue;
2034 }
7105e828
DB
2035 }
2036
2037 return insns;
2038}
2039
c454a46b
MKL
2040static int set_info_rec_size(struct bpf_prog_info *info)
2041{
2042 /*
2043 * Ensure info.*_rec_size is the same as kernel expected size
2044 *
2045 * or
2046 *
2047 * Only allow zero *_rec_size if both _rec_size and _cnt are
2048 * zero. In this case, the kernel will set the expected
2049 * _rec_size back to the info.
2050 */
2051
11d8b82d 2052 if ((info->nr_func_info || info->func_info_rec_size) &&
c454a46b
MKL
2053 info->func_info_rec_size != sizeof(struct bpf_func_info))
2054 return -EINVAL;
2055
11d8b82d 2056 if ((info->nr_line_info || info->line_info_rec_size) &&
c454a46b
MKL
2057 info->line_info_rec_size != sizeof(struct bpf_line_info))
2058 return -EINVAL;
2059
11d8b82d 2060 if ((info->nr_jited_line_info || info->jited_line_info_rec_size) &&
c454a46b
MKL
2061 info->jited_line_info_rec_size != sizeof(__u64))
2062 return -EINVAL;
2063
2064 info->func_info_rec_size = sizeof(struct bpf_func_info);
2065 info->line_info_rec_size = sizeof(struct bpf_line_info);
2066 info->jited_line_info_rec_size = sizeof(__u64);
2067
2068 return 0;
2069}
2070
1e270976
MKL
2071static int bpf_prog_get_info_by_fd(struct bpf_prog *prog,
2072 const union bpf_attr *attr,
2073 union bpf_attr __user *uattr)
2074{
2075 struct bpf_prog_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2076 struct bpf_prog_info info = {};
2077 u32 info_len = attr->info.info_len;
2078 char __user *uinsns;
2079 u32 ulen;
2080 int err;
2081
dcab51f1 2082 err = bpf_check_uarg_tail_zero(uinfo, sizeof(info), info_len);
1e270976
MKL
2083 if (err)
2084 return err;
2085 info_len = min_t(u32, sizeof(info), info_len);
2086
2087 if (copy_from_user(&info, uinfo, info_len))
89b09689 2088 return -EFAULT;
1e270976
MKL
2089
2090 info.type = prog->type;
2091 info.id = prog->aux->id;
cb4d2b3f
MKL
2092 info.load_time = prog->aux->load_time;
2093 info.created_by_uid = from_kuid_munged(current_user_ns(),
2094 prog->aux->user->uid);
b85fab0e 2095 info.gpl_compatible = prog->gpl_compatible;
1e270976
MKL
2096
2097 memcpy(info.tag, prog->tag, sizeof(prog->tag));
cb4d2b3f
MKL
2098 memcpy(info.name, prog->aux->name, sizeof(prog->aux->name));
2099
2100 ulen = info.nr_map_ids;
2101 info.nr_map_ids = prog->aux->used_map_cnt;
2102 ulen = min_t(u32, info.nr_map_ids, ulen);
2103 if (ulen) {
721e08da 2104 u32 __user *user_map_ids = u64_to_user_ptr(info.map_ids);
cb4d2b3f
MKL
2105 u32 i;
2106
2107 for (i = 0; i < ulen; i++)
2108 if (put_user(prog->aux->used_maps[i]->id,
2109 &user_map_ids[i]))
2110 return -EFAULT;
2111 }
1e270976 2112
c454a46b
MKL
2113 err = set_info_rec_size(&info);
2114 if (err)
2115 return err;
7337224f 2116
1e270976
MKL
2117 if (!capable(CAP_SYS_ADMIN)) {
2118 info.jited_prog_len = 0;
2119 info.xlated_prog_len = 0;
dbecd738 2120 info.nr_jited_ksyms = 0;
28c2fae7 2121 info.nr_jited_func_lens = 0;
11d8b82d
YS
2122 info.nr_func_info = 0;
2123 info.nr_line_info = 0;
2124 info.nr_jited_line_info = 0;
1e270976
MKL
2125 goto done;
2126 }
2127
1e270976 2128 ulen = info.xlated_prog_len;
9975a54b 2129 info.xlated_prog_len = bpf_prog_insn_size(prog);
1e270976 2130 if (info.xlated_prog_len && ulen) {
7105e828
DB
2131 struct bpf_insn *insns_sanitized;
2132 bool fault;
2133
2134 if (prog->blinded && !bpf_dump_raw_ok()) {
2135 info.xlated_prog_insns = 0;
2136 goto done;
2137 }
2138 insns_sanitized = bpf_insn_prepare_dump(prog);
2139 if (!insns_sanitized)
2140 return -ENOMEM;
1e270976
MKL
2141 uinsns = u64_to_user_ptr(info.xlated_prog_insns);
2142 ulen = min_t(u32, info.xlated_prog_len, ulen);
7105e828
DB
2143 fault = copy_to_user(uinsns, insns_sanitized, ulen);
2144 kfree(insns_sanitized);
2145 if (fault)
1e270976
MKL
2146 return -EFAULT;
2147 }
2148
675fc275
JK
2149 if (bpf_prog_is_dev_bound(prog->aux)) {
2150 err = bpf_prog_offload_info_fill(&info, prog);
2151 if (err)
2152 return err;
fcfb126d
JW
2153 goto done;
2154 }
2155
2156 /* NOTE: the following code is supposed to be skipped for offload.
2157 * bpf_prog_offload_info_fill() is the place to fill similar fields
2158 * for offload.
2159 */
2160 ulen = info.jited_prog_len;
4d56a76e
SD
2161 if (prog->aux->func_cnt) {
2162 u32 i;
2163
2164 info.jited_prog_len = 0;
2165 for (i = 0; i < prog->aux->func_cnt; i++)
2166 info.jited_prog_len += prog->aux->func[i]->jited_len;
2167 } else {
2168 info.jited_prog_len = prog->jited_len;
2169 }
2170
fcfb126d
JW
2171 if (info.jited_prog_len && ulen) {
2172 if (bpf_dump_raw_ok()) {
2173 uinsns = u64_to_user_ptr(info.jited_prog_insns);
2174 ulen = min_t(u32, info.jited_prog_len, ulen);
4d56a76e
SD
2175
2176 /* for multi-function programs, copy the JITed
2177 * instructions for all the functions
2178 */
2179 if (prog->aux->func_cnt) {
2180 u32 len, free, i;
2181 u8 *img;
2182
2183 free = ulen;
2184 for (i = 0; i < prog->aux->func_cnt; i++) {
2185 len = prog->aux->func[i]->jited_len;
2186 len = min_t(u32, len, free);
2187 img = (u8 *) prog->aux->func[i]->bpf_func;
2188 if (copy_to_user(uinsns, img, len))
2189 return -EFAULT;
2190 uinsns += len;
2191 free -= len;
2192 if (!free)
2193 break;
2194 }
2195 } else {
2196 if (copy_to_user(uinsns, prog->bpf_func, ulen))
2197 return -EFAULT;
2198 }
fcfb126d
JW
2199 } else {
2200 info.jited_prog_insns = 0;
2201 }
675fc275
JK
2202 }
2203
dbecd738 2204 ulen = info.nr_jited_ksyms;
ff1889fc 2205 info.nr_jited_ksyms = prog->aux->func_cnt ? : 1;
7a5725dd 2206 if (ulen) {
dbecd738 2207 if (bpf_dump_raw_ok()) {
ff1889fc 2208 unsigned long ksym_addr;
dbecd738 2209 u64 __user *user_ksyms;
dbecd738
SD
2210 u32 i;
2211
2212 /* copy the address of the kernel symbol
2213 * corresponding to each function
2214 */
2215 ulen = min_t(u32, info.nr_jited_ksyms, ulen);
2216 user_ksyms = u64_to_user_ptr(info.jited_ksyms);
ff1889fc
SL
2217 if (prog->aux->func_cnt) {
2218 for (i = 0; i < ulen; i++) {
2219 ksym_addr = (unsigned long)
2220 prog->aux->func[i]->bpf_func;
2221 if (put_user((u64) ksym_addr,
2222 &user_ksyms[i]))
2223 return -EFAULT;
2224 }
2225 } else {
2226 ksym_addr = (unsigned long) prog->bpf_func;
2227 if (put_user((u64) ksym_addr, &user_ksyms[0]))
dbecd738
SD
2228 return -EFAULT;
2229 }
2230 } else {
2231 info.jited_ksyms = 0;
2232 }
2233 }
2234
815581c1 2235 ulen = info.nr_jited_func_lens;
ff1889fc 2236 info.nr_jited_func_lens = prog->aux->func_cnt ? : 1;
7a5725dd 2237 if (ulen) {
815581c1
SD
2238 if (bpf_dump_raw_ok()) {
2239 u32 __user *user_lens;
2240 u32 func_len, i;
2241
2242 /* copy the JITed image lengths for each function */
2243 ulen = min_t(u32, info.nr_jited_func_lens, ulen);
2244 user_lens = u64_to_user_ptr(info.jited_func_lens);
ff1889fc
SL
2245 if (prog->aux->func_cnt) {
2246 for (i = 0; i < ulen; i++) {
2247 func_len =
2248 prog->aux->func[i]->jited_len;
2249 if (put_user(func_len, &user_lens[i]))
2250 return -EFAULT;
2251 }
2252 } else {
2253 func_len = prog->jited_len;
2254 if (put_user(func_len, &user_lens[0]))
815581c1
SD
2255 return -EFAULT;
2256 }
2257 } else {
2258 info.jited_func_lens = 0;
2259 }
2260 }
2261
7337224f 2262 if (prog->aux->btf)
838e9690
YS
2263 info.btf_id = btf_id(prog->aux->btf);
2264
11d8b82d
YS
2265 ulen = info.nr_func_info;
2266 info.nr_func_info = prog->aux->func_info_cnt;
2267 if (info.nr_func_info && ulen) {
9e794163 2268 char __user *user_finfo;
7337224f 2269
9e794163
MKL
2270 user_finfo = u64_to_user_ptr(info.func_info);
2271 ulen = min_t(u32, info.nr_func_info, ulen);
2272 if (copy_to_user(user_finfo, prog->aux->func_info,
2273 info.func_info_rec_size * ulen))
2274 return -EFAULT;
838e9690
YS
2275 }
2276
11d8b82d
YS
2277 ulen = info.nr_line_info;
2278 info.nr_line_info = prog->aux->nr_linfo;
2279 if (info.nr_line_info && ulen) {
9e794163 2280 __u8 __user *user_linfo;
c454a46b 2281
9e794163
MKL
2282 user_linfo = u64_to_user_ptr(info.line_info);
2283 ulen = min_t(u32, info.nr_line_info, ulen);
2284 if (copy_to_user(user_linfo, prog->aux->linfo,
2285 info.line_info_rec_size * ulen))
2286 return -EFAULT;
c454a46b
MKL
2287 }
2288
11d8b82d 2289 ulen = info.nr_jited_line_info;
c454a46b 2290 if (prog->aux->jited_linfo)
11d8b82d 2291 info.nr_jited_line_info = prog->aux->nr_linfo;
c454a46b 2292 else
11d8b82d
YS
2293 info.nr_jited_line_info = 0;
2294 if (info.nr_jited_line_info && ulen) {
c454a46b
MKL
2295 if (bpf_dump_raw_ok()) {
2296 __u64 __user *user_linfo;
2297 u32 i;
2298
2299 user_linfo = u64_to_user_ptr(info.jited_line_info);
11d8b82d 2300 ulen = min_t(u32, info.nr_jited_line_info, ulen);
c454a46b
MKL
2301 for (i = 0; i < ulen; i++) {
2302 if (put_user((__u64)(long)prog->aux->jited_linfo[i],
2303 &user_linfo[i]))
2304 return -EFAULT;
2305 }
2306 } else {
2307 info.jited_line_info = 0;
2308 }
2309 }
2310
c872bdb3
SL
2311 ulen = info.nr_prog_tags;
2312 info.nr_prog_tags = prog->aux->func_cnt ? : 1;
2313 if (ulen) {
2314 __u8 __user (*user_prog_tags)[BPF_TAG_SIZE];
2315 u32 i;
2316
2317 user_prog_tags = u64_to_user_ptr(info.prog_tags);
2318 ulen = min_t(u32, info.nr_prog_tags, ulen);
2319 if (prog->aux->func_cnt) {
2320 for (i = 0; i < ulen; i++) {
2321 if (copy_to_user(user_prog_tags[i],
2322 prog->aux->func[i]->tag,
2323 BPF_TAG_SIZE))
2324 return -EFAULT;
2325 }
2326 } else {
2327 if (copy_to_user(user_prog_tags[0],
2328 prog->tag, BPF_TAG_SIZE))
2329 return -EFAULT;
2330 }
2331 }
2332
1e270976
MKL
2333done:
2334 if (copy_to_user(uinfo, &info, info_len) ||
2335 put_user(info_len, &uattr->info.info_len))
2336 return -EFAULT;
2337
2338 return 0;
2339}
2340
2341static int bpf_map_get_info_by_fd(struct bpf_map *map,
2342 const union bpf_attr *attr,
2343 union bpf_attr __user *uattr)
2344{
2345 struct bpf_map_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2346 struct bpf_map_info info = {};
2347 u32 info_len = attr->info.info_len;
2348 int err;
2349
dcab51f1 2350 err = bpf_check_uarg_tail_zero(uinfo, sizeof(info), info_len);
1e270976
MKL
2351 if (err)
2352 return err;
2353 info_len = min_t(u32, sizeof(info), info_len);
2354
2355 info.type = map->map_type;
2356 info.id = map->id;
2357 info.key_size = map->key_size;
2358 info.value_size = map->value_size;
2359 info.max_entries = map->max_entries;
2360 info.map_flags = map->map_flags;
ad5b177b 2361 memcpy(info.name, map->name, sizeof(map->name));
1e270976 2362
78958fca
MKL
2363 if (map->btf) {
2364 info.btf_id = btf_id(map->btf);
9b2cf328
MKL
2365 info.btf_key_type_id = map->btf_key_type_id;
2366 info.btf_value_type_id = map->btf_value_type_id;
78958fca
MKL
2367 }
2368
52775b33
JK
2369 if (bpf_map_is_dev_bound(map)) {
2370 err = bpf_map_offload_info_fill(&info, map);
2371 if (err)
2372 return err;
2373 }
2374
1e270976
MKL
2375 if (copy_to_user(uinfo, &info, info_len) ||
2376 put_user(info_len, &uattr->info.info_len))
2377 return -EFAULT;
2378
2379 return 0;
2380}
2381
62dab84c
MKL
2382static int bpf_btf_get_info_by_fd(struct btf *btf,
2383 const union bpf_attr *attr,
2384 union bpf_attr __user *uattr)
2385{
2386 struct bpf_btf_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2387 u32 info_len = attr->info.info_len;
2388 int err;
2389
dcab51f1 2390 err = bpf_check_uarg_tail_zero(uinfo, sizeof(*uinfo), info_len);
62dab84c
MKL
2391 if (err)
2392 return err;
2393
2394 return btf_get_info_by_fd(btf, attr, uattr);
2395}
2396
1e270976
MKL
2397#define BPF_OBJ_GET_INFO_BY_FD_LAST_FIELD info.info
2398
2399static int bpf_obj_get_info_by_fd(const union bpf_attr *attr,
2400 union bpf_attr __user *uattr)
2401{
2402 int ufd = attr->info.bpf_fd;
2403 struct fd f;
2404 int err;
2405
2406 if (CHECK_ATTR(BPF_OBJ_GET_INFO_BY_FD))
2407 return -EINVAL;
2408
2409 f = fdget(ufd);
2410 if (!f.file)
2411 return -EBADFD;
2412
2413 if (f.file->f_op == &bpf_prog_fops)
2414 err = bpf_prog_get_info_by_fd(f.file->private_data, attr,
2415 uattr);
2416 else if (f.file->f_op == &bpf_map_fops)
2417 err = bpf_map_get_info_by_fd(f.file->private_data, attr,
2418 uattr);
60197cfb 2419 else if (f.file->f_op == &btf_fops)
62dab84c 2420 err = bpf_btf_get_info_by_fd(f.file->private_data, attr, uattr);
1e270976
MKL
2421 else
2422 err = -EINVAL;
2423
2424 fdput(f);
2425 return err;
2426}
2427
f56a653c
MKL
2428#define BPF_BTF_LOAD_LAST_FIELD btf_log_level
2429
2430static int bpf_btf_load(const union bpf_attr *attr)
2431{
2432 if (CHECK_ATTR(BPF_BTF_LOAD))
2433 return -EINVAL;
2434
2435 if (!capable(CAP_SYS_ADMIN))
2436 return -EPERM;
2437
2438 return btf_new_fd(attr);
2439}
2440
78958fca
MKL
2441#define BPF_BTF_GET_FD_BY_ID_LAST_FIELD btf_id
2442
2443static int bpf_btf_get_fd_by_id(const union bpf_attr *attr)
2444{
2445 if (CHECK_ATTR(BPF_BTF_GET_FD_BY_ID))
2446 return -EINVAL;
2447
2448 if (!capable(CAP_SYS_ADMIN))
2449 return -EPERM;
2450
2451 return btf_get_fd_by_id(attr->btf_id);
2452}
2453
41bdc4b4
YS
2454static int bpf_task_fd_query_copy(const union bpf_attr *attr,
2455 union bpf_attr __user *uattr,
2456 u32 prog_id, u32 fd_type,
2457 const char *buf, u64 probe_offset,
2458 u64 probe_addr)
2459{
2460 char __user *ubuf = u64_to_user_ptr(attr->task_fd_query.buf);
2461 u32 len = buf ? strlen(buf) : 0, input_len;
2462 int err = 0;
2463
2464 if (put_user(len, &uattr->task_fd_query.buf_len))
2465 return -EFAULT;
2466 input_len = attr->task_fd_query.buf_len;
2467 if (input_len && ubuf) {
2468 if (!len) {
2469 /* nothing to copy, just make ubuf NULL terminated */
2470 char zero = '\0';
2471
2472 if (put_user(zero, ubuf))
2473 return -EFAULT;
2474 } else if (input_len >= len + 1) {
2475 /* ubuf can hold the string with NULL terminator */
2476 if (copy_to_user(ubuf, buf, len + 1))
2477 return -EFAULT;
2478 } else {
2479 /* ubuf cannot hold the string with NULL terminator,
2480 * do a partial copy with NULL terminator.
2481 */
2482 char zero = '\0';
2483
2484 err = -ENOSPC;
2485 if (copy_to_user(ubuf, buf, input_len - 1))
2486 return -EFAULT;
2487 if (put_user(zero, ubuf + input_len - 1))
2488 return -EFAULT;
2489 }
2490 }
2491
2492 if (put_user(prog_id, &uattr->task_fd_query.prog_id) ||
2493 put_user(fd_type, &uattr->task_fd_query.fd_type) ||
2494 put_user(probe_offset, &uattr->task_fd_query.probe_offset) ||
2495 put_user(probe_addr, &uattr->task_fd_query.probe_addr))
2496 return -EFAULT;
2497
2498 return err;
2499}
2500
2501#define BPF_TASK_FD_QUERY_LAST_FIELD task_fd_query.probe_addr
2502
2503static int bpf_task_fd_query(const union bpf_attr *attr,
2504 union bpf_attr __user *uattr)
2505{
2506 pid_t pid = attr->task_fd_query.pid;
2507 u32 fd = attr->task_fd_query.fd;
2508 const struct perf_event *event;
2509 struct files_struct *files;
2510 struct task_struct *task;
2511 struct file *file;
2512 int err;
2513
2514 if (CHECK_ATTR(BPF_TASK_FD_QUERY))
2515 return -EINVAL;
2516
2517 if (!capable(CAP_SYS_ADMIN))
2518 return -EPERM;
2519
2520 if (attr->task_fd_query.flags != 0)
2521 return -EINVAL;
2522
2523 task = get_pid_task(find_vpid(pid), PIDTYPE_PID);
2524 if (!task)
2525 return -ENOENT;
2526
2527 files = get_files_struct(task);
2528 put_task_struct(task);
2529 if (!files)
2530 return -ENOENT;
2531
2532 err = 0;
2533 spin_lock(&files->file_lock);
2534 file = fcheck_files(files, fd);
2535 if (!file)
2536 err = -EBADF;
2537 else
2538 get_file(file);
2539 spin_unlock(&files->file_lock);
2540 put_files_struct(files);
2541
2542 if (err)
2543 goto out;
2544
2545 if (file->f_op == &bpf_raw_tp_fops) {
2546 struct bpf_raw_tracepoint *raw_tp = file->private_data;
2547 struct bpf_raw_event_map *btp = raw_tp->btp;
2548
2549 err = bpf_task_fd_query_copy(attr, uattr,
2550 raw_tp->prog->aux->id,
2551 BPF_FD_TYPE_RAW_TRACEPOINT,
2552 btp->tp->name, 0, 0);
2553 goto put_file;
2554 }
2555
2556 event = perf_get_event(file);
2557 if (!IS_ERR(event)) {
2558 u64 probe_offset, probe_addr;
2559 u32 prog_id, fd_type;
2560 const char *buf;
2561
2562 err = bpf_get_perf_event_info(event, &prog_id, &fd_type,
2563 &buf, &probe_offset,
2564 &probe_addr);
2565 if (!err)
2566 err = bpf_task_fd_query_copy(attr, uattr, prog_id,
2567 fd_type, buf,
2568 probe_offset,
2569 probe_addr);
2570 goto put_file;
2571 }
2572
2573 err = -ENOTSUPP;
2574put_file:
2575 fput(file);
2576out:
2577 return err;
2578}
2579
99c55f7d
AS
2580SYSCALL_DEFINE3(bpf, int, cmd, union bpf_attr __user *, uattr, unsigned int, size)
2581{
2582 union bpf_attr attr = {};
2583 int err;
2584
0fa4fe85 2585 if (sysctl_unprivileged_bpf_disabled && !capable(CAP_SYS_ADMIN))
99c55f7d
AS
2586 return -EPERM;
2587
dcab51f1 2588 err = bpf_check_uarg_tail_zero(uattr, sizeof(attr), size);
1e270976
MKL
2589 if (err)
2590 return err;
2591 size = min_t(u32, size, sizeof(attr));
99c55f7d
AS
2592
2593 /* copy attributes from user space, may be less than sizeof(bpf_attr) */
2594 if (copy_from_user(&attr, uattr, size) != 0)
2595 return -EFAULT;
2596
afdb09c7
CF
2597 err = security_bpf(cmd, &attr, size);
2598 if (err < 0)
2599 return err;
2600
99c55f7d
AS
2601 switch (cmd) {
2602 case BPF_MAP_CREATE:
2603 err = map_create(&attr);
2604 break;
db20fd2b
AS
2605 case BPF_MAP_LOOKUP_ELEM:
2606 err = map_lookup_elem(&attr);
2607 break;
2608 case BPF_MAP_UPDATE_ELEM:
2609 err = map_update_elem(&attr);
2610 break;
2611 case BPF_MAP_DELETE_ELEM:
2612 err = map_delete_elem(&attr);
2613 break;
2614 case BPF_MAP_GET_NEXT_KEY:
2615 err = map_get_next_key(&attr);
2616 break;
09756af4 2617 case BPF_PROG_LOAD:
838e9690 2618 err = bpf_prog_load(&attr, uattr);
09756af4 2619 break;
b2197755
DB
2620 case BPF_OBJ_PIN:
2621 err = bpf_obj_pin(&attr);
2622 break;
2623 case BPF_OBJ_GET:
2624 err = bpf_obj_get(&attr);
2625 break;
f4324551
DM
2626 case BPF_PROG_ATTACH:
2627 err = bpf_prog_attach(&attr);
2628 break;
2629 case BPF_PROG_DETACH:
2630 err = bpf_prog_detach(&attr);
2631 break;
468e2f64
AS
2632 case BPF_PROG_QUERY:
2633 err = bpf_prog_query(&attr, uattr);
2634 break;
1cf1cae9
AS
2635 case BPF_PROG_TEST_RUN:
2636 err = bpf_prog_test_run(&attr, uattr);
2637 break;
34ad5580
MKL
2638 case BPF_PROG_GET_NEXT_ID:
2639 err = bpf_obj_get_next_id(&attr, uattr,
2640 &prog_idr, &prog_idr_lock);
2641 break;
2642 case BPF_MAP_GET_NEXT_ID:
2643 err = bpf_obj_get_next_id(&attr, uattr,
2644 &map_idr, &map_idr_lock);
2645 break;
b16d9aa4
MKL
2646 case BPF_PROG_GET_FD_BY_ID:
2647 err = bpf_prog_get_fd_by_id(&attr);
2648 break;
bd5f5f4e
MKL
2649 case BPF_MAP_GET_FD_BY_ID:
2650 err = bpf_map_get_fd_by_id(&attr);
2651 break;
1e270976
MKL
2652 case BPF_OBJ_GET_INFO_BY_FD:
2653 err = bpf_obj_get_info_by_fd(&attr, uattr);
2654 break;
c4f6699d
AS
2655 case BPF_RAW_TRACEPOINT_OPEN:
2656 err = bpf_raw_tracepoint_open(&attr);
2657 break;
f56a653c
MKL
2658 case BPF_BTF_LOAD:
2659 err = bpf_btf_load(&attr);
2660 break;
78958fca
MKL
2661 case BPF_BTF_GET_FD_BY_ID:
2662 err = bpf_btf_get_fd_by_id(&attr);
2663 break;
41bdc4b4
YS
2664 case BPF_TASK_FD_QUERY:
2665 err = bpf_task_fd_query(&attr, uattr);
2666 break;
bd513cd0
MV
2667 case BPF_MAP_LOOKUP_AND_DELETE_ELEM:
2668 err = map_lookup_and_delete_elem(&attr);
2669 break;
99c55f7d
AS
2670 default:
2671 err = -EINVAL;
2672 break;
2673 }
2674
2675 return err;
2676}