blob: ec7c552af76bccd24082a10401f43bd5d83146cf [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 &&
Alexei Starovoitove16d2f12019-01-31 15:40:05 -0800485 map->map_type != BPF_MAP_TYPE_ARRAY &&
486 map->map_type != BPF_MAP_TYPE_CGROUP_STORAGE)
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800487 return -ENOTSUPP;
488 if (map->spin_lock_off + sizeof(struct bpf_spin_lock) >
489 map->value_size) {
490 WARN_ONCE(1,
491 "verifier bug spin_lock_off %d value_size %d\n",
492 map->spin_lock_off, map->value_size);
493 return -EFAULT;
494 }
495 }
496
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200497 if (map->ops->map_check_btf)
Roman Gushchin1b2b2342018-12-10 15:43:00 -0800498 ret = map->ops->map_check_btf(map, btf, key_type, value_type);
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200499
500 return ret;
501}
502
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700503#define BPF_MAP_CREATE_LAST_FIELD btf_value_type_id
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700504/* called via syscall */
505static int map_create(union bpf_attr *attr)
506{
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700507 int numa_node = bpf_map_attr_numa_node(attr);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700508 struct bpf_map *map;
Chenbo Feng6e71b042017-10-18 13:00:22 -0700509 int f_flags;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700510 int err;
511
512 err = CHECK_ATTR(BPF_MAP_CREATE);
513 if (err)
514 return -EINVAL;
515
Chenbo Feng6e71b042017-10-18 13:00:22 -0700516 f_flags = bpf_get_file_flag(attr->map_flags);
517 if (f_flags < 0)
518 return f_flags;
519
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700520 if (numa_node != NUMA_NO_NODE &&
Eric Dumazet96e5ae42017-09-04 22:41:02 -0700521 ((unsigned int)numa_node >= nr_node_ids ||
522 !node_online(numa_node)))
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700523 return -EINVAL;
524
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700525 /* find map type and init map: hashtable vs rbtree vs bloom vs ... */
526 map = find_and_alloc_map(attr);
527 if (IS_ERR(map))
528 return PTR_ERR(map);
529
Martin KaFai Lauad5b1772017-09-27 14:37:53 -0700530 err = bpf_obj_name_cpy(map->name, attr->map_name);
531 if (err)
532 goto free_map_nouncharge;
533
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700534 atomic_set(&map->refcnt, 1);
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100535 atomic_set(&map->usercnt, 1);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700536
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200537 if (attr->btf_key_type_id || attr->btf_value_type_id) {
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700538 struct btf *btf;
539
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700540 if (!attr->btf_key_type_id || !attr->btf_value_type_id) {
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700541 err = -EINVAL;
542 goto free_map_nouncharge;
543 }
544
545 btf = btf_get_by_fd(attr->btf_fd);
546 if (IS_ERR(btf)) {
547 err = PTR_ERR(btf);
548 goto free_map_nouncharge;
549 }
550
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200551 err = map_check_btf(map, btf, attr->btf_key_type_id,
552 attr->btf_value_type_id);
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700553 if (err) {
554 btf_put(btf);
555 goto free_map_nouncharge;
556 }
557
558 map->btf = btf;
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700559 map->btf_key_type_id = attr->btf_key_type_id;
560 map->btf_value_type_id = attr->btf_value_type_id;
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800561 } else {
562 map->spin_lock_off = -EINVAL;
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700563 }
564
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700565 err = security_bpf_map_alloc(map);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700566 if (err)
Daniel Borkmann20b2b242016-11-04 00:56:31 +0100567 goto free_map_nouncharge;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700568
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700569 err = bpf_map_init_memlock(map);
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700570 if (err)
571 goto free_map_sec;
572
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700573 err = bpf_map_alloc_id(map);
574 if (err)
575 goto free_map;
576
Chenbo Feng6e71b042017-10-18 13:00:22 -0700577 err = bpf_map_new_fd(map, f_flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700578 if (err < 0) {
579 /* failed to allocate fd.
580 * bpf_map_put() is needed because the above
581 * bpf_map_alloc_id() has published the map
582 * to the userspace and the userspace may
583 * have refcnt-ed it through BPF_MAP_GET_FD_BY_ID.
584 */
585 bpf_map_put(map);
586 return err;
587 }
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700588
589 return err;
590
591free_map:
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700592 bpf_map_release_memlock(map);
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700593free_map_sec:
594 security_bpf_map_free(map);
Daniel Borkmann20b2b242016-11-04 00:56:31 +0100595free_map_nouncharge:
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700596 btf_put(map->btf);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700597 map->ops->map_free(map);
598 return err;
599}
600
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700601/* if error is returned, fd is released.
602 * On success caller should complete fd access with matching fdput()
603 */
Daniel Borkmannc2101292015-10-29 14:58:07 +0100604struct bpf_map *__bpf_map_get(struct fd f)
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700605{
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700606 if (!f.file)
607 return ERR_PTR(-EBADF);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700608 if (f.file->f_op != &bpf_map_fops) {
609 fdput(f);
610 return ERR_PTR(-EINVAL);
611 }
612
Daniel Borkmannc2101292015-10-29 14:58:07 +0100613 return f.file->private_data;
614}
615
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700616/* prog's and map's refcnt limit */
617#define BPF_MAX_REFCNT 32768
618
619struct bpf_map *bpf_map_inc(struct bpf_map *map, bool uref)
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100620{
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700621 if (atomic_inc_return(&map->refcnt) > BPF_MAX_REFCNT) {
622 atomic_dec(&map->refcnt);
623 return ERR_PTR(-EBUSY);
624 }
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100625 if (uref)
626 atomic_inc(&map->usercnt);
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700627 return map;
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100628}
Jakub Kicinski630a4d32018-05-03 18:37:09 -0700629EXPORT_SYMBOL_GPL(bpf_map_inc);
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100630
631struct bpf_map *bpf_map_get_with_uref(u32 ufd)
Daniel Borkmannc2101292015-10-29 14:58:07 +0100632{
633 struct fd f = fdget(ufd);
634 struct bpf_map *map;
635
636 map = __bpf_map_get(f);
637 if (IS_ERR(map))
638 return map;
639
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700640 map = bpf_map_inc(map, true);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100641 fdput(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700642
643 return map;
644}
645
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700646/* map_idr_lock should have been held */
647static struct bpf_map *bpf_map_inc_not_zero(struct bpf_map *map,
648 bool uref)
649{
650 int refold;
651
Mark Rutlandbfc18e32018-06-21 13:13:04 +0100652 refold = atomic_fetch_add_unless(&map->refcnt, 1, 0);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700653
654 if (refold >= BPF_MAX_REFCNT) {
655 __bpf_map_put(map, false);
656 return ERR_PTR(-EBUSY);
657 }
658
659 if (!refold)
660 return ERR_PTR(-ENOENT);
661
662 if (uref)
663 atomic_inc(&map->usercnt);
664
665 return map;
666}
667
Alexei Starovoitovb8cdc052016-03-09 18:56:49 -0800668int __weak bpf_stackmap_copy(struct bpf_map *map, void *key, void *value)
669{
670 return -ENOTSUPP;
671}
672
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +0200673static void *__bpf_copy_key(void __user *ukey, u64 key_size)
674{
675 if (key_size)
676 return memdup_user(ukey, key_size);
677
678 if (ukey)
679 return ERR_PTR(-EINVAL);
680
681 return NULL;
682}
683
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700684/* last field in 'union bpf_attr' used by this command */
Alexei Starovoitov96049f32019-01-31 15:40:09 -0800685#define BPF_MAP_LOOKUP_ELEM_LAST_FIELD flags
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700686
687static int map_lookup_elem(union bpf_attr *attr)
688{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100689 void __user *ukey = u64_to_user_ptr(attr->key);
690 void __user *uvalue = u64_to_user_ptr(attr->value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700691 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700692 struct bpf_map *map;
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800693 void *key, *value, *ptr;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800694 u32 value_size;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200695 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700696 int err;
697
698 if (CHECK_ATTR(BPF_MAP_LOOKUP_ELEM))
699 return -EINVAL;
700
Alexei Starovoitov96049f32019-01-31 15:40:09 -0800701 if (attr->flags & ~BPF_F_LOCK)
702 return -EINVAL;
703
Daniel Borkmann592867b2015-09-08 18:00:09 +0200704 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100705 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700706 if (IS_ERR(map))
707 return PTR_ERR(map);
708
Chenbo Feng6e71b042017-10-18 13:00:22 -0700709 if (!(f.file->f_mode & FMODE_CAN_READ)) {
710 err = -EPERM;
711 goto err_put;
712 }
713
Alexei Starovoitov96049f32019-01-31 15:40:09 -0800714 if ((attr->flags & BPF_F_LOCK) &&
715 !map_value_has_spin_lock(map)) {
716 err = -EINVAL;
717 goto err_put;
718 }
719
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +0200720 key = __bpf_copy_key(ukey, map->key_size);
Al Viroe4448ed2017-05-13 18:43:00 -0400721 if (IS_ERR(key)) {
722 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700723 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400724 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700725
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800726 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800727 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH ||
Roman Gushchinb741f162018-09-28 14:45:43 +0000728 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY ||
729 map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE)
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800730 value_size = round_up(map->value_size, 8) * num_possible_cpus();
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -0700731 else if (IS_FD_MAP(map))
732 value_size = sizeof(u32);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800733 else
734 value_size = map->value_size;
735
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800736 err = -ENOMEM;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800737 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700738 if (!value)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800739 goto free_key;
740
Jakub Kicinskia3884572018-01-11 20:29:09 -0800741 if (bpf_map_is_dev_bound(map)) {
742 err = bpf_map_offload_lookup_elem(map, key, value);
Martin KaFai Lau7c4cd052019-01-30 18:12:45 -0800743 goto done;
744 }
745
746 preempt_disable();
747 this_cpu_inc(bpf_prog_active);
748 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
749 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) {
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800750 err = bpf_percpu_hash_copy(map, key, value);
751 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) {
752 err = bpf_percpu_array_copy(map, key, value);
Roman Gushchinb741f162018-09-28 14:45:43 +0000753 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) {
754 err = bpf_percpu_cgroup_storage_copy(map, key, value);
Alexei Starovoitov557c0c62016-03-07 21:57:17 -0800755 } else if (map->map_type == BPF_MAP_TYPE_STACK_TRACE) {
756 err = bpf_stackmap_copy(map, key, value);
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -0700757 } else if (IS_FD_ARRAY(map)) {
758 err = bpf_fd_array_map_lookup_elem(map, key, value);
759 } else if (IS_FD_HASH(map)) {
760 err = bpf_fd_htab_map_lookup_elem(map, key, value);
Martin KaFai Lau5dc4c4b2018-08-08 01:01:24 -0700761 } else if (map->map_type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY) {
762 err = bpf_fd_reuseport_array_lookup_elem(map, key, value);
Mauricio Vasquez Bf1a2e442018-10-18 15:16:25 +0200763 } else if (map->map_type == BPF_MAP_TYPE_QUEUE ||
764 map->map_type == BPF_MAP_TYPE_STACK) {
765 err = map->ops->map_peek_elem(map, value);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800766 } else {
767 rcu_read_lock();
768 ptr = map->ops->map_lookup_elem(map, key);
Prashant Bhole509db282018-10-09 10:04:49 +0900769 if (IS_ERR(ptr)) {
770 err = PTR_ERR(ptr);
771 } else if (!ptr) {
772 err = -ENOENT;
773 } else {
774 err = 0;
Alexei Starovoitov96049f32019-01-31 15:40:09 -0800775 if (attr->flags & BPF_F_LOCK)
776 /* lock 'ptr' and copy everything but lock */
777 copy_map_value_locked(map, value, ptr, true);
778 else
779 copy_map_value(map, value, ptr);
780 /* mask lock, since value wasn't zero inited */
781 check_and_init_map_lock(map, value);
Prashant Bhole509db282018-10-09 10:04:49 +0900782 }
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800783 rcu_read_unlock();
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800784 }
Martin KaFai Lau7c4cd052019-01-30 18:12:45 -0800785 this_cpu_dec(bpf_prog_active);
786 preempt_enable();
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800787
Martin KaFai Lau7c4cd052019-01-30 18:12:45 -0800788done:
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800789 if (err)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800790 goto free_value;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700791
792 err = -EFAULT;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800793 if (copy_to_user(uvalue, value, value_size) != 0)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800794 goto free_value;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700795
796 err = 0;
797
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800798free_value:
799 kfree(value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700800free_key:
801 kfree(key);
802err_put:
803 fdput(f);
804 return err;
805}
806
Daniel Colascione1ae80cf2018-10-12 03:54:27 -0700807static void maybe_wait_bpf_programs(struct bpf_map *map)
808{
809 /* Wait for any running BPF programs to complete so that
810 * userspace, when we return to it, knows that all programs
811 * that could be running use the new map value.
812 */
813 if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS ||
814 map->map_type == BPF_MAP_TYPE_ARRAY_OF_MAPS)
815 synchronize_rcu();
816}
817
Alexei Starovoitov3274f522014-11-13 17:36:44 -0800818#define BPF_MAP_UPDATE_ELEM_LAST_FIELD flags
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700819
820static int map_update_elem(union bpf_attr *attr)
821{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100822 void __user *ukey = u64_to_user_ptr(attr->key);
823 void __user *uvalue = u64_to_user_ptr(attr->value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700824 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700825 struct bpf_map *map;
826 void *key, *value;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800827 u32 value_size;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200828 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700829 int err;
830
831 if (CHECK_ATTR(BPF_MAP_UPDATE_ELEM))
832 return -EINVAL;
833
Daniel Borkmann592867b2015-09-08 18:00:09 +0200834 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100835 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700836 if (IS_ERR(map))
837 return PTR_ERR(map);
838
Chenbo Feng6e71b042017-10-18 13:00:22 -0700839 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
840 err = -EPERM;
841 goto err_put;
842 }
843
Alexei Starovoitov96049f32019-01-31 15:40:09 -0800844 if ((attr->flags & BPF_F_LOCK) &&
845 !map_value_has_spin_lock(map)) {
846 err = -EINVAL;
847 goto err_put;
848 }
849
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +0200850 key = __bpf_copy_key(ukey, map->key_size);
Al Viroe4448ed2017-05-13 18:43:00 -0400851 if (IS_ERR(key)) {
852 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700853 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400854 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700855
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800856 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800857 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH ||
Roman Gushchinb741f162018-09-28 14:45:43 +0000858 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY ||
859 map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE)
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800860 value_size = round_up(map->value_size, 8) * num_possible_cpus();
861 else
862 value_size = map->value_size;
863
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700864 err = -ENOMEM;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800865 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700866 if (!value)
867 goto free_key;
868
869 err = -EFAULT;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800870 if (copy_from_user(value, uvalue, value_size) != 0)
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700871 goto free_value;
872
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200873 /* Need to create a kthread, thus must support schedule */
Jakub Kicinskia3884572018-01-11 20:29:09 -0800874 if (bpf_map_is_dev_bound(map)) {
875 err = bpf_map_offload_update_elem(map, key, value, attr->flags);
876 goto out;
John Fastabend99ba2b52018-07-05 08:50:04 -0700877 } else if (map->map_type == BPF_MAP_TYPE_CPUMAP ||
878 map->map_type == BPF_MAP_TYPE_SOCKHASH ||
879 map->map_type == BPF_MAP_TYPE_SOCKMAP) {
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200880 err = map->ops->map_update_elem(map, key, value, attr->flags);
881 goto out;
882 }
883
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800884 /* must increment bpf_prog_active to avoid kprobe+bpf triggering from
885 * inside bpf map update or delete otherwise deadlocks are possible
886 */
887 preempt_disable();
888 __this_cpu_inc(bpf_prog_active);
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800889 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
890 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) {
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800891 err = bpf_percpu_hash_update(map, key, value, attr->flags);
892 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) {
893 err = bpf_percpu_array_update(map, key, value, attr->flags);
Roman Gushchinb741f162018-09-28 14:45:43 +0000894 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) {
895 err = bpf_percpu_cgroup_storage_update(map, key, value,
896 attr->flags);
Mickaël Salaün9c147b52018-01-26 00:54:02 +0100897 } else if (IS_FD_ARRAY(map)) {
Daniel Borkmannd056a782016-06-15 22:47:13 +0200898 rcu_read_lock();
899 err = bpf_fd_array_map_update_elem(map, f.file, key, value,
900 attr->flags);
901 rcu_read_unlock();
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700902 } else if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS) {
903 rcu_read_lock();
904 err = bpf_fd_htab_map_update_elem(map, f.file, key, value,
905 attr->flags);
906 rcu_read_unlock();
Martin KaFai Lau5dc4c4b2018-08-08 01:01:24 -0700907 } else if (map->map_type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY) {
908 /* rcu_read_lock() is not needed */
909 err = bpf_fd_reuseport_array_update_elem(map, key, value,
910 attr->flags);
Mauricio Vasquez Bf1a2e442018-10-18 15:16:25 +0200911 } else if (map->map_type == BPF_MAP_TYPE_QUEUE ||
912 map->map_type == BPF_MAP_TYPE_STACK) {
913 err = map->ops->map_push_elem(map, value, attr->flags);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800914 } else {
915 rcu_read_lock();
916 err = map->ops->map_update_elem(map, key, value, attr->flags);
917 rcu_read_unlock();
918 }
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800919 __this_cpu_dec(bpf_prog_active);
920 preempt_enable();
Daniel Colascione1ae80cf2018-10-12 03:54:27 -0700921 maybe_wait_bpf_programs(map);
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200922out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700923free_value:
924 kfree(value);
925free_key:
926 kfree(key);
927err_put:
928 fdput(f);
929 return err;
930}
931
932#define BPF_MAP_DELETE_ELEM_LAST_FIELD key
933
934static int map_delete_elem(union bpf_attr *attr)
935{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100936 void __user *ukey = u64_to_user_ptr(attr->key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700937 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700938 struct bpf_map *map;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200939 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700940 void *key;
941 int err;
942
943 if (CHECK_ATTR(BPF_MAP_DELETE_ELEM))
944 return -EINVAL;
945
Daniel Borkmann592867b2015-09-08 18:00:09 +0200946 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100947 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700948 if (IS_ERR(map))
949 return PTR_ERR(map);
950
Chenbo Feng6e71b042017-10-18 13:00:22 -0700951 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
952 err = -EPERM;
953 goto err_put;
954 }
955
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +0200956 key = __bpf_copy_key(ukey, map->key_size);
Al Viroe4448ed2017-05-13 18:43:00 -0400957 if (IS_ERR(key)) {
958 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700959 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400960 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700961
Jakub Kicinskia3884572018-01-11 20:29:09 -0800962 if (bpf_map_is_dev_bound(map)) {
963 err = bpf_map_offload_delete_elem(map, key);
964 goto out;
965 }
966
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800967 preempt_disable();
968 __this_cpu_inc(bpf_prog_active);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700969 rcu_read_lock();
970 err = map->ops->map_delete_elem(map, key);
971 rcu_read_unlock();
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800972 __this_cpu_dec(bpf_prog_active);
973 preempt_enable();
Daniel Colascione1ae80cf2018-10-12 03:54:27 -0700974 maybe_wait_bpf_programs(map);
Jakub Kicinskia3884572018-01-11 20:29:09 -0800975out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700976 kfree(key);
977err_put:
978 fdput(f);
979 return err;
980}
981
982/* last field in 'union bpf_attr' used by this command */
983#define BPF_MAP_GET_NEXT_KEY_LAST_FIELD next_key
984
985static int map_get_next_key(union bpf_attr *attr)
986{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100987 void __user *ukey = u64_to_user_ptr(attr->key);
988 void __user *unext_key = u64_to_user_ptr(attr->next_key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700989 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700990 struct bpf_map *map;
991 void *key, *next_key;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200992 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700993 int err;
994
995 if (CHECK_ATTR(BPF_MAP_GET_NEXT_KEY))
996 return -EINVAL;
997
Daniel Borkmann592867b2015-09-08 18:00:09 +0200998 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100999 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -07001000 if (IS_ERR(map))
1001 return PTR_ERR(map);
1002
Chenbo Feng6e71b042017-10-18 13:00:22 -07001003 if (!(f.file->f_mode & FMODE_CAN_READ)) {
1004 err = -EPERM;
1005 goto err_put;
1006 }
1007
Teng Qin8fe45922017-04-24 19:00:37 -07001008 if (ukey) {
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +02001009 key = __bpf_copy_key(ukey, map->key_size);
Al Viroe4448ed2017-05-13 18:43:00 -04001010 if (IS_ERR(key)) {
1011 err = PTR_ERR(key);
Teng Qin8fe45922017-04-24 19:00:37 -07001012 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -04001013 }
Teng Qin8fe45922017-04-24 19:00:37 -07001014 } else {
1015 key = NULL;
1016 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -07001017
1018 err = -ENOMEM;
1019 next_key = kmalloc(map->key_size, GFP_USER);
1020 if (!next_key)
1021 goto free_key;
1022
Jakub Kicinskia3884572018-01-11 20:29:09 -08001023 if (bpf_map_is_dev_bound(map)) {
1024 err = bpf_map_offload_get_next_key(map, key, next_key);
1025 goto out;
1026 }
1027
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -07001028 rcu_read_lock();
1029 err = map->ops->map_get_next_key(map, key, next_key);
1030 rcu_read_unlock();
Jakub Kicinskia3884572018-01-11 20:29:09 -08001031out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -07001032 if (err)
1033 goto free_next_key;
1034
1035 err = -EFAULT;
1036 if (copy_to_user(unext_key, next_key, map->key_size) != 0)
1037 goto free_next_key;
1038
1039 err = 0;
1040
1041free_next_key:
1042 kfree(next_key);
1043free_key:
1044 kfree(key);
1045err_put:
1046 fdput(f);
1047 return err;
1048}
1049
Mauricio Vasquez Bbd513cd2018-10-18 15:16:30 +02001050#define BPF_MAP_LOOKUP_AND_DELETE_ELEM_LAST_FIELD value
1051
1052static int map_lookup_and_delete_elem(union bpf_attr *attr)
1053{
1054 void __user *ukey = u64_to_user_ptr(attr->key);
1055 void __user *uvalue = u64_to_user_ptr(attr->value);
1056 int ufd = attr->map_fd;
1057 struct bpf_map *map;
Alexei Starovoitov540fefc2018-10-19 13:52:38 -07001058 void *key, *value;
Mauricio Vasquez Bbd513cd2018-10-18 15:16:30 +02001059 u32 value_size;
1060 struct fd f;
1061 int err;
1062
1063 if (CHECK_ATTR(BPF_MAP_LOOKUP_AND_DELETE_ELEM))
1064 return -EINVAL;
1065
1066 f = fdget(ufd);
1067 map = __bpf_map_get(f);
1068 if (IS_ERR(map))
1069 return PTR_ERR(map);
1070
1071 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
1072 err = -EPERM;
1073 goto err_put;
1074 }
1075
1076 key = __bpf_copy_key(ukey, map->key_size);
1077 if (IS_ERR(key)) {
1078 err = PTR_ERR(key);
1079 goto err_put;
1080 }
1081
1082 value_size = map->value_size;
1083
1084 err = -ENOMEM;
1085 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
1086 if (!value)
1087 goto free_key;
1088
1089 if (map->map_type == BPF_MAP_TYPE_QUEUE ||
1090 map->map_type == BPF_MAP_TYPE_STACK) {
1091 err = map->ops->map_pop_elem(map, value);
1092 } else {
1093 err = -ENOTSUPP;
1094 }
1095
1096 if (err)
1097 goto free_value;
1098
1099 if (copy_to_user(uvalue, value, value_size) != 0)
1100 goto free_value;
1101
1102 err = 0;
1103
1104free_value:
1105 kfree(value);
1106free_key:
1107 kfree(key);
1108err_put:
1109 fdput(f);
1110 return err;
1111}
1112
Jakub Kicinski7de16e32017-10-16 16:40:53 -07001113static const struct bpf_prog_ops * const bpf_prog_types[] = {
1114#define BPF_PROG_TYPE(_id, _name) \
1115 [_id] = & _name ## _prog_ops,
1116#define BPF_MAP_TYPE(_id, _ops)
1117#include <linux/bpf_types.h>
1118#undef BPF_PROG_TYPE
1119#undef BPF_MAP_TYPE
1120};
1121
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001122static int find_prog_type(enum bpf_prog_type type, struct bpf_prog *prog)
1123{
Daniel Borkmannd0f1a452018-05-04 02:13:57 +02001124 const struct bpf_prog_ops *ops;
1125
1126 if (type >= ARRAY_SIZE(bpf_prog_types))
1127 return -EINVAL;
1128 type = array_index_nospec(type, ARRAY_SIZE(bpf_prog_types));
1129 ops = bpf_prog_types[type];
1130 if (!ops)
Johannes Bergbe9370a2017-04-11 15:34:57 +02001131 return -EINVAL;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001132
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07001133 if (!bpf_prog_is_dev_bound(prog->aux))
Daniel Borkmannd0f1a452018-05-04 02:13:57 +02001134 prog->aux->ops = ops;
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07001135 else
1136 prog->aux->ops = &bpf_offload_prog_ops;
Johannes Bergbe9370a2017-04-11 15:34:57 +02001137 prog->type = type;
1138 return 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001139}
1140
1141/* drop refcnt on maps used by eBPF program and free auxilary data */
1142static void free_used_maps(struct bpf_prog_aux *aux)
1143{
Roman Gushchin8bad74f2018-09-28 14:45:36 +00001144 enum bpf_cgroup_storage_type stype;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001145 int i;
1146
Roman Gushchin8bad74f2018-09-28 14:45:36 +00001147 for_each_cgroup_storage_type(stype) {
1148 if (!aux->cgroup_storage[stype])
1149 continue;
1150 bpf_cgroup_storage_release(aux->prog,
1151 aux->cgroup_storage[stype]);
1152 }
Roman Gushchinde9cbba2018-08-02 14:27:18 -07001153
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001154 for (i = 0; i < aux->used_map_cnt; i++)
1155 bpf_map_put(aux->used_maps[i]);
1156
1157 kfree(aux->used_maps);
1158}
1159
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001160int __bpf_prog_charge(struct user_struct *user, u32 pages)
1161{
1162 unsigned long memlock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1163 unsigned long user_bufs;
1164
1165 if (user) {
1166 user_bufs = atomic_long_add_return(pages, &user->locked_vm);
1167 if (user_bufs > memlock_limit) {
1168 atomic_long_sub(pages, &user->locked_vm);
1169 return -EPERM;
1170 }
1171 }
1172
1173 return 0;
1174}
1175
1176void __bpf_prog_uncharge(struct user_struct *user, u32 pages)
1177{
1178 if (user)
1179 atomic_long_sub(pages, &user->locked_vm);
1180}
1181
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001182static int bpf_prog_charge_memlock(struct bpf_prog *prog)
1183{
1184 struct user_struct *user = get_current_user();
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001185 int ret;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001186
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001187 ret = __bpf_prog_charge(user, prog->pages);
1188 if (ret) {
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001189 free_uid(user);
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001190 return ret;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001191 }
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001192
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001193 prog->aux->user = user;
1194 return 0;
1195}
1196
1197static void bpf_prog_uncharge_memlock(struct bpf_prog *prog)
1198{
1199 struct user_struct *user = prog->aux->user;
1200
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001201 __bpf_prog_uncharge(user, prog->pages);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001202 free_uid(user);
1203}
1204
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001205static int bpf_prog_alloc_id(struct bpf_prog *prog)
1206{
1207 int id;
1208
Shaohua Lib76354c2018-03-27 11:53:21 -07001209 idr_preload(GFP_KERNEL);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001210 spin_lock_bh(&prog_idr_lock);
1211 id = idr_alloc_cyclic(&prog_idr, prog, 1, INT_MAX, GFP_ATOMIC);
1212 if (id > 0)
1213 prog->aux->id = id;
1214 spin_unlock_bh(&prog_idr_lock);
Shaohua Lib76354c2018-03-27 11:53:21 -07001215 idr_preload_end();
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001216
1217 /* id is in [1, INT_MAX) */
1218 if (WARN_ON_ONCE(!id))
1219 return -ENOSPC;
1220
1221 return id > 0 ? 0 : id;
1222}
1223
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001224void bpf_prog_free_id(struct bpf_prog *prog, bool do_idr_lock)
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001225{
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001226 /* cBPF to eBPF migrations are currently not in the idr store.
1227 * Offloaded programs are removed from the store when their device
1228 * disappears - even if someone grabs an fd to them they are unusable,
1229 * simply waiting for refcnt to drop to be freed.
1230 */
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001231 if (!prog->aux->id)
1232 return;
1233
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001234 if (do_idr_lock)
1235 spin_lock_bh(&prog_idr_lock);
1236 else
1237 __acquire(&prog_idr_lock);
1238
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001239 idr_remove(&prog_idr, prog->aux->id);
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001240 prog->aux->id = 0;
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001241
1242 if (do_idr_lock)
1243 spin_unlock_bh(&prog_idr_lock);
1244 else
1245 __release(&prog_idr_lock);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001246}
1247
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001248static void __bpf_prog_put_rcu(struct rcu_head *rcu)
Alexei Starovoitovabf2e7d2015-05-28 19:26:02 -07001249{
1250 struct bpf_prog_aux *aux = container_of(rcu, struct bpf_prog_aux, rcu);
1251
1252 free_used_maps(aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001253 bpf_prog_uncharge_memlock(aux->prog);
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001254 security_bpf_prog_free(aux);
Alexei Starovoitovabf2e7d2015-05-28 19:26:02 -07001255 bpf_prog_free(aux->prog);
1256}
1257
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001258static void __bpf_prog_put(struct bpf_prog *prog, bool do_idr_lock)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001259{
Daniel Borkmanna67edbf2017-01-25 02:28:18 +01001260 if (atomic_dec_and_test(&prog->aux->refcnt)) {
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07001261 /* bpf_prog_free_id() must be called first */
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001262 bpf_prog_free_id(prog, do_idr_lock);
Daniel Borkmann7d1982b2018-06-15 02:30:47 +02001263 bpf_prog_kallsyms_del_all(prog);
Yonghong Song838e9692018-11-19 15:29:11 -08001264 btf_put(prog->aux->btf);
Yonghong Songba64e7d2018-11-24 23:20:44 -08001265 kvfree(prog->aux->func_info);
Martin KaFai Lauc454a462018-12-07 16:42:25 -08001266 bpf_prog_free_linfo(prog);
Daniel Borkmann4f74d802017-12-20 13:42:56 +01001267
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001268 call_rcu(&prog->aux->rcu, __bpf_prog_put_rcu);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +01001269 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001270}
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001271
1272void bpf_prog_put(struct bpf_prog *prog)
1273{
1274 __bpf_prog_put(prog, true);
1275}
Daniel Borkmanne2e9b652015-03-01 12:31:48 +01001276EXPORT_SYMBOL_GPL(bpf_prog_put);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001277
1278static int bpf_prog_release(struct inode *inode, struct file *filp)
1279{
1280 struct bpf_prog *prog = filp->private_data;
1281
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001282 bpf_prog_put(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001283 return 0;
1284}
1285
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001286#ifdef CONFIG_PROC_FS
1287static void bpf_prog_show_fdinfo(struct seq_file *m, struct file *filp)
1288{
1289 const struct bpf_prog *prog = filp->private_data;
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001290 char prog_tag[sizeof(prog->tag) * 2 + 1] = { };
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001291
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001292 bin2hex(prog_tag, prog->tag, sizeof(prog->tag));
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001293 seq_printf(m,
1294 "prog_type:\t%u\n"
1295 "prog_jited:\t%u\n"
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001296 "prog_tag:\t%s\n"
Daniel Borkmann4316b402018-06-02 23:06:34 +02001297 "memlock:\t%llu\n"
1298 "prog_id:\t%u\n",
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001299 prog->type,
1300 prog->jited,
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001301 prog_tag,
Daniel Borkmann4316b402018-06-02 23:06:34 +02001302 prog->pages * 1ULL << PAGE_SHIFT,
1303 prog->aux->id);
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001304}
1305#endif
1306
Chenbo Fengf66e4482017-10-18 13:00:26 -07001307const struct file_operations bpf_prog_fops = {
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001308#ifdef CONFIG_PROC_FS
1309 .show_fdinfo = bpf_prog_show_fdinfo,
1310#endif
1311 .release = bpf_prog_release,
Chenbo Feng6e71b042017-10-18 13:00:22 -07001312 .read = bpf_dummy_read,
1313 .write = bpf_dummy_write,
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001314};
1315
Daniel Borkmannb2197752015-10-29 14:58:09 +01001316int bpf_prog_new_fd(struct bpf_prog *prog)
Daniel Borkmannaa797812015-10-29 14:58:06 +01001317{
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001318 int ret;
1319
1320 ret = security_bpf_prog(prog);
1321 if (ret < 0)
1322 return ret;
1323
Daniel Borkmannaa797812015-10-29 14:58:06 +01001324 return anon_inode_getfd("bpf-prog", &bpf_prog_fops, prog,
1325 O_RDWR | O_CLOEXEC);
1326}
1327
Daniel Borkmann113214b2016-06-30 17:24:44 +02001328static struct bpf_prog *____bpf_prog_get(struct fd f)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001329{
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001330 if (!f.file)
1331 return ERR_PTR(-EBADF);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001332 if (f.file->f_op != &bpf_prog_fops) {
1333 fdput(f);
1334 return ERR_PTR(-EINVAL);
1335 }
1336
Daniel Borkmannc2101292015-10-29 14:58:07 +01001337 return f.file->private_data;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001338}
1339
Brenden Blanco59d36562016-07-19 12:16:46 -07001340struct bpf_prog *bpf_prog_add(struct bpf_prog *prog, int i)
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001341{
Brenden Blanco59d36562016-07-19 12:16:46 -07001342 if (atomic_add_return(i, &prog->aux->refcnt) > BPF_MAX_REFCNT) {
1343 atomic_sub(i, &prog->aux->refcnt);
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001344 return ERR_PTR(-EBUSY);
1345 }
1346 return prog;
1347}
Brenden Blanco59d36562016-07-19 12:16:46 -07001348EXPORT_SYMBOL_GPL(bpf_prog_add);
1349
Daniel Borkmannc5405942016-11-09 22:02:34 +01001350void bpf_prog_sub(struct bpf_prog *prog, int i)
1351{
1352 /* Only to be used for undoing previous bpf_prog_add() in some
1353 * error path. We still know that another entity in our call
1354 * path holds a reference to the program, thus atomic_sub() can
1355 * be safely used in such cases!
1356 */
1357 WARN_ON(atomic_sub_return(i, &prog->aux->refcnt) == 0);
1358}
1359EXPORT_SYMBOL_GPL(bpf_prog_sub);
1360
Brenden Blanco59d36562016-07-19 12:16:46 -07001361struct bpf_prog *bpf_prog_inc(struct bpf_prog *prog)
1362{
1363 return bpf_prog_add(prog, 1);
1364}
Daniel Borkmann97bc4022016-11-19 01:45:00 +01001365EXPORT_SYMBOL_GPL(bpf_prog_inc);
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001366
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001367/* prog_idr_lock should have been held */
John Fastabenda6f6df62017-08-15 22:32:22 -07001368struct bpf_prog *bpf_prog_inc_not_zero(struct bpf_prog *prog)
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001369{
1370 int refold;
1371
Mark Rutlandbfc18e32018-06-21 13:13:04 +01001372 refold = atomic_fetch_add_unless(&prog->aux->refcnt, 1, 0);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001373
1374 if (refold >= BPF_MAX_REFCNT) {
1375 __bpf_prog_put(prog, false);
1376 return ERR_PTR(-EBUSY);
1377 }
1378
1379 if (!refold)
1380 return ERR_PTR(-ENOENT);
1381
1382 return prog;
1383}
John Fastabenda6f6df62017-08-15 22:32:22 -07001384EXPORT_SYMBOL_GPL(bpf_prog_inc_not_zero);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001385
Al Viro040ee692017-12-02 20:20:38 -05001386bool bpf_prog_get_ok(struct bpf_prog *prog,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001387 enum bpf_prog_type *attach_type, bool attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001388{
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001389 /* not an attachment, just a refcount inc, always allow */
1390 if (!attach_type)
1391 return true;
Jakub Kicinski248f3462017-11-03 13:56:20 -07001392
1393 if (prog->type != *attach_type)
1394 return false;
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001395 if (bpf_prog_is_dev_bound(prog->aux) && !attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001396 return false;
1397
1398 return true;
1399}
1400
1401static struct bpf_prog *__bpf_prog_get(u32 ufd, enum bpf_prog_type *attach_type,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001402 bool attach_drv)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001403{
1404 struct fd f = fdget(ufd);
1405 struct bpf_prog *prog;
1406
Daniel Borkmann113214b2016-06-30 17:24:44 +02001407 prog = ____bpf_prog_get(f);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001408 if (IS_ERR(prog))
1409 return prog;
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001410 if (!bpf_prog_get_ok(prog, attach_type, attach_drv)) {
Daniel Borkmann113214b2016-06-30 17:24:44 +02001411 prog = ERR_PTR(-EINVAL);
1412 goto out;
1413 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001414
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001415 prog = bpf_prog_inc(prog);
Daniel Borkmann113214b2016-06-30 17:24:44 +02001416out:
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001417 fdput(f);
1418 return prog;
1419}
Daniel Borkmann113214b2016-06-30 17:24:44 +02001420
1421struct bpf_prog *bpf_prog_get(u32 ufd)
1422{
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001423 return __bpf_prog_get(ufd, NULL, false);
Daniel Borkmann113214b2016-06-30 17:24:44 +02001424}
1425
Jakub Kicinski248f3462017-11-03 13:56:20 -07001426struct bpf_prog *bpf_prog_get_type_dev(u32 ufd, enum bpf_prog_type type,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001427 bool attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001428{
Alexei Starovoitov4d220ed2018-04-28 19:56:37 -07001429 return __bpf_prog_get(ufd, &type, attach_drv);
Jakub Kicinski248f3462017-11-03 13:56:20 -07001430}
Jakub Kicinski6c8dfe22017-11-03 13:56:21 -07001431EXPORT_SYMBOL_GPL(bpf_prog_get_type_dev);
Jakub Kicinski248f3462017-11-03 13:56:20 -07001432
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001433/* Initially all BPF programs could be loaded w/o specifying
1434 * expected_attach_type. Later for some of them specifying expected_attach_type
1435 * at load time became required so that program could be validated properly.
1436 * Programs of types that are allowed to be loaded both w/ and w/o (for
1437 * backward compatibility) expected_attach_type, should have the default attach
1438 * type assigned to expected_attach_type for the latter case, so that it can be
1439 * validated later at attach time.
1440 *
1441 * bpf_prog_load_fixup_attach_type() sets expected_attach_type in @attr if
1442 * prog type requires it but has some attach types that have to be backward
1443 * compatible.
1444 */
1445static void bpf_prog_load_fixup_attach_type(union bpf_attr *attr)
1446{
1447 switch (attr->prog_type) {
1448 case BPF_PROG_TYPE_CGROUP_SOCK:
1449 /* Unfortunately BPF_ATTACH_TYPE_UNSPEC enumeration doesn't
1450 * exist so checking for non-zero is the way to go here.
1451 */
1452 if (!attr->expected_attach_type)
1453 attr->expected_attach_type =
1454 BPF_CGROUP_INET_SOCK_CREATE;
1455 break;
1456 }
1457}
1458
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001459static int
1460bpf_prog_load_check_attach_type(enum bpf_prog_type prog_type,
1461 enum bpf_attach_type expected_attach_type)
1462{
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001463 switch (prog_type) {
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001464 case BPF_PROG_TYPE_CGROUP_SOCK:
1465 switch (expected_attach_type) {
1466 case BPF_CGROUP_INET_SOCK_CREATE:
1467 case BPF_CGROUP_INET4_POST_BIND:
1468 case BPF_CGROUP_INET6_POST_BIND:
1469 return 0;
1470 default:
1471 return -EINVAL;
1472 }
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001473 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
1474 switch (expected_attach_type) {
1475 case BPF_CGROUP_INET4_BIND:
1476 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001477 case BPF_CGROUP_INET4_CONNECT:
1478 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001479 case BPF_CGROUP_UDP4_SENDMSG:
1480 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001481 return 0;
1482 default:
1483 return -EINVAL;
1484 }
1485 default:
1486 return 0;
1487 }
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001488}
1489
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001490/* last field in 'union bpf_attr' used by this command */
Martin KaFai Lauc454a462018-12-07 16:42:25 -08001491#define BPF_PROG_LOAD_LAST_FIELD line_info_cnt
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001492
Yonghong Song838e9692018-11-19 15:29:11 -08001493static int bpf_prog_load(union bpf_attr *attr, union bpf_attr __user *uattr)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001494{
1495 enum bpf_prog_type type = attr->prog_type;
1496 struct bpf_prog *prog;
1497 int err;
1498 char license[128];
1499 bool is_gpl;
1500
1501 if (CHECK_ATTR(BPF_PROG_LOAD))
1502 return -EINVAL;
1503
David Millere9ee9ef2018-11-30 21:08:14 -08001504 if (attr->prog_flags & ~(BPF_F_STRICT_ALIGNMENT | BPF_F_ANY_ALIGNMENT))
David S. Millere07b98d2017-05-10 11:38:07 -07001505 return -EINVAL;
1506
David Millere9ee9ef2018-11-30 21:08:14 -08001507 if (!IS_ENABLED(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) &&
1508 (attr->prog_flags & BPF_F_ANY_ALIGNMENT) &&
1509 !capable(CAP_SYS_ADMIN))
1510 return -EPERM;
1511
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001512 /* copy eBPF program license from user space */
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001513 if (strncpy_from_user(license, u64_to_user_ptr(attr->license),
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001514 sizeof(license) - 1) < 0)
1515 return -EFAULT;
1516 license[sizeof(license) - 1] = 0;
1517
1518 /* eBPF programs must be GPL compatible to use GPL-ed functions */
1519 is_gpl = license_is_gpl_compatible(license);
1520
Daniel Borkmannef0915c2016-12-07 01:15:44 +01001521 if (attr->insn_cnt == 0 || attr->insn_cnt > BPF_MAXINSNS)
1522 return -E2BIG;
Chenbo Feng80b7d812017-05-31 18:16:00 -07001523 if (type != BPF_PROG_TYPE_SOCKET_FILTER &&
1524 type != BPF_PROG_TYPE_CGROUP_SKB &&
1525 !capable(CAP_SYS_ADMIN))
Alexei Starovoitov1be7f752015-10-07 22:23:21 -07001526 return -EPERM;
1527
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001528 bpf_prog_load_fixup_attach_type(attr);
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001529 if (bpf_prog_load_check_attach_type(type, attr->expected_attach_type))
1530 return -EINVAL;
1531
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001532 /* plain bpf_prog allocation */
1533 prog = bpf_prog_alloc(bpf_prog_size(attr->insn_cnt), GFP_USER);
1534 if (!prog)
1535 return -ENOMEM;
1536
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001537 prog->expected_attach_type = attr->expected_attach_type;
1538
Jakub Kicinski9a18eed2017-12-27 18:39:04 -08001539 prog->aux->offload_requested = !!attr->prog_ifindex;
1540
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001541 err = security_bpf_prog_alloc(prog->aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001542 if (err)
1543 goto free_prog_nouncharge;
1544
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001545 err = bpf_prog_charge_memlock(prog);
1546 if (err)
1547 goto free_prog_sec;
1548
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001549 prog->len = attr->insn_cnt;
1550
1551 err = -EFAULT;
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001552 if (copy_from_user(prog->insns, u64_to_user_ptr(attr->insns),
Daniel Borkmannaafe6ae2016-12-18 01:52:57 +01001553 bpf_prog_insn_size(prog)) != 0)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001554 goto free_prog;
1555
1556 prog->orig_prog = NULL;
Daniel Borkmanna91263d2015-09-30 01:41:50 +02001557 prog->jited = 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001558
1559 atomic_set(&prog->aux->refcnt, 1);
Daniel Borkmanna91263d2015-09-30 01:41:50 +02001560 prog->gpl_compatible = is_gpl ? 1 : 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001561
Jakub Kicinski9a18eed2017-12-27 18:39:04 -08001562 if (bpf_prog_is_dev_bound(prog->aux)) {
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07001563 err = bpf_prog_offload_init(prog, attr);
1564 if (err)
1565 goto free_prog;
1566 }
1567
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001568 /* find program type: socket_filter vs tracing_filter */
1569 err = find_prog_type(type, prog);
1570 if (err < 0)
1571 goto free_prog;
1572
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001573 prog->aux->load_time = ktime_get_boot_ns();
1574 err = bpf_obj_name_cpy(prog->aux->name, attr->prog_name);
1575 if (err)
1576 goto free_prog;
1577
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001578 /* run eBPF verifier */
Yonghong Song838e9692018-11-19 15:29:11 -08001579 err = bpf_check(&prog, attr, uattr);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001580 if (err < 0)
1581 goto free_used_maps;
1582
Daniel Borkmann9facc332018-06-15 02:30:48 +02001583 prog = bpf_prog_select_runtime(prog, &err);
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001584 if (err < 0)
1585 goto free_used_maps;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001586
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001587 err = bpf_prog_alloc_id(prog);
1588 if (err)
1589 goto free_used_maps;
1590
Daniel Borkmannaa797812015-10-29 14:58:06 +01001591 err = bpf_prog_new_fd(prog);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001592 if (err < 0) {
1593 /* failed to allocate fd.
1594 * bpf_prog_put() is needed because the above
1595 * bpf_prog_alloc_id() has published the prog
1596 * to the userspace and the userspace may
1597 * have refcnt-ed it through BPF_PROG_GET_FD_BY_ID.
1598 */
1599 bpf_prog_put(prog);
1600 return err;
1601 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001602
Daniel Borkmann74451e662017-02-16 22:24:50 +01001603 bpf_prog_kallsyms_add(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001604 return err;
1605
1606free_used_maps:
Martin KaFai Lauc454a462018-12-07 16:42:25 -08001607 bpf_prog_free_linfo(prog);
Martin KaFai Lau5482e9a2018-12-01 17:08:44 -08001608 kvfree(prog->aux->func_info);
1609 btf_put(prog->aux->btf);
Daniel Borkmann7d1982b2018-06-15 02:30:47 +02001610 bpf_prog_kallsyms_del_subprogs(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001611 free_used_maps(prog->aux);
1612free_prog:
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001613 bpf_prog_uncharge_memlock(prog);
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001614free_prog_sec:
1615 security_bpf_prog_free(prog->aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001616free_prog_nouncharge:
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001617 bpf_prog_free(prog);
1618 return err;
1619}
1620
Chenbo Feng6e71b042017-10-18 13:00:22 -07001621#define BPF_OBJ_LAST_FIELD file_flags
Daniel Borkmannb2197752015-10-29 14:58:09 +01001622
1623static int bpf_obj_pin(const union bpf_attr *attr)
1624{
Chenbo Feng6e71b042017-10-18 13:00:22 -07001625 if (CHECK_ATTR(BPF_OBJ) || attr->file_flags != 0)
Daniel Borkmannb2197752015-10-29 14:58:09 +01001626 return -EINVAL;
1627
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001628 return bpf_obj_pin_user(attr->bpf_fd, u64_to_user_ptr(attr->pathname));
Daniel Borkmannb2197752015-10-29 14:58:09 +01001629}
1630
1631static int bpf_obj_get(const union bpf_attr *attr)
1632{
Chenbo Feng6e71b042017-10-18 13:00:22 -07001633 if (CHECK_ATTR(BPF_OBJ) || attr->bpf_fd != 0 ||
1634 attr->file_flags & ~BPF_OBJ_FLAG_MASK)
Daniel Borkmannb2197752015-10-29 14:58:09 +01001635 return -EINVAL;
1636
Chenbo Feng6e71b042017-10-18 13:00:22 -07001637 return bpf_obj_get_user(u64_to_user_ptr(attr->pathname),
1638 attr->file_flags);
Daniel Borkmannb2197752015-10-29 14:58:09 +01001639}
1640
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001641struct bpf_raw_tracepoint {
1642 struct bpf_raw_event_map *btp;
1643 struct bpf_prog *prog;
1644};
1645
1646static int bpf_raw_tracepoint_release(struct inode *inode, struct file *filp)
1647{
1648 struct bpf_raw_tracepoint *raw_tp = filp->private_data;
1649
1650 if (raw_tp->prog) {
1651 bpf_probe_unregister(raw_tp->btp, raw_tp->prog);
1652 bpf_prog_put(raw_tp->prog);
1653 }
Matt Mullinsa38d1102018-12-12 16:42:37 -08001654 bpf_put_raw_tracepoint(raw_tp->btp);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001655 kfree(raw_tp);
1656 return 0;
1657}
1658
1659static const struct file_operations bpf_raw_tp_fops = {
1660 .release = bpf_raw_tracepoint_release,
1661 .read = bpf_dummy_read,
1662 .write = bpf_dummy_write,
1663};
1664
1665#define BPF_RAW_TRACEPOINT_OPEN_LAST_FIELD raw_tracepoint.prog_fd
1666
1667static int bpf_raw_tracepoint_open(const union bpf_attr *attr)
1668{
1669 struct bpf_raw_tracepoint *raw_tp;
1670 struct bpf_raw_event_map *btp;
1671 struct bpf_prog *prog;
1672 char tp_name[128];
1673 int tp_fd, err;
1674
1675 if (strncpy_from_user(tp_name, u64_to_user_ptr(attr->raw_tracepoint.name),
1676 sizeof(tp_name) - 1) < 0)
1677 return -EFAULT;
1678 tp_name[sizeof(tp_name) - 1] = 0;
1679
Matt Mullinsa38d1102018-12-12 16:42:37 -08001680 btp = bpf_get_raw_tracepoint(tp_name);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001681 if (!btp)
1682 return -ENOENT;
1683
1684 raw_tp = kzalloc(sizeof(*raw_tp), GFP_USER);
Matt Mullinsa38d1102018-12-12 16:42:37 -08001685 if (!raw_tp) {
1686 err = -ENOMEM;
1687 goto out_put_btp;
1688 }
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001689 raw_tp->btp = btp;
1690
1691 prog = bpf_prog_get_type(attr->raw_tracepoint.prog_fd,
1692 BPF_PROG_TYPE_RAW_TRACEPOINT);
1693 if (IS_ERR(prog)) {
1694 err = PTR_ERR(prog);
1695 goto out_free_tp;
1696 }
1697
1698 err = bpf_probe_register(raw_tp->btp, prog);
1699 if (err)
1700 goto out_put_prog;
1701
1702 raw_tp->prog = prog;
1703 tp_fd = anon_inode_getfd("bpf-raw-tracepoint", &bpf_raw_tp_fops, raw_tp,
1704 O_CLOEXEC);
1705 if (tp_fd < 0) {
1706 bpf_probe_unregister(raw_tp->btp, prog);
1707 err = tp_fd;
1708 goto out_put_prog;
1709 }
1710 return tp_fd;
1711
1712out_put_prog:
1713 bpf_prog_put(prog);
1714out_free_tp:
1715 kfree(raw_tp);
Matt Mullinsa38d1102018-12-12 16:42:37 -08001716out_put_btp:
1717 bpf_put_raw_tracepoint(btp);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001718 return err;
1719}
1720
Anders Roxell33491582018-04-03 14:09:47 +02001721static int bpf_prog_attach_check_attach_type(const struct bpf_prog *prog,
1722 enum bpf_attach_type attach_type)
1723{
1724 switch (prog->type) {
1725 case BPF_PROG_TYPE_CGROUP_SOCK:
1726 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
1727 return attach_type == prog->expected_attach_type ? 0 : -EINVAL;
1728 default:
1729 return 0;
1730 }
1731}
1732
John Fastabend464bc0f2017-08-28 07:10:04 -07001733#define BPF_PROG_ATTACH_LAST_FIELD attach_flags
John Fastabend174a79f2017-08-15 22:32:47 -07001734
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001735#define BPF_F_ATTACH_MASK \
1736 (BPF_F_ALLOW_OVERRIDE | BPF_F_ALLOW_MULTI)
1737
Daniel Mackf4324552016-11-23 16:52:27 +01001738static int bpf_prog_attach(const union bpf_attr *attr)
1739{
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001740 enum bpf_prog_type ptype;
Daniel Mackf4324552016-11-23 16:52:27 +01001741 struct bpf_prog *prog;
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001742 int ret;
Daniel Mackf4324552016-11-23 16:52:27 +01001743
1744 if (!capable(CAP_NET_ADMIN))
1745 return -EPERM;
1746
1747 if (CHECK_ATTR(BPF_PROG_ATTACH))
1748 return -EINVAL;
1749
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001750 if (attr->attach_flags & ~BPF_F_ATTACH_MASK)
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001751 return -EINVAL;
1752
Daniel Mackf4324552016-11-23 16:52:27 +01001753 switch (attr->attach_type) {
1754 case BPF_CGROUP_INET_INGRESS:
1755 case BPF_CGROUP_INET_EGRESS:
David Ahernb2cd1252016-12-01 08:48:03 -08001756 ptype = BPF_PROG_TYPE_CGROUP_SKB;
Daniel Mackf4324552016-11-23 16:52:27 +01001757 break;
David Ahern610236582016-12-01 08:48:04 -08001758 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001759 case BPF_CGROUP_INET4_POST_BIND:
1760 case BPF_CGROUP_INET6_POST_BIND:
David Ahern610236582016-12-01 08:48:04 -08001761 ptype = BPF_PROG_TYPE_CGROUP_SOCK;
1762 break;
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001763 case BPF_CGROUP_INET4_BIND:
1764 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001765 case BPF_CGROUP_INET4_CONNECT:
1766 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001767 case BPF_CGROUP_UDP4_SENDMSG:
1768 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001769 ptype = BPF_PROG_TYPE_CGROUP_SOCK_ADDR;
1770 break;
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001771 case BPF_CGROUP_SOCK_OPS:
1772 ptype = BPF_PROG_TYPE_SOCK_OPS;
1773 break;
Roman Gushchinebc614f2017-11-05 08:15:32 -05001774 case BPF_CGROUP_DEVICE:
1775 ptype = BPF_PROG_TYPE_CGROUP_DEVICE;
1776 break;
John Fastabend4f738ad2018-03-18 12:57:10 -07001777 case BPF_SK_MSG_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001778 ptype = BPF_PROG_TYPE_SK_MSG;
1779 break;
John Fastabend464bc0f2017-08-28 07:10:04 -07001780 case BPF_SK_SKB_STREAM_PARSER:
1781 case BPF_SK_SKB_STREAM_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001782 ptype = BPF_PROG_TYPE_SK_SKB;
1783 break;
Sean Youngf4364dc2018-05-27 12:24:09 +01001784 case BPF_LIRC_MODE2:
Sean Youngfdb5c452018-06-19 00:04:24 +01001785 ptype = BPF_PROG_TYPE_LIRC_MODE2;
1786 break;
Petar Penkovd58e4682018-09-14 07:46:18 -07001787 case BPF_FLOW_DISSECTOR:
1788 ptype = BPF_PROG_TYPE_FLOW_DISSECTOR;
1789 break;
Daniel Mackf4324552016-11-23 16:52:27 +01001790 default:
1791 return -EINVAL;
1792 }
1793
David Ahernb2cd1252016-12-01 08:48:03 -08001794 prog = bpf_prog_get_type(attr->attach_bpf_fd, ptype);
1795 if (IS_ERR(prog))
1796 return PTR_ERR(prog);
1797
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001798 if (bpf_prog_attach_check_attach_type(prog, attr->attach_type)) {
1799 bpf_prog_put(prog);
1800 return -EINVAL;
1801 }
1802
Sean Youngfdb5c452018-06-19 00:04:24 +01001803 switch (ptype) {
1804 case BPF_PROG_TYPE_SK_SKB:
1805 case BPF_PROG_TYPE_SK_MSG:
Daniel Borkmann604326b2018-10-13 02:45:58 +02001806 ret = sock_map_get_from_fd(attr, prog);
Sean Youngfdb5c452018-06-19 00:04:24 +01001807 break;
1808 case BPF_PROG_TYPE_LIRC_MODE2:
1809 ret = lirc_prog_attach(attr, prog);
1810 break;
Petar Penkovd58e4682018-09-14 07:46:18 -07001811 case BPF_PROG_TYPE_FLOW_DISSECTOR:
1812 ret = skb_flow_dissector_bpf_prog_attach(attr, prog);
1813 break;
Sean Youngfdb5c452018-06-19 00:04:24 +01001814 default:
1815 ret = cgroup_bpf_prog_attach(attr, ptype, prog);
David Ahernb2cd1252016-12-01 08:48:03 -08001816 }
1817
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001818 if (ret)
1819 bpf_prog_put(prog);
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001820 return ret;
Daniel Mackf4324552016-11-23 16:52:27 +01001821}
1822
1823#define BPF_PROG_DETACH_LAST_FIELD attach_type
1824
1825static int bpf_prog_detach(const union bpf_attr *attr)
1826{
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001827 enum bpf_prog_type ptype;
Daniel Mackf4324552016-11-23 16:52:27 +01001828
1829 if (!capable(CAP_NET_ADMIN))
1830 return -EPERM;
1831
1832 if (CHECK_ATTR(BPF_PROG_DETACH))
1833 return -EINVAL;
1834
1835 switch (attr->attach_type) {
1836 case BPF_CGROUP_INET_INGRESS:
1837 case BPF_CGROUP_INET_EGRESS:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001838 ptype = BPF_PROG_TYPE_CGROUP_SKB;
1839 break;
David Ahern610236582016-12-01 08:48:04 -08001840 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001841 case BPF_CGROUP_INET4_POST_BIND:
1842 case BPF_CGROUP_INET6_POST_BIND:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001843 ptype = BPF_PROG_TYPE_CGROUP_SOCK;
1844 break;
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001845 case BPF_CGROUP_INET4_BIND:
1846 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001847 case BPF_CGROUP_INET4_CONNECT:
1848 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001849 case BPF_CGROUP_UDP4_SENDMSG:
1850 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001851 ptype = BPF_PROG_TYPE_CGROUP_SOCK_ADDR;
1852 break;
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001853 case BPF_CGROUP_SOCK_OPS:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001854 ptype = BPF_PROG_TYPE_SOCK_OPS;
Daniel Mackf4324552016-11-23 16:52:27 +01001855 break;
Roman Gushchinebc614f2017-11-05 08:15:32 -05001856 case BPF_CGROUP_DEVICE:
1857 ptype = BPF_PROG_TYPE_CGROUP_DEVICE;
1858 break;
John Fastabend4f738ad2018-03-18 12:57:10 -07001859 case BPF_SK_MSG_VERDICT:
Daniel Borkmann604326b2018-10-13 02:45:58 +02001860 return sock_map_get_from_fd(attr, NULL);
John Fastabend5a67da22017-09-08 14:00:49 -07001861 case BPF_SK_SKB_STREAM_PARSER:
1862 case BPF_SK_SKB_STREAM_VERDICT:
Daniel Borkmann604326b2018-10-13 02:45:58 +02001863 return sock_map_get_from_fd(attr, NULL);
Sean Youngf4364dc2018-05-27 12:24:09 +01001864 case BPF_LIRC_MODE2:
1865 return lirc_prog_detach(attr);
Petar Penkovd58e4682018-09-14 07:46:18 -07001866 case BPF_FLOW_DISSECTOR:
1867 return skb_flow_dissector_bpf_prog_detach(attr);
Daniel Mackf4324552016-11-23 16:52:27 +01001868 default:
1869 return -EINVAL;
1870 }
1871
Sean Youngfdb5c452018-06-19 00:04:24 +01001872 return cgroup_bpf_prog_detach(attr, ptype);
Daniel Mackf4324552016-11-23 16:52:27 +01001873}
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001874
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001875#define BPF_PROG_QUERY_LAST_FIELD query.prog_cnt
1876
1877static int bpf_prog_query(const union bpf_attr *attr,
1878 union bpf_attr __user *uattr)
1879{
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001880 if (!capable(CAP_NET_ADMIN))
1881 return -EPERM;
1882 if (CHECK_ATTR(BPF_PROG_QUERY))
1883 return -EINVAL;
1884 if (attr->query.query_flags & ~BPF_F_QUERY_EFFECTIVE)
1885 return -EINVAL;
1886
1887 switch (attr->query.attach_type) {
1888 case BPF_CGROUP_INET_INGRESS:
1889 case BPF_CGROUP_INET_EGRESS:
1890 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001891 case BPF_CGROUP_INET4_BIND:
1892 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001893 case BPF_CGROUP_INET4_POST_BIND:
1894 case BPF_CGROUP_INET6_POST_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001895 case BPF_CGROUP_INET4_CONNECT:
1896 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001897 case BPF_CGROUP_UDP4_SENDMSG:
1898 case BPF_CGROUP_UDP6_SENDMSG:
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001899 case BPF_CGROUP_SOCK_OPS:
Roman Gushchinebc614f2017-11-05 08:15:32 -05001900 case BPF_CGROUP_DEVICE:
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001901 break;
Sean Youngf4364dc2018-05-27 12:24:09 +01001902 case BPF_LIRC_MODE2:
1903 return lirc_prog_query(attr, uattr);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001904 default:
1905 return -EINVAL;
1906 }
Sean Youngfdb5c452018-06-19 00:04:24 +01001907
1908 return cgroup_bpf_prog_query(attr, uattr);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001909}
Daniel Mackf4324552016-11-23 16:52:27 +01001910
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07001911#define BPF_PROG_TEST_RUN_LAST_FIELD test.duration
1912
1913static int bpf_prog_test_run(const union bpf_attr *attr,
1914 union bpf_attr __user *uattr)
1915{
1916 struct bpf_prog *prog;
1917 int ret = -ENOTSUPP;
1918
Alexei Starovoitov61f3c962018-01-17 16:52:02 -08001919 if (!capable(CAP_SYS_ADMIN))
1920 return -EPERM;
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07001921 if (CHECK_ATTR(BPF_PROG_TEST_RUN))
1922 return -EINVAL;
1923
1924 prog = bpf_prog_get(attr->test.prog_fd);
1925 if (IS_ERR(prog))
1926 return PTR_ERR(prog);
1927
1928 if (prog->aux->ops->test_run)
1929 ret = prog->aux->ops->test_run(prog, attr, uattr);
1930
1931 bpf_prog_put(prog);
1932 return ret;
1933}
1934
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07001935#define BPF_OBJ_GET_NEXT_ID_LAST_FIELD next_id
1936
1937static int bpf_obj_get_next_id(const union bpf_attr *attr,
1938 union bpf_attr __user *uattr,
1939 struct idr *idr,
1940 spinlock_t *lock)
1941{
1942 u32 next_id = attr->start_id;
1943 int err = 0;
1944
1945 if (CHECK_ATTR(BPF_OBJ_GET_NEXT_ID) || next_id >= INT_MAX)
1946 return -EINVAL;
1947
1948 if (!capable(CAP_SYS_ADMIN))
1949 return -EPERM;
1950
1951 next_id++;
1952 spin_lock_bh(lock);
1953 if (!idr_get_next(idr, &next_id))
1954 err = -ENOENT;
1955 spin_unlock_bh(lock);
1956
1957 if (!err)
1958 err = put_user(next_id, &uattr->next_id);
1959
1960 return err;
1961}
1962
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001963#define BPF_PROG_GET_FD_BY_ID_LAST_FIELD prog_id
1964
1965static int bpf_prog_get_fd_by_id(const union bpf_attr *attr)
1966{
1967 struct bpf_prog *prog;
1968 u32 id = attr->prog_id;
1969 int fd;
1970
1971 if (CHECK_ATTR(BPF_PROG_GET_FD_BY_ID))
1972 return -EINVAL;
1973
1974 if (!capable(CAP_SYS_ADMIN))
1975 return -EPERM;
1976
1977 spin_lock_bh(&prog_idr_lock);
1978 prog = idr_find(&prog_idr, id);
1979 if (prog)
1980 prog = bpf_prog_inc_not_zero(prog);
1981 else
1982 prog = ERR_PTR(-ENOENT);
1983 spin_unlock_bh(&prog_idr_lock);
1984
1985 if (IS_ERR(prog))
1986 return PTR_ERR(prog);
1987
1988 fd = bpf_prog_new_fd(prog);
1989 if (fd < 0)
1990 bpf_prog_put(prog);
1991
1992 return fd;
1993}
1994
Chenbo Feng6e71b042017-10-18 13:00:22 -07001995#define BPF_MAP_GET_FD_BY_ID_LAST_FIELD open_flags
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001996
1997static int bpf_map_get_fd_by_id(const union bpf_attr *attr)
1998{
1999 struct bpf_map *map;
2000 u32 id = attr->map_id;
Chenbo Feng6e71b042017-10-18 13:00:22 -07002001 int f_flags;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07002002 int fd;
2003
Chenbo Feng6e71b042017-10-18 13:00:22 -07002004 if (CHECK_ATTR(BPF_MAP_GET_FD_BY_ID) ||
2005 attr->open_flags & ~BPF_OBJ_FLAG_MASK)
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07002006 return -EINVAL;
2007
2008 if (!capable(CAP_SYS_ADMIN))
2009 return -EPERM;
2010
Chenbo Feng6e71b042017-10-18 13:00:22 -07002011 f_flags = bpf_get_file_flag(attr->open_flags);
2012 if (f_flags < 0)
2013 return f_flags;
2014
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07002015 spin_lock_bh(&map_idr_lock);
2016 map = idr_find(&map_idr, id);
2017 if (map)
2018 map = bpf_map_inc_not_zero(map, true);
2019 else
2020 map = ERR_PTR(-ENOENT);
2021 spin_unlock_bh(&map_idr_lock);
2022
2023 if (IS_ERR(map))
2024 return PTR_ERR(map);
2025
Chenbo Feng6e71b042017-10-18 13:00:22 -07002026 fd = bpf_map_new_fd(map, f_flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07002027 if (fd < 0)
2028 bpf_map_put(map);
2029
2030 return fd;
2031}
2032
Daniel Borkmann7105e822017-12-20 13:42:57 +01002033static const struct bpf_map *bpf_map_from_imm(const struct bpf_prog *prog,
2034 unsigned long addr)
2035{
2036 int i;
2037
2038 for (i = 0; i < prog->aux->used_map_cnt; i++)
2039 if (prog->aux->used_maps[i] == (void *)addr)
2040 return prog->aux->used_maps[i];
2041 return NULL;
2042}
2043
2044static struct bpf_insn *bpf_insn_prepare_dump(const struct bpf_prog *prog)
2045{
2046 const struct bpf_map *map;
2047 struct bpf_insn *insns;
2048 u64 imm;
2049 int i;
2050
2051 insns = kmemdup(prog->insnsi, bpf_prog_insn_size(prog),
2052 GFP_USER);
2053 if (!insns)
2054 return insns;
2055
2056 for (i = 0; i < prog->len; i++) {
2057 if (insns[i].code == (BPF_JMP | BPF_TAIL_CALL)) {
2058 insns[i].code = BPF_JMP | BPF_CALL;
2059 insns[i].imm = BPF_FUNC_tail_call;
2060 /* fall-through */
2061 }
2062 if (insns[i].code == (BPF_JMP | BPF_CALL) ||
2063 insns[i].code == (BPF_JMP | BPF_CALL_ARGS)) {
2064 if (insns[i].code == (BPF_JMP | BPF_CALL_ARGS))
2065 insns[i].code = BPF_JMP | BPF_CALL;
2066 if (!bpf_dump_raw_ok())
2067 insns[i].imm = 0;
2068 continue;
2069 }
2070
2071 if (insns[i].code != (BPF_LD | BPF_IMM | BPF_DW))
2072 continue;
2073
2074 imm = ((u64)insns[i + 1].imm << 32) | (u32)insns[i].imm;
2075 map = bpf_map_from_imm(prog, imm);
2076 if (map) {
2077 insns[i].src_reg = BPF_PSEUDO_MAP_FD;
2078 insns[i].imm = map->id;
2079 insns[i + 1].imm = 0;
2080 continue;
2081 }
Daniel Borkmann7105e822017-12-20 13:42:57 +01002082 }
2083
2084 return insns;
2085}
2086
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002087static int set_info_rec_size(struct bpf_prog_info *info)
2088{
2089 /*
2090 * Ensure info.*_rec_size is the same as kernel expected size
2091 *
2092 * or
2093 *
2094 * Only allow zero *_rec_size if both _rec_size and _cnt are
2095 * zero. In this case, the kernel will set the expected
2096 * _rec_size back to the info.
2097 */
2098
Yonghong Song11d8b822018-12-10 14:14:08 -08002099 if ((info->nr_func_info || info->func_info_rec_size) &&
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002100 info->func_info_rec_size != sizeof(struct bpf_func_info))
2101 return -EINVAL;
2102
Yonghong Song11d8b822018-12-10 14:14:08 -08002103 if ((info->nr_line_info || info->line_info_rec_size) &&
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002104 info->line_info_rec_size != sizeof(struct bpf_line_info))
2105 return -EINVAL;
2106
Yonghong Song11d8b822018-12-10 14:14:08 -08002107 if ((info->nr_jited_line_info || info->jited_line_info_rec_size) &&
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002108 info->jited_line_info_rec_size != sizeof(__u64))
2109 return -EINVAL;
2110
2111 info->func_info_rec_size = sizeof(struct bpf_func_info);
2112 info->line_info_rec_size = sizeof(struct bpf_line_info);
2113 info->jited_line_info_rec_size = sizeof(__u64);
2114
2115 return 0;
2116}
2117
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002118static int bpf_prog_get_info_by_fd(struct bpf_prog *prog,
2119 const union bpf_attr *attr,
2120 union bpf_attr __user *uattr)
2121{
2122 struct bpf_prog_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2123 struct bpf_prog_info info = {};
2124 u32 info_len = attr->info.info_len;
2125 char __user *uinsns;
2126 u32 ulen;
2127 int err;
2128
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002129 err = bpf_check_uarg_tail_zero(uinfo, sizeof(info), info_len);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002130 if (err)
2131 return err;
2132 info_len = min_t(u32, sizeof(info), info_len);
2133
2134 if (copy_from_user(&info, uinfo, info_len))
Daniel Borkmann89b09682017-07-27 21:02:46 +02002135 return -EFAULT;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002136
2137 info.type = prog->type;
2138 info.id = prog->aux->id;
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07002139 info.load_time = prog->aux->load_time;
2140 info.created_by_uid = from_kuid_munged(current_user_ns(),
2141 prog->aux->user->uid);
Jiri Olsab85fab02018-04-25 19:41:06 +02002142 info.gpl_compatible = prog->gpl_compatible;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002143
2144 memcpy(info.tag, prog->tag, sizeof(prog->tag));
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07002145 memcpy(info.name, prog->aux->name, sizeof(prog->aux->name));
2146
2147 ulen = info.nr_map_ids;
2148 info.nr_map_ids = prog->aux->used_map_cnt;
2149 ulen = min_t(u32, info.nr_map_ids, ulen);
2150 if (ulen) {
Martin KaFai Lau721e08d2017-09-29 10:52:17 -07002151 u32 __user *user_map_ids = u64_to_user_ptr(info.map_ids);
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07002152 u32 i;
2153
2154 for (i = 0; i < ulen; i++)
2155 if (put_user(prog->aux->used_maps[i]->id,
2156 &user_map_ids[i]))
2157 return -EFAULT;
2158 }
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002159
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002160 err = set_info_rec_size(&info);
2161 if (err)
2162 return err;
Martin KaFai Lau73372242018-12-05 17:35:43 -08002163
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002164 if (!capable(CAP_SYS_ADMIN)) {
2165 info.jited_prog_len = 0;
2166 info.xlated_prog_len = 0;
Sandipan Dasdbecd732018-05-24 12:26:48 +05302167 info.nr_jited_ksyms = 0;
Daniel Borkmann28c2fae2018-11-02 11:35:46 +01002168 info.nr_jited_func_lens = 0;
Yonghong Song11d8b822018-12-10 14:14:08 -08002169 info.nr_func_info = 0;
2170 info.nr_line_info = 0;
2171 info.nr_jited_line_info = 0;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002172 goto done;
2173 }
2174
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002175 ulen = info.xlated_prog_len;
Daniel Borkmann9975a542017-07-28 17:05:25 +02002176 info.xlated_prog_len = bpf_prog_insn_size(prog);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002177 if (info.xlated_prog_len && ulen) {
Daniel Borkmann7105e822017-12-20 13:42:57 +01002178 struct bpf_insn *insns_sanitized;
2179 bool fault;
2180
2181 if (prog->blinded && !bpf_dump_raw_ok()) {
2182 info.xlated_prog_insns = 0;
2183 goto done;
2184 }
2185 insns_sanitized = bpf_insn_prepare_dump(prog);
2186 if (!insns_sanitized)
2187 return -ENOMEM;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002188 uinsns = u64_to_user_ptr(info.xlated_prog_insns);
2189 ulen = min_t(u32, info.xlated_prog_len, ulen);
Daniel Borkmann7105e822017-12-20 13:42:57 +01002190 fault = copy_to_user(uinsns, insns_sanitized, ulen);
2191 kfree(insns_sanitized);
2192 if (fault)
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002193 return -EFAULT;
2194 }
2195
Jakub Kicinski675fc272017-12-27 18:39:09 -08002196 if (bpf_prog_is_dev_bound(prog->aux)) {
2197 err = bpf_prog_offload_info_fill(&info, prog);
2198 if (err)
2199 return err;
Jiong Wangfcfb1262018-01-16 16:05:19 -08002200 goto done;
2201 }
2202
2203 /* NOTE: the following code is supposed to be skipped for offload.
2204 * bpf_prog_offload_info_fill() is the place to fill similar fields
2205 * for offload.
2206 */
2207 ulen = info.jited_prog_len;
Sandipan Das4d56a762018-05-24 12:26:51 +05302208 if (prog->aux->func_cnt) {
2209 u32 i;
2210
2211 info.jited_prog_len = 0;
2212 for (i = 0; i < prog->aux->func_cnt; i++)
2213 info.jited_prog_len += prog->aux->func[i]->jited_len;
2214 } else {
2215 info.jited_prog_len = prog->jited_len;
2216 }
2217
Jiong Wangfcfb1262018-01-16 16:05:19 -08002218 if (info.jited_prog_len && ulen) {
2219 if (bpf_dump_raw_ok()) {
2220 uinsns = u64_to_user_ptr(info.jited_prog_insns);
2221 ulen = min_t(u32, info.jited_prog_len, ulen);
Sandipan Das4d56a762018-05-24 12:26:51 +05302222
2223 /* for multi-function programs, copy the JITed
2224 * instructions for all the functions
2225 */
2226 if (prog->aux->func_cnt) {
2227 u32 len, free, i;
2228 u8 *img;
2229
2230 free = ulen;
2231 for (i = 0; i < prog->aux->func_cnt; i++) {
2232 len = prog->aux->func[i]->jited_len;
2233 len = min_t(u32, len, free);
2234 img = (u8 *) prog->aux->func[i]->bpf_func;
2235 if (copy_to_user(uinsns, img, len))
2236 return -EFAULT;
2237 uinsns += len;
2238 free -= len;
2239 if (!free)
2240 break;
2241 }
2242 } else {
2243 if (copy_to_user(uinsns, prog->bpf_func, ulen))
2244 return -EFAULT;
2245 }
Jiong Wangfcfb1262018-01-16 16:05:19 -08002246 } else {
2247 info.jited_prog_insns = 0;
2248 }
Jakub Kicinski675fc272017-12-27 18:39:09 -08002249 }
2250
Sandipan Dasdbecd732018-05-24 12:26:48 +05302251 ulen = info.nr_jited_ksyms;
Song Liuff1889f2018-11-02 10:16:17 -07002252 info.nr_jited_ksyms = prog->aux->func_cnt ? : 1;
Song Liu7a5725d2018-12-10 11:17:50 -08002253 if (ulen) {
Sandipan Dasdbecd732018-05-24 12:26:48 +05302254 if (bpf_dump_raw_ok()) {
Song Liuff1889f2018-11-02 10:16:17 -07002255 unsigned long ksym_addr;
Sandipan Dasdbecd732018-05-24 12:26:48 +05302256 u64 __user *user_ksyms;
Sandipan Dasdbecd732018-05-24 12:26:48 +05302257 u32 i;
2258
2259 /* copy the address of the kernel symbol
2260 * corresponding to each function
2261 */
2262 ulen = min_t(u32, info.nr_jited_ksyms, ulen);
2263 user_ksyms = u64_to_user_ptr(info.jited_ksyms);
Song Liuff1889f2018-11-02 10:16:17 -07002264 if (prog->aux->func_cnt) {
2265 for (i = 0; i < ulen; i++) {
2266 ksym_addr = (unsigned long)
2267 prog->aux->func[i]->bpf_func;
2268 if (put_user((u64) ksym_addr,
2269 &user_ksyms[i]))
2270 return -EFAULT;
2271 }
2272 } else {
2273 ksym_addr = (unsigned long) prog->bpf_func;
2274 if (put_user((u64) ksym_addr, &user_ksyms[0]))
Sandipan Dasdbecd732018-05-24 12:26:48 +05302275 return -EFAULT;
2276 }
2277 } else {
2278 info.jited_ksyms = 0;
2279 }
2280 }
2281
Sandipan Das815581c2018-05-24 12:26:52 +05302282 ulen = info.nr_jited_func_lens;
Song Liuff1889f2018-11-02 10:16:17 -07002283 info.nr_jited_func_lens = prog->aux->func_cnt ? : 1;
Song Liu7a5725d2018-12-10 11:17:50 -08002284 if (ulen) {
Sandipan Das815581c2018-05-24 12:26:52 +05302285 if (bpf_dump_raw_ok()) {
2286 u32 __user *user_lens;
2287 u32 func_len, i;
2288
2289 /* copy the JITed image lengths for each function */
2290 ulen = min_t(u32, info.nr_jited_func_lens, ulen);
2291 user_lens = u64_to_user_ptr(info.jited_func_lens);
Song Liuff1889f2018-11-02 10:16:17 -07002292 if (prog->aux->func_cnt) {
2293 for (i = 0; i < ulen; i++) {
2294 func_len =
2295 prog->aux->func[i]->jited_len;
2296 if (put_user(func_len, &user_lens[i]))
2297 return -EFAULT;
2298 }
2299 } else {
2300 func_len = prog->jited_len;
2301 if (put_user(func_len, &user_lens[0]))
Sandipan Das815581c2018-05-24 12:26:52 +05302302 return -EFAULT;
2303 }
2304 } else {
2305 info.jited_func_lens = 0;
2306 }
2307 }
2308
Martin KaFai Lau73372242018-12-05 17:35:43 -08002309 if (prog->aux->btf)
Yonghong Song838e9692018-11-19 15:29:11 -08002310 info.btf_id = btf_id(prog->aux->btf);
2311
Yonghong Song11d8b822018-12-10 14:14:08 -08002312 ulen = info.nr_func_info;
2313 info.nr_func_info = prog->aux->func_info_cnt;
2314 if (info.nr_func_info && ulen) {
Martin KaFai Lau9e794162018-12-12 10:18:21 -08002315 char __user *user_finfo;
Yonghong Song838e9692018-11-19 15:29:11 -08002316
Martin KaFai Lau9e794162018-12-12 10:18:21 -08002317 user_finfo = u64_to_user_ptr(info.func_info);
2318 ulen = min_t(u32, info.nr_func_info, ulen);
2319 if (copy_to_user(user_finfo, prog->aux->func_info,
2320 info.func_info_rec_size * ulen))
2321 return -EFAULT;
Yonghong Song838e9692018-11-19 15:29:11 -08002322 }
2323
Yonghong Song11d8b822018-12-10 14:14:08 -08002324 ulen = info.nr_line_info;
2325 info.nr_line_info = prog->aux->nr_linfo;
2326 if (info.nr_line_info && ulen) {
Martin KaFai Lau9e794162018-12-12 10:18:21 -08002327 __u8 __user *user_linfo;
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002328
Martin KaFai Lau9e794162018-12-12 10:18:21 -08002329 user_linfo = u64_to_user_ptr(info.line_info);
2330 ulen = min_t(u32, info.nr_line_info, ulen);
2331 if (copy_to_user(user_linfo, prog->aux->linfo,
2332 info.line_info_rec_size * ulen))
2333 return -EFAULT;
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002334 }
2335
Yonghong Song11d8b822018-12-10 14:14:08 -08002336 ulen = info.nr_jited_line_info;
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002337 if (prog->aux->jited_linfo)
Yonghong Song11d8b822018-12-10 14:14:08 -08002338 info.nr_jited_line_info = prog->aux->nr_linfo;
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002339 else
Yonghong Song11d8b822018-12-10 14:14:08 -08002340 info.nr_jited_line_info = 0;
2341 if (info.nr_jited_line_info && ulen) {
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002342 if (bpf_dump_raw_ok()) {
2343 __u64 __user *user_linfo;
2344 u32 i;
2345
2346 user_linfo = u64_to_user_ptr(info.jited_line_info);
Yonghong Song11d8b822018-12-10 14:14:08 -08002347 ulen = min_t(u32, info.nr_jited_line_info, ulen);
Martin KaFai Lauc454a462018-12-07 16:42:25 -08002348 for (i = 0; i < ulen; i++) {
2349 if (put_user((__u64)(long)prog->aux->jited_linfo[i],
2350 &user_linfo[i]))
2351 return -EFAULT;
2352 }
2353 } else {
2354 info.jited_line_info = 0;
2355 }
2356 }
2357
Song Liuc872bdb2018-12-12 09:37:46 -08002358 ulen = info.nr_prog_tags;
2359 info.nr_prog_tags = prog->aux->func_cnt ? : 1;
2360 if (ulen) {
2361 __u8 __user (*user_prog_tags)[BPF_TAG_SIZE];
2362 u32 i;
2363
2364 user_prog_tags = u64_to_user_ptr(info.prog_tags);
2365 ulen = min_t(u32, info.nr_prog_tags, ulen);
2366 if (prog->aux->func_cnt) {
2367 for (i = 0; i < ulen; i++) {
2368 if (copy_to_user(user_prog_tags[i],
2369 prog->aux->func[i]->tag,
2370 BPF_TAG_SIZE))
2371 return -EFAULT;
2372 }
2373 } else {
2374 if (copy_to_user(user_prog_tags[0],
2375 prog->tag, BPF_TAG_SIZE))
2376 return -EFAULT;
2377 }
2378 }
2379
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002380done:
2381 if (copy_to_user(uinfo, &info, info_len) ||
2382 put_user(info_len, &uattr->info.info_len))
2383 return -EFAULT;
2384
2385 return 0;
2386}
2387
2388static int bpf_map_get_info_by_fd(struct bpf_map *map,
2389 const union bpf_attr *attr,
2390 union bpf_attr __user *uattr)
2391{
2392 struct bpf_map_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2393 struct bpf_map_info info = {};
2394 u32 info_len = attr->info.info_len;
2395 int err;
2396
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002397 err = bpf_check_uarg_tail_zero(uinfo, sizeof(info), info_len);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002398 if (err)
2399 return err;
2400 info_len = min_t(u32, sizeof(info), info_len);
2401
2402 info.type = map->map_type;
2403 info.id = map->id;
2404 info.key_size = map->key_size;
2405 info.value_size = map->value_size;
2406 info.max_entries = map->max_entries;
2407 info.map_flags = map->map_flags;
Martin KaFai Lauad5b1772017-09-27 14:37:53 -07002408 memcpy(info.name, map->name, sizeof(map->name));
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002409
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002410 if (map->btf) {
2411 info.btf_id = btf_id(map->btf);
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -07002412 info.btf_key_type_id = map->btf_key_type_id;
2413 info.btf_value_type_id = map->btf_value_type_id;
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002414 }
2415
Jakub Kicinski52775b32018-01-17 19:13:28 -08002416 if (bpf_map_is_dev_bound(map)) {
2417 err = bpf_map_offload_info_fill(&info, map);
2418 if (err)
2419 return err;
2420 }
2421
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002422 if (copy_to_user(uinfo, &info, info_len) ||
2423 put_user(info_len, &uattr->info.info_len))
2424 return -EFAULT;
2425
2426 return 0;
2427}
2428
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002429static int bpf_btf_get_info_by_fd(struct btf *btf,
2430 const union bpf_attr *attr,
2431 union bpf_attr __user *uattr)
2432{
2433 struct bpf_btf_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2434 u32 info_len = attr->info.info_len;
2435 int err;
2436
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002437 err = bpf_check_uarg_tail_zero(uinfo, sizeof(*uinfo), info_len);
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002438 if (err)
2439 return err;
2440
2441 return btf_get_info_by_fd(btf, attr, uattr);
2442}
2443
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002444#define BPF_OBJ_GET_INFO_BY_FD_LAST_FIELD info.info
2445
2446static int bpf_obj_get_info_by_fd(const union bpf_attr *attr,
2447 union bpf_attr __user *uattr)
2448{
2449 int ufd = attr->info.bpf_fd;
2450 struct fd f;
2451 int err;
2452
2453 if (CHECK_ATTR(BPF_OBJ_GET_INFO_BY_FD))
2454 return -EINVAL;
2455
2456 f = fdget(ufd);
2457 if (!f.file)
2458 return -EBADFD;
2459
2460 if (f.file->f_op == &bpf_prog_fops)
2461 err = bpf_prog_get_info_by_fd(f.file->private_data, attr,
2462 uattr);
2463 else if (f.file->f_op == &bpf_map_fops)
2464 err = bpf_map_get_info_by_fd(f.file->private_data, attr,
2465 uattr);
Martin KaFai Lau60197cf2018-04-18 15:56:02 -07002466 else if (f.file->f_op == &btf_fops)
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002467 err = bpf_btf_get_info_by_fd(f.file->private_data, attr, uattr);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002468 else
2469 err = -EINVAL;
2470
2471 fdput(f);
2472 return err;
2473}
2474
Martin KaFai Lauf56a6532018-04-18 15:56:01 -07002475#define BPF_BTF_LOAD_LAST_FIELD btf_log_level
2476
2477static int bpf_btf_load(const union bpf_attr *attr)
2478{
2479 if (CHECK_ATTR(BPF_BTF_LOAD))
2480 return -EINVAL;
2481
2482 if (!capable(CAP_SYS_ADMIN))
2483 return -EPERM;
2484
2485 return btf_new_fd(attr);
2486}
2487
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002488#define BPF_BTF_GET_FD_BY_ID_LAST_FIELD btf_id
2489
2490static int bpf_btf_get_fd_by_id(const union bpf_attr *attr)
2491{
2492 if (CHECK_ATTR(BPF_BTF_GET_FD_BY_ID))
2493 return -EINVAL;
2494
2495 if (!capable(CAP_SYS_ADMIN))
2496 return -EPERM;
2497
2498 return btf_get_fd_by_id(attr->btf_id);
2499}
2500
Yonghong Song41bdc4b2018-05-24 11:21:09 -07002501static int bpf_task_fd_query_copy(const union bpf_attr *attr,
2502 union bpf_attr __user *uattr,
2503 u32 prog_id, u32 fd_type,
2504 const char *buf, u64 probe_offset,
2505 u64 probe_addr)
2506{
2507 char __user *ubuf = u64_to_user_ptr(attr->task_fd_query.buf);
2508 u32 len = buf ? strlen(buf) : 0, input_len;
2509 int err = 0;
2510
2511 if (put_user(len, &uattr->task_fd_query.buf_len))
2512 return -EFAULT;
2513 input_len = attr->task_fd_query.buf_len;
2514 if (input_len && ubuf) {
2515 if (!len) {
2516 /* nothing to copy, just make ubuf NULL terminated */
2517 char zero = '\0';
2518
2519 if (put_user(zero, ubuf))
2520 return -EFAULT;
2521 } else if (input_len >= len + 1) {
2522 /* ubuf can hold the string with NULL terminator */
2523 if (copy_to_user(ubuf, buf, len + 1))
2524 return -EFAULT;
2525 } else {
2526 /* ubuf cannot hold the string with NULL terminator,
2527 * do a partial copy with NULL terminator.
2528 */
2529 char zero = '\0';
2530
2531 err = -ENOSPC;
2532 if (copy_to_user(ubuf, buf, input_len - 1))
2533 return -EFAULT;
2534 if (put_user(zero, ubuf + input_len - 1))
2535 return -EFAULT;
2536 }
2537 }
2538
2539 if (put_user(prog_id, &uattr->task_fd_query.prog_id) ||
2540 put_user(fd_type, &uattr->task_fd_query.fd_type) ||
2541 put_user(probe_offset, &uattr->task_fd_query.probe_offset) ||
2542 put_user(probe_addr, &uattr->task_fd_query.probe_addr))
2543 return -EFAULT;
2544
2545 return err;
2546}
2547
2548#define BPF_TASK_FD_QUERY_LAST_FIELD task_fd_query.probe_addr
2549
2550static int bpf_task_fd_query(const union bpf_attr *attr,
2551 union bpf_attr __user *uattr)
2552{
2553 pid_t pid = attr->task_fd_query.pid;
2554 u32 fd = attr->task_fd_query.fd;
2555 const struct perf_event *event;
2556 struct files_struct *files;
2557 struct task_struct *task;
2558 struct file *file;
2559 int err;
2560
2561 if (CHECK_ATTR(BPF_TASK_FD_QUERY))
2562 return -EINVAL;
2563
2564 if (!capable(CAP_SYS_ADMIN))
2565 return -EPERM;
2566
2567 if (attr->task_fd_query.flags != 0)
2568 return -EINVAL;
2569
2570 task = get_pid_task(find_vpid(pid), PIDTYPE_PID);
2571 if (!task)
2572 return -ENOENT;
2573
2574 files = get_files_struct(task);
2575 put_task_struct(task);
2576 if (!files)
2577 return -ENOENT;
2578
2579 err = 0;
2580 spin_lock(&files->file_lock);
2581 file = fcheck_files(files, fd);
2582 if (!file)
2583 err = -EBADF;
2584 else
2585 get_file(file);
2586 spin_unlock(&files->file_lock);
2587 put_files_struct(files);
2588
2589 if (err)
2590 goto out;
2591
2592 if (file->f_op == &bpf_raw_tp_fops) {
2593 struct bpf_raw_tracepoint *raw_tp = file->private_data;
2594 struct bpf_raw_event_map *btp = raw_tp->btp;
2595
2596 err = bpf_task_fd_query_copy(attr, uattr,
2597 raw_tp->prog->aux->id,
2598 BPF_FD_TYPE_RAW_TRACEPOINT,
2599 btp->tp->name, 0, 0);
2600 goto put_file;
2601 }
2602
2603 event = perf_get_event(file);
2604 if (!IS_ERR(event)) {
2605 u64 probe_offset, probe_addr;
2606 u32 prog_id, fd_type;
2607 const char *buf;
2608
2609 err = bpf_get_perf_event_info(event, &prog_id, &fd_type,
2610 &buf, &probe_offset,
2611 &probe_addr);
2612 if (!err)
2613 err = bpf_task_fd_query_copy(attr, uattr, prog_id,
2614 fd_type, buf,
2615 probe_offset,
2616 probe_addr);
2617 goto put_file;
2618 }
2619
2620 err = -ENOTSUPP;
2621put_file:
2622 fput(file);
2623out:
2624 return err;
2625}
2626
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002627SYSCALL_DEFINE3(bpf, int, cmd, union bpf_attr __user *, uattr, unsigned int, size)
2628{
2629 union bpf_attr attr = {};
2630 int err;
2631
Chenbo Feng0fa4fe82018-03-19 17:57:27 -07002632 if (sysctl_unprivileged_bpf_disabled && !capable(CAP_SYS_ADMIN))
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002633 return -EPERM;
2634
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002635 err = bpf_check_uarg_tail_zero(uattr, sizeof(attr), size);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002636 if (err)
2637 return err;
2638 size = min_t(u32, size, sizeof(attr));
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002639
2640 /* copy attributes from user space, may be less than sizeof(bpf_attr) */
2641 if (copy_from_user(&attr, uattr, size) != 0)
2642 return -EFAULT;
2643
Chenbo Fengafdb09c2017-10-18 13:00:24 -07002644 err = security_bpf(cmd, &attr, size);
2645 if (err < 0)
2646 return err;
2647
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002648 switch (cmd) {
2649 case BPF_MAP_CREATE:
2650 err = map_create(&attr);
2651 break;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -07002652 case BPF_MAP_LOOKUP_ELEM:
2653 err = map_lookup_elem(&attr);
2654 break;
2655 case BPF_MAP_UPDATE_ELEM:
2656 err = map_update_elem(&attr);
2657 break;
2658 case BPF_MAP_DELETE_ELEM:
2659 err = map_delete_elem(&attr);
2660 break;
2661 case BPF_MAP_GET_NEXT_KEY:
2662 err = map_get_next_key(&attr);
2663 break;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07002664 case BPF_PROG_LOAD:
Yonghong Song838e9692018-11-19 15:29:11 -08002665 err = bpf_prog_load(&attr, uattr);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07002666 break;
Daniel Borkmannb2197752015-10-29 14:58:09 +01002667 case BPF_OBJ_PIN:
2668 err = bpf_obj_pin(&attr);
2669 break;
2670 case BPF_OBJ_GET:
2671 err = bpf_obj_get(&attr);
2672 break;
Daniel Mackf4324552016-11-23 16:52:27 +01002673 case BPF_PROG_ATTACH:
2674 err = bpf_prog_attach(&attr);
2675 break;
2676 case BPF_PROG_DETACH:
2677 err = bpf_prog_detach(&attr);
2678 break;
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07002679 case BPF_PROG_QUERY:
2680 err = bpf_prog_query(&attr, uattr);
2681 break;
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07002682 case BPF_PROG_TEST_RUN:
2683 err = bpf_prog_test_run(&attr, uattr);
2684 break;
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07002685 case BPF_PROG_GET_NEXT_ID:
2686 err = bpf_obj_get_next_id(&attr, uattr,
2687 &prog_idr, &prog_idr_lock);
2688 break;
2689 case BPF_MAP_GET_NEXT_ID:
2690 err = bpf_obj_get_next_id(&attr, uattr,
2691 &map_idr, &map_idr_lock);
2692 break;
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07002693 case BPF_PROG_GET_FD_BY_ID:
2694 err = bpf_prog_get_fd_by_id(&attr);
2695 break;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07002696 case BPF_MAP_GET_FD_BY_ID:
2697 err = bpf_map_get_fd_by_id(&attr);
2698 break;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002699 case BPF_OBJ_GET_INFO_BY_FD:
2700 err = bpf_obj_get_info_by_fd(&attr, uattr);
2701 break;
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07002702 case BPF_RAW_TRACEPOINT_OPEN:
2703 err = bpf_raw_tracepoint_open(&attr);
2704 break;
Martin KaFai Lauf56a6532018-04-18 15:56:01 -07002705 case BPF_BTF_LOAD:
2706 err = bpf_btf_load(&attr);
2707 break;
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002708 case BPF_BTF_GET_FD_BY_ID:
2709 err = bpf_btf_get_fd_by_id(&attr);
2710 break;
Yonghong Song41bdc4b2018-05-24 11:21:09 -07002711 case BPF_TASK_FD_QUERY:
2712 err = bpf_task_fd_query(&attr, uattr);
2713 break;
Mauricio Vasquez Bbd513cd2018-10-18 15:16:30 +02002714 case BPF_MAP_LOOKUP_AND_DELETE_ELEM:
2715 err = map_lookup_and_delete_elem(&attr);
2716 break;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002717 default:
2718 err = -EINVAL;
2719 break;
2720 }
2721
2722 return err;
2723}