blob: 8f434485abd2dd481c55072c49636463bb508416 [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>
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070014#include <linux/syscalls.h>
15#include <linux/slab.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010016#include <linux/sched/signal.h>
Daniel Borkmannd407bd22017-01-18 15:14:17 +010017#include <linux/vmalloc.h>
18#include <linux/mmzone.h>
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070019#include <linux/anon_inodes.h>
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -070020#include <linux/file.h>
Alexei Starovoitov09756af2014-09-26 00:17:00 -070021#include <linux/license.h>
22#include <linux/filter.h>
Alexei Starovoitov25415172015-03-25 12:49:20 -070023#include <linux/version.h>
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +010024#include <linux/kernel.h>
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -070025#include <linux/idr.h>
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -070026#include <linux/cred.h>
27#include <linux/timekeeping.h>
28#include <linux/ctype.h>
Mark Rutland9ef09e32018-05-03 17:04:59 +010029#include <linux/nospec.h>
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070030
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -070031#define IS_FD_ARRAY(map) ((map)->map_type == BPF_MAP_TYPE_PROG_ARRAY || \
32 (map)->map_type == BPF_MAP_TYPE_PERF_EVENT_ARRAY || \
33 (map)->map_type == BPF_MAP_TYPE_CGROUP_ARRAY || \
34 (map)->map_type == BPF_MAP_TYPE_ARRAY_OF_MAPS)
35#define IS_FD_HASH(map) ((map)->map_type == BPF_MAP_TYPE_HASH_OF_MAPS)
36#define IS_FD_MAP(map) (IS_FD_ARRAY(map) || IS_FD_HASH(map))
37
Chenbo Feng6e71b042017-10-18 13:00:22 -070038#define BPF_OBJ_FLAG_MASK (BPF_F_RDONLY | BPF_F_WRONLY)
39
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -080040DEFINE_PER_CPU(int, bpf_prog_active);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -070041static DEFINE_IDR(prog_idr);
42static DEFINE_SPINLOCK(prog_idr_lock);
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -070043static DEFINE_IDR(map_idr);
44static DEFINE_SPINLOCK(map_idr_lock);
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -080045
Alexei Starovoitov1be7f752015-10-07 22:23:21 -070046int sysctl_unprivileged_bpf_disabled __read_mostly;
47
Johannes Berg40077e02017-04-11 15:34:58 +020048static const struct bpf_map_ops * const bpf_map_types[] = {
49#define BPF_PROG_TYPE(_id, _ops)
50#define BPF_MAP_TYPE(_id, _ops) \
51 [_id] = &_ops,
52#include <linux/bpf_types.h>
53#undef BPF_PROG_TYPE
54#undef BPF_MAP_TYPE
55};
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070056
Mickaël Salaün752ba562017-08-07 20:45:20 +020057/*
58 * If we're handed a bigger struct than we know of, ensure all the unknown bits
59 * are 0 - i.e. new user-space does not rely on any kernel feature extensions
60 * we don't know about yet.
61 *
62 * There is a ToCToU between this function call and the following
63 * copy_from_user() call. However, this is not a concern since this function is
64 * meant to be a future-proofing of bits.
65 */
Mickaël Salaün58291a72017-08-07 20:45:19 +020066static int check_uarg_tail_zero(void __user *uaddr,
67 size_t expected_size,
68 size_t actual_size)
69{
70 unsigned char __user *addr;
71 unsigned char __user *end;
72 unsigned char val;
73 int err;
74
Mickaël Salaün752ba562017-08-07 20:45:20 +020075 if (unlikely(actual_size > PAGE_SIZE)) /* silly large */
76 return -E2BIG;
77
78 if (unlikely(!access_ok(VERIFY_READ, uaddr, actual_size)))
79 return -EFAULT;
80
Mickaël Salaün58291a72017-08-07 20:45:19 +020081 if (actual_size <= expected_size)
82 return 0;
83
84 addr = uaddr + expected_size;
85 end = uaddr + actual_size;
86
87 for (; addr < end; addr++) {
88 err = get_user(val, addr);
89 if (err)
90 return err;
91 if (val)
92 return -E2BIG;
93 }
94
95 return 0;
96}
97
Jakub Kicinskia3884572018-01-11 20:29:09 -080098const struct bpf_map_ops bpf_map_offload_ops = {
99 .map_alloc = bpf_map_offload_map_alloc,
100 .map_free = bpf_map_offload_map_free,
101};
102
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700103static struct bpf_map *find_and_alloc_map(union bpf_attr *attr)
104{
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800105 const struct bpf_map_ops *ops;
Mark Rutland9ef09e32018-05-03 17:04:59 +0100106 u32 type = attr->map_type;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700107 struct bpf_map *map;
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800108 int err;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700109
Mark Rutland9ef09e32018-05-03 17:04:59 +0100110 if (type >= ARRAY_SIZE(bpf_map_types))
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800111 return ERR_PTR(-EINVAL);
Mark Rutland9ef09e32018-05-03 17:04:59 +0100112 type = array_index_nospec(type, ARRAY_SIZE(bpf_map_types));
113 ops = bpf_map_types[type];
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800114 if (!ops)
Johannes Berg40077e02017-04-11 15:34:58 +0200115 return ERR_PTR(-EINVAL);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700116
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800117 if (ops->map_alloc_check) {
118 err = ops->map_alloc_check(attr);
119 if (err)
120 return ERR_PTR(err);
121 }
Jakub Kicinskia3884572018-01-11 20:29:09 -0800122 if (attr->map_ifindex)
123 ops = &bpf_map_offload_ops;
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800124 map = ops->map_alloc(attr);
Johannes Berg40077e02017-04-11 15:34:58 +0200125 if (IS_ERR(map))
126 return map;
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800127 map->ops = ops;
Mark Rutland9ef09e32018-05-03 17:04:59 +0100128 map->map_type = type;
Johannes Berg40077e02017-04-11 15:34:58 +0200129 return map;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700130}
131
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700132void *bpf_map_area_alloc(size_t size, int numa_node)
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100133{
134 /* We definitely need __GFP_NORETRY, so OOM killer doesn't
135 * trigger under memory pressure as we really just want to
136 * fail instead.
137 */
138 const gfp_t flags = __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO;
139 void *area;
140
141 if (size <= (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER)) {
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700142 area = kmalloc_node(size, GFP_USER | flags, numa_node);
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100143 if (area != NULL)
144 return area;
145 }
146
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700147 return __vmalloc_node_flags_caller(size, numa_node, GFP_KERNEL | flags,
148 __builtin_return_address(0));
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100149}
150
151void bpf_map_area_free(void *area)
152{
153 kvfree(area);
154}
155
Jakub Kicinskibd475642018-01-11 20:29:06 -0800156void bpf_map_init_from_attr(struct bpf_map *map, union bpf_attr *attr)
157{
158 map->map_type = attr->map_type;
159 map->key_size = attr->key_size;
160 map->value_size = attr->value_size;
161 map->max_entries = attr->max_entries;
162 map->map_flags = attr->map_flags;
163 map->numa_node = bpf_map_attr_numa_node(attr);
164}
165
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800166int bpf_map_precharge_memlock(u32 pages)
167{
168 struct user_struct *user = get_current_user();
169 unsigned long memlock_limit, cur;
170
171 memlock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
172 cur = atomic_long_read(&user->locked_vm);
173 free_uid(user);
174 if (cur + pages > memlock_limit)
175 return -EPERM;
176 return 0;
177}
178
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700179static int bpf_map_charge_memlock(struct bpf_map *map)
180{
181 struct user_struct *user = get_current_user();
182 unsigned long memlock_limit;
183
184 memlock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
185
186 atomic_long_add(map->pages, &user->locked_vm);
187
188 if (atomic_long_read(&user->locked_vm) > memlock_limit) {
189 atomic_long_sub(map->pages, &user->locked_vm);
190 free_uid(user);
191 return -EPERM;
192 }
193 map->user = user;
194 return 0;
195}
196
197static void bpf_map_uncharge_memlock(struct bpf_map *map)
198{
199 struct user_struct *user = map->user;
200
201 atomic_long_sub(map->pages, &user->locked_vm);
202 free_uid(user);
203}
204
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700205static int bpf_map_alloc_id(struct bpf_map *map)
206{
207 int id;
208
Shaohua Lib76354c2018-03-27 11:53:21 -0700209 idr_preload(GFP_KERNEL);
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700210 spin_lock_bh(&map_idr_lock);
211 id = idr_alloc_cyclic(&map_idr, map, 1, INT_MAX, GFP_ATOMIC);
212 if (id > 0)
213 map->id = id;
214 spin_unlock_bh(&map_idr_lock);
Shaohua Lib76354c2018-03-27 11:53:21 -0700215 idr_preload_end();
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700216
217 if (WARN_ON_ONCE(!id))
218 return -ENOSPC;
219
220 return id > 0 ? 0 : id;
221}
222
Jakub Kicinskia3884572018-01-11 20:29:09 -0800223void bpf_map_free_id(struct bpf_map *map, bool do_idr_lock)
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700224{
Eric Dumazet930651a2017-09-19 09:15:59 -0700225 unsigned long flags;
226
Jakub Kicinskia3884572018-01-11 20:29:09 -0800227 /* Offloaded maps are removed from the IDR store when their device
228 * disappears - even if someone holds an fd to them they are unusable,
229 * the memory is gone, all ops will fail; they are simply waiting for
230 * refcnt to drop to be freed.
231 */
232 if (!map->id)
233 return;
234
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700235 if (do_idr_lock)
Eric Dumazet930651a2017-09-19 09:15:59 -0700236 spin_lock_irqsave(&map_idr_lock, flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700237 else
238 __acquire(&map_idr_lock);
239
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700240 idr_remove(&map_idr, map->id);
Jakub Kicinskia3884572018-01-11 20:29:09 -0800241 map->id = 0;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700242
243 if (do_idr_lock)
Eric Dumazet930651a2017-09-19 09:15:59 -0700244 spin_unlock_irqrestore(&map_idr_lock, flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700245 else
246 __release(&map_idr_lock);
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700247}
248
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700249/* called from workqueue */
250static void bpf_map_free_deferred(struct work_struct *work)
251{
252 struct bpf_map *map = container_of(work, struct bpf_map, work);
253
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700254 bpf_map_uncharge_memlock(map);
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700255 security_bpf_map_free(map);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700256 /* implementation dependent freeing */
257 map->ops->map_free(map);
258}
259
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100260static void bpf_map_put_uref(struct bpf_map *map)
261{
262 if (atomic_dec_and_test(&map->usercnt)) {
John Fastabendba6b8de2018-04-23 15:39:23 -0700263 if (map->ops->map_release_uref)
264 map->ops->map_release_uref(map);
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100265 }
266}
267
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700268/* decrement map refcnt and schedule it for freeing via workqueue
269 * (unrelying map implementation ops->map_free() might sleep)
270 */
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700271static void __bpf_map_put(struct bpf_map *map, bool do_idr_lock)
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700272{
273 if (atomic_dec_and_test(&map->refcnt)) {
Martin KaFai Lau34ad5582017-06-05 12:15:48 -0700274 /* bpf_map_free_id() must be called first */
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700275 bpf_map_free_id(map, do_idr_lock);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700276 INIT_WORK(&map->work, bpf_map_free_deferred);
277 schedule_work(&map->work);
278 }
279}
280
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700281void bpf_map_put(struct bpf_map *map)
282{
283 __bpf_map_put(map, true);
284}
285
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100286void bpf_map_put_with_uref(struct bpf_map *map)
287{
288 bpf_map_put_uref(map);
289 bpf_map_put(map);
290}
291
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700292static int bpf_map_release(struct inode *inode, struct file *filp)
293{
Daniel Borkmann61d1b6a2016-06-15 22:47:12 +0200294 struct bpf_map *map = filp->private_data;
295
296 if (map->ops->map_release)
297 map->ops->map_release(map, filp);
298
299 bpf_map_put_with_uref(map);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700300 return 0;
301}
302
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100303#ifdef CONFIG_PROC_FS
304static void bpf_map_show_fdinfo(struct seq_file *m, struct file *filp)
305{
306 const struct bpf_map *map = filp->private_data;
Daniel Borkmann21116b72016-11-26 01:28:07 +0100307 const struct bpf_array *array;
308 u32 owner_prog_type = 0;
Daniel Borkmann9780c0a2017-07-02 02:13:28 +0200309 u32 owner_jited = 0;
Daniel Borkmann21116b72016-11-26 01:28:07 +0100310
311 if (map->map_type == BPF_MAP_TYPE_PROG_ARRAY) {
312 array = container_of(map, struct bpf_array, map);
313 owner_prog_type = array->owner_prog_type;
Daniel Borkmann9780c0a2017-07-02 02:13:28 +0200314 owner_jited = array->owner_jited;
Daniel Borkmann21116b72016-11-26 01:28:07 +0100315 }
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100316
317 seq_printf(m,
318 "map_type:\t%u\n"
319 "key_size:\t%u\n"
320 "value_size:\t%u\n"
Daniel Borkmann322cea22016-03-25 00:30:25 +0100321 "max_entries:\t%u\n"
Daniel Borkmann21116b72016-11-26 01:28:07 +0100322 "map_flags:\t%#x\n"
323 "memlock:\t%llu\n",
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100324 map->map_type,
325 map->key_size,
326 map->value_size,
Daniel Borkmann322cea22016-03-25 00:30:25 +0100327 map->max_entries,
Daniel Borkmann21116b72016-11-26 01:28:07 +0100328 map->map_flags,
329 map->pages * 1ULL << PAGE_SHIFT);
330
Daniel Borkmann9780c0a2017-07-02 02:13:28 +0200331 if (owner_prog_type) {
Daniel Borkmann21116b72016-11-26 01:28:07 +0100332 seq_printf(m, "owner_prog_type:\t%u\n",
333 owner_prog_type);
Daniel Borkmann9780c0a2017-07-02 02:13:28 +0200334 seq_printf(m, "owner_jited:\t%u\n",
335 owner_jited);
336 }
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100337}
338#endif
339
Chenbo Feng6e71b042017-10-18 13:00:22 -0700340static ssize_t bpf_dummy_read(struct file *filp, char __user *buf, size_t siz,
341 loff_t *ppos)
342{
343 /* We need this handler such that alloc_file() enables
344 * f_mode with FMODE_CAN_READ.
345 */
346 return -EINVAL;
347}
348
349static ssize_t bpf_dummy_write(struct file *filp, const char __user *buf,
350 size_t siz, loff_t *ppos)
351{
352 /* We need this handler such that alloc_file() enables
353 * f_mode with FMODE_CAN_WRITE.
354 */
355 return -EINVAL;
356}
357
Chenbo Fengf66e4482017-10-18 13:00:26 -0700358const struct file_operations bpf_map_fops = {
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100359#ifdef CONFIG_PROC_FS
360 .show_fdinfo = bpf_map_show_fdinfo,
361#endif
362 .release = bpf_map_release,
Chenbo Feng6e71b042017-10-18 13:00:22 -0700363 .read = bpf_dummy_read,
364 .write = bpf_dummy_write,
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700365};
366
Chenbo Feng6e71b042017-10-18 13:00:22 -0700367int bpf_map_new_fd(struct bpf_map *map, int flags)
Daniel Borkmannaa797812015-10-29 14:58:06 +0100368{
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700369 int ret;
370
371 ret = security_bpf_map(map, OPEN_FMODE(flags));
372 if (ret < 0)
373 return ret;
374
Daniel Borkmannaa797812015-10-29 14:58:06 +0100375 return anon_inode_getfd("bpf-map", &bpf_map_fops, map,
Chenbo Feng6e71b042017-10-18 13:00:22 -0700376 flags | O_CLOEXEC);
377}
378
379int bpf_get_file_flag(int flags)
380{
381 if ((flags & BPF_F_RDONLY) && (flags & BPF_F_WRONLY))
382 return -EINVAL;
383 if (flags & BPF_F_RDONLY)
384 return O_RDONLY;
385 if (flags & BPF_F_WRONLY)
386 return O_WRONLY;
387 return O_RDWR;
Daniel Borkmannaa797812015-10-29 14:58:06 +0100388}
389
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700390/* helper macro to check that unused fields 'union bpf_attr' are zero */
391#define CHECK_ATTR(CMD) \
392 memchr_inv((void *) &attr->CMD##_LAST_FIELD + \
393 sizeof(attr->CMD##_LAST_FIELD), 0, \
394 sizeof(*attr) - \
395 offsetof(union bpf_attr, CMD##_LAST_FIELD) - \
396 sizeof(attr->CMD##_LAST_FIELD)) != NULL
397
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -0700398/* dst and src must have at least BPF_OBJ_NAME_LEN number of bytes.
399 * Return 0 on success and < 0 on error.
400 */
401static int bpf_obj_name_cpy(char *dst, const char *src)
402{
403 const char *end = src + BPF_OBJ_NAME_LEN;
404
Martin KaFai Lau473d9732017-10-05 21:52:11 -0700405 memset(dst, 0, BPF_OBJ_NAME_LEN);
406
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -0700407 /* Copy all isalnum() and '_' char */
408 while (src < end && *src) {
409 if (!isalnum(*src) && *src != '_')
410 return -EINVAL;
411 *dst++ = *src++;
412 }
413
414 /* No '\0' found in BPF_OBJ_NAME_LEN number of bytes */
415 if (src == end)
416 return -EINVAL;
417
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -0700418 return 0;
419}
420
Jakub Kicinskia3884572018-01-11 20:29:09 -0800421#define BPF_MAP_CREATE_LAST_FIELD map_ifindex
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700422/* called via syscall */
423static int map_create(union bpf_attr *attr)
424{
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700425 int numa_node = bpf_map_attr_numa_node(attr);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700426 struct bpf_map *map;
Chenbo Feng6e71b042017-10-18 13:00:22 -0700427 int f_flags;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700428 int err;
429
430 err = CHECK_ATTR(BPF_MAP_CREATE);
431 if (err)
432 return -EINVAL;
433
Chenbo Feng6e71b042017-10-18 13:00:22 -0700434 f_flags = bpf_get_file_flag(attr->map_flags);
435 if (f_flags < 0)
436 return f_flags;
437
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700438 if (numa_node != NUMA_NO_NODE &&
Eric Dumazet96e5ae42017-09-04 22:41:02 -0700439 ((unsigned int)numa_node >= nr_node_ids ||
440 !node_online(numa_node)))
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700441 return -EINVAL;
442
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700443 /* find map type and init map: hashtable vs rbtree vs bloom vs ... */
444 map = find_and_alloc_map(attr);
445 if (IS_ERR(map))
446 return PTR_ERR(map);
447
Martin KaFai Lauad5b1772017-09-27 14:37:53 -0700448 err = bpf_obj_name_cpy(map->name, attr->map_name);
449 if (err)
450 goto free_map_nouncharge;
451
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700452 atomic_set(&map->refcnt, 1);
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100453 atomic_set(&map->usercnt, 1);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700454
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700455 err = security_bpf_map_alloc(map);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700456 if (err)
Daniel Borkmann20b2b242016-11-04 00:56:31 +0100457 goto free_map_nouncharge;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700458
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700459 err = bpf_map_charge_memlock(map);
460 if (err)
461 goto free_map_sec;
462
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700463 err = bpf_map_alloc_id(map);
464 if (err)
465 goto free_map;
466
Chenbo Feng6e71b042017-10-18 13:00:22 -0700467 err = bpf_map_new_fd(map, f_flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700468 if (err < 0) {
469 /* failed to allocate fd.
470 * bpf_map_put() is needed because the above
471 * bpf_map_alloc_id() has published the map
472 * to the userspace and the userspace may
473 * have refcnt-ed it through BPF_MAP_GET_FD_BY_ID.
474 */
475 bpf_map_put(map);
476 return err;
477 }
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700478
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100479 trace_bpf_map_create(map, err);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700480 return err;
481
482free_map:
Daniel Borkmann20b2b242016-11-04 00:56:31 +0100483 bpf_map_uncharge_memlock(map);
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700484free_map_sec:
485 security_bpf_map_free(map);
Daniel Borkmann20b2b242016-11-04 00:56:31 +0100486free_map_nouncharge:
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700487 map->ops->map_free(map);
488 return err;
489}
490
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700491/* if error is returned, fd is released.
492 * On success caller should complete fd access with matching fdput()
493 */
Daniel Borkmannc2101292015-10-29 14:58:07 +0100494struct bpf_map *__bpf_map_get(struct fd f)
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700495{
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700496 if (!f.file)
497 return ERR_PTR(-EBADF);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700498 if (f.file->f_op != &bpf_map_fops) {
499 fdput(f);
500 return ERR_PTR(-EINVAL);
501 }
502
Daniel Borkmannc2101292015-10-29 14:58:07 +0100503 return f.file->private_data;
504}
505
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700506/* prog's and map's refcnt limit */
507#define BPF_MAX_REFCNT 32768
508
509struct bpf_map *bpf_map_inc(struct bpf_map *map, bool uref)
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100510{
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700511 if (atomic_inc_return(&map->refcnt) > BPF_MAX_REFCNT) {
512 atomic_dec(&map->refcnt);
513 return ERR_PTR(-EBUSY);
514 }
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100515 if (uref)
516 atomic_inc(&map->usercnt);
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700517 return map;
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100518}
519
520struct bpf_map *bpf_map_get_with_uref(u32 ufd)
Daniel Borkmannc2101292015-10-29 14:58:07 +0100521{
522 struct fd f = fdget(ufd);
523 struct bpf_map *map;
524
525 map = __bpf_map_get(f);
526 if (IS_ERR(map))
527 return map;
528
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700529 map = bpf_map_inc(map, true);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100530 fdput(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700531
532 return map;
533}
534
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700535/* map_idr_lock should have been held */
536static struct bpf_map *bpf_map_inc_not_zero(struct bpf_map *map,
537 bool uref)
538{
539 int refold;
540
541 refold = __atomic_add_unless(&map->refcnt, 1, 0);
542
543 if (refold >= BPF_MAX_REFCNT) {
544 __bpf_map_put(map, false);
545 return ERR_PTR(-EBUSY);
546 }
547
548 if (!refold)
549 return ERR_PTR(-ENOENT);
550
551 if (uref)
552 atomic_inc(&map->usercnt);
553
554 return map;
555}
556
Alexei Starovoitovb8cdc052016-03-09 18:56:49 -0800557int __weak bpf_stackmap_copy(struct bpf_map *map, void *key, void *value)
558{
559 return -ENOTSUPP;
560}
561
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700562/* last field in 'union bpf_attr' used by this command */
563#define BPF_MAP_LOOKUP_ELEM_LAST_FIELD value
564
565static int map_lookup_elem(union bpf_attr *attr)
566{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100567 void __user *ukey = u64_to_user_ptr(attr->key);
568 void __user *uvalue = u64_to_user_ptr(attr->value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700569 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700570 struct bpf_map *map;
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800571 void *key, *value, *ptr;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800572 u32 value_size;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200573 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700574 int err;
575
576 if (CHECK_ATTR(BPF_MAP_LOOKUP_ELEM))
577 return -EINVAL;
578
Daniel Borkmann592867b2015-09-08 18:00:09 +0200579 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100580 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700581 if (IS_ERR(map))
582 return PTR_ERR(map);
583
Chenbo Feng6e71b042017-10-18 13:00:22 -0700584 if (!(f.file->f_mode & FMODE_CAN_READ)) {
585 err = -EPERM;
586 goto err_put;
587 }
588
Al Viroe4448ed2017-05-13 18:43:00 -0400589 key = memdup_user(ukey, map->key_size);
590 if (IS_ERR(key)) {
591 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700592 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400593 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700594
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800595 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800596 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH ||
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800597 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY)
598 value_size = round_up(map->value_size, 8) * num_possible_cpus();
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -0700599 else if (IS_FD_MAP(map))
600 value_size = sizeof(u32);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800601 else
602 value_size = map->value_size;
603
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800604 err = -ENOMEM;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800605 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700606 if (!value)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800607 goto free_key;
608
Jakub Kicinskia3884572018-01-11 20:29:09 -0800609 if (bpf_map_is_dev_bound(map)) {
610 err = bpf_map_offload_lookup_elem(map, key, value);
611 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
612 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) {
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800613 err = bpf_percpu_hash_copy(map, key, value);
614 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) {
615 err = bpf_percpu_array_copy(map, key, value);
Alexei Starovoitov557c0c62016-03-07 21:57:17 -0800616 } else if (map->map_type == BPF_MAP_TYPE_STACK_TRACE) {
617 err = bpf_stackmap_copy(map, key, value);
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -0700618 } else if (IS_FD_ARRAY(map)) {
619 err = bpf_fd_array_map_lookup_elem(map, key, value);
620 } else if (IS_FD_HASH(map)) {
621 err = bpf_fd_htab_map_lookup_elem(map, key, value);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800622 } else {
623 rcu_read_lock();
624 ptr = map->ops->map_lookup_elem(map, key);
625 if (ptr)
626 memcpy(value, ptr, value_size);
627 rcu_read_unlock();
628 err = ptr ? 0 : -ENOENT;
629 }
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800630
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800631 if (err)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800632 goto free_value;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700633
634 err = -EFAULT;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800635 if (copy_to_user(uvalue, value, value_size) != 0)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800636 goto free_value;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700637
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100638 trace_bpf_map_lookup_elem(map, ufd, key, value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700639 err = 0;
640
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800641free_value:
642 kfree(value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700643free_key:
644 kfree(key);
645err_put:
646 fdput(f);
647 return err;
648}
649
Alexei Starovoitov3274f522014-11-13 17:36:44 -0800650#define BPF_MAP_UPDATE_ELEM_LAST_FIELD flags
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700651
652static int map_update_elem(union bpf_attr *attr)
653{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100654 void __user *ukey = u64_to_user_ptr(attr->key);
655 void __user *uvalue = u64_to_user_ptr(attr->value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700656 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700657 struct bpf_map *map;
658 void *key, *value;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800659 u32 value_size;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200660 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700661 int err;
662
663 if (CHECK_ATTR(BPF_MAP_UPDATE_ELEM))
664 return -EINVAL;
665
Daniel Borkmann592867b2015-09-08 18:00:09 +0200666 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100667 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700668 if (IS_ERR(map))
669 return PTR_ERR(map);
670
Chenbo Feng6e71b042017-10-18 13:00:22 -0700671 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
672 err = -EPERM;
673 goto err_put;
674 }
675
Al Viroe4448ed2017-05-13 18:43:00 -0400676 key = memdup_user(ukey, map->key_size);
677 if (IS_ERR(key)) {
678 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700679 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400680 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700681
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800682 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800683 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH ||
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800684 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY)
685 value_size = round_up(map->value_size, 8) * num_possible_cpus();
686 else
687 value_size = map->value_size;
688
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700689 err = -ENOMEM;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800690 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700691 if (!value)
692 goto free_key;
693
694 err = -EFAULT;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800695 if (copy_from_user(value, uvalue, value_size) != 0)
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700696 goto free_value;
697
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200698 /* Need to create a kthread, thus must support schedule */
Jakub Kicinskia3884572018-01-11 20:29:09 -0800699 if (bpf_map_is_dev_bound(map)) {
700 err = bpf_map_offload_update_elem(map, key, value, attr->flags);
701 goto out;
702 } else if (map->map_type == BPF_MAP_TYPE_CPUMAP) {
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200703 err = map->ops->map_update_elem(map, key, value, attr->flags);
704 goto out;
705 }
706
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800707 /* must increment bpf_prog_active to avoid kprobe+bpf triggering from
708 * inside bpf map update or delete otherwise deadlocks are possible
709 */
710 preempt_disable();
711 __this_cpu_inc(bpf_prog_active);
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800712 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
713 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) {
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800714 err = bpf_percpu_hash_update(map, key, value, attr->flags);
715 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) {
716 err = bpf_percpu_array_update(map, key, value, attr->flags);
Mickaël Salaün9c147b52018-01-26 00:54:02 +0100717 } else if (IS_FD_ARRAY(map)) {
Daniel Borkmannd056a782016-06-15 22:47:13 +0200718 rcu_read_lock();
719 err = bpf_fd_array_map_update_elem(map, f.file, key, value,
720 attr->flags);
721 rcu_read_unlock();
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700722 } else if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS) {
723 rcu_read_lock();
724 err = bpf_fd_htab_map_update_elem(map, f.file, key, value,
725 attr->flags);
726 rcu_read_unlock();
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800727 } else {
728 rcu_read_lock();
729 err = map->ops->map_update_elem(map, key, value, attr->flags);
730 rcu_read_unlock();
731 }
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800732 __this_cpu_dec(bpf_prog_active);
733 preempt_enable();
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200734out:
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100735 if (!err)
736 trace_bpf_map_update_elem(map, ufd, key, value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700737free_value:
738 kfree(value);
739free_key:
740 kfree(key);
741err_put:
742 fdput(f);
743 return err;
744}
745
746#define BPF_MAP_DELETE_ELEM_LAST_FIELD key
747
748static int map_delete_elem(union bpf_attr *attr)
749{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100750 void __user *ukey = u64_to_user_ptr(attr->key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700751 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700752 struct bpf_map *map;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200753 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700754 void *key;
755 int err;
756
757 if (CHECK_ATTR(BPF_MAP_DELETE_ELEM))
758 return -EINVAL;
759
Daniel Borkmann592867b2015-09-08 18:00:09 +0200760 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100761 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700762 if (IS_ERR(map))
763 return PTR_ERR(map);
764
Chenbo Feng6e71b042017-10-18 13:00:22 -0700765 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
766 err = -EPERM;
767 goto err_put;
768 }
769
Al Viroe4448ed2017-05-13 18:43:00 -0400770 key = memdup_user(ukey, map->key_size);
771 if (IS_ERR(key)) {
772 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700773 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400774 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700775
Jakub Kicinskia3884572018-01-11 20:29:09 -0800776 if (bpf_map_is_dev_bound(map)) {
777 err = bpf_map_offload_delete_elem(map, key);
778 goto out;
779 }
780
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800781 preempt_disable();
782 __this_cpu_inc(bpf_prog_active);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700783 rcu_read_lock();
784 err = map->ops->map_delete_elem(map, key);
785 rcu_read_unlock();
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800786 __this_cpu_dec(bpf_prog_active);
787 preempt_enable();
Jakub Kicinskia3884572018-01-11 20:29:09 -0800788out:
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100789 if (!err)
790 trace_bpf_map_delete_elem(map, ufd, key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700791 kfree(key);
792err_put:
793 fdput(f);
794 return err;
795}
796
797/* last field in 'union bpf_attr' used by this command */
798#define BPF_MAP_GET_NEXT_KEY_LAST_FIELD next_key
799
800static int map_get_next_key(union bpf_attr *attr)
801{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100802 void __user *ukey = u64_to_user_ptr(attr->key);
803 void __user *unext_key = u64_to_user_ptr(attr->next_key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700804 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700805 struct bpf_map *map;
806 void *key, *next_key;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200807 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700808 int err;
809
810 if (CHECK_ATTR(BPF_MAP_GET_NEXT_KEY))
811 return -EINVAL;
812
Daniel Borkmann592867b2015-09-08 18:00:09 +0200813 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100814 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700815 if (IS_ERR(map))
816 return PTR_ERR(map);
817
Chenbo Feng6e71b042017-10-18 13:00:22 -0700818 if (!(f.file->f_mode & FMODE_CAN_READ)) {
819 err = -EPERM;
820 goto err_put;
821 }
822
Teng Qin8fe45922017-04-24 19:00:37 -0700823 if (ukey) {
Al Viroe4448ed2017-05-13 18:43:00 -0400824 key = memdup_user(ukey, map->key_size);
825 if (IS_ERR(key)) {
826 err = PTR_ERR(key);
Teng Qin8fe45922017-04-24 19:00:37 -0700827 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400828 }
Teng Qin8fe45922017-04-24 19:00:37 -0700829 } else {
830 key = NULL;
831 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700832
833 err = -ENOMEM;
834 next_key = kmalloc(map->key_size, GFP_USER);
835 if (!next_key)
836 goto free_key;
837
Jakub Kicinskia3884572018-01-11 20:29:09 -0800838 if (bpf_map_is_dev_bound(map)) {
839 err = bpf_map_offload_get_next_key(map, key, next_key);
840 goto out;
841 }
842
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700843 rcu_read_lock();
844 err = map->ops->map_get_next_key(map, key, next_key);
845 rcu_read_unlock();
Jakub Kicinskia3884572018-01-11 20:29:09 -0800846out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700847 if (err)
848 goto free_next_key;
849
850 err = -EFAULT;
851 if (copy_to_user(unext_key, next_key, map->key_size) != 0)
852 goto free_next_key;
853
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100854 trace_bpf_map_next_key(map, ufd, key, next_key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700855 err = 0;
856
857free_next_key:
858 kfree(next_key);
859free_key:
860 kfree(key);
861err_put:
862 fdput(f);
863 return err;
864}
865
Jakub Kicinski7de16e32017-10-16 16:40:53 -0700866static const struct bpf_prog_ops * const bpf_prog_types[] = {
867#define BPF_PROG_TYPE(_id, _name) \
868 [_id] = & _name ## _prog_ops,
869#define BPF_MAP_TYPE(_id, _ops)
870#include <linux/bpf_types.h>
871#undef BPF_PROG_TYPE
872#undef BPF_MAP_TYPE
873};
874
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700875static int find_prog_type(enum bpf_prog_type type, struct bpf_prog *prog)
876{
Johannes Bergbe9370a2017-04-11 15:34:57 +0200877 if (type >= ARRAY_SIZE(bpf_prog_types) || !bpf_prog_types[type])
878 return -EINVAL;
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700879
Jakub Kicinskiab3f0062017-11-03 13:56:17 -0700880 if (!bpf_prog_is_dev_bound(prog->aux))
881 prog->aux->ops = bpf_prog_types[type];
882 else
883 prog->aux->ops = &bpf_offload_prog_ops;
Johannes Bergbe9370a2017-04-11 15:34:57 +0200884 prog->type = type;
885 return 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700886}
887
888/* drop refcnt on maps used by eBPF program and free auxilary data */
889static void free_used_maps(struct bpf_prog_aux *aux)
890{
891 int i;
892
893 for (i = 0; i < aux->used_map_cnt; i++)
894 bpf_map_put(aux->used_maps[i]);
895
896 kfree(aux->used_maps);
897}
898
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100899int __bpf_prog_charge(struct user_struct *user, u32 pages)
900{
901 unsigned long memlock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
902 unsigned long user_bufs;
903
904 if (user) {
905 user_bufs = atomic_long_add_return(pages, &user->locked_vm);
906 if (user_bufs > memlock_limit) {
907 atomic_long_sub(pages, &user->locked_vm);
908 return -EPERM;
909 }
910 }
911
912 return 0;
913}
914
915void __bpf_prog_uncharge(struct user_struct *user, u32 pages)
916{
917 if (user)
918 atomic_long_sub(pages, &user->locked_vm);
919}
920
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700921static int bpf_prog_charge_memlock(struct bpf_prog *prog)
922{
923 struct user_struct *user = get_current_user();
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100924 int ret;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700925
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100926 ret = __bpf_prog_charge(user, prog->pages);
927 if (ret) {
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700928 free_uid(user);
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100929 return ret;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700930 }
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100931
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700932 prog->aux->user = user;
933 return 0;
934}
935
936static void bpf_prog_uncharge_memlock(struct bpf_prog *prog)
937{
938 struct user_struct *user = prog->aux->user;
939
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100940 __bpf_prog_uncharge(user, prog->pages);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700941 free_uid(user);
942}
943
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -0700944static int bpf_prog_alloc_id(struct bpf_prog *prog)
945{
946 int id;
947
Shaohua Lib76354c2018-03-27 11:53:21 -0700948 idr_preload(GFP_KERNEL);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -0700949 spin_lock_bh(&prog_idr_lock);
950 id = idr_alloc_cyclic(&prog_idr, prog, 1, INT_MAX, GFP_ATOMIC);
951 if (id > 0)
952 prog->aux->id = id;
953 spin_unlock_bh(&prog_idr_lock);
Shaohua Lib76354c2018-03-27 11:53:21 -0700954 idr_preload_end();
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -0700955
956 /* id is in [1, INT_MAX) */
957 if (WARN_ON_ONCE(!id))
958 return -ENOSPC;
959
960 return id > 0 ? 0 : id;
961}
962
Jakub Kicinskiad8ad792017-12-27 18:39:07 -0800963void bpf_prog_free_id(struct bpf_prog *prog, bool do_idr_lock)
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -0700964{
Jakub Kicinskiad8ad792017-12-27 18:39:07 -0800965 /* cBPF to eBPF migrations are currently not in the idr store.
966 * Offloaded programs are removed from the store when their device
967 * disappears - even if someone grabs an fd to them they are unusable,
968 * simply waiting for refcnt to drop to be freed.
969 */
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -0700970 if (!prog->aux->id)
971 return;
972
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -0700973 if (do_idr_lock)
974 spin_lock_bh(&prog_idr_lock);
975 else
976 __acquire(&prog_idr_lock);
977
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -0700978 idr_remove(&prog_idr, prog->aux->id);
Jakub Kicinskiad8ad792017-12-27 18:39:07 -0800979 prog->aux->id = 0;
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -0700980
981 if (do_idr_lock)
982 spin_unlock_bh(&prog_idr_lock);
983 else
984 __release(&prog_idr_lock);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -0700985}
986
Daniel Borkmann1aacde32016-06-30 17:24:43 +0200987static void __bpf_prog_put_rcu(struct rcu_head *rcu)
Alexei Starovoitovabf2e7d2015-05-28 19:26:02 -0700988{
989 struct bpf_prog_aux *aux = container_of(rcu, struct bpf_prog_aux, rcu);
990
991 free_used_maps(aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700992 bpf_prog_uncharge_memlock(aux->prog);
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700993 security_bpf_prog_free(aux);
Alexei Starovoitovabf2e7d2015-05-28 19:26:02 -0700994 bpf_prog_free(aux->prog);
995}
996
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -0700997static void __bpf_prog_put(struct bpf_prog *prog, bool do_idr_lock)
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700998{
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100999 if (atomic_dec_and_test(&prog->aux->refcnt)) {
Daniel Borkmann4f74d802017-12-20 13:42:56 +01001000 int i;
1001
Daniel Borkmanna67edbf2017-01-25 02:28:18 +01001002 trace_bpf_prog_put_rcu(prog);
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07001003 /* bpf_prog_free_id() must be called first */
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001004 bpf_prog_free_id(prog, do_idr_lock);
Daniel Borkmann4f74d802017-12-20 13:42:56 +01001005
1006 for (i = 0; i < prog->aux->func_cnt; i++)
1007 bpf_prog_kallsyms_del(prog->aux->func[i]);
Daniel Borkmann74451e662017-02-16 22:24:50 +01001008 bpf_prog_kallsyms_del(prog);
Daniel Borkmann4f74d802017-12-20 13:42:56 +01001009
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001010 call_rcu(&prog->aux->rcu, __bpf_prog_put_rcu);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +01001011 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001012}
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001013
1014void bpf_prog_put(struct bpf_prog *prog)
1015{
1016 __bpf_prog_put(prog, true);
1017}
Daniel Borkmanne2e9b652015-03-01 12:31:48 +01001018EXPORT_SYMBOL_GPL(bpf_prog_put);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001019
1020static int bpf_prog_release(struct inode *inode, struct file *filp)
1021{
1022 struct bpf_prog *prog = filp->private_data;
1023
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001024 bpf_prog_put(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001025 return 0;
1026}
1027
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001028#ifdef CONFIG_PROC_FS
1029static void bpf_prog_show_fdinfo(struct seq_file *m, struct file *filp)
1030{
1031 const struct bpf_prog *prog = filp->private_data;
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001032 char prog_tag[sizeof(prog->tag) * 2 + 1] = { };
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001033
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001034 bin2hex(prog_tag, prog->tag, sizeof(prog->tag));
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001035 seq_printf(m,
1036 "prog_type:\t%u\n"
1037 "prog_jited:\t%u\n"
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001038 "prog_tag:\t%s\n"
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001039 "memlock:\t%llu\n",
1040 prog->type,
1041 prog->jited,
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001042 prog_tag,
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001043 prog->pages * 1ULL << PAGE_SHIFT);
1044}
1045#endif
1046
Chenbo Fengf66e4482017-10-18 13:00:26 -07001047const struct file_operations bpf_prog_fops = {
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001048#ifdef CONFIG_PROC_FS
1049 .show_fdinfo = bpf_prog_show_fdinfo,
1050#endif
1051 .release = bpf_prog_release,
Chenbo Feng6e71b042017-10-18 13:00:22 -07001052 .read = bpf_dummy_read,
1053 .write = bpf_dummy_write,
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001054};
1055
Daniel Borkmannb2197752015-10-29 14:58:09 +01001056int bpf_prog_new_fd(struct bpf_prog *prog)
Daniel Borkmannaa797812015-10-29 14:58:06 +01001057{
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001058 int ret;
1059
1060 ret = security_bpf_prog(prog);
1061 if (ret < 0)
1062 return ret;
1063
Daniel Borkmannaa797812015-10-29 14:58:06 +01001064 return anon_inode_getfd("bpf-prog", &bpf_prog_fops, prog,
1065 O_RDWR | O_CLOEXEC);
1066}
1067
Daniel Borkmann113214b2016-06-30 17:24:44 +02001068static struct bpf_prog *____bpf_prog_get(struct fd f)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001069{
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001070 if (!f.file)
1071 return ERR_PTR(-EBADF);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001072 if (f.file->f_op != &bpf_prog_fops) {
1073 fdput(f);
1074 return ERR_PTR(-EINVAL);
1075 }
1076
Daniel Borkmannc2101292015-10-29 14:58:07 +01001077 return f.file->private_data;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001078}
1079
Brenden Blanco59d36562016-07-19 12:16:46 -07001080struct bpf_prog *bpf_prog_add(struct bpf_prog *prog, int i)
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001081{
Brenden Blanco59d36562016-07-19 12:16:46 -07001082 if (atomic_add_return(i, &prog->aux->refcnt) > BPF_MAX_REFCNT) {
1083 atomic_sub(i, &prog->aux->refcnt);
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001084 return ERR_PTR(-EBUSY);
1085 }
1086 return prog;
1087}
Brenden Blanco59d36562016-07-19 12:16:46 -07001088EXPORT_SYMBOL_GPL(bpf_prog_add);
1089
Daniel Borkmannc5405942016-11-09 22:02:34 +01001090void bpf_prog_sub(struct bpf_prog *prog, int i)
1091{
1092 /* Only to be used for undoing previous bpf_prog_add() in some
1093 * error path. We still know that another entity in our call
1094 * path holds a reference to the program, thus atomic_sub() can
1095 * be safely used in such cases!
1096 */
1097 WARN_ON(atomic_sub_return(i, &prog->aux->refcnt) == 0);
1098}
1099EXPORT_SYMBOL_GPL(bpf_prog_sub);
1100
Brenden Blanco59d36562016-07-19 12:16:46 -07001101struct bpf_prog *bpf_prog_inc(struct bpf_prog *prog)
1102{
1103 return bpf_prog_add(prog, 1);
1104}
Daniel Borkmann97bc4022016-11-19 01:45:00 +01001105EXPORT_SYMBOL_GPL(bpf_prog_inc);
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001106
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001107/* prog_idr_lock should have been held */
John Fastabenda6f6df62017-08-15 22:32:22 -07001108struct bpf_prog *bpf_prog_inc_not_zero(struct bpf_prog *prog)
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001109{
1110 int refold;
1111
1112 refold = __atomic_add_unless(&prog->aux->refcnt, 1, 0);
1113
1114 if (refold >= BPF_MAX_REFCNT) {
1115 __bpf_prog_put(prog, false);
1116 return ERR_PTR(-EBUSY);
1117 }
1118
1119 if (!refold)
1120 return ERR_PTR(-ENOENT);
1121
1122 return prog;
1123}
John Fastabenda6f6df62017-08-15 22:32:22 -07001124EXPORT_SYMBOL_GPL(bpf_prog_inc_not_zero);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001125
Al Viro040ee692017-12-02 20:20:38 -05001126bool bpf_prog_get_ok(struct bpf_prog *prog,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001127 enum bpf_prog_type *attach_type, bool attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001128{
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001129 /* not an attachment, just a refcount inc, always allow */
1130 if (!attach_type)
1131 return true;
Jakub Kicinski248f3462017-11-03 13:56:20 -07001132
1133 if (prog->type != *attach_type)
1134 return false;
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001135 if (bpf_prog_is_dev_bound(prog->aux) && !attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001136 return false;
1137
1138 return true;
1139}
1140
1141static struct bpf_prog *__bpf_prog_get(u32 ufd, enum bpf_prog_type *attach_type,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001142 bool attach_drv)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001143{
1144 struct fd f = fdget(ufd);
1145 struct bpf_prog *prog;
1146
Daniel Borkmann113214b2016-06-30 17:24:44 +02001147 prog = ____bpf_prog_get(f);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001148 if (IS_ERR(prog))
1149 return prog;
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001150 if (!bpf_prog_get_ok(prog, attach_type, attach_drv)) {
Daniel Borkmann113214b2016-06-30 17:24:44 +02001151 prog = ERR_PTR(-EINVAL);
1152 goto out;
1153 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001154
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001155 prog = bpf_prog_inc(prog);
Daniel Borkmann113214b2016-06-30 17:24:44 +02001156out:
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001157 fdput(f);
1158 return prog;
1159}
Daniel Borkmann113214b2016-06-30 17:24:44 +02001160
1161struct bpf_prog *bpf_prog_get(u32 ufd)
1162{
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001163 return __bpf_prog_get(ufd, NULL, false);
Daniel Borkmann113214b2016-06-30 17:24:44 +02001164}
1165
Jakub Kicinski248f3462017-11-03 13:56:20 -07001166struct bpf_prog *bpf_prog_get_type_dev(u32 ufd, enum bpf_prog_type type,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001167 bool attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001168{
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001169 struct bpf_prog *prog = __bpf_prog_get(ufd, &type, attach_drv);
Jakub Kicinski248f3462017-11-03 13:56:20 -07001170
1171 if (!IS_ERR(prog))
1172 trace_bpf_prog_get_type(prog);
1173 return prog;
1174}
Jakub Kicinski6c8dfe22017-11-03 13:56:21 -07001175EXPORT_SYMBOL_GPL(bpf_prog_get_type_dev);
Jakub Kicinski248f3462017-11-03 13:56:20 -07001176
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001177/* Initially all BPF programs could be loaded w/o specifying
1178 * expected_attach_type. Later for some of them specifying expected_attach_type
1179 * at load time became required so that program could be validated properly.
1180 * Programs of types that are allowed to be loaded both w/ and w/o (for
1181 * backward compatibility) expected_attach_type, should have the default attach
1182 * type assigned to expected_attach_type for the latter case, so that it can be
1183 * validated later at attach time.
1184 *
1185 * bpf_prog_load_fixup_attach_type() sets expected_attach_type in @attr if
1186 * prog type requires it but has some attach types that have to be backward
1187 * compatible.
1188 */
1189static void bpf_prog_load_fixup_attach_type(union bpf_attr *attr)
1190{
1191 switch (attr->prog_type) {
1192 case BPF_PROG_TYPE_CGROUP_SOCK:
1193 /* Unfortunately BPF_ATTACH_TYPE_UNSPEC enumeration doesn't
1194 * exist so checking for non-zero is the way to go here.
1195 */
1196 if (!attr->expected_attach_type)
1197 attr->expected_attach_type =
1198 BPF_CGROUP_INET_SOCK_CREATE;
1199 break;
1200 }
1201}
1202
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001203static int
1204bpf_prog_load_check_attach_type(enum bpf_prog_type prog_type,
1205 enum bpf_attach_type expected_attach_type)
1206{
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001207 switch (prog_type) {
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001208 case BPF_PROG_TYPE_CGROUP_SOCK:
1209 switch (expected_attach_type) {
1210 case BPF_CGROUP_INET_SOCK_CREATE:
1211 case BPF_CGROUP_INET4_POST_BIND:
1212 case BPF_CGROUP_INET6_POST_BIND:
1213 return 0;
1214 default:
1215 return -EINVAL;
1216 }
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001217 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
1218 switch (expected_attach_type) {
1219 case BPF_CGROUP_INET4_BIND:
1220 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001221 case BPF_CGROUP_INET4_CONNECT:
1222 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001223 return 0;
1224 default:
1225 return -EINVAL;
1226 }
1227 default:
1228 return 0;
1229 }
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001230}
1231
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001232/* last field in 'union bpf_attr' used by this command */
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001233#define BPF_PROG_LOAD_LAST_FIELD expected_attach_type
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001234
1235static int bpf_prog_load(union bpf_attr *attr)
1236{
1237 enum bpf_prog_type type = attr->prog_type;
1238 struct bpf_prog *prog;
1239 int err;
1240 char license[128];
1241 bool is_gpl;
1242
1243 if (CHECK_ATTR(BPF_PROG_LOAD))
1244 return -EINVAL;
1245
David S. Millere07b98d2017-05-10 11:38:07 -07001246 if (attr->prog_flags & ~BPF_F_STRICT_ALIGNMENT)
1247 return -EINVAL;
1248
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001249 /* copy eBPF program license from user space */
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001250 if (strncpy_from_user(license, u64_to_user_ptr(attr->license),
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001251 sizeof(license) - 1) < 0)
1252 return -EFAULT;
1253 license[sizeof(license) - 1] = 0;
1254
1255 /* eBPF programs must be GPL compatible to use GPL-ed functions */
1256 is_gpl = license_is_gpl_compatible(license);
1257
Daniel Borkmannef0915c2016-12-07 01:15:44 +01001258 if (attr->insn_cnt == 0 || attr->insn_cnt > BPF_MAXINSNS)
1259 return -E2BIG;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001260
Alexei Starovoitov25415172015-03-25 12:49:20 -07001261 if (type == BPF_PROG_TYPE_KPROBE &&
1262 attr->kern_version != LINUX_VERSION_CODE)
1263 return -EINVAL;
1264
Chenbo Feng80b7d812017-05-31 18:16:00 -07001265 if (type != BPF_PROG_TYPE_SOCKET_FILTER &&
1266 type != BPF_PROG_TYPE_CGROUP_SKB &&
1267 !capable(CAP_SYS_ADMIN))
Alexei Starovoitov1be7f752015-10-07 22:23:21 -07001268 return -EPERM;
1269
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001270 bpf_prog_load_fixup_attach_type(attr);
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001271 if (bpf_prog_load_check_attach_type(type, attr->expected_attach_type))
1272 return -EINVAL;
1273
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001274 /* plain bpf_prog allocation */
1275 prog = bpf_prog_alloc(bpf_prog_size(attr->insn_cnt), GFP_USER);
1276 if (!prog)
1277 return -ENOMEM;
1278
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001279 prog->expected_attach_type = attr->expected_attach_type;
1280
Jakub Kicinski9a18eed2017-12-27 18:39:04 -08001281 prog->aux->offload_requested = !!attr->prog_ifindex;
1282
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001283 err = security_bpf_prog_alloc(prog->aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001284 if (err)
1285 goto free_prog_nouncharge;
1286
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001287 err = bpf_prog_charge_memlock(prog);
1288 if (err)
1289 goto free_prog_sec;
1290
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001291 prog->len = attr->insn_cnt;
1292
1293 err = -EFAULT;
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001294 if (copy_from_user(prog->insns, u64_to_user_ptr(attr->insns),
Daniel Borkmannaafe6ae2016-12-18 01:52:57 +01001295 bpf_prog_insn_size(prog)) != 0)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001296 goto free_prog;
1297
1298 prog->orig_prog = NULL;
Daniel Borkmanna91263d2015-09-30 01:41:50 +02001299 prog->jited = 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001300
1301 atomic_set(&prog->aux->refcnt, 1);
Daniel Borkmanna91263d2015-09-30 01:41:50 +02001302 prog->gpl_compatible = is_gpl ? 1 : 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001303
Jakub Kicinski9a18eed2017-12-27 18:39:04 -08001304 if (bpf_prog_is_dev_bound(prog->aux)) {
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07001305 err = bpf_prog_offload_init(prog, attr);
1306 if (err)
1307 goto free_prog;
1308 }
1309
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001310 /* find program type: socket_filter vs tracing_filter */
1311 err = find_prog_type(type, prog);
1312 if (err < 0)
1313 goto free_prog;
1314
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001315 prog->aux->load_time = ktime_get_boot_ns();
1316 err = bpf_obj_name_cpy(prog->aux->name, attr->prog_name);
1317 if (err)
1318 goto free_prog;
1319
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001320 /* run eBPF verifier */
Alexei Starovoitov9bac3d62015-03-13 11:57:42 -07001321 err = bpf_check(&prog, attr);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001322 if (err < 0)
1323 goto free_used_maps;
1324
1325 /* eBPF program is ready to be JITed */
Alexei Starovoitov1c2a0882017-12-14 17:55:15 -08001326 if (!prog->bpf_func)
1327 prog = bpf_prog_select_runtime(prog, &err);
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001328 if (err < 0)
1329 goto free_used_maps;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001330
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001331 err = bpf_prog_alloc_id(prog);
1332 if (err)
1333 goto free_used_maps;
1334
Daniel Borkmannaa797812015-10-29 14:58:06 +01001335 err = bpf_prog_new_fd(prog);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001336 if (err < 0) {
1337 /* failed to allocate fd.
1338 * bpf_prog_put() is needed because the above
1339 * bpf_prog_alloc_id() has published the prog
1340 * to the userspace and the userspace may
1341 * have refcnt-ed it through BPF_PROG_GET_FD_BY_ID.
1342 */
1343 bpf_prog_put(prog);
1344 return err;
1345 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001346
Daniel Borkmann74451e662017-02-16 22:24:50 +01001347 bpf_prog_kallsyms_add(prog);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +01001348 trace_bpf_prog_load(prog, err);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001349 return err;
1350
1351free_used_maps:
1352 free_used_maps(prog->aux);
1353free_prog:
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001354 bpf_prog_uncharge_memlock(prog);
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001355free_prog_sec:
1356 security_bpf_prog_free(prog->aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001357free_prog_nouncharge:
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001358 bpf_prog_free(prog);
1359 return err;
1360}
1361
Chenbo Feng6e71b042017-10-18 13:00:22 -07001362#define BPF_OBJ_LAST_FIELD file_flags
Daniel Borkmannb2197752015-10-29 14:58:09 +01001363
1364static int bpf_obj_pin(const union bpf_attr *attr)
1365{
Chenbo Feng6e71b042017-10-18 13:00:22 -07001366 if (CHECK_ATTR(BPF_OBJ) || attr->file_flags != 0)
Daniel Borkmannb2197752015-10-29 14:58:09 +01001367 return -EINVAL;
1368
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001369 return bpf_obj_pin_user(attr->bpf_fd, u64_to_user_ptr(attr->pathname));
Daniel Borkmannb2197752015-10-29 14:58:09 +01001370}
1371
1372static int bpf_obj_get(const union bpf_attr *attr)
1373{
Chenbo Feng6e71b042017-10-18 13:00:22 -07001374 if (CHECK_ATTR(BPF_OBJ) || attr->bpf_fd != 0 ||
1375 attr->file_flags & ~BPF_OBJ_FLAG_MASK)
Daniel Borkmannb2197752015-10-29 14:58:09 +01001376 return -EINVAL;
1377
Chenbo Feng6e71b042017-10-18 13:00:22 -07001378 return bpf_obj_get_user(u64_to_user_ptr(attr->pathname),
1379 attr->file_flags);
Daniel Borkmannb2197752015-10-29 14:58:09 +01001380}
1381
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001382struct bpf_raw_tracepoint {
1383 struct bpf_raw_event_map *btp;
1384 struct bpf_prog *prog;
1385};
1386
1387static int bpf_raw_tracepoint_release(struct inode *inode, struct file *filp)
1388{
1389 struct bpf_raw_tracepoint *raw_tp = filp->private_data;
1390
1391 if (raw_tp->prog) {
1392 bpf_probe_unregister(raw_tp->btp, raw_tp->prog);
1393 bpf_prog_put(raw_tp->prog);
1394 }
1395 kfree(raw_tp);
1396 return 0;
1397}
1398
1399static const struct file_operations bpf_raw_tp_fops = {
1400 .release = bpf_raw_tracepoint_release,
1401 .read = bpf_dummy_read,
1402 .write = bpf_dummy_write,
1403};
1404
1405#define BPF_RAW_TRACEPOINT_OPEN_LAST_FIELD raw_tracepoint.prog_fd
1406
1407static int bpf_raw_tracepoint_open(const union bpf_attr *attr)
1408{
1409 struct bpf_raw_tracepoint *raw_tp;
1410 struct bpf_raw_event_map *btp;
1411 struct bpf_prog *prog;
1412 char tp_name[128];
1413 int tp_fd, err;
1414
1415 if (strncpy_from_user(tp_name, u64_to_user_ptr(attr->raw_tracepoint.name),
1416 sizeof(tp_name) - 1) < 0)
1417 return -EFAULT;
1418 tp_name[sizeof(tp_name) - 1] = 0;
1419
1420 btp = bpf_find_raw_tracepoint(tp_name);
1421 if (!btp)
1422 return -ENOENT;
1423
1424 raw_tp = kzalloc(sizeof(*raw_tp), GFP_USER);
1425 if (!raw_tp)
1426 return -ENOMEM;
1427 raw_tp->btp = btp;
1428
1429 prog = bpf_prog_get_type(attr->raw_tracepoint.prog_fd,
1430 BPF_PROG_TYPE_RAW_TRACEPOINT);
1431 if (IS_ERR(prog)) {
1432 err = PTR_ERR(prog);
1433 goto out_free_tp;
1434 }
1435
1436 err = bpf_probe_register(raw_tp->btp, prog);
1437 if (err)
1438 goto out_put_prog;
1439
1440 raw_tp->prog = prog;
1441 tp_fd = anon_inode_getfd("bpf-raw-tracepoint", &bpf_raw_tp_fops, raw_tp,
1442 O_CLOEXEC);
1443 if (tp_fd < 0) {
1444 bpf_probe_unregister(raw_tp->btp, prog);
1445 err = tp_fd;
1446 goto out_put_prog;
1447 }
1448 return tp_fd;
1449
1450out_put_prog:
1451 bpf_prog_put(prog);
1452out_free_tp:
1453 kfree(raw_tp);
1454 return err;
1455}
1456
Daniel Mackf4324552016-11-23 16:52:27 +01001457#ifdef CONFIG_CGROUP_BPF
1458
Anders Roxell33491582018-04-03 14:09:47 +02001459static int bpf_prog_attach_check_attach_type(const struct bpf_prog *prog,
1460 enum bpf_attach_type attach_type)
1461{
1462 switch (prog->type) {
1463 case BPF_PROG_TYPE_CGROUP_SOCK:
1464 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
1465 return attach_type == prog->expected_attach_type ? 0 : -EINVAL;
1466 default:
1467 return 0;
1468 }
1469}
1470
John Fastabend464bc0f2017-08-28 07:10:04 -07001471#define BPF_PROG_ATTACH_LAST_FIELD attach_flags
John Fastabend174a79f2017-08-15 22:32:47 -07001472
John Fastabend4f738ad2018-03-18 12:57:10 -07001473static int sockmap_get_from_fd(const union bpf_attr *attr,
1474 int type, bool attach)
John Fastabend174a79f2017-08-15 22:32:47 -07001475{
John Fastabend5a67da22017-09-08 14:00:49 -07001476 struct bpf_prog *prog = NULL;
John Fastabend174a79f2017-08-15 22:32:47 -07001477 int ufd = attr->target_fd;
1478 struct bpf_map *map;
1479 struct fd f;
1480 int err;
1481
1482 f = fdget(ufd);
1483 map = __bpf_map_get(f);
1484 if (IS_ERR(map))
1485 return PTR_ERR(map);
1486
John Fastabend5a67da22017-09-08 14:00:49 -07001487 if (attach) {
John Fastabend4f738ad2018-03-18 12:57:10 -07001488 prog = bpf_prog_get_type(attr->attach_bpf_fd, type);
John Fastabend5a67da22017-09-08 14:00:49 -07001489 if (IS_ERR(prog)) {
1490 fdput(f);
1491 return PTR_ERR(prog);
1492 }
John Fastabend174a79f2017-08-15 22:32:47 -07001493 }
1494
John Fastabend5a67da22017-09-08 14:00:49 -07001495 err = sock_map_prog(map, prog, attr->attach_type);
John Fastabend174a79f2017-08-15 22:32:47 -07001496 if (err) {
1497 fdput(f);
John Fastabend5a67da22017-09-08 14:00:49 -07001498 if (prog)
1499 bpf_prog_put(prog);
Dan Carpenterae2b27b2017-08-18 10:27:02 +03001500 return err;
John Fastabend174a79f2017-08-15 22:32:47 -07001501 }
1502
1503 fdput(f);
Dan Carpenterae2b27b2017-08-18 10:27:02 +03001504 return 0;
John Fastabend174a79f2017-08-15 22:32:47 -07001505}
Daniel Mackf4324552016-11-23 16:52:27 +01001506
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001507#define BPF_F_ATTACH_MASK \
1508 (BPF_F_ALLOW_OVERRIDE | BPF_F_ALLOW_MULTI)
1509
Daniel Mackf4324552016-11-23 16:52:27 +01001510static int bpf_prog_attach(const union bpf_attr *attr)
1511{
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001512 enum bpf_prog_type ptype;
Daniel Mackf4324552016-11-23 16:52:27 +01001513 struct bpf_prog *prog;
1514 struct cgroup *cgrp;
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001515 int ret;
Daniel Mackf4324552016-11-23 16:52:27 +01001516
1517 if (!capable(CAP_NET_ADMIN))
1518 return -EPERM;
1519
1520 if (CHECK_ATTR(BPF_PROG_ATTACH))
1521 return -EINVAL;
1522
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001523 if (attr->attach_flags & ~BPF_F_ATTACH_MASK)
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001524 return -EINVAL;
1525
Daniel Mackf4324552016-11-23 16:52:27 +01001526 switch (attr->attach_type) {
1527 case BPF_CGROUP_INET_INGRESS:
1528 case BPF_CGROUP_INET_EGRESS:
David Ahernb2cd1252016-12-01 08:48:03 -08001529 ptype = BPF_PROG_TYPE_CGROUP_SKB;
Daniel Mackf4324552016-11-23 16:52:27 +01001530 break;
David Ahern610236582016-12-01 08:48:04 -08001531 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001532 case BPF_CGROUP_INET4_POST_BIND:
1533 case BPF_CGROUP_INET6_POST_BIND:
David Ahern610236582016-12-01 08:48:04 -08001534 ptype = BPF_PROG_TYPE_CGROUP_SOCK;
1535 break;
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001536 case BPF_CGROUP_INET4_BIND:
1537 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001538 case BPF_CGROUP_INET4_CONNECT:
1539 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001540 ptype = BPF_PROG_TYPE_CGROUP_SOCK_ADDR;
1541 break;
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001542 case BPF_CGROUP_SOCK_OPS:
1543 ptype = BPF_PROG_TYPE_SOCK_OPS;
1544 break;
Roman Gushchinebc614f2017-11-05 08:15:32 -05001545 case BPF_CGROUP_DEVICE:
1546 ptype = BPF_PROG_TYPE_CGROUP_DEVICE;
1547 break;
John Fastabend4f738ad2018-03-18 12:57:10 -07001548 case BPF_SK_MSG_VERDICT:
1549 return sockmap_get_from_fd(attr, BPF_PROG_TYPE_SK_MSG, true);
John Fastabend464bc0f2017-08-28 07:10:04 -07001550 case BPF_SK_SKB_STREAM_PARSER:
1551 case BPF_SK_SKB_STREAM_VERDICT:
John Fastabend4f738ad2018-03-18 12:57:10 -07001552 return sockmap_get_from_fd(attr, BPF_PROG_TYPE_SK_SKB, true);
Daniel Mackf4324552016-11-23 16:52:27 +01001553 default:
1554 return -EINVAL;
1555 }
1556
David Ahernb2cd1252016-12-01 08:48:03 -08001557 prog = bpf_prog_get_type(attr->attach_bpf_fd, ptype);
1558 if (IS_ERR(prog))
1559 return PTR_ERR(prog);
1560
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001561 if (bpf_prog_attach_check_attach_type(prog, attr->attach_type)) {
1562 bpf_prog_put(prog);
1563 return -EINVAL;
1564 }
1565
David Ahernb2cd1252016-12-01 08:48:03 -08001566 cgrp = cgroup_get_from_fd(attr->target_fd);
1567 if (IS_ERR(cgrp)) {
1568 bpf_prog_put(prog);
1569 return PTR_ERR(cgrp);
1570 }
1571
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001572 ret = cgroup_bpf_attach(cgrp, prog, attr->attach_type,
1573 attr->attach_flags);
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001574 if (ret)
1575 bpf_prog_put(prog);
David Ahernb2cd1252016-12-01 08:48:03 -08001576 cgroup_put(cgrp);
1577
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001578 return ret;
Daniel Mackf4324552016-11-23 16:52:27 +01001579}
1580
1581#define BPF_PROG_DETACH_LAST_FIELD attach_type
1582
1583static int bpf_prog_detach(const union bpf_attr *attr)
1584{
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001585 enum bpf_prog_type ptype;
1586 struct bpf_prog *prog;
Daniel Mackf4324552016-11-23 16:52:27 +01001587 struct cgroup *cgrp;
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001588 int ret;
Daniel Mackf4324552016-11-23 16:52:27 +01001589
1590 if (!capable(CAP_NET_ADMIN))
1591 return -EPERM;
1592
1593 if (CHECK_ATTR(BPF_PROG_DETACH))
1594 return -EINVAL;
1595
1596 switch (attr->attach_type) {
1597 case BPF_CGROUP_INET_INGRESS:
1598 case BPF_CGROUP_INET_EGRESS:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001599 ptype = BPF_PROG_TYPE_CGROUP_SKB;
1600 break;
David Ahern610236582016-12-01 08:48:04 -08001601 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001602 case BPF_CGROUP_INET4_POST_BIND:
1603 case BPF_CGROUP_INET6_POST_BIND:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001604 ptype = BPF_PROG_TYPE_CGROUP_SOCK;
1605 break;
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001606 case BPF_CGROUP_INET4_BIND:
1607 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001608 case BPF_CGROUP_INET4_CONNECT:
1609 case BPF_CGROUP_INET6_CONNECT:
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:
1619 return sockmap_get_from_fd(attr, BPF_PROG_TYPE_SK_MSG, false);
John Fastabend5a67da22017-09-08 14:00:49 -07001620 case BPF_SK_SKB_STREAM_PARSER:
1621 case BPF_SK_SKB_STREAM_VERDICT:
John Fastabend4f738ad2018-03-18 12:57:10 -07001622 return sockmap_get_from_fd(attr, BPF_PROG_TYPE_SK_SKB, false);
Daniel Mackf4324552016-11-23 16:52:27 +01001623 default:
1624 return -EINVAL;
1625 }
1626
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001627 cgrp = cgroup_get_from_fd(attr->target_fd);
1628 if (IS_ERR(cgrp))
1629 return PTR_ERR(cgrp);
1630
1631 prog = bpf_prog_get_type(attr->attach_bpf_fd, ptype);
1632 if (IS_ERR(prog))
1633 prog = NULL;
1634
1635 ret = cgroup_bpf_detach(cgrp, prog, attr->attach_type, 0);
1636 if (prog)
1637 bpf_prog_put(prog);
1638 cgroup_put(cgrp);
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001639 return ret;
Daniel Mackf4324552016-11-23 16:52:27 +01001640}
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001641
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001642#define BPF_PROG_QUERY_LAST_FIELD query.prog_cnt
1643
1644static int bpf_prog_query(const union bpf_attr *attr,
1645 union bpf_attr __user *uattr)
1646{
1647 struct cgroup *cgrp;
1648 int ret;
1649
1650 if (!capable(CAP_NET_ADMIN))
1651 return -EPERM;
1652 if (CHECK_ATTR(BPF_PROG_QUERY))
1653 return -EINVAL;
1654 if (attr->query.query_flags & ~BPF_F_QUERY_EFFECTIVE)
1655 return -EINVAL;
1656
1657 switch (attr->query.attach_type) {
1658 case BPF_CGROUP_INET_INGRESS:
1659 case BPF_CGROUP_INET_EGRESS:
1660 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001661 case BPF_CGROUP_INET4_BIND:
1662 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001663 case BPF_CGROUP_INET4_POST_BIND:
1664 case BPF_CGROUP_INET6_POST_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001665 case BPF_CGROUP_INET4_CONNECT:
1666 case BPF_CGROUP_INET6_CONNECT:
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001667 case BPF_CGROUP_SOCK_OPS:
Roman Gushchinebc614f2017-11-05 08:15:32 -05001668 case BPF_CGROUP_DEVICE:
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001669 break;
1670 default:
1671 return -EINVAL;
1672 }
1673 cgrp = cgroup_get_from_fd(attr->query.target_fd);
1674 if (IS_ERR(cgrp))
1675 return PTR_ERR(cgrp);
1676 ret = cgroup_bpf_query(cgrp, attr, uattr);
1677 cgroup_put(cgrp);
1678 return ret;
1679}
Daniel Mackf4324552016-11-23 16:52:27 +01001680#endif /* CONFIG_CGROUP_BPF */
1681
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07001682#define BPF_PROG_TEST_RUN_LAST_FIELD test.duration
1683
1684static int bpf_prog_test_run(const union bpf_attr *attr,
1685 union bpf_attr __user *uattr)
1686{
1687 struct bpf_prog *prog;
1688 int ret = -ENOTSUPP;
1689
Alexei Starovoitov61f3c962018-01-17 16:52:02 -08001690 if (!capable(CAP_SYS_ADMIN))
1691 return -EPERM;
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07001692 if (CHECK_ATTR(BPF_PROG_TEST_RUN))
1693 return -EINVAL;
1694
1695 prog = bpf_prog_get(attr->test.prog_fd);
1696 if (IS_ERR(prog))
1697 return PTR_ERR(prog);
1698
1699 if (prog->aux->ops->test_run)
1700 ret = prog->aux->ops->test_run(prog, attr, uattr);
1701
1702 bpf_prog_put(prog);
1703 return ret;
1704}
1705
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07001706#define BPF_OBJ_GET_NEXT_ID_LAST_FIELD next_id
1707
1708static int bpf_obj_get_next_id(const union bpf_attr *attr,
1709 union bpf_attr __user *uattr,
1710 struct idr *idr,
1711 spinlock_t *lock)
1712{
1713 u32 next_id = attr->start_id;
1714 int err = 0;
1715
1716 if (CHECK_ATTR(BPF_OBJ_GET_NEXT_ID) || next_id >= INT_MAX)
1717 return -EINVAL;
1718
1719 if (!capable(CAP_SYS_ADMIN))
1720 return -EPERM;
1721
1722 next_id++;
1723 spin_lock_bh(lock);
1724 if (!idr_get_next(idr, &next_id))
1725 err = -ENOENT;
1726 spin_unlock_bh(lock);
1727
1728 if (!err)
1729 err = put_user(next_id, &uattr->next_id);
1730
1731 return err;
1732}
1733
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001734#define BPF_PROG_GET_FD_BY_ID_LAST_FIELD prog_id
1735
1736static int bpf_prog_get_fd_by_id(const union bpf_attr *attr)
1737{
1738 struct bpf_prog *prog;
1739 u32 id = attr->prog_id;
1740 int fd;
1741
1742 if (CHECK_ATTR(BPF_PROG_GET_FD_BY_ID))
1743 return -EINVAL;
1744
1745 if (!capable(CAP_SYS_ADMIN))
1746 return -EPERM;
1747
1748 spin_lock_bh(&prog_idr_lock);
1749 prog = idr_find(&prog_idr, id);
1750 if (prog)
1751 prog = bpf_prog_inc_not_zero(prog);
1752 else
1753 prog = ERR_PTR(-ENOENT);
1754 spin_unlock_bh(&prog_idr_lock);
1755
1756 if (IS_ERR(prog))
1757 return PTR_ERR(prog);
1758
1759 fd = bpf_prog_new_fd(prog);
1760 if (fd < 0)
1761 bpf_prog_put(prog);
1762
1763 return fd;
1764}
1765
Chenbo Feng6e71b042017-10-18 13:00:22 -07001766#define BPF_MAP_GET_FD_BY_ID_LAST_FIELD open_flags
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001767
1768static int bpf_map_get_fd_by_id(const union bpf_attr *attr)
1769{
1770 struct bpf_map *map;
1771 u32 id = attr->map_id;
Chenbo Feng6e71b042017-10-18 13:00:22 -07001772 int f_flags;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001773 int fd;
1774
Chenbo Feng6e71b042017-10-18 13:00:22 -07001775 if (CHECK_ATTR(BPF_MAP_GET_FD_BY_ID) ||
1776 attr->open_flags & ~BPF_OBJ_FLAG_MASK)
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001777 return -EINVAL;
1778
1779 if (!capable(CAP_SYS_ADMIN))
1780 return -EPERM;
1781
Chenbo Feng6e71b042017-10-18 13:00:22 -07001782 f_flags = bpf_get_file_flag(attr->open_flags);
1783 if (f_flags < 0)
1784 return f_flags;
1785
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001786 spin_lock_bh(&map_idr_lock);
1787 map = idr_find(&map_idr, id);
1788 if (map)
1789 map = bpf_map_inc_not_zero(map, true);
1790 else
1791 map = ERR_PTR(-ENOENT);
1792 spin_unlock_bh(&map_idr_lock);
1793
1794 if (IS_ERR(map))
1795 return PTR_ERR(map);
1796
Chenbo Feng6e71b042017-10-18 13:00:22 -07001797 fd = bpf_map_new_fd(map, f_flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001798 if (fd < 0)
1799 bpf_map_put(map);
1800
1801 return fd;
1802}
1803
Daniel Borkmann7105e822017-12-20 13:42:57 +01001804static const struct bpf_map *bpf_map_from_imm(const struct bpf_prog *prog,
1805 unsigned long addr)
1806{
1807 int i;
1808
1809 for (i = 0; i < prog->aux->used_map_cnt; i++)
1810 if (prog->aux->used_maps[i] == (void *)addr)
1811 return prog->aux->used_maps[i];
1812 return NULL;
1813}
1814
1815static struct bpf_insn *bpf_insn_prepare_dump(const struct bpf_prog *prog)
1816{
1817 const struct bpf_map *map;
1818 struct bpf_insn *insns;
1819 u64 imm;
1820 int i;
1821
1822 insns = kmemdup(prog->insnsi, bpf_prog_insn_size(prog),
1823 GFP_USER);
1824 if (!insns)
1825 return insns;
1826
1827 for (i = 0; i < prog->len; i++) {
1828 if (insns[i].code == (BPF_JMP | BPF_TAIL_CALL)) {
1829 insns[i].code = BPF_JMP | BPF_CALL;
1830 insns[i].imm = BPF_FUNC_tail_call;
1831 /* fall-through */
1832 }
1833 if (insns[i].code == (BPF_JMP | BPF_CALL) ||
1834 insns[i].code == (BPF_JMP | BPF_CALL_ARGS)) {
1835 if (insns[i].code == (BPF_JMP | BPF_CALL_ARGS))
1836 insns[i].code = BPF_JMP | BPF_CALL;
1837 if (!bpf_dump_raw_ok())
1838 insns[i].imm = 0;
1839 continue;
1840 }
1841
1842 if (insns[i].code != (BPF_LD | BPF_IMM | BPF_DW))
1843 continue;
1844
1845 imm = ((u64)insns[i + 1].imm << 32) | (u32)insns[i].imm;
1846 map = bpf_map_from_imm(prog, imm);
1847 if (map) {
1848 insns[i].src_reg = BPF_PSEUDO_MAP_FD;
1849 insns[i].imm = map->id;
1850 insns[i + 1].imm = 0;
1851 continue;
1852 }
1853
1854 if (!bpf_dump_raw_ok() &&
1855 imm == (unsigned long)prog->aux) {
1856 insns[i].imm = 0;
1857 insns[i + 1].imm = 0;
1858 continue;
1859 }
1860 }
1861
1862 return insns;
1863}
1864
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001865static int bpf_prog_get_info_by_fd(struct bpf_prog *prog,
1866 const union bpf_attr *attr,
1867 union bpf_attr __user *uattr)
1868{
1869 struct bpf_prog_info __user *uinfo = u64_to_user_ptr(attr->info.info);
1870 struct bpf_prog_info info = {};
1871 u32 info_len = attr->info.info_len;
1872 char __user *uinsns;
1873 u32 ulen;
1874 int err;
1875
1876 err = check_uarg_tail_zero(uinfo, sizeof(info), info_len);
1877 if (err)
1878 return err;
1879 info_len = min_t(u32, sizeof(info), info_len);
1880
1881 if (copy_from_user(&info, uinfo, info_len))
Daniel Borkmann89b09682017-07-27 21:02:46 +02001882 return -EFAULT;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001883
1884 info.type = prog->type;
1885 info.id = prog->aux->id;
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001886 info.load_time = prog->aux->load_time;
1887 info.created_by_uid = from_kuid_munged(current_user_ns(),
1888 prog->aux->user->uid);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001889
1890 memcpy(info.tag, prog->tag, sizeof(prog->tag));
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001891 memcpy(info.name, prog->aux->name, sizeof(prog->aux->name));
1892
1893 ulen = info.nr_map_ids;
1894 info.nr_map_ids = prog->aux->used_map_cnt;
1895 ulen = min_t(u32, info.nr_map_ids, ulen);
1896 if (ulen) {
Martin KaFai Lau721e08d2017-09-29 10:52:17 -07001897 u32 __user *user_map_ids = u64_to_user_ptr(info.map_ids);
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001898 u32 i;
1899
1900 for (i = 0; i < ulen; i++)
1901 if (put_user(prog->aux->used_maps[i]->id,
1902 &user_map_ids[i]))
1903 return -EFAULT;
1904 }
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001905
1906 if (!capable(CAP_SYS_ADMIN)) {
1907 info.jited_prog_len = 0;
1908 info.xlated_prog_len = 0;
1909 goto done;
1910 }
1911
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001912 ulen = info.xlated_prog_len;
Daniel Borkmann9975a542017-07-28 17:05:25 +02001913 info.xlated_prog_len = bpf_prog_insn_size(prog);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001914 if (info.xlated_prog_len && ulen) {
Daniel Borkmann7105e822017-12-20 13:42:57 +01001915 struct bpf_insn *insns_sanitized;
1916 bool fault;
1917
1918 if (prog->blinded && !bpf_dump_raw_ok()) {
1919 info.xlated_prog_insns = 0;
1920 goto done;
1921 }
1922 insns_sanitized = bpf_insn_prepare_dump(prog);
1923 if (!insns_sanitized)
1924 return -ENOMEM;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001925 uinsns = u64_to_user_ptr(info.xlated_prog_insns);
1926 ulen = min_t(u32, info.xlated_prog_len, ulen);
Daniel Borkmann7105e822017-12-20 13:42:57 +01001927 fault = copy_to_user(uinsns, insns_sanitized, ulen);
1928 kfree(insns_sanitized);
1929 if (fault)
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001930 return -EFAULT;
1931 }
1932
Jakub Kicinski675fc272017-12-27 18:39:09 -08001933 if (bpf_prog_is_dev_bound(prog->aux)) {
1934 err = bpf_prog_offload_info_fill(&info, prog);
1935 if (err)
1936 return err;
Jiong Wangfcfb1262018-01-16 16:05:19 -08001937 goto done;
1938 }
1939
1940 /* NOTE: the following code is supposed to be skipped for offload.
1941 * bpf_prog_offload_info_fill() is the place to fill similar fields
1942 * for offload.
1943 */
1944 ulen = info.jited_prog_len;
1945 info.jited_prog_len = prog->jited_len;
1946 if (info.jited_prog_len && ulen) {
1947 if (bpf_dump_raw_ok()) {
1948 uinsns = u64_to_user_ptr(info.jited_prog_insns);
1949 ulen = min_t(u32, info.jited_prog_len, ulen);
1950 if (copy_to_user(uinsns, prog->bpf_func, ulen))
1951 return -EFAULT;
1952 } else {
1953 info.jited_prog_insns = 0;
1954 }
Jakub Kicinski675fc272017-12-27 18:39:09 -08001955 }
1956
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001957done:
1958 if (copy_to_user(uinfo, &info, info_len) ||
1959 put_user(info_len, &uattr->info.info_len))
1960 return -EFAULT;
1961
1962 return 0;
1963}
1964
1965static int bpf_map_get_info_by_fd(struct bpf_map *map,
1966 const union bpf_attr *attr,
1967 union bpf_attr __user *uattr)
1968{
1969 struct bpf_map_info __user *uinfo = u64_to_user_ptr(attr->info.info);
1970 struct bpf_map_info info = {};
1971 u32 info_len = attr->info.info_len;
1972 int err;
1973
1974 err = check_uarg_tail_zero(uinfo, sizeof(info), info_len);
1975 if (err)
1976 return err;
1977 info_len = min_t(u32, sizeof(info), info_len);
1978
1979 info.type = map->map_type;
1980 info.id = map->id;
1981 info.key_size = map->key_size;
1982 info.value_size = map->value_size;
1983 info.max_entries = map->max_entries;
1984 info.map_flags = map->map_flags;
Martin KaFai Lauad5b1772017-09-27 14:37:53 -07001985 memcpy(info.name, map->name, sizeof(map->name));
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001986
Jakub Kicinski52775b32018-01-17 19:13:28 -08001987 if (bpf_map_is_dev_bound(map)) {
1988 err = bpf_map_offload_info_fill(&info, map);
1989 if (err)
1990 return err;
1991 }
1992
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001993 if (copy_to_user(uinfo, &info, info_len) ||
1994 put_user(info_len, &uattr->info.info_len))
1995 return -EFAULT;
1996
1997 return 0;
1998}
1999
2000#define BPF_OBJ_GET_INFO_BY_FD_LAST_FIELD info.info
2001
2002static int bpf_obj_get_info_by_fd(const union bpf_attr *attr,
2003 union bpf_attr __user *uattr)
2004{
2005 int ufd = attr->info.bpf_fd;
2006 struct fd f;
2007 int err;
2008
2009 if (CHECK_ATTR(BPF_OBJ_GET_INFO_BY_FD))
2010 return -EINVAL;
2011
2012 f = fdget(ufd);
2013 if (!f.file)
2014 return -EBADFD;
2015
2016 if (f.file->f_op == &bpf_prog_fops)
2017 err = bpf_prog_get_info_by_fd(f.file->private_data, attr,
2018 uattr);
2019 else if (f.file->f_op == &bpf_map_fops)
2020 err = bpf_map_get_info_by_fd(f.file->private_data, attr,
2021 uattr);
2022 else
2023 err = -EINVAL;
2024
2025 fdput(f);
2026 return err;
2027}
2028
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002029SYSCALL_DEFINE3(bpf, int, cmd, union bpf_attr __user *, uattr, unsigned int, size)
2030{
2031 union bpf_attr attr = {};
2032 int err;
2033
Chenbo Feng0fa4fe82018-03-19 17:57:27 -07002034 if (sysctl_unprivileged_bpf_disabled && !capable(CAP_SYS_ADMIN))
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002035 return -EPERM;
2036
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002037 err = check_uarg_tail_zero(uattr, sizeof(attr), size);
2038 if (err)
2039 return err;
2040 size = min_t(u32, size, sizeof(attr));
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002041
2042 /* copy attributes from user space, may be less than sizeof(bpf_attr) */
2043 if (copy_from_user(&attr, uattr, size) != 0)
2044 return -EFAULT;
2045
Chenbo Fengafdb09c2017-10-18 13:00:24 -07002046 err = security_bpf(cmd, &attr, size);
2047 if (err < 0)
2048 return err;
2049
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002050 switch (cmd) {
2051 case BPF_MAP_CREATE:
2052 err = map_create(&attr);
2053 break;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -07002054 case BPF_MAP_LOOKUP_ELEM:
2055 err = map_lookup_elem(&attr);
2056 break;
2057 case BPF_MAP_UPDATE_ELEM:
2058 err = map_update_elem(&attr);
2059 break;
2060 case BPF_MAP_DELETE_ELEM:
2061 err = map_delete_elem(&attr);
2062 break;
2063 case BPF_MAP_GET_NEXT_KEY:
2064 err = map_get_next_key(&attr);
2065 break;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07002066 case BPF_PROG_LOAD:
2067 err = bpf_prog_load(&attr);
2068 break;
Daniel Borkmannb2197752015-10-29 14:58:09 +01002069 case BPF_OBJ_PIN:
2070 err = bpf_obj_pin(&attr);
2071 break;
2072 case BPF_OBJ_GET:
2073 err = bpf_obj_get(&attr);
2074 break;
Daniel Mackf4324552016-11-23 16:52:27 +01002075#ifdef CONFIG_CGROUP_BPF
2076 case BPF_PROG_ATTACH:
2077 err = bpf_prog_attach(&attr);
2078 break;
2079 case BPF_PROG_DETACH:
2080 err = bpf_prog_detach(&attr);
2081 break;
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07002082 case BPF_PROG_QUERY:
2083 err = bpf_prog_query(&attr, uattr);
2084 break;
Daniel Mackf4324552016-11-23 16:52:27 +01002085#endif
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07002086 case BPF_PROG_TEST_RUN:
2087 err = bpf_prog_test_run(&attr, uattr);
2088 break;
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07002089 case BPF_PROG_GET_NEXT_ID:
2090 err = bpf_obj_get_next_id(&attr, uattr,
2091 &prog_idr, &prog_idr_lock);
2092 break;
2093 case BPF_MAP_GET_NEXT_ID:
2094 err = bpf_obj_get_next_id(&attr, uattr,
2095 &map_idr, &map_idr_lock);
2096 break;
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07002097 case BPF_PROG_GET_FD_BY_ID:
2098 err = bpf_prog_get_fd_by_id(&attr);
2099 break;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07002100 case BPF_MAP_GET_FD_BY_ID:
2101 err = bpf_map_get_fd_by_id(&attr);
2102 break;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002103 case BPF_OBJ_GET_INFO_BY_FD:
2104 err = bpf_obj_get_info_by_fd(&attr, uattr);
2105 break;
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07002106 case BPF_RAW_TRACEPOINT_OPEN:
2107 err = bpf_raw_tracepoint_open(&attr);
2108 break;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002109 default:
2110 err = -EINVAL;
2111 break;
2112 }
2113
2114 return err;
2115}