blob: 30ebd085790bad3a6a1500362f88ebff60f6cb80 [file] [log] [blame]
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07001/* 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>
Daniel Borkmanna67edbf2017-01-25 02:28:18 +010013#include <linux/bpf_trace.h>
Sean Youngf4364dc2018-05-27 12:24:09 +010014#include <linux/bpf_lirc.h>
Martin KaFai Lauf56a6532018-04-18 15:56:01 -070015#include <linux/btf.h>
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070016#include <linux/syscalls.h>
17#include <linux/slab.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010018#include <linux/sched/signal.h>
Daniel Borkmannd407bd22017-01-18 15:14:17 +010019#include <linux/vmalloc.h>
20#include <linux/mmzone.h>
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070021#include <linux/anon_inodes.h>
Yonghong Song41bdc4b2018-05-24 11:21:09 -070022#include <linux/fdtable.h>
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -070023#include <linux/file.h>
Yonghong Song41bdc4b2018-05-24 11:21:09 -070024#include <linux/fs.h>
Alexei Starovoitov09756af2014-09-26 00:17:00 -070025#include <linux/license.h>
26#include <linux/filter.h>
Alexei Starovoitov25415172015-03-25 12:49:20 -070027#include <linux/version.h>
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +010028#include <linux/kernel.h>
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -070029#include <linux/idr.h>
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -070030#include <linux/cred.h>
31#include <linux/timekeeping.h>
32#include <linux/ctype.h>
Mark Rutland9ef09e32018-05-03 17:04:59 +010033#include <linux/nospec.h>
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070034
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -070035#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
Chenbo Feng6e71b042017-10-18 13:00:22 -070042#define BPF_OBJ_FLAG_MASK (BPF_F_RDONLY | BPF_F_WRONLY)
43
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -080044DEFINE_PER_CPU(int, bpf_prog_active);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -070045static DEFINE_IDR(prog_idr);
46static DEFINE_SPINLOCK(prog_idr_lock);
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -070047static DEFINE_IDR(map_idr);
48static DEFINE_SPINLOCK(map_idr_lock);
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -080049
Alexei Starovoitov1be7f752015-10-07 22:23:21 -070050int sysctl_unprivileged_bpf_disabled __read_mostly;
51
Johannes Berg40077e02017-04-11 15:34:58 +020052static 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};
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070060
Mickaël Salaün752ba562017-08-07 20:45:20 +020061/*
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 */
Martin KaFai Laudcab51f2018-05-22 15:03:31 -070070int bpf_check_uarg_tail_zero(void __user *uaddr,
71 size_t expected_size,
72 size_t actual_size)
Mickaël Salaün58291a72017-08-07 20:45:19 +020073{
74 unsigned char __user *addr;
75 unsigned char __user *end;
76 unsigned char val;
77 int err;
78
Mickaël Salaün752ba562017-08-07 20:45:20 +020079 if (unlikely(actual_size > PAGE_SIZE)) /* silly large */
80 return -E2BIG;
81
Linus Torvalds96d4f262019-01-03 18:57:57 -080082 if (unlikely(!access_ok(uaddr, actual_size)))
Mickaël Salaün752ba562017-08-07 20:45:20 +020083 return -EFAULT;
84
Mickaël Salaün58291a72017-08-07 20:45:19 +020085 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
Jakub Kicinskia3884572018-01-11 20:29:09 -0800102const struct bpf_map_ops bpf_map_offload_ops = {
103 .map_alloc = bpf_map_offload_map_alloc,
104 .map_free = bpf_map_offload_map_free,
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200105 .map_check_btf = map_check_no_btf,
Jakub Kicinskia3884572018-01-11 20:29:09 -0800106};
107
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700108static struct bpf_map *find_and_alloc_map(union bpf_attr *attr)
109{
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800110 const struct bpf_map_ops *ops;
Mark Rutland9ef09e32018-05-03 17:04:59 +0100111 u32 type = attr->map_type;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700112 struct bpf_map *map;
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800113 int err;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700114
Mark Rutland9ef09e32018-05-03 17:04:59 +0100115 if (type >= ARRAY_SIZE(bpf_map_types))
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800116 return ERR_PTR(-EINVAL);
Mark Rutland9ef09e32018-05-03 17:04:59 +0100117 type = array_index_nospec(type, ARRAY_SIZE(bpf_map_types));
118 ops = bpf_map_types[type];
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800119 if (!ops)
Johannes Berg40077e02017-04-11 15:34:58 +0200120 return ERR_PTR(-EINVAL);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700121
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800122 if (ops->map_alloc_check) {
123 err = ops->map_alloc_check(attr);
124 if (err)
125 return ERR_PTR(err);
126 }
Jakub Kicinskia3884572018-01-11 20:29:09 -0800127 if (attr->map_ifindex)
128 ops = &bpf_map_offload_ops;
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800129 map = ops->map_alloc(attr);
Johannes Berg40077e02017-04-11 15:34:58 +0200130 if (IS_ERR(map))
131 return map;
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800132 map->ops = ops;
Mark Rutland9ef09e32018-05-03 17:04:59 +0100133 map->map_type = type;
Johannes Berg40077e02017-04-11 15:34:58 +0200134 return map;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700135}
136
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700137void *bpf_map_area_alloc(size_t size, int numa_node)
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100138{
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)) {
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700147 area = kmalloc_node(size, GFP_USER | flags, numa_node);
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100148 if (area != NULL)
149 return area;
150 }
151
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700152 return __vmalloc_node_flags_caller(size, numa_node, GFP_KERNEL | flags,
153 __builtin_return_address(0));
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100154}
155
156void bpf_map_area_free(void *area)
157{
158 kvfree(area);
159}
160
Jakub Kicinskibd475642018-01-11 20:29:06 -0800161void 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
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800171int 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
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700184static int bpf_charge_memlock(struct user_struct *user, u32 pages)
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700185{
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700186 unsigned long memlock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700187
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700188 if (atomic_long_add_return(pages, &user->locked_vm) > memlock_limit) {
189 atomic_long_sub(pages, &user->locked_vm);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700190 return -EPERM;
191 }
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700192 return 0;
193}
194
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700195static void bpf_uncharge_memlock(struct user_struct *user, u32 pages)
196{
197 atomic_long_sub(pages, &user->locked_vm);
198}
199
200static int bpf_map_init_memlock(struct bpf_map *map)
201{
202 struct user_struct *user = get_current_user();
203 int ret;
204
205 ret = bpf_charge_memlock(user, map->pages);
206 if (ret) {
207 free_uid(user);
208 return ret;
209 }
210 map->user = user;
211 return ret;
212}
213
214static void bpf_map_release_memlock(struct bpf_map *map)
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700215{
216 struct user_struct *user = map->user;
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700217 bpf_uncharge_memlock(user, map->pages);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700218 free_uid(user);
219}
220
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700221int 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
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700238static int bpf_map_alloc_id(struct bpf_map *map)
239{
240 int id;
241
Shaohua Lib76354c2018-03-27 11:53:21 -0700242 idr_preload(GFP_KERNEL);
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700243 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);
Shaohua Lib76354c2018-03-27 11:53:21 -0700248 idr_preload_end();
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700249
250 if (WARN_ON_ONCE(!id))
251 return -ENOSPC;
252
253 return id > 0 ? 0 : id;
254}
255
Jakub Kicinskia3884572018-01-11 20:29:09 -0800256void bpf_map_free_id(struct bpf_map *map, bool do_idr_lock)
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700257{
Eric Dumazet930651a2017-09-19 09:15:59 -0700258 unsigned long flags;
259
Jakub Kicinskia3884572018-01-11 20:29:09 -0800260 /* 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
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700268 if (do_idr_lock)
Eric Dumazet930651a2017-09-19 09:15:59 -0700269 spin_lock_irqsave(&map_idr_lock, flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700270 else
271 __acquire(&map_idr_lock);
272
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700273 idr_remove(&map_idr, map->id);
Jakub Kicinskia3884572018-01-11 20:29:09 -0800274 map->id = 0;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700275
276 if (do_idr_lock)
Eric Dumazet930651a2017-09-19 09:15:59 -0700277 spin_unlock_irqrestore(&map_idr_lock, flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700278 else
279 __release(&map_idr_lock);
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700280}
281
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700282/* 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
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700287 bpf_map_release_memlock(map);
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700288 security_bpf_map_free(map);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700289 /* implementation dependent freeing */
290 map->ops->map_free(map);
291}
292
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100293static void bpf_map_put_uref(struct bpf_map *map)
294{
295 if (atomic_dec_and_test(&map->usercnt)) {
John Fastabendba6b8de2018-04-23 15:39:23 -0700296 if (map->ops->map_release_uref)
297 map->ops->map_release_uref(map);
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100298 }
299}
300
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700301/* decrement map refcnt and schedule it for freeing via workqueue
302 * (unrelying map implementation ops->map_free() might sleep)
303 */
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700304static void __bpf_map_put(struct bpf_map *map, bool do_idr_lock)
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700305{
306 if (atomic_dec_and_test(&map->refcnt)) {
Martin KaFai Lau34ad5582017-06-05 12:15:48 -0700307 /* bpf_map_free_id() must be called first */
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700308 bpf_map_free_id(map, do_idr_lock);
Martin KaFai Lau78958fc2018-05-04 14:49:51 -0700309 btf_put(map->btf);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700310 INIT_WORK(&map->work, bpf_map_free_deferred);
311 schedule_work(&map->work);
312 }
313}
314
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700315void bpf_map_put(struct bpf_map *map)
316{
317 __bpf_map_put(map, true);
318}
Jakub Kicinski630a4d32018-05-03 18:37:09 -0700319EXPORT_SYMBOL_GPL(bpf_map_put);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700320
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100321void bpf_map_put_with_uref(struct bpf_map *map)
322{
323 bpf_map_put_uref(map);
324 bpf_map_put(map);
325}
326
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700327static int bpf_map_release(struct inode *inode, struct file *filp)
328{
Daniel Borkmann61d1b6a2016-06-15 22:47:12 +0200329 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);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700335 return 0;
336}
337
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100338#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;
Daniel Borkmann21116b72016-11-26 01:28:07 +0100342 const struct bpf_array *array;
343 u32 owner_prog_type = 0;
Daniel Borkmann9780c0a2017-07-02 02:13:28 +0200344 u32 owner_jited = 0;
Daniel Borkmann21116b72016-11-26 01:28:07 +0100345
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;
Daniel Borkmann9780c0a2017-07-02 02:13:28 +0200349 owner_jited = array->owner_jited;
Daniel Borkmann21116b72016-11-26 01:28:07 +0100350 }
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100351
352 seq_printf(m,
353 "map_type:\t%u\n"
354 "key_size:\t%u\n"
355 "value_size:\t%u\n"
Daniel Borkmann322cea22016-03-25 00:30:25 +0100356 "max_entries:\t%u\n"
Daniel Borkmann21116b72016-11-26 01:28:07 +0100357 "map_flags:\t%#x\n"
Daniel Borkmann4316b402018-06-02 23:06:34 +0200358 "memlock:\t%llu\n"
359 "map_id:\t%u\n",
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100360 map->map_type,
361 map->key_size,
362 map->value_size,
Daniel Borkmann322cea22016-03-25 00:30:25 +0100363 map->max_entries,
Daniel Borkmann21116b72016-11-26 01:28:07 +0100364 map->map_flags,
Daniel Borkmann4316b402018-06-02 23:06:34 +0200365 map->pages * 1ULL << PAGE_SHIFT,
366 map->id);
Daniel Borkmann21116b72016-11-26 01:28:07 +0100367
Daniel Borkmann9780c0a2017-07-02 02:13:28 +0200368 if (owner_prog_type) {
Daniel Borkmann21116b72016-11-26 01:28:07 +0100369 seq_printf(m, "owner_prog_type:\t%u\n",
370 owner_prog_type);
Daniel Borkmann9780c0a2017-07-02 02:13:28 +0200371 seq_printf(m, "owner_jited:\t%u\n",
372 owner_jited);
373 }
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100374}
375#endif
376
Chenbo Feng6e71b042017-10-18 13:00:22 -0700377static 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
Chenbo Fengf66e4482017-10-18 13:00:26 -0700395const struct file_operations bpf_map_fops = {
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100396#ifdef CONFIG_PROC_FS
397 .show_fdinfo = bpf_map_show_fdinfo,
398#endif
399 .release = bpf_map_release,
Chenbo Feng6e71b042017-10-18 13:00:22 -0700400 .read = bpf_dummy_read,
401 .write = bpf_dummy_write,
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700402};
403
Chenbo Feng6e71b042017-10-18 13:00:22 -0700404int bpf_map_new_fd(struct bpf_map *map, int flags)
Daniel Borkmannaa797812015-10-29 14:58:06 +0100405{
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700406 int ret;
407
408 ret = security_bpf_map(map, OPEN_FMODE(flags));
409 if (ret < 0)
410 return ret;
411
Daniel Borkmannaa797812015-10-29 14:58:06 +0100412 return anon_inode_getfd("bpf-map", &bpf_map_fops, map,
Chenbo Feng6e71b042017-10-18 13:00:22 -0700413 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;
Daniel Borkmannaa797812015-10-29 14:58:06 +0100425}
426
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700427/* 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
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -0700435/* 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
Martin KaFai Lau473d9732017-10-05 21:52:11 -0700442 memset(dst, 0, BPF_OBJ_NAME_LEN);
443
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -0700444 /* 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
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -0700455 return 0;
456}
457
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200458int map_check_no_btf(const struct bpf_map *map,
Roman Gushchin1b2b2342018-12-10 15:43:00 -0800459 const struct btf *btf,
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200460 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)
Roman Gushchin1b2b2342018-12-10 15:43:00 -0800482 ret = map->ops->map_check_btf(map, btf, key_type, value_type);
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200483
484 return ret;
485}
486
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700487#define BPF_MAP_CREATE_LAST_FIELD btf_value_type_id
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700488/* called via syscall */
489static int map_create(union bpf_attr *attr)
490{
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700491 int numa_node = bpf_map_attr_numa_node(attr);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700492 struct bpf_map *map;
Chenbo Feng6e71b042017-10-18 13:00:22 -0700493 int f_flags;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700494 int err;
495
496 err = CHECK_ATTR(BPF_MAP_CREATE);
497 if (err)
498 return -EINVAL;
499
Chenbo Feng6e71b042017-10-18 13:00:22 -0700500 f_flags = bpf_get_file_flag(attr->map_flags);
501 if (f_flags < 0)
502 return f_flags;
503
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700504 if (numa_node != NUMA_NO_NODE &&
Eric Dumazet96e5ae42017-09-04 22:41:02 -0700505 ((unsigned int)numa_node >= nr_node_ids ||
506 !node_online(numa_node)))
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700507 return -EINVAL;
508
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700509 /* 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
Martin KaFai Lauad5b1772017-09-27 14:37:53 -0700514 err = bpf_obj_name_cpy(map->name, attr->map_name);
515 if (err)
516 goto free_map_nouncharge;
517
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700518 atomic_set(&map->refcnt, 1);
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100519 atomic_set(&map->usercnt, 1);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700520
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200521 if (attr->btf_key_type_id || attr->btf_value_type_id) {
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700522 struct btf *btf;
523
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700524 if (!attr->btf_key_type_id || !attr->btf_value_type_id) {
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700525 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
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200535 err = map_check_btf(map, btf, attr->btf_key_type_id,
536 attr->btf_value_type_id);
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700537 if (err) {
538 btf_put(btf);
539 goto free_map_nouncharge;
540 }
541
542 map->btf = btf;
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700543 map->btf_key_type_id = attr->btf_key_type_id;
544 map->btf_value_type_id = attr->btf_value_type_id;
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700545 }
546
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700547 err = security_bpf_map_alloc(map);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700548 if (err)
Daniel Borkmann20b2b242016-11-04 00:56:31 +0100549 goto free_map_nouncharge;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700550
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700551 err = bpf_map_init_memlock(map);
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700552 if (err)
553 goto free_map_sec;
554
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700555 err = bpf_map_alloc_id(map);
556 if (err)
557 goto free_map;
558
Chenbo Feng6e71b042017-10-18 13:00:22 -0700559 err = bpf_map_new_fd(map, f_flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700560 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 }
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700570
571 return err;
572
573free_map:
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700574 bpf_map_release_memlock(map);
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700575free_map_sec:
576 security_bpf_map_free(map);
Daniel Borkmann20b2b242016-11-04 00:56:31 +0100577free_map_nouncharge:
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700578 btf_put(map->btf);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700579 map->ops->map_free(map);
580 return err;
581}
582
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700583/* if error is returned, fd is released.
584 * On success caller should complete fd access with matching fdput()
585 */
Daniel Borkmannc2101292015-10-29 14:58:07 +0100586struct bpf_map *__bpf_map_get(struct fd f)
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700587{
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700588 if (!f.file)
589 return ERR_PTR(-EBADF);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700590 if (f.file->f_op != &bpf_map_fops) {
591 fdput(f);
592 return ERR_PTR(-EINVAL);
593 }
594
Daniel Borkmannc2101292015-10-29 14:58:07 +0100595 return f.file->private_data;
596}
597
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700598/* 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)
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100602{
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700603 if (atomic_inc_return(&map->refcnt) > BPF_MAX_REFCNT) {
604 atomic_dec(&map->refcnt);
605 return ERR_PTR(-EBUSY);
606 }
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100607 if (uref)
608 atomic_inc(&map->usercnt);
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700609 return map;
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100610}
Jakub Kicinski630a4d32018-05-03 18:37:09 -0700611EXPORT_SYMBOL_GPL(bpf_map_inc);
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100612
613struct bpf_map *bpf_map_get_with_uref(u32 ufd)
Daniel Borkmannc2101292015-10-29 14:58:07 +0100614{
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
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700622 map = bpf_map_inc(map, true);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100623 fdput(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700624
625 return map;
626}
627
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700628/* 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
Mark Rutlandbfc18e32018-06-21 13:13:04 +0100634 refold = atomic_fetch_add_unless(&map->refcnt, 1, 0);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700635
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
Alexei Starovoitovb8cdc052016-03-09 18:56:49 -0800650int __weak bpf_stackmap_copy(struct bpf_map *map, void *key, void *value)
651{
652 return -ENOTSUPP;
653}
654
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +0200655static 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
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700666/* 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{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100671 void __user *ukey = u64_to_user_ptr(attr->key);
672 void __user *uvalue = u64_to_user_ptr(attr->value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700673 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700674 struct bpf_map *map;
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800675 void *key, *value, *ptr;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800676 u32 value_size;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200677 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700678 int err;
679
680 if (CHECK_ATTR(BPF_MAP_LOOKUP_ELEM))
681 return -EINVAL;
682
Daniel Borkmann592867b2015-09-08 18:00:09 +0200683 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100684 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700685 if (IS_ERR(map))
686 return PTR_ERR(map);
687
Chenbo Feng6e71b042017-10-18 13:00:22 -0700688 if (!(f.file->f_mode & FMODE_CAN_READ)) {
689 err = -EPERM;
690 goto err_put;
691 }
692
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +0200693 key = __bpf_copy_key(ukey, map->key_size);
Al Viroe4448ed2017-05-13 18:43:00 -0400694 if (IS_ERR(key)) {
695 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700696 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400697 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700698
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800699 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800700 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH ||
Roman Gushchinb741f162018-09-28 14:45:43 +0000701 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY ||
702 map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE)
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800703 value_size = round_up(map->value_size, 8) * num_possible_cpus();
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -0700704 else if (IS_FD_MAP(map))
705 value_size = sizeof(u32);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800706 else
707 value_size = map->value_size;
708
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800709 err = -ENOMEM;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800710 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700711 if (!value)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800712 goto free_key;
713
Jakub Kicinskia3884572018-01-11 20:29:09 -0800714 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) {
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800718 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);
Roman Gushchinb741f162018-09-28 14:45:43 +0000721 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) {
722 err = bpf_percpu_cgroup_storage_copy(map, key, value);
Alexei Starovoitov557c0c62016-03-07 21:57:17 -0800723 } else if (map->map_type == BPF_MAP_TYPE_STACK_TRACE) {
724 err = bpf_stackmap_copy(map, key, value);
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -0700725 } 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);
Martin KaFai Lau5dc4c4b2018-08-08 01:01:24 -0700729 } else if (map->map_type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY) {
730 err = bpf_fd_reuseport_array_lookup_elem(map, key, value);
Mauricio Vasquez Bf1a2e442018-10-18 15:16:25 +0200731 } 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);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800734 } else {
735 rcu_read_lock();
736 ptr = map->ops->map_lookup_elem(map, key);
Prashant Bhole509db282018-10-09 10:04:49 +0900737 if (IS_ERR(ptr)) {
738 err = PTR_ERR(ptr);
739 } else if (!ptr) {
740 err = -ENOENT;
741 } else {
742 err = 0;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800743 memcpy(value, ptr, value_size);
Prashant Bhole509db282018-10-09 10:04:49 +0900744 }
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800745 rcu_read_unlock();
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800746 }
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800747
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800748 if (err)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800749 goto free_value;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700750
751 err = -EFAULT;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800752 if (copy_to_user(uvalue, value, value_size) != 0)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800753 goto free_value;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700754
755 err = 0;
756
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800757free_value:
758 kfree(value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700759free_key:
760 kfree(key);
761err_put:
762 fdput(f);
763 return err;
764}
765
Daniel Colascione1ae80cf2018-10-12 03:54:27 -0700766static 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
Alexei Starovoitov3274f522014-11-13 17:36:44 -0800777#define BPF_MAP_UPDATE_ELEM_LAST_FIELD flags
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700778
779static int map_update_elem(union bpf_attr *attr)
780{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100781 void __user *ukey = u64_to_user_ptr(attr->key);
782 void __user *uvalue = u64_to_user_ptr(attr->value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700783 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700784 struct bpf_map *map;
785 void *key, *value;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800786 u32 value_size;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200787 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700788 int err;
789
790 if (CHECK_ATTR(BPF_MAP_UPDATE_ELEM))
791 return -EINVAL;
792
Daniel Borkmann592867b2015-09-08 18:00:09 +0200793 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100794 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700795 if (IS_ERR(map))
796 return PTR_ERR(map);
797
Chenbo Feng6e71b042017-10-18 13:00:22 -0700798 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
799 err = -EPERM;
800 goto err_put;
801 }
802
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +0200803 key = __bpf_copy_key(ukey, map->key_size);
Al Viroe4448ed2017-05-13 18:43:00 -0400804 if (IS_ERR(key)) {
805 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700806 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400807 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700808
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800809 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800810 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH ||
Roman Gushchinb741f162018-09-28 14:45:43 +0000811 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY ||
812 map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE)
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800813 value_size = round_up(map->value_size, 8) * num_possible_cpus();
814 else
815 value_size = map->value_size;
816
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700817 err = -ENOMEM;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800818 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700819 if (!value)
820 goto free_key;
821
822 err = -EFAULT;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800823 if (copy_from_user(value, uvalue, value_size) != 0)
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700824 goto free_value;
825
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200826 /* Need to create a kthread, thus must support schedule */
Jakub Kicinskia3884572018-01-11 20:29:09 -0800827 if (bpf_map_is_dev_bound(map)) {
828 err = bpf_map_offload_update_elem(map, key, value, attr->flags);
829 goto out;
John Fastabend99ba2b52018-07-05 08:50:04 -0700830 } 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) {
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200833 err = map->ops->map_update_elem(map, key, value, attr->flags);
834 goto out;
835 }
836
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800837 /* 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);
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800842 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
843 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) {
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800844 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);
Roman Gushchinb741f162018-09-28 14:45:43 +0000847 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) {
848 err = bpf_percpu_cgroup_storage_update(map, key, value,
849 attr->flags);
Mickaël Salaün9c147b52018-01-26 00:54:02 +0100850 } else if (IS_FD_ARRAY(map)) {
Daniel Borkmannd056a782016-06-15 22:47:13 +0200851 rcu_read_lock();
852 err = bpf_fd_array_map_update_elem(map, f.file, key, value,
853 attr->flags);
854 rcu_read_unlock();
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700855 } 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();
Martin KaFai Lau5dc4c4b2018-08-08 01:01:24 -0700860 } 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);
Mauricio Vasquez Bf1a2e442018-10-18 15:16:25 +0200864 } 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);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800867 } else {
868 rcu_read_lock();
869 err = map->ops->map_update_elem(map, key, value, attr->flags);
870 rcu_read_unlock();
871 }
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800872 __this_cpu_dec(bpf_prog_active);
873 preempt_enable();
Daniel Colascione1ae80cf2018-10-12 03:54:27 -0700874 maybe_wait_bpf_programs(map);
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200875out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700876free_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{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100889 void __user *ukey = u64_to_user_ptr(attr->key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700890 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700891 struct bpf_map *map;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200892 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700893 void *key;
894 int err;
895
896 if (CHECK_ATTR(BPF_MAP_DELETE_ELEM))
897 return -EINVAL;
898
Daniel Borkmann592867b2015-09-08 18:00:09 +0200899 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100900 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700901 if (IS_ERR(map))
902 return PTR_ERR(map);
903
Chenbo Feng6e71b042017-10-18 13:00:22 -0700904 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
905 err = -EPERM;
906 goto err_put;
907 }
908
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +0200909 key = __bpf_copy_key(ukey, map->key_size);
Al Viroe4448ed2017-05-13 18:43:00 -0400910 if (IS_ERR(key)) {
911 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700912 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400913 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700914
Jakub Kicinskia3884572018-01-11 20:29:09 -0800915 if (bpf_map_is_dev_bound(map)) {
916 err = bpf_map_offload_delete_elem(map, key);
917 goto out;
918 }
919
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800920 preempt_disable();
921 __this_cpu_inc(bpf_prog_active);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700922 rcu_read_lock();
923 err = map->ops->map_delete_elem(map, key);
924 rcu_read_unlock();
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800925 __this_cpu_dec(bpf_prog_active);
926 preempt_enable();
Daniel Colascione1ae80cf2018-10-12 03:54:27 -0700927 maybe_wait_bpf_programs(map);
Jakub Kicinskia3884572018-01-11 20:29:09 -0800928out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700929 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{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100940 void __user *ukey = u64_to_user_ptr(attr->key);
941 void __user *unext_key = u64_to_user_ptr(attr->next_key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700942 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700943 struct bpf_map *map;
944 void *key, *next_key;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200945 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700946 int err;
947
948 if (CHECK_ATTR(BPF_MAP_GET_NEXT_KEY))
949 return -EINVAL;
950
Daniel Borkmann592867b2015-09-08 18:00:09 +0200951 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100952 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700953 if (IS_ERR(map))
954 return PTR_ERR(map);
955
Chenbo Feng6e71b042017-10-18 13:00:22 -0700956 if (!(f.file->f_mode & FMODE_CAN_READ)) {
957 err = -EPERM;
958 goto err_put;
959 }
960
Teng Qin8fe45922017-04-24 19:00:37 -0700961 if (ukey) {
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +0200962 key = __bpf_copy_key(ukey, map->key_size);
Al Viroe4448ed2017-05-13 18:43:00 -0400963 if (IS_ERR(key)) {
964 err = PTR_ERR(key);
Teng Qin8fe45922017-04-24 19:00:37 -0700965 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400966 }
Teng Qin8fe45922017-04-24 19:00:37 -0700967 } else {
968 key = NULL;
969 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700970
971 err = -ENOMEM;
972 next_key = kmalloc(map->key_size, GFP_USER);
973 if (!next_key)
974 goto free_key;
975
Jakub Kicinskia3884572018-01-11 20:29:09 -0800976 if (bpf_map_is_dev_bound(map)) {
977 err = bpf_map_offload_get_next_key(map, key, next_key);
978 goto out;
979 }
980
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700981 rcu_read_lock();
982 err = map->ops->map_get_next_key(map, key, next_key);
983 rcu_read_unlock();
Jakub Kicinskia3884572018-01-11 20:29:09 -0800984out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700985 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
Mauricio Vasquez Bbd513cd2018-10-18 15:16:30 +02001003#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;
Alexei Starovoitov540fefc2018-10-19 13:52:38 -07001011 void *key, *value;
Mauricio Vasquez Bbd513cd2018-10-18 15:16:30 +02001012 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
Jakub Kicinski7de16e32017-10-16 16:40:53 -07001066static 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
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001075static int find_prog_type(enum bpf_prog_type type, struct bpf_prog *prog)
1076{
Daniel Borkmannd0f1a452018-05-04 02:13:57 +02001077 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)
Johannes Bergbe9370a2017-04-11 15:34:57 +02001084 return -EINVAL;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001085
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07001086 if (!bpf_prog_is_dev_bound(prog->aux))
Daniel Borkmannd0f1a452018-05-04 02:13:57 +02001087 prog->aux->ops = ops;
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07001088 else
1089 prog->aux->ops = &bpf_offload_prog_ops;
Johannes Bergbe9370a2017-04-11 15:34:57 +02001090 prog->type = type;
1091 return 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001092}
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{
Roman Gushchin8bad74f2018-09-28 14:45:36 +00001097 enum bpf_cgroup_storage_type stype;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001098 int i;
1099
Roman Gushchin8bad74f2018-09-28 14:45:36 +00001100 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 }
Roman Gushchinde9cbba2018-08-02 14:27:18 -07001106
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001107 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
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001113int __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
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001135static int bpf_prog_charge_memlock(struct bpf_prog *prog)
1136{
1137 struct user_struct *user = get_current_user();
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001138 int ret;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001139
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001140 ret = __bpf_prog_charge(user, prog->pages);
1141 if (ret) {
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001142 free_uid(user);
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001143 return ret;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001144 }
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001145
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001146 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
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001154 __bpf_prog_uncharge(user, prog->pages);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001155 free_uid(user);
1156}
1157
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001158static int bpf_prog_alloc_id(struct bpf_prog *prog)
1159{
1160 int id;
1161
Shaohua Lib76354c2018-03-27 11:53:21 -07001162 idr_preload(GFP_KERNEL);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001163 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);
Shaohua Lib76354c2018-03-27 11:53:21 -07001168 idr_preload_end();
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001169
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
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001177void bpf_prog_free_id(struct bpf_prog *prog, bool do_idr_lock)
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001178{
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001179 /* 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 */
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001184 if (!prog->aux->id)
1185 return;
1186
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001187 if (do_idr_lock)
1188 spin_lock_bh(&prog_idr_lock);
1189 else
1190 __acquire(&prog_idr_lock);
1191
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001192 idr_remove(&prog_idr, prog->aux->id);
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001193 prog->aux->id = 0;
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001194
1195 if (do_idr_lock)
1196 spin_unlock_bh(&prog_idr_lock);
1197 else
1198 __release(&prog_idr_lock);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001199}
1200
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001201static void __bpf_prog_put_rcu(struct rcu_head *rcu)
Alexei Starovoitovabf2e7d2015-05-28 19:26:02 -07001202{
1203 struct bpf_prog_aux *aux = container_of(rcu, struct bpf_prog_aux, rcu);
1204
1205 free_used_maps(aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001206 bpf_prog_uncharge_memlock(aux->prog);
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001207 security_bpf_prog_free(aux);
Alexei Starovoitovabf2e7d2015-05-28 19:26:02 -07001208 bpf_prog_free(aux->prog);
1209}
1210
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001211static void __bpf_prog_put(struct bpf_prog *prog, bool do_idr_lock)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001212{
Daniel Borkmanna67edbf2017-01-25 02:28:18 +01001213 if (atomic_dec_and_test(&prog->aux->refcnt)) {
Song Liu6ee52e22019-01-17 08:15:15 -08001214 perf_event_bpf_event(prog, PERF_BPF_EVENT_PROG_UNLOAD, 0);
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07001215 /* bpf_prog_free_id() must be called first */
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001216 bpf_prog_free_id(prog, do_idr_lock);
Daniel Borkmann7d1982b2018-06-15 02:30:47 +02001217 bpf_prog_kallsyms_del_all(prog);
Yonghong Song838e9692018-11-19 15:29:11 -08001218 btf_put(prog->aux->btf);
Yonghong Songba64e7d2018-11-24 23:20:44 -08001219 kvfree(prog->aux->func_info);
Martin KaFai Lauc454a462018-12-07 16:42:25 -08001220 bpf_prog_free_linfo(prog);
Daniel Borkmann4f74d802017-12-20 13:42:56 +01001221
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001222 call_rcu(&prog->aux->rcu, __bpf_prog_put_rcu);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +01001223 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001224}
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001225
1226void bpf_prog_put(struct bpf_prog *prog)
1227{
1228 __bpf_prog_put(prog, true);
1229}
Daniel Borkmanne2e9b652015-03-01 12:31:48 +01001230EXPORT_SYMBOL_GPL(bpf_prog_put);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001231
1232static int bpf_prog_release(struct inode *inode, struct file *filp)
1233{
1234 struct bpf_prog *prog = filp->private_data;
1235
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001236 bpf_prog_put(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001237 return 0;
1238}
1239
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001240#ifdef CONFIG_PROC_FS
1241static void bpf_prog_show_fdinfo(struct seq_file *m, struct file *filp)
1242{
1243 const struct bpf_prog *prog = filp->private_data;
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001244 char prog_tag[sizeof(prog->tag) * 2 + 1] = { };
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001245
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001246 bin2hex(prog_tag, prog->tag, sizeof(prog->tag));
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001247 seq_printf(m,
1248 "prog_type:\t%u\n"
1249 "prog_jited:\t%u\n"
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001250 "prog_tag:\t%s\n"
Daniel Borkmann4316b402018-06-02 23:06:34 +02001251 "memlock:\t%llu\n"
1252 "prog_id:\t%u\n",
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001253 prog->type,
1254 prog->jited,
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001255 prog_tag,
Daniel Borkmann4316b402018-06-02 23:06:34 +02001256 prog->pages * 1ULL << PAGE_SHIFT,
1257 prog->aux->id);
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001258}
1259#endif
1260
Chenbo Fengf66e4482017-10-18 13:00:26 -07001261const struct file_operations bpf_prog_fops = {
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001262#ifdef CONFIG_PROC_FS
1263 .show_fdinfo = bpf_prog_show_fdinfo,
1264#endif
1265 .release = bpf_prog_release,
Chenbo Feng6e71b042017-10-18 13:00:22 -07001266 .read = bpf_dummy_read,
1267 .write = bpf_dummy_write,
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001268};
1269
Daniel Borkmannb2197752015-10-29 14:58:09 +01001270int bpf_prog_new_fd(struct bpf_prog *prog)
Daniel Borkmannaa797812015-10-29 14:58:06 +01001271{
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001272 int ret;
1273
1274 ret = security_bpf_prog(prog);
1275 if (ret < 0)
1276 return ret;
1277
Daniel Borkmannaa797812015-10-29 14:58:06 +01001278 return anon_inode_getfd("bpf-prog", &bpf_prog_fops, prog,
1279 O_RDWR | O_CLOEXEC);
1280}
1281
Daniel Borkmann113214b2016-06-30 17:24:44 +02001282static struct bpf_prog *____bpf_prog_get(struct fd f)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001283{
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001284 if (!f.file)
1285 return ERR_PTR(-EBADF);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001286 if (f.file->f_op != &bpf_prog_fops) {
1287 fdput(f);
1288 return ERR_PTR(-EINVAL);
1289 }
1290
Daniel Borkmannc2101292015-10-29 14:58:07 +01001291 return f.file->private_data;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001292}
1293
Brenden Blanco59d36562016-07-19 12:16:46 -07001294struct bpf_prog *bpf_prog_add(struct bpf_prog *prog, int i)
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001295{
Brenden Blanco59d36562016-07-19 12:16:46 -07001296 if (atomic_add_return(i, &prog->aux->refcnt) > BPF_MAX_REFCNT) {
1297 atomic_sub(i, &prog->aux->refcnt);
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001298 return ERR_PTR(-EBUSY);
1299 }
1300 return prog;
1301}
Brenden Blanco59d36562016-07-19 12:16:46 -07001302EXPORT_SYMBOL_GPL(bpf_prog_add);
1303
Daniel Borkmannc5405942016-11-09 22:02:34 +01001304void bpf_prog_sub(struct bpf_prog *prog, int i)
1305{
1306 /* Only to be used for undoing previous bpf_prog_add() in some
1307 * error path. We still know that another entity in our call
1308 * path holds a reference to the program, thus atomic_sub() can
1309 * be safely used in such cases!
1310 */
1311 WARN_ON(atomic_sub_return(i, &prog->aux->refcnt) == 0);
1312}
1313EXPORT_SYMBOL_GPL(bpf_prog_sub);
1314
Brenden Blanco59d36562016-07-19 12:16:46 -07001315struct bpf_prog *bpf_prog_inc(struct bpf_prog *prog)
1316{
1317 return bpf_prog_add(prog, 1);
1318}
Daniel Borkmann97bc4022016-11-19 01:45:00 +01001319EXPORT_SYMBOL_GPL(bpf_prog_inc);
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001320
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001321/* prog_idr_lock should have been held */
John Fastabenda6f6df62017-08-15 22:32:22 -07001322struct bpf_prog *bpf_prog_inc_not_zero(struct bpf_prog *prog)
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001323{
1324 int refold;
1325
Mark Rutlandbfc18e32018-06-21 13:13:04 +01001326 refold = atomic_fetch_add_unless(&prog->aux->refcnt, 1, 0);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001327
1328 if (refold >= BPF_MAX_REFCNT) {
1329 __bpf_prog_put(prog, false);
1330 return ERR_PTR(-EBUSY);
1331 }
1332
1333 if (!refold)
1334 return ERR_PTR(-ENOENT);
1335
1336 return prog;
1337}
John Fastabenda6f6df62017-08-15 22:32:22 -07001338EXPORT_SYMBOL_GPL(bpf_prog_inc_not_zero);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001339
Al Viro040ee692017-12-02 20:20:38 -05001340bool bpf_prog_get_ok(struct bpf_prog *prog,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001341 enum bpf_prog_type *attach_type, bool attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001342{
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001343 /* not an attachment, just a refcount inc, always allow */
1344 if (!attach_type)
1345 return true;
Jakub Kicinski248f3462017-11-03 13:56:20 -07001346
1347 if (prog->type != *attach_type)
1348 return false;
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001349 if (bpf_prog_is_dev_bound(prog->aux) && !attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001350 return false;
1351
1352 return true;
1353}
1354
1355static struct bpf_prog *__bpf_prog_get(u32 ufd, enum bpf_prog_type *attach_type,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001356 bool attach_drv)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001357{
1358 struct fd f = fdget(ufd);
1359 struct bpf_prog *prog;
1360
Daniel Borkmann113214b2016-06-30 17:24:44 +02001361 prog = ____bpf_prog_get(f);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001362 if (IS_ERR(prog))
1363 return prog;
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001364 if (!bpf_prog_get_ok(prog, attach_type, attach_drv)) {
Daniel Borkmann113214b2016-06-30 17:24:44 +02001365 prog = ERR_PTR(-EINVAL);
1366 goto out;
1367 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001368
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001369 prog = bpf_prog_inc(prog);
Daniel Borkmann113214b2016-06-30 17:24:44 +02001370out:
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001371 fdput(f);
1372 return prog;
1373}
Daniel Borkmann113214b2016-06-30 17:24:44 +02001374
1375struct bpf_prog *bpf_prog_get(u32 ufd)
1376{
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001377 return __bpf_prog_get(ufd, NULL, false);
Daniel Borkmann113214b2016-06-30 17:24:44 +02001378}
1379
Jakub Kicinski248f3462017-11-03 13:56:20 -07001380struct bpf_prog *bpf_prog_get_type_dev(u32 ufd, enum bpf_prog_type type,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001381 bool attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001382{
Alexei Starovoitov4d220ed2018-04-28 19:56:37 -07001383 return __bpf_prog_get(ufd, &type, attach_drv);
Jakub Kicinski248f3462017-11-03 13:56:20 -07001384}
Jakub Kicinski6c8dfe22017-11-03 13:56:21 -07001385EXPORT_SYMBOL_GPL(bpf_prog_get_type_dev);
Jakub Kicinski248f3462017-11-03 13:56:20 -07001386
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001387/* Initially all BPF programs could be loaded w/o specifying
1388 * expected_attach_type. Later for some of them specifying expected_attach_type
1389 * at load time became required so that program could be validated properly.
1390 * Programs of types that are allowed to be loaded both w/ and w/o (for
1391 * backward compatibility) expected_attach_type, should have the default attach
1392 * type assigned to expected_attach_type for the latter case, so that it can be
1393 * validated later at attach time.
1394 *
1395 * bpf_prog_load_fixup_attach_type() sets expected_attach_type in @attr if
1396 * prog type requires it but has some attach types that have to be backward
1397 * compatible.
1398 */
1399static void bpf_prog_load_fixup_attach_type(union bpf_attr *attr)
1400{
1401 switch (attr->prog_type) {
1402 case BPF_PROG_TYPE_CGROUP_SOCK:
1403 /* Unfortunately BPF_ATTACH_TYPE_UNSPEC enumeration doesn't
1404 * exist so checking for non-zero is the way to go here.
1405 */
1406 if (!attr->expected_attach_type)
1407 attr->expected_attach_type =
1408 BPF_CGROUP_INET_SOCK_CREATE;
1409 break;
1410 }
1411}
1412
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001413static int
1414bpf_prog_load_check_attach_type(enum bpf_prog_type prog_type,
1415 enum bpf_attach_type expected_attach_type)
1416{
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001417 switch (prog_type) {
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001418 case BPF_PROG_TYPE_CGROUP_SOCK:
1419 switch (expected_attach_type) {
1420 case BPF_CGROUP_INET_SOCK_CREATE:
1421 case BPF_CGROUP_INET4_POST_BIND:
1422 case BPF_CGROUP_INET6_POST_BIND:
1423 return 0;
1424 default:
1425 return -EINVAL;
1426 }
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001427 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
1428 switch (expected_attach_type) {
1429 case BPF_CGROUP_INET4_BIND:
1430 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001431 case BPF_CGROUP_INET4_CONNECT:
1432 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001433 case BPF_CGROUP_UDP4_SENDMSG:
1434 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001435 return 0;
1436 default:
1437 return -EINVAL;
1438 }
1439 default:
1440 return 0;
1441 }
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001442}
1443
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001444/* last field in 'union bpf_attr' used by this command */
Martin KaFai Lauc454a462018-12-07 16:42:25 -08001445#define BPF_PROG_LOAD_LAST_FIELD line_info_cnt
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001446
Yonghong Song838e9692018-11-19 15:29:11 -08001447static int bpf_prog_load(union bpf_attr *attr, union bpf_attr __user *uattr)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001448{
1449 enum bpf_prog_type type = attr->prog_type;
1450 struct bpf_prog *prog;
1451 int err;
1452 char license[128];
1453 bool is_gpl;
1454
1455 if (CHECK_ATTR(BPF_PROG_LOAD))
1456 return -EINVAL;
1457
David Millere9ee9ef2018-11-30 21:08:14 -08001458 if (attr->prog_flags & ~(BPF_F_STRICT_ALIGNMENT | BPF_F_ANY_ALIGNMENT))
David S. Millere07b98d2017-05-10 11:38:07 -07001459 return -EINVAL;
1460
David Millere9ee9ef2018-11-30 21:08:14 -08001461 if (!IS_ENABLED(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) &&
1462 (attr->prog_flags & BPF_F_ANY_ALIGNMENT) &&
1463 !capable(CAP_SYS_ADMIN))
1464 return -EPERM;
1465
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001466 /* copy eBPF program license from user space */
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001467 if (strncpy_from_user(license, u64_to_user_ptr(attr->license),
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001468 sizeof(license) - 1) < 0)
1469 return -EFAULT;
1470 license[sizeof(license) - 1] = 0;
1471
1472 /* eBPF programs must be GPL compatible to use GPL-ed functions */
1473 is_gpl = license_is_gpl_compatible(license);
1474
Daniel Borkmannef0915c2016-12-07 01:15:44 +01001475 if (attr->insn_cnt == 0 || attr->insn_cnt > BPF_MAXINSNS)
1476 return -E2BIG;
Chenbo Feng80b7d812017-05-31 18:16:00 -07001477 if (type != BPF_PROG_TYPE_SOCKET_FILTER &&
1478 type != BPF_PROG_TYPE_CGROUP_SKB &&
1479 !capable(CAP_SYS_ADMIN))
Alexei Starovoitov1be7f752015-10-07 22:23:21 -07001480 return -EPERM;
1481
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001482 bpf_prog_load_fixup_attach_type(attr);
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001483 if (bpf_prog_load_check_attach_type(type, attr->expected_attach_type))
1484 return -EINVAL;
1485
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001486 /* plain bpf_prog allocation */
1487 prog = bpf_prog_alloc(bpf_prog_size(attr->insn_cnt), GFP_USER);
1488 if (!prog)
1489 return -ENOMEM;
1490
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001491 prog->expected_attach_type = attr->expected_attach_type;
1492
Jakub Kicinski9a18eed2017-12-27 18:39:04 -08001493 prog->aux->offload_requested = !!attr->prog_ifindex;
1494
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001495 err = security_bpf_prog_alloc(prog->aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001496 if (err)
1497 goto free_prog_nouncharge;
1498
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001499 err = bpf_prog_charge_memlock(prog);
1500 if (err)
1501 goto free_prog_sec;
1502
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001503 prog->len = attr->insn_cnt;
1504
1505 err = -EFAULT;
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001506 if (copy_from_user(prog->insns, u64_to_user_ptr(attr->insns),
Daniel Borkmannaafe6ae2016-12-18 01:52:57 +01001507 bpf_prog_insn_size(prog)) != 0)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001508 goto free_prog;
1509
1510 prog->orig_prog = NULL;
Daniel Borkmanna91263d2015-09-30 01:41:50 +02001511 prog->jited = 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001512
1513 atomic_set(&prog->aux->refcnt, 1);
Daniel Borkmanna91263d2015-09-30 01:41:50 +02001514 prog->gpl_compatible = is_gpl ? 1 : 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001515
Jakub Kicinski9a18eed2017-12-27 18:39:04 -08001516 if (bpf_prog_is_dev_bound(prog->aux)) {
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07001517 err = bpf_prog_offload_init(prog, attr);
1518 if (err)
1519 goto free_prog;
1520 }
1521
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001522 /* find program type: socket_filter vs tracing_filter */
1523 err = find_prog_type(type, prog);
1524 if (err < 0)
1525 goto free_prog;
1526
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001527 prog->aux->load_time = ktime_get_boot_ns();
1528 err = bpf_obj_name_cpy(prog->aux->name, attr->prog_name);
1529 if (err)
1530 goto free_prog;
1531
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001532 /* run eBPF verifier */
Yonghong Song838e9692018-11-19 15:29:11 -08001533 err = bpf_check(&prog, attr, uattr);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001534 if (err < 0)
1535 goto free_used_maps;
1536
Daniel Borkmann9facc332018-06-15 02:30:48 +02001537 prog = bpf_prog_select_runtime(prog, &err);
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001538 if (err < 0)
1539 goto free_used_maps;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001540
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001541 err = bpf_prog_alloc_id(prog);
1542 if (err)
1543 goto free_used_maps;
1544
Daniel Borkmannaa797812015-10-29 14:58:06 +01001545 err = bpf_prog_new_fd(prog);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001546 if (err < 0) {
1547 /* failed to allocate fd.
1548 * bpf_prog_put() is needed because the above
1549 * bpf_prog_alloc_id() has published the prog
1550 * to the userspace and the userspace may
1551 * have refcnt-ed it through BPF_PROG_GET_FD_BY_ID.
1552 */
1553 bpf_prog_put(prog);
1554 return err;
1555 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001556
Daniel Borkmann74451e662017-02-16 22:24:50 +01001557 bpf_prog_kallsyms_add(prog);
Song Liu6ee52e22019-01-17 08:15:15 -08001558 perf_event_bpf_event(prog, PERF_BPF_EVENT_PROG_LOAD, 0);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001559 return err;
1560
1561free_used_maps:
Martin KaFai Lauc454a462018-12-07 16:42:25 -08001562 bpf_prog_free_linfo(prog);
Martin KaFai Lau5482e9a2018-12-01 17:08:44 -08001563 kvfree(prog->aux->func_info);
1564 btf_put(prog->aux->btf);
Daniel Borkmann7d1982b2018-06-15 02:30:47 +02001565 bpf_prog_kallsyms_del_subprogs(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001566 free_used_maps(prog->aux);
1567free_prog:
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001568 bpf_prog_uncharge_memlock(prog);
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001569free_prog_sec:
1570 security_bpf_prog_free(prog->aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001571free_prog_nouncharge:
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001572 bpf_prog_free(prog);
1573 return err;
1574}
1575
Chenbo Feng6e71b042017-10-18 13:00:22 -07001576#define BPF_OBJ_LAST_FIELD file_flags
Daniel Borkmannb2197752015-10-29 14:58:09 +01001577
1578static int bpf_obj_pin(const union bpf_attr *attr)
1579{
Chenbo Feng6e71b042017-10-18 13:00:22 -07001580 if (CHECK_ATTR(BPF_OBJ) || attr->file_flags != 0)
Daniel Borkmannb2197752015-10-29 14:58:09 +01001581 return -EINVAL;
1582
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001583 return bpf_obj_pin_user(attr->bpf_fd, u64_to_user_ptr(attr->pathname));
Daniel Borkmannb2197752015-10-29 14:58:09 +01001584}
1585
1586static int bpf_obj_get(const union bpf_attr *attr)
1587{
Chenbo Feng6e71b042017-10-18 13:00:22 -07001588 if (CHECK_ATTR(BPF_OBJ) || attr->bpf_fd != 0 ||
1589 attr->file_flags & ~BPF_OBJ_FLAG_MASK)
Daniel Borkmannb2197752015-10-29 14:58:09 +01001590 return -EINVAL;
1591
Chenbo Feng6e71b042017-10-18 13:00:22 -07001592 return bpf_obj_get_user(u64_to_user_ptr(attr->pathname),
1593 attr->file_flags);
Daniel Borkmannb2197752015-10-29 14:58:09 +01001594}
1595
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001596struct bpf_raw_tracepoint {
1597 struct bpf_raw_event_map *btp;
1598 struct bpf_prog *prog;
1599};
1600
1601static int bpf_raw_tracepoint_release(struct inode *inode, struct file *filp)
1602{
1603 struct bpf_raw_tracepoint *raw_tp = filp->private_data;
1604
1605 if (raw_tp->prog) {
1606 bpf_probe_unregister(raw_tp->btp, raw_tp->prog);
1607 bpf_prog_put(raw_tp->prog);
1608 }
Matt Mullinsa38d1102018-12-12 16:42:37 -08001609 bpf_put_raw_tracepoint(raw_tp->btp);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001610 kfree(raw_tp);
1611 return 0;
1612}
1613
1614static const struct file_operations bpf_raw_tp_fops = {
1615 .release = bpf_raw_tracepoint_release,
1616 .read = bpf_dummy_read,
1617 .write = bpf_dummy_write,
1618};
1619
1620#define BPF_RAW_TRACEPOINT_OPEN_LAST_FIELD raw_tracepoint.prog_fd
1621
1622static int bpf_raw_tracepoint_open(const union bpf_attr *attr)
1623{
1624 struct bpf_raw_tracepoint *raw_tp;
1625 struct bpf_raw_event_map *btp;
1626 struct bpf_prog *prog;
1627 char tp_name[128];
1628 int tp_fd, err;
1629
1630 if (strncpy_from_user(tp_name, u64_to_user_ptr(attr->raw_tracepoint.name),
1631 sizeof(tp_name) - 1) < 0)
1632 return -EFAULT;
1633 tp_name[sizeof(tp_name) - 1] = 0;
1634
Matt Mullinsa38d1102018-12-12 16:42:37 -08001635 btp = bpf_get_raw_tracepoint(tp_name);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001636 if (!btp)
1637 return -ENOENT;
1638
1639 raw_tp = kzalloc(sizeof(*raw_tp), GFP_USER);
Matt Mullinsa38d1102018-12-12 16:42:37 -08001640 if (!raw_tp) {
1641 err = -ENOMEM;
1642 goto out_put_btp;
1643 }
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001644 raw_tp->btp = btp;
1645
1646 prog = bpf_prog_get_type(attr->raw_tracepoint.prog_fd,
1647 BPF_PROG_TYPE_RAW_TRACEPOINT);
1648 if (IS_ERR(prog)) {
1649 err = PTR_ERR(prog);
1650 goto out_free_tp;
1651 }
1652
1653 err = bpf_probe_register(raw_tp->btp, prog);
1654 if (err)
1655 goto out_put_prog;
1656
1657 raw_tp->prog = prog;
1658 tp_fd = anon_inode_getfd("bpf-raw-tracepoint", &bpf_raw_tp_fops, raw_tp,
1659 O_CLOEXEC);
1660 if (tp_fd < 0) {
1661 bpf_probe_unregister(raw_tp->btp, prog);
1662 err = tp_fd;
1663 goto out_put_prog;
1664 }
1665 return tp_fd;
1666
1667out_put_prog:
1668 bpf_prog_put(prog);
1669out_free_tp:
1670 kfree(raw_tp);
Matt Mullinsa38d1102018-12-12 16:42:37 -08001671out_put_btp:
1672 bpf_put_raw_tracepoint(btp);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001673 return err;
1674}
1675
Anders Roxell33491582018-04-03 14:09:47 +02001676static int bpf_prog_attach_check_attach_type(const struct bpf_prog *prog,
1677 enum bpf_attach_type attach_type)
1678{
1679 switch (prog->type) {
1680 case BPF_PROG_TYPE_CGROUP_SOCK:
1681 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
1682 return attach_type == prog->expected_attach_type ? 0 : -EINVAL;
1683 default:
1684 return 0;
1685 }
1686}
1687
John Fastabend464bc0f2017-08-28 07:10:04 -07001688#define BPF_PROG_ATTACH_LAST_FIELD attach_flags
John Fastabend174a79f2017-08-15 22:32:47 -07001689
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001690#define BPF_F_ATTACH_MASK \
1691 (BPF_F_ALLOW_OVERRIDE | BPF_F_ALLOW_MULTI)
1692
Daniel Mackf4324552016-11-23 16:52:27 +01001693static int bpf_prog_attach(const union bpf_attr *attr)
1694{
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001695 enum bpf_prog_type ptype;
Daniel Mackf4324552016-11-23 16:52:27 +01001696 struct bpf_prog *prog;
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001697 int ret;
Daniel Mackf4324552016-11-23 16:52:27 +01001698
1699 if (!capable(CAP_NET_ADMIN))
1700 return -EPERM;
1701
1702 if (CHECK_ATTR(BPF_PROG_ATTACH))
1703 return -EINVAL;
1704
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001705 if (attr->attach_flags & ~BPF_F_ATTACH_MASK)
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001706 return -EINVAL;
1707
Daniel Mackf4324552016-11-23 16:52:27 +01001708 switch (attr->attach_type) {
1709 case BPF_CGROUP_INET_INGRESS:
1710 case BPF_CGROUP_INET_EGRESS:
David Ahernb2cd1252016-12-01 08:48:03 -08001711 ptype = BPF_PROG_TYPE_CGROUP_SKB;
Daniel Mackf4324552016-11-23 16:52:27 +01001712 break;
David Ahern610236582016-12-01 08:48:04 -08001713 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001714 case BPF_CGROUP_INET4_POST_BIND:
1715 case BPF_CGROUP_INET6_POST_BIND:
David Ahern610236582016-12-01 08:48:04 -08001716 ptype = BPF_PROG_TYPE_CGROUP_SOCK;
1717 break;
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001718 case BPF_CGROUP_INET4_BIND:
1719 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001720 case BPF_CGROUP_INET4_CONNECT:
1721 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001722 case BPF_CGROUP_UDP4_SENDMSG:
1723 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001724 ptype = BPF_PROG_TYPE_CGROUP_SOCK_ADDR;
1725 break;
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001726 case BPF_CGROUP_SOCK_OPS:
1727 ptype = BPF_PROG_TYPE_SOCK_OPS;
1728 break;
Roman Gushchinebc614f2017-11-05 08:15:32 -05001729 case BPF_CGROUP_DEVICE:
1730 ptype = BPF_PROG_TYPE_CGROUP_DEVICE;
1731 break;
John Fastabend4f738ad2018-03-18 12:57:10 -07001732 case BPF_SK_MSG_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001733 ptype = BPF_PROG_TYPE_SK_MSG;
1734 break;
John Fastabend464bc0f2017-08-28 07:10:04 -07001735 case BPF_SK_SKB_STREAM_PARSER:
1736 case BPF_SK_SKB_STREAM_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001737 ptype = BPF_PROG_TYPE_SK_SKB;
1738 break;
Sean Youngf4364dc2018-05-27 12:24:09 +01001739 case BPF_LIRC_MODE2:
Sean Youngfdb5c452018-06-19 00:04:24 +01001740 ptype = BPF_PROG_TYPE_LIRC_MODE2;
1741 break;
Petar Penkovd58e4682018-09-14 07:46:18 -07001742 case BPF_FLOW_DISSECTOR:
1743 ptype = BPF_PROG_TYPE_FLOW_DISSECTOR;
1744 break;
Daniel Mackf4324552016-11-23 16:52:27 +01001745 default:
1746 return -EINVAL;
1747 }
1748
David Ahernb2cd1252016-12-01 08:48:03 -08001749 prog = bpf_prog_get_type(attr->attach_bpf_fd, ptype);
1750 if (IS_ERR(prog))
1751 return PTR_ERR(prog);
1752
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001753 if (bpf_prog_attach_check_attach_type(prog, attr->attach_type)) {
1754 bpf_prog_put(prog);
1755 return -EINVAL;
1756 }
1757
Sean Youngfdb5c452018-06-19 00:04:24 +01001758 switch (ptype) {
1759 case BPF_PROG_TYPE_SK_SKB:
1760 case BPF_PROG_TYPE_SK_MSG:
Daniel Borkmann604326b2018-10-13 02:45:58 +02001761 ret = sock_map_get_from_fd(attr, prog);
Sean Youngfdb5c452018-06-19 00:04:24 +01001762 break;
1763 case BPF_PROG_TYPE_LIRC_MODE2:
1764 ret = lirc_prog_attach(attr, prog);
1765 break;
Petar Penkovd58e4682018-09-14 07:46:18 -07001766 case BPF_PROG_TYPE_FLOW_DISSECTOR:
1767 ret = skb_flow_dissector_bpf_prog_attach(attr, prog);
1768 break;
Sean Youngfdb5c452018-06-19 00:04:24 +01001769 default:
1770 ret = cgroup_bpf_prog_attach(attr, ptype, prog);
David Ahernb2cd1252016-12-01 08:48:03 -08001771 }
1772
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001773 if (ret)
1774 bpf_prog_put(prog);
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001775 return ret;
Daniel Mackf4324552016-11-23 16:52:27 +01001776}
1777
1778#define BPF_PROG_DETACH_LAST_FIELD attach_type
1779
1780static int bpf_prog_detach(const union bpf_attr *attr)
1781{
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001782 enum bpf_prog_type ptype;
Daniel Mackf4324552016-11-23 16:52:27 +01001783
1784 if (!capable(CAP_NET_ADMIN))
1785 return -EPERM;
1786
1787 if (CHECK_ATTR(BPF_PROG_DETACH))
1788 return -EINVAL;
1789
1790 switch (attr->attach_type) {
1791 case BPF_CGROUP_INET_INGRESS:
1792 case BPF_CGROUP_INET_EGRESS:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001793 ptype = BPF_PROG_TYPE_CGROUP_SKB;
1794 break;
David Ahern610236582016-12-01 08:48:04 -08001795 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001796 case BPF_CGROUP_INET4_POST_BIND:
1797 case BPF_CGROUP_INET6_POST_BIND:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001798 ptype = BPF_PROG_TYPE_CGROUP_SOCK;
1799 break;
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001800 case BPF_CGROUP_INET4_BIND:
1801 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001802 case BPF_CGROUP_INET4_CONNECT:
1803 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001804 case BPF_CGROUP_UDP4_SENDMSG:
1805 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001806 ptype = BPF_PROG_TYPE_CGROUP_SOCK_ADDR;
1807 break;
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001808 case BPF_CGROUP_SOCK_OPS:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001809 ptype = BPF_PROG_TYPE_SOCK_OPS;
Daniel Mackf4324552016-11-23 16:52:27 +01001810 break;
Roman Gushchinebc614f2017-11-05 08:15:32 -05001811 case BPF_CGROUP_DEVICE:
1812 ptype = BPF_PROG_TYPE_CGROUP_DEVICE;
1813 break;
John Fastabend4f738ad2018-03-18 12:57:10 -07001814 case BPF_SK_MSG_VERDICT:
Daniel Borkmann604326b2018-10-13 02:45:58 +02001815 return sock_map_get_from_fd(attr, NULL);
John Fastabend5a67da22017-09-08 14:00:49 -07001816 case BPF_SK_SKB_STREAM_PARSER:
1817 case BPF_SK_SKB_STREAM_VERDICT:
Daniel Borkmann604326b2018-10-13 02:45:58 +02001818 return sock_map_get_from_fd(attr, NULL);
Sean Youngf4364dc2018-05-27 12:24:09 +01001819 case BPF_LIRC_MODE2:
1820 return lirc_prog_detach(attr);
Petar Penkovd58e4682018-09-14 07:46:18 -07001821 case BPF_FLOW_DISSECTOR:
1822 return skb_flow_dissector_bpf_prog_detach(attr);
Daniel Mackf4324552016-11-23 16:52:27 +01001823 default:
1824 return -EINVAL;
1825 }
1826
Sean Youngfdb5c452018-06-19 00:04:24 +01001827 return cgroup_bpf_prog_detach(attr, ptype);
Daniel Mackf4324552016-11-23 16:52:27 +01001828}
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001829
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001830#define BPF_PROG_QUERY_LAST_FIELD query.prog_cnt
1831
1832static int bpf_prog_query(const union bpf_attr *attr,
1833 union bpf_attr __user *uattr)
1834{
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001835 if (!capable(CAP_NET_ADMIN))
1836 return -EPERM;
1837 if (CHECK_ATTR(BPF_PROG_QUERY))
1838 return -EINVAL;
1839 if (attr->query.query_flags & ~BPF_F_QUERY_EFFECTIVE)
1840 return -EINVAL;
1841
1842 switch (attr->query.attach_type) {
1843 case BPF_CGROUP_INET_INGRESS:
1844 case BPF_CGROUP_INET_EGRESS:
1845 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001846 case BPF_CGROUP_INET4_BIND:
1847 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001848 case BPF_CGROUP_INET4_POST_BIND:
1849 case BPF_CGROUP_INET6_POST_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001850 case BPF_CGROUP_INET4_CONNECT:
1851 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001852 case BPF_CGROUP_UDP4_SENDMSG:
1853 case BPF_CGROUP_UDP6_SENDMSG:
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001854 case BPF_CGROUP_SOCK_OPS:
Roman Gushchinebc614f2017-11-05 08:15:32 -05001855 case BPF_CGROUP_DEVICE:
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001856 break;
Sean Youngf4364dc2018-05-27 12:24:09 +01001857 case BPF_LIRC_MODE2:
1858 return lirc_prog_query(attr, uattr);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001859 default:
1860 return -EINVAL;
1861 }
Sean Youngfdb5c452018-06-19 00:04:24 +01001862
1863 return cgroup_bpf_prog_query(attr, uattr);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001864}
Daniel Mackf4324552016-11-23 16:52:27 +01001865
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07001866#define BPF_PROG_TEST_RUN_LAST_FIELD test.duration
1867
1868static int bpf_prog_test_run(const union bpf_attr *attr,
1869 union bpf_attr __user *uattr)
1870{
1871 struct bpf_prog *prog;
1872 int ret = -ENOTSUPP;
1873
Alexei Starovoitov61f3c962018-01-17 16:52:02 -08001874 if (!capable(CAP_SYS_ADMIN))
1875 return -EPERM;
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07001876 if (CHECK_ATTR(BPF_PROG_TEST_RUN))
1877 return -EINVAL;
1878
1879 prog = bpf_prog_get(attr->test.prog_fd);
1880 if (IS_ERR(prog))
1881 return PTR_ERR(prog);
1882
1883 if (prog->aux->ops->test_run)
1884 ret = prog->aux->ops->test_run(prog, attr, uattr);
1885
1886 bpf_prog_put(prog);
1887 return ret;
1888}
1889
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07001890#define BPF_OBJ_GET_NEXT_ID_LAST_FIELD next_id
1891
1892static int bpf_obj_get_next_id(const union bpf_attr *attr,
1893 union bpf_attr __user *uattr,
1894 struct idr *idr,
1895 spinlock_t *lock)
1896{
1897 u32 next_id = attr->start_id;
1898 int err = 0;
1899
1900 if (CHECK_ATTR(BPF_OBJ_GET_NEXT_ID) || next_id >= INT_MAX)
1901 return -EINVAL;
1902
1903 if (!capable(CAP_SYS_ADMIN))
1904 return -EPERM;
1905
1906 next_id++;
1907 spin_lock_bh(lock);
1908 if (!idr_get_next(idr, &next_id))
1909 err = -ENOENT;
1910 spin_unlock_bh(lock);
1911
1912 if (!err)
1913 err = put_user(next_id, &uattr->next_id);
1914
1915 return err;
1916}
1917
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001918#define BPF_PROG_GET_FD_BY_ID_LAST_FIELD prog_id
1919
1920static int bpf_prog_get_fd_by_id(const union bpf_attr *attr)
1921{
1922 struct bpf_prog *prog;
1923 u32 id = attr->prog_id;
1924 int fd;
1925
1926 if (CHECK_ATTR(BPF_PROG_GET_FD_BY_ID))
1927 return -EINVAL;
1928
1929 if (!capable(CAP_SYS_ADMIN))
1930 return -EPERM;
1931
1932 spin_lock_bh(&prog_idr_lock);
1933 prog = idr_find(&prog_idr, id);
1934 if (prog)
1935 prog = bpf_prog_inc_not_zero(prog);
1936 else
1937 prog = ERR_PTR(-ENOENT);
1938 spin_unlock_bh(&prog_idr_lock);
1939
1940 if (IS_ERR(prog))
1941 return PTR_ERR(prog);
1942
1943 fd = bpf_prog_new_fd(prog);
1944 if (fd < 0)
1945 bpf_prog_put(prog);
1946
1947 return fd;
1948}
1949
Chenbo Feng6e71b042017-10-18 13:00:22 -07001950#define BPF_MAP_GET_FD_BY_ID_LAST_FIELD open_flags
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001951
1952static int bpf_map_get_fd_by_id(const union bpf_attr *attr)
1953{
1954 struct bpf_map *map;
1955 u32 id = attr->map_id;
Chenbo Feng6e71b042017-10-18 13:00:22 -07001956 int f_flags;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001957 int fd;
1958
Chenbo Feng6e71b042017-10-18 13:00:22 -07001959 if (CHECK_ATTR(BPF_MAP_GET_FD_BY_ID) ||
1960 attr->open_flags & ~BPF_OBJ_FLAG_MASK)
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001961 return -EINVAL;
1962
1963 if (!capable(CAP_SYS_ADMIN))
1964 return -EPERM;
1965
Chenbo Feng6e71b042017-10-18 13:00:22 -07001966 f_flags = bpf_get_file_flag(attr->open_flags);
1967 if (f_flags < 0)
1968 return f_flags;
1969
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001970 spin_lock_bh(&map_idr_lock);
1971 map = idr_find(&map_idr, id);
1972 if (map)
1973 map = bpf_map_inc_not_zero(map, true);
1974 else
1975 map = ERR_PTR(-ENOENT);
1976 spin_unlock_bh(&map_idr_lock);
1977
1978 if (IS_ERR(map))
1979 return PTR_ERR(map);
1980
Chenbo Feng6e71b042017-10-18 13:00:22 -07001981 fd = bpf_map_new_fd(map, f_flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001982 if (fd < 0)
1983 bpf_map_put(map);
1984
1985 return fd;
1986}
1987
Daniel Borkmann7105e822017-12-20 13:42:57 +01001988static const struct bpf_map *bpf_map_from_imm(const struct bpf_prog *prog,
1989 unsigned long addr)
1990{
1991 int i;
1992
1993 for (i = 0; i < prog->aux->used_map_cnt; i++)
1994 if (prog->aux->used_maps[i] == (void *)addr)
1995 return prog->aux->used_maps[i];
1996 return NULL;
1997}
1998
1999static struct bpf_insn *bpf_insn_prepare_dump(const struct bpf_prog *prog)
2000{
2001 const struct bpf_map *map;
2002 struct bpf_insn *insns;
2003 u64 imm;
2004 int i;
2005
2006 insns = kmemdup(prog->insnsi, bpf_prog_insn_size(prog),
2007 GFP_USER);
2008 if (!insns)
2009 return insns;
2010
2011 for (i = 0; i < prog->len; i++) {
2012 if (insns[i].code == (BPF_JMP | BPF_TAIL_CALL)) {
2013 insns[i].code = BPF_JMP | BPF_CALL;
2014 insns[i].imm = BPF_FUNC_tail_call;
2015 /* fall-through */
2016 }
2017 if (insns[i].code == (BPF_JMP | BPF_CALL) ||
2018 insns[i].code == (BPF_JMP | BPF_CALL_ARGS)) {
2019 if (insns[i].code == (BPF_JMP | BPF_CALL_ARGS))
2020 insns[i].code = BPF_JMP | BPF_CALL;
2021 if (!bpf_dump_raw_ok())
2022 insns[i].imm = 0;
2023 continue;
2024 }
2025
2026 if (insns[i].code != (BPF_LD | BPF_IMM | BPF_DW))
2027 continue;
2028
2029 imm = ((u64)insns[i + 1].imm << 32) | (u32)insns[i].imm;
2030 map = bpf_map_from_imm(prog, imm);
2031 if (map) {
2032 insns[i].src_reg = BPF_PSEUDO_MAP_FD;
2033 insns[i].imm = map->id;
2034 insns[i + 1].imm = 0;
2035 continue;
2036 }
Daniel Borkmann7105e822017-12-20 13:42:57 +01002037 }
2038
2039 return insns;
2040}
2041
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002042static int set_info_rec_size(struct bpf_prog_info *info)
2043{
2044 /*
2045 * Ensure info.*_rec_size is the same as kernel expected size
2046 *
2047 * or
2048 *
2049 * Only allow zero *_rec_size if both _rec_size and _cnt are
2050 * zero. In this case, the kernel will set the expected
2051 * _rec_size back to the info.
2052 */
2053
Yonghong Song11d8b822018-12-10 14:14:08 -08002054 if ((info->nr_func_info || info->func_info_rec_size) &&
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002055 info->func_info_rec_size != sizeof(struct bpf_func_info))
2056 return -EINVAL;
2057
Yonghong Song11d8b822018-12-10 14:14:08 -08002058 if ((info->nr_line_info || info->line_info_rec_size) &&
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002059 info->line_info_rec_size != sizeof(struct bpf_line_info))
2060 return -EINVAL;
2061
Yonghong Song11d8b822018-12-10 14:14:08 -08002062 if ((info->nr_jited_line_info || info->jited_line_info_rec_size) &&
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002063 info->jited_line_info_rec_size != sizeof(__u64))
2064 return -EINVAL;
2065
2066 info->func_info_rec_size = sizeof(struct bpf_func_info);
2067 info->line_info_rec_size = sizeof(struct bpf_line_info);
2068 info->jited_line_info_rec_size = sizeof(__u64);
2069
2070 return 0;
2071}
2072
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002073static int bpf_prog_get_info_by_fd(struct bpf_prog *prog,
2074 const union bpf_attr *attr,
2075 union bpf_attr __user *uattr)
2076{
2077 struct bpf_prog_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2078 struct bpf_prog_info info = {};
2079 u32 info_len = attr->info.info_len;
2080 char __user *uinsns;
2081 u32 ulen;
2082 int err;
2083
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002084 err = bpf_check_uarg_tail_zero(uinfo, sizeof(info), info_len);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002085 if (err)
2086 return err;
2087 info_len = min_t(u32, sizeof(info), info_len);
2088
2089 if (copy_from_user(&info, uinfo, info_len))
Daniel Borkmann89b09682017-07-27 21:02:46 +02002090 return -EFAULT;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002091
2092 info.type = prog->type;
2093 info.id = prog->aux->id;
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07002094 info.load_time = prog->aux->load_time;
2095 info.created_by_uid = from_kuid_munged(current_user_ns(),
2096 prog->aux->user->uid);
Jiri Olsab85fab02018-04-25 19:41:06 +02002097 info.gpl_compatible = prog->gpl_compatible;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002098
2099 memcpy(info.tag, prog->tag, sizeof(prog->tag));
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07002100 memcpy(info.name, prog->aux->name, sizeof(prog->aux->name));
2101
2102 ulen = info.nr_map_ids;
2103 info.nr_map_ids = prog->aux->used_map_cnt;
2104 ulen = min_t(u32, info.nr_map_ids, ulen);
2105 if (ulen) {
Martin KaFai Lau721e08d2017-09-29 10:52:17 -07002106 u32 __user *user_map_ids = u64_to_user_ptr(info.map_ids);
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07002107 u32 i;
2108
2109 for (i = 0; i < ulen; i++)
2110 if (put_user(prog->aux->used_maps[i]->id,
2111 &user_map_ids[i]))
2112 return -EFAULT;
2113 }
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002114
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002115 err = set_info_rec_size(&info);
2116 if (err)
2117 return err;
Martin KaFai Lau73372242018-12-05 17:35:43 -08002118
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002119 if (!capable(CAP_SYS_ADMIN)) {
2120 info.jited_prog_len = 0;
2121 info.xlated_prog_len = 0;
Sandipan Dasdbecd732018-05-24 12:26:48 +05302122 info.nr_jited_ksyms = 0;
Daniel Borkmann28c2fae2018-11-02 11:35:46 +01002123 info.nr_jited_func_lens = 0;
Yonghong Song11d8b822018-12-10 14:14:08 -08002124 info.nr_func_info = 0;
2125 info.nr_line_info = 0;
2126 info.nr_jited_line_info = 0;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002127 goto done;
2128 }
2129
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002130 ulen = info.xlated_prog_len;
Daniel Borkmann9975a542017-07-28 17:05:25 +02002131 info.xlated_prog_len = bpf_prog_insn_size(prog);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002132 if (info.xlated_prog_len && ulen) {
Daniel Borkmann7105e822017-12-20 13:42:57 +01002133 struct bpf_insn *insns_sanitized;
2134 bool fault;
2135
2136 if (prog->blinded && !bpf_dump_raw_ok()) {
2137 info.xlated_prog_insns = 0;
2138 goto done;
2139 }
2140 insns_sanitized = bpf_insn_prepare_dump(prog);
2141 if (!insns_sanitized)
2142 return -ENOMEM;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002143 uinsns = u64_to_user_ptr(info.xlated_prog_insns);
2144 ulen = min_t(u32, info.xlated_prog_len, ulen);
Daniel Borkmann7105e822017-12-20 13:42:57 +01002145 fault = copy_to_user(uinsns, insns_sanitized, ulen);
2146 kfree(insns_sanitized);
2147 if (fault)
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002148 return -EFAULT;
2149 }
2150
Jakub Kicinski675fc272017-12-27 18:39:09 -08002151 if (bpf_prog_is_dev_bound(prog->aux)) {
2152 err = bpf_prog_offload_info_fill(&info, prog);
2153 if (err)
2154 return err;
Jiong Wangfcfb1262018-01-16 16:05:19 -08002155 goto done;
2156 }
2157
2158 /* NOTE: the following code is supposed to be skipped for offload.
2159 * bpf_prog_offload_info_fill() is the place to fill similar fields
2160 * for offload.
2161 */
2162 ulen = info.jited_prog_len;
Sandipan Das4d56a762018-05-24 12:26:51 +05302163 if (prog->aux->func_cnt) {
2164 u32 i;
2165
2166 info.jited_prog_len = 0;
2167 for (i = 0; i < prog->aux->func_cnt; i++)
2168 info.jited_prog_len += prog->aux->func[i]->jited_len;
2169 } else {
2170 info.jited_prog_len = prog->jited_len;
2171 }
2172
Jiong Wangfcfb1262018-01-16 16:05:19 -08002173 if (info.jited_prog_len && ulen) {
2174 if (bpf_dump_raw_ok()) {
2175 uinsns = u64_to_user_ptr(info.jited_prog_insns);
2176 ulen = min_t(u32, info.jited_prog_len, ulen);
Sandipan Das4d56a762018-05-24 12:26:51 +05302177
2178 /* for multi-function programs, copy the JITed
2179 * instructions for all the functions
2180 */
2181 if (prog->aux->func_cnt) {
2182 u32 len, free, i;
2183 u8 *img;
2184
2185 free = ulen;
2186 for (i = 0; i < prog->aux->func_cnt; i++) {
2187 len = prog->aux->func[i]->jited_len;
2188 len = min_t(u32, len, free);
2189 img = (u8 *) prog->aux->func[i]->bpf_func;
2190 if (copy_to_user(uinsns, img, len))
2191 return -EFAULT;
2192 uinsns += len;
2193 free -= len;
2194 if (!free)
2195 break;
2196 }
2197 } else {
2198 if (copy_to_user(uinsns, prog->bpf_func, ulen))
2199 return -EFAULT;
2200 }
Jiong Wangfcfb1262018-01-16 16:05:19 -08002201 } else {
2202 info.jited_prog_insns = 0;
2203 }
Jakub Kicinski675fc272017-12-27 18:39:09 -08002204 }
2205
Sandipan Dasdbecd732018-05-24 12:26:48 +05302206 ulen = info.nr_jited_ksyms;
Song Liuff1889f2018-11-02 10:16:17 -07002207 info.nr_jited_ksyms = prog->aux->func_cnt ? : 1;
Song Liu7a5725d2018-12-10 11:17:50 -08002208 if (ulen) {
Sandipan Dasdbecd732018-05-24 12:26:48 +05302209 if (bpf_dump_raw_ok()) {
Song Liuff1889f2018-11-02 10:16:17 -07002210 unsigned long ksym_addr;
Sandipan Dasdbecd732018-05-24 12:26:48 +05302211 u64 __user *user_ksyms;
Sandipan Dasdbecd732018-05-24 12:26:48 +05302212 u32 i;
2213
2214 /* copy the address of the kernel symbol
2215 * corresponding to each function
2216 */
2217 ulen = min_t(u32, info.nr_jited_ksyms, ulen);
2218 user_ksyms = u64_to_user_ptr(info.jited_ksyms);
Song Liuff1889f2018-11-02 10:16:17 -07002219 if (prog->aux->func_cnt) {
2220 for (i = 0; i < ulen; i++) {
2221 ksym_addr = (unsigned long)
2222 prog->aux->func[i]->bpf_func;
2223 if (put_user((u64) ksym_addr,
2224 &user_ksyms[i]))
2225 return -EFAULT;
2226 }
2227 } else {
2228 ksym_addr = (unsigned long) prog->bpf_func;
2229 if (put_user((u64) ksym_addr, &user_ksyms[0]))
Sandipan Dasdbecd732018-05-24 12:26:48 +05302230 return -EFAULT;
2231 }
2232 } else {
2233 info.jited_ksyms = 0;
2234 }
2235 }
2236
Sandipan Das815581c2018-05-24 12:26:52 +05302237 ulen = info.nr_jited_func_lens;
Song Liuff1889f2018-11-02 10:16:17 -07002238 info.nr_jited_func_lens = prog->aux->func_cnt ? : 1;
Song Liu7a5725d2018-12-10 11:17:50 -08002239 if (ulen) {
Sandipan Das815581c2018-05-24 12:26:52 +05302240 if (bpf_dump_raw_ok()) {
2241 u32 __user *user_lens;
2242 u32 func_len, i;
2243
2244 /* copy the JITed image lengths for each function */
2245 ulen = min_t(u32, info.nr_jited_func_lens, ulen);
2246 user_lens = u64_to_user_ptr(info.jited_func_lens);
Song Liuff1889f2018-11-02 10:16:17 -07002247 if (prog->aux->func_cnt) {
2248 for (i = 0; i < ulen; i++) {
2249 func_len =
2250 prog->aux->func[i]->jited_len;
2251 if (put_user(func_len, &user_lens[i]))
2252 return -EFAULT;
2253 }
2254 } else {
2255 func_len = prog->jited_len;
2256 if (put_user(func_len, &user_lens[0]))
Sandipan Das815581c2018-05-24 12:26:52 +05302257 return -EFAULT;
2258 }
2259 } else {
2260 info.jited_func_lens = 0;
2261 }
2262 }
2263
Martin KaFai Lau73372242018-12-05 17:35:43 -08002264 if (prog->aux->btf)
Yonghong Song838e9692018-11-19 15:29:11 -08002265 info.btf_id = btf_id(prog->aux->btf);
2266
Yonghong Song11d8b822018-12-10 14:14:08 -08002267 ulen = info.nr_func_info;
2268 info.nr_func_info = prog->aux->func_info_cnt;
2269 if (info.nr_func_info && ulen) {
Martin KaFai Lau9e794162018-12-12 10:18:21 -08002270 char __user *user_finfo;
Yonghong Song838e9692018-11-19 15:29:11 -08002271
Martin KaFai Lau9e794162018-12-12 10:18:21 -08002272 user_finfo = u64_to_user_ptr(info.func_info);
2273 ulen = min_t(u32, info.nr_func_info, ulen);
2274 if (copy_to_user(user_finfo, prog->aux->func_info,
2275 info.func_info_rec_size * ulen))
2276 return -EFAULT;
Yonghong Song838e9692018-11-19 15:29:11 -08002277 }
2278
Yonghong Song11d8b822018-12-10 14:14:08 -08002279 ulen = info.nr_line_info;
2280 info.nr_line_info = prog->aux->nr_linfo;
2281 if (info.nr_line_info && ulen) {
Martin KaFai Lau9e794162018-12-12 10:18:21 -08002282 __u8 __user *user_linfo;
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002283
Martin KaFai Lau9e794162018-12-12 10:18:21 -08002284 user_linfo = u64_to_user_ptr(info.line_info);
2285 ulen = min_t(u32, info.nr_line_info, ulen);
2286 if (copy_to_user(user_linfo, prog->aux->linfo,
2287 info.line_info_rec_size * ulen))
2288 return -EFAULT;
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002289 }
2290
Yonghong Song11d8b822018-12-10 14:14:08 -08002291 ulen = info.nr_jited_line_info;
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002292 if (prog->aux->jited_linfo)
Yonghong Song11d8b822018-12-10 14:14:08 -08002293 info.nr_jited_line_info = prog->aux->nr_linfo;
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002294 else
Yonghong Song11d8b822018-12-10 14:14:08 -08002295 info.nr_jited_line_info = 0;
2296 if (info.nr_jited_line_info && ulen) {
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002297 if (bpf_dump_raw_ok()) {
2298 __u64 __user *user_linfo;
2299 u32 i;
2300
2301 user_linfo = u64_to_user_ptr(info.jited_line_info);
Yonghong Song11d8b822018-12-10 14:14:08 -08002302 ulen = min_t(u32, info.nr_jited_line_info, ulen);
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002303 for (i = 0; i < ulen; i++) {
2304 if (put_user((__u64)(long)prog->aux->jited_linfo[i],
2305 &user_linfo[i]))
2306 return -EFAULT;
2307 }
2308 } else {
2309 info.jited_line_info = 0;
2310 }
2311 }
2312
Song Liuc872bdb2018-12-12 09:37:46 -08002313 ulen = info.nr_prog_tags;
2314 info.nr_prog_tags = prog->aux->func_cnt ? : 1;
2315 if (ulen) {
2316 __u8 __user (*user_prog_tags)[BPF_TAG_SIZE];
2317 u32 i;
2318
2319 user_prog_tags = u64_to_user_ptr(info.prog_tags);
2320 ulen = min_t(u32, info.nr_prog_tags, ulen);
2321 if (prog->aux->func_cnt) {
2322 for (i = 0; i < ulen; i++) {
2323 if (copy_to_user(user_prog_tags[i],
2324 prog->aux->func[i]->tag,
2325 BPF_TAG_SIZE))
2326 return -EFAULT;
2327 }
2328 } else {
2329 if (copy_to_user(user_prog_tags[0],
2330 prog->tag, BPF_TAG_SIZE))
2331 return -EFAULT;
2332 }
2333 }
2334
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002335done:
2336 if (copy_to_user(uinfo, &info, info_len) ||
2337 put_user(info_len, &uattr->info.info_len))
2338 return -EFAULT;
2339
2340 return 0;
2341}
2342
2343static int bpf_map_get_info_by_fd(struct bpf_map *map,
2344 const union bpf_attr *attr,
2345 union bpf_attr __user *uattr)
2346{
2347 struct bpf_map_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2348 struct bpf_map_info info = {};
2349 u32 info_len = attr->info.info_len;
2350 int err;
2351
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002352 err = bpf_check_uarg_tail_zero(uinfo, sizeof(info), info_len);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002353 if (err)
2354 return err;
2355 info_len = min_t(u32, sizeof(info), info_len);
2356
2357 info.type = map->map_type;
2358 info.id = map->id;
2359 info.key_size = map->key_size;
2360 info.value_size = map->value_size;
2361 info.max_entries = map->max_entries;
2362 info.map_flags = map->map_flags;
Martin KaFai Lauad5b1772017-09-27 14:37:53 -07002363 memcpy(info.name, map->name, sizeof(map->name));
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002364
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002365 if (map->btf) {
2366 info.btf_id = btf_id(map->btf);
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -07002367 info.btf_key_type_id = map->btf_key_type_id;
2368 info.btf_value_type_id = map->btf_value_type_id;
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002369 }
2370
Jakub Kicinski52775b32018-01-17 19:13:28 -08002371 if (bpf_map_is_dev_bound(map)) {
2372 err = bpf_map_offload_info_fill(&info, map);
2373 if (err)
2374 return err;
2375 }
2376
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002377 if (copy_to_user(uinfo, &info, info_len) ||
2378 put_user(info_len, &uattr->info.info_len))
2379 return -EFAULT;
2380
2381 return 0;
2382}
2383
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002384static int bpf_btf_get_info_by_fd(struct btf *btf,
2385 const union bpf_attr *attr,
2386 union bpf_attr __user *uattr)
2387{
2388 struct bpf_btf_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2389 u32 info_len = attr->info.info_len;
2390 int err;
2391
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002392 err = bpf_check_uarg_tail_zero(uinfo, sizeof(*uinfo), info_len);
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002393 if (err)
2394 return err;
2395
2396 return btf_get_info_by_fd(btf, attr, uattr);
2397}
2398
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002399#define BPF_OBJ_GET_INFO_BY_FD_LAST_FIELD info.info
2400
2401static int bpf_obj_get_info_by_fd(const union bpf_attr *attr,
2402 union bpf_attr __user *uattr)
2403{
2404 int ufd = attr->info.bpf_fd;
2405 struct fd f;
2406 int err;
2407
2408 if (CHECK_ATTR(BPF_OBJ_GET_INFO_BY_FD))
2409 return -EINVAL;
2410
2411 f = fdget(ufd);
2412 if (!f.file)
2413 return -EBADFD;
2414
2415 if (f.file->f_op == &bpf_prog_fops)
2416 err = bpf_prog_get_info_by_fd(f.file->private_data, attr,
2417 uattr);
2418 else if (f.file->f_op == &bpf_map_fops)
2419 err = bpf_map_get_info_by_fd(f.file->private_data, attr,
2420 uattr);
Martin KaFai Lau60197cf2018-04-18 15:56:02 -07002421 else if (f.file->f_op == &btf_fops)
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002422 err = bpf_btf_get_info_by_fd(f.file->private_data, attr, uattr);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002423 else
2424 err = -EINVAL;
2425
2426 fdput(f);
2427 return err;
2428}
2429
Martin KaFai Lauf56a6532018-04-18 15:56:01 -07002430#define BPF_BTF_LOAD_LAST_FIELD btf_log_level
2431
2432static int bpf_btf_load(const union bpf_attr *attr)
2433{
2434 if (CHECK_ATTR(BPF_BTF_LOAD))
2435 return -EINVAL;
2436
2437 if (!capable(CAP_SYS_ADMIN))
2438 return -EPERM;
2439
2440 return btf_new_fd(attr);
2441}
2442
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002443#define BPF_BTF_GET_FD_BY_ID_LAST_FIELD btf_id
2444
2445static int bpf_btf_get_fd_by_id(const union bpf_attr *attr)
2446{
2447 if (CHECK_ATTR(BPF_BTF_GET_FD_BY_ID))
2448 return -EINVAL;
2449
2450 if (!capable(CAP_SYS_ADMIN))
2451 return -EPERM;
2452
2453 return btf_get_fd_by_id(attr->btf_id);
2454}
2455
Yonghong Song41bdc4b2018-05-24 11:21:09 -07002456static int bpf_task_fd_query_copy(const union bpf_attr *attr,
2457 union bpf_attr __user *uattr,
2458 u32 prog_id, u32 fd_type,
2459 const char *buf, u64 probe_offset,
2460 u64 probe_addr)
2461{
2462 char __user *ubuf = u64_to_user_ptr(attr->task_fd_query.buf);
2463 u32 len = buf ? strlen(buf) : 0, input_len;
2464 int err = 0;
2465
2466 if (put_user(len, &uattr->task_fd_query.buf_len))
2467 return -EFAULT;
2468 input_len = attr->task_fd_query.buf_len;
2469 if (input_len && ubuf) {
2470 if (!len) {
2471 /* nothing to copy, just make ubuf NULL terminated */
2472 char zero = '\0';
2473
2474 if (put_user(zero, ubuf))
2475 return -EFAULT;
2476 } else if (input_len >= len + 1) {
2477 /* ubuf can hold the string with NULL terminator */
2478 if (copy_to_user(ubuf, buf, len + 1))
2479 return -EFAULT;
2480 } else {
2481 /* ubuf cannot hold the string with NULL terminator,
2482 * do a partial copy with NULL terminator.
2483 */
2484 char zero = '\0';
2485
2486 err = -ENOSPC;
2487 if (copy_to_user(ubuf, buf, input_len - 1))
2488 return -EFAULT;
2489 if (put_user(zero, ubuf + input_len - 1))
2490 return -EFAULT;
2491 }
2492 }
2493
2494 if (put_user(prog_id, &uattr->task_fd_query.prog_id) ||
2495 put_user(fd_type, &uattr->task_fd_query.fd_type) ||
2496 put_user(probe_offset, &uattr->task_fd_query.probe_offset) ||
2497 put_user(probe_addr, &uattr->task_fd_query.probe_addr))
2498 return -EFAULT;
2499
2500 return err;
2501}
2502
2503#define BPF_TASK_FD_QUERY_LAST_FIELD task_fd_query.probe_addr
2504
2505static int bpf_task_fd_query(const union bpf_attr *attr,
2506 union bpf_attr __user *uattr)
2507{
2508 pid_t pid = attr->task_fd_query.pid;
2509 u32 fd = attr->task_fd_query.fd;
2510 const struct perf_event *event;
2511 struct files_struct *files;
2512 struct task_struct *task;
2513 struct file *file;
2514 int err;
2515
2516 if (CHECK_ATTR(BPF_TASK_FD_QUERY))
2517 return -EINVAL;
2518
2519 if (!capable(CAP_SYS_ADMIN))
2520 return -EPERM;
2521
2522 if (attr->task_fd_query.flags != 0)
2523 return -EINVAL;
2524
2525 task = get_pid_task(find_vpid(pid), PIDTYPE_PID);
2526 if (!task)
2527 return -ENOENT;
2528
2529 files = get_files_struct(task);
2530 put_task_struct(task);
2531 if (!files)
2532 return -ENOENT;
2533
2534 err = 0;
2535 spin_lock(&files->file_lock);
2536 file = fcheck_files(files, fd);
2537 if (!file)
2538 err = -EBADF;
2539 else
2540 get_file(file);
2541 spin_unlock(&files->file_lock);
2542 put_files_struct(files);
2543
2544 if (err)
2545 goto out;
2546
2547 if (file->f_op == &bpf_raw_tp_fops) {
2548 struct bpf_raw_tracepoint *raw_tp = file->private_data;
2549 struct bpf_raw_event_map *btp = raw_tp->btp;
2550
2551 err = bpf_task_fd_query_copy(attr, uattr,
2552 raw_tp->prog->aux->id,
2553 BPF_FD_TYPE_RAW_TRACEPOINT,
2554 btp->tp->name, 0, 0);
2555 goto put_file;
2556 }
2557
2558 event = perf_get_event(file);
2559 if (!IS_ERR(event)) {
2560 u64 probe_offset, probe_addr;
2561 u32 prog_id, fd_type;
2562 const char *buf;
2563
2564 err = bpf_get_perf_event_info(event, &prog_id, &fd_type,
2565 &buf, &probe_offset,
2566 &probe_addr);
2567 if (!err)
2568 err = bpf_task_fd_query_copy(attr, uattr, prog_id,
2569 fd_type, buf,
2570 probe_offset,
2571 probe_addr);
2572 goto put_file;
2573 }
2574
2575 err = -ENOTSUPP;
2576put_file:
2577 fput(file);
2578out:
2579 return err;
2580}
2581
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002582SYSCALL_DEFINE3(bpf, int, cmd, union bpf_attr __user *, uattr, unsigned int, size)
2583{
2584 union bpf_attr attr = {};
2585 int err;
2586
Chenbo Feng0fa4fe82018-03-19 17:57:27 -07002587 if (sysctl_unprivileged_bpf_disabled && !capable(CAP_SYS_ADMIN))
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002588 return -EPERM;
2589
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002590 err = bpf_check_uarg_tail_zero(uattr, sizeof(attr), size);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002591 if (err)
2592 return err;
2593 size = min_t(u32, size, sizeof(attr));
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002594
2595 /* copy attributes from user space, may be less than sizeof(bpf_attr) */
2596 if (copy_from_user(&attr, uattr, size) != 0)
2597 return -EFAULT;
2598
Chenbo Fengafdb09c2017-10-18 13:00:24 -07002599 err = security_bpf(cmd, &attr, size);
2600 if (err < 0)
2601 return err;
2602
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002603 switch (cmd) {
2604 case BPF_MAP_CREATE:
2605 err = map_create(&attr);
2606 break;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -07002607 case BPF_MAP_LOOKUP_ELEM:
2608 err = map_lookup_elem(&attr);
2609 break;
2610 case BPF_MAP_UPDATE_ELEM:
2611 err = map_update_elem(&attr);
2612 break;
2613 case BPF_MAP_DELETE_ELEM:
2614 err = map_delete_elem(&attr);
2615 break;
2616 case BPF_MAP_GET_NEXT_KEY:
2617 err = map_get_next_key(&attr);
2618 break;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07002619 case BPF_PROG_LOAD:
Yonghong Song838e9692018-11-19 15:29:11 -08002620 err = bpf_prog_load(&attr, uattr);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07002621 break;
Daniel Borkmannb2197752015-10-29 14:58:09 +01002622 case BPF_OBJ_PIN:
2623 err = bpf_obj_pin(&attr);
2624 break;
2625 case BPF_OBJ_GET:
2626 err = bpf_obj_get(&attr);
2627 break;
Daniel Mackf4324552016-11-23 16:52:27 +01002628 case BPF_PROG_ATTACH:
2629 err = bpf_prog_attach(&attr);
2630 break;
2631 case BPF_PROG_DETACH:
2632 err = bpf_prog_detach(&attr);
2633 break;
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07002634 case BPF_PROG_QUERY:
2635 err = bpf_prog_query(&attr, uattr);
2636 break;
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07002637 case BPF_PROG_TEST_RUN:
2638 err = bpf_prog_test_run(&attr, uattr);
2639 break;
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07002640 case BPF_PROG_GET_NEXT_ID:
2641 err = bpf_obj_get_next_id(&attr, uattr,
2642 &prog_idr, &prog_idr_lock);
2643 break;
2644 case BPF_MAP_GET_NEXT_ID:
2645 err = bpf_obj_get_next_id(&attr, uattr,
2646 &map_idr, &map_idr_lock);
2647 break;
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07002648 case BPF_PROG_GET_FD_BY_ID:
2649 err = bpf_prog_get_fd_by_id(&attr);
2650 break;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07002651 case BPF_MAP_GET_FD_BY_ID:
2652 err = bpf_map_get_fd_by_id(&attr);
2653 break;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002654 case BPF_OBJ_GET_INFO_BY_FD:
2655 err = bpf_obj_get_info_by_fd(&attr, uattr);
2656 break;
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07002657 case BPF_RAW_TRACEPOINT_OPEN:
2658 err = bpf_raw_tracepoint_open(&attr);
2659 break;
Martin KaFai Lauf56a6532018-04-18 15:56:01 -07002660 case BPF_BTF_LOAD:
2661 err = bpf_btf_load(&attr);
2662 break;
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002663 case BPF_BTF_GET_FD_BY_ID:
2664 err = bpf_btf_get_fd_by_id(&attr);
2665 break;
Yonghong Song41bdc4b2018-05-24 11:21:09 -07002666 case BPF_TASK_FD_QUERY:
2667 err = bpf_task_fd_query(&attr, uattr);
2668 break;
Mauricio Vasquez Bbd513cd2018-10-18 15:16:30 +02002669 case BPF_MAP_LOOKUP_AND_DELETE_ELEM:
2670 err = map_lookup_and_delete_elem(&attr);
2671 break;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002672 default:
2673 err = -EINVAL;
2674 break;
2675 }
2676
2677 return err;
2678}