blob: ebf0a673cb833bb37339f12af39140c9f207f595 [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
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800466static int map_check_btf(struct bpf_map *map, const struct btf *btf,
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200467 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
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800481 map->spin_lock_off = btf_find_spin_lock(btf, value_type);
482
483 if (map_value_has_spin_lock(map)) {
484 if (map->map_type != BPF_MAP_TYPE_HASH &&
485 map->map_type != BPF_MAP_TYPE_ARRAY)
486 return -ENOTSUPP;
487 if (map->spin_lock_off + sizeof(struct bpf_spin_lock) >
488 map->value_size) {
489 WARN_ONCE(1,
490 "verifier bug spin_lock_off %d value_size %d\n",
491 map->spin_lock_off, map->value_size);
492 return -EFAULT;
493 }
494 }
495
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200496 if (map->ops->map_check_btf)
Roman Gushchin1b2b2342018-12-10 15:43:00 -0800497 ret = map->ops->map_check_btf(map, btf, key_type, value_type);
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200498
499 return ret;
500}
501
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700502#define BPF_MAP_CREATE_LAST_FIELD btf_value_type_id
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700503/* called via syscall */
504static int map_create(union bpf_attr *attr)
505{
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700506 int numa_node = bpf_map_attr_numa_node(attr);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700507 struct bpf_map *map;
Chenbo Feng6e71b042017-10-18 13:00:22 -0700508 int f_flags;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700509 int err;
510
511 err = CHECK_ATTR(BPF_MAP_CREATE);
512 if (err)
513 return -EINVAL;
514
Chenbo Feng6e71b042017-10-18 13:00:22 -0700515 f_flags = bpf_get_file_flag(attr->map_flags);
516 if (f_flags < 0)
517 return f_flags;
518
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700519 if (numa_node != NUMA_NO_NODE &&
Eric Dumazet96e5ae42017-09-04 22:41:02 -0700520 ((unsigned int)numa_node >= nr_node_ids ||
521 !node_online(numa_node)))
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700522 return -EINVAL;
523
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700524 /* find map type and init map: hashtable vs rbtree vs bloom vs ... */
525 map = find_and_alloc_map(attr);
526 if (IS_ERR(map))
527 return PTR_ERR(map);
528
Martin KaFai Lauad5b1772017-09-27 14:37:53 -0700529 err = bpf_obj_name_cpy(map->name, attr->map_name);
530 if (err)
531 goto free_map_nouncharge;
532
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700533 atomic_set(&map->refcnt, 1);
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100534 atomic_set(&map->usercnt, 1);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700535
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200536 if (attr->btf_key_type_id || attr->btf_value_type_id) {
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700537 struct btf *btf;
538
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700539 if (!attr->btf_key_type_id || !attr->btf_value_type_id) {
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700540 err = -EINVAL;
541 goto free_map_nouncharge;
542 }
543
544 btf = btf_get_by_fd(attr->btf_fd);
545 if (IS_ERR(btf)) {
546 err = PTR_ERR(btf);
547 goto free_map_nouncharge;
548 }
549
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200550 err = map_check_btf(map, btf, attr->btf_key_type_id,
551 attr->btf_value_type_id);
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700552 if (err) {
553 btf_put(btf);
554 goto free_map_nouncharge;
555 }
556
557 map->btf = btf;
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700558 map->btf_key_type_id = attr->btf_key_type_id;
559 map->btf_value_type_id = attr->btf_value_type_id;
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800560 } else {
561 map->spin_lock_off = -EINVAL;
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700562 }
563
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700564 err = security_bpf_map_alloc(map);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700565 if (err)
Daniel Borkmann20b2b242016-11-04 00:56:31 +0100566 goto free_map_nouncharge;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700567
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700568 err = bpf_map_init_memlock(map);
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700569 if (err)
570 goto free_map_sec;
571
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700572 err = bpf_map_alloc_id(map);
573 if (err)
574 goto free_map;
575
Chenbo Feng6e71b042017-10-18 13:00:22 -0700576 err = bpf_map_new_fd(map, f_flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700577 if (err < 0) {
578 /* failed to allocate fd.
579 * bpf_map_put() is needed because the above
580 * bpf_map_alloc_id() has published the map
581 * to the userspace and the userspace may
582 * have refcnt-ed it through BPF_MAP_GET_FD_BY_ID.
583 */
584 bpf_map_put(map);
585 return err;
586 }
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700587
588 return err;
589
590free_map:
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700591 bpf_map_release_memlock(map);
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700592free_map_sec:
593 security_bpf_map_free(map);
Daniel Borkmann20b2b242016-11-04 00:56:31 +0100594free_map_nouncharge:
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700595 btf_put(map->btf);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700596 map->ops->map_free(map);
597 return err;
598}
599
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700600/* if error is returned, fd is released.
601 * On success caller should complete fd access with matching fdput()
602 */
Daniel Borkmannc2101292015-10-29 14:58:07 +0100603struct bpf_map *__bpf_map_get(struct fd f)
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700604{
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700605 if (!f.file)
606 return ERR_PTR(-EBADF);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700607 if (f.file->f_op != &bpf_map_fops) {
608 fdput(f);
609 return ERR_PTR(-EINVAL);
610 }
611
Daniel Borkmannc2101292015-10-29 14:58:07 +0100612 return f.file->private_data;
613}
614
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700615/* prog's and map's refcnt limit */
616#define BPF_MAX_REFCNT 32768
617
618struct bpf_map *bpf_map_inc(struct bpf_map *map, bool uref)
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100619{
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700620 if (atomic_inc_return(&map->refcnt) > BPF_MAX_REFCNT) {
621 atomic_dec(&map->refcnt);
622 return ERR_PTR(-EBUSY);
623 }
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100624 if (uref)
625 atomic_inc(&map->usercnt);
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700626 return map;
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100627}
Jakub Kicinski630a4d32018-05-03 18:37:09 -0700628EXPORT_SYMBOL_GPL(bpf_map_inc);
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100629
630struct bpf_map *bpf_map_get_with_uref(u32 ufd)
Daniel Borkmannc2101292015-10-29 14:58:07 +0100631{
632 struct fd f = fdget(ufd);
633 struct bpf_map *map;
634
635 map = __bpf_map_get(f);
636 if (IS_ERR(map))
637 return map;
638
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700639 map = bpf_map_inc(map, true);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100640 fdput(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700641
642 return map;
643}
644
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700645/* map_idr_lock should have been held */
646static struct bpf_map *bpf_map_inc_not_zero(struct bpf_map *map,
647 bool uref)
648{
649 int refold;
650
Mark Rutlandbfc18e32018-06-21 13:13:04 +0100651 refold = atomic_fetch_add_unless(&map->refcnt, 1, 0);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700652
653 if (refold >= BPF_MAX_REFCNT) {
654 __bpf_map_put(map, false);
655 return ERR_PTR(-EBUSY);
656 }
657
658 if (!refold)
659 return ERR_PTR(-ENOENT);
660
661 if (uref)
662 atomic_inc(&map->usercnt);
663
664 return map;
665}
666
Alexei Starovoitovb8cdc052016-03-09 18:56:49 -0800667int __weak bpf_stackmap_copy(struct bpf_map *map, void *key, void *value)
668{
669 return -ENOTSUPP;
670}
671
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +0200672static void *__bpf_copy_key(void __user *ukey, u64 key_size)
673{
674 if (key_size)
675 return memdup_user(ukey, key_size);
676
677 if (ukey)
678 return ERR_PTR(-EINVAL);
679
680 return NULL;
681}
682
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700683/* last field in 'union bpf_attr' used by this command */
684#define BPF_MAP_LOOKUP_ELEM_LAST_FIELD value
685
686static int map_lookup_elem(union bpf_attr *attr)
687{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100688 void __user *ukey = u64_to_user_ptr(attr->key);
689 void __user *uvalue = u64_to_user_ptr(attr->value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700690 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700691 struct bpf_map *map;
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800692 void *key, *value, *ptr;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800693 u32 value_size;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200694 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700695 int err;
696
697 if (CHECK_ATTR(BPF_MAP_LOOKUP_ELEM))
698 return -EINVAL;
699
Daniel Borkmann592867b2015-09-08 18:00:09 +0200700 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100701 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700702 if (IS_ERR(map))
703 return PTR_ERR(map);
704
Chenbo Feng6e71b042017-10-18 13:00:22 -0700705 if (!(f.file->f_mode & FMODE_CAN_READ)) {
706 err = -EPERM;
707 goto err_put;
708 }
709
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +0200710 key = __bpf_copy_key(ukey, map->key_size);
Al Viroe4448ed2017-05-13 18:43:00 -0400711 if (IS_ERR(key)) {
712 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700713 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400714 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700715
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800716 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800717 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH ||
Roman Gushchinb741f162018-09-28 14:45:43 +0000718 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY ||
719 map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE)
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800720 value_size = round_up(map->value_size, 8) * num_possible_cpus();
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -0700721 else if (IS_FD_MAP(map))
722 value_size = sizeof(u32);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800723 else
724 value_size = map->value_size;
725
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800726 err = -ENOMEM;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800727 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700728 if (!value)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800729 goto free_key;
730
Jakub Kicinskia3884572018-01-11 20:29:09 -0800731 if (bpf_map_is_dev_bound(map)) {
732 err = bpf_map_offload_lookup_elem(map, key, value);
733 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
734 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) {
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800735 err = bpf_percpu_hash_copy(map, key, value);
736 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) {
737 err = bpf_percpu_array_copy(map, key, value);
Roman Gushchinb741f162018-09-28 14:45:43 +0000738 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) {
739 err = bpf_percpu_cgroup_storage_copy(map, key, value);
Alexei Starovoitov557c0c62016-03-07 21:57:17 -0800740 } else if (map->map_type == BPF_MAP_TYPE_STACK_TRACE) {
741 err = bpf_stackmap_copy(map, key, value);
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -0700742 } else if (IS_FD_ARRAY(map)) {
743 err = bpf_fd_array_map_lookup_elem(map, key, value);
744 } else if (IS_FD_HASH(map)) {
745 err = bpf_fd_htab_map_lookup_elem(map, key, value);
Martin KaFai Lau5dc4c4b2018-08-08 01:01:24 -0700746 } else if (map->map_type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY) {
747 err = bpf_fd_reuseport_array_lookup_elem(map, key, value);
Mauricio Vasquez Bf1a2e442018-10-18 15:16:25 +0200748 } else if (map->map_type == BPF_MAP_TYPE_QUEUE ||
749 map->map_type == BPF_MAP_TYPE_STACK) {
750 err = map->ops->map_peek_elem(map, value);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800751 } else {
752 rcu_read_lock();
753 ptr = map->ops->map_lookup_elem(map, key);
Prashant Bhole509db282018-10-09 10:04:49 +0900754 if (IS_ERR(ptr)) {
755 err = PTR_ERR(ptr);
756 } else if (!ptr) {
757 err = -ENOENT;
758 } else {
759 err = 0;
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800760 copy_map_value(map, value, ptr);
Prashant Bhole509db282018-10-09 10:04:49 +0900761 }
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800762 rcu_read_unlock();
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800763 }
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800764
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800765 if (err)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800766 goto free_value;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700767
768 err = -EFAULT;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800769 if (copy_to_user(uvalue, value, value_size) != 0)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800770 goto free_value;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700771
772 err = 0;
773
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800774free_value:
775 kfree(value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700776free_key:
777 kfree(key);
778err_put:
779 fdput(f);
780 return err;
781}
782
Daniel Colascione1ae80cf2018-10-12 03:54:27 -0700783static void maybe_wait_bpf_programs(struct bpf_map *map)
784{
785 /* Wait for any running BPF programs to complete so that
786 * userspace, when we return to it, knows that all programs
787 * that could be running use the new map value.
788 */
789 if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS ||
790 map->map_type == BPF_MAP_TYPE_ARRAY_OF_MAPS)
791 synchronize_rcu();
792}
793
Alexei Starovoitov3274f522014-11-13 17:36:44 -0800794#define BPF_MAP_UPDATE_ELEM_LAST_FIELD flags
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700795
796static int map_update_elem(union bpf_attr *attr)
797{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100798 void __user *ukey = u64_to_user_ptr(attr->key);
799 void __user *uvalue = u64_to_user_ptr(attr->value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700800 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700801 struct bpf_map *map;
802 void *key, *value;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800803 u32 value_size;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200804 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700805 int err;
806
807 if (CHECK_ATTR(BPF_MAP_UPDATE_ELEM))
808 return -EINVAL;
809
Daniel Borkmann592867b2015-09-08 18:00:09 +0200810 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100811 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700812 if (IS_ERR(map))
813 return PTR_ERR(map);
814
Chenbo Feng6e71b042017-10-18 13:00:22 -0700815 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
816 err = -EPERM;
817 goto err_put;
818 }
819
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +0200820 key = __bpf_copy_key(ukey, map->key_size);
Al Viroe4448ed2017-05-13 18:43:00 -0400821 if (IS_ERR(key)) {
822 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700823 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400824 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700825
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800826 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800827 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH ||
Roman Gushchinb741f162018-09-28 14:45:43 +0000828 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY ||
829 map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE)
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800830 value_size = round_up(map->value_size, 8) * num_possible_cpus();
831 else
832 value_size = map->value_size;
833
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700834 err = -ENOMEM;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800835 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700836 if (!value)
837 goto free_key;
838
839 err = -EFAULT;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800840 if (copy_from_user(value, uvalue, value_size) != 0)
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700841 goto free_value;
842
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200843 /* Need to create a kthread, thus must support schedule */
Jakub Kicinskia3884572018-01-11 20:29:09 -0800844 if (bpf_map_is_dev_bound(map)) {
845 err = bpf_map_offload_update_elem(map, key, value, attr->flags);
846 goto out;
John Fastabend99ba2b52018-07-05 08:50:04 -0700847 } else if (map->map_type == BPF_MAP_TYPE_CPUMAP ||
848 map->map_type == BPF_MAP_TYPE_SOCKHASH ||
849 map->map_type == BPF_MAP_TYPE_SOCKMAP) {
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200850 err = map->ops->map_update_elem(map, key, value, attr->flags);
851 goto out;
852 }
853
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800854 /* must increment bpf_prog_active to avoid kprobe+bpf triggering from
855 * inside bpf map update or delete otherwise deadlocks are possible
856 */
857 preempt_disable();
858 __this_cpu_inc(bpf_prog_active);
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800859 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
860 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) {
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800861 err = bpf_percpu_hash_update(map, key, value, attr->flags);
862 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) {
863 err = bpf_percpu_array_update(map, key, value, attr->flags);
Roman Gushchinb741f162018-09-28 14:45:43 +0000864 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) {
865 err = bpf_percpu_cgroup_storage_update(map, key, value,
866 attr->flags);
Mickaël Salaün9c147b52018-01-26 00:54:02 +0100867 } else if (IS_FD_ARRAY(map)) {
Daniel Borkmannd056a782016-06-15 22:47:13 +0200868 rcu_read_lock();
869 err = bpf_fd_array_map_update_elem(map, f.file, key, value,
870 attr->flags);
871 rcu_read_unlock();
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700872 } else if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS) {
873 rcu_read_lock();
874 err = bpf_fd_htab_map_update_elem(map, f.file, key, value,
875 attr->flags);
876 rcu_read_unlock();
Martin KaFai Lau5dc4c4b2018-08-08 01:01:24 -0700877 } else if (map->map_type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY) {
878 /* rcu_read_lock() is not needed */
879 err = bpf_fd_reuseport_array_update_elem(map, key, value,
880 attr->flags);
Mauricio Vasquez Bf1a2e442018-10-18 15:16:25 +0200881 } else if (map->map_type == BPF_MAP_TYPE_QUEUE ||
882 map->map_type == BPF_MAP_TYPE_STACK) {
883 err = map->ops->map_push_elem(map, value, attr->flags);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800884 } else {
885 rcu_read_lock();
886 err = map->ops->map_update_elem(map, key, value, attr->flags);
887 rcu_read_unlock();
888 }
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800889 __this_cpu_dec(bpf_prog_active);
890 preempt_enable();
Daniel Colascione1ae80cf2018-10-12 03:54:27 -0700891 maybe_wait_bpf_programs(map);
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200892out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700893free_value:
894 kfree(value);
895free_key:
896 kfree(key);
897err_put:
898 fdput(f);
899 return err;
900}
901
902#define BPF_MAP_DELETE_ELEM_LAST_FIELD key
903
904static int map_delete_elem(union bpf_attr *attr)
905{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100906 void __user *ukey = u64_to_user_ptr(attr->key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700907 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700908 struct bpf_map *map;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200909 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700910 void *key;
911 int err;
912
913 if (CHECK_ATTR(BPF_MAP_DELETE_ELEM))
914 return -EINVAL;
915
Daniel Borkmann592867b2015-09-08 18:00:09 +0200916 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100917 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700918 if (IS_ERR(map))
919 return PTR_ERR(map);
920
Chenbo Feng6e71b042017-10-18 13:00:22 -0700921 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
922 err = -EPERM;
923 goto err_put;
924 }
925
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +0200926 key = __bpf_copy_key(ukey, map->key_size);
Al Viroe4448ed2017-05-13 18:43:00 -0400927 if (IS_ERR(key)) {
928 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700929 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400930 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700931
Jakub Kicinskia3884572018-01-11 20:29:09 -0800932 if (bpf_map_is_dev_bound(map)) {
933 err = bpf_map_offload_delete_elem(map, key);
934 goto out;
935 }
936
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800937 preempt_disable();
938 __this_cpu_inc(bpf_prog_active);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700939 rcu_read_lock();
940 err = map->ops->map_delete_elem(map, key);
941 rcu_read_unlock();
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800942 __this_cpu_dec(bpf_prog_active);
943 preempt_enable();
Daniel Colascione1ae80cf2018-10-12 03:54:27 -0700944 maybe_wait_bpf_programs(map);
Jakub Kicinskia3884572018-01-11 20:29:09 -0800945out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700946 kfree(key);
947err_put:
948 fdput(f);
949 return err;
950}
951
952/* last field in 'union bpf_attr' used by this command */
953#define BPF_MAP_GET_NEXT_KEY_LAST_FIELD next_key
954
955static int map_get_next_key(union bpf_attr *attr)
956{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100957 void __user *ukey = u64_to_user_ptr(attr->key);
958 void __user *unext_key = u64_to_user_ptr(attr->next_key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700959 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700960 struct bpf_map *map;
961 void *key, *next_key;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200962 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700963 int err;
964
965 if (CHECK_ATTR(BPF_MAP_GET_NEXT_KEY))
966 return -EINVAL;
967
Daniel Borkmann592867b2015-09-08 18:00:09 +0200968 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100969 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700970 if (IS_ERR(map))
971 return PTR_ERR(map);
972
Chenbo Feng6e71b042017-10-18 13:00:22 -0700973 if (!(f.file->f_mode & FMODE_CAN_READ)) {
974 err = -EPERM;
975 goto err_put;
976 }
977
Teng Qin8fe45922017-04-24 19:00:37 -0700978 if (ukey) {
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +0200979 key = __bpf_copy_key(ukey, map->key_size);
Al Viroe4448ed2017-05-13 18:43:00 -0400980 if (IS_ERR(key)) {
981 err = PTR_ERR(key);
Teng Qin8fe45922017-04-24 19:00:37 -0700982 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400983 }
Teng Qin8fe45922017-04-24 19:00:37 -0700984 } else {
985 key = NULL;
986 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700987
988 err = -ENOMEM;
989 next_key = kmalloc(map->key_size, GFP_USER);
990 if (!next_key)
991 goto free_key;
992
Jakub Kicinskia3884572018-01-11 20:29:09 -0800993 if (bpf_map_is_dev_bound(map)) {
994 err = bpf_map_offload_get_next_key(map, key, next_key);
995 goto out;
996 }
997
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700998 rcu_read_lock();
999 err = map->ops->map_get_next_key(map, key, next_key);
1000 rcu_read_unlock();
Jakub Kicinskia3884572018-01-11 20:29:09 -08001001out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -07001002 if (err)
1003 goto free_next_key;
1004
1005 err = -EFAULT;
1006 if (copy_to_user(unext_key, next_key, map->key_size) != 0)
1007 goto free_next_key;
1008
1009 err = 0;
1010
1011free_next_key:
1012 kfree(next_key);
1013free_key:
1014 kfree(key);
1015err_put:
1016 fdput(f);
1017 return err;
1018}
1019
Mauricio Vasquez Bbd513cd2018-10-18 15:16:30 +02001020#define BPF_MAP_LOOKUP_AND_DELETE_ELEM_LAST_FIELD value
1021
1022static int map_lookup_and_delete_elem(union bpf_attr *attr)
1023{
1024 void __user *ukey = u64_to_user_ptr(attr->key);
1025 void __user *uvalue = u64_to_user_ptr(attr->value);
1026 int ufd = attr->map_fd;
1027 struct bpf_map *map;
Alexei Starovoitov540fefc2018-10-19 13:52:38 -07001028 void *key, *value;
Mauricio Vasquez Bbd513cd2018-10-18 15:16:30 +02001029 u32 value_size;
1030 struct fd f;
1031 int err;
1032
1033 if (CHECK_ATTR(BPF_MAP_LOOKUP_AND_DELETE_ELEM))
1034 return -EINVAL;
1035
1036 f = fdget(ufd);
1037 map = __bpf_map_get(f);
1038 if (IS_ERR(map))
1039 return PTR_ERR(map);
1040
1041 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
1042 err = -EPERM;
1043 goto err_put;
1044 }
1045
1046 key = __bpf_copy_key(ukey, map->key_size);
1047 if (IS_ERR(key)) {
1048 err = PTR_ERR(key);
1049 goto err_put;
1050 }
1051
1052 value_size = map->value_size;
1053
1054 err = -ENOMEM;
1055 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
1056 if (!value)
1057 goto free_key;
1058
1059 if (map->map_type == BPF_MAP_TYPE_QUEUE ||
1060 map->map_type == BPF_MAP_TYPE_STACK) {
1061 err = map->ops->map_pop_elem(map, value);
1062 } else {
1063 err = -ENOTSUPP;
1064 }
1065
1066 if (err)
1067 goto free_value;
1068
1069 if (copy_to_user(uvalue, value, value_size) != 0)
1070 goto free_value;
1071
1072 err = 0;
1073
1074free_value:
1075 kfree(value);
1076free_key:
1077 kfree(key);
1078err_put:
1079 fdput(f);
1080 return err;
1081}
1082
Jakub Kicinski7de16e32017-10-16 16:40:53 -07001083static const struct bpf_prog_ops * const bpf_prog_types[] = {
1084#define BPF_PROG_TYPE(_id, _name) \
1085 [_id] = & _name ## _prog_ops,
1086#define BPF_MAP_TYPE(_id, _ops)
1087#include <linux/bpf_types.h>
1088#undef BPF_PROG_TYPE
1089#undef BPF_MAP_TYPE
1090};
1091
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001092static int find_prog_type(enum bpf_prog_type type, struct bpf_prog *prog)
1093{
Daniel Borkmannd0f1a452018-05-04 02:13:57 +02001094 const struct bpf_prog_ops *ops;
1095
1096 if (type >= ARRAY_SIZE(bpf_prog_types))
1097 return -EINVAL;
1098 type = array_index_nospec(type, ARRAY_SIZE(bpf_prog_types));
1099 ops = bpf_prog_types[type];
1100 if (!ops)
Johannes Bergbe9370a2017-04-11 15:34:57 +02001101 return -EINVAL;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001102
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07001103 if (!bpf_prog_is_dev_bound(prog->aux))
Daniel Borkmannd0f1a452018-05-04 02:13:57 +02001104 prog->aux->ops = ops;
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07001105 else
1106 prog->aux->ops = &bpf_offload_prog_ops;
Johannes Bergbe9370a2017-04-11 15:34:57 +02001107 prog->type = type;
1108 return 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001109}
1110
1111/* drop refcnt on maps used by eBPF program and free auxilary data */
1112static void free_used_maps(struct bpf_prog_aux *aux)
1113{
Roman Gushchin8bad74f2018-09-28 14:45:36 +00001114 enum bpf_cgroup_storage_type stype;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001115 int i;
1116
Roman Gushchin8bad74f2018-09-28 14:45:36 +00001117 for_each_cgroup_storage_type(stype) {
1118 if (!aux->cgroup_storage[stype])
1119 continue;
1120 bpf_cgroup_storage_release(aux->prog,
1121 aux->cgroup_storage[stype]);
1122 }
Roman Gushchinde9cbba2018-08-02 14:27:18 -07001123
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001124 for (i = 0; i < aux->used_map_cnt; i++)
1125 bpf_map_put(aux->used_maps[i]);
1126
1127 kfree(aux->used_maps);
1128}
1129
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001130int __bpf_prog_charge(struct user_struct *user, u32 pages)
1131{
1132 unsigned long memlock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1133 unsigned long user_bufs;
1134
1135 if (user) {
1136 user_bufs = atomic_long_add_return(pages, &user->locked_vm);
1137 if (user_bufs > memlock_limit) {
1138 atomic_long_sub(pages, &user->locked_vm);
1139 return -EPERM;
1140 }
1141 }
1142
1143 return 0;
1144}
1145
1146void __bpf_prog_uncharge(struct user_struct *user, u32 pages)
1147{
1148 if (user)
1149 atomic_long_sub(pages, &user->locked_vm);
1150}
1151
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001152static int bpf_prog_charge_memlock(struct bpf_prog *prog)
1153{
1154 struct user_struct *user = get_current_user();
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001155 int ret;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001156
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001157 ret = __bpf_prog_charge(user, prog->pages);
1158 if (ret) {
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001159 free_uid(user);
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001160 return ret;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001161 }
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001162
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001163 prog->aux->user = user;
1164 return 0;
1165}
1166
1167static void bpf_prog_uncharge_memlock(struct bpf_prog *prog)
1168{
1169 struct user_struct *user = prog->aux->user;
1170
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001171 __bpf_prog_uncharge(user, prog->pages);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001172 free_uid(user);
1173}
1174
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001175static int bpf_prog_alloc_id(struct bpf_prog *prog)
1176{
1177 int id;
1178
Shaohua Lib76354c2018-03-27 11:53:21 -07001179 idr_preload(GFP_KERNEL);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001180 spin_lock_bh(&prog_idr_lock);
1181 id = idr_alloc_cyclic(&prog_idr, prog, 1, INT_MAX, GFP_ATOMIC);
1182 if (id > 0)
1183 prog->aux->id = id;
1184 spin_unlock_bh(&prog_idr_lock);
Shaohua Lib76354c2018-03-27 11:53:21 -07001185 idr_preload_end();
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001186
1187 /* id is in [1, INT_MAX) */
1188 if (WARN_ON_ONCE(!id))
1189 return -ENOSPC;
1190
1191 return id > 0 ? 0 : id;
1192}
1193
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001194void bpf_prog_free_id(struct bpf_prog *prog, bool do_idr_lock)
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001195{
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001196 /* cBPF to eBPF migrations are currently not in the idr store.
1197 * Offloaded programs are removed from the store when their device
1198 * disappears - even if someone grabs an fd to them they are unusable,
1199 * simply waiting for refcnt to drop to be freed.
1200 */
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001201 if (!prog->aux->id)
1202 return;
1203
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001204 if (do_idr_lock)
1205 spin_lock_bh(&prog_idr_lock);
1206 else
1207 __acquire(&prog_idr_lock);
1208
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001209 idr_remove(&prog_idr, prog->aux->id);
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001210 prog->aux->id = 0;
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001211
1212 if (do_idr_lock)
1213 spin_unlock_bh(&prog_idr_lock);
1214 else
1215 __release(&prog_idr_lock);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001216}
1217
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001218static void __bpf_prog_put_rcu(struct rcu_head *rcu)
Alexei Starovoitovabf2e7d2015-05-28 19:26:02 -07001219{
1220 struct bpf_prog_aux *aux = container_of(rcu, struct bpf_prog_aux, rcu);
1221
1222 free_used_maps(aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001223 bpf_prog_uncharge_memlock(aux->prog);
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001224 security_bpf_prog_free(aux);
Alexei Starovoitovabf2e7d2015-05-28 19:26:02 -07001225 bpf_prog_free(aux->prog);
1226}
1227
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001228static void __bpf_prog_put(struct bpf_prog *prog, bool do_idr_lock)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001229{
Daniel Borkmanna67edbf2017-01-25 02:28:18 +01001230 if (atomic_dec_and_test(&prog->aux->refcnt)) {
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07001231 /* bpf_prog_free_id() must be called first */
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001232 bpf_prog_free_id(prog, do_idr_lock);
Daniel Borkmann7d1982b2018-06-15 02:30:47 +02001233 bpf_prog_kallsyms_del_all(prog);
Yonghong Song838e9692018-11-19 15:29:11 -08001234 btf_put(prog->aux->btf);
Yonghong Songba64e7d2018-11-24 23:20:44 -08001235 kvfree(prog->aux->func_info);
Martin KaFai Lauc454a462018-12-07 16:42:25 -08001236 bpf_prog_free_linfo(prog);
Daniel Borkmann4f74d802017-12-20 13:42:56 +01001237
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001238 call_rcu(&prog->aux->rcu, __bpf_prog_put_rcu);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +01001239 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001240}
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001241
1242void bpf_prog_put(struct bpf_prog *prog)
1243{
1244 __bpf_prog_put(prog, true);
1245}
Daniel Borkmanne2e9b652015-03-01 12:31:48 +01001246EXPORT_SYMBOL_GPL(bpf_prog_put);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001247
1248static int bpf_prog_release(struct inode *inode, struct file *filp)
1249{
1250 struct bpf_prog *prog = filp->private_data;
1251
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001252 bpf_prog_put(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001253 return 0;
1254}
1255
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001256#ifdef CONFIG_PROC_FS
1257static void bpf_prog_show_fdinfo(struct seq_file *m, struct file *filp)
1258{
1259 const struct bpf_prog *prog = filp->private_data;
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001260 char prog_tag[sizeof(prog->tag) * 2 + 1] = { };
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001261
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001262 bin2hex(prog_tag, prog->tag, sizeof(prog->tag));
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001263 seq_printf(m,
1264 "prog_type:\t%u\n"
1265 "prog_jited:\t%u\n"
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001266 "prog_tag:\t%s\n"
Daniel Borkmann4316b402018-06-02 23:06:34 +02001267 "memlock:\t%llu\n"
1268 "prog_id:\t%u\n",
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001269 prog->type,
1270 prog->jited,
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001271 prog_tag,
Daniel Borkmann4316b402018-06-02 23:06:34 +02001272 prog->pages * 1ULL << PAGE_SHIFT,
1273 prog->aux->id);
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001274}
1275#endif
1276
Chenbo Fengf66e4482017-10-18 13:00:26 -07001277const struct file_operations bpf_prog_fops = {
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001278#ifdef CONFIG_PROC_FS
1279 .show_fdinfo = bpf_prog_show_fdinfo,
1280#endif
1281 .release = bpf_prog_release,
Chenbo Feng6e71b042017-10-18 13:00:22 -07001282 .read = bpf_dummy_read,
1283 .write = bpf_dummy_write,
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001284};
1285
Daniel Borkmannb2197752015-10-29 14:58:09 +01001286int bpf_prog_new_fd(struct bpf_prog *prog)
Daniel Borkmannaa797812015-10-29 14:58:06 +01001287{
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001288 int ret;
1289
1290 ret = security_bpf_prog(prog);
1291 if (ret < 0)
1292 return ret;
1293
Daniel Borkmannaa797812015-10-29 14:58:06 +01001294 return anon_inode_getfd("bpf-prog", &bpf_prog_fops, prog,
1295 O_RDWR | O_CLOEXEC);
1296}
1297
Daniel Borkmann113214b2016-06-30 17:24:44 +02001298static struct bpf_prog *____bpf_prog_get(struct fd f)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001299{
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001300 if (!f.file)
1301 return ERR_PTR(-EBADF);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001302 if (f.file->f_op != &bpf_prog_fops) {
1303 fdput(f);
1304 return ERR_PTR(-EINVAL);
1305 }
1306
Daniel Borkmannc2101292015-10-29 14:58:07 +01001307 return f.file->private_data;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001308}
1309
Brenden Blanco59d36562016-07-19 12:16:46 -07001310struct bpf_prog *bpf_prog_add(struct bpf_prog *prog, int i)
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001311{
Brenden Blanco59d36562016-07-19 12:16:46 -07001312 if (atomic_add_return(i, &prog->aux->refcnt) > BPF_MAX_REFCNT) {
1313 atomic_sub(i, &prog->aux->refcnt);
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001314 return ERR_PTR(-EBUSY);
1315 }
1316 return prog;
1317}
Brenden Blanco59d36562016-07-19 12:16:46 -07001318EXPORT_SYMBOL_GPL(bpf_prog_add);
1319
Daniel Borkmannc5405942016-11-09 22:02:34 +01001320void bpf_prog_sub(struct bpf_prog *prog, int i)
1321{
1322 /* Only to be used for undoing previous bpf_prog_add() in some
1323 * error path. We still know that another entity in our call
1324 * path holds a reference to the program, thus atomic_sub() can
1325 * be safely used in such cases!
1326 */
1327 WARN_ON(atomic_sub_return(i, &prog->aux->refcnt) == 0);
1328}
1329EXPORT_SYMBOL_GPL(bpf_prog_sub);
1330
Brenden Blanco59d36562016-07-19 12:16:46 -07001331struct bpf_prog *bpf_prog_inc(struct bpf_prog *prog)
1332{
1333 return bpf_prog_add(prog, 1);
1334}
Daniel Borkmann97bc4022016-11-19 01:45:00 +01001335EXPORT_SYMBOL_GPL(bpf_prog_inc);
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001336
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001337/* prog_idr_lock should have been held */
John Fastabenda6f6df62017-08-15 22:32:22 -07001338struct bpf_prog *bpf_prog_inc_not_zero(struct bpf_prog *prog)
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001339{
1340 int refold;
1341
Mark Rutlandbfc18e32018-06-21 13:13:04 +01001342 refold = atomic_fetch_add_unless(&prog->aux->refcnt, 1, 0);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001343
1344 if (refold >= BPF_MAX_REFCNT) {
1345 __bpf_prog_put(prog, false);
1346 return ERR_PTR(-EBUSY);
1347 }
1348
1349 if (!refold)
1350 return ERR_PTR(-ENOENT);
1351
1352 return prog;
1353}
John Fastabenda6f6df62017-08-15 22:32:22 -07001354EXPORT_SYMBOL_GPL(bpf_prog_inc_not_zero);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001355
Al Viro040ee692017-12-02 20:20:38 -05001356bool bpf_prog_get_ok(struct bpf_prog *prog,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001357 enum bpf_prog_type *attach_type, bool attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001358{
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001359 /* not an attachment, just a refcount inc, always allow */
1360 if (!attach_type)
1361 return true;
Jakub Kicinski248f3462017-11-03 13:56:20 -07001362
1363 if (prog->type != *attach_type)
1364 return false;
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001365 if (bpf_prog_is_dev_bound(prog->aux) && !attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001366 return false;
1367
1368 return true;
1369}
1370
1371static struct bpf_prog *__bpf_prog_get(u32 ufd, enum bpf_prog_type *attach_type,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001372 bool attach_drv)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001373{
1374 struct fd f = fdget(ufd);
1375 struct bpf_prog *prog;
1376
Daniel Borkmann113214b2016-06-30 17:24:44 +02001377 prog = ____bpf_prog_get(f);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001378 if (IS_ERR(prog))
1379 return prog;
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001380 if (!bpf_prog_get_ok(prog, attach_type, attach_drv)) {
Daniel Borkmann113214b2016-06-30 17:24:44 +02001381 prog = ERR_PTR(-EINVAL);
1382 goto out;
1383 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001384
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001385 prog = bpf_prog_inc(prog);
Daniel Borkmann113214b2016-06-30 17:24:44 +02001386out:
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001387 fdput(f);
1388 return prog;
1389}
Daniel Borkmann113214b2016-06-30 17:24:44 +02001390
1391struct bpf_prog *bpf_prog_get(u32 ufd)
1392{
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001393 return __bpf_prog_get(ufd, NULL, false);
Daniel Borkmann113214b2016-06-30 17:24:44 +02001394}
1395
Jakub Kicinski248f3462017-11-03 13:56:20 -07001396struct bpf_prog *bpf_prog_get_type_dev(u32 ufd, enum bpf_prog_type type,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001397 bool attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001398{
Alexei Starovoitov4d220ed2018-04-28 19:56:37 -07001399 return __bpf_prog_get(ufd, &type, attach_drv);
Jakub Kicinski248f3462017-11-03 13:56:20 -07001400}
Jakub Kicinski6c8dfe22017-11-03 13:56:21 -07001401EXPORT_SYMBOL_GPL(bpf_prog_get_type_dev);
Jakub Kicinski248f3462017-11-03 13:56:20 -07001402
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001403/* Initially all BPF programs could be loaded w/o specifying
1404 * expected_attach_type. Later for some of them specifying expected_attach_type
1405 * at load time became required so that program could be validated properly.
1406 * Programs of types that are allowed to be loaded both w/ and w/o (for
1407 * backward compatibility) expected_attach_type, should have the default attach
1408 * type assigned to expected_attach_type for the latter case, so that it can be
1409 * validated later at attach time.
1410 *
1411 * bpf_prog_load_fixup_attach_type() sets expected_attach_type in @attr if
1412 * prog type requires it but has some attach types that have to be backward
1413 * compatible.
1414 */
1415static void bpf_prog_load_fixup_attach_type(union bpf_attr *attr)
1416{
1417 switch (attr->prog_type) {
1418 case BPF_PROG_TYPE_CGROUP_SOCK:
1419 /* Unfortunately BPF_ATTACH_TYPE_UNSPEC enumeration doesn't
1420 * exist so checking for non-zero is the way to go here.
1421 */
1422 if (!attr->expected_attach_type)
1423 attr->expected_attach_type =
1424 BPF_CGROUP_INET_SOCK_CREATE;
1425 break;
1426 }
1427}
1428
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001429static int
1430bpf_prog_load_check_attach_type(enum bpf_prog_type prog_type,
1431 enum bpf_attach_type expected_attach_type)
1432{
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001433 switch (prog_type) {
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001434 case BPF_PROG_TYPE_CGROUP_SOCK:
1435 switch (expected_attach_type) {
1436 case BPF_CGROUP_INET_SOCK_CREATE:
1437 case BPF_CGROUP_INET4_POST_BIND:
1438 case BPF_CGROUP_INET6_POST_BIND:
1439 return 0;
1440 default:
1441 return -EINVAL;
1442 }
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001443 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
1444 switch (expected_attach_type) {
1445 case BPF_CGROUP_INET4_BIND:
1446 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001447 case BPF_CGROUP_INET4_CONNECT:
1448 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001449 case BPF_CGROUP_UDP4_SENDMSG:
1450 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001451 return 0;
1452 default:
1453 return -EINVAL;
1454 }
1455 default:
1456 return 0;
1457 }
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001458}
1459
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001460/* last field in 'union bpf_attr' used by this command */
Martin KaFai Lauc454a462018-12-07 16:42:25 -08001461#define BPF_PROG_LOAD_LAST_FIELD line_info_cnt
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001462
Yonghong Song838e9692018-11-19 15:29:11 -08001463static int bpf_prog_load(union bpf_attr *attr, union bpf_attr __user *uattr)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001464{
1465 enum bpf_prog_type type = attr->prog_type;
1466 struct bpf_prog *prog;
1467 int err;
1468 char license[128];
1469 bool is_gpl;
1470
1471 if (CHECK_ATTR(BPF_PROG_LOAD))
1472 return -EINVAL;
1473
David Millere9ee9ef2018-11-30 21:08:14 -08001474 if (attr->prog_flags & ~(BPF_F_STRICT_ALIGNMENT | BPF_F_ANY_ALIGNMENT))
David S. Millere07b98d2017-05-10 11:38:07 -07001475 return -EINVAL;
1476
David Millere9ee9ef2018-11-30 21:08:14 -08001477 if (!IS_ENABLED(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) &&
1478 (attr->prog_flags & BPF_F_ANY_ALIGNMENT) &&
1479 !capable(CAP_SYS_ADMIN))
1480 return -EPERM;
1481
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001482 /* copy eBPF program license from user space */
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001483 if (strncpy_from_user(license, u64_to_user_ptr(attr->license),
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001484 sizeof(license) - 1) < 0)
1485 return -EFAULT;
1486 license[sizeof(license) - 1] = 0;
1487
1488 /* eBPF programs must be GPL compatible to use GPL-ed functions */
1489 is_gpl = license_is_gpl_compatible(license);
1490
Daniel Borkmannef0915c2016-12-07 01:15:44 +01001491 if (attr->insn_cnt == 0 || attr->insn_cnt > BPF_MAXINSNS)
1492 return -E2BIG;
Chenbo Feng80b7d812017-05-31 18:16:00 -07001493 if (type != BPF_PROG_TYPE_SOCKET_FILTER &&
1494 type != BPF_PROG_TYPE_CGROUP_SKB &&
1495 !capable(CAP_SYS_ADMIN))
Alexei Starovoitov1be7f752015-10-07 22:23:21 -07001496 return -EPERM;
1497
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001498 bpf_prog_load_fixup_attach_type(attr);
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001499 if (bpf_prog_load_check_attach_type(type, attr->expected_attach_type))
1500 return -EINVAL;
1501
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001502 /* plain bpf_prog allocation */
1503 prog = bpf_prog_alloc(bpf_prog_size(attr->insn_cnt), GFP_USER);
1504 if (!prog)
1505 return -ENOMEM;
1506
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001507 prog->expected_attach_type = attr->expected_attach_type;
1508
Jakub Kicinski9a18eed2017-12-27 18:39:04 -08001509 prog->aux->offload_requested = !!attr->prog_ifindex;
1510
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001511 err = security_bpf_prog_alloc(prog->aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001512 if (err)
1513 goto free_prog_nouncharge;
1514
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001515 err = bpf_prog_charge_memlock(prog);
1516 if (err)
1517 goto free_prog_sec;
1518
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001519 prog->len = attr->insn_cnt;
1520
1521 err = -EFAULT;
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001522 if (copy_from_user(prog->insns, u64_to_user_ptr(attr->insns),
Daniel Borkmannaafe6ae2016-12-18 01:52:57 +01001523 bpf_prog_insn_size(prog)) != 0)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001524 goto free_prog;
1525
1526 prog->orig_prog = NULL;
Daniel Borkmanna91263d2015-09-30 01:41:50 +02001527 prog->jited = 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001528
1529 atomic_set(&prog->aux->refcnt, 1);
Daniel Borkmanna91263d2015-09-30 01:41:50 +02001530 prog->gpl_compatible = is_gpl ? 1 : 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001531
Jakub Kicinski9a18eed2017-12-27 18:39:04 -08001532 if (bpf_prog_is_dev_bound(prog->aux)) {
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07001533 err = bpf_prog_offload_init(prog, attr);
1534 if (err)
1535 goto free_prog;
1536 }
1537
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001538 /* find program type: socket_filter vs tracing_filter */
1539 err = find_prog_type(type, prog);
1540 if (err < 0)
1541 goto free_prog;
1542
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001543 prog->aux->load_time = ktime_get_boot_ns();
1544 err = bpf_obj_name_cpy(prog->aux->name, attr->prog_name);
1545 if (err)
1546 goto free_prog;
1547
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001548 /* run eBPF verifier */
Yonghong Song838e9692018-11-19 15:29:11 -08001549 err = bpf_check(&prog, attr, uattr);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001550 if (err < 0)
1551 goto free_used_maps;
1552
Daniel Borkmann9facc332018-06-15 02:30:48 +02001553 prog = bpf_prog_select_runtime(prog, &err);
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001554 if (err < 0)
1555 goto free_used_maps;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001556
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001557 err = bpf_prog_alloc_id(prog);
1558 if (err)
1559 goto free_used_maps;
1560
Daniel Borkmannaa797812015-10-29 14:58:06 +01001561 err = bpf_prog_new_fd(prog);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001562 if (err < 0) {
1563 /* failed to allocate fd.
1564 * bpf_prog_put() is needed because the above
1565 * bpf_prog_alloc_id() has published the prog
1566 * to the userspace and the userspace may
1567 * have refcnt-ed it through BPF_PROG_GET_FD_BY_ID.
1568 */
1569 bpf_prog_put(prog);
1570 return err;
1571 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001572
Daniel Borkmann74451e662017-02-16 22:24:50 +01001573 bpf_prog_kallsyms_add(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001574 return err;
1575
1576free_used_maps:
Martin KaFai Lauc454a462018-12-07 16:42:25 -08001577 bpf_prog_free_linfo(prog);
Martin KaFai Lau5482e9a2018-12-01 17:08:44 -08001578 kvfree(prog->aux->func_info);
1579 btf_put(prog->aux->btf);
Daniel Borkmann7d1982b2018-06-15 02:30:47 +02001580 bpf_prog_kallsyms_del_subprogs(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001581 free_used_maps(prog->aux);
1582free_prog:
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001583 bpf_prog_uncharge_memlock(prog);
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001584free_prog_sec:
1585 security_bpf_prog_free(prog->aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001586free_prog_nouncharge:
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001587 bpf_prog_free(prog);
1588 return err;
1589}
1590
Chenbo Feng6e71b042017-10-18 13:00:22 -07001591#define BPF_OBJ_LAST_FIELD file_flags
Daniel Borkmannb2197752015-10-29 14:58:09 +01001592
1593static int bpf_obj_pin(const union bpf_attr *attr)
1594{
Chenbo Feng6e71b042017-10-18 13:00:22 -07001595 if (CHECK_ATTR(BPF_OBJ) || attr->file_flags != 0)
Daniel Borkmannb2197752015-10-29 14:58:09 +01001596 return -EINVAL;
1597
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001598 return bpf_obj_pin_user(attr->bpf_fd, u64_to_user_ptr(attr->pathname));
Daniel Borkmannb2197752015-10-29 14:58:09 +01001599}
1600
1601static int bpf_obj_get(const union bpf_attr *attr)
1602{
Chenbo Feng6e71b042017-10-18 13:00:22 -07001603 if (CHECK_ATTR(BPF_OBJ) || attr->bpf_fd != 0 ||
1604 attr->file_flags & ~BPF_OBJ_FLAG_MASK)
Daniel Borkmannb2197752015-10-29 14:58:09 +01001605 return -EINVAL;
1606
Chenbo Feng6e71b042017-10-18 13:00:22 -07001607 return bpf_obj_get_user(u64_to_user_ptr(attr->pathname),
1608 attr->file_flags);
Daniel Borkmannb2197752015-10-29 14:58:09 +01001609}
1610
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001611struct bpf_raw_tracepoint {
1612 struct bpf_raw_event_map *btp;
1613 struct bpf_prog *prog;
1614};
1615
1616static int bpf_raw_tracepoint_release(struct inode *inode, struct file *filp)
1617{
1618 struct bpf_raw_tracepoint *raw_tp = filp->private_data;
1619
1620 if (raw_tp->prog) {
1621 bpf_probe_unregister(raw_tp->btp, raw_tp->prog);
1622 bpf_prog_put(raw_tp->prog);
1623 }
Matt Mullinsa38d1102018-12-12 16:42:37 -08001624 bpf_put_raw_tracepoint(raw_tp->btp);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001625 kfree(raw_tp);
1626 return 0;
1627}
1628
1629static const struct file_operations bpf_raw_tp_fops = {
1630 .release = bpf_raw_tracepoint_release,
1631 .read = bpf_dummy_read,
1632 .write = bpf_dummy_write,
1633};
1634
1635#define BPF_RAW_TRACEPOINT_OPEN_LAST_FIELD raw_tracepoint.prog_fd
1636
1637static int bpf_raw_tracepoint_open(const union bpf_attr *attr)
1638{
1639 struct bpf_raw_tracepoint *raw_tp;
1640 struct bpf_raw_event_map *btp;
1641 struct bpf_prog *prog;
1642 char tp_name[128];
1643 int tp_fd, err;
1644
1645 if (strncpy_from_user(tp_name, u64_to_user_ptr(attr->raw_tracepoint.name),
1646 sizeof(tp_name) - 1) < 0)
1647 return -EFAULT;
1648 tp_name[sizeof(tp_name) - 1] = 0;
1649
Matt Mullinsa38d1102018-12-12 16:42:37 -08001650 btp = bpf_get_raw_tracepoint(tp_name);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001651 if (!btp)
1652 return -ENOENT;
1653
1654 raw_tp = kzalloc(sizeof(*raw_tp), GFP_USER);
Matt Mullinsa38d1102018-12-12 16:42:37 -08001655 if (!raw_tp) {
1656 err = -ENOMEM;
1657 goto out_put_btp;
1658 }
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001659 raw_tp->btp = btp;
1660
1661 prog = bpf_prog_get_type(attr->raw_tracepoint.prog_fd,
1662 BPF_PROG_TYPE_RAW_TRACEPOINT);
1663 if (IS_ERR(prog)) {
1664 err = PTR_ERR(prog);
1665 goto out_free_tp;
1666 }
1667
1668 err = bpf_probe_register(raw_tp->btp, prog);
1669 if (err)
1670 goto out_put_prog;
1671
1672 raw_tp->prog = prog;
1673 tp_fd = anon_inode_getfd("bpf-raw-tracepoint", &bpf_raw_tp_fops, raw_tp,
1674 O_CLOEXEC);
1675 if (tp_fd < 0) {
1676 bpf_probe_unregister(raw_tp->btp, prog);
1677 err = tp_fd;
1678 goto out_put_prog;
1679 }
1680 return tp_fd;
1681
1682out_put_prog:
1683 bpf_prog_put(prog);
1684out_free_tp:
1685 kfree(raw_tp);
Matt Mullinsa38d1102018-12-12 16:42:37 -08001686out_put_btp:
1687 bpf_put_raw_tracepoint(btp);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001688 return err;
1689}
1690
Anders Roxell33491582018-04-03 14:09:47 +02001691static int bpf_prog_attach_check_attach_type(const struct bpf_prog *prog,
1692 enum bpf_attach_type attach_type)
1693{
1694 switch (prog->type) {
1695 case BPF_PROG_TYPE_CGROUP_SOCK:
1696 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
1697 return attach_type == prog->expected_attach_type ? 0 : -EINVAL;
1698 default:
1699 return 0;
1700 }
1701}
1702
John Fastabend464bc0f2017-08-28 07:10:04 -07001703#define BPF_PROG_ATTACH_LAST_FIELD attach_flags
John Fastabend174a79f2017-08-15 22:32:47 -07001704
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001705#define BPF_F_ATTACH_MASK \
1706 (BPF_F_ALLOW_OVERRIDE | BPF_F_ALLOW_MULTI)
1707
Daniel Mackf4324552016-11-23 16:52:27 +01001708static int bpf_prog_attach(const union bpf_attr *attr)
1709{
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001710 enum bpf_prog_type ptype;
Daniel Mackf4324552016-11-23 16:52:27 +01001711 struct bpf_prog *prog;
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001712 int ret;
Daniel Mackf4324552016-11-23 16:52:27 +01001713
1714 if (!capable(CAP_NET_ADMIN))
1715 return -EPERM;
1716
1717 if (CHECK_ATTR(BPF_PROG_ATTACH))
1718 return -EINVAL;
1719
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001720 if (attr->attach_flags & ~BPF_F_ATTACH_MASK)
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001721 return -EINVAL;
1722
Daniel Mackf4324552016-11-23 16:52:27 +01001723 switch (attr->attach_type) {
1724 case BPF_CGROUP_INET_INGRESS:
1725 case BPF_CGROUP_INET_EGRESS:
David Ahernb2cd1252016-12-01 08:48:03 -08001726 ptype = BPF_PROG_TYPE_CGROUP_SKB;
Daniel Mackf4324552016-11-23 16:52:27 +01001727 break;
David Ahern610236582016-12-01 08:48:04 -08001728 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001729 case BPF_CGROUP_INET4_POST_BIND:
1730 case BPF_CGROUP_INET6_POST_BIND:
David Ahern610236582016-12-01 08:48:04 -08001731 ptype = BPF_PROG_TYPE_CGROUP_SOCK;
1732 break;
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001733 case BPF_CGROUP_INET4_BIND:
1734 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001735 case BPF_CGROUP_INET4_CONNECT:
1736 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001737 case BPF_CGROUP_UDP4_SENDMSG:
1738 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001739 ptype = BPF_PROG_TYPE_CGROUP_SOCK_ADDR;
1740 break;
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001741 case BPF_CGROUP_SOCK_OPS:
1742 ptype = BPF_PROG_TYPE_SOCK_OPS;
1743 break;
Roman Gushchinebc614f2017-11-05 08:15:32 -05001744 case BPF_CGROUP_DEVICE:
1745 ptype = BPF_PROG_TYPE_CGROUP_DEVICE;
1746 break;
John Fastabend4f738ad2018-03-18 12:57:10 -07001747 case BPF_SK_MSG_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001748 ptype = BPF_PROG_TYPE_SK_MSG;
1749 break;
John Fastabend464bc0f2017-08-28 07:10:04 -07001750 case BPF_SK_SKB_STREAM_PARSER:
1751 case BPF_SK_SKB_STREAM_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001752 ptype = BPF_PROG_TYPE_SK_SKB;
1753 break;
Sean Youngf4364dc2018-05-27 12:24:09 +01001754 case BPF_LIRC_MODE2:
Sean Youngfdb5c452018-06-19 00:04:24 +01001755 ptype = BPF_PROG_TYPE_LIRC_MODE2;
1756 break;
Petar Penkovd58e4682018-09-14 07:46:18 -07001757 case BPF_FLOW_DISSECTOR:
1758 ptype = BPF_PROG_TYPE_FLOW_DISSECTOR;
1759 break;
Daniel Mackf4324552016-11-23 16:52:27 +01001760 default:
1761 return -EINVAL;
1762 }
1763
David Ahernb2cd1252016-12-01 08:48:03 -08001764 prog = bpf_prog_get_type(attr->attach_bpf_fd, ptype);
1765 if (IS_ERR(prog))
1766 return PTR_ERR(prog);
1767
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001768 if (bpf_prog_attach_check_attach_type(prog, attr->attach_type)) {
1769 bpf_prog_put(prog);
1770 return -EINVAL;
1771 }
1772
Sean Youngfdb5c452018-06-19 00:04:24 +01001773 switch (ptype) {
1774 case BPF_PROG_TYPE_SK_SKB:
1775 case BPF_PROG_TYPE_SK_MSG:
Daniel Borkmann604326b2018-10-13 02:45:58 +02001776 ret = sock_map_get_from_fd(attr, prog);
Sean Youngfdb5c452018-06-19 00:04:24 +01001777 break;
1778 case BPF_PROG_TYPE_LIRC_MODE2:
1779 ret = lirc_prog_attach(attr, prog);
1780 break;
Petar Penkovd58e4682018-09-14 07:46:18 -07001781 case BPF_PROG_TYPE_FLOW_DISSECTOR:
1782 ret = skb_flow_dissector_bpf_prog_attach(attr, prog);
1783 break;
Sean Youngfdb5c452018-06-19 00:04:24 +01001784 default:
1785 ret = cgroup_bpf_prog_attach(attr, ptype, prog);
David Ahernb2cd1252016-12-01 08:48:03 -08001786 }
1787
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001788 if (ret)
1789 bpf_prog_put(prog);
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001790 return ret;
Daniel Mackf4324552016-11-23 16:52:27 +01001791}
1792
1793#define BPF_PROG_DETACH_LAST_FIELD attach_type
1794
1795static int bpf_prog_detach(const union bpf_attr *attr)
1796{
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001797 enum bpf_prog_type ptype;
Daniel Mackf4324552016-11-23 16:52:27 +01001798
1799 if (!capable(CAP_NET_ADMIN))
1800 return -EPERM;
1801
1802 if (CHECK_ATTR(BPF_PROG_DETACH))
1803 return -EINVAL;
1804
1805 switch (attr->attach_type) {
1806 case BPF_CGROUP_INET_INGRESS:
1807 case BPF_CGROUP_INET_EGRESS:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001808 ptype = BPF_PROG_TYPE_CGROUP_SKB;
1809 break;
David Ahern610236582016-12-01 08:48:04 -08001810 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001811 case BPF_CGROUP_INET4_POST_BIND:
1812 case BPF_CGROUP_INET6_POST_BIND:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001813 ptype = BPF_PROG_TYPE_CGROUP_SOCK;
1814 break;
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001815 case BPF_CGROUP_INET4_BIND:
1816 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001817 case BPF_CGROUP_INET4_CONNECT:
1818 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001819 case BPF_CGROUP_UDP4_SENDMSG:
1820 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001821 ptype = BPF_PROG_TYPE_CGROUP_SOCK_ADDR;
1822 break;
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001823 case BPF_CGROUP_SOCK_OPS:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001824 ptype = BPF_PROG_TYPE_SOCK_OPS;
Daniel Mackf4324552016-11-23 16:52:27 +01001825 break;
Roman Gushchinebc614f2017-11-05 08:15:32 -05001826 case BPF_CGROUP_DEVICE:
1827 ptype = BPF_PROG_TYPE_CGROUP_DEVICE;
1828 break;
John Fastabend4f738ad2018-03-18 12:57:10 -07001829 case BPF_SK_MSG_VERDICT:
Daniel Borkmann604326b2018-10-13 02:45:58 +02001830 return sock_map_get_from_fd(attr, NULL);
John Fastabend5a67da22017-09-08 14:00:49 -07001831 case BPF_SK_SKB_STREAM_PARSER:
1832 case BPF_SK_SKB_STREAM_VERDICT:
Daniel Borkmann604326b2018-10-13 02:45:58 +02001833 return sock_map_get_from_fd(attr, NULL);
Sean Youngf4364dc2018-05-27 12:24:09 +01001834 case BPF_LIRC_MODE2:
1835 return lirc_prog_detach(attr);
Petar Penkovd58e4682018-09-14 07:46:18 -07001836 case BPF_FLOW_DISSECTOR:
1837 return skb_flow_dissector_bpf_prog_detach(attr);
Daniel Mackf4324552016-11-23 16:52:27 +01001838 default:
1839 return -EINVAL;
1840 }
1841
Sean Youngfdb5c452018-06-19 00:04:24 +01001842 return cgroup_bpf_prog_detach(attr, ptype);
Daniel Mackf4324552016-11-23 16:52:27 +01001843}
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001844
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001845#define BPF_PROG_QUERY_LAST_FIELD query.prog_cnt
1846
1847static int bpf_prog_query(const union bpf_attr *attr,
1848 union bpf_attr __user *uattr)
1849{
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001850 if (!capable(CAP_NET_ADMIN))
1851 return -EPERM;
1852 if (CHECK_ATTR(BPF_PROG_QUERY))
1853 return -EINVAL;
1854 if (attr->query.query_flags & ~BPF_F_QUERY_EFFECTIVE)
1855 return -EINVAL;
1856
1857 switch (attr->query.attach_type) {
1858 case BPF_CGROUP_INET_INGRESS:
1859 case BPF_CGROUP_INET_EGRESS:
1860 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001861 case BPF_CGROUP_INET4_BIND:
1862 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001863 case BPF_CGROUP_INET4_POST_BIND:
1864 case BPF_CGROUP_INET6_POST_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001865 case BPF_CGROUP_INET4_CONNECT:
1866 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001867 case BPF_CGROUP_UDP4_SENDMSG:
1868 case BPF_CGROUP_UDP6_SENDMSG:
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001869 case BPF_CGROUP_SOCK_OPS:
Roman Gushchinebc614f2017-11-05 08:15:32 -05001870 case BPF_CGROUP_DEVICE:
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001871 break;
Sean Youngf4364dc2018-05-27 12:24:09 +01001872 case BPF_LIRC_MODE2:
1873 return lirc_prog_query(attr, uattr);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001874 default:
1875 return -EINVAL;
1876 }
Sean Youngfdb5c452018-06-19 00:04:24 +01001877
1878 return cgroup_bpf_prog_query(attr, uattr);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001879}
Daniel Mackf4324552016-11-23 16:52:27 +01001880
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07001881#define BPF_PROG_TEST_RUN_LAST_FIELD test.duration
1882
1883static int bpf_prog_test_run(const union bpf_attr *attr,
1884 union bpf_attr __user *uattr)
1885{
1886 struct bpf_prog *prog;
1887 int ret = -ENOTSUPP;
1888
Alexei Starovoitov61f3c962018-01-17 16:52:02 -08001889 if (!capable(CAP_SYS_ADMIN))
1890 return -EPERM;
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07001891 if (CHECK_ATTR(BPF_PROG_TEST_RUN))
1892 return -EINVAL;
1893
1894 prog = bpf_prog_get(attr->test.prog_fd);
1895 if (IS_ERR(prog))
1896 return PTR_ERR(prog);
1897
1898 if (prog->aux->ops->test_run)
1899 ret = prog->aux->ops->test_run(prog, attr, uattr);
1900
1901 bpf_prog_put(prog);
1902 return ret;
1903}
1904
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07001905#define BPF_OBJ_GET_NEXT_ID_LAST_FIELD next_id
1906
1907static int bpf_obj_get_next_id(const union bpf_attr *attr,
1908 union bpf_attr __user *uattr,
1909 struct idr *idr,
1910 spinlock_t *lock)
1911{
1912 u32 next_id = attr->start_id;
1913 int err = 0;
1914
1915 if (CHECK_ATTR(BPF_OBJ_GET_NEXT_ID) || next_id >= INT_MAX)
1916 return -EINVAL;
1917
1918 if (!capable(CAP_SYS_ADMIN))
1919 return -EPERM;
1920
1921 next_id++;
1922 spin_lock_bh(lock);
1923 if (!idr_get_next(idr, &next_id))
1924 err = -ENOENT;
1925 spin_unlock_bh(lock);
1926
1927 if (!err)
1928 err = put_user(next_id, &uattr->next_id);
1929
1930 return err;
1931}
1932
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001933#define BPF_PROG_GET_FD_BY_ID_LAST_FIELD prog_id
1934
1935static int bpf_prog_get_fd_by_id(const union bpf_attr *attr)
1936{
1937 struct bpf_prog *prog;
1938 u32 id = attr->prog_id;
1939 int fd;
1940
1941 if (CHECK_ATTR(BPF_PROG_GET_FD_BY_ID))
1942 return -EINVAL;
1943
1944 if (!capable(CAP_SYS_ADMIN))
1945 return -EPERM;
1946
1947 spin_lock_bh(&prog_idr_lock);
1948 prog = idr_find(&prog_idr, id);
1949 if (prog)
1950 prog = bpf_prog_inc_not_zero(prog);
1951 else
1952 prog = ERR_PTR(-ENOENT);
1953 spin_unlock_bh(&prog_idr_lock);
1954
1955 if (IS_ERR(prog))
1956 return PTR_ERR(prog);
1957
1958 fd = bpf_prog_new_fd(prog);
1959 if (fd < 0)
1960 bpf_prog_put(prog);
1961
1962 return fd;
1963}
1964
Chenbo Feng6e71b042017-10-18 13:00:22 -07001965#define BPF_MAP_GET_FD_BY_ID_LAST_FIELD open_flags
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001966
1967static int bpf_map_get_fd_by_id(const union bpf_attr *attr)
1968{
1969 struct bpf_map *map;
1970 u32 id = attr->map_id;
Chenbo Feng6e71b042017-10-18 13:00:22 -07001971 int f_flags;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001972 int fd;
1973
Chenbo Feng6e71b042017-10-18 13:00:22 -07001974 if (CHECK_ATTR(BPF_MAP_GET_FD_BY_ID) ||
1975 attr->open_flags & ~BPF_OBJ_FLAG_MASK)
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001976 return -EINVAL;
1977
1978 if (!capable(CAP_SYS_ADMIN))
1979 return -EPERM;
1980
Chenbo Feng6e71b042017-10-18 13:00:22 -07001981 f_flags = bpf_get_file_flag(attr->open_flags);
1982 if (f_flags < 0)
1983 return f_flags;
1984
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001985 spin_lock_bh(&map_idr_lock);
1986 map = idr_find(&map_idr, id);
1987 if (map)
1988 map = bpf_map_inc_not_zero(map, true);
1989 else
1990 map = ERR_PTR(-ENOENT);
1991 spin_unlock_bh(&map_idr_lock);
1992
1993 if (IS_ERR(map))
1994 return PTR_ERR(map);
1995
Chenbo Feng6e71b042017-10-18 13:00:22 -07001996 fd = bpf_map_new_fd(map, f_flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001997 if (fd < 0)
1998 bpf_map_put(map);
1999
2000 return fd;
2001}
2002
Daniel Borkmann7105e822017-12-20 13:42:57 +01002003static const struct bpf_map *bpf_map_from_imm(const struct bpf_prog *prog,
2004 unsigned long addr)
2005{
2006 int i;
2007
2008 for (i = 0; i < prog->aux->used_map_cnt; i++)
2009 if (prog->aux->used_maps[i] == (void *)addr)
2010 return prog->aux->used_maps[i];
2011 return NULL;
2012}
2013
2014static struct bpf_insn *bpf_insn_prepare_dump(const struct bpf_prog *prog)
2015{
2016 const struct bpf_map *map;
2017 struct bpf_insn *insns;
2018 u64 imm;
2019 int i;
2020
2021 insns = kmemdup(prog->insnsi, bpf_prog_insn_size(prog),
2022 GFP_USER);
2023 if (!insns)
2024 return insns;
2025
2026 for (i = 0; i < prog->len; i++) {
2027 if (insns[i].code == (BPF_JMP | BPF_TAIL_CALL)) {
2028 insns[i].code = BPF_JMP | BPF_CALL;
2029 insns[i].imm = BPF_FUNC_tail_call;
2030 /* fall-through */
2031 }
2032 if (insns[i].code == (BPF_JMP | BPF_CALL) ||
2033 insns[i].code == (BPF_JMP | BPF_CALL_ARGS)) {
2034 if (insns[i].code == (BPF_JMP | BPF_CALL_ARGS))
2035 insns[i].code = BPF_JMP | BPF_CALL;
2036 if (!bpf_dump_raw_ok())
2037 insns[i].imm = 0;
2038 continue;
2039 }
2040
2041 if (insns[i].code != (BPF_LD | BPF_IMM | BPF_DW))
2042 continue;
2043
2044 imm = ((u64)insns[i + 1].imm << 32) | (u32)insns[i].imm;
2045 map = bpf_map_from_imm(prog, imm);
2046 if (map) {
2047 insns[i].src_reg = BPF_PSEUDO_MAP_FD;
2048 insns[i].imm = map->id;
2049 insns[i + 1].imm = 0;
2050 continue;
2051 }
Daniel Borkmann7105e822017-12-20 13:42:57 +01002052 }
2053
2054 return insns;
2055}
2056
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002057static int set_info_rec_size(struct bpf_prog_info *info)
2058{
2059 /*
2060 * Ensure info.*_rec_size is the same as kernel expected size
2061 *
2062 * or
2063 *
2064 * Only allow zero *_rec_size if both _rec_size and _cnt are
2065 * zero. In this case, the kernel will set the expected
2066 * _rec_size back to the info.
2067 */
2068
Yonghong Song11d8b822018-12-10 14:14:08 -08002069 if ((info->nr_func_info || info->func_info_rec_size) &&
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002070 info->func_info_rec_size != sizeof(struct bpf_func_info))
2071 return -EINVAL;
2072
Yonghong Song11d8b822018-12-10 14:14:08 -08002073 if ((info->nr_line_info || info->line_info_rec_size) &&
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002074 info->line_info_rec_size != sizeof(struct bpf_line_info))
2075 return -EINVAL;
2076
Yonghong Song11d8b822018-12-10 14:14:08 -08002077 if ((info->nr_jited_line_info || info->jited_line_info_rec_size) &&
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002078 info->jited_line_info_rec_size != sizeof(__u64))
2079 return -EINVAL;
2080
2081 info->func_info_rec_size = sizeof(struct bpf_func_info);
2082 info->line_info_rec_size = sizeof(struct bpf_line_info);
2083 info->jited_line_info_rec_size = sizeof(__u64);
2084
2085 return 0;
2086}
2087
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002088static int bpf_prog_get_info_by_fd(struct bpf_prog *prog,
2089 const union bpf_attr *attr,
2090 union bpf_attr __user *uattr)
2091{
2092 struct bpf_prog_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2093 struct bpf_prog_info info = {};
2094 u32 info_len = attr->info.info_len;
2095 char __user *uinsns;
2096 u32 ulen;
2097 int err;
2098
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002099 err = bpf_check_uarg_tail_zero(uinfo, sizeof(info), info_len);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002100 if (err)
2101 return err;
2102 info_len = min_t(u32, sizeof(info), info_len);
2103
2104 if (copy_from_user(&info, uinfo, info_len))
Daniel Borkmann89b09682017-07-27 21:02:46 +02002105 return -EFAULT;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002106
2107 info.type = prog->type;
2108 info.id = prog->aux->id;
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07002109 info.load_time = prog->aux->load_time;
2110 info.created_by_uid = from_kuid_munged(current_user_ns(),
2111 prog->aux->user->uid);
Jiri Olsab85fab02018-04-25 19:41:06 +02002112 info.gpl_compatible = prog->gpl_compatible;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002113
2114 memcpy(info.tag, prog->tag, sizeof(prog->tag));
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07002115 memcpy(info.name, prog->aux->name, sizeof(prog->aux->name));
2116
2117 ulen = info.nr_map_ids;
2118 info.nr_map_ids = prog->aux->used_map_cnt;
2119 ulen = min_t(u32, info.nr_map_ids, ulen);
2120 if (ulen) {
Martin KaFai Lau721e08d2017-09-29 10:52:17 -07002121 u32 __user *user_map_ids = u64_to_user_ptr(info.map_ids);
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07002122 u32 i;
2123
2124 for (i = 0; i < ulen; i++)
2125 if (put_user(prog->aux->used_maps[i]->id,
2126 &user_map_ids[i]))
2127 return -EFAULT;
2128 }
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002129
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002130 err = set_info_rec_size(&info);
2131 if (err)
2132 return err;
Martin KaFai Lau73372242018-12-05 17:35:43 -08002133
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002134 if (!capable(CAP_SYS_ADMIN)) {
2135 info.jited_prog_len = 0;
2136 info.xlated_prog_len = 0;
Sandipan Dasdbecd732018-05-24 12:26:48 +05302137 info.nr_jited_ksyms = 0;
Daniel Borkmann28c2fae2018-11-02 11:35:46 +01002138 info.nr_jited_func_lens = 0;
Yonghong Song11d8b822018-12-10 14:14:08 -08002139 info.nr_func_info = 0;
2140 info.nr_line_info = 0;
2141 info.nr_jited_line_info = 0;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002142 goto done;
2143 }
2144
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002145 ulen = info.xlated_prog_len;
Daniel Borkmann9975a542017-07-28 17:05:25 +02002146 info.xlated_prog_len = bpf_prog_insn_size(prog);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002147 if (info.xlated_prog_len && ulen) {
Daniel Borkmann7105e822017-12-20 13:42:57 +01002148 struct bpf_insn *insns_sanitized;
2149 bool fault;
2150
2151 if (prog->blinded && !bpf_dump_raw_ok()) {
2152 info.xlated_prog_insns = 0;
2153 goto done;
2154 }
2155 insns_sanitized = bpf_insn_prepare_dump(prog);
2156 if (!insns_sanitized)
2157 return -ENOMEM;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002158 uinsns = u64_to_user_ptr(info.xlated_prog_insns);
2159 ulen = min_t(u32, info.xlated_prog_len, ulen);
Daniel Borkmann7105e822017-12-20 13:42:57 +01002160 fault = copy_to_user(uinsns, insns_sanitized, ulen);
2161 kfree(insns_sanitized);
2162 if (fault)
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002163 return -EFAULT;
2164 }
2165
Jakub Kicinski675fc272017-12-27 18:39:09 -08002166 if (bpf_prog_is_dev_bound(prog->aux)) {
2167 err = bpf_prog_offload_info_fill(&info, prog);
2168 if (err)
2169 return err;
Jiong Wangfcfb1262018-01-16 16:05:19 -08002170 goto done;
2171 }
2172
2173 /* NOTE: the following code is supposed to be skipped for offload.
2174 * bpf_prog_offload_info_fill() is the place to fill similar fields
2175 * for offload.
2176 */
2177 ulen = info.jited_prog_len;
Sandipan Das4d56a762018-05-24 12:26:51 +05302178 if (prog->aux->func_cnt) {
2179 u32 i;
2180
2181 info.jited_prog_len = 0;
2182 for (i = 0; i < prog->aux->func_cnt; i++)
2183 info.jited_prog_len += prog->aux->func[i]->jited_len;
2184 } else {
2185 info.jited_prog_len = prog->jited_len;
2186 }
2187
Jiong Wangfcfb1262018-01-16 16:05:19 -08002188 if (info.jited_prog_len && ulen) {
2189 if (bpf_dump_raw_ok()) {
2190 uinsns = u64_to_user_ptr(info.jited_prog_insns);
2191 ulen = min_t(u32, info.jited_prog_len, ulen);
Sandipan Das4d56a762018-05-24 12:26:51 +05302192
2193 /* for multi-function programs, copy the JITed
2194 * instructions for all the functions
2195 */
2196 if (prog->aux->func_cnt) {
2197 u32 len, free, i;
2198 u8 *img;
2199
2200 free = ulen;
2201 for (i = 0; i < prog->aux->func_cnt; i++) {
2202 len = prog->aux->func[i]->jited_len;
2203 len = min_t(u32, len, free);
2204 img = (u8 *) prog->aux->func[i]->bpf_func;
2205 if (copy_to_user(uinsns, img, len))
2206 return -EFAULT;
2207 uinsns += len;
2208 free -= len;
2209 if (!free)
2210 break;
2211 }
2212 } else {
2213 if (copy_to_user(uinsns, prog->bpf_func, ulen))
2214 return -EFAULT;
2215 }
Jiong Wangfcfb1262018-01-16 16:05:19 -08002216 } else {
2217 info.jited_prog_insns = 0;
2218 }
Jakub Kicinski675fc272017-12-27 18:39:09 -08002219 }
2220
Sandipan Dasdbecd732018-05-24 12:26:48 +05302221 ulen = info.nr_jited_ksyms;
Song Liuff1889f2018-11-02 10:16:17 -07002222 info.nr_jited_ksyms = prog->aux->func_cnt ? : 1;
Song Liu7a5725d2018-12-10 11:17:50 -08002223 if (ulen) {
Sandipan Dasdbecd732018-05-24 12:26:48 +05302224 if (bpf_dump_raw_ok()) {
Song Liuff1889f2018-11-02 10:16:17 -07002225 unsigned long ksym_addr;
Sandipan Dasdbecd732018-05-24 12:26:48 +05302226 u64 __user *user_ksyms;
Sandipan Dasdbecd732018-05-24 12:26:48 +05302227 u32 i;
2228
2229 /* copy the address of the kernel symbol
2230 * corresponding to each function
2231 */
2232 ulen = min_t(u32, info.nr_jited_ksyms, ulen);
2233 user_ksyms = u64_to_user_ptr(info.jited_ksyms);
Song Liuff1889f2018-11-02 10:16:17 -07002234 if (prog->aux->func_cnt) {
2235 for (i = 0; i < ulen; i++) {
2236 ksym_addr = (unsigned long)
2237 prog->aux->func[i]->bpf_func;
2238 if (put_user((u64) ksym_addr,
2239 &user_ksyms[i]))
2240 return -EFAULT;
2241 }
2242 } else {
2243 ksym_addr = (unsigned long) prog->bpf_func;
2244 if (put_user((u64) ksym_addr, &user_ksyms[0]))
Sandipan Dasdbecd732018-05-24 12:26:48 +05302245 return -EFAULT;
2246 }
2247 } else {
2248 info.jited_ksyms = 0;
2249 }
2250 }
2251
Sandipan Das815581c2018-05-24 12:26:52 +05302252 ulen = info.nr_jited_func_lens;
Song Liuff1889f2018-11-02 10:16:17 -07002253 info.nr_jited_func_lens = prog->aux->func_cnt ? : 1;
Song Liu7a5725d2018-12-10 11:17:50 -08002254 if (ulen) {
Sandipan Das815581c2018-05-24 12:26:52 +05302255 if (bpf_dump_raw_ok()) {
2256 u32 __user *user_lens;
2257 u32 func_len, i;
2258
2259 /* copy the JITed image lengths for each function */
2260 ulen = min_t(u32, info.nr_jited_func_lens, ulen);
2261 user_lens = u64_to_user_ptr(info.jited_func_lens);
Song Liuff1889f2018-11-02 10:16:17 -07002262 if (prog->aux->func_cnt) {
2263 for (i = 0; i < ulen; i++) {
2264 func_len =
2265 prog->aux->func[i]->jited_len;
2266 if (put_user(func_len, &user_lens[i]))
2267 return -EFAULT;
2268 }
2269 } else {
2270 func_len = prog->jited_len;
2271 if (put_user(func_len, &user_lens[0]))
Sandipan Das815581c2018-05-24 12:26:52 +05302272 return -EFAULT;
2273 }
2274 } else {
2275 info.jited_func_lens = 0;
2276 }
2277 }
2278
Martin KaFai Lau73372242018-12-05 17:35:43 -08002279 if (prog->aux->btf)
Yonghong Song838e9692018-11-19 15:29:11 -08002280 info.btf_id = btf_id(prog->aux->btf);
2281
Yonghong Song11d8b822018-12-10 14:14:08 -08002282 ulen = info.nr_func_info;
2283 info.nr_func_info = prog->aux->func_info_cnt;
2284 if (info.nr_func_info && ulen) {
Martin KaFai Lau9e794162018-12-12 10:18:21 -08002285 char __user *user_finfo;
Yonghong Song838e9692018-11-19 15:29:11 -08002286
Martin KaFai Lau9e794162018-12-12 10:18:21 -08002287 user_finfo = u64_to_user_ptr(info.func_info);
2288 ulen = min_t(u32, info.nr_func_info, ulen);
2289 if (copy_to_user(user_finfo, prog->aux->func_info,
2290 info.func_info_rec_size * ulen))
2291 return -EFAULT;
Yonghong Song838e9692018-11-19 15:29:11 -08002292 }
2293
Yonghong Song11d8b822018-12-10 14:14:08 -08002294 ulen = info.nr_line_info;
2295 info.nr_line_info = prog->aux->nr_linfo;
2296 if (info.nr_line_info && ulen) {
Martin KaFai Lau9e794162018-12-12 10:18:21 -08002297 __u8 __user *user_linfo;
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002298
Martin KaFai Lau9e794162018-12-12 10:18:21 -08002299 user_linfo = u64_to_user_ptr(info.line_info);
2300 ulen = min_t(u32, info.nr_line_info, ulen);
2301 if (copy_to_user(user_linfo, prog->aux->linfo,
2302 info.line_info_rec_size * ulen))
2303 return -EFAULT;
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002304 }
2305
Yonghong Song11d8b822018-12-10 14:14:08 -08002306 ulen = info.nr_jited_line_info;
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002307 if (prog->aux->jited_linfo)
Yonghong Song11d8b822018-12-10 14:14:08 -08002308 info.nr_jited_line_info = prog->aux->nr_linfo;
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002309 else
Yonghong Song11d8b822018-12-10 14:14:08 -08002310 info.nr_jited_line_info = 0;
2311 if (info.nr_jited_line_info && ulen) {
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002312 if (bpf_dump_raw_ok()) {
2313 __u64 __user *user_linfo;
2314 u32 i;
2315
2316 user_linfo = u64_to_user_ptr(info.jited_line_info);
Yonghong Song11d8b822018-12-10 14:14:08 -08002317 ulen = min_t(u32, info.nr_jited_line_info, ulen);
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002318 for (i = 0; i < ulen; i++) {
2319 if (put_user((__u64)(long)prog->aux->jited_linfo[i],
2320 &user_linfo[i]))
2321 return -EFAULT;
2322 }
2323 } else {
2324 info.jited_line_info = 0;
2325 }
2326 }
2327
Song Liuc872bdb2018-12-12 09:37:46 -08002328 ulen = info.nr_prog_tags;
2329 info.nr_prog_tags = prog->aux->func_cnt ? : 1;
2330 if (ulen) {
2331 __u8 __user (*user_prog_tags)[BPF_TAG_SIZE];
2332 u32 i;
2333
2334 user_prog_tags = u64_to_user_ptr(info.prog_tags);
2335 ulen = min_t(u32, info.nr_prog_tags, ulen);
2336 if (prog->aux->func_cnt) {
2337 for (i = 0; i < ulen; i++) {
2338 if (copy_to_user(user_prog_tags[i],
2339 prog->aux->func[i]->tag,
2340 BPF_TAG_SIZE))
2341 return -EFAULT;
2342 }
2343 } else {
2344 if (copy_to_user(user_prog_tags[0],
2345 prog->tag, BPF_TAG_SIZE))
2346 return -EFAULT;
2347 }
2348 }
2349
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002350done:
2351 if (copy_to_user(uinfo, &info, info_len) ||
2352 put_user(info_len, &uattr->info.info_len))
2353 return -EFAULT;
2354
2355 return 0;
2356}
2357
2358static int bpf_map_get_info_by_fd(struct bpf_map *map,
2359 const union bpf_attr *attr,
2360 union bpf_attr __user *uattr)
2361{
2362 struct bpf_map_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2363 struct bpf_map_info info = {};
2364 u32 info_len = attr->info.info_len;
2365 int err;
2366
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002367 err = bpf_check_uarg_tail_zero(uinfo, sizeof(info), info_len);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002368 if (err)
2369 return err;
2370 info_len = min_t(u32, sizeof(info), info_len);
2371
2372 info.type = map->map_type;
2373 info.id = map->id;
2374 info.key_size = map->key_size;
2375 info.value_size = map->value_size;
2376 info.max_entries = map->max_entries;
2377 info.map_flags = map->map_flags;
Martin KaFai Lauad5b1772017-09-27 14:37:53 -07002378 memcpy(info.name, map->name, sizeof(map->name));
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002379
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002380 if (map->btf) {
2381 info.btf_id = btf_id(map->btf);
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -07002382 info.btf_key_type_id = map->btf_key_type_id;
2383 info.btf_value_type_id = map->btf_value_type_id;
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002384 }
2385
Jakub Kicinski52775b32018-01-17 19:13:28 -08002386 if (bpf_map_is_dev_bound(map)) {
2387 err = bpf_map_offload_info_fill(&info, map);
2388 if (err)
2389 return err;
2390 }
2391
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002392 if (copy_to_user(uinfo, &info, info_len) ||
2393 put_user(info_len, &uattr->info.info_len))
2394 return -EFAULT;
2395
2396 return 0;
2397}
2398
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002399static int bpf_btf_get_info_by_fd(struct btf *btf,
2400 const union bpf_attr *attr,
2401 union bpf_attr __user *uattr)
2402{
2403 struct bpf_btf_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2404 u32 info_len = attr->info.info_len;
2405 int err;
2406
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002407 err = bpf_check_uarg_tail_zero(uinfo, sizeof(*uinfo), info_len);
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002408 if (err)
2409 return err;
2410
2411 return btf_get_info_by_fd(btf, attr, uattr);
2412}
2413
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002414#define BPF_OBJ_GET_INFO_BY_FD_LAST_FIELD info.info
2415
2416static int bpf_obj_get_info_by_fd(const union bpf_attr *attr,
2417 union bpf_attr __user *uattr)
2418{
2419 int ufd = attr->info.bpf_fd;
2420 struct fd f;
2421 int err;
2422
2423 if (CHECK_ATTR(BPF_OBJ_GET_INFO_BY_FD))
2424 return -EINVAL;
2425
2426 f = fdget(ufd);
2427 if (!f.file)
2428 return -EBADFD;
2429
2430 if (f.file->f_op == &bpf_prog_fops)
2431 err = bpf_prog_get_info_by_fd(f.file->private_data, attr,
2432 uattr);
2433 else if (f.file->f_op == &bpf_map_fops)
2434 err = bpf_map_get_info_by_fd(f.file->private_data, attr,
2435 uattr);
Martin KaFai Lau60197cf2018-04-18 15:56:02 -07002436 else if (f.file->f_op == &btf_fops)
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002437 err = bpf_btf_get_info_by_fd(f.file->private_data, attr, uattr);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002438 else
2439 err = -EINVAL;
2440
2441 fdput(f);
2442 return err;
2443}
2444
Martin KaFai Lauf56a6532018-04-18 15:56:01 -07002445#define BPF_BTF_LOAD_LAST_FIELD btf_log_level
2446
2447static int bpf_btf_load(const union bpf_attr *attr)
2448{
2449 if (CHECK_ATTR(BPF_BTF_LOAD))
2450 return -EINVAL;
2451
2452 if (!capable(CAP_SYS_ADMIN))
2453 return -EPERM;
2454
2455 return btf_new_fd(attr);
2456}
2457
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002458#define BPF_BTF_GET_FD_BY_ID_LAST_FIELD btf_id
2459
2460static int bpf_btf_get_fd_by_id(const union bpf_attr *attr)
2461{
2462 if (CHECK_ATTR(BPF_BTF_GET_FD_BY_ID))
2463 return -EINVAL;
2464
2465 if (!capable(CAP_SYS_ADMIN))
2466 return -EPERM;
2467
2468 return btf_get_fd_by_id(attr->btf_id);
2469}
2470
Yonghong Song41bdc4b2018-05-24 11:21:09 -07002471static int bpf_task_fd_query_copy(const union bpf_attr *attr,
2472 union bpf_attr __user *uattr,
2473 u32 prog_id, u32 fd_type,
2474 const char *buf, u64 probe_offset,
2475 u64 probe_addr)
2476{
2477 char __user *ubuf = u64_to_user_ptr(attr->task_fd_query.buf);
2478 u32 len = buf ? strlen(buf) : 0, input_len;
2479 int err = 0;
2480
2481 if (put_user(len, &uattr->task_fd_query.buf_len))
2482 return -EFAULT;
2483 input_len = attr->task_fd_query.buf_len;
2484 if (input_len && ubuf) {
2485 if (!len) {
2486 /* nothing to copy, just make ubuf NULL terminated */
2487 char zero = '\0';
2488
2489 if (put_user(zero, ubuf))
2490 return -EFAULT;
2491 } else if (input_len >= len + 1) {
2492 /* ubuf can hold the string with NULL terminator */
2493 if (copy_to_user(ubuf, buf, len + 1))
2494 return -EFAULT;
2495 } else {
2496 /* ubuf cannot hold the string with NULL terminator,
2497 * do a partial copy with NULL terminator.
2498 */
2499 char zero = '\0';
2500
2501 err = -ENOSPC;
2502 if (copy_to_user(ubuf, buf, input_len - 1))
2503 return -EFAULT;
2504 if (put_user(zero, ubuf + input_len - 1))
2505 return -EFAULT;
2506 }
2507 }
2508
2509 if (put_user(prog_id, &uattr->task_fd_query.prog_id) ||
2510 put_user(fd_type, &uattr->task_fd_query.fd_type) ||
2511 put_user(probe_offset, &uattr->task_fd_query.probe_offset) ||
2512 put_user(probe_addr, &uattr->task_fd_query.probe_addr))
2513 return -EFAULT;
2514
2515 return err;
2516}
2517
2518#define BPF_TASK_FD_QUERY_LAST_FIELD task_fd_query.probe_addr
2519
2520static int bpf_task_fd_query(const union bpf_attr *attr,
2521 union bpf_attr __user *uattr)
2522{
2523 pid_t pid = attr->task_fd_query.pid;
2524 u32 fd = attr->task_fd_query.fd;
2525 const struct perf_event *event;
2526 struct files_struct *files;
2527 struct task_struct *task;
2528 struct file *file;
2529 int err;
2530
2531 if (CHECK_ATTR(BPF_TASK_FD_QUERY))
2532 return -EINVAL;
2533
2534 if (!capable(CAP_SYS_ADMIN))
2535 return -EPERM;
2536
2537 if (attr->task_fd_query.flags != 0)
2538 return -EINVAL;
2539
2540 task = get_pid_task(find_vpid(pid), PIDTYPE_PID);
2541 if (!task)
2542 return -ENOENT;
2543
2544 files = get_files_struct(task);
2545 put_task_struct(task);
2546 if (!files)
2547 return -ENOENT;
2548
2549 err = 0;
2550 spin_lock(&files->file_lock);
2551 file = fcheck_files(files, fd);
2552 if (!file)
2553 err = -EBADF;
2554 else
2555 get_file(file);
2556 spin_unlock(&files->file_lock);
2557 put_files_struct(files);
2558
2559 if (err)
2560 goto out;
2561
2562 if (file->f_op == &bpf_raw_tp_fops) {
2563 struct bpf_raw_tracepoint *raw_tp = file->private_data;
2564 struct bpf_raw_event_map *btp = raw_tp->btp;
2565
2566 err = bpf_task_fd_query_copy(attr, uattr,
2567 raw_tp->prog->aux->id,
2568 BPF_FD_TYPE_RAW_TRACEPOINT,
2569 btp->tp->name, 0, 0);
2570 goto put_file;
2571 }
2572
2573 event = perf_get_event(file);
2574 if (!IS_ERR(event)) {
2575 u64 probe_offset, probe_addr;
2576 u32 prog_id, fd_type;
2577 const char *buf;
2578
2579 err = bpf_get_perf_event_info(event, &prog_id, &fd_type,
2580 &buf, &probe_offset,
2581 &probe_addr);
2582 if (!err)
2583 err = bpf_task_fd_query_copy(attr, uattr, prog_id,
2584 fd_type, buf,
2585 probe_offset,
2586 probe_addr);
2587 goto put_file;
2588 }
2589
2590 err = -ENOTSUPP;
2591put_file:
2592 fput(file);
2593out:
2594 return err;
2595}
2596
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002597SYSCALL_DEFINE3(bpf, int, cmd, union bpf_attr __user *, uattr, unsigned int, size)
2598{
2599 union bpf_attr attr = {};
2600 int err;
2601
Chenbo Feng0fa4fe82018-03-19 17:57:27 -07002602 if (sysctl_unprivileged_bpf_disabled && !capable(CAP_SYS_ADMIN))
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002603 return -EPERM;
2604
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002605 err = bpf_check_uarg_tail_zero(uattr, sizeof(attr), size);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002606 if (err)
2607 return err;
2608 size = min_t(u32, size, sizeof(attr));
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002609
2610 /* copy attributes from user space, may be less than sizeof(bpf_attr) */
2611 if (copy_from_user(&attr, uattr, size) != 0)
2612 return -EFAULT;
2613
Chenbo Fengafdb09c2017-10-18 13:00:24 -07002614 err = security_bpf(cmd, &attr, size);
2615 if (err < 0)
2616 return err;
2617
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002618 switch (cmd) {
2619 case BPF_MAP_CREATE:
2620 err = map_create(&attr);
2621 break;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -07002622 case BPF_MAP_LOOKUP_ELEM:
2623 err = map_lookup_elem(&attr);
2624 break;
2625 case BPF_MAP_UPDATE_ELEM:
2626 err = map_update_elem(&attr);
2627 break;
2628 case BPF_MAP_DELETE_ELEM:
2629 err = map_delete_elem(&attr);
2630 break;
2631 case BPF_MAP_GET_NEXT_KEY:
2632 err = map_get_next_key(&attr);
2633 break;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07002634 case BPF_PROG_LOAD:
Yonghong Song838e9692018-11-19 15:29:11 -08002635 err = bpf_prog_load(&attr, uattr);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07002636 break;
Daniel Borkmannb2197752015-10-29 14:58:09 +01002637 case BPF_OBJ_PIN:
2638 err = bpf_obj_pin(&attr);
2639 break;
2640 case BPF_OBJ_GET:
2641 err = bpf_obj_get(&attr);
2642 break;
Daniel Mackf4324552016-11-23 16:52:27 +01002643 case BPF_PROG_ATTACH:
2644 err = bpf_prog_attach(&attr);
2645 break;
2646 case BPF_PROG_DETACH:
2647 err = bpf_prog_detach(&attr);
2648 break;
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07002649 case BPF_PROG_QUERY:
2650 err = bpf_prog_query(&attr, uattr);
2651 break;
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07002652 case BPF_PROG_TEST_RUN:
2653 err = bpf_prog_test_run(&attr, uattr);
2654 break;
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07002655 case BPF_PROG_GET_NEXT_ID:
2656 err = bpf_obj_get_next_id(&attr, uattr,
2657 &prog_idr, &prog_idr_lock);
2658 break;
2659 case BPF_MAP_GET_NEXT_ID:
2660 err = bpf_obj_get_next_id(&attr, uattr,
2661 &map_idr, &map_idr_lock);
2662 break;
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07002663 case BPF_PROG_GET_FD_BY_ID:
2664 err = bpf_prog_get_fd_by_id(&attr);
2665 break;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07002666 case BPF_MAP_GET_FD_BY_ID:
2667 err = bpf_map_get_fd_by_id(&attr);
2668 break;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002669 case BPF_OBJ_GET_INFO_BY_FD:
2670 err = bpf_obj_get_info_by_fd(&attr, uattr);
2671 break;
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07002672 case BPF_RAW_TRACEPOINT_OPEN:
2673 err = bpf_raw_tracepoint_open(&attr);
2674 break;
Martin KaFai Lauf56a6532018-04-18 15:56:01 -07002675 case BPF_BTF_LOAD:
2676 err = bpf_btf_load(&attr);
2677 break;
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002678 case BPF_BTF_GET_FD_BY_ID:
2679 err = bpf_btf_get_fd_by_id(&attr);
2680 break;
Yonghong Song41bdc4b2018-05-24 11:21:09 -07002681 case BPF_TASK_FD_QUERY:
2682 err = bpf_task_fd_query(&attr, uattr);
2683 break;
Mauricio Vasquez Bbd513cd2018-10-18 15:16:30 +02002684 case BPF_MAP_LOOKUP_AND_DELETE_ELEM:
2685 err = map_lookup_and_delete_elem(&attr);
2686 break;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002687 default:
2688 err = -EINVAL;
2689 break;
2690 }
2691
2692 return err;
2693}