blob: d10ecd78105fa66d2ffbd6b27c42fec2a6e6b09c [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>
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -070033#include <linux/btf.h>
Mark Rutland9ef09e32018-05-03 17:04:59 +010034#include <linux/nospec.h>
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070035
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -070036#define IS_FD_ARRAY(map) ((map)->map_type == BPF_MAP_TYPE_PROG_ARRAY || \
37 (map)->map_type == BPF_MAP_TYPE_PERF_EVENT_ARRAY || \
38 (map)->map_type == BPF_MAP_TYPE_CGROUP_ARRAY || \
39 (map)->map_type == BPF_MAP_TYPE_ARRAY_OF_MAPS)
40#define IS_FD_HASH(map) ((map)->map_type == BPF_MAP_TYPE_HASH_OF_MAPS)
41#define IS_FD_MAP(map) (IS_FD_ARRAY(map) || IS_FD_HASH(map))
42
Chenbo Feng6e71b042017-10-18 13:00:22 -070043#define BPF_OBJ_FLAG_MASK (BPF_F_RDONLY | BPF_F_WRONLY)
44
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -080045DEFINE_PER_CPU(int, bpf_prog_active);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -070046static DEFINE_IDR(prog_idr);
47static DEFINE_SPINLOCK(prog_idr_lock);
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -070048static DEFINE_IDR(map_idr);
49static DEFINE_SPINLOCK(map_idr_lock);
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -080050
Alexei Starovoitov1be7f752015-10-07 22:23:21 -070051int sysctl_unprivileged_bpf_disabled __read_mostly;
52
Johannes Berg40077e02017-04-11 15:34:58 +020053static const struct bpf_map_ops * const bpf_map_types[] = {
54#define BPF_PROG_TYPE(_id, _ops)
55#define BPF_MAP_TYPE(_id, _ops) \
56 [_id] = &_ops,
57#include <linux/bpf_types.h>
58#undef BPF_PROG_TYPE
59#undef BPF_MAP_TYPE
60};
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070061
Mickaël Salaün752ba562017-08-07 20:45:20 +020062/*
63 * If we're handed a bigger struct than we know of, ensure all the unknown bits
64 * are 0 - i.e. new user-space does not rely on any kernel feature extensions
65 * we don't know about yet.
66 *
67 * There is a ToCToU between this function call and the following
68 * copy_from_user() call. However, this is not a concern since this function is
69 * meant to be a future-proofing of bits.
70 */
Martin KaFai Laudcab51f2018-05-22 15:03:31 -070071int bpf_check_uarg_tail_zero(void __user *uaddr,
72 size_t expected_size,
73 size_t actual_size)
Mickaël Salaün58291a72017-08-07 20:45:19 +020074{
75 unsigned char __user *addr;
76 unsigned char __user *end;
77 unsigned char val;
78 int err;
79
Mickaël Salaün752ba562017-08-07 20:45:20 +020080 if (unlikely(actual_size > PAGE_SIZE)) /* silly large */
81 return -E2BIG;
82
83 if (unlikely(!access_ok(VERIFY_READ, uaddr, actual_size)))
84 return -EFAULT;
85
Mickaël Salaün58291a72017-08-07 20:45:19 +020086 if (actual_size <= expected_size)
87 return 0;
88
89 addr = uaddr + expected_size;
90 end = uaddr + actual_size;
91
92 for (; addr < end; addr++) {
93 err = get_user(val, addr);
94 if (err)
95 return err;
96 if (val)
97 return -E2BIG;
98 }
99
100 return 0;
101}
102
Jakub Kicinskia3884572018-01-11 20:29:09 -0800103const struct bpf_map_ops bpf_map_offload_ops = {
104 .map_alloc = bpf_map_offload_map_alloc,
105 .map_free = bpf_map_offload_map_free,
106};
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
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700184static int bpf_map_charge_memlock(struct bpf_map *map)
185{
186 struct user_struct *user = get_current_user();
187 unsigned long memlock_limit;
188
189 memlock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
190
191 atomic_long_add(map->pages, &user->locked_vm);
192
193 if (atomic_long_read(&user->locked_vm) > memlock_limit) {
194 atomic_long_sub(map->pages, &user->locked_vm);
195 free_uid(user);
196 return -EPERM;
197 }
198 map->user = user;
199 return 0;
200}
201
202static void bpf_map_uncharge_memlock(struct bpf_map *map)
203{
204 struct user_struct *user = map->user;
205
206 atomic_long_sub(map->pages, &user->locked_vm);
207 free_uid(user);
208}
209
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700210static int bpf_map_alloc_id(struct bpf_map *map)
211{
212 int id;
213
Shaohua Lib76354c2018-03-27 11:53:21 -0700214 idr_preload(GFP_KERNEL);
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700215 spin_lock_bh(&map_idr_lock);
216 id = idr_alloc_cyclic(&map_idr, map, 1, INT_MAX, GFP_ATOMIC);
217 if (id > 0)
218 map->id = id;
219 spin_unlock_bh(&map_idr_lock);
Shaohua Lib76354c2018-03-27 11:53:21 -0700220 idr_preload_end();
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700221
222 if (WARN_ON_ONCE(!id))
223 return -ENOSPC;
224
225 return id > 0 ? 0 : id;
226}
227
Jakub Kicinskia3884572018-01-11 20:29:09 -0800228void bpf_map_free_id(struct bpf_map *map, bool do_idr_lock)
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700229{
Eric Dumazet930651a2017-09-19 09:15:59 -0700230 unsigned long flags;
231
Jakub Kicinskia3884572018-01-11 20:29:09 -0800232 /* Offloaded maps are removed from the IDR store when their device
233 * disappears - even if someone holds an fd to them they are unusable,
234 * the memory is gone, all ops will fail; they are simply waiting for
235 * refcnt to drop to be freed.
236 */
237 if (!map->id)
238 return;
239
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700240 if (do_idr_lock)
Eric Dumazet930651a2017-09-19 09:15:59 -0700241 spin_lock_irqsave(&map_idr_lock, flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700242 else
243 __acquire(&map_idr_lock);
244
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700245 idr_remove(&map_idr, map->id);
Jakub Kicinskia3884572018-01-11 20:29:09 -0800246 map->id = 0;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700247
248 if (do_idr_lock)
Eric Dumazet930651a2017-09-19 09:15:59 -0700249 spin_unlock_irqrestore(&map_idr_lock, flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700250 else
251 __release(&map_idr_lock);
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700252}
253
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700254/* called from workqueue */
255static void bpf_map_free_deferred(struct work_struct *work)
256{
257 struct bpf_map *map = container_of(work, struct bpf_map, work);
258
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700259 bpf_map_uncharge_memlock(map);
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700260 security_bpf_map_free(map);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700261 /* implementation dependent freeing */
262 map->ops->map_free(map);
263}
264
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100265static void bpf_map_put_uref(struct bpf_map *map)
266{
267 if (atomic_dec_and_test(&map->usercnt)) {
John Fastabendba6b8de2018-04-23 15:39:23 -0700268 if (map->ops->map_release_uref)
269 map->ops->map_release_uref(map);
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100270 }
271}
272
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700273/* decrement map refcnt and schedule it for freeing via workqueue
274 * (unrelying map implementation ops->map_free() might sleep)
275 */
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700276static void __bpf_map_put(struct bpf_map *map, bool do_idr_lock)
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700277{
278 if (atomic_dec_and_test(&map->refcnt)) {
Martin KaFai Lau34ad5582017-06-05 12:15:48 -0700279 /* bpf_map_free_id() must be called first */
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700280 bpf_map_free_id(map, do_idr_lock);
Martin KaFai Lau78958fc2018-05-04 14:49:51 -0700281 btf_put(map->btf);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700282 INIT_WORK(&map->work, bpf_map_free_deferred);
283 schedule_work(&map->work);
284 }
285}
286
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700287void bpf_map_put(struct bpf_map *map)
288{
289 __bpf_map_put(map, true);
290}
Jakub Kicinski630a4d32018-05-03 18:37:09 -0700291EXPORT_SYMBOL_GPL(bpf_map_put);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700292
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100293void bpf_map_put_with_uref(struct bpf_map *map)
294{
295 bpf_map_put_uref(map);
296 bpf_map_put(map);
297}
298
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700299static int bpf_map_release(struct inode *inode, struct file *filp)
300{
Daniel Borkmann61d1b6a2016-06-15 22:47:12 +0200301 struct bpf_map *map = filp->private_data;
302
303 if (map->ops->map_release)
304 map->ops->map_release(map, filp);
305
306 bpf_map_put_with_uref(map);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700307 return 0;
308}
309
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100310#ifdef CONFIG_PROC_FS
311static void bpf_map_show_fdinfo(struct seq_file *m, struct file *filp)
312{
313 const struct bpf_map *map = filp->private_data;
Daniel Borkmann21116b72016-11-26 01:28:07 +0100314 const struct bpf_array *array;
315 u32 owner_prog_type = 0;
Daniel Borkmann9780c0a2017-07-02 02:13:28 +0200316 u32 owner_jited = 0;
Daniel Borkmann21116b72016-11-26 01:28:07 +0100317
318 if (map->map_type == BPF_MAP_TYPE_PROG_ARRAY) {
319 array = container_of(map, struct bpf_array, map);
320 owner_prog_type = array->owner_prog_type;
Daniel Borkmann9780c0a2017-07-02 02:13:28 +0200321 owner_jited = array->owner_jited;
Daniel Borkmann21116b72016-11-26 01:28:07 +0100322 }
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100323
324 seq_printf(m,
325 "map_type:\t%u\n"
326 "key_size:\t%u\n"
327 "value_size:\t%u\n"
Daniel Borkmann322cea22016-03-25 00:30:25 +0100328 "max_entries:\t%u\n"
Daniel Borkmann21116b72016-11-26 01:28:07 +0100329 "map_flags:\t%#x\n"
Daniel Borkmann4316b402018-06-02 23:06:34 +0200330 "memlock:\t%llu\n"
331 "map_id:\t%u\n",
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100332 map->map_type,
333 map->key_size,
334 map->value_size,
Daniel Borkmann322cea22016-03-25 00:30:25 +0100335 map->max_entries,
Daniel Borkmann21116b72016-11-26 01:28:07 +0100336 map->map_flags,
Daniel Borkmann4316b402018-06-02 23:06:34 +0200337 map->pages * 1ULL << PAGE_SHIFT,
338 map->id);
Daniel Borkmann21116b72016-11-26 01:28:07 +0100339
Daniel Borkmann9780c0a2017-07-02 02:13:28 +0200340 if (owner_prog_type) {
Daniel Borkmann21116b72016-11-26 01:28:07 +0100341 seq_printf(m, "owner_prog_type:\t%u\n",
342 owner_prog_type);
Daniel Borkmann9780c0a2017-07-02 02:13:28 +0200343 seq_printf(m, "owner_jited:\t%u\n",
344 owner_jited);
345 }
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100346}
347#endif
348
Chenbo Feng6e71b042017-10-18 13:00:22 -0700349static ssize_t bpf_dummy_read(struct file *filp, char __user *buf, size_t siz,
350 loff_t *ppos)
351{
352 /* We need this handler such that alloc_file() enables
353 * f_mode with FMODE_CAN_READ.
354 */
355 return -EINVAL;
356}
357
358static ssize_t bpf_dummy_write(struct file *filp, const char __user *buf,
359 size_t siz, loff_t *ppos)
360{
361 /* We need this handler such that alloc_file() enables
362 * f_mode with FMODE_CAN_WRITE.
363 */
364 return -EINVAL;
365}
366
Chenbo Fengf66e4482017-10-18 13:00:26 -0700367const struct file_operations bpf_map_fops = {
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100368#ifdef CONFIG_PROC_FS
369 .show_fdinfo = bpf_map_show_fdinfo,
370#endif
371 .release = bpf_map_release,
Chenbo Feng6e71b042017-10-18 13:00:22 -0700372 .read = bpf_dummy_read,
373 .write = bpf_dummy_write,
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700374};
375
Chenbo Feng6e71b042017-10-18 13:00:22 -0700376int bpf_map_new_fd(struct bpf_map *map, int flags)
Daniel Borkmannaa797812015-10-29 14:58:06 +0100377{
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700378 int ret;
379
380 ret = security_bpf_map(map, OPEN_FMODE(flags));
381 if (ret < 0)
382 return ret;
383
Daniel Borkmannaa797812015-10-29 14:58:06 +0100384 return anon_inode_getfd("bpf-map", &bpf_map_fops, map,
Chenbo Feng6e71b042017-10-18 13:00:22 -0700385 flags | O_CLOEXEC);
386}
387
388int bpf_get_file_flag(int flags)
389{
390 if ((flags & BPF_F_RDONLY) && (flags & BPF_F_WRONLY))
391 return -EINVAL;
392 if (flags & BPF_F_RDONLY)
393 return O_RDONLY;
394 if (flags & BPF_F_WRONLY)
395 return O_WRONLY;
396 return O_RDWR;
Daniel Borkmannaa797812015-10-29 14:58:06 +0100397}
398
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700399/* helper macro to check that unused fields 'union bpf_attr' are zero */
400#define CHECK_ATTR(CMD) \
401 memchr_inv((void *) &attr->CMD##_LAST_FIELD + \
402 sizeof(attr->CMD##_LAST_FIELD), 0, \
403 sizeof(*attr) - \
404 offsetof(union bpf_attr, CMD##_LAST_FIELD) - \
405 sizeof(attr->CMD##_LAST_FIELD)) != NULL
406
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -0700407/* dst and src must have at least BPF_OBJ_NAME_LEN number of bytes.
408 * Return 0 on success and < 0 on error.
409 */
410static int bpf_obj_name_cpy(char *dst, const char *src)
411{
412 const char *end = src + BPF_OBJ_NAME_LEN;
413
Martin KaFai Lau473d9732017-10-05 21:52:11 -0700414 memset(dst, 0, BPF_OBJ_NAME_LEN);
415
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -0700416 /* Copy all isalnum() and '_' char */
417 while (src < end && *src) {
418 if (!isalnum(*src) && *src != '_')
419 return -EINVAL;
420 *dst++ = *src++;
421 }
422
423 /* No '\0' found in BPF_OBJ_NAME_LEN number of bytes */
424 if (src == end)
425 return -EINVAL;
426
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -0700427 return 0;
428}
429
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700430#define BPF_MAP_CREATE_LAST_FIELD btf_value_type_id
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700431/* called via syscall */
432static int map_create(union bpf_attr *attr)
433{
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700434 int numa_node = bpf_map_attr_numa_node(attr);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700435 struct bpf_map *map;
Chenbo Feng6e71b042017-10-18 13:00:22 -0700436 int f_flags;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700437 int err;
438
439 err = CHECK_ATTR(BPF_MAP_CREATE);
440 if (err)
441 return -EINVAL;
442
Chenbo Feng6e71b042017-10-18 13:00:22 -0700443 f_flags = bpf_get_file_flag(attr->map_flags);
444 if (f_flags < 0)
445 return f_flags;
446
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700447 if (numa_node != NUMA_NO_NODE &&
Eric Dumazet96e5ae42017-09-04 22:41:02 -0700448 ((unsigned int)numa_node >= nr_node_ids ||
449 !node_online(numa_node)))
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700450 return -EINVAL;
451
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700452 /* find map type and init map: hashtable vs rbtree vs bloom vs ... */
453 map = find_and_alloc_map(attr);
454 if (IS_ERR(map))
455 return PTR_ERR(map);
456
Martin KaFai Lauad5b1772017-09-27 14:37:53 -0700457 err = bpf_obj_name_cpy(map->name, attr->map_name);
458 if (err)
459 goto free_map_nouncharge;
460
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700461 atomic_set(&map->refcnt, 1);
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100462 atomic_set(&map->usercnt, 1);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700463
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700464 if (bpf_map_support_seq_show(map) &&
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700465 (attr->btf_key_type_id || attr->btf_value_type_id)) {
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700466 struct btf *btf;
467
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700468 if (!attr->btf_key_type_id || !attr->btf_value_type_id) {
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700469 err = -EINVAL;
470 goto free_map_nouncharge;
471 }
472
473 btf = btf_get_by_fd(attr->btf_fd);
474 if (IS_ERR(btf)) {
475 err = PTR_ERR(btf);
476 goto free_map_nouncharge;
477 }
478
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700479 err = map->ops->map_check_btf(map, btf, attr->btf_key_type_id,
480 attr->btf_value_type_id);
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700481 if (err) {
482 btf_put(btf);
483 goto free_map_nouncharge;
484 }
485
486 map->btf = btf;
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700487 map->btf_key_type_id = attr->btf_key_type_id;
488 map->btf_value_type_id = attr->btf_value_type_id;
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700489 }
490
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700491 err = security_bpf_map_alloc(map);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700492 if (err)
Daniel Borkmann20b2b242016-11-04 00:56:31 +0100493 goto free_map_nouncharge;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700494
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700495 err = bpf_map_charge_memlock(map);
496 if (err)
497 goto free_map_sec;
498
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700499 err = bpf_map_alloc_id(map);
500 if (err)
501 goto free_map;
502
Chenbo Feng6e71b042017-10-18 13:00:22 -0700503 err = bpf_map_new_fd(map, f_flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700504 if (err < 0) {
505 /* failed to allocate fd.
506 * bpf_map_put() is needed because the above
507 * bpf_map_alloc_id() has published the map
508 * to the userspace and the userspace may
509 * have refcnt-ed it through BPF_MAP_GET_FD_BY_ID.
510 */
511 bpf_map_put(map);
512 return err;
513 }
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700514
515 return err;
516
517free_map:
Daniel Borkmann20b2b242016-11-04 00:56:31 +0100518 bpf_map_uncharge_memlock(map);
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700519free_map_sec:
520 security_bpf_map_free(map);
Daniel Borkmann20b2b242016-11-04 00:56:31 +0100521free_map_nouncharge:
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700522 btf_put(map->btf);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700523 map->ops->map_free(map);
524 return err;
525}
526
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700527/* if error is returned, fd is released.
528 * On success caller should complete fd access with matching fdput()
529 */
Daniel Borkmannc2101292015-10-29 14:58:07 +0100530struct bpf_map *__bpf_map_get(struct fd f)
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700531{
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700532 if (!f.file)
533 return ERR_PTR(-EBADF);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700534 if (f.file->f_op != &bpf_map_fops) {
535 fdput(f);
536 return ERR_PTR(-EINVAL);
537 }
538
Daniel Borkmannc2101292015-10-29 14:58:07 +0100539 return f.file->private_data;
540}
541
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700542/* prog's and map's refcnt limit */
543#define BPF_MAX_REFCNT 32768
544
545struct bpf_map *bpf_map_inc(struct bpf_map *map, bool uref)
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100546{
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700547 if (atomic_inc_return(&map->refcnt) > BPF_MAX_REFCNT) {
548 atomic_dec(&map->refcnt);
549 return ERR_PTR(-EBUSY);
550 }
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100551 if (uref)
552 atomic_inc(&map->usercnt);
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700553 return map;
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100554}
Jakub Kicinski630a4d32018-05-03 18:37:09 -0700555EXPORT_SYMBOL_GPL(bpf_map_inc);
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100556
557struct bpf_map *bpf_map_get_with_uref(u32 ufd)
Daniel Borkmannc2101292015-10-29 14:58:07 +0100558{
559 struct fd f = fdget(ufd);
560 struct bpf_map *map;
561
562 map = __bpf_map_get(f);
563 if (IS_ERR(map))
564 return map;
565
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700566 map = bpf_map_inc(map, true);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100567 fdput(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700568
569 return map;
570}
571
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700572/* map_idr_lock should have been held */
573static struct bpf_map *bpf_map_inc_not_zero(struct bpf_map *map,
574 bool uref)
575{
576 int refold;
577
578 refold = __atomic_add_unless(&map->refcnt, 1, 0);
579
580 if (refold >= BPF_MAX_REFCNT) {
581 __bpf_map_put(map, false);
582 return ERR_PTR(-EBUSY);
583 }
584
585 if (!refold)
586 return ERR_PTR(-ENOENT);
587
588 if (uref)
589 atomic_inc(&map->usercnt);
590
591 return map;
592}
593
Alexei Starovoitovb8cdc052016-03-09 18:56:49 -0800594int __weak bpf_stackmap_copy(struct bpf_map *map, void *key, void *value)
595{
596 return -ENOTSUPP;
597}
598
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700599/* last field in 'union bpf_attr' used by this command */
600#define BPF_MAP_LOOKUP_ELEM_LAST_FIELD value
601
602static int map_lookup_elem(union bpf_attr *attr)
603{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100604 void __user *ukey = u64_to_user_ptr(attr->key);
605 void __user *uvalue = u64_to_user_ptr(attr->value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700606 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700607 struct bpf_map *map;
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800608 void *key, *value, *ptr;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800609 u32 value_size;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200610 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700611 int err;
612
613 if (CHECK_ATTR(BPF_MAP_LOOKUP_ELEM))
614 return -EINVAL;
615
Daniel Borkmann592867b2015-09-08 18:00:09 +0200616 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100617 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700618 if (IS_ERR(map))
619 return PTR_ERR(map);
620
Chenbo Feng6e71b042017-10-18 13:00:22 -0700621 if (!(f.file->f_mode & FMODE_CAN_READ)) {
622 err = -EPERM;
623 goto err_put;
624 }
625
Al Viroe4448ed2017-05-13 18:43:00 -0400626 key = memdup_user(ukey, map->key_size);
627 if (IS_ERR(key)) {
628 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700629 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400630 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700631
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800632 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800633 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH ||
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800634 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY)
635 value_size = round_up(map->value_size, 8) * num_possible_cpus();
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -0700636 else if (IS_FD_MAP(map))
637 value_size = sizeof(u32);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800638 else
639 value_size = map->value_size;
640
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800641 err = -ENOMEM;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800642 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700643 if (!value)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800644 goto free_key;
645
Jakub Kicinskia3884572018-01-11 20:29:09 -0800646 if (bpf_map_is_dev_bound(map)) {
647 err = bpf_map_offload_lookup_elem(map, key, value);
648 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
649 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) {
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800650 err = bpf_percpu_hash_copy(map, key, value);
651 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) {
652 err = bpf_percpu_array_copy(map, key, value);
Alexei Starovoitov557c0c62016-03-07 21:57:17 -0800653 } else if (map->map_type == BPF_MAP_TYPE_STACK_TRACE) {
654 err = bpf_stackmap_copy(map, key, value);
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -0700655 } else if (IS_FD_ARRAY(map)) {
656 err = bpf_fd_array_map_lookup_elem(map, key, value);
657 } else if (IS_FD_HASH(map)) {
658 err = bpf_fd_htab_map_lookup_elem(map, key, value);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800659 } else {
660 rcu_read_lock();
661 ptr = map->ops->map_lookup_elem(map, key);
662 if (ptr)
663 memcpy(value, ptr, value_size);
664 rcu_read_unlock();
665 err = ptr ? 0 : -ENOENT;
666 }
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800667
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800668 if (err)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800669 goto free_value;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700670
671 err = -EFAULT;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800672 if (copy_to_user(uvalue, value, value_size) != 0)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800673 goto free_value;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700674
675 err = 0;
676
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800677free_value:
678 kfree(value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700679free_key:
680 kfree(key);
681err_put:
682 fdput(f);
683 return err;
684}
685
Alexei Starovoitov3274f522014-11-13 17:36:44 -0800686#define BPF_MAP_UPDATE_ELEM_LAST_FIELD flags
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700687
688static int map_update_elem(union bpf_attr *attr)
689{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100690 void __user *ukey = u64_to_user_ptr(attr->key);
691 void __user *uvalue = u64_to_user_ptr(attr->value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700692 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700693 struct bpf_map *map;
694 void *key, *value;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800695 u32 value_size;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200696 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700697 int err;
698
699 if (CHECK_ATTR(BPF_MAP_UPDATE_ELEM))
700 return -EINVAL;
701
Daniel Borkmann592867b2015-09-08 18:00:09 +0200702 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100703 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700704 if (IS_ERR(map))
705 return PTR_ERR(map);
706
Chenbo Feng6e71b042017-10-18 13:00:22 -0700707 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
708 err = -EPERM;
709 goto err_put;
710 }
711
Al Viroe4448ed2017-05-13 18:43:00 -0400712 key = memdup_user(ukey, map->key_size);
713 if (IS_ERR(key)) {
714 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700715 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400716 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700717
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800718 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800719 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH ||
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800720 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY)
721 value_size = round_up(map->value_size, 8) * num_possible_cpus();
722 else
723 value_size = map->value_size;
724
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700725 err = -ENOMEM;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800726 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700727 if (!value)
728 goto free_key;
729
730 err = -EFAULT;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800731 if (copy_from_user(value, uvalue, value_size) != 0)
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700732 goto free_value;
733
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200734 /* Need to create a kthread, thus must support schedule */
Jakub Kicinskia3884572018-01-11 20:29:09 -0800735 if (bpf_map_is_dev_bound(map)) {
736 err = bpf_map_offload_update_elem(map, key, value, attr->flags);
737 goto out;
738 } else if (map->map_type == BPF_MAP_TYPE_CPUMAP) {
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200739 err = map->ops->map_update_elem(map, key, value, attr->flags);
740 goto out;
741 }
742
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800743 /* must increment bpf_prog_active to avoid kprobe+bpf triggering from
744 * inside bpf map update or delete otherwise deadlocks are possible
745 */
746 preempt_disable();
747 __this_cpu_inc(bpf_prog_active);
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800748 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_update(map, key, value, attr->flags);
751 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) {
752 err = bpf_percpu_array_update(map, key, value, attr->flags);
Mickaël Salaün9c147b52018-01-26 00:54:02 +0100753 } else if (IS_FD_ARRAY(map)) {
Daniel Borkmannd056a782016-06-15 22:47:13 +0200754 rcu_read_lock();
755 err = bpf_fd_array_map_update_elem(map, f.file, key, value,
756 attr->flags);
757 rcu_read_unlock();
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700758 } else if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS) {
759 rcu_read_lock();
760 err = bpf_fd_htab_map_update_elem(map, f.file, key, value,
761 attr->flags);
762 rcu_read_unlock();
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800763 } else {
764 rcu_read_lock();
765 err = map->ops->map_update_elem(map, key, value, attr->flags);
766 rcu_read_unlock();
767 }
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800768 __this_cpu_dec(bpf_prog_active);
769 preempt_enable();
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200770out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700771free_value:
772 kfree(value);
773free_key:
774 kfree(key);
775err_put:
776 fdput(f);
777 return err;
778}
779
780#define BPF_MAP_DELETE_ELEM_LAST_FIELD key
781
782static int map_delete_elem(union bpf_attr *attr)
783{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100784 void __user *ukey = u64_to_user_ptr(attr->key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700785 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700786 struct bpf_map *map;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200787 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700788 void *key;
789 int err;
790
791 if (CHECK_ATTR(BPF_MAP_DELETE_ELEM))
792 return -EINVAL;
793
Daniel Borkmann592867b2015-09-08 18:00:09 +0200794 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100795 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700796 if (IS_ERR(map))
797 return PTR_ERR(map);
798
Chenbo Feng6e71b042017-10-18 13:00:22 -0700799 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
800 err = -EPERM;
801 goto err_put;
802 }
803
Al Viroe4448ed2017-05-13 18:43:00 -0400804 key = memdup_user(ukey, map->key_size);
805 if (IS_ERR(key)) {
806 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700807 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400808 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700809
Jakub Kicinskia3884572018-01-11 20:29:09 -0800810 if (bpf_map_is_dev_bound(map)) {
811 err = bpf_map_offload_delete_elem(map, key);
812 goto out;
813 }
814
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800815 preempt_disable();
816 __this_cpu_inc(bpf_prog_active);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700817 rcu_read_lock();
818 err = map->ops->map_delete_elem(map, key);
819 rcu_read_unlock();
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800820 __this_cpu_dec(bpf_prog_active);
821 preempt_enable();
Jakub Kicinskia3884572018-01-11 20:29:09 -0800822out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700823 kfree(key);
824err_put:
825 fdput(f);
826 return err;
827}
828
829/* last field in 'union bpf_attr' used by this command */
830#define BPF_MAP_GET_NEXT_KEY_LAST_FIELD next_key
831
832static int map_get_next_key(union bpf_attr *attr)
833{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100834 void __user *ukey = u64_to_user_ptr(attr->key);
835 void __user *unext_key = u64_to_user_ptr(attr->next_key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700836 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700837 struct bpf_map *map;
838 void *key, *next_key;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200839 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700840 int err;
841
842 if (CHECK_ATTR(BPF_MAP_GET_NEXT_KEY))
843 return -EINVAL;
844
Daniel Borkmann592867b2015-09-08 18:00:09 +0200845 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100846 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700847 if (IS_ERR(map))
848 return PTR_ERR(map);
849
Chenbo Feng6e71b042017-10-18 13:00:22 -0700850 if (!(f.file->f_mode & FMODE_CAN_READ)) {
851 err = -EPERM;
852 goto err_put;
853 }
854
Teng Qin8fe45922017-04-24 19:00:37 -0700855 if (ukey) {
Al Viroe4448ed2017-05-13 18:43:00 -0400856 key = memdup_user(ukey, map->key_size);
857 if (IS_ERR(key)) {
858 err = PTR_ERR(key);
Teng Qin8fe45922017-04-24 19:00:37 -0700859 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400860 }
Teng Qin8fe45922017-04-24 19:00:37 -0700861 } else {
862 key = NULL;
863 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700864
865 err = -ENOMEM;
866 next_key = kmalloc(map->key_size, GFP_USER);
867 if (!next_key)
868 goto free_key;
869
Jakub Kicinskia3884572018-01-11 20:29:09 -0800870 if (bpf_map_is_dev_bound(map)) {
871 err = bpf_map_offload_get_next_key(map, key, next_key);
872 goto out;
873 }
874
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700875 rcu_read_lock();
876 err = map->ops->map_get_next_key(map, key, next_key);
877 rcu_read_unlock();
Jakub Kicinskia3884572018-01-11 20:29:09 -0800878out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700879 if (err)
880 goto free_next_key;
881
882 err = -EFAULT;
883 if (copy_to_user(unext_key, next_key, map->key_size) != 0)
884 goto free_next_key;
885
886 err = 0;
887
888free_next_key:
889 kfree(next_key);
890free_key:
891 kfree(key);
892err_put:
893 fdput(f);
894 return err;
895}
896
Jakub Kicinski7de16e32017-10-16 16:40:53 -0700897static const struct bpf_prog_ops * const bpf_prog_types[] = {
898#define BPF_PROG_TYPE(_id, _name) \
899 [_id] = & _name ## _prog_ops,
900#define BPF_MAP_TYPE(_id, _ops)
901#include <linux/bpf_types.h>
902#undef BPF_PROG_TYPE
903#undef BPF_MAP_TYPE
904};
905
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700906static int find_prog_type(enum bpf_prog_type type, struct bpf_prog *prog)
907{
Daniel Borkmannd0f1a452018-05-04 02:13:57 +0200908 const struct bpf_prog_ops *ops;
909
910 if (type >= ARRAY_SIZE(bpf_prog_types))
911 return -EINVAL;
912 type = array_index_nospec(type, ARRAY_SIZE(bpf_prog_types));
913 ops = bpf_prog_types[type];
914 if (!ops)
Johannes Bergbe9370a2017-04-11 15:34:57 +0200915 return -EINVAL;
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700916
Jakub Kicinskiab3f0062017-11-03 13:56:17 -0700917 if (!bpf_prog_is_dev_bound(prog->aux))
Daniel Borkmannd0f1a452018-05-04 02:13:57 +0200918 prog->aux->ops = ops;
Jakub Kicinskiab3f0062017-11-03 13:56:17 -0700919 else
920 prog->aux->ops = &bpf_offload_prog_ops;
Johannes Bergbe9370a2017-04-11 15:34:57 +0200921 prog->type = type;
922 return 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700923}
924
925/* drop refcnt on maps used by eBPF program and free auxilary data */
926static void free_used_maps(struct bpf_prog_aux *aux)
927{
928 int i;
929
930 for (i = 0; i < aux->used_map_cnt; i++)
931 bpf_map_put(aux->used_maps[i]);
932
933 kfree(aux->used_maps);
934}
935
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100936int __bpf_prog_charge(struct user_struct *user, u32 pages)
937{
938 unsigned long memlock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
939 unsigned long user_bufs;
940
941 if (user) {
942 user_bufs = atomic_long_add_return(pages, &user->locked_vm);
943 if (user_bufs > memlock_limit) {
944 atomic_long_sub(pages, &user->locked_vm);
945 return -EPERM;
946 }
947 }
948
949 return 0;
950}
951
952void __bpf_prog_uncharge(struct user_struct *user, u32 pages)
953{
954 if (user)
955 atomic_long_sub(pages, &user->locked_vm);
956}
957
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700958static int bpf_prog_charge_memlock(struct bpf_prog *prog)
959{
960 struct user_struct *user = get_current_user();
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100961 int ret;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700962
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100963 ret = __bpf_prog_charge(user, prog->pages);
964 if (ret) {
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700965 free_uid(user);
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100966 return ret;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700967 }
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100968
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700969 prog->aux->user = user;
970 return 0;
971}
972
973static void bpf_prog_uncharge_memlock(struct bpf_prog *prog)
974{
975 struct user_struct *user = prog->aux->user;
976
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100977 __bpf_prog_uncharge(user, prog->pages);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700978 free_uid(user);
979}
980
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -0700981static int bpf_prog_alloc_id(struct bpf_prog *prog)
982{
983 int id;
984
Shaohua Lib76354c2018-03-27 11:53:21 -0700985 idr_preload(GFP_KERNEL);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -0700986 spin_lock_bh(&prog_idr_lock);
987 id = idr_alloc_cyclic(&prog_idr, prog, 1, INT_MAX, GFP_ATOMIC);
988 if (id > 0)
989 prog->aux->id = id;
990 spin_unlock_bh(&prog_idr_lock);
Shaohua Lib76354c2018-03-27 11:53:21 -0700991 idr_preload_end();
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -0700992
993 /* id is in [1, INT_MAX) */
994 if (WARN_ON_ONCE(!id))
995 return -ENOSPC;
996
997 return id > 0 ? 0 : id;
998}
999
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001000void bpf_prog_free_id(struct bpf_prog *prog, bool do_idr_lock)
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001001{
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001002 /* cBPF to eBPF migrations are currently not in the idr store.
1003 * Offloaded programs are removed from the store when their device
1004 * disappears - even if someone grabs an fd to them they are unusable,
1005 * simply waiting for refcnt to drop to be freed.
1006 */
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001007 if (!prog->aux->id)
1008 return;
1009
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001010 if (do_idr_lock)
1011 spin_lock_bh(&prog_idr_lock);
1012 else
1013 __acquire(&prog_idr_lock);
1014
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001015 idr_remove(&prog_idr, prog->aux->id);
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001016 prog->aux->id = 0;
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001017
1018 if (do_idr_lock)
1019 spin_unlock_bh(&prog_idr_lock);
1020 else
1021 __release(&prog_idr_lock);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001022}
1023
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001024static void __bpf_prog_put_rcu(struct rcu_head *rcu)
Alexei Starovoitovabf2e7d2015-05-28 19:26:02 -07001025{
1026 struct bpf_prog_aux *aux = container_of(rcu, struct bpf_prog_aux, rcu);
1027
1028 free_used_maps(aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001029 bpf_prog_uncharge_memlock(aux->prog);
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001030 security_bpf_prog_free(aux);
Alexei Starovoitovabf2e7d2015-05-28 19:26:02 -07001031 bpf_prog_free(aux->prog);
1032}
1033
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001034static void __bpf_prog_put(struct bpf_prog *prog, bool do_idr_lock)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001035{
Daniel Borkmanna67edbf2017-01-25 02:28:18 +01001036 if (atomic_dec_and_test(&prog->aux->refcnt)) {
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07001037 /* bpf_prog_free_id() must be called first */
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001038 bpf_prog_free_id(prog, do_idr_lock);
Daniel Borkmann7d1982b2018-06-15 02:30:47 +02001039 bpf_prog_kallsyms_del_all(prog);
Daniel Borkmann4f74d802017-12-20 13:42:56 +01001040
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001041 call_rcu(&prog->aux->rcu, __bpf_prog_put_rcu);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +01001042 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001043}
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001044
1045void bpf_prog_put(struct bpf_prog *prog)
1046{
1047 __bpf_prog_put(prog, true);
1048}
Daniel Borkmanne2e9b652015-03-01 12:31:48 +01001049EXPORT_SYMBOL_GPL(bpf_prog_put);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001050
1051static int bpf_prog_release(struct inode *inode, struct file *filp)
1052{
1053 struct bpf_prog *prog = filp->private_data;
1054
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001055 bpf_prog_put(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001056 return 0;
1057}
1058
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001059#ifdef CONFIG_PROC_FS
1060static void bpf_prog_show_fdinfo(struct seq_file *m, struct file *filp)
1061{
1062 const struct bpf_prog *prog = filp->private_data;
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001063 char prog_tag[sizeof(prog->tag) * 2 + 1] = { };
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001064
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001065 bin2hex(prog_tag, prog->tag, sizeof(prog->tag));
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001066 seq_printf(m,
1067 "prog_type:\t%u\n"
1068 "prog_jited:\t%u\n"
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001069 "prog_tag:\t%s\n"
Daniel Borkmann4316b402018-06-02 23:06:34 +02001070 "memlock:\t%llu\n"
1071 "prog_id:\t%u\n",
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001072 prog->type,
1073 prog->jited,
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001074 prog_tag,
Daniel Borkmann4316b402018-06-02 23:06:34 +02001075 prog->pages * 1ULL << PAGE_SHIFT,
1076 prog->aux->id);
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001077}
1078#endif
1079
Chenbo Fengf66e4482017-10-18 13:00:26 -07001080const struct file_operations bpf_prog_fops = {
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001081#ifdef CONFIG_PROC_FS
1082 .show_fdinfo = bpf_prog_show_fdinfo,
1083#endif
1084 .release = bpf_prog_release,
Chenbo Feng6e71b042017-10-18 13:00:22 -07001085 .read = bpf_dummy_read,
1086 .write = bpf_dummy_write,
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001087};
1088
Daniel Borkmannb2197752015-10-29 14:58:09 +01001089int bpf_prog_new_fd(struct bpf_prog *prog)
Daniel Borkmannaa797812015-10-29 14:58:06 +01001090{
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001091 int ret;
1092
1093 ret = security_bpf_prog(prog);
1094 if (ret < 0)
1095 return ret;
1096
Daniel Borkmannaa797812015-10-29 14:58:06 +01001097 return anon_inode_getfd("bpf-prog", &bpf_prog_fops, prog,
1098 O_RDWR | O_CLOEXEC);
1099}
1100
Daniel Borkmann113214b2016-06-30 17:24:44 +02001101static struct bpf_prog *____bpf_prog_get(struct fd f)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001102{
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001103 if (!f.file)
1104 return ERR_PTR(-EBADF);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001105 if (f.file->f_op != &bpf_prog_fops) {
1106 fdput(f);
1107 return ERR_PTR(-EINVAL);
1108 }
1109
Daniel Borkmannc2101292015-10-29 14:58:07 +01001110 return f.file->private_data;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001111}
1112
Brenden Blanco59d36562016-07-19 12:16:46 -07001113struct bpf_prog *bpf_prog_add(struct bpf_prog *prog, int i)
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001114{
Brenden Blanco59d36562016-07-19 12:16:46 -07001115 if (atomic_add_return(i, &prog->aux->refcnt) > BPF_MAX_REFCNT) {
1116 atomic_sub(i, &prog->aux->refcnt);
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001117 return ERR_PTR(-EBUSY);
1118 }
1119 return prog;
1120}
Brenden Blanco59d36562016-07-19 12:16:46 -07001121EXPORT_SYMBOL_GPL(bpf_prog_add);
1122
Daniel Borkmannc5405942016-11-09 22:02:34 +01001123void bpf_prog_sub(struct bpf_prog *prog, int i)
1124{
1125 /* Only to be used for undoing previous bpf_prog_add() in some
1126 * error path. We still know that another entity in our call
1127 * path holds a reference to the program, thus atomic_sub() can
1128 * be safely used in such cases!
1129 */
1130 WARN_ON(atomic_sub_return(i, &prog->aux->refcnt) == 0);
1131}
1132EXPORT_SYMBOL_GPL(bpf_prog_sub);
1133
Brenden Blanco59d36562016-07-19 12:16:46 -07001134struct bpf_prog *bpf_prog_inc(struct bpf_prog *prog)
1135{
1136 return bpf_prog_add(prog, 1);
1137}
Daniel Borkmann97bc4022016-11-19 01:45:00 +01001138EXPORT_SYMBOL_GPL(bpf_prog_inc);
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001139
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001140/* prog_idr_lock should have been held */
John Fastabenda6f6df62017-08-15 22:32:22 -07001141struct bpf_prog *bpf_prog_inc_not_zero(struct bpf_prog *prog)
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001142{
1143 int refold;
1144
1145 refold = __atomic_add_unless(&prog->aux->refcnt, 1, 0);
1146
1147 if (refold >= BPF_MAX_REFCNT) {
1148 __bpf_prog_put(prog, false);
1149 return ERR_PTR(-EBUSY);
1150 }
1151
1152 if (!refold)
1153 return ERR_PTR(-ENOENT);
1154
1155 return prog;
1156}
John Fastabenda6f6df62017-08-15 22:32:22 -07001157EXPORT_SYMBOL_GPL(bpf_prog_inc_not_zero);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001158
Al Viro040ee692017-12-02 20:20:38 -05001159bool bpf_prog_get_ok(struct bpf_prog *prog,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001160 enum bpf_prog_type *attach_type, bool attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001161{
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001162 /* not an attachment, just a refcount inc, always allow */
1163 if (!attach_type)
1164 return true;
Jakub Kicinski248f3462017-11-03 13:56:20 -07001165
1166 if (prog->type != *attach_type)
1167 return false;
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001168 if (bpf_prog_is_dev_bound(prog->aux) && !attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001169 return false;
1170
1171 return true;
1172}
1173
1174static struct bpf_prog *__bpf_prog_get(u32 ufd, enum bpf_prog_type *attach_type,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001175 bool attach_drv)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001176{
1177 struct fd f = fdget(ufd);
1178 struct bpf_prog *prog;
1179
Daniel Borkmann113214b2016-06-30 17:24:44 +02001180 prog = ____bpf_prog_get(f);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001181 if (IS_ERR(prog))
1182 return prog;
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001183 if (!bpf_prog_get_ok(prog, attach_type, attach_drv)) {
Daniel Borkmann113214b2016-06-30 17:24:44 +02001184 prog = ERR_PTR(-EINVAL);
1185 goto out;
1186 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001187
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001188 prog = bpf_prog_inc(prog);
Daniel Borkmann113214b2016-06-30 17:24:44 +02001189out:
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001190 fdput(f);
1191 return prog;
1192}
Daniel Borkmann113214b2016-06-30 17:24:44 +02001193
1194struct bpf_prog *bpf_prog_get(u32 ufd)
1195{
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001196 return __bpf_prog_get(ufd, NULL, false);
Daniel Borkmann113214b2016-06-30 17:24:44 +02001197}
1198
Jakub Kicinski248f3462017-11-03 13:56:20 -07001199struct bpf_prog *bpf_prog_get_type_dev(u32 ufd, enum bpf_prog_type type,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001200 bool attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001201{
Alexei Starovoitov4d220ed2018-04-28 19:56:37 -07001202 return __bpf_prog_get(ufd, &type, attach_drv);
Jakub Kicinski248f3462017-11-03 13:56:20 -07001203}
Jakub Kicinski6c8dfe22017-11-03 13:56:21 -07001204EXPORT_SYMBOL_GPL(bpf_prog_get_type_dev);
Jakub Kicinski248f3462017-11-03 13:56:20 -07001205
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001206/* Initially all BPF programs could be loaded w/o specifying
1207 * expected_attach_type. Later for some of them specifying expected_attach_type
1208 * at load time became required so that program could be validated properly.
1209 * Programs of types that are allowed to be loaded both w/ and w/o (for
1210 * backward compatibility) expected_attach_type, should have the default attach
1211 * type assigned to expected_attach_type for the latter case, so that it can be
1212 * validated later at attach time.
1213 *
1214 * bpf_prog_load_fixup_attach_type() sets expected_attach_type in @attr if
1215 * prog type requires it but has some attach types that have to be backward
1216 * compatible.
1217 */
1218static void bpf_prog_load_fixup_attach_type(union bpf_attr *attr)
1219{
1220 switch (attr->prog_type) {
1221 case BPF_PROG_TYPE_CGROUP_SOCK:
1222 /* Unfortunately BPF_ATTACH_TYPE_UNSPEC enumeration doesn't
1223 * exist so checking for non-zero is the way to go here.
1224 */
1225 if (!attr->expected_attach_type)
1226 attr->expected_attach_type =
1227 BPF_CGROUP_INET_SOCK_CREATE;
1228 break;
1229 }
1230}
1231
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001232static int
1233bpf_prog_load_check_attach_type(enum bpf_prog_type prog_type,
1234 enum bpf_attach_type expected_attach_type)
1235{
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001236 switch (prog_type) {
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001237 case BPF_PROG_TYPE_CGROUP_SOCK:
1238 switch (expected_attach_type) {
1239 case BPF_CGROUP_INET_SOCK_CREATE:
1240 case BPF_CGROUP_INET4_POST_BIND:
1241 case BPF_CGROUP_INET6_POST_BIND:
1242 return 0;
1243 default:
1244 return -EINVAL;
1245 }
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001246 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
1247 switch (expected_attach_type) {
1248 case BPF_CGROUP_INET4_BIND:
1249 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001250 case BPF_CGROUP_INET4_CONNECT:
1251 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001252 case BPF_CGROUP_UDP4_SENDMSG:
1253 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001254 return 0;
1255 default:
1256 return -EINVAL;
1257 }
1258 default:
1259 return 0;
1260 }
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001261}
1262
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001263/* last field in 'union bpf_attr' used by this command */
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001264#define BPF_PROG_LOAD_LAST_FIELD expected_attach_type
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001265
1266static int bpf_prog_load(union bpf_attr *attr)
1267{
1268 enum bpf_prog_type type = attr->prog_type;
1269 struct bpf_prog *prog;
1270 int err;
1271 char license[128];
1272 bool is_gpl;
1273
1274 if (CHECK_ATTR(BPF_PROG_LOAD))
1275 return -EINVAL;
1276
David S. Millere07b98d2017-05-10 11:38:07 -07001277 if (attr->prog_flags & ~BPF_F_STRICT_ALIGNMENT)
1278 return -EINVAL;
1279
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001280 /* copy eBPF program license from user space */
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001281 if (strncpy_from_user(license, u64_to_user_ptr(attr->license),
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001282 sizeof(license) - 1) < 0)
1283 return -EFAULT;
1284 license[sizeof(license) - 1] = 0;
1285
1286 /* eBPF programs must be GPL compatible to use GPL-ed functions */
1287 is_gpl = license_is_gpl_compatible(license);
1288
Daniel Borkmannef0915c2016-12-07 01:15:44 +01001289 if (attr->insn_cnt == 0 || attr->insn_cnt > BPF_MAXINSNS)
1290 return -E2BIG;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001291
Alexei Starovoitov25415172015-03-25 12:49:20 -07001292 if (type == BPF_PROG_TYPE_KPROBE &&
1293 attr->kern_version != LINUX_VERSION_CODE)
1294 return -EINVAL;
1295
Chenbo Feng80b7d812017-05-31 18:16:00 -07001296 if (type != BPF_PROG_TYPE_SOCKET_FILTER &&
1297 type != BPF_PROG_TYPE_CGROUP_SKB &&
1298 !capable(CAP_SYS_ADMIN))
Alexei Starovoitov1be7f752015-10-07 22:23:21 -07001299 return -EPERM;
1300
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001301 bpf_prog_load_fixup_attach_type(attr);
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001302 if (bpf_prog_load_check_attach_type(type, attr->expected_attach_type))
1303 return -EINVAL;
1304
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001305 /* plain bpf_prog allocation */
1306 prog = bpf_prog_alloc(bpf_prog_size(attr->insn_cnt), GFP_USER);
1307 if (!prog)
1308 return -ENOMEM;
1309
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001310 prog->expected_attach_type = attr->expected_attach_type;
1311
Jakub Kicinski9a18eed2017-12-27 18:39:04 -08001312 prog->aux->offload_requested = !!attr->prog_ifindex;
1313
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001314 err = security_bpf_prog_alloc(prog->aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001315 if (err)
1316 goto free_prog_nouncharge;
1317
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001318 err = bpf_prog_charge_memlock(prog);
1319 if (err)
1320 goto free_prog_sec;
1321
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001322 prog->len = attr->insn_cnt;
1323
1324 err = -EFAULT;
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001325 if (copy_from_user(prog->insns, u64_to_user_ptr(attr->insns),
Daniel Borkmannaafe6ae2016-12-18 01:52:57 +01001326 bpf_prog_insn_size(prog)) != 0)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001327 goto free_prog;
1328
1329 prog->orig_prog = NULL;
Daniel Borkmanna91263d2015-09-30 01:41:50 +02001330 prog->jited = 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001331
1332 atomic_set(&prog->aux->refcnt, 1);
Daniel Borkmanna91263d2015-09-30 01:41:50 +02001333 prog->gpl_compatible = is_gpl ? 1 : 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001334
Jakub Kicinski9a18eed2017-12-27 18:39:04 -08001335 if (bpf_prog_is_dev_bound(prog->aux)) {
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07001336 err = bpf_prog_offload_init(prog, attr);
1337 if (err)
1338 goto free_prog;
1339 }
1340
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001341 /* find program type: socket_filter vs tracing_filter */
1342 err = find_prog_type(type, prog);
1343 if (err < 0)
1344 goto free_prog;
1345
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001346 prog->aux->load_time = ktime_get_boot_ns();
1347 err = bpf_obj_name_cpy(prog->aux->name, attr->prog_name);
1348 if (err)
1349 goto free_prog;
1350
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001351 /* run eBPF verifier */
Alexei Starovoitov9bac3d62015-03-13 11:57:42 -07001352 err = bpf_check(&prog, attr);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001353 if (err < 0)
1354 goto free_used_maps;
1355
Daniel Borkmann9facc332018-06-15 02:30:48 +02001356 prog = bpf_prog_select_runtime(prog, &err);
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001357 if (err < 0)
1358 goto free_used_maps;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001359
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001360 err = bpf_prog_alloc_id(prog);
1361 if (err)
1362 goto free_used_maps;
1363
Daniel Borkmannaa797812015-10-29 14:58:06 +01001364 err = bpf_prog_new_fd(prog);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001365 if (err < 0) {
1366 /* failed to allocate fd.
1367 * bpf_prog_put() is needed because the above
1368 * bpf_prog_alloc_id() has published the prog
1369 * to the userspace and the userspace may
1370 * have refcnt-ed it through BPF_PROG_GET_FD_BY_ID.
1371 */
1372 bpf_prog_put(prog);
1373 return err;
1374 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001375
Daniel Borkmann74451e662017-02-16 22:24:50 +01001376 bpf_prog_kallsyms_add(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001377 return err;
1378
1379free_used_maps:
Daniel Borkmann7d1982b2018-06-15 02:30:47 +02001380 bpf_prog_kallsyms_del_subprogs(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001381 free_used_maps(prog->aux);
1382free_prog:
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001383 bpf_prog_uncharge_memlock(prog);
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001384free_prog_sec:
1385 security_bpf_prog_free(prog->aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001386free_prog_nouncharge:
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001387 bpf_prog_free(prog);
1388 return err;
1389}
1390
Chenbo Feng6e71b042017-10-18 13:00:22 -07001391#define BPF_OBJ_LAST_FIELD file_flags
Daniel Borkmannb2197752015-10-29 14:58:09 +01001392
1393static int bpf_obj_pin(const union bpf_attr *attr)
1394{
Chenbo Feng6e71b042017-10-18 13:00:22 -07001395 if (CHECK_ATTR(BPF_OBJ) || attr->file_flags != 0)
Daniel Borkmannb2197752015-10-29 14:58:09 +01001396 return -EINVAL;
1397
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001398 return bpf_obj_pin_user(attr->bpf_fd, u64_to_user_ptr(attr->pathname));
Daniel Borkmannb2197752015-10-29 14:58:09 +01001399}
1400
1401static int bpf_obj_get(const union bpf_attr *attr)
1402{
Chenbo Feng6e71b042017-10-18 13:00:22 -07001403 if (CHECK_ATTR(BPF_OBJ) || attr->bpf_fd != 0 ||
1404 attr->file_flags & ~BPF_OBJ_FLAG_MASK)
Daniel Borkmannb2197752015-10-29 14:58:09 +01001405 return -EINVAL;
1406
Chenbo Feng6e71b042017-10-18 13:00:22 -07001407 return bpf_obj_get_user(u64_to_user_ptr(attr->pathname),
1408 attr->file_flags);
Daniel Borkmannb2197752015-10-29 14:58:09 +01001409}
1410
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001411struct bpf_raw_tracepoint {
1412 struct bpf_raw_event_map *btp;
1413 struct bpf_prog *prog;
1414};
1415
1416static int bpf_raw_tracepoint_release(struct inode *inode, struct file *filp)
1417{
1418 struct bpf_raw_tracepoint *raw_tp = filp->private_data;
1419
1420 if (raw_tp->prog) {
1421 bpf_probe_unregister(raw_tp->btp, raw_tp->prog);
1422 bpf_prog_put(raw_tp->prog);
1423 }
1424 kfree(raw_tp);
1425 return 0;
1426}
1427
1428static const struct file_operations bpf_raw_tp_fops = {
1429 .release = bpf_raw_tracepoint_release,
1430 .read = bpf_dummy_read,
1431 .write = bpf_dummy_write,
1432};
1433
1434#define BPF_RAW_TRACEPOINT_OPEN_LAST_FIELD raw_tracepoint.prog_fd
1435
1436static int bpf_raw_tracepoint_open(const union bpf_attr *attr)
1437{
1438 struct bpf_raw_tracepoint *raw_tp;
1439 struct bpf_raw_event_map *btp;
1440 struct bpf_prog *prog;
1441 char tp_name[128];
1442 int tp_fd, err;
1443
1444 if (strncpy_from_user(tp_name, u64_to_user_ptr(attr->raw_tracepoint.name),
1445 sizeof(tp_name) - 1) < 0)
1446 return -EFAULT;
1447 tp_name[sizeof(tp_name) - 1] = 0;
1448
1449 btp = bpf_find_raw_tracepoint(tp_name);
1450 if (!btp)
1451 return -ENOENT;
1452
1453 raw_tp = kzalloc(sizeof(*raw_tp), GFP_USER);
1454 if (!raw_tp)
1455 return -ENOMEM;
1456 raw_tp->btp = btp;
1457
1458 prog = bpf_prog_get_type(attr->raw_tracepoint.prog_fd,
1459 BPF_PROG_TYPE_RAW_TRACEPOINT);
1460 if (IS_ERR(prog)) {
1461 err = PTR_ERR(prog);
1462 goto out_free_tp;
1463 }
1464
1465 err = bpf_probe_register(raw_tp->btp, prog);
1466 if (err)
1467 goto out_put_prog;
1468
1469 raw_tp->prog = prog;
1470 tp_fd = anon_inode_getfd("bpf-raw-tracepoint", &bpf_raw_tp_fops, raw_tp,
1471 O_CLOEXEC);
1472 if (tp_fd < 0) {
1473 bpf_probe_unregister(raw_tp->btp, prog);
1474 err = tp_fd;
1475 goto out_put_prog;
1476 }
1477 return tp_fd;
1478
1479out_put_prog:
1480 bpf_prog_put(prog);
1481out_free_tp:
1482 kfree(raw_tp);
1483 return err;
1484}
1485
Anders Roxell33491582018-04-03 14:09:47 +02001486static int bpf_prog_attach_check_attach_type(const struct bpf_prog *prog,
1487 enum bpf_attach_type attach_type)
1488{
1489 switch (prog->type) {
1490 case BPF_PROG_TYPE_CGROUP_SOCK:
1491 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
1492 return attach_type == prog->expected_attach_type ? 0 : -EINVAL;
1493 default:
1494 return 0;
1495 }
1496}
1497
John Fastabend464bc0f2017-08-28 07:10:04 -07001498#define BPF_PROG_ATTACH_LAST_FIELD attach_flags
John Fastabend174a79f2017-08-15 22:32:47 -07001499
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001500#define BPF_F_ATTACH_MASK \
1501 (BPF_F_ALLOW_OVERRIDE | BPF_F_ALLOW_MULTI)
1502
Daniel Mackf4324552016-11-23 16:52:27 +01001503static int bpf_prog_attach(const union bpf_attr *attr)
1504{
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001505 enum bpf_prog_type ptype;
Daniel Mackf4324552016-11-23 16:52:27 +01001506 struct bpf_prog *prog;
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001507 int ret;
Daniel Mackf4324552016-11-23 16:52:27 +01001508
1509 if (!capable(CAP_NET_ADMIN))
1510 return -EPERM;
1511
1512 if (CHECK_ATTR(BPF_PROG_ATTACH))
1513 return -EINVAL;
1514
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001515 if (attr->attach_flags & ~BPF_F_ATTACH_MASK)
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001516 return -EINVAL;
1517
Daniel Mackf4324552016-11-23 16:52:27 +01001518 switch (attr->attach_type) {
1519 case BPF_CGROUP_INET_INGRESS:
1520 case BPF_CGROUP_INET_EGRESS:
David Ahernb2cd1252016-12-01 08:48:03 -08001521 ptype = BPF_PROG_TYPE_CGROUP_SKB;
Daniel Mackf4324552016-11-23 16:52:27 +01001522 break;
David Ahern610236582016-12-01 08:48:04 -08001523 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001524 case BPF_CGROUP_INET4_POST_BIND:
1525 case BPF_CGROUP_INET6_POST_BIND:
David Ahern610236582016-12-01 08:48:04 -08001526 ptype = BPF_PROG_TYPE_CGROUP_SOCK;
1527 break;
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001528 case BPF_CGROUP_INET4_BIND:
1529 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001530 case BPF_CGROUP_INET4_CONNECT:
1531 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001532 case BPF_CGROUP_UDP4_SENDMSG:
1533 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001534 ptype = BPF_PROG_TYPE_CGROUP_SOCK_ADDR;
1535 break;
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001536 case BPF_CGROUP_SOCK_OPS:
1537 ptype = BPF_PROG_TYPE_SOCK_OPS;
1538 break;
Roman Gushchinebc614f2017-11-05 08:15:32 -05001539 case BPF_CGROUP_DEVICE:
1540 ptype = BPF_PROG_TYPE_CGROUP_DEVICE;
1541 break;
John Fastabend4f738ad2018-03-18 12:57:10 -07001542 case BPF_SK_MSG_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001543 ptype = BPF_PROG_TYPE_SK_MSG;
1544 break;
John Fastabend464bc0f2017-08-28 07:10:04 -07001545 case BPF_SK_SKB_STREAM_PARSER:
1546 case BPF_SK_SKB_STREAM_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001547 ptype = BPF_PROG_TYPE_SK_SKB;
1548 break;
Sean Youngf4364dc2018-05-27 12:24:09 +01001549 case BPF_LIRC_MODE2:
Sean Youngfdb5c452018-06-19 00:04:24 +01001550 ptype = BPF_PROG_TYPE_LIRC_MODE2;
1551 break;
Daniel Mackf4324552016-11-23 16:52:27 +01001552 default:
1553 return -EINVAL;
1554 }
1555
David Ahernb2cd1252016-12-01 08:48:03 -08001556 prog = bpf_prog_get_type(attr->attach_bpf_fd, ptype);
1557 if (IS_ERR(prog))
1558 return PTR_ERR(prog);
1559
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001560 if (bpf_prog_attach_check_attach_type(prog, attr->attach_type)) {
1561 bpf_prog_put(prog);
1562 return -EINVAL;
1563 }
1564
Sean Youngfdb5c452018-06-19 00:04:24 +01001565 switch (ptype) {
1566 case BPF_PROG_TYPE_SK_SKB:
1567 case BPF_PROG_TYPE_SK_MSG:
1568 ret = sockmap_get_from_fd(attr, ptype, prog);
1569 break;
1570 case BPF_PROG_TYPE_LIRC_MODE2:
1571 ret = lirc_prog_attach(attr, prog);
1572 break;
1573 default:
1574 ret = cgroup_bpf_prog_attach(attr, ptype, prog);
David Ahernb2cd1252016-12-01 08:48:03 -08001575 }
1576
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001577 if (ret)
1578 bpf_prog_put(prog);
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001579 return ret;
Daniel Mackf4324552016-11-23 16:52:27 +01001580}
1581
1582#define BPF_PROG_DETACH_LAST_FIELD attach_type
1583
1584static int bpf_prog_detach(const union bpf_attr *attr)
1585{
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001586 enum bpf_prog_type ptype;
Daniel Mackf4324552016-11-23 16:52:27 +01001587
1588 if (!capable(CAP_NET_ADMIN))
1589 return -EPERM;
1590
1591 if (CHECK_ATTR(BPF_PROG_DETACH))
1592 return -EINVAL;
1593
1594 switch (attr->attach_type) {
1595 case BPF_CGROUP_INET_INGRESS:
1596 case BPF_CGROUP_INET_EGRESS:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001597 ptype = BPF_PROG_TYPE_CGROUP_SKB;
1598 break;
David Ahern610236582016-12-01 08:48:04 -08001599 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001600 case BPF_CGROUP_INET4_POST_BIND:
1601 case BPF_CGROUP_INET6_POST_BIND:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001602 ptype = BPF_PROG_TYPE_CGROUP_SOCK;
1603 break;
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001604 case BPF_CGROUP_INET4_BIND:
1605 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001606 case BPF_CGROUP_INET4_CONNECT:
1607 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001608 case BPF_CGROUP_UDP4_SENDMSG:
1609 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001610 ptype = BPF_PROG_TYPE_CGROUP_SOCK_ADDR;
1611 break;
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001612 case BPF_CGROUP_SOCK_OPS:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001613 ptype = BPF_PROG_TYPE_SOCK_OPS;
Daniel Mackf4324552016-11-23 16:52:27 +01001614 break;
Roman Gushchinebc614f2017-11-05 08:15:32 -05001615 case BPF_CGROUP_DEVICE:
1616 ptype = BPF_PROG_TYPE_CGROUP_DEVICE;
1617 break;
John Fastabend4f738ad2018-03-18 12:57:10 -07001618 case BPF_SK_MSG_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001619 return sockmap_get_from_fd(attr, BPF_PROG_TYPE_SK_MSG, NULL);
John Fastabend5a67da22017-09-08 14:00:49 -07001620 case BPF_SK_SKB_STREAM_PARSER:
1621 case BPF_SK_SKB_STREAM_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001622 return sockmap_get_from_fd(attr, BPF_PROG_TYPE_SK_SKB, NULL);
Sean Youngf4364dc2018-05-27 12:24:09 +01001623 case BPF_LIRC_MODE2:
1624 return lirc_prog_detach(attr);
Daniel Mackf4324552016-11-23 16:52:27 +01001625 default:
1626 return -EINVAL;
1627 }
1628
Sean Youngfdb5c452018-06-19 00:04:24 +01001629 return cgroup_bpf_prog_detach(attr, ptype);
Daniel Mackf4324552016-11-23 16:52:27 +01001630}
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001631
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001632#define BPF_PROG_QUERY_LAST_FIELD query.prog_cnt
1633
1634static int bpf_prog_query(const union bpf_attr *attr,
1635 union bpf_attr __user *uattr)
1636{
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001637 if (!capable(CAP_NET_ADMIN))
1638 return -EPERM;
1639 if (CHECK_ATTR(BPF_PROG_QUERY))
1640 return -EINVAL;
1641 if (attr->query.query_flags & ~BPF_F_QUERY_EFFECTIVE)
1642 return -EINVAL;
1643
1644 switch (attr->query.attach_type) {
1645 case BPF_CGROUP_INET_INGRESS:
1646 case BPF_CGROUP_INET_EGRESS:
1647 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001648 case BPF_CGROUP_INET4_BIND:
1649 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001650 case BPF_CGROUP_INET4_POST_BIND:
1651 case BPF_CGROUP_INET6_POST_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001652 case BPF_CGROUP_INET4_CONNECT:
1653 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001654 case BPF_CGROUP_UDP4_SENDMSG:
1655 case BPF_CGROUP_UDP6_SENDMSG:
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001656 case BPF_CGROUP_SOCK_OPS:
Roman Gushchinebc614f2017-11-05 08:15:32 -05001657 case BPF_CGROUP_DEVICE:
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001658 break;
Sean Youngf4364dc2018-05-27 12:24:09 +01001659 case BPF_LIRC_MODE2:
1660 return lirc_prog_query(attr, uattr);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001661 default:
1662 return -EINVAL;
1663 }
Sean Youngfdb5c452018-06-19 00:04:24 +01001664
1665 return cgroup_bpf_prog_query(attr, uattr);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001666}
Daniel Mackf4324552016-11-23 16:52:27 +01001667
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07001668#define BPF_PROG_TEST_RUN_LAST_FIELD test.duration
1669
1670static int bpf_prog_test_run(const union bpf_attr *attr,
1671 union bpf_attr __user *uattr)
1672{
1673 struct bpf_prog *prog;
1674 int ret = -ENOTSUPP;
1675
Alexei Starovoitov61f3c962018-01-17 16:52:02 -08001676 if (!capable(CAP_SYS_ADMIN))
1677 return -EPERM;
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07001678 if (CHECK_ATTR(BPF_PROG_TEST_RUN))
1679 return -EINVAL;
1680
1681 prog = bpf_prog_get(attr->test.prog_fd);
1682 if (IS_ERR(prog))
1683 return PTR_ERR(prog);
1684
1685 if (prog->aux->ops->test_run)
1686 ret = prog->aux->ops->test_run(prog, attr, uattr);
1687
1688 bpf_prog_put(prog);
1689 return ret;
1690}
1691
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07001692#define BPF_OBJ_GET_NEXT_ID_LAST_FIELD next_id
1693
1694static int bpf_obj_get_next_id(const union bpf_attr *attr,
1695 union bpf_attr __user *uattr,
1696 struct idr *idr,
1697 spinlock_t *lock)
1698{
1699 u32 next_id = attr->start_id;
1700 int err = 0;
1701
1702 if (CHECK_ATTR(BPF_OBJ_GET_NEXT_ID) || next_id >= INT_MAX)
1703 return -EINVAL;
1704
1705 if (!capable(CAP_SYS_ADMIN))
1706 return -EPERM;
1707
1708 next_id++;
1709 spin_lock_bh(lock);
1710 if (!idr_get_next(idr, &next_id))
1711 err = -ENOENT;
1712 spin_unlock_bh(lock);
1713
1714 if (!err)
1715 err = put_user(next_id, &uattr->next_id);
1716
1717 return err;
1718}
1719
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001720#define BPF_PROG_GET_FD_BY_ID_LAST_FIELD prog_id
1721
1722static int bpf_prog_get_fd_by_id(const union bpf_attr *attr)
1723{
1724 struct bpf_prog *prog;
1725 u32 id = attr->prog_id;
1726 int fd;
1727
1728 if (CHECK_ATTR(BPF_PROG_GET_FD_BY_ID))
1729 return -EINVAL;
1730
1731 if (!capable(CAP_SYS_ADMIN))
1732 return -EPERM;
1733
1734 spin_lock_bh(&prog_idr_lock);
1735 prog = idr_find(&prog_idr, id);
1736 if (prog)
1737 prog = bpf_prog_inc_not_zero(prog);
1738 else
1739 prog = ERR_PTR(-ENOENT);
1740 spin_unlock_bh(&prog_idr_lock);
1741
1742 if (IS_ERR(prog))
1743 return PTR_ERR(prog);
1744
1745 fd = bpf_prog_new_fd(prog);
1746 if (fd < 0)
1747 bpf_prog_put(prog);
1748
1749 return fd;
1750}
1751
Chenbo Feng6e71b042017-10-18 13:00:22 -07001752#define BPF_MAP_GET_FD_BY_ID_LAST_FIELD open_flags
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001753
1754static int bpf_map_get_fd_by_id(const union bpf_attr *attr)
1755{
1756 struct bpf_map *map;
1757 u32 id = attr->map_id;
Chenbo Feng6e71b042017-10-18 13:00:22 -07001758 int f_flags;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001759 int fd;
1760
Chenbo Feng6e71b042017-10-18 13:00:22 -07001761 if (CHECK_ATTR(BPF_MAP_GET_FD_BY_ID) ||
1762 attr->open_flags & ~BPF_OBJ_FLAG_MASK)
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001763 return -EINVAL;
1764
1765 if (!capable(CAP_SYS_ADMIN))
1766 return -EPERM;
1767
Chenbo Feng6e71b042017-10-18 13:00:22 -07001768 f_flags = bpf_get_file_flag(attr->open_flags);
1769 if (f_flags < 0)
1770 return f_flags;
1771
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001772 spin_lock_bh(&map_idr_lock);
1773 map = idr_find(&map_idr, id);
1774 if (map)
1775 map = bpf_map_inc_not_zero(map, true);
1776 else
1777 map = ERR_PTR(-ENOENT);
1778 spin_unlock_bh(&map_idr_lock);
1779
1780 if (IS_ERR(map))
1781 return PTR_ERR(map);
1782
Chenbo Feng6e71b042017-10-18 13:00:22 -07001783 fd = bpf_map_new_fd(map, f_flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001784 if (fd < 0)
1785 bpf_map_put(map);
1786
1787 return fd;
1788}
1789
Daniel Borkmann7105e822017-12-20 13:42:57 +01001790static const struct bpf_map *bpf_map_from_imm(const struct bpf_prog *prog,
1791 unsigned long addr)
1792{
1793 int i;
1794
1795 for (i = 0; i < prog->aux->used_map_cnt; i++)
1796 if (prog->aux->used_maps[i] == (void *)addr)
1797 return prog->aux->used_maps[i];
1798 return NULL;
1799}
1800
1801static struct bpf_insn *bpf_insn_prepare_dump(const struct bpf_prog *prog)
1802{
1803 const struct bpf_map *map;
1804 struct bpf_insn *insns;
1805 u64 imm;
1806 int i;
1807
1808 insns = kmemdup(prog->insnsi, bpf_prog_insn_size(prog),
1809 GFP_USER);
1810 if (!insns)
1811 return insns;
1812
1813 for (i = 0; i < prog->len; i++) {
1814 if (insns[i].code == (BPF_JMP | BPF_TAIL_CALL)) {
1815 insns[i].code = BPF_JMP | BPF_CALL;
1816 insns[i].imm = BPF_FUNC_tail_call;
1817 /* fall-through */
1818 }
1819 if (insns[i].code == (BPF_JMP | BPF_CALL) ||
1820 insns[i].code == (BPF_JMP | BPF_CALL_ARGS)) {
1821 if (insns[i].code == (BPF_JMP | BPF_CALL_ARGS))
1822 insns[i].code = BPF_JMP | BPF_CALL;
1823 if (!bpf_dump_raw_ok())
1824 insns[i].imm = 0;
1825 continue;
1826 }
1827
1828 if (insns[i].code != (BPF_LD | BPF_IMM | BPF_DW))
1829 continue;
1830
1831 imm = ((u64)insns[i + 1].imm << 32) | (u32)insns[i].imm;
1832 map = bpf_map_from_imm(prog, imm);
1833 if (map) {
1834 insns[i].src_reg = BPF_PSEUDO_MAP_FD;
1835 insns[i].imm = map->id;
1836 insns[i + 1].imm = 0;
1837 continue;
1838 }
1839
1840 if (!bpf_dump_raw_ok() &&
1841 imm == (unsigned long)prog->aux) {
1842 insns[i].imm = 0;
1843 insns[i + 1].imm = 0;
1844 continue;
1845 }
1846 }
1847
1848 return insns;
1849}
1850
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001851static int bpf_prog_get_info_by_fd(struct bpf_prog *prog,
1852 const union bpf_attr *attr,
1853 union bpf_attr __user *uattr)
1854{
1855 struct bpf_prog_info __user *uinfo = u64_to_user_ptr(attr->info.info);
1856 struct bpf_prog_info info = {};
1857 u32 info_len = attr->info.info_len;
1858 char __user *uinsns;
1859 u32 ulen;
1860 int err;
1861
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07001862 err = bpf_check_uarg_tail_zero(uinfo, sizeof(info), info_len);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001863 if (err)
1864 return err;
1865 info_len = min_t(u32, sizeof(info), info_len);
1866
1867 if (copy_from_user(&info, uinfo, info_len))
Daniel Borkmann89b09682017-07-27 21:02:46 +02001868 return -EFAULT;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001869
1870 info.type = prog->type;
1871 info.id = prog->aux->id;
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001872 info.load_time = prog->aux->load_time;
1873 info.created_by_uid = from_kuid_munged(current_user_ns(),
1874 prog->aux->user->uid);
Jiri Olsab85fab02018-04-25 19:41:06 +02001875 info.gpl_compatible = prog->gpl_compatible;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001876
1877 memcpy(info.tag, prog->tag, sizeof(prog->tag));
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001878 memcpy(info.name, prog->aux->name, sizeof(prog->aux->name));
1879
1880 ulen = info.nr_map_ids;
1881 info.nr_map_ids = prog->aux->used_map_cnt;
1882 ulen = min_t(u32, info.nr_map_ids, ulen);
1883 if (ulen) {
Martin KaFai Lau721e08d2017-09-29 10:52:17 -07001884 u32 __user *user_map_ids = u64_to_user_ptr(info.map_ids);
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001885 u32 i;
1886
1887 for (i = 0; i < ulen; i++)
1888 if (put_user(prog->aux->used_maps[i]->id,
1889 &user_map_ids[i]))
1890 return -EFAULT;
1891 }
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001892
1893 if (!capable(CAP_SYS_ADMIN)) {
1894 info.jited_prog_len = 0;
1895 info.xlated_prog_len = 0;
Sandipan Dasdbecd732018-05-24 12:26:48 +05301896 info.nr_jited_ksyms = 0;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001897 goto done;
1898 }
1899
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001900 ulen = info.xlated_prog_len;
Daniel Borkmann9975a542017-07-28 17:05:25 +02001901 info.xlated_prog_len = bpf_prog_insn_size(prog);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001902 if (info.xlated_prog_len && ulen) {
Daniel Borkmann7105e822017-12-20 13:42:57 +01001903 struct bpf_insn *insns_sanitized;
1904 bool fault;
1905
1906 if (prog->blinded && !bpf_dump_raw_ok()) {
1907 info.xlated_prog_insns = 0;
1908 goto done;
1909 }
1910 insns_sanitized = bpf_insn_prepare_dump(prog);
1911 if (!insns_sanitized)
1912 return -ENOMEM;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001913 uinsns = u64_to_user_ptr(info.xlated_prog_insns);
1914 ulen = min_t(u32, info.xlated_prog_len, ulen);
Daniel Borkmann7105e822017-12-20 13:42:57 +01001915 fault = copy_to_user(uinsns, insns_sanitized, ulen);
1916 kfree(insns_sanitized);
1917 if (fault)
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001918 return -EFAULT;
1919 }
1920
Jakub Kicinski675fc272017-12-27 18:39:09 -08001921 if (bpf_prog_is_dev_bound(prog->aux)) {
1922 err = bpf_prog_offload_info_fill(&info, prog);
1923 if (err)
1924 return err;
Jiong Wangfcfb1262018-01-16 16:05:19 -08001925 goto done;
1926 }
1927
1928 /* NOTE: the following code is supposed to be skipped for offload.
1929 * bpf_prog_offload_info_fill() is the place to fill similar fields
1930 * for offload.
1931 */
1932 ulen = info.jited_prog_len;
Sandipan Das4d56a762018-05-24 12:26:51 +05301933 if (prog->aux->func_cnt) {
1934 u32 i;
1935
1936 info.jited_prog_len = 0;
1937 for (i = 0; i < prog->aux->func_cnt; i++)
1938 info.jited_prog_len += prog->aux->func[i]->jited_len;
1939 } else {
1940 info.jited_prog_len = prog->jited_len;
1941 }
1942
Jiong Wangfcfb1262018-01-16 16:05:19 -08001943 if (info.jited_prog_len && ulen) {
1944 if (bpf_dump_raw_ok()) {
1945 uinsns = u64_to_user_ptr(info.jited_prog_insns);
1946 ulen = min_t(u32, info.jited_prog_len, ulen);
Sandipan Das4d56a762018-05-24 12:26:51 +05301947
1948 /* for multi-function programs, copy the JITed
1949 * instructions for all the functions
1950 */
1951 if (prog->aux->func_cnt) {
1952 u32 len, free, i;
1953 u8 *img;
1954
1955 free = ulen;
1956 for (i = 0; i < prog->aux->func_cnt; i++) {
1957 len = prog->aux->func[i]->jited_len;
1958 len = min_t(u32, len, free);
1959 img = (u8 *) prog->aux->func[i]->bpf_func;
1960 if (copy_to_user(uinsns, img, len))
1961 return -EFAULT;
1962 uinsns += len;
1963 free -= len;
1964 if (!free)
1965 break;
1966 }
1967 } else {
1968 if (copy_to_user(uinsns, prog->bpf_func, ulen))
1969 return -EFAULT;
1970 }
Jiong Wangfcfb1262018-01-16 16:05:19 -08001971 } else {
1972 info.jited_prog_insns = 0;
1973 }
Jakub Kicinski675fc272017-12-27 18:39:09 -08001974 }
1975
Sandipan Dasdbecd732018-05-24 12:26:48 +05301976 ulen = info.nr_jited_ksyms;
1977 info.nr_jited_ksyms = prog->aux->func_cnt;
1978 if (info.nr_jited_ksyms && ulen) {
1979 if (bpf_dump_raw_ok()) {
1980 u64 __user *user_ksyms;
1981 ulong ksym_addr;
1982 u32 i;
1983
1984 /* copy the address of the kernel symbol
1985 * corresponding to each function
1986 */
1987 ulen = min_t(u32, info.nr_jited_ksyms, ulen);
1988 user_ksyms = u64_to_user_ptr(info.jited_ksyms);
1989 for (i = 0; i < ulen; i++) {
1990 ksym_addr = (ulong) prog->aux->func[i]->bpf_func;
1991 ksym_addr &= PAGE_MASK;
1992 if (put_user((u64) ksym_addr, &user_ksyms[i]))
1993 return -EFAULT;
1994 }
1995 } else {
1996 info.jited_ksyms = 0;
1997 }
1998 }
1999
Sandipan Das815581c2018-05-24 12:26:52 +05302000 ulen = info.nr_jited_func_lens;
2001 info.nr_jited_func_lens = prog->aux->func_cnt;
2002 if (info.nr_jited_func_lens && ulen) {
2003 if (bpf_dump_raw_ok()) {
2004 u32 __user *user_lens;
2005 u32 func_len, i;
2006
2007 /* copy the JITed image lengths for each function */
2008 ulen = min_t(u32, info.nr_jited_func_lens, ulen);
2009 user_lens = u64_to_user_ptr(info.jited_func_lens);
2010 for (i = 0; i < ulen; i++) {
2011 func_len = prog->aux->func[i]->jited_len;
2012 if (put_user(func_len, &user_lens[i]))
2013 return -EFAULT;
2014 }
2015 } else {
2016 info.jited_func_lens = 0;
2017 }
2018 }
2019
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002020done:
2021 if (copy_to_user(uinfo, &info, info_len) ||
2022 put_user(info_len, &uattr->info.info_len))
2023 return -EFAULT;
2024
2025 return 0;
2026}
2027
2028static int bpf_map_get_info_by_fd(struct bpf_map *map,
2029 const union bpf_attr *attr,
2030 union bpf_attr __user *uattr)
2031{
2032 struct bpf_map_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2033 struct bpf_map_info info = {};
2034 u32 info_len = attr->info.info_len;
2035 int err;
2036
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002037 err = bpf_check_uarg_tail_zero(uinfo, sizeof(info), info_len);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002038 if (err)
2039 return err;
2040 info_len = min_t(u32, sizeof(info), info_len);
2041
2042 info.type = map->map_type;
2043 info.id = map->id;
2044 info.key_size = map->key_size;
2045 info.value_size = map->value_size;
2046 info.max_entries = map->max_entries;
2047 info.map_flags = map->map_flags;
Martin KaFai Lauad5b1772017-09-27 14:37:53 -07002048 memcpy(info.name, map->name, sizeof(map->name));
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002049
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002050 if (map->btf) {
2051 info.btf_id = btf_id(map->btf);
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -07002052 info.btf_key_type_id = map->btf_key_type_id;
2053 info.btf_value_type_id = map->btf_value_type_id;
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002054 }
2055
Jakub Kicinski52775b32018-01-17 19:13:28 -08002056 if (bpf_map_is_dev_bound(map)) {
2057 err = bpf_map_offload_info_fill(&info, map);
2058 if (err)
2059 return err;
2060 }
2061
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002062 if (copy_to_user(uinfo, &info, info_len) ||
2063 put_user(info_len, &uattr->info.info_len))
2064 return -EFAULT;
2065
2066 return 0;
2067}
2068
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002069static int bpf_btf_get_info_by_fd(struct btf *btf,
2070 const union bpf_attr *attr,
2071 union bpf_attr __user *uattr)
2072{
2073 struct bpf_btf_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2074 u32 info_len = attr->info.info_len;
2075 int err;
2076
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002077 err = bpf_check_uarg_tail_zero(uinfo, sizeof(*uinfo), info_len);
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002078 if (err)
2079 return err;
2080
2081 return btf_get_info_by_fd(btf, attr, uattr);
2082}
2083
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002084#define BPF_OBJ_GET_INFO_BY_FD_LAST_FIELD info.info
2085
2086static int bpf_obj_get_info_by_fd(const union bpf_attr *attr,
2087 union bpf_attr __user *uattr)
2088{
2089 int ufd = attr->info.bpf_fd;
2090 struct fd f;
2091 int err;
2092
2093 if (CHECK_ATTR(BPF_OBJ_GET_INFO_BY_FD))
2094 return -EINVAL;
2095
2096 f = fdget(ufd);
2097 if (!f.file)
2098 return -EBADFD;
2099
2100 if (f.file->f_op == &bpf_prog_fops)
2101 err = bpf_prog_get_info_by_fd(f.file->private_data, attr,
2102 uattr);
2103 else if (f.file->f_op == &bpf_map_fops)
2104 err = bpf_map_get_info_by_fd(f.file->private_data, attr,
2105 uattr);
Martin KaFai Lau60197cf2018-04-18 15:56:02 -07002106 else if (f.file->f_op == &btf_fops)
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002107 err = bpf_btf_get_info_by_fd(f.file->private_data, attr, uattr);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002108 else
2109 err = -EINVAL;
2110
2111 fdput(f);
2112 return err;
2113}
2114
Martin KaFai Lauf56a6532018-04-18 15:56:01 -07002115#define BPF_BTF_LOAD_LAST_FIELD btf_log_level
2116
2117static int bpf_btf_load(const union bpf_attr *attr)
2118{
2119 if (CHECK_ATTR(BPF_BTF_LOAD))
2120 return -EINVAL;
2121
2122 if (!capable(CAP_SYS_ADMIN))
2123 return -EPERM;
2124
2125 return btf_new_fd(attr);
2126}
2127
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002128#define BPF_BTF_GET_FD_BY_ID_LAST_FIELD btf_id
2129
2130static int bpf_btf_get_fd_by_id(const union bpf_attr *attr)
2131{
2132 if (CHECK_ATTR(BPF_BTF_GET_FD_BY_ID))
2133 return -EINVAL;
2134
2135 if (!capable(CAP_SYS_ADMIN))
2136 return -EPERM;
2137
2138 return btf_get_fd_by_id(attr->btf_id);
2139}
2140
Yonghong Song41bdc4b2018-05-24 11:21:09 -07002141static int bpf_task_fd_query_copy(const union bpf_attr *attr,
2142 union bpf_attr __user *uattr,
2143 u32 prog_id, u32 fd_type,
2144 const char *buf, u64 probe_offset,
2145 u64 probe_addr)
2146{
2147 char __user *ubuf = u64_to_user_ptr(attr->task_fd_query.buf);
2148 u32 len = buf ? strlen(buf) : 0, input_len;
2149 int err = 0;
2150
2151 if (put_user(len, &uattr->task_fd_query.buf_len))
2152 return -EFAULT;
2153 input_len = attr->task_fd_query.buf_len;
2154 if (input_len && ubuf) {
2155 if (!len) {
2156 /* nothing to copy, just make ubuf NULL terminated */
2157 char zero = '\0';
2158
2159 if (put_user(zero, ubuf))
2160 return -EFAULT;
2161 } else if (input_len >= len + 1) {
2162 /* ubuf can hold the string with NULL terminator */
2163 if (copy_to_user(ubuf, buf, len + 1))
2164 return -EFAULT;
2165 } else {
2166 /* ubuf cannot hold the string with NULL terminator,
2167 * do a partial copy with NULL terminator.
2168 */
2169 char zero = '\0';
2170
2171 err = -ENOSPC;
2172 if (copy_to_user(ubuf, buf, input_len - 1))
2173 return -EFAULT;
2174 if (put_user(zero, ubuf + input_len - 1))
2175 return -EFAULT;
2176 }
2177 }
2178
2179 if (put_user(prog_id, &uattr->task_fd_query.prog_id) ||
2180 put_user(fd_type, &uattr->task_fd_query.fd_type) ||
2181 put_user(probe_offset, &uattr->task_fd_query.probe_offset) ||
2182 put_user(probe_addr, &uattr->task_fd_query.probe_addr))
2183 return -EFAULT;
2184
2185 return err;
2186}
2187
2188#define BPF_TASK_FD_QUERY_LAST_FIELD task_fd_query.probe_addr
2189
2190static int bpf_task_fd_query(const union bpf_attr *attr,
2191 union bpf_attr __user *uattr)
2192{
2193 pid_t pid = attr->task_fd_query.pid;
2194 u32 fd = attr->task_fd_query.fd;
2195 const struct perf_event *event;
2196 struct files_struct *files;
2197 struct task_struct *task;
2198 struct file *file;
2199 int err;
2200
2201 if (CHECK_ATTR(BPF_TASK_FD_QUERY))
2202 return -EINVAL;
2203
2204 if (!capable(CAP_SYS_ADMIN))
2205 return -EPERM;
2206
2207 if (attr->task_fd_query.flags != 0)
2208 return -EINVAL;
2209
2210 task = get_pid_task(find_vpid(pid), PIDTYPE_PID);
2211 if (!task)
2212 return -ENOENT;
2213
2214 files = get_files_struct(task);
2215 put_task_struct(task);
2216 if (!files)
2217 return -ENOENT;
2218
2219 err = 0;
2220 spin_lock(&files->file_lock);
2221 file = fcheck_files(files, fd);
2222 if (!file)
2223 err = -EBADF;
2224 else
2225 get_file(file);
2226 spin_unlock(&files->file_lock);
2227 put_files_struct(files);
2228
2229 if (err)
2230 goto out;
2231
2232 if (file->f_op == &bpf_raw_tp_fops) {
2233 struct bpf_raw_tracepoint *raw_tp = file->private_data;
2234 struct bpf_raw_event_map *btp = raw_tp->btp;
2235
2236 err = bpf_task_fd_query_copy(attr, uattr,
2237 raw_tp->prog->aux->id,
2238 BPF_FD_TYPE_RAW_TRACEPOINT,
2239 btp->tp->name, 0, 0);
2240 goto put_file;
2241 }
2242
2243 event = perf_get_event(file);
2244 if (!IS_ERR(event)) {
2245 u64 probe_offset, probe_addr;
2246 u32 prog_id, fd_type;
2247 const char *buf;
2248
2249 err = bpf_get_perf_event_info(event, &prog_id, &fd_type,
2250 &buf, &probe_offset,
2251 &probe_addr);
2252 if (!err)
2253 err = bpf_task_fd_query_copy(attr, uattr, prog_id,
2254 fd_type, buf,
2255 probe_offset,
2256 probe_addr);
2257 goto put_file;
2258 }
2259
2260 err = -ENOTSUPP;
2261put_file:
2262 fput(file);
2263out:
2264 return err;
2265}
2266
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002267SYSCALL_DEFINE3(bpf, int, cmd, union bpf_attr __user *, uattr, unsigned int, size)
2268{
2269 union bpf_attr attr = {};
2270 int err;
2271
Chenbo Feng0fa4fe82018-03-19 17:57:27 -07002272 if (sysctl_unprivileged_bpf_disabled && !capable(CAP_SYS_ADMIN))
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002273 return -EPERM;
2274
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002275 err = bpf_check_uarg_tail_zero(uattr, sizeof(attr), size);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002276 if (err)
2277 return err;
2278 size = min_t(u32, size, sizeof(attr));
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002279
2280 /* copy attributes from user space, may be less than sizeof(bpf_attr) */
2281 if (copy_from_user(&attr, uattr, size) != 0)
2282 return -EFAULT;
2283
Chenbo Fengafdb09c2017-10-18 13:00:24 -07002284 err = security_bpf(cmd, &attr, size);
2285 if (err < 0)
2286 return err;
2287
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002288 switch (cmd) {
2289 case BPF_MAP_CREATE:
2290 err = map_create(&attr);
2291 break;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -07002292 case BPF_MAP_LOOKUP_ELEM:
2293 err = map_lookup_elem(&attr);
2294 break;
2295 case BPF_MAP_UPDATE_ELEM:
2296 err = map_update_elem(&attr);
2297 break;
2298 case BPF_MAP_DELETE_ELEM:
2299 err = map_delete_elem(&attr);
2300 break;
2301 case BPF_MAP_GET_NEXT_KEY:
2302 err = map_get_next_key(&attr);
2303 break;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07002304 case BPF_PROG_LOAD:
2305 err = bpf_prog_load(&attr);
2306 break;
Daniel Borkmannb2197752015-10-29 14:58:09 +01002307 case BPF_OBJ_PIN:
2308 err = bpf_obj_pin(&attr);
2309 break;
2310 case BPF_OBJ_GET:
2311 err = bpf_obj_get(&attr);
2312 break;
Daniel Mackf4324552016-11-23 16:52:27 +01002313 case BPF_PROG_ATTACH:
2314 err = bpf_prog_attach(&attr);
2315 break;
2316 case BPF_PROG_DETACH:
2317 err = bpf_prog_detach(&attr);
2318 break;
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07002319 case BPF_PROG_QUERY:
2320 err = bpf_prog_query(&attr, uattr);
2321 break;
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07002322 case BPF_PROG_TEST_RUN:
2323 err = bpf_prog_test_run(&attr, uattr);
2324 break;
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07002325 case BPF_PROG_GET_NEXT_ID:
2326 err = bpf_obj_get_next_id(&attr, uattr,
2327 &prog_idr, &prog_idr_lock);
2328 break;
2329 case BPF_MAP_GET_NEXT_ID:
2330 err = bpf_obj_get_next_id(&attr, uattr,
2331 &map_idr, &map_idr_lock);
2332 break;
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07002333 case BPF_PROG_GET_FD_BY_ID:
2334 err = bpf_prog_get_fd_by_id(&attr);
2335 break;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07002336 case BPF_MAP_GET_FD_BY_ID:
2337 err = bpf_map_get_fd_by_id(&attr);
2338 break;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002339 case BPF_OBJ_GET_INFO_BY_FD:
2340 err = bpf_obj_get_info_by_fd(&attr, uattr);
2341 break;
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07002342 case BPF_RAW_TRACEPOINT_OPEN:
2343 err = bpf_raw_tracepoint_open(&attr);
2344 break;
Martin KaFai Lauf56a6532018-04-18 15:56:01 -07002345 case BPF_BTF_LOAD:
2346 err = bpf_btf_load(&attr);
2347 break;
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002348 case BPF_BTF_GET_FD_BY_ID:
2349 err = bpf_btf_get_fd_by_id(&attr);
2350 break;
Yonghong Song41bdc4b2018-05-24 11:21:09 -07002351 case BPF_TASK_FD_QUERY:
2352 err = bpf_task_fd_query(&attr, uattr);
2353 break;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002354 default:
2355 err = -EINVAL;
2356 break;
2357 }
2358
2359 return err;
2360}