blob: b3c2d09bcf7a8e0ce162806e858cdb8fea336154 [file] [log] [blame]
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07001/* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com
2 *
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of version 2 of the GNU General Public
5 * License as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful, but
8 * WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 * General Public License for more details.
11 */
12#include <linux/bpf.h>
Daniel Borkmanna67edbf2017-01-25 02:28:18 +010013#include <linux/bpf_trace.h>
Sean Youngf4364dc2018-05-27 12:24:09 +010014#include <linux/bpf_lirc.h>
Martin KaFai Lauf56a6532018-04-18 15:56:01 -070015#include <linux/btf.h>
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070016#include <linux/syscalls.h>
17#include <linux/slab.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010018#include <linux/sched/signal.h>
Daniel Borkmannd407bd22017-01-18 15:14:17 +010019#include <linux/vmalloc.h>
20#include <linux/mmzone.h>
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070021#include <linux/anon_inodes.h>
Yonghong Song41bdc4b2018-05-24 11:21:09 -070022#include <linux/fdtable.h>
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -070023#include <linux/file.h>
Yonghong Song41bdc4b2018-05-24 11:21:09 -070024#include <linux/fs.h>
Alexei Starovoitov09756af2014-09-26 00:17:00 -070025#include <linux/license.h>
26#include <linux/filter.h>
Alexei Starovoitov25415172015-03-25 12:49:20 -070027#include <linux/version.h>
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +010028#include <linux/kernel.h>
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -070029#include <linux/idr.h>
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -070030#include <linux/cred.h>
31#include <linux/timekeeping.h>
32#include <linux/ctype.h>
Mark Rutland9ef09e32018-05-03 17:04:59 +010033#include <linux/nospec.h>
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070034
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -070035#define IS_FD_ARRAY(map) ((map)->map_type == BPF_MAP_TYPE_PROG_ARRAY || \
36 (map)->map_type == BPF_MAP_TYPE_PERF_EVENT_ARRAY || \
37 (map)->map_type == BPF_MAP_TYPE_CGROUP_ARRAY || \
38 (map)->map_type == BPF_MAP_TYPE_ARRAY_OF_MAPS)
39#define IS_FD_HASH(map) ((map)->map_type == BPF_MAP_TYPE_HASH_OF_MAPS)
40#define IS_FD_MAP(map) (IS_FD_ARRAY(map) || IS_FD_HASH(map))
41
Chenbo Feng6e71b042017-10-18 13:00:22 -070042#define BPF_OBJ_FLAG_MASK (BPF_F_RDONLY | BPF_F_WRONLY)
43
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -080044DEFINE_PER_CPU(int, bpf_prog_active);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -070045static DEFINE_IDR(prog_idr);
46static DEFINE_SPINLOCK(prog_idr_lock);
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -070047static DEFINE_IDR(map_idr);
48static DEFINE_SPINLOCK(map_idr_lock);
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -080049
Alexei Starovoitov1be7f752015-10-07 22:23:21 -070050int sysctl_unprivileged_bpf_disabled __read_mostly;
51
Johannes Berg40077e02017-04-11 15:34:58 +020052static const struct bpf_map_ops * const bpf_map_types[] = {
53#define BPF_PROG_TYPE(_id, _ops)
54#define BPF_MAP_TYPE(_id, _ops) \
55 [_id] = &_ops,
56#include <linux/bpf_types.h>
57#undef BPF_PROG_TYPE
58#undef BPF_MAP_TYPE
59};
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070060
Mickaël Salaün752ba562017-08-07 20:45:20 +020061/*
62 * If we're handed a bigger struct than we know of, ensure all the unknown bits
63 * are 0 - i.e. new user-space does not rely on any kernel feature extensions
64 * we don't know about yet.
65 *
66 * There is a ToCToU between this function call and the following
67 * copy_from_user() call. However, this is not a concern since this function is
68 * meant to be a future-proofing of bits.
69 */
Martin KaFai Laudcab51f2018-05-22 15:03:31 -070070int bpf_check_uarg_tail_zero(void __user *uaddr,
71 size_t expected_size,
72 size_t actual_size)
Mickaël Salaün58291a72017-08-07 20:45:19 +020073{
74 unsigned char __user *addr;
75 unsigned char __user *end;
76 unsigned char val;
77 int err;
78
Mickaël Salaün752ba562017-08-07 20:45:20 +020079 if (unlikely(actual_size > PAGE_SIZE)) /* silly large */
80 return -E2BIG;
81
82 if (unlikely(!access_ok(VERIFY_READ, uaddr, actual_size)))
83 return -EFAULT;
84
Mickaël Salaün58291a72017-08-07 20:45:19 +020085 if (actual_size <= expected_size)
86 return 0;
87
88 addr = uaddr + expected_size;
89 end = uaddr + actual_size;
90
91 for (; addr < end; addr++) {
92 err = get_user(val, addr);
93 if (err)
94 return err;
95 if (val)
96 return -E2BIG;
97 }
98
99 return 0;
100}
101
Jakub Kicinskia3884572018-01-11 20:29:09 -0800102const struct bpf_map_ops bpf_map_offload_ops = {
103 .map_alloc = bpf_map_offload_map_alloc,
104 .map_free = bpf_map_offload_map_free,
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200105 .map_check_btf = map_check_no_btf,
Jakub Kicinskia3884572018-01-11 20:29:09 -0800106};
107
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700108static struct bpf_map *find_and_alloc_map(union bpf_attr *attr)
109{
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800110 const struct bpf_map_ops *ops;
Mark Rutland9ef09e32018-05-03 17:04:59 +0100111 u32 type = attr->map_type;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700112 struct bpf_map *map;
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800113 int err;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700114
Mark Rutland9ef09e32018-05-03 17:04:59 +0100115 if (type >= ARRAY_SIZE(bpf_map_types))
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800116 return ERR_PTR(-EINVAL);
Mark Rutland9ef09e32018-05-03 17:04:59 +0100117 type = array_index_nospec(type, ARRAY_SIZE(bpf_map_types));
118 ops = bpf_map_types[type];
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800119 if (!ops)
Johannes Berg40077e02017-04-11 15:34:58 +0200120 return ERR_PTR(-EINVAL);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700121
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800122 if (ops->map_alloc_check) {
123 err = ops->map_alloc_check(attr);
124 if (err)
125 return ERR_PTR(err);
126 }
Jakub Kicinskia3884572018-01-11 20:29:09 -0800127 if (attr->map_ifindex)
128 ops = &bpf_map_offload_ops;
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800129 map = ops->map_alloc(attr);
Johannes Berg40077e02017-04-11 15:34:58 +0200130 if (IS_ERR(map))
131 return map;
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800132 map->ops = ops;
Mark Rutland9ef09e32018-05-03 17:04:59 +0100133 map->map_type = type;
Johannes Berg40077e02017-04-11 15:34:58 +0200134 return map;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700135}
136
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700137void *bpf_map_area_alloc(size_t size, int numa_node)
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100138{
139 /* We definitely need __GFP_NORETRY, so OOM killer doesn't
140 * trigger under memory pressure as we really just want to
141 * fail instead.
142 */
143 const gfp_t flags = __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO;
144 void *area;
145
146 if (size <= (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER)) {
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700147 area = kmalloc_node(size, GFP_USER | flags, numa_node);
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100148 if (area != NULL)
149 return area;
150 }
151
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700152 return __vmalloc_node_flags_caller(size, numa_node, GFP_KERNEL | flags,
153 __builtin_return_address(0));
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100154}
155
156void bpf_map_area_free(void *area)
157{
158 kvfree(area);
159}
160
Jakub Kicinskibd475642018-01-11 20:29:06 -0800161void bpf_map_init_from_attr(struct bpf_map *map, union bpf_attr *attr)
162{
163 map->map_type = attr->map_type;
164 map->key_size = attr->key_size;
165 map->value_size = attr->value_size;
166 map->max_entries = attr->max_entries;
167 map->map_flags = attr->map_flags;
168 map->numa_node = bpf_map_attr_numa_node(attr);
169}
170
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800171int bpf_map_precharge_memlock(u32 pages)
172{
173 struct user_struct *user = get_current_user();
174 unsigned long memlock_limit, cur;
175
176 memlock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
177 cur = atomic_long_read(&user->locked_vm);
178 free_uid(user);
179 if (cur + pages > memlock_limit)
180 return -EPERM;
181 return 0;
182}
183
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700184static int bpf_charge_memlock(struct user_struct *user, u32 pages)
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700185{
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700186 unsigned long memlock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700187
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700188 if (atomic_long_add_return(pages, &user->locked_vm) > memlock_limit) {
189 atomic_long_sub(pages, &user->locked_vm);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700190 return -EPERM;
191 }
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700192 return 0;
193}
194
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700195static void bpf_uncharge_memlock(struct user_struct *user, u32 pages)
196{
197 atomic_long_sub(pages, &user->locked_vm);
198}
199
200static int bpf_map_init_memlock(struct bpf_map *map)
201{
202 struct user_struct *user = get_current_user();
203 int ret;
204
205 ret = bpf_charge_memlock(user, map->pages);
206 if (ret) {
207 free_uid(user);
208 return ret;
209 }
210 map->user = user;
211 return ret;
212}
213
214static void bpf_map_release_memlock(struct bpf_map *map)
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700215{
216 struct user_struct *user = map->user;
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700217 bpf_uncharge_memlock(user, map->pages);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700218 free_uid(user);
219}
220
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700221int bpf_map_charge_memlock(struct bpf_map *map, u32 pages)
222{
223 int ret;
224
225 ret = bpf_charge_memlock(map->user, pages);
226 if (ret)
227 return ret;
228 map->pages += pages;
229 return ret;
230}
231
232void bpf_map_uncharge_memlock(struct bpf_map *map, u32 pages)
233{
234 bpf_uncharge_memlock(map->user, pages);
235 map->pages -= pages;
236}
237
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700238static int bpf_map_alloc_id(struct bpf_map *map)
239{
240 int id;
241
Shaohua Lib76354c2018-03-27 11:53:21 -0700242 idr_preload(GFP_KERNEL);
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700243 spin_lock_bh(&map_idr_lock);
244 id = idr_alloc_cyclic(&map_idr, map, 1, INT_MAX, GFP_ATOMIC);
245 if (id > 0)
246 map->id = id;
247 spin_unlock_bh(&map_idr_lock);
Shaohua Lib76354c2018-03-27 11:53:21 -0700248 idr_preload_end();
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700249
250 if (WARN_ON_ONCE(!id))
251 return -ENOSPC;
252
253 return id > 0 ? 0 : id;
254}
255
Jakub Kicinskia3884572018-01-11 20:29:09 -0800256void bpf_map_free_id(struct bpf_map *map, bool do_idr_lock)
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700257{
Eric Dumazet930651a2017-09-19 09:15:59 -0700258 unsigned long flags;
259
Jakub Kicinskia3884572018-01-11 20:29:09 -0800260 /* Offloaded maps are removed from the IDR store when their device
261 * disappears - even if someone holds an fd to them they are unusable,
262 * the memory is gone, all ops will fail; they are simply waiting for
263 * refcnt to drop to be freed.
264 */
265 if (!map->id)
266 return;
267
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700268 if (do_idr_lock)
Eric Dumazet930651a2017-09-19 09:15:59 -0700269 spin_lock_irqsave(&map_idr_lock, flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700270 else
271 __acquire(&map_idr_lock);
272
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700273 idr_remove(&map_idr, map->id);
Jakub Kicinskia3884572018-01-11 20:29:09 -0800274 map->id = 0;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700275
276 if (do_idr_lock)
Eric Dumazet930651a2017-09-19 09:15:59 -0700277 spin_unlock_irqrestore(&map_idr_lock, flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700278 else
279 __release(&map_idr_lock);
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700280}
281
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700282/* called from workqueue */
283static void bpf_map_free_deferred(struct work_struct *work)
284{
285 struct bpf_map *map = container_of(work, struct bpf_map, work);
286
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700287 bpf_map_release_memlock(map);
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700288 security_bpf_map_free(map);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700289 /* implementation dependent freeing */
290 map->ops->map_free(map);
291}
292
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100293static void bpf_map_put_uref(struct bpf_map *map)
294{
295 if (atomic_dec_and_test(&map->usercnt)) {
John Fastabendba6b8de2018-04-23 15:39:23 -0700296 if (map->ops->map_release_uref)
297 map->ops->map_release_uref(map);
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100298 }
299}
300
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700301/* decrement map refcnt and schedule it for freeing via workqueue
302 * (unrelying map implementation ops->map_free() might sleep)
303 */
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700304static void __bpf_map_put(struct bpf_map *map, bool do_idr_lock)
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700305{
306 if (atomic_dec_and_test(&map->refcnt)) {
Martin KaFai Lau34ad5582017-06-05 12:15:48 -0700307 /* bpf_map_free_id() must be called first */
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700308 bpf_map_free_id(map, do_idr_lock);
Martin KaFai Lau78958fc2018-05-04 14:49:51 -0700309 btf_put(map->btf);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700310 INIT_WORK(&map->work, bpf_map_free_deferred);
311 schedule_work(&map->work);
312 }
313}
314
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700315void bpf_map_put(struct bpf_map *map)
316{
317 __bpf_map_put(map, true);
318}
Jakub Kicinski630a4d32018-05-03 18:37:09 -0700319EXPORT_SYMBOL_GPL(bpf_map_put);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700320
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100321void bpf_map_put_with_uref(struct bpf_map *map)
322{
323 bpf_map_put_uref(map);
324 bpf_map_put(map);
325}
326
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700327static int bpf_map_release(struct inode *inode, struct file *filp)
328{
Daniel Borkmann61d1b6a2016-06-15 22:47:12 +0200329 struct bpf_map *map = filp->private_data;
330
331 if (map->ops->map_release)
332 map->ops->map_release(map, filp);
333
334 bpf_map_put_with_uref(map);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700335 return 0;
336}
337
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100338#ifdef CONFIG_PROC_FS
339static void bpf_map_show_fdinfo(struct seq_file *m, struct file *filp)
340{
341 const struct bpf_map *map = filp->private_data;
Daniel Borkmann21116b72016-11-26 01:28:07 +0100342 const struct bpf_array *array;
343 u32 owner_prog_type = 0;
Daniel Borkmann9780c0a2017-07-02 02:13:28 +0200344 u32 owner_jited = 0;
Daniel Borkmann21116b72016-11-26 01:28:07 +0100345
346 if (map->map_type == BPF_MAP_TYPE_PROG_ARRAY) {
347 array = container_of(map, struct bpf_array, map);
348 owner_prog_type = array->owner_prog_type;
Daniel Borkmann9780c0a2017-07-02 02:13:28 +0200349 owner_jited = array->owner_jited;
Daniel Borkmann21116b72016-11-26 01:28:07 +0100350 }
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100351
352 seq_printf(m,
353 "map_type:\t%u\n"
354 "key_size:\t%u\n"
355 "value_size:\t%u\n"
Daniel Borkmann322cea22016-03-25 00:30:25 +0100356 "max_entries:\t%u\n"
Daniel Borkmann21116b72016-11-26 01:28:07 +0100357 "map_flags:\t%#x\n"
Daniel Borkmann4316b402018-06-02 23:06:34 +0200358 "memlock:\t%llu\n"
359 "map_id:\t%u\n",
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100360 map->map_type,
361 map->key_size,
362 map->value_size,
Daniel Borkmann322cea22016-03-25 00:30:25 +0100363 map->max_entries,
Daniel Borkmann21116b72016-11-26 01:28:07 +0100364 map->map_flags,
Daniel Borkmann4316b402018-06-02 23:06:34 +0200365 map->pages * 1ULL << PAGE_SHIFT,
366 map->id);
Daniel Borkmann21116b72016-11-26 01:28:07 +0100367
Daniel Borkmann9780c0a2017-07-02 02:13:28 +0200368 if (owner_prog_type) {
Daniel Borkmann21116b72016-11-26 01:28:07 +0100369 seq_printf(m, "owner_prog_type:\t%u\n",
370 owner_prog_type);
Daniel Borkmann9780c0a2017-07-02 02:13:28 +0200371 seq_printf(m, "owner_jited:\t%u\n",
372 owner_jited);
373 }
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100374}
375#endif
376
Chenbo Feng6e71b042017-10-18 13:00:22 -0700377static ssize_t bpf_dummy_read(struct file *filp, char __user *buf, size_t siz,
378 loff_t *ppos)
379{
380 /* We need this handler such that alloc_file() enables
381 * f_mode with FMODE_CAN_READ.
382 */
383 return -EINVAL;
384}
385
386static ssize_t bpf_dummy_write(struct file *filp, const char __user *buf,
387 size_t siz, loff_t *ppos)
388{
389 /* We need this handler such that alloc_file() enables
390 * f_mode with FMODE_CAN_WRITE.
391 */
392 return -EINVAL;
393}
394
Chenbo Fengf66e4482017-10-18 13:00:26 -0700395const struct file_operations bpf_map_fops = {
Daniel Borkmannf99bf202015-11-19 11:56:22 +0100396#ifdef CONFIG_PROC_FS
397 .show_fdinfo = bpf_map_show_fdinfo,
398#endif
399 .release = bpf_map_release,
Chenbo Feng6e71b042017-10-18 13:00:22 -0700400 .read = bpf_dummy_read,
401 .write = bpf_dummy_write,
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700402};
403
Chenbo Feng6e71b042017-10-18 13:00:22 -0700404int bpf_map_new_fd(struct bpf_map *map, int flags)
Daniel Borkmannaa797812015-10-29 14:58:06 +0100405{
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700406 int ret;
407
408 ret = security_bpf_map(map, OPEN_FMODE(flags));
409 if (ret < 0)
410 return ret;
411
Daniel Borkmannaa797812015-10-29 14:58:06 +0100412 return anon_inode_getfd("bpf-map", &bpf_map_fops, map,
Chenbo Feng6e71b042017-10-18 13:00:22 -0700413 flags | O_CLOEXEC);
414}
415
416int bpf_get_file_flag(int flags)
417{
418 if ((flags & BPF_F_RDONLY) && (flags & BPF_F_WRONLY))
419 return -EINVAL;
420 if (flags & BPF_F_RDONLY)
421 return O_RDONLY;
422 if (flags & BPF_F_WRONLY)
423 return O_WRONLY;
424 return O_RDWR;
Daniel Borkmannaa797812015-10-29 14:58:06 +0100425}
426
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700427/* helper macro to check that unused fields 'union bpf_attr' are zero */
428#define CHECK_ATTR(CMD) \
429 memchr_inv((void *) &attr->CMD##_LAST_FIELD + \
430 sizeof(attr->CMD##_LAST_FIELD), 0, \
431 sizeof(*attr) - \
432 offsetof(union bpf_attr, CMD##_LAST_FIELD) - \
433 sizeof(attr->CMD##_LAST_FIELD)) != NULL
434
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -0700435/* dst and src must have at least BPF_OBJ_NAME_LEN number of bytes.
436 * Return 0 on success and < 0 on error.
437 */
438static int bpf_obj_name_cpy(char *dst, const char *src)
439{
440 const char *end = src + BPF_OBJ_NAME_LEN;
441
Martin KaFai Lau473d9732017-10-05 21:52:11 -0700442 memset(dst, 0, BPF_OBJ_NAME_LEN);
443
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -0700444 /* Copy all isalnum() and '_' char */
445 while (src < end && *src) {
446 if (!isalnum(*src) && *src != '_')
447 return -EINVAL;
448 *dst++ = *src++;
449 }
450
451 /* No '\0' found in BPF_OBJ_NAME_LEN number of bytes */
452 if (src == end)
453 return -EINVAL;
454
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -0700455 return 0;
456}
457
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200458int map_check_no_btf(const struct bpf_map *map,
459 const struct btf_type *key_type,
460 const struct btf_type *value_type)
461{
462 return -ENOTSUPP;
463}
464
465static int map_check_btf(const struct bpf_map *map, const struct btf *btf,
466 u32 btf_key_id, u32 btf_value_id)
467{
468 const struct btf_type *key_type, *value_type;
469 u32 key_size, value_size;
470 int ret = 0;
471
472 key_type = btf_type_id_size(btf, &btf_key_id, &key_size);
473 if (!key_type || key_size != map->key_size)
474 return -EINVAL;
475
476 value_type = btf_type_id_size(btf, &btf_value_id, &value_size);
477 if (!value_type || value_size != map->value_size)
478 return -EINVAL;
479
480 if (map->ops->map_check_btf)
481 ret = map->ops->map_check_btf(map, key_type, value_type);
482
483 return ret;
484}
485
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700486#define BPF_MAP_CREATE_LAST_FIELD btf_value_type_id
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700487/* called via syscall */
488static int map_create(union bpf_attr *attr)
489{
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700490 int numa_node = bpf_map_attr_numa_node(attr);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700491 struct bpf_map *map;
Chenbo Feng6e71b042017-10-18 13:00:22 -0700492 int f_flags;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700493 int err;
494
495 err = CHECK_ATTR(BPF_MAP_CREATE);
496 if (err)
497 return -EINVAL;
498
Chenbo Feng6e71b042017-10-18 13:00:22 -0700499 f_flags = bpf_get_file_flag(attr->map_flags);
500 if (f_flags < 0)
501 return f_flags;
502
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700503 if (numa_node != NUMA_NO_NODE &&
Eric Dumazet96e5ae42017-09-04 22:41:02 -0700504 ((unsigned int)numa_node >= nr_node_ids ||
505 !node_online(numa_node)))
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700506 return -EINVAL;
507
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700508 /* find map type and init map: hashtable vs rbtree vs bloom vs ... */
509 map = find_and_alloc_map(attr);
510 if (IS_ERR(map))
511 return PTR_ERR(map);
512
Martin KaFai Lauad5b1772017-09-27 14:37:53 -0700513 err = bpf_obj_name_cpy(map->name, attr->map_name);
514 if (err)
515 goto free_map_nouncharge;
516
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700517 atomic_set(&map->refcnt, 1);
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100518 atomic_set(&map->usercnt, 1);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700519
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200520 if (attr->btf_key_type_id || attr->btf_value_type_id) {
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700521 struct btf *btf;
522
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700523 if (!attr->btf_key_type_id || !attr->btf_value_type_id) {
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700524 err = -EINVAL;
525 goto free_map_nouncharge;
526 }
527
528 btf = btf_get_by_fd(attr->btf_fd);
529 if (IS_ERR(btf)) {
530 err = PTR_ERR(btf);
531 goto free_map_nouncharge;
532 }
533
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200534 err = map_check_btf(map, btf, attr->btf_key_type_id,
535 attr->btf_value_type_id);
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700536 if (err) {
537 btf_put(btf);
538 goto free_map_nouncharge;
539 }
540
541 map->btf = btf;
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700542 map->btf_key_type_id = attr->btf_key_type_id;
543 map->btf_value_type_id = attr->btf_value_type_id;
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700544 }
545
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700546 err = security_bpf_map_alloc(map);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700547 if (err)
Daniel Borkmann20b2b242016-11-04 00:56:31 +0100548 goto free_map_nouncharge;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700549
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700550 err = bpf_map_init_memlock(map);
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700551 if (err)
552 goto free_map_sec;
553
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700554 err = bpf_map_alloc_id(map);
555 if (err)
556 goto free_map;
557
Chenbo Feng6e71b042017-10-18 13:00:22 -0700558 err = bpf_map_new_fd(map, f_flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700559 if (err < 0) {
560 /* failed to allocate fd.
561 * bpf_map_put() is needed because the above
562 * bpf_map_alloc_id() has published the map
563 * to the userspace and the userspace may
564 * have refcnt-ed it through BPF_MAP_GET_FD_BY_ID.
565 */
566 bpf_map_put(map);
567 return err;
568 }
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700569
570 return err;
571
572free_map:
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700573 bpf_map_release_memlock(map);
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700574free_map_sec:
575 security_bpf_map_free(map);
Daniel Borkmann20b2b242016-11-04 00:56:31 +0100576free_map_nouncharge:
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700577 btf_put(map->btf);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700578 map->ops->map_free(map);
579 return err;
580}
581
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700582/* if error is returned, fd is released.
583 * On success caller should complete fd access with matching fdput()
584 */
Daniel Borkmannc2101292015-10-29 14:58:07 +0100585struct bpf_map *__bpf_map_get(struct fd f)
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700586{
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700587 if (!f.file)
588 return ERR_PTR(-EBADF);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700589 if (f.file->f_op != &bpf_map_fops) {
590 fdput(f);
591 return ERR_PTR(-EINVAL);
592 }
593
Daniel Borkmannc2101292015-10-29 14:58:07 +0100594 return f.file->private_data;
595}
596
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700597/* prog's and map's refcnt limit */
598#define BPF_MAX_REFCNT 32768
599
600struct bpf_map *bpf_map_inc(struct bpf_map *map, bool uref)
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100601{
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700602 if (atomic_inc_return(&map->refcnt) > BPF_MAX_REFCNT) {
603 atomic_dec(&map->refcnt);
604 return ERR_PTR(-EBUSY);
605 }
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100606 if (uref)
607 atomic_inc(&map->usercnt);
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700608 return map;
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100609}
Jakub Kicinski630a4d32018-05-03 18:37:09 -0700610EXPORT_SYMBOL_GPL(bpf_map_inc);
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100611
612struct bpf_map *bpf_map_get_with_uref(u32 ufd)
Daniel Borkmannc2101292015-10-29 14:58:07 +0100613{
614 struct fd f = fdget(ufd);
615 struct bpf_map *map;
616
617 map = __bpf_map_get(f);
618 if (IS_ERR(map))
619 return map;
620
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700621 map = bpf_map_inc(map, true);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100622 fdput(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700623
624 return map;
625}
626
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700627/* map_idr_lock should have been held */
628static struct bpf_map *bpf_map_inc_not_zero(struct bpf_map *map,
629 bool uref)
630{
631 int refold;
632
Mark Rutlandbfc18e32018-06-21 13:13:04 +0100633 refold = atomic_fetch_add_unless(&map->refcnt, 1, 0);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700634
635 if (refold >= BPF_MAX_REFCNT) {
636 __bpf_map_put(map, false);
637 return ERR_PTR(-EBUSY);
638 }
639
640 if (!refold)
641 return ERR_PTR(-ENOENT);
642
643 if (uref)
644 atomic_inc(&map->usercnt);
645
646 return map;
647}
648
Alexei Starovoitovb8cdc052016-03-09 18:56:49 -0800649int __weak bpf_stackmap_copy(struct bpf_map *map, void *key, void *value)
650{
651 return -ENOTSUPP;
652}
653
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700654/* last field in 'union bpf_attr' used by this command */
655#define BPF_MAP_LOOKUP_ELEM_LAST_FIELD value
656
657static int map_lookup_elem(union bpf_attr *attr)
658{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100659 void __user *ukey = u64_to_user_ptr(attr->key);
660 void __user *uvalue = u64_to_user_ptr(attr->value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700661 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700662 struct bpf_map *map;
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800663 void *key, *value, *ptr;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800664 u32 value_size;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200665 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700666 int err;
667
668 if (CHECK_ATTR(BPF_MAP_LOOKUP_ELEM))
669 return -EINVAL;
670
Daniel Borkmann592867b2015-09-08 18:00:09 +0200671 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100672 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700673 if (IS_ERR(map))
674 return PTR_ERR(map);
675
Chenbo Feng6e71b042017-10-18 13:00:22 -0700676 if (!(f.file->f_mode & FMODE_CAN_READ)) {
677 err = -EPERM;
678 goto err_put;
679 }
680
Al Viroe4448ed2017-05-13 18:43:00 -0400681 key = memdup_user(ukey, map->key_size);
682 if (IS_ERR(key)) {
683 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700684 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400685 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700686
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800687 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800688 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH ||
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800689 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY)
690 value_size = round_up(map->value_size, 8) * num_possible_cpus();
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -0700691 else if (IS_FD_MAP(map))
692 value_size = sizeof(u32);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800693 else
694 value_size = map->value_size;
695
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800696 err = -ENOMEM;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800697 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700698 if (!value)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800699 goto free_key;
700
Jakub Kicinskia3884572018-01-11 20:29:09 -0800701 if (bpf_map_is_dev_bound(map)) {
702 err = bpf_map_offload_lookup_elem(map, key, value);
703 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
704 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) {
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800705 err = bpf_percpu_hash_copy(map, key, value);
706 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) {
707 err = bpf_percpu_array_copy(map, key, value);
Alexei Starovoitov557c0c62016-03-07 21:57:17 -0800708 } else if (map->map_type == BPF_MAP_TYPE_STACK_TRACE) {
709 err = bpf_stackmap_copy(map, key, value);
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -0700710 } else if (IS_FD_ARRAY(map)) {
711 err = bpf_fd_array_map_lookup_elem(map, key, value);
712 } else if (IS_FD_HASH(map)) {
713 err = bpf_fd_htab_map_lookup_elem(map, key, value);
Martin KaFai Lau5dc4c4b2018-08-08 01:01:24 -0700714 } else if (map->map_type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY) {
715 err = bpf_fd_reuseport_array_lookup_elem(map, key, value);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800716 } else {
717 rcu_read_lock();
718 ptr = map->ops->map_lookup_elem(map, key);
719 if (ptr)
720 memcpy(value, ptr, value_size);
721 rcu_read_unlock();
722 err = ptr ? 0 : -ENOENT;
723 }
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800724
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800725 if (err)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800726 goto free_value;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700727
728 err = -EFAULT;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800729 if (copy_to_user(uvalue, value, value_size) != 0)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800730 goto free_value;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700731
732 err = 0;
733
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800734free_value:
735 kfree(value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700736free_key:
737 kfree(key);
738err_put:
739 fdput(f);
740 return err;
741}
742
Alexei Starovoitov3274f522014-11-13 17:36:44 -0800743#define BPF_MAP_UPDATE_ELEM_LAST_FIELD flags
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700744
745static int map_update_elem(union bpf_attr *attr)
746{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100747 void __user *ukey = u64_to_user_ptr(attr->key);
748 void __user *uvalue = u64_to_user_ptr(attr->value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700749 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700750 struct bpf_map *map;
751 void *key, *value;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800752 u32 value_size;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200753 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700754 int err;
755
756 if (CHECK_ATTR(BPF_MAP_UPDATE_ELEM))
757 return -EINVAL;
758
Daniel Borkmann592867b2015-09-08 18:00:09 +0200759 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100760 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700761 if (IS_ERR(map))
762 return PTR_ERR(map);
763
Chenbo Feng6e71b042017-10-18 13:00:22 -0700764 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
765 err = -EPERM;
766 goto err_put;
767 }
768
Al Viroe4448ed2017-05-13 18:43:00 -0400769 key = memdup_user(ukey, map->key_size);
770 if (IS_ERR(key)) {
771 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700772 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400773 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700774
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800775 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800776 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH ||
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800777 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY)
778 value_size = round_up(map->value_size, 8) * num_possible_cpus();
779 else
780 value_size = map->value_size;
781
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700782 err = -ENOMEM;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800783 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700784 if (!value)
785 goto free_key;
786
787 err = -EFAULT;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800788 if (copy_from_user(value, uvalue, value_size) != 0)
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700789 goto free_value;
790
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200791 /* Need to create a kthread, thus must support schedule */
Jakub Kicinskia3884572018-01-11 20:29:09 -0800792 if (bpf_map_is_dev_bound(map)) {
793 err = bpf_map_offload_update_elem(map, key, value, attr->flags);
794 goto out;
John Fastabend99ba2b52018-07-05 08:50:04 -0700795 } else if (map->map_type == BPF_MAP_TYPE_CPUMAP ||
796 map->map_type == BPF_MAP_TYPE_SOCKHASH ||
797 map->map_type == BPF_MAP_TYPE_SOCKMAP) {
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200798 err = map->ops->map_update_elem(map, key, value, attr->flags);
799 goto out;
800 }
801
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800802 /* must increment bpf_prog_active to avoid kprobe+bpf triggering from
803 * inside bpf map update or delete otherwise deadlocks are possible
804 */
805 preempt_disable();
806 __this_cpu_inc(bpf_prog_active);
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800807 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
808 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) {
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800809 err = bpf_percpu_hash_update(map, key, value, attr->flags);
810 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) {
811 err = bpf_percpu_array_update(map, key, value, attr->flags);
Mickaël Salaün9c147b52018-01-26 00:54:02 +0100812 } else if (IS_FD_ARRAY(map)) {
Daniel Borkmannd056a782016-06-15 22:47:13 +0200813 rcu_read_lock();
814 err = bpf_fd_array_map_update_elem(map, f.file, key, value,
815 attr->flags);
816 rcu_read_unlock();
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700817 } else if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS) {
818 rcu_read_lock();
819 err = bpf_fd_htab_map_update_elem(map, f.file, key, value,
820 attr->flags);
821 rcu_read_unlock();
Martin KaFai Lau5dc4c4b2018-08-08 01:01:24 -0700822 } else if (map->map_type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY) {
823 /* rcu_read_lock() is not needed */
824 err = bpf_fd_reuseport_array_update_elem(map, key, value,
825 attr->flags);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800826 } else {
827 rcu_read_lock();
828 err = map->ops->map_update_elem(map, key, value, attr->flags);
829 rcu_read_unlock();
830 }
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800831 __this_cpu_dec(bpf_prog_active);
832 preempt_enable();
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200833out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700834free_value:
835 kfree(value);
836free_key:
837 kfree(key);
838err_put:
839 fdput(f);
840 return err;
841}
842
843#define BPF_MAP_DELETE_ELEM_LAST_FIELD key
844
845static int map_delete_elem(union bpf_attr *attr)
846{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100847 void __user *ukey = u64_to_user_ptr(attr->key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700848 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700849 struct bpf_map *map;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200850 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700851 void *key;
852 int err;
853
854 if (CHECK_ATTR(BPF_MAP_DELETE_ELEM))
855 return -EINVAL;
856
Daniel Borkmann592867b2015-09-08 18:00:09 +0200857 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100858 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700859 if (IS_ERR(map))
860 return PTR_ERR(map);
861
Chenbo Feng6e71b042017-10-18 13:00:22 -0700862 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
863 err = -EPERM;
864 goto err_put;
865 }
866
Al Viroe4448ed2017-05-13 18:43:00 -0400867 key = memdup_user(ukey, map->key_size);
868 if (IS_ERR(key)) {
869 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700870 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400871 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700872
Jakub Kicinskia3884572018-01-11 20:29:09 -0800873 if (bpf_map_is_dev_bound(map)) {
874 err = bpf_map_offload_delete_elem(map, key);
875 goto out;
876 }
877
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800878 preempt_disable();
879 __this_cpu_inc(bpf_prog_active);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700880 rcu_read_lock();
881 err = map->ops->map_delete_elem(map, key);
882 rcu_read_unlock();
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800883 __this_cpu_dec(bpf_prog_active);
884 preempt_enable();
Jakub Kicinskia3884572018-01-11 20:29:09 -0800885out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700886 kfree(key);
887err_put:
888 fdput(f);
889 return err;
890}
891
892/* last field in 'union bpf_attr' used by this command */
893#define BPF_MAP_GET_NEXT_KEY_LAST_FIELD next_key
894
895static int map_get_next_key(union bpf_attr *attr)
896{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100897 void __user *ukey = u64_to_user_ptr(attr->key);
898 void __user *unext_key = u64_to_user_ptr(attr->next_key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700899 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700900 struct bpf_map *map;
901 void *key, *next_key;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200902 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700903 int err;
904
905 if (CHECK_ATTR(BPF_MAP_GET_NEXT_KEY))
906 return -EINVAL;
907
Daniel Borkmann592867b2015-09-08 18:00:09 +0200908 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100909 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700910 if (IS_ERR(map))
911 return PTR_ERR(map);
912
Chenbo Feng6e71b042017-10-18 13:00:22 -0700913 if (!(f.file->f_mode & FMODE_CAN_READ)) {
914 err = -EPERM;
915 goto err_put;
916 }
917
Teng Qin8fe45922017-04-24 19:00:37 -0700918 if (ukey) {
Al Viroe4448ed2017-05-13 18:43:00 -0400919 key = memdup_user(ukey, map->key_size);
920 if (IS_ERR(key)) {
921 err = PTR_ERR(key);
Teng Qin8fe45922017-04-24 19:00:37 -0700922 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400923 }
Teng Qin8fe45922017-04-24 19:00:37 -0700924 } else {
925 key = NULL;
926 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700927
928 err = -ENOMEM;
929 next_key = kmalloc(map->key_size, GFP_USER);
930 if (!next_key)
931 goto free_key;
932
Jakub Kicinskia3884572018-01-11 20:29:09 -0800933 if (bpf_map_is_dev_bound(map)) {
934 err = bpf_map_offload_get_next_key(map, key, next_key);
935 goto out;
936 }
937
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700938 rcu_read_lock();
939 err = map->ops->map_get_next_key(map, key, next_key);
940 rcu_read_unlock();
Jakub Kicinskia3884572018-01-11 20:29:09 -0800941out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700942 if (err)
943 goto free_next_key;
944
945 err = -EFAULT;
946 if (copy_to_user(unext_key, next_key, map->key_size) != 0)
947 goto free_next_key;
948
949 err = 0;
950
951free_next_key:
952 kfree(next_key);
953free_key:
954 kfree(key);
955err_put:
956 fdput(f);
957 return err;
958}
959
Jakub Kicinski7de16e32017-10-16 16:40:53 -0700960static const struct bpf_prog_ops * const bpf_prog_types[] = {
961#define BPF_PROG_TYPE(_id, _name) \
962 [_id] = & _name ## _prog_ops,
963#define BPF_MAP_TYPE(_id, _ops)
964#include <linux/bpf_types.h>
965#undef BPF_PROG_TYPE
966#undef BPF_MAP_TYPE
967};
968
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700969static int find_prog_type(enum bpf_prog_type type, struct bpf_prog *prog)
970{
Daniel Borkmannd0f1a452018-05-04 02:13:57 +0200971 const struct bpf_prog_ops *ops;
972
973 if (type >= ARRAY_SIZE(bpf_prog_types))
974 return -EINVAL;
975 type = array_index_nospec(type, ARRAY_SIZE(bpf_prog_types));
976 ops = bpf_prog_types[type];
977 if (!ops)
Johannes Bergbe9370a2017-04-11 15:34:57 +0200978 return -EINVAL;
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700979
Jakub Kicinskiab3f0062017-11-03 13:56:17 -0700980 if (!bpf_prog_is_dev_bound(prog->aux))
Daniel Borkmannd0f1a452018-05-04 02:13:57 +0200981 prog->aux->ops = ops;
Jakub Kicinskiab3f0062017-11-03 13:56:17 -0700982 else
983 prog->aux->ops = &bpf_offload_prog_ops;
Johannes Bergbe9370a2017-04-11 15:34:57 +0200984 prog->type = type;
985 return 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700986}
987
988/* drop refcnt on maps used by eBPF program and free auxilary data */
989static void free_used_maps(struct bpf_prog_aux *aux)
990{
991 int i;
992
Roman Gushchinde9cbba2018-08-02 14:27:18 -0700993 if (aux->cgroup_storage)
994 bpf_cgroup_storage_release(aux->prog, aux->cgroup_storage);
995
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700996 for (i = 0; i < aux->used_map_cnt; i++)
997 bpf_map_put(aux->used_maps[i]);
998
999 kfree(aux->used_maps);
1000}
1001
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001002int __bpf_prog_charge(struct user_struct *user, u32 pages)
1003{
1004 unsigned long memlock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1005 unsigned long user_bufs;
1006
1007 if (user) {
1008 user_bufs = atomic_long_add_return(pages, &user->locked_vm);
1009 if (user_bufs > memlock_limit) {
1010 atomic_long_sub(pages, &user->locked_vm);
1011 return -EPERM;
1012 }
1013 }
1014
1015 return 0;
1016}
1017
1018void __bpf_prog_uncharge(struct user_struct *user, u32 pages)
1019{
1020 if (user)
1021 atomic_long_sub(pages, &user->locked_vm);
1022}
1023
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001024static int bpf_prog_charge_memlock(struct bpf_prog *prog)
1025{
1026 struct user_struct *user = get_current_user();
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001027 int ret;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001028
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001029 ret = __bpf_prog_charge(user, prog->pages);
1030 if (ret) {
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001031 free_uid(user);
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001032 return ret;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001033 }
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001034
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001035 prog->aux->user = user;
1036 return 0;
1037}
1038
1039static void bpf_prog_uncharge_memlock(struct bpf_prog *prog)
1040{
1041 struct user_struct *user = prog->aux->user;
1042
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001043 __bpf_prog_uncharge(user, prog->pages);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001044 free_uid(user);
1045}
1046
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001047static int bpf_prog_alloc_id(struct bpf_prog *prog)
1048{
1049 int id;
1050
Shaohua Lib76354c2018-03-27 11:53:21 -07001051 idr_preload(GFP_KERNEL);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001052 spin_lock_bh(&prog_idr_lock);
1053 id = idr_alloc_cyclic(&prog_idr, prog, 1, INT_MAX, GFP_ATOMIC);
1054 if (id > 0)
1055 prog->aux->id = id;
1056 spin_unlock_bh(&prog_idr_lock);
Shaohua Lib76354c2018-03-27 11:53:21 -07001057 idr_preload_end();
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001058
1059 /* id is in [1, INT_MAX) */
1060 if (WARN_ON_ONCE(!id))
1061 return -ENOSPC;
1062
1063 return id > 0 ? 0 : id;
1064}
1065
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001066void bpf_prog_free_id(struct bpf_prog *prog, bool do_idr_lock)
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001067{
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001068 /* cBPF to eBPF migrations are currently not in the idr store.
1069 * Offloaded programs are removed from the store when their device
1070 * disappears - even if someone grabs an fd to them they are unusable,
1071 * simply waiting for refcnt to drop to be freed.
1072 */
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001073 if (!prog->aux->id)
1074 return;
1075
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001076 if (do_idr_lock)
1077 spin_lock_bh(&prog_idr_lock);
1078 else
1079 __acquire(&prog_idr_lock);
1080
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001081 idr_remove(&prog_idr, prog->aux->id);
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001082 prog->aux->id = 0;
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001083
1084 if (do_idr_lock)
1085 spin_unlock_bh(&prog_idr_lock);
1086 else
1087 __release(&prog_idr_lock);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001088}
1089
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001090static void __bpf_prog_put_rcu(struct rcu_head *rcu)
Alexei Starovoitovabf2e7d2015-05-28 19:26:02 -07001091{
1092 struct bpf_prog_aux *aux = container_of(rcu, struct bpf_prog_aux, rcu);
1093
1094 free_used_maps(aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001095 bpf_prog_uncharge_memlock(aux->prog);
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001096 security_bpf_prog_free(aux);
Alexei Starovoitovabf2e7d2015-05-28 19:26:02 -07001097 bpf_prog_free(aux->prog);
1098}
1099
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001100static void __bpf_prog_put(struct bpf_prog *prog, bool do_idr_lock)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001101{
Daniel Borkmanna67edbf2017-01-25 02:28:18 +01001102 if (atomic_dec_and_test(&prog->aux->refcnt)) {
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07001103 /* bpf_prog_free_id() must be called first */
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001104 bpf_prog_free_id(prog, do_idr_lock);
Daniel Borkmann7d1982b2018-06-15 02:30:47 +02001105 bpf_prog_kallsyms_del_all(prog);
Daniel Borkmann4f74d802017-12-20 13:42:56 +01001106
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001107 call_rcu(&prog->aux->rcu, __bpf_prog_put_rcu);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +01001108 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001109}
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001110
1111void bpf_prog_put(struct bpf_prog *prog)
1112{
1113 __bpf_prog_put(prog, true);
1114}
Daniel Borkmanne2e9b652015-03-01 12:31:48 +01001115EXPORT_SYMBOL_GPL(bpf_prog_put);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001116
1117static int bpf_prog_release(struct inode *inode, struct file *filp)
1118{
1119 struct bpf_prog *prog = filp->private_data;
1120
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001121 bpf_prog_put(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001122 return 0;
1123}
1124
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001125#ifdef CONFIG_PROC_FS
1126static void bpf_prog_show_fdinfo(struct seq_file *m, struct file *filp)
1127{
1128 const struct bpf_prog *prog = filp->private_data;
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001129 char prog_tag[sizeof(prog->tag) * 2 + 1] = { };
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001130
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001131 bin2hex(prog_tag, prog->tag, sizeof(prog->tag));
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001132 seq_printf(m,
1133 "prog_type:\t%u\n"
1134 "prog_jited:\t%u\n"
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001135 "prog_tag:\t%s\n"
Daniel Borkmann4316b402018-06-02 23:06:34 +02001136 "memlock:\t%llu\n"
1137 "prog_id:\t%u\n",
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001138 prog->type,
1139 prog->jited,
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001140 prog_tag,
Daniel Borkmann4316b402018-06-02 23:06:34 +02001141 prog->pages * 1ULL << PAGE_SHIFT,
1142 prog->aux->id);
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001143}
1144#endif
1145
Chenbo Fengf66e4482017-10-18 13:00:26 -07001146const struct file_operations bpf_prog_fops = {
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001147#ifdef CONFIG_PROC_FS
1148 .show_fdinfo = bpf_prog_show_fdinfo,
1149#endif
1150 .release = bpf_prog_release,
Chenbo Feng6e71b042017-10-18 13:00:22 -07001151 .read = bpf_dummy_read,
1152 .write = bpf_dummy_write,
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001153};
1154
Daniel Borkmannb2197752015-10-29 14:58:09 +01001155int bpf_prog_new_fd(struct bpf_prog *prog)
Daniel Borkmannaa797812015-10-29 14:58:06 +01001156{
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001157 int ret;
1158
1159 ret = security_bpf_prog(prog);
1160 if (ret < 0)
1161 return ret;
1162
Daniel Borkmannaa797812015-10-29 14:58:06 +01001163 return anon_inode_getfd("bpf-prog", &bpf_prog_fops, prog,
1164 O_RDWR | O_CLOEXEC);
1165}
1166
Daniel Borkmann113214b2016-06-30 17:24:44 +02001167static struct bpf_prog *____bpf_prog_get(struct fd f)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001168{
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001169 if (!f.file)
1170 return ERR_PTR(-EBADF);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001171 if (f.file->f_op != &bpf_prog_fops) {
1172 fdput(f);
1173 return ERR_PTR(-EINVAL);
1174 }
1175
Daniel Borkmannc2101292015-10-29 14:58:07 +01001176 return f.file->private_data;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001177}
1178
Brenden Blanco59d36562016-07-19 12:16:46 -07001179struct bpf_prog *bpf_prog_add(struct bpf_prog *prog, int i)
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001180{
Brenden Blanco59d36562016-07-19 12:16:46 -07001181 if (atomic_add_return(i, &prog->aux->refcnt) > BPF_MAX_REFCNT) {
1182 atomic_sub(i, &prog->aux->refcnt);
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001183 return ERR_PTR(-EBUSY);
1184 }
1185 return prog;
1186}
Brenden Blanco59d36562016-07-19 12:16:46 -07001187EXPORT_SYMBOL_GPL(bpf_prog_add);
1188
Daniel Borkmannc5405942016-11-09 22:02:34 +01001189void bpf_prog_sub(struct bpf_prog *prog, int i)
1190{
1191 /* Only to be used for undoing previous bpf_prog_add() in some
1192 * error path. We still know that another entity in our call
1193 * path holds a reference to the program, thus atomic_sub() can
1194 * be safely used in such cases!
1195 */
1196 WARN_ON(atomic_sub_return(i, &prog->aux->refcnt) == 0);
1197}
1198EXPORT_SYMBOL_GPL(bpf_prog_sub);
1199
Brenden Blanco59d36562016-07-19 12:16:46 -07001200struct bpf_prog *bpf_prog_inc(struct bpf_prog *prog)
1201{
1202 return bpf_prog_add(prog, 1);
1203}
Daniel Borkmann97bc4022016-11-19 01:45:00 +01001204EXPORT_SYMBOL_GPL(bpf_prog_inc);
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001205
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001206/* prog_idr_lock should have been held */
John Fastabenda6f6df62017-08-15 22:32:22 -07001207struct bpf_prog *bpf_prog_inc_not_zero(struct bpf_prog *prog)
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001208{
1209 int refold;
1210
Mark Rutlandbfc18e32018-06-21 13:13:04 +01001211 refold = atomic_fetch_add_unless(&prog->aux->refcnt, 1, 0);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001212
1213 if (refold >= BPF_MAX_REFCNT) {
1214 __bpf_prog_put(prog, false);
1215 return ERR_PTR(-EBUSY);
1216 }
1217
1218 if (!refold)
1219 return ERR_PTR(-ENOENT);
1220
1221 return prog;
1222}
John Fastabenda6f6df62017-08-15 22:32:22 -07001223EXPORT_SYMBOL_GPL(bpf_prog_inc_not_zero);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001224
Al Viro040ee692017-12-02 20:20:38 -05001225bool bpf_prog_get_ok(struct bpf_prog *prog,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001226 enum bpf_prog_type *attach_type, bool attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001227{
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001228 /* not an attachment, just a refcount inc, always allow */
1229 if (!attach_type)
1230 return true;
Jakub Kicinski248f3462017-11-03 13:56:20 -07001231
1232 if (prog->type != *attach_type)
1233 return false;
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001234 if (bpf_prog_is_dev_bound(prog->aux) && !attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001235 return false;
1236
1237 return true;
1238}
1239
1240static struct bpf_prog *__bpf_prog_get(u32 ufd, enum bpf_prog_type *attach_type,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001241 bool attach_drv)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001242{
1243 struct fd f = fdget(ufd);
1244 struct bpf_prog *prog;
1245
Daniel Borkmann113214b2016-06-30 17:24:44 +02001246 prog = ____bpf_prog_get(f);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001247 if (IS_ERR(prog))
1248 return prog;
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001249 if (!bpf_prog_get_ok(prog, attach_type, attach_drv)) {
Daniel Borkmann113214b2016-06-30 17:24:44 +02001250 prog = ERR_PTR(-EINVAL);
1251 goto out;
1252 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001253
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001254 prog = bpf_prog_inc(prog);
Daniel Borkmann113214b2016-06-30 17:24:44 +02001255out:
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001256 fdput(f);
1257 return prog;
1258}
Daniel Borkmann113214b2016-06-30 17:24:44 +02001259
1260struct bpf_prog *bpf_prog_get(u32 ufd)
1261{
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001262 return __bpf_prog_get(ufd, NULL, false);
Daniel Borkmann113214b2016-06-30 17:24:44 +02001263}
1264
Jakub Kicinski248f3462017-11-03 13:56:20 -07001265struct bpf_prog *bpf_prog_get_type_dev(u32 ufd, enum bpf_prog_type type,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001266 bool attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001267{
Alexei Starovoitov4d220ed2018-04-28 19:56:37 -07001268 return __bpf_prog_get(ufd, &type, attach_drv);
Jakub Kicinski248f3462017-11-03 13:56:20 -07001269}
Jakub Kicinski6c8dfe22017-11-03 13:56:21 -07001270EXPORT_SYMBOL_GPL(bpf_prog_get_type_dev);
Jakub Kicinski248f3462017-11-03 13:56:20 -07001271
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001272/* Initially all BPF programs could be loaded w/o specifying
1273 * expected_attach_type. Later for some of them specifying expected_attach_type
1274 * at load time became required so that program could be validated properly.
1275 * Programs of types that are allowed to be loaded both w/ and w/o (for
1276 * backward compatibility) expected_attach_type, should have the default attach
1277 * type assigned to expected_attach_type for the latter case, so that it can be
1278 * validated later at attach time.
1279 *
1280 * bpf_prog_load_fixup_attach_type() sets expected_attach_type in @attr if
1281 * prog type requires it but has some attach types that have to be backward
1282 * compatible.
1283 */
1284static void bpf_prog_load_fixup_attach_type(union bpf_attr *attr)
1285{
1286 switch (attr->prog_type) {
1287 case BPF_PROG_TYPE_CGROUP_SOCK:
1288 /* Unfortunately BPF_ATTACH_TYPE_UNSPEC enumeration doesn't
1289 * exist so checking for non-zero is the way to go here.
1290 */
1291 if (!attr->expected_attach_type)
1292 attr->expected_attach_type =
1293 BPF_CGROUP_INET_SOCK_CREATE;
1294 break;
1295 }
1296}
1297
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001298static int
1299bpf_prog_load_check_attach_type(enum bpf_prog_type prog_type,
1300 enum bpf_attach_type expected_attach_type)
1301{
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001302 switch (prog_type) {
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001303 case BPF_PROG_TYPE_CGROUP_SOCK:
1304 switch (expected_attach_type) {
1305 case BPF_CGROUP_INET_SOCK_CREATE:
1306 case BPF_CGROUP_INET4_POST_BIND:
1307 case BPF_CGROUP_INET6_POST_BIND:
1308 return 0;
1309 default:
1310 return -EINVAL;
1311 }
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001312 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
1313 switch (expected_attach_type) {
1314 case BPF_CGROUP_INET4_BIND:
1315 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001316 case BPF_CGROUP_INET4_CONNECT:
1317 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001318 case BPF_CGROUP_UDP4_SENDMSG:
1319 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001320 return 0;
1321 default:
1322 return -EINVAL;
1323 }
1324 default:
1325 return 0;
1326 }
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001327}
1328
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001329/* last field in 'union bpf_attr' used by this command */
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001330#define BPF_PROG_LOAD_LAST_FIELD expected_attach_type
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001331
1332static int bpf_prog_load(union bpf_attr *attr)
1333{
1334 enum bpf_prog_type type = attr->prog_type;
1335 struct bpf_prog *prog;
1336 int err;
1337 char license[128];
1338 bool is_gpl;
1339
1340 if (CHECK_ATTR(BPF_PROG_LOAD))
1341 return -EINVAL;
1342
David S. Millere07b98d2017-05-10 11:38:07 -07001343 if (attr->prog_flags & ~BPF_F_STRICT_ALIGNMENT)
1344 return -EINVAL;
1345
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001346 /* copy eBPF program license from user space */
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001347 if (strncpy_from_user(license, u64_to_user_ptr(attr->license),
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001348 sizeof(license) - 1) < 0)
1349 return -EFAULT;
1350 license[sizeof(license) - 1] = 0;
1351
1352 /* eBPF programs must be GPL compatible to use GPL-ed functions */
1353 is_gpl = license_is_gpl_compatible(license);
1354
Daniel Borkmannef0915c2016-12-07 01:15:44 +01001355 if (attr->insn_cnt == 0 || attr->insn_cnt > BPF_MAXINSNS)
1356 return -E2BIG;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001357
Alexei Starovoitov25415172015-03-25 12:49:20 -07001358 if (type == BPF_PROG_TYPE_KPROBE &&
1359 attr->kern_version != LINUX_VERSION_CODE)
1360 return -EINVAL;
1361
Chenbo Feng80b7d812017-05-31 18:16:00 -07001362 if (type != BPF_PROG_TYPE_SOCKET_FILTER &&
1363 type != BPF_PROG_TYPE_CGROUP_SKB &&
1364 !capable(CAP_SYS_ADMIN))
Alexei Starovoitov1be7f752015-10-07 22:23:21 -07001365 return -EPERM;
1366
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001367 bpf_prog_load_fixup_attach_type(attr);
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001368 if (bpf_prog_load_check_attach_type(type, attr->expected_attach_type))
1369 return -EINVAL;
1370
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001371 /* plain bpf_prog allocation */
1372 prog = bpf_prog_alloc(bpf_prog_size(attr->insn_cnt), GFP_USER);
1373 if (!prog)
1374 return -ENOMEM;
1375
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001376 prog->expected_attach_type = attr->expected_attach_type;
1377
Jakub Kicinski9a18eed2017-12-27 18:39:04 -08001378 prog->aux->offload_requested = !!attr->prog_ifindex;
1379
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001380 err = security_bpf_prog_alloc(prog->aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001381 if (err)
1382 goto free_prog_nouncharge;
1383
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001384 err = bpf_prog_charge_memlock(prog);
1385 if (err)
1386 goto free_prog_sec;
1387
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001388 prog->len = attr->insn_cnt;
1389
1390 err = -EFAULT;
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001391 if (copy_from_user(prog->insns, u64_to_user_ptr(attr->insns),
Daniel Borkmannaafe6ae2016-12-18 01:52:57 +01001392 bpf_prog_insn_size(prog)) != 0)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001393 goto free_prog;
1394
1395 prog->orig_prog = NULL;
Daniel Borkmanna91263d2015-09-30 01:41:50 +02001396 prog->jited = 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001397
1398 atomic_set(&prog->aux->refcnt, 1);
Daniel Borkmanna91263d2015-09-30 01:41:50 +02001399 prog->gpl_compatible = is_gpl ? 1 : 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001400
Jakub Kicinski9a18eed2017-12-27 18:39:04 -08001401 if (bpf_prog_is_dev_bound(prog->aux)) {
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07001402 err = bpf_prog_offload_init(prog, attr);
1403 if (err)
1404 goto free_prog;
1405 }
1406
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001407 /* find program type: socket_filter vs tracing_filter */
1408 err = find_prog_type(type, prog);
1409 if (err < 0)
1410 goto free_prog;
1411
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001412 prog->aux->load_time = ktime_get_boot_ns();
1413 err = bpf_obj_name_cpy(prog->aux->name, attr->prog_name);
1414 if (err)
1415 goto free_prog;
1416
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001417 /* run eBPF verifier */
Alexei Starovoitov9bac3d62015-03-13 11:57:42 -07001418 err = bpf_check(&prog, attr);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001419 if (err < 0)
1420 goto free_used_maps;
1421
Daniel Borkmann9facc332018-06-15 02:30:48 +02001422 prog = bpf_prog_select_runtime(prog, &err);
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001423 if (err < 0)
1424 goto free_used_maps;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001425
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001426 err = bpf_prog_alloc_id(prog);
1427 if (err)
1428 goto free_used_maps;
1429
Daniel Borkmannaa797812015-10-29 14:58:06 +01001430 err = bpf_prog_new_fd(prog);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001431 if (err < 0) {
1432 /* failed to allocate fd.
1433 * bpf_prog_put() is needed because the above
1434 * bpf_prog_alloc_id() has published the prog
1435 * to the userspace and the userspace may
1436 * have refcnt-ed it through BPF_PROG_GET_FD_BY_ID.
1437 */
1438 bpf_prog_put(prog);
1439 return err;
1440 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001441
Daniel Borkmann74451e662017-02-16 22:24:50 +01001442 bpf_prog_kallsyms_add(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001443 return err;
1444
1445free_used_maps:
Daniel Borkmann7d1982b2018-06-15 02:30:47 +02001446 bpf_prog_kallsyms_del_subprogs(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001447 free_used_maps(prog->aux);
1448free_prog:
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001449 bpf_prog_uncharge_memlock(prog);
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001450free_prog_sec:
1451 security_bpf_prog_free(prog->aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001452free_prog_nouncharge:
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001453 bpf_prog_free(prog);
1454 return err;
1455}
1456
Chenbo Feng6e71b042017-10-18 13:00:22 -07001457#define BPF_OBJ_LAST_FIELD file_flags
Daniel Borkmannb2197752015-10-29 14:58:09 +01001458
1459static int bpf_obj_pin(const union bpf_attr *attr)
1460{
Chenbo Feng6e71b042017-10-18 13:00:22 -07001461 if (CHECK_ATTR(BPF_OBJ) || attr->file_flags != 0)
Daniel Borkmannb2197752015-10-29 14:58:09 +01001462 return -EINVAL;
1463
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001464 return bpf_obj_pin_user(attr->bpf_fd, u64_to_user_ptr(attr->pathname));
Daniel Borkmannb2197752015-10-29 14:58:09 +01001465}
1466
1467static int bpf_obj_get(const union bpf_attr *attr)
1468{
Chenbo Feng6e71b042017-10-18 13:00:22 -07001469 if (CHECK_ATTR(BPF_OBJ) || attr->bpf_fd != 0 ||
1470 attr->file_flags & ~BPF_OBJ_FLAG_MASK)
Daniel Borkmannb2197752015-10-29 14:58:09 +01001471 return -EINVAL;
1472
Chenbo Feng6e71b042017-10-18 13:00:22 -07001473 return bpf_obj_get_user(u64_to_user_ptr(attr->pathname),
1474 attr->file_flags);
Daniel Borkmannb2197752015-10-29 14:58:09 +01001475}
1476
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001477struct bpf_raw_tracepoint {
1478 struct bpf_raw_event_map *btp;
1479 struct bpf_prog *prog;
1480};
1481
1482static int bpf_raw_tracepoint_release(struct inode *inode, struct file *filp)
1483{
1484 struct bpf_raw_tracepoint *raw_tp = filp->private_data;
1485
1486 if (raw_tp->prog) {
1487 bpf_probe_unregister(raw_tp->btp, raw_tp->prog);
1488 bpf_prog_put(raw_tp->prog);
1489 }
1490 kfree(raw_tp);
1491 return 0;
1492}
1493
1494static const struct file_operations bpf_raw_tp_fops = {
1495 .release = bpf_raw_tracepoint_release,
1496 .read = bpf_dummy_read,
1497 .write = bpf_dummy_write,
1498};
1499
1500#define BPF_RAW_TRACEPOINT_OPEN_LAST_FIELD raw_tracepoint.prog_fd
1501
1502static int bpf_raw_tracepoint_open(const union bpf_attr *attr)
1503{
1504 struct bpf_raw_tracepoint *raw_tp;
1505 struct bpf_raw_event_map *btp;
1506 struct bpf_prog *prog;
1507 char tp_name[128];
1508 int tp_fd, err;
1509
1510 if (strncpy_from_user(tp_name, u64_to_user_ptr(attr->raw_tracepoint.name),
1511 sizeof(tp_name) - 1) < 0)
1512 return -EFAULT;
1513 tp_name[sizeof(tp_name) - 1] = 0;
1514
1515 btp = bpf_find_raw_tracepoint(tp_name);
1516 if (!btp)
1517 return -ENOENT;
1518
1519 raw_tp = kzalloc(sizeof(*raw_tp), GFP_USER);
1520 if (!raw_tp)
1521 return -ENOMEM;
1522 raw_tp->btp = btp;
1523
1524 prog = bpf_prog_get_type(attr->raw_tracepoint.prog_fd,
1525 BPF_PROG_TYPE_RAW_TRACEPOINT);
1526 if (IS_ERR(prog)) {
1527 err = PTR_ERR(prog);
1528 goto out_free_tp;
1529 }
1530
1531 err = bpf_probe_register(raw_tp->btp, prog);
1532 if (err)
1533 goto out_put_prog;
1534
1535 raw_tp->prog = prog;
1536 tp_fd = anon_inode_getfd("bpf-raw-tracepoint", &bpf_raw_tp_fops, raw_tp,
1537 O_CLOEXEC);
1538 if (tp_fd < 0) {
1539 bpf_probe_unregister(raw_tp->btp, prog);
1540 err = tp_fd;
1541 goto out_put_prog;
1542 }
1543 return tp_fd;
1544
1545out_put_prog:
1546 bpf_prog_put(prog);
1547out_free_tp:
1548 kfree(raw_tp);
1549 return err;
1550}
1551
Anders Roxell33491582018-04-03 14:09:47 +02001552static int bpf_prog_attach_check_attach_type(const struct bpf_prog *prog,
1553 enum bpf_attach_type attach_type)
1554{
1555 switch (prog->type) {
1556 case BPF_PROG_TYPE_CGROUP_SOCK:
1557 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
1558 return attach_type == prog->expected_attach_type ? 0 : -EINVAL;
1559 default:
1560 return 0;
1561 }
1562}
1563
John Fastabend464bc0f2017-08-28 07:10:04 -07001564#define BPF_PROG_ATTACH_LAST_FIELD attach_flags
John Fastabend174a79f2017-08-15 22:32:47 -07001565
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001566#define BPF_F_ATTACH_MASK \
1567 (BPF_F_ALLOW_OVERRIDE | BPF_F_ALLOW_MULTI)
1568
Daniel Mackf4324552016-11-23 16:52:27 +01001569static int bpf_prog_attach(const union bpf_attr *attr)
1570{
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001571 enum bpf_prog_type ptype;
Daniel Mackf4324552016-11-23 16:52:27 +01001572 struct bpf_prog *prog;
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001573 int ret;
Daniel Mackf4324552016-11-23 16:52:27 +01001574
1575 if (!capable(CAP_NET_ADMIN))
1576 return -EPERM;
1577
1578 if (CHECK_ATTR(BPF_PROG_ATTACH))
1579 return -EINVAL;
1580
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001581 if (attr->attach_flags & ~BPF_F_ATTACH_MASK)
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001582 return -EINVAL;
1583
Daniel Mackf4324552016-11-23 16:52:27 +01001584 switch (attr->attach_type) {
1585 case BPF_CGROUP_INET_INGRESS:
1586 case BPF_CGROUP_INET_EGRESS:
David Ahernb2cd1252016-12-01 08:48:03 -08001587 ptype = BPF_PROG_TYPE_CGROUP_SKB;
Daniel Mackf4324552016-11-23 16:52:27 +01001588 break;
David Ahern610236582016-12-01 08:48:04 -08001589 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001590 case BPF_CGROUP_INET4_POST_BIND:
1591 case BPF_CGROUP_INET6_POST_BIND:
David Ahern610236582016-12-01 08:48:04 -08001592 ptype = BPF_PROG_TYPE_CGROUP_SOCK;
1593 break;
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001594 case BPF_CGROUP_INET4_BIND:
1595 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001596 case BPF_CGROUP_INET4_CONNECT:
1597 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001598 case BPF_CGROUP_UDP4_SENDMSG:
1599 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001600 ptype = BPF_PROG_TYPE_CGROUP_SOCK_ADDR;
1601 break;
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001602 case BPF_CGROUP_SOCK_OPS:
1603 ptype = BPF_PROG_TYPE_SOCK_OPS;
1604 break;
Roman Gushchinebc614f2017-11-05 08:15:32 -05001605 case BPF_CGROUP_DEVICE:
1606 ptype = BPF_PROG_TYPE_CGROUP_DEVICE;
1607 break;
John Fastabend4f738ad2018-03-18 12:57:10 -07001608 case BPF_SK_MSG_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001609 ptype = BPF_PROG_TYPE_SK_MSG;
1610 break;
John Fastabend464bc0f2017-08-28 07:10:04 -07001611 case BPF_SK_SKB_STREAM_PARSER:
1612 case BPF_SK_SKB_STREAM_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001613 ptype = BPF_PROG_TYPE_SK_SKB;
1614 break;
Sean Youngf4364dc2018-05-27 12:24:09 +01001615 case BPF_LIRC_MODE2:
Sean Youngfdb5c452018-06-19 00:04:24 +01001616 ptype = BPF_PROG_TYPE_LIRC_MODE2;
1617 break;
Petar Penkovd58e4682018-09-14 07:46:18 -07001618 case BPF_FLOW_DISSECTOR:
1619 ptype = BPF_PROG_TYPE_FLOW_DISSECTOR;
1620 break;
Daniel Mackf4324552016-11-23 16:52:27 +01001621 default:
1622 return -EINVAL;
1623 }
1624
David Ahernb2cd1252016-12-01 08:48:03 -08001625 prog = bpf_prog_get_type(attr->attach_bpf_fd, ptype);
1626 if (IS_ERR(prog))
1627 return PTR_ERR(prog);
1628
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001629 if (bpf_prog_attach_check_attach_type(prog, attr->attach_type)) {
1630 bpf_prog_put(prog);
1631 return -EINVAL;
1632 }
1633
Sean Youngfdb5c452018-06-19 00:04:24 +01001634 switch (ptype) {
1635 case BPF_PROG_TYPE_SK_SKB:
1636 case BPF_PROG_TYPE_SK_MSG:
1637 ret = sockmap_get_from_fd(attr, ptype, prog);
1638 break;
1639 case BPF_PROG_TYPE_LIRC_MODE2:
1640 ret = lirc_prog_attach(attr, prog);
1641 break;
Petar Penkovd58e4682018-09-14 07:46:18 -07001642 case BPF_PROG_TYPE_FLOW_DISSECTOR:
1643 ret = skb_flow_dissector_bpf_prog_attach(attr, prog);
1644 break;
Sean Youngfdb5c452018-06-19 00:04:24 +01001645 default:
1646 ret = cgroup_bpf_prog_attach(attr, ptype, prog);
David Ahernb2cd1252016-12-01 08:48:03 -08001647 }
1648
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001649 if (ret)
1650 bpf_prog_put(prog);
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001651 return ret;
Daniel Mackf4324552016-11-23 16:52:27 +01001652}
1653
1654#define BPF_PROG_DETACH_LAST_FIELD attach_type
1655
1656static int bpf_prog_detach(const union bpf_attr *attr)
1657{
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001658 enum bpf_prog_type ptype;
Daniel Mackf4324552016-11-23 16:52:27 +01001659
1660 if (!capable(CAP_NET_ADMIN))
1661 return -EPERM;
1662
1663 if (CHECK_ATTR(BPF_PROG_DETACH))
1664 return -EINVAL;
1665
1666 switch (attr->attach_type) {
1667 case BPF_CGROUP_INET_INGRESS:
1668 case BPF_CGROUP_INET_EGRESS:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001669 ptype = BPF_PROG_TYPE_CGROUP_SKB;
1670 break;
David Ahern610236582016-12-01 08:48:04 -08001671 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001672 case BPF_CGROUP_INET4_POST_BIND:
1673 case BPF_CGROUP_INET6_POST_BIND:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001674 ptype = BPF_PROG_TYPE_CGROUP_SOCK;
1675 break;
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001676 case BPF_CGROUP_INET4_BIND:
1677 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001678 case BPF_CGROUP_INET4_CONNECT:
1679 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001680 case BPF_CGROUP_UDP4_SENDMSG:
1681 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001682 ptype = BPF_PROG_TYPE_CGROUP_SOCK_ADDR;
1683 break;
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001684 case BPF_CGROUP_SOCK_OPS:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001685 ptype = BPF_PROG_TYPE_SOCK_OPS;
Daniel Mackf4324552016-11-23 16:52:27 +01001686 break;
Roman Gushchinebc614f2017-11-05 08:15:32 -05001687 case BPF_CGROUP_DEVICE:
1688 ptype = BPF_PROG_TYPE_CGROUP_DEVICE;
1689 break;
John Fastabend4f738ad2018-03-18 12:57:10 -07001690 case BPF_SK_MSG_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001691 return sockmap_get_from_fd(attr, BPF_PROG_TYPE_SK_MSG, NULL);
John Fastabend5a67da22017-09-08 14:00:49 -07001692 case BPF_SK_SKB_STREAM_PARSER:
1693 case BPF_SK_SKB_STREAM_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001694 return sockmap_get_from_fd(attr, BPF_PROG_TYPE_SK_SKB, NULL);
Sean Youngf4364dc2018-05-27 12:24:09 +01001695 case BPF_LIRC_MODE2:
1696 return lirc_prog_detach(attr);
Petar Penkovd58e4682018-09-14 07:46:18 -07001697 case BPF_FLOW_DISSECTOR:
1698 return skb_flow_dissector_bpf_prog_detach(attr);
Daniel Mackf4324552016-11-23 16:52:27 +01001699 default:
1700 return -EINVAL;
1701 }
1702
Sean Youngfdb5c452018-06-19 00:04:24 +01001703 return cgroup_bpf_prog_detach(attr, ptype);
Daniel Mackf4324552016-11-23 16:52:27 +01001704}
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001705
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001706#define BPF_PROG_QUERY_LAST_FIELD query.prog_cnt
1707
1708static int bpf_prog_query(const union bpf_attr *attr,
1709 union bpf_attr __user *uattr)
1710{
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001711 if (!capable(CAP_NET_ADMIN))
1712 return -EPERM;
1713 if (CHECK_ATTR(BPF_PROG_QUERY))
1714 return -EINVAL;
1715 if (attr->query.query_flags & ~BPF_F_QUERY_EFFECTIVE)
1716 return -EINVAL;
1717
1718 switch (attr->query.attach_type) {
1719 case BPF_CGROUP_INET_INGRESS:
1720 case BPF_CGROUP_INET_EGRESS:
1721 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001722 case BPF_CGROUP_INET4_BIND:
1723 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001724 case BPF_CGROUP_INET4_POST_BIND:
1725 case BPF_CGROUP_INET6_POST_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001726 case BPF_CGROUP_INET4_CONNECT:
1727 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001728 case BPF_CGROUP_UDP4_SENDMSG:
1729 case BPF_CGROUP_UDP6_SENDMSG:
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001730 case BPF_CGROUP_SOCK_OPS:
Roman Gushchinebc614f2017-11-05 08:15:32 -05001731 case BPF_CGROUP_DEVICE:
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001732 break;
Sean Youngf4364dc2018-05-27 12:24:09 +01001733 case BPF_LIRC_MODE2:
1734 return lirc_prog_query(attr, uattr);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001735 default:
1736 return -EINVAL;
1737 }
Sean Youngfdb5c452018-06-19 00:04:24 +01001738
1739 return cgroup_bpf_prog_query(attr, uattr);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001740}
Daniel Mackf4324552016-11-23 16:52:27 +01001741
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07001742#define BPF_PROG_TEST_RUN_LAST_FIELD test.duration
1743
1744static int bpf_prog_test_run(const union bpf_attr *attr,
1745 union bpf_attr __user *uattr)
1746{
1747 struct bpf_prog *prog;
1748 int ret = -ENOTSUPP;
1749
Alexei Starovoitov61f3c962018-01-17 16:52:02 -08001750 if (!capable(CAP_SYS_ADMIN))
1751 return -EPERM;
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07001752 if (CHECK_ATTR(BPF_PROG_TEST_RUN))
1753 return -EINVAL;
1754
1755 prog = bpf_prog_get(attr->test.prog_fd);
1756 if (IS_ERR(prog))
1757 return PTR_ERR(prog);
1758
1759 if (prog->aux->ops->test_run)
1760 ret = prog->aux->ops->test_run(prog, attr, uattr);
1761
1762 bpf_prog_put(prog);
1763 return ret;
1764}
1765
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07001766#define BPF_OBJ_GET_NEXT_ID_LAST_FIELD next_id
1767
1768static int bpf_obj_get_next_id(const union bpf_attr *attr,
1769 union bpf_attr __user *uattr,
1770 struct idr *idr,
1771 spinlock_t *lock)
1772{
1773 u32 next_id = attr->start_id;
1774 int err = 0;
1775
1776 if (CHECK_ATTR(BPF_OBJ_GET_NEXT_ID) || next_id >= INT_MAX)
1777 return -EINVAL;
1778
1779 if (!capable(CAP_SYS_ADMIN))
1780 return -EPERM;
1781
1782 next_id++;
1783 spin_lock_bh(lock);
1784 if (!idr_get_next(idr, &next_id))
1785 err = -ENOENT;
1786 spin_unlock_bh(lock);
1787
1788 if (!err)
1789 err = put_user(next_id, &uattr->next_id);
1790
1791 return err;
1792}
1793
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001794#define BPF_PROG_GET_FD_BY_ID_LAST_FIELD prog_id
1795
1796static int bpf_prog_get_fd_by_id(const union bpf_attr *attr)
1797{
1798 struct bpf_prog *prog;
1799 u32 id = attr->prog_id;
1800 int fd;
1801
1802 if (CHECK_ATTR(BPF_PROG_GET_FD_BY_ID))
1803 return -EINVAL;
1804
1805 if (!capable(CAP_SYS_ADMIN))
1806 return -EPERM;
1807
1808 spin_lock_bh(&prog_idr_lock);
1809 prog = idr_find(&prog_idr, id);
1810 if (prog)
1811 prog = bpf_prog_inc_not_zero(prog);
1812 else
1813 prog = ERR_PTR(-ENOENT);
1814 spin_unlock_bh(&prog_idr_lock);
1815
1816 if (IS_ERR(prog))
1817 return PTR_ERR(prog);
1818
1819 fd = bpf_prog_new_fd(prog);
1820 if (fd < 0)
1821 bpf_prog_put(prog);
1822
1823 return fd;
1824}
1825
Chenbo Feng6e71b042017-10-18 13:00:22 -07001826#define BPF_MAP_GET_FD_BY_ID_LAST_FIELD open_flags
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001827
1828static int bpf_map_get_fd_by_id(const union bpf_attr *attr)
1829{
1830 struct bpf_map *map;
1831 u32 id = attr->map_id;
Chenbo Feng6e71b042017-10-18 13:00:22 -07001832 int f_flags;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001833 int fd;
1834
Chenbo Feng6e71b042017-10-18 13:00:22 -07001835 if (CHECK_ATTR(BPF_MAP_GET_FD_BY_ID) ||
1836 attr->open_flags & ~BPF_OBJ_FLAG_MASK)
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001837 return -EINVAL;
1838
1839 if (!capable(CAP_SYS_ADMIN))
1840 return -EPERM;
1841
Chenbo Feng6e71b042017-10-18 13:00:22 -07001842 f_flags = bpf_get_file_flag(attr->open_flags);
1843 if (f_flags < 0)
1844 return f_flags;
1845
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001846 spin_lock_bh(&map_idr_lock);
1847 map = idr_find(&map_idr, id);
1848 if (map)
1849 map = bpf_map_inc_not_zero(map, true);
1850 else
1851 map = ERR_PTR(-ENOENT);
1852 spin_unlock_bh(&map_idr_lock);
1853
1854 if (IS_ERR(map))
1855 return PTR_ERR(map);
1856
Chenbo Feng6e71b042017-10-18 13:00:22 -07001857 fd = bpf_map_new_fd(map, f_flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001858 if (fd < 0)
1859 bpf_map_put(map);
1860
1861 return fd;
1862}
1863
Daniel Borkmann7105e822017-12-20 13:42:57 +01001864static const struct bpf_map *bpf_map_from_imm(const struct bpf_prog *prog,
1865 unsigned long addr)
1866{
1867 int i;
1868
1869 for (i = 0; i < prog->aux->used_map_cnt; i++)
1870 if (prog->aux->used_maps[i] == (void *)addr)
1871 return prog->aux->used_maps[i];
1872 return NULL;
1873}
1874
1875static struct bpf_insn *bpf_insn_prepare_dump(const struct bpf_prog *prog)
1876{
1877 const struct bpf_map *map;
1878 struct bpf_insn *insns;
1879 u64 imm;
1880 int i;
1881
1882 insns = kmemdup(prog->insnsi, bpf_prog_insn_size(prog),
1883 GFP_USER);
1884 if (!insns)
1885 return insns;
1886
1887 for (i = 0; i < prog->len; i++) {
1888 if (insns[i].code == (BPF_JMP | BPF_TAIL_CALL)) {
1889 insns[i].code = BPF_JMP | BPF_CALL;
1890 insns[i].imm = BPF_FUNC_tail_call;
1891 /* fall-through */
1892 }
1893 if (insns[i].code == (BPF_JMP | BPF_CALL) ||
1894 insns[i].code == (BPF_JMP | BPF_CALL_ARGS)) {
1895 if (insns[i].code == (BPF_JMP | BPF_CALL_ARGS))
1896 insns[i].code = BPF_JMP | BPF_CALL;
1897 if (!bpf_dump_raw_ok())
1898 insns[i].imm = 0;
1899 continue;
1900 }
1901
1902 if (insns[i].code != (BPF_LD | BPF_IMM | BPF_DW))
1903 continue;
1904
1905 imm = ((u64)insns[i + 1].imm << 32) | (u32)insns[i].imm;
1906 map = bpf_map_from_imm(prog, imm);
1907 if (map) {
1908 insns[i].src_reg = BPF_PSEUDO_MAP_FD;
1909 insns[i].imm = map->id;
1910 insns[i + 1].imm = 0;
1911 continue;
1912 }
1913
1914 if (!bpf_dump_raw_ok() &&
1915 imm == (unsigned long)prog->aux) {
1916 insns[i].imm = 0;
1917 insns[i + 1].imm = 0;
1918 continue;
1919 }
1920 }
1921
1922 return insns;
1923}
1924
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001925static int bpf_prog_get_info_by_fd(struct bpf_prog *prog,
1926 const union bpf_attr *attr,
1927 union bpf_attr __user *uattr)
1928{
1929 struct bpf_prog_info __user *uinfo = u64_to_user_ptr(attr->info.info);
1930 struct bpf_prog_info info = {};
1931 u32 info_len = attr->info.info_len;
1932 char __user *uinsns;
1933 u32 ulen;
1934 int err;
1935
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07001936 err = bpf_check_uarg_tail_zero(uinfo, sizeof(info), info_len);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001937 if (err)
1938 return err;
1939 info_len = min_t(u32, sizeof(info), info_len);
1940
1941 if (copy_from_user(&info, uinfo, info_len))
Daniel Borkmann89b09682017-07-27 21:02:46 +02001942 return -EFAULT;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001943
1944 info.type = prog->type;
1945 info.id = prog->aux->id;
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001946 info.load_time = prog->aux->load_time;
1947 info.created_by_uid = from_kuid_munged(current_user_ns(),
1948 prog->aux->user->uid);
Jiri Olsab85fab02018-04-25 19:41:06 +02001949 info.gpl_compatible = prog->gpl_compatible;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001950
1951 memcpy(info.tag, prog->tag, sizeof(prog->tag));
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001952 memcpy(info.name, prog->aux->name, sizeof(prog->aux->name));
1953
1954 ulen = info.nr_map_ids;
1955 info.nr_map_ids = prog->aux->used_map_cnt;
1956 ulen = min_t(u32, info.nr_map_ids, ulen);
1957 if (ulen) {
Martin KaFai Lau721e08d2017-09-29 10:52:17 -07001958 u32 __user *user_map_ids = u64_to_user_ptr(info.map_ids);
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001959 u32 i;
1960
1961 for (i = 0; i < ulen; i++)
1962 if (put_user(prog->aux->used_maps[i]->id,
1963 &user_map_ids[i]))
1964 return -EFAULT;
1965 }
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001966
1967 if (!capable(CAP_SYS_ADMIN)) {
1968 info.jited_prog_len = 0;
1969 info.xlated_prog_len = 0;
Sandipan Dasdbecd732018-05-24 12:26:48 +05301970 info.nr_jited_ksyms = 0;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001971 goto done;
1972 }
1973
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001974 ulen = info.xlated_prog_len;
Daniel Borkmann9975a542017-07-28 17:05:25 +02001975 info.xlated_prog_len = bpf_prog_insn_size(prog);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001976 if (info.xlated_prog_len && ulen) {
Daniel Borkmann7105e822017-12-20 13:42:57 +01001977 struct bpf_insn *insns_sanitized;
1978 bool fault;
1979
1980 if (prog->blinded && !bpf_dump_raw_ok()) {
1981 info.xlated_prog_insns = 0;
1982 goto done;
1983 }
1984 insns_sanitized = bpf_insn_prepare_dump(prog);
1985 if (!insns_sanitized)
1986 return -ENOMEM;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001987 uinsns = u64_to_user_ptr(info.xlated_prog_insns);
1988 ulen = min_t(u32, info.xlated_prog_len, ulen);
Daniel Borkmann7105e822017-12-20 13:42:57 +01001989 fault = copy_to_user(uinsns, insns_sanitized, ulen);
1990 kfree(insns_sanitized);
1991 if (fault)
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001992 return -EFAULT;
1993 }
1994
Jakub Kicinski675fc272017-12-27 18:39:09 -08001995 if (bpf_prog_is_dev_bound(prog->aux)) {
1996 err = bpf_prog_offload_info_fill(&info, prog);
1997 if (err)
1998 return err;
Jiong Wangfcfb1262018-01-16 16:05:19 -08001999 goto done;
2000 }
2001
2002 /* NOTE: the following code is supposed to be skipped for offload.
2003 * bpf_prog_offload_info_fill() is the place to fill similar fields
2004 * for offload.
2005 */
2006 ulen = info.jited_prog_len;
Sandipan Das4d56a762018-05-24 12:26:51 +05302007 if (prog->aux->func_cnt) {
2008 u32 i;
2009
2010 info.jited_prog_len = 0;
2011 for (i = 0; i < prog->aux->func_cnt; i++)
2012 info.jited_prog_len += prog->aux->func[i]->jited_len;
2013 } else {
2014 info.jited_prog_len = prog->jited_len;
2015 }
2016
Jiong Wangfcfb1262018-01-16 16:05:19 -08002017 if (info.jited_prog_len && ulen) {
2018 if (bpf_dump_raw_ok()) {
2019 uinsns = u64_to_user_ptr(info.jited_prog_insns);
2020 ulen = min_t(u32, info.jited_prog_len, ulen);
Sandipan Das4d56a762018-05-24 12:26:51 +05302021
2022 /* for multi-function programs, copy the JITed
2023 * instructions for all the functions
2024 */
2025 if (prog->aux->func_cnt) {
2026 u32 len, free, i;
2027 u8 *img;
2028
2029 free = ulen;
2030 for (i = 0; i < prog->aux->func_cnt; i++) {
2031 len = prog->aux->func[i]->jited_len;
2032 len = min_t(u32, len, free);
2033 img = (u8 *) prog->aux->func[i]->bpf_func;
2034 if (copy_to_user(uinsns, img, len))
2035 return -EFAULT;
2036 uinsns += len;
2037 free -= len;
2038 if (!free)
2039 break;
2040 }
2041 } else {
2042 if (copy_to_user(uinsns, prog->bpf_func, ulen))
2043 return -EFAULT;
2044 }
Jiong Wangfcfb1262018-01-16 16:05:19 -08002045 } else {
2046 info.jited_prog_insns = 0;
2047 }
Jakub Kicinski675fc272017-12-27 18:39:09 -08002048 }
2049
Sandipan Dasdbecd732018-05-24 12:26:48 +05302050 ulen = info.nr_jited_ksyms;
2051 info.nr_jited_ksyms = prog->aux->func_cnt;
2052 if (info.nr_jited_ksyms && ulen) {
2053 if (bpf_dump_raw_ok()) {
2054 u64 __user *user_ksyms;
2055 ulong ksym_addr;
2056 u32 i;
2057
2058 /* copy the address of the kernel symbol
2059 * corresponding to each function
2060 */
2061 ulen = min_t(u32, info.nr_jited_ksyms, ulen);
2062 user_ksyms = u64_to_user_ptr(info.jited_ksyms);
2063 for (i = 0; i < ulen; i++) {
2064 ksym_addr = (ulong) prog->aux->func[i]->bpf_func;
2065 ksym_addr &= PAGE_MASK;
2066 if (put_user((u64) ksym_addr, &user_ksyms[i]))
2067 return -EFAULT;
2068 }
2069 } else {
2070 info.jited_ksyms = 0;
2071 }
2072 }
2073
Sandipan Das815581c2018-05-24 12:26:52 +05302074 ulen = info.nr_jited_func_lens;
2075 info.nr_jited_func_lens = prog->aux->func_cnt;
2076 if (info.nr_jited_func_lens && ulen) {
2077 if (bpf_dump_raw_ok()) {
2078 u32 __user *user_lens;
2079 u32 func_len, i;
2080
2081 /* copy the JITed image lengths for each function */
2082 ulen = min_t(u32, info.nr_jited_func_lens, ulen);
2083 user_lens = u64_to_user_ptr(info.jited_func_lens);
2084 for (i = 0; i < ulen; i++) {
2085 func_len = prog->aux->func[i]->jited_len;
2086 if (put_user(func_len, &user_lens[i]))
2087 return -EFAULT;
2088 }
2089 } else {
2090 info.jited_func_lens = 0;
2091 }
2092 }
2093
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002094done:
2095 if (copy_to_user(uinfo, &info, info_len) ||
2096 put_user(info_len, &uattr->info.info_len))
2097 return -EFAULT;
2098
2099 return 0;
2100}
2101
2102static int bpf_map_get_info_by_fd(struct bpf_map *map,
2103 const union bpf_attr *attr,
2104 union bpf_attr __user *uattr)
2105{
2106 struct bpf_map_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2107 struct bpf_map_info info = {};
2108 u32 info_len = attr->info.info_len;
2109 int err;
2110
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002111 err = bpf_check_uarg_tail_zero(uinfo, sizeof(info), info_len);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002112 if (err)
2113 return err;
2114 info_len = min_t(u32, sizeof(info), info_len);
2115
2116 info.type = map->map_type;
2117 info.id = map->id;
2118 info.key_size = map->key_size;
2119 info.value_size = map->value_size;
2120 info.max_entries = map->max_entries;
2121 info.map_flags = map->map_flags;
Martin KaFai Lauad5b1772017-09-27 14:37:53 -07002122 memcpy(info.name, map->name, sizeof(map->name));
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002123
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002124 if (map->btf) {
2125 info.btf_id = btf_id(map->btf);
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -07002126 info.btf_key_type_id = map->btf_key_type_id;
2127 info.btf_value_type_id = map->btf_value_type_id;
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002128 }
2129
Jakub Kicinski52775b32018-01-17 19:13:28 -08002130 if (bpf_map_is_dev_bound(map)) {
2131 err = bpf_map_offload_info_fill(&info, map);
2132 if (err)
2133 return err;
2134 }
2135
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002136 if (copy_to_user(uinfo, &info, info_len) ||
2137 put_user(info_len, &uattr->info.info_len))
2138 return -EFAULT;
2139
2140 return 0;
2141}
2142
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002143static int bpf_btf_get_info_by_fd(struct btf *btf,
2144 const union bpf_attr *attr,
2145 union bpf_attr __user *uattr)
2146{
2147 struct bpf_btf_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2148 u32 info_len = attr->info.info_len;
2149 int err;
2150
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002151 err = bpf_check_uarg_tail_zero(uinfo, sizeof(*uinfo), info_len);
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002152 if (err)
2153 return err;
2154
2155 return btf_get_info_by_fd(btf, attr, uattr);
2156}
2157
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002158#define BPF_OBJ_GET_INFO_BY_FD_LAST_FIELD info.info
2159
2160static int bpf_obj_get_info_by_fd(const union bpf_attr *attr,
2161 union bpf_attr __user *uattr)
2162{
2163 int ufd = attr->info.bpf_fd;
2164 struct fd f;
2165 int err;
2166
2167 if (CHECK_ATTR(BPF_OBJ_GET_INFO_BY_FD))
2168 return -EINVAL;
2169
2170 f = fdget(ufd);
2171 if (!f.file)
2172 return -EBADFD;
2173
2174 if (f.file->f_op == &bpf_prog_fops)
2175 err = bpf_prog_get_info_by_fd(f.file->private_data, attr,
2176 uattr);
2177 else if (f.file->f_op == &bpf_map_fops)
2178 err = bpf_map_get_info_by_fd(f.file->private_data, attr,
2179 uattr);
Martin KaFai Lau60197cf2018-04-18 15:56:02 -07002180 else if (f.file->f_op == &btf_fops)
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002181 err = bpf_btf_get_info_by_fd(f.file->private_data, attr, uattr);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002182 else
2183 err = -EINVAL;
2184
2185 fdput(f);
2186 return err;
2187}
2188
Martin KaFai Lauf56a6532018-04-18 15:56:01 -07002189#define BPF_BTF_LOAD_LAST_FIELD btf_log_level
2190
2191static int bpf_btf_load(const union bpf_attr *attr)
2192{
2193 if (CHECK_ATTR(BPF_BTF_LOAD))
2194 return -EINVAL;
2195
2196 if (!capable(CAP_SYS_ADMIN))
2197 return -EPERM;
2198
2199 return btf_new_fd(attr);
2200}
2201
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002202#define BPF_BTF_GET_FD_BY_ID_LAST_FIELD btf_id
2203
2204static int bpf_btf_get_fd_by_id(const union bpf_attr *attr)
2205{
2206 if (CHECK_ATTR(BPF_BTF_GET_FD_BY_ID))
2207 return -EINVAL;
2208
2209 if (!capable(CAP_SYS_ADMIN))
2210 return -EPERM;
2211
2212 return btf_get_fd_by_id(attr->btf_id);
2213}
2214
Yonghong Song41bdc4b2018-05-24 11:21:09 -07002215static int bpf_task_fd_query_copy(const union bpf_attr *attr,
2216 union bpf_attr __user *uattr,
2217 u32 prog_id, u32 fd_type,
2218 const char *buf, u64 probe_offset,
2219 u64 probe_addr)
2220{
2221 char __user *ubuf = u64_to_user_ptr(attr->task_fd_query.buf);
2222 u32 len = buf ? strlen(buf) : 0, input_len;
2223 int err = 0;
2224
2225 if (put_user(len, &uattr->task_fd_query.buf_len))
2226 return -EFAULT;
2227 input_len = attr->task_fd_query.buf_len;
2228 if (input_len && ubuf) {
2229 if (!len) {
2230 /* nothing to copy, just make ubuf NULL terminated */
2231 char zero = '\0';
2232
2233 if (put_user(zero, ubuf))
2234 return -EFAULT;
2235 } else if (input_len >= len + 1) {
2236 /* ubuf can hold the string with NULL terminator */
2237 if (copy_to_user(ubuf, buf, len + 1))
2238 return -EFAULT;
2239 } else {
2240 /* ubuf cannot hold the string with NULL terminator,
2241 * do a partial copy with NULL terminator.
2242 */
2243 char zero = '\0';
2244
2245 err = -ENOSPC;
2246 if (copy_to_user(ubuf, buf, input_len - 1))
2247 return -EFAULT;
2248 if (put_user(zero, ubuf + input_len - 1))
2249 return -EFAULT;
2250 }
2251 }
2252
2253 if (put_user(prog_id, &uattr->task_fd_query.prog_id) ||
2254 put_user(fd_type, &uattr->task_fd_query.fd_type) ||
2255 put_user(probe_offset, &uattr->task_fd_query.probe_offset) ||
2256 put_user(probe_addr, &uattr->task_fd_query.probe_addr))
2257 return -EFAULT;
2258
2259 return err;
2260}
2261
2262#define BPF_TASK_FD_QUERY_LAST_FIELD task_fd_query.probe_addr
2263
2264static int bpf_task_fd_query(const union bpf_attr *attr,
2265 union bpf_attr __user *uattr)
2266{
2267 pid_t pid = attr->task_fd_query.pid;
2268 u32 fd = attr->task_fd_query.fd;
2269 const struct perf_event *event;
2270 struct files_struct *files;
2271 struct task_struct *task;
2272 struct file *file;
2273 int err;
2274
2275 if (CHECK_ATTR(BPF_TASK_FD_QUERY))
2276 return -EINVAL;
2277
2278 if (!capable(CAP_SYS_ADMIN))
2279 return -EPERM;
2280
2281 if (attr->task_fd_query.flags != 0)
2282 return -EINVAL;
2283
2284 task = get_pid_task(find_vpid(pid), PIDTYPE_PID);
2285 if (!task)
2286 return -ENOENT;
2287
2288 files = get_files_struct(task);
2289 put_task_struct(task);
2290 if (!files)
2291 return -ENOENT;
2292
2293 err = 0;
2294 spin_lock(&files->file_lock);
2295 file = fcheck_files(files, fd);
2296 if (!file)
2297 err = -EBADF;
2298 else
2299 get_file(file);
2300 spin_unlock(&files->file_lock);
2301 put_files_struct(files);
2302
2303 if (err)
2304 goto out;
2305
2306 if (file->f_op == &bpf_raw_tp_fops) {
2307 struct bpf_raw_tracepoint *raw_tp = file->private_data;
2308 struct bpf_raw_event_map *btp = raw_tp->btp;
2309
2310 err = bpf_task_fd_query_copy(attr, uattr,
2311 raw_tp->prog->aux->id,
2312 BPF_FD_TYPE_RAW_TRACEPOINT,
2313 btp->tp->name, 0, 0);
2314 goto put_file;
2315 }
2316
2317 event = perf_get_event(file);
2318 if (!IS_ERR(event)) {
2319 u64 probe_offset, probe_addr;
2320 u32 prog_id, fd_type;
2321 const char *buf;
2322
2323 err = bpf_get_perf_event_info(event, &prog_id, &fd_type,
2324 &buf, &probe_offset,
2325 &probe_addr);
2326 if (!err)
2327 err = bpf_task_fd_query_copy(attr, uattr, prog_id,
2328 fd_type, buf,
2329 probe_offset,
2330 probe_addr);
2331 goto put_file;
2332 }
2333
2334 err = -ENOTSUPP;
2335put_file:
2336 fput(file);
2337out:
2338 return err;
2339}
2340
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002341SYSCALL_DEFINE3(bpf, int, cmd, union bpf_attr __user *, uattr, unsigned int, size)
2342{
2343 union bpf_attr attr = {};
2344 int err;
2345
Chenbo Feng0fa4fe82018-03-19 17:57:27 -07002346 if (sysctl_unprivileged_bpf_disabled && !capable(CAP_SYS_ADMIN))
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002347 return -EPERM;
2348
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002349 err = bpf_check_uarg_tail_zero(uattr, sizeof(attr), size);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002350 if (err)
2351 return err;
2352 size = min_t(u32, size, sizeof(attr));
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002353
2354 /* copy attributes from user space, may be less than sizeof(bpf_attr) */
2355 if (copy_from_user(&attr, uattr, size) != 0)
2356 return -EFAULT;
2357
Chenbo Fengafdb09c2017-10-18 13:00:24 -07002358 err = security_bpf(cmd, &attr, size);
2359 if (err < 0)
2360 return err;
2361
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002362 switch (cmd) {
2363 case BPF_MAP_CREATE:
2364 err = map_create(&attr);
2365 break;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -07002366 case BPF_MAP_LOOKUP_ELEM:
2367 err = map_lookup_elem(&attr);
2368 break;
2369 case BPF_MAP_UPDATE_ELEM:
2370 err = map_update_elem(&attr);
2371 break;
2372 case BPF_MAP_DELETE_ELEM:
2373 err = map_delete_elem(&attr);
2374 break;
2375 case BPF_MAP_GET_NEXT_KEY:
2376 err = map_get_next_key(&attr);
2377 break;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07002378 case BPF_PROG_LOAD:
2379 err = bpf_prog_load(&attr);
2380 break;
Daniel Borkmannb2197752015-10-29 14:58:09 +01002381 case BPF_OBJ_PIN:
2382 err = bpf_obj_pin(&attr);
2383 break;
2384 case BPF_OBJ_GET:
2385 err = bpf_obj_get(&attr);
2386 break;
Daniel Mackf4324552016-11-23 16:52:27 +01002387 case BPF_PROG_ATTACH:
2388 err = bpf_prog_attach(&attr);
2389 break;
2390 case BPF_PROG_DETACH:
2391 err = bpf_prog_detach(&attr);
2392 break;
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07002393 case BPF_PROG_QUERY:
2394 err = bpf_prog_query(&attr, uattr);
2395 break;
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07002396 case BPF_PROG_TEST_RUN:
2397 err = bpf_prog_test_run(&attr, uattr);
2398 break;
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07002399 case BPF_PROG_GET_NEXT_ID:
2400 err = bpf_obj_get_next_id(&attr, uattr,
2401 &prog_idr, &prog_idr_lock);
2402 break;
2403 case BPF_MAP_GET_NEXT_ID:
2404 err = bpf_obj_get_next_id(&attr, uattr,
2405 &map_idr, &map_idr_lock);
2406 break;
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07002407 case BPF_PROG_GET_FD_BY_ID:
2408 err = bpf_prog_get_fd_by_id(&attr);
2409 break;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07002410 case BPF_MAP_GET_FD_BY_ID:
2411 err = bpf_map_get_fd_by_id(&attr);
2412 break;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002413 case BPF_OBJ_GET_INFO_BY_FD:
2414 err = bpf_obj_get_info_by_fd(&attr, uattr);
2415 break;
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07002416 case BPF_RAW_TRACEPOINT_OPEN:
2417 err = bpf_raw_tracepoint_open(&attr);
2418 break;
Martin KaFai Lauf56a6532018-04-18 15:56:01 -07002419 case BPF_BTF_LOAD:
2420 err = bpf_btf_load(&attr);
2421 break;
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002422 case BPF_BTF_GET_FD_BY_ID:
2423 err = bpf_btf_get_fd_by_id(&attr);
2424 break;
Yonghong Song41bdc4b2018-05-24 11:21:09 -07002425 case BPF_TASK_FD_QUERY:
2426 err = bpf_task_fd_query(&attr, uattr);
2427 break;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002428 default:
2429 err = -EINVAL;
2430 break;
2431 }
2432
2433 return err;
2434}