blob: 78d9dd95e25f6190e12369fcfa00ed3f7eb977b9 [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
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +0200654static void *__bpf_copy_key(void __user *ukey, u64 key_size)
655{
656 if (key_size)
657 return memdup_user(ukey, key_size);
658
659 if (ukey)
660 return ERR_PTR(-EINVAL);
661
662 return NULL;
663}
664
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700665/* last field in 'union bpf_attr' used by this command */
666#define BPF_MAP_LOOKUP_ELEM_LAST_FIELD value
667
668static int map_lookup_elem(union bpf_attr *attr)
669{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100670 void __user *ukey = u64_to_user_ptr(attr->key);
671 void __user *uvalue = u64_to_user_ptr(attr->value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700672 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700673 struct bpf_map *map;
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800674 void *key, *value, *ptr;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800675 u32 value_size;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200676 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700677 int err;
678
679 if (CHECK_ATTR(BPF_MAP_LOOKUP_ELEM))
680 return -EINVAL;
681
Daniel Borkmann592867b2015-09-08 18:00:09 +0200682 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100683 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700684 if (IS_ERR(map))
685 return PTR_ERR(map);
686
Chenbo Feng6e71b042017-10-18 13:00:22 -0700687 if (!(f.file->f_mode & FMODE_CAN_READ)) {
688 err = -EPERM;
689 goto err_put;
690 }
691
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +0200692 key = __bpf_copy_key(ukey, map->key_size);
Al Viroe4448ed2017-05-13 18:43:00 -0400693 if (IS_ERR(key)) {
694 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700695 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400696 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700697
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800698 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800699 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH ||
Roman Gushchinb741f162018-09-28 14:45:43 +0000700 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY ||
701 map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE)
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800702 value_size = round_up(map->value_size, 8) * num_possible_cpus();
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -0700703 else if (IS_FD_MAP(map))
704 value_size = sizeof(u32);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800705 else
706 value_size = map->value_size;
707
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800708 err = -ENOMEM;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800709 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700710 if (!value)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800711 goto free_key;
712
Jakub Kicinskia3884572018-01-11 20:29:09 -0800713 if (bpf_map_is_dev_bound(map)) {
714 err = bpf_map_offload_lookup_elem(map, key, value);
715 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
716 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) {
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800717 err = bpf_percpu_hash_copy(map, key, value);
718 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) {
719 err = bpf_percpu_array_copy(map, key, value);
Roman Gushchinb741f162018-09-28 14:45:43 +0000720 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) {
721 err = bpf_percpu_cgroup_storage_copy(map, key, value);
Alexei Starovoitov557c0c62016-03-07 21:57:17 -0800722 } else if (map->map_type == BPF_MAP_TYPE_STACK_TRACE) {
723 err = bpf_stackmap_copy(map, key, value);
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -0700724 } else if (IS_FD_ARRAY(map)) {
725 err = bpf_fd_array_map_lookup_elem(map, key, value);
726 } else if (IS_FD_HASH(map)) {
727 err = bpf_fd_htab_map_lookup_elem(map, key, value);
Martin KaFai Lau5dc4c4b2018-08-08 01:01:24 -0700728 } else if (map->map_type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY) {
729 err = bpf_fd_reuseport_array_lookup_elem(map, key, value);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800730 } else {
731 rcu_read_lock();
732 ptr = map->ops->map_lookup_elem(map, key);
Prashant Bhole509db282018-10-09 10:04:49 +0900733 if (IS_ERR(ptr)) {
734 err = PTR_ERR(ptr);
735 } else if (!ptr) {
736 err = -ENOENT;
737 } else {
738 err = 0;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800739 memcpy(value, ptr, value_size);
Prashant Bhole509db282018-10-09 10:04:49 +0900740 }
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800741 rcu_read_unlock();
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800742 }
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800743
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800744 if (err)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800745 goto free_value;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700746
747 err = -EFAULT;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800748 if (copy_to_user(uvalue, value, value_size) != 0)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800749 goto free_value;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700750
751 err = 0;
752
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800753free_value:
754 kfree(value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700755free_key:
756 kfree(key);
757err_put:
758 fdput(f);
759 return err;
760}
761
Daniel Colascione1ae80cf2018-10-12 03:54:27 -0700762static void maybe_wait_bpf_programs(struct bpf_map *map)
763{
764 /* Wait for any running BPF programs to complete so that
765 * userspace, when we return to it, knows that all programs
766 * that could be running use the new map value.
767 */
768 if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS ||
769 map->map_type == BPF_MAP_TYPE_ARRAY_OF_MAPS)
770 synchronize_rcu();
771}
772
Alexei Starovoitov3274f522014-11-13 17:36:44 -0800773#define BPF_MAP_UPDATE_ELEM_LAST_FIELD flags
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700774
775static int map_update_elem(union bpf_attr *attr)
776{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100777 void __user *ukey = u64_to_user_ptr(attr->key);
778 void __user *uvalue = u64_to_user_ptr(attr->value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700779 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700780 struct bpf_map *map;
781 void *key, *value;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800782 u32 value_size;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200783 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700784 int err;
785
786 if (CHECK_ATTR(BPF_MAP_UPDATE_ELEM))
787 return -EINVAL;
788
Daniel Borkmann592867b2015-09-08 18:00:09 +0200789 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100790 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700791 if (IS_ERR(map))
792 return PTR_ERR(map);
793
Chenbo Feng6e71b042017-10-18 13:00:22 -0700794 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
795 err = -EPERM;
796 goto err_put;
797 }
798
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +0200799 key = __bpf_copy_key(ukey, map->key_size);
Al Viroe4448ed2017-05-13 18:43:00 -0400800 if (IS_ERR(key)) {
801 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700802 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400803 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700804
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800805 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800806 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH ||
Roman Gushchinb741f162018-09-28 14:45:43 +0000807 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY ||
808 map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE)
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800809 value_size = round_up(map->value_size, 8) * num_possible_cpus();
810 else
811 value_size = map->value_size;
812
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700813 err = -ENOMEM;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800814 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700815 if (!value)
816 goto free_key;
817
818 err = -EFAULT;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800819 if (copy_from_user(value, uvalue, value_size) != 0)
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700820 goto free_value;
821
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200822 /* Need to create a kthread, thus must support schedule */
Jakub Kicinskia3884572018-01-11 20:29:09 -0800823 if (bpf_map_is_dev_bound(map)) {
824 err = bpf_map_offload_update_elem(map, key, value, attr->flags);
825 goto out;
John Fastabend99ba2b52018-07-05 08:50:04 -0700826 } else if (map->map_type == BPF_MAP_TYPE_CPUMAP ||
827 map->map_type == BPF_MAP_TYPE_SOCKHASH ||
828 map->map_type == BPF_MAP_TYPE_SOCKMAP) {
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200829 err = map->ops->map_update_elem(map, key, value, attr->flags);
830 goto out;
831 }
832
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800833 /* must increment bpf_prog_active to avoid kprobe+bpf triggering from
834 * inside bpf map update or delete otherwise deadlocks are possible
835 */
836 preempt_disable();
837 __this_cpu_inc(bpf_prog_active);
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800838 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
839 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) {
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800840 err = bpf_percpu_hash_update(map, key, value, attr->flags);
841 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) {
842 err = bpf_percpu_array_update(map, key, value, attr->flags);
Roman Gushchinb741f162018-09-28 14:45:43 +0000843 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) {
844 err = bpf_percpu_cgroup_storage_update(map, key, value,
845 attr->flags);
Mickaël Salaün9c147b52018-01-26 00:54:02 +0100846 } else if (IS_FD_ARRAY(map)) {
Daniel Borkmannd056a782016-06-15 22:47:13 +0200847 rcu_read_lock();
848 err = bpf_fd_array_map_update_elem(map, f.file, key, value,
849 attr->flags);
850 rcu_read_unlock();
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700851 } else if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS) {
852 rcu_read_lock();
853 err = bpf_fd_htab_map_update_elem(map, f.file, key, value,
854 attr->flags);
855 rcu_read_unlock();
Martin KaFai Lau5dc4c4b2018-08-08 01:01:24 -0700856 } else if (map->map_type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY) {
857 /* rcu_read_lock() is not needed */
858 err = bpf_fd_reuseport_array_update_elem(map, key, value,
859 attr->flags);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800860 } else {
861 rcu_read_lock();
862 err = map->ops->map_update_elem(map, key, value, attr->flags);
863 rcu_read_unlock();
864 }
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800865 __this_cpu_dec(bpf_prog_active);
866 preempt_enable();
Daniel Colascione1ae80cf2018-10-12 03:54:27 -0700867 maybe_wait_bpf_programs(map);
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200868out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700869free_value:
870 kfree(value);
871free_key:
872 kfree(key);
873err_put:
874 fdput(f);
875 return err;
876}
877
878#define BPF_MAP_DELETE_ELEM_LAST_FIELD key
879
880static int map_delete_elem(union bpf_attr *attr)
881{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100882 void __user *ukey = u64_to_user_ptr(attr->key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700883 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700884 struct bpf_map *map;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200885 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700886 void *key;
887 int err;
888
889 if (CHECK_ATTR(BPF_MAP_DELETE_ELEM))
890 return -EINVAL;
891
Daniel Borkmann592867b2015-09-08 18:00:09 +0200892 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100893 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700894 if (IS_ERR(map))
895 return PTR_ERR(map);
896
Chenbo Feng6e71b042017-10-18 13:00:22 -0700897 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
898 err = -EPERM;
899 goto err_put;
900 }
901
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +0200902 key = __bpf_copy_key(ukey, map->key_size);
Al Viroe4448ed2017-05-13 18:43:00 -0400903 if (IS_ERR(key)) {
904 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700905 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400906 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700907
Jakub Kicinskia3884572018-01-11 20:29:09 -0800908 if (bpf_map_is_dev_bound(map)) {
909 err = bpf_map_offload_delete_elem(map, key);
910 goto out;
911 }
912
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800913 preempt_disable();
914 __this_cpu_inc(bpf_prog_active);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700915 rcu_read_lock();
916 err = map->ops->map_delete_elem(map, key);
917 rcu_read_unlock();
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800918 __this_cpu_dec(bpf_prog_active);
919 preempt_enable();
Daniel Colascione1ae80cf2018-10-12 03:54:27 -0700920 maybe_wait_bpf_programs(map);
Jakub Kicinskia3884572018-01-11 20:29:09 -0800921out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700922 kfree(key);
923err_put:
924 fdput(f);
925 return err;
926}
927
928/* last field in 'union bpf_attr' used by this command */
929#define BPF_MAP_GET_NEXT_KEY_LAST_FIELD next_key
930
931static int map_get_next_key(union bpf_attr *attr)
932{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100933 void __user *ukey = u64_to_user_ptr(attr->key);
934 void __user *unext_key = u64_to_user_ptr(attr->next_key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700935 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700936 struct bpf_map *map;
937 void *key, *next_key;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200938 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700939 int err;
940
941 if (CHECK_ATTR(BPF_MAP_GET_NEXT_KEY))
942 return -EINVAL;
943
Daniel Borkmann592867b2015-09-08 18:00:09 +0200944 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100945 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700946 if (IS_ERR(map))
947 return PTR_ERR(map);
948
Chenbo Feng6e71b042017-10-18 13:00:22 -0700949 if (!(f.file->f_mode & FMODE_CAN_READ)) {
950 err = -EPERM;
951 goto err_put;
952 }
953
Teng Qin8fe45922017-04-24 19:00:37 -0700954 if (ukey) {
Mauricio Vasquez Bc9d29f42018-10-18 15:16:14 +0200955 key = __bpf_copy_key(ukey, map->key_size);
Al Viroe4448ed2017-05-13 18:43:00 -0400956 if (IS_ERR(key)) {
957 err = PTR_ERR(key);
Teng Qin8fe45922017-04-24 19:00:37 -0700958 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400959 }
Teng Qin8fe45922017-04-24 19:00:37 -0700960 } else {
961 key = NULL;
962 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700963
964 err = -ENOMEM;
965 next_key = kmalloc(map->key_size, GFP_USER);
966 if (!next_key)
967 goto free_key;
968
Jakub Kicinskia3884572018-01-11 20:29:09 -0800969 if (bpf_map_is_dev_bound(map)) {
970 err = bpf_map_offload_get_next_key(map, key, next_key);
971 goto out;
972 }
973
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700974 rcu_read_lock();
975 err = map->ops->map_get_next_key(map, key, next_key);
976 rcu_read_unlock();
Jakub Kicinskia3884572018-01-11 20:29:09 -0800977out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700978 if (err)
979 goto free_next_key;
980
981 err = -EFAULT;
982 if (copy_to_user(unext_key, next_key, map->key_size) != 0)
983 goto free_next_key;
984
985 err = 0;
986
987free_next_key:
988 kfree(next_key);
989free_key:
990 kfree(key);
991err_put:
992 fdput(f);
993 return err;
994}
995
Jakub Kicinski7de16e32017-10-16 16:40:53 -0700996static const struct bpf_prog_ops * const bpf_prog_types[] = {
997#define BPF_PROG_TYPE(_id, _name) \
998 [_id] = & _name ## _prog_ops,
999#define BPF_MAP_TYPE(_id, _ops)
1000#include <linux/bpf_types.h>
1001#undef BPF_PROG_TYPE
1002#undef BPF_MAP_TYPE
1003};
1004
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001005static int find_prog_type(enum bpf_prog_type type, struct bpf_prog *prog)
1006{
Daniel Borkmannd0f1a452018-05-04 02:13:57 +02001007 const struct bpf_prog_ops *ops;
1008
1009 if (type >= ARRAY_SIZE(bpf_prog_types))
1010 return -EINVAL;
1011 type = array_index_nospec(type, ARRAY_SIZE(bpf_prog_types));
1012 ops = bpf_prog_types[type];
1013 if (!ops)
Johannes Bergbe9370a2017-04-11 15:34:57 +02001014 return -EINVAL;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001015
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07001016 if (!bpf_prog_is_dev_bound(prog->aux))
Daniel Borkmannd0f1a452018-05-04 02:13:57 +02001017 prog->aux->ops = ops;
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07001018 else
1019 prog->aux->ops = &bpf_offload_prog_ops;
Johannes Bergbe9370a2017-04-11 15:34:57 +02001020 prog->type = type;
1021 return 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001022}
1023
1024/* drop refcnt on maps used by eBPF program and free auxilary data */
1025static void free_used_maps(struct bpf_prog_aux *aux)
1026{
Roman Gushchin8bad74f2018-09-28 14:45:36 +00001027 enum bpf_cgroup_storage_type stype;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001028 int i;
1029
Roman Gushchin8bad74f2018-09-28 14:45:36 +00001030 for_each_cgroup_storage_type(stype) {
1031 if (!aux->cgroup_storage[stype])
1032 continue;
1033 bpf_cgroup_storage_release(aux->prog,
1034 aux->cgroup_storage[stype]);
1035 }
Roman Gushchinde9cbba2018-08-02 14:27:18 -07001036
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001037 for (i = 0; i < aux->used_map_cnt; i++)
1038 bpf_map_put(aux->used_maps[i]);
1039
1040 kfree(aux->used_maps);
1041}
1042
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001043int __bpf_prog_charge(struct user_struct *user, u32 pages)
1044{
1045 unsigned long memlock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1046 unsigned long user_bufs;
1047
1048 if (user) {
1049 user_bufs = atomic_long_add_return(pages, &user->locked_vm);
1050 if (user_bufs > memlock_limit) {
1051 atomic_long_sub(pages, &user->locked_vm);
1052 return -EPERM;
1053 }
1054 }
1055
1056 return 0;
1057}
1058
1059void __bpf_prog_uncharge(struct user_struct *user, u32 pages)
1060{
1061 if (user)
1062 atomic_long_sub(pages, &user->locked_vm);
1063}
1064
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001065static int bpf_prog_charge_memlock(struct bpf_prog *prog)
1066{
1067 struct user_struct *user = get_current_user();
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001068 int ret;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001069
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001070 ret = __bpf_prog_charge(user, prog->pages);
1071 if (ret) {
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001072 free_uid(user);
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001073 return ret;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001074 }
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001075
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001076 prog->aux->user = user;
1077 return 0;
1078}
1079
1080static void bpf_prog_uncharge_memlock(struct bpf_prog *prog)
1081{
1082 struct user_struct *user = prog->aux->user;
1083
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001084 __bpf_prog_uncharge(user, prog->pages);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001085 free_uid(user);
1086}
1087
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001088static int bpf_prog_alloc_id(struct bpf_prog *prog)
1089{
1090 int id;
1091
Shaohua Lib76354c2018-03-27 11:53:21 -07001092 idr_preload(GFP_KERNEL);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001093 spin_lock_bh(&prog_idr_lock);
1094 id = idr_alloc_cyclic(&prog_idr, prog, 1, INT_MAX, GFP_ATOMIC);
1095 if (id > 0)
1096 prog->aux->id = id;
1097 spin_unlock_bh(&prog_idr_lock);
Shaohua Lib76354c2018-03-27 11:53:21 -07001098 idr_preload_end();
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001099
1100 /* id is in [1, INT_MAX) */
1101 if (WARN_ON_ONCE(!id))
1102 return -ENOSPC;
1103
1104 return id > 0 ? 0 : id;
1105}
1106
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001107void bpf_prog_free_id(struct bpf_prog *prog, bool do_idr_lock)
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001108{
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001109 /* cBPF to eBPF migrations are currently not in the idr store.
1110 * Offloaded programs are removed from the store when their device
1111 * disappears - even if someone grabs an fd to them they are unusable,
1112 * simply waiting for refcnt to drop to be freed.
1113 */
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001114 if (!prog->aux->id)
1115 return;
1116
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001117 if (do_idr_lock)
1118 spin_lock_bh(&prog_idr_lock);
1119 else
1120 __acquire(&prog_idr_lock);
1121
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001122 idr_remove(&prog_idr, prog->aux->id);
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001123 prog->aux->id = 0;
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001124
1125 if (do_idr_lock)
1126 spin_unlock_bh(&prog_idr_lock);
1127 else
1128 __release(&prog_idr_lock);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001129}
1130
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001131static void __bpf_prog_put_rcu(struct rcu_head *rcu)
Alexei Starovoitovabf2e7d2015-05-28 19:26:02 -07001132{
1133 struct bpf_prog_aux *aux = container_of(rcu, struct bpf_prog_aux, rcu);
1134
1135 free_used_maps(aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001136 bpf_prog_uncharge_memlock(aux->prog);
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001137 security_bpf_prog_free(aux);
Alexei Starovoitovabf2e7d2015-05-28 19:26:02 -07001138 bpf_prog_free(aux->prog);
1139}
1140
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001141static void __bpf_prog_put(struct bpf_prog *prog, bool do_idr_lock)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001142{
Daniel Borkmanna67edbf2017-01-25 02:28:18 +01001143 if (atomic_dec_and_test(&prog->aux->refcnt)) {
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07001144 /* bpf_prog_free_id() must be called first */
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001145 bpf_prog_free_id(prog, do_idr_lock);
Daniel Borkmann7d1982b2018-06-15 02:30:47 +02001146 bpf_prog_kallsyms_del_all(prog);
Daniel Borkmann4f74d802017-12-20 13:42:56 +01001147
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001148 call_rcu(&prog->aux->rcu, __bpf_prog_put_rcu);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +01001149 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001150}
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001151
1152void bpf_prog_put(struct bpf_prog *prog)
1153{
1154 __bpf_prog_put(prog, true);
1155}
Daniel Borkmanne2e9b652015-03-01 12:31:48 +01001156EXPORT_SYMBOL_GPL(bpf_prog_put);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001157
1158static int bpf_prog_release(struct inode *inode, struct file *filp)
1159{
1160 struct bpf_prog *prog = filp->private_data;
1161
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001162 bpf_prog_put(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001163 return 0;
1164}
1165
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001166#ifdef CONFIG_PROC_FS
1167static void bpf_prog_show_fdinfo(struct seq_file *m, struct file *filp)
1168{
1169 const struct bpf_prog *prog = filp->private_data;
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001170 char prog_tag[sizeof(prog->tag) * 2 + 1] = { };
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001171
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001172 bin2hex(prog_tag, prog->tag, sizeof(prog->tag));
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001173 seq_printf(m,
1174 "prog_type:\t%u\n"
1175 "prog_jited:\t%u\n"
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001176 "prog_tag:\t%s\n"
Daniel Borkmann4316b402018-06-02 23:06:34 +02001177 "memlock:\t%llu\n"
1178 "prog_id:\t%u\n",
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001179 prog->type,
1180 prog->jited,
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001181 prog_tag,
Daniel Borkmann4316b402018-06-02 23:06:34 +02001182 prog->pages * 1ULL << PAGE_SHIFT,
1183 prog->aux->id);
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001184}
1185#endif
1186
Chenbo Fengf66e4482017-10-18 13:00:26 -07001187const struct file_operations bpf_prog_fops = {
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001188#ifdef CONFIG_PROC_FS
1189 .show_fdinfo = bpf_prog_show_fdinfo,
1190#endif
1191 .release = bpf_prog_release,
Chenbo Feng6e71b042017-10-18 13:00:22 -07001192 .read = bpf_dummy_read,
1193 .write = bpf_dummy_write,
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001194};
1195
Daniel Borkmannb2197752015-10-29 14:58:09 +01001196int bpf_prog_new_fd(struct bpf_prog *prog)
Daniel Borkmannaa797812015-10-29 14:58:06 +01001197{
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001198 int ret;
1199
1200 ret = security_bpf_prog(prog);
1201 if (ret < 0)
1202 return ret;
1203
Daniel Borkmannaa797812015-10-29 14:58:06 +01001204 return anon_inode_getfd("bpf-prog", &bpf_prog_fops, prog,
1205 O_RDWR | O_CLOEXEC);
1206}
1207
Daniel Borkmann113214b2016-06-30 17:24:44 +02001208static struct bpf_prog *____bpf_prog_get(struct fd f)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001209{
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001210 if (!f.file)
1211 return ERR_PTR(-EBADF);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001212 if (f.file->f_op != &bpf_prog_fops) {
1213 fdput(f);
1214 return ERR_PTR(-EINVAL);
1215 }
1216
Daniel Borkmannc2101292015-10-29 14:58:07 +01001217 return f.file->private_data;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001218}
1219
Brenden Blanco59d36562016-07-19 12:16:46 -07001220struct bpf_prog *bpf_prog_add(struct bpf_prog *prog, int i)
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001221{
Brenden Blanco59d36562016-07-19 12:16:46 -07001222 if (atomic_add_return(i, &prog->aux->refcnt) > BPF_MAX_REFCNT) {
1223 atomic_sub(i, &prog->aux->refcnt);
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001224 return ERR_PTR(-EBUSY);
1225 }
1226 return prog;
1227}
Brenden Blanco59d36562016-07-19 12:16:46 -07001228EXPORT_SYMBOL_GPL(bpf_prog_add);
1229
Daniel Borkmannc5405942016-11-09 22:02:34 +01001230void bpf_prog_sub(struct bpf_prog *prog, int i)
1231{
1232 /* Only to be used for undoing previous bpf_prog_add() in some
1233 * error path. We still know that another entity in our call
1234 * path holds a reference to the program, thus atomic_sub() can
1235 * be safely used in such cases!
1236 */
1237 WARN_ON(atomic_sub_return(i, &prog->aux->refcnt) == 0);
1238}
1239EXPORT_SYMBOL_GPL(bpf_prog_sub);
1240
Brenden Blanco59d36562016-07-19 12:16:46 -07001241struct bpf_prog *bpf_prog_inc(struct bpf_prog *prog)
1242{
1243 return bpf_prog_add(prog, 1);
1244}
Daniel Borkmann97bc4022016-11-19 01:45:00 +01001245EXPORT_SYMBOL_GPL(bpf_prog_inc);
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001246
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001247/* prog_idr_lock should have been held */
John Fastabenda6f6df62017-08-15 22:32:22 -07001248struct bpf_prog *bpf_prog_inc_not_zero(struct bpf_prog *prog)
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001249{
1250 int refold;
1251
Mark Rutlandbfc18e32018-06-21 13:13:04 +01001252 refold = atomic_fetch_add_unless(&prog->aux->refcnt, 1, 0);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001253
1254 if (refold >= BPF_MAX_REFCNT) {
1255 __bpf_prog_put(prog, false);
1256 return ERR_PTR(-EBUSY);
1257 }
1258
1259 if (!refold)
1260 return ERR_PTR(-ENOENT);
1261
1262 return prog;
1263}
John Fastabenda6f6df62017-08-15 22:32:22 -07001264EXPORT_SYMBOL_GPL(bpf_prog_inc_not_zero);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001265
Al Viro040ee692017-12-02 20:20:38 -05001266bool bpf_prog_get_ok(struct bpf_prog *prog,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001267 enum bpf_prog_type *attach_type, bool attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001268{
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001269 /* not an attachment, just a refcount inc, always allow */
1270 if (!attach_type)
1271 return true;
Jakub Kicinski248f3462017-11-03 13:56:20 -07001272
1273 if (prog->type != *attach_type)
1274 return false;
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001275 if (bpf_prog_is_dev_bound(prog->aux) && !attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001276 return false;
1277
1278 return true;
1279}
1280
1281static struct bpf_prog *__bpf_prog_get(u32 ufd, enum bpf_prog_type *attach_type,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001282 bool attach_drv)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001283{
1284 struct fd f = fdget(ufd);
1285 struct bpf_prog *prog;
1286
Daniel Borkmann113214b2016-06-30 17:24:44 +02001287 prog = ____bpf_prog_get(f);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001288 if (IS_ERR(prog))
1289 return prog;
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001290 if (!bpf_prog_get_ok(prog, attach_type, attach_drv)) {
Daniel Borkmann113214b2016-06-30 17:24:44 +02001291 prog = ERR_PTR(-EINVAL);
1292 goto out;
1293 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001294
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001295 prog = bpf_prog_inc(prog);
Daniel Borkmann113214b2016-06-30 17:24:44 +02001296out:
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001297 fdput(f);
1298 return prog;
1299}
Daniel Borkmann113214b2016-06-30 17:24:44 +02001300
1301struct bpf_prog *bpf_prog_get(u32 ufd)
1302{
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001303 return __bpf_prog_get(ufd, NULL, false);
Daniel Borkmann113214b2016-06-30 17:24:44 +02001304}
1305
Jakub Kicinski248f3462017-11-03 13:56:20 -07001306struct bpf_prog *bpf_prog_get_type_dev(u32 ufd, enum bpf_prog_type type,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001307 bool attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001308{
Alexei Starovoitov4d220ed2018-04-28 19:56:37 -07001309 return __bpf_prog_get(ufd, &type, attach_drv);
Jakub Kicinski248f3462017-11-03 13:56:20 -07001310}
Jakub Kicinski6c8dfe22017-11-03 13:56:21 -07001311EXPORT_SYMBOL_GPL(bpf_prog_get_type_dev);
Jakub Kicinski248f3462017-11-03 13:56:20 -07001312
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001313/* Initially all BPF programs could be loaded w/o specifying
1314 * expected_attach_type. Later for some of them specifying expected_attach_type
1315 * at load time became required so that program could be validated properly.
1316 * Programs of types that are allowed to be loaded both w/ and w/o (for
1317 * backward compatibility) expected_attach_type, should have the default attach
1318 * type assigned to expected_attach_type for the latter case, so that it can be
1319 * validated later at attach time.
1320 *
1321 * bpf_prog_load_fixup_attach_type() sets expected_attach_type in @attr if
1322 * prog type requires it but has some attach types that have to be backward
1323 * compatible.
1324 */
1325static void bpf_prog_load_fixup_attach_type(union bpf_attr *attr)
1326{
1327 switch (attr->prog_type) {
1328 case BPF_PROG_TYPE_CGROUP_SOCK:
1329 /* Unfortunately BPF_ATTACH_TYPE_UNSPEC enumeration doesn't
1330 * exist so checking for non-zero is the way to go here.
1331 */
1332 if (!attr->expected_attach_type)
1333 attr->expected_attach_type =
1334 BPF_CGROUP_INET_SOCK_CREATE;
1335 break;
1336 }
1337}
1338
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001339static int
1340bpf_prog_load_check_attach_type(enum bpf_prog_type prog_type,
1341 enum bpf_attach_type expected_attach_type)
1342{
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001343 switch (prog_type) {
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001344 case BPF_PROG_TYPE_CGROUP_SOCK:
1345 switch (expected_attach_type) {
1346 case BPF_CGROUP_INET_SOCK_CREATE:
1347 case BPF_CGROUP_INET4_POST_BIND:
1348 case BPF_CGROUP_INET6_POST_BIND:
1349 return 0;
1350 default:
1351 return -EINVAL;
1352 }
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001353 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
1354 switch (expected_attach_type) {
1355 case BPF_CGROUP_INET4_BIND:
1356 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001357 case BPF_CGROUP_INET4_CONNECT:
1358 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001359 case BPF_CGROUP_UDP4_SENDMSG:
1360 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001361 return 0;
1362 default:
1363 return -EINVAL;
1364 }
1365 default:
1366 return 0;
1367 }
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001368}
1369
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001370/* last field in 'union bpf_attr' used by this command */
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001371#define BPF_PROG_LOAD_LAST_FIELD expected_attach_type
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001372
1373static int bpf_prog_load(union bpf_attr *attr)
1374{
1375 enum bpf_prog_type type = attr->prog_type;
1376 struct bpf_prog *prog;
1377 int err;
1378 char license[128];
1379 bool is_gpl;
1380
1381 if (CHECK_ATTR(BPF_PROG_LOAD))
1382 return -EINVAL;
1383
David S. Millere07b98d2017-05-10 11:38:07 -07001384 if (attr->prog_flags & ~BPF_F_STRICT_ALIGNMENT)
1385 return -EINVAL;
1386
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001387 /* copy eBPF program license from user space */
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001388 if (strncpy_from_user(license, u64_to_user_ptr(attr->license),
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001389 sizeof(license) - 1) < 0)
1390 return -EFAULT;
1391 license[sizeof(license) - 1] = 0;
1392
1393 /* eBPF programs must be GPL compatible to use GPL-ed functions */
1394 is_gpl = license_is_gpl_compatible(license);
1395
Daniel Borkmannef0915c2016-12-07 01:15:44 +01001396 if (attr->insn_cnt == 0 || attr->insn_cnt > BPF_MAXINSNS)
1397 return -E2BIG;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001398
Alexei Starovoitov25415172015-03-25 12:49:20 -07001399 if (type == BPF_PROG_TYPE_KPROBE &&
1400 attr->kern_version != LINUX_VERSION_CODE)
1401 return -EINVAL;
1402
Chenbo Feng80b7d812017-05-31 18:16:00 -07001403 if (type != BPF_PROG_TYPE_SOCKET_FILTER &&
1404 type != BPF_PROG_TYPE_CGROUP_SKB &&
1405 !capable(CAP_SYS_ADMIN))
Alexei Starovoitov1be7f752015-10-07 22:23:21 -07001406 return -EPERM;
1407
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001408 bpf_prog_load_fixup_attach_type(attr);
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001409 if (bpf_prog_load_check_attach_type(type, attr->expected_attach_type))
1410 return -EINVAL;
1411
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001412 /* plain bpf_prog allocation */
1413 prog = bpf_prog_alloc(bpf_prog_size(attr->insn_cnt), GFP_USER);
1414 if (!prog)
1415 return -ENOMEM;
1416
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001417 prog->expected_attach_type = attr->expected_attach_type;
1418
Jakub Kicinski9a18eed2017-12-27 18:39:04 -08001419 prog->aux->offload_requested = !!attr->prog_ifindex;
1420
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001421 err = security_bpf_prog_alloc(prog->aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001422 if (err)
1423 goto free_prog_nouncharge;
1424
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001425 err = bpf_prog_charge_memlock(prog);
1426 if (err)
1427 goto free_prog_sec;
1428
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001429 prog->len = attr->insn_cnt;
1430
1431 err = -EFAULT;
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001432 if (copy_from_user(prog->insns, u64_to_user_ptr(attr->insns),
Daniel Borkmannaafe6ae2016-12-18 01:52:57 +01001433 bpf_prog_insn_size(prog)) != 0)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001434 goto free_prog;
1435
1436 prog->orig_prog = NULL;
Daniel Borkmanna91263d2015-09-30 01:41:50 +02001437 prog->jited = 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001438
1439 atomic_set(&prog->aux->refcnt, 1);
Daniel Borkmanna91263d2015-09-30 01:41:50 +02001440 prog->gpl_compatible = is_gpl ? 1 : 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001441
Jakub Kicinski9a18eed2017-12-27 18:39:04 -08001442 if (bpf_prog_is_dev_bound(prog->aux)) {
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07001443 err = bpf_prog_offload_init(prog, attr);
1444 if (err)
1445 goto free_prog;
1446 }
1447
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001448 /* find program type: socket_filter vs tracing_filter */
1449 err = find_prog_type(type, prog);
1450 if (err < 0)
1451 goto free_prog;
1452
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001453 prog->aux->load_time = ktime_get_boot_ns();
1454 err = bpf_obj_name_cpy(prog->aux->name, attr->prog_name);
1455 if (err)
1456 goto free_prog;
1457
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001458 /* run eBPF verifier */
Alexei Starovoitov9bac3d62015-03-13 11:57:42 -07001459 err = bpf_check(&prog, attr);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001460 if (err < 0)
1461 goto free_used_maps;
1462
Daniel Borkmann9facc332018-06-15 02:30:48 +02001463 prog = bpf_prog_select_runtime(prog, &err);
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001464 if (err < 0)
1465 goto free_used_maps;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001466
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001467 err = bpf_prog_alloc_id(prog);
1468 if (err)
1469 goto free_used_maps;
1470
Daniel Borkmannaa797812015-10-29 14:58:06 +01001471 err = bpf_prog_new_fd(prog);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001472 if (err < 0) {
1473 /* failed to allocate fd.
1474 * bpf_prog_put() is needed because the above
1475 * bpf_prog_alloc_id() has published the prog
1476 * to the userspace and the userspace may
1477 * have refcnt-ed it through BPF_PROG_GET_FD_BY_ID.
1478 */
1479 bpf_prog_put(prog);
1480 return err;
1481 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001482
Daniel Borkmann74451e662017-02-16 22:24:50 +01001483 bpf_prog_kallsyms_add(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001484 return err;
1485
1486free_used_maps:
Daniel Borkmann7d1982b2018-06-15 02:30:47 +02001487 bpf_prog_kallsyms_del_subprogs(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001488 free_used_maps(prog->aux);
1489free_prog:
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001490 bpf_prog_uncharge_memlock(prog);
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001491free_prog_sec:
1492 security_bpf_prog_free(prog->aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001493free_prog_nouncharge:
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001494 bpf_prog_free(prog);
1495 return err;
1496}
1497
Chenbo Feng6e71b042017-10-18 13:00:22 -07001498#define BPF_OBJ_LAST_FIELD file_flags
Daniel Borkmannb2197752015-10-29 14:58:09 +01001499
1500static int bpf_obj_pin(const union bpf_attr *attr)
1501{
Chenbo Feng6e71b042017-10-18 13:00:22 -07001502 if (CHECK_ATTR(BPF_OBJ) || attr->file_flags != 0)
Daniel Borkmannb2197752015-10-29 14:58:09 +01001503 return -EINVAL;
1504
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001505 return bpf_obj_pin_user(attr->bpf_fd, u64_to_user_ptr(attr->pathname));
Daniel Borkmannb2197752015-10-29 14:58:09 +01001506}
1507
1508static int bpf_obj_get(const union bpf_attr *attr)
1509{
Chenbo Feng6e71b042017-10-18 13:00:22 -07001510 if (CHECK_ATTR(BPF_OBJ) || attr->bpf_fd != 0 ||
1511 attr->file_flags & ~BPF_OBJ_FLAG_MASK)
Daniel Borkmannb2197752015-10-29 14:58:09 +01001512 return -EINVAL;
1513
Chenbo Feng6e71b042017-10-18 13:00:22 -07001514 return bpf_obj_get_user(u64_to_user_ptr(attr->pathname),
1515 attr->file_flags);
Daniel Borkmannb2197752015-10-29 14:58:09 +01001516}
1517
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001518struct bpf_raw_tracepoint {
1519 struct bpf_raw_event_map *btp;
1520 struct bpf_prog *prog;
1521};
1522
1523static int bpf_raw_tracepoint_release(struct inode *inode, struct file *filp)
1524{
1525 struct bpf_raw_tracepoint *raw_tp = filp->private_data;
1526
1527 if (raw_tp->prog) {
1528 bpf_probe_unregister(raw_tp->btp, raw_tp->prog);
1529 bpf_prog_put(raw_tp->prog);
1530 }
1531 kfree(raw_tp);
1532 return 0;
1533}
1534
1535static const struct file_operations bpf_raw_tp_fops = {
1536 .release = bpf_raw_tracepoint_release,
1537 .read = bpf_dummy_read,
1538 .write = bpf_dummy_write,
1539};
1540
1541#define BPF_RAW_TRACEPOINT_OPEN_LAST_FIELD raw_tracepoint.prog_fd
1542
1543static int bpf_raw_tracepoint_open(const union bpf_attr *attr)
1544{
1545 struct bpf_raw_tracepoint *raw_tp;
1546 struct bpf_raw_event_map *btp;
1547 struct bpf_prog *prog;
1548 char tp_name[128];
1549 int tp_fd, err;
1550
1551 if (strncpy_from_user(tp_name, u64_to_user_ptr(attr->raw_tracepoint.name),
1552 sizeof(tp_name) - 1) < 0)
1553 return -EFAULT;
1554 tp_name[sizeof(tp_name) - 1] = 0;
1555
1556 btp = bpf_find_raw_tracepoint(tp_name);
1557 if (!btp)
1558 return -ENOENT;
1559
1560 raw_tp = kzalloc(sizeof(*raw_tp), GFP_USER);
1561 if (!raw_tp)
1562 return -ENOMEM;
1563 raw_tp->btp = btp;
1564
1565 prog = bpf_prog_get_type(attr->raw_tracepoint.prog_fd,
1566 BPF_PROG_TYPE_RAW_TRACEPOINT);
1567 if (IS_ERR(prog)) {
1568 err = PTR_ERR(prog);
1569 goto out_free_tp;
1570 }
1571
1572 err = bpf_probe_register(raw_tp->btp, prog);
1573 if (err)
1574 goto out_put_prog;
1575
1576 raw_tp->prog = prog;
1577 tp_fd = anon_inode_getfd("bpf-raw-tracepoint", &bpf_raw_tp_fops, raw_tp,
1578 O_CLOEXEC);
1579 if (tp_fd < 0) {
1580 bpf_probe_unregister(raw_tp->btp, prog);
1581 err = tp_fd;
1582 goto out_put_prog;
1583 }
1584 return tp_fd;
1585
1586out_put_prog:
1587 bpf_prog_put(prog);
1588out_free_tp:
1589 kfree(raw_tp);
1590 return err;
1591}
1592
Anders Roxell33491582018-04-03 14:09:47 +02001593static int bpf_prog_attach_check_attach_type(const struct bpf_prog *prog,
1594 enum bpf_attach_type attach_type)
1595{
1596 switch (prog->type) {
1597 case BPF_PROG_TYPE_CGROUP_SOCK:
1598 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
1599 return attach_type == prog->expected_attach_type ? 0 : -EINVAL;
1600 default:
1601 return 0;
1602 }
1603}
1604
John Fastabend464bc0f2017-08-28 07:10:04 -07001605#define BPF_PROG_ATTACH_LAST_FIELD attach_flags
John Fastabend174a79f2017-08-15 22:32:47 -07001606
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001607#define BPF_F_ATTACH_MASK \
1608 (BPF_F_ALLOW_OVERRIDE | BPF_F_ALLOW_MULTI)
1609
Daniel Mackf4324552016-11-23 16:52:27 +01001610static int bpf_prog_attach(const union bpf_attr *attr)
1611{
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001612 enum bpf_prog_type ptype;
Daniel Mackf4324552016-11-23 16:52:27 +01001613 struct bpf_prog *prog;
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001614 int ret;
Daniel Mackf4324552016-11-23 16:52:27 +01001615
1616 if (!capable(CAP_NET_ADMIN))
1617 return -EPERM;
1618
1619 if (CHECK_ATTR(BPF_PROG_ATTACH))
1620 return -EINVAL;
1621
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001622 if (attr->attach_flags & ~BPF_F_ATTACH_MASK)
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001623 return -EINVAL;
1624
Daniel Mackf4324552016-11-23 16:52:27 +01001625 switch (attr->attach_type) {
1626 case BPF_CGROUP_INET_INGRESS:
1627 case BPF_CGROUP_INET_EGRESS:
David Ahernb2cd1252016-12-01 08:48:03 -08001628 ptype = BPF_PROG_TYPE_CGROUP_SKB;
Daniel Mackf4324552016-11-23 16:52:27 +01001629 break;
David Ahern610236582016-12-01 08:48:04 -08001630 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001631 case BPF_CGROUP_INET4_POST_BIND:
1632 case BPF_CGROUP_INET6_POST_BIND:
David Ahern610236582016-12-01 08:48:04 -08001633 ptype = BPF_PROG_TYPE_CGROUP_SOCK;
1634 break;
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001635 case BPF_CGROUP_INET4_BIND:
1636 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001637 case BPF_CGROUP_INET4_CONNECT:
1638 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001639 case BPF_CGROUP_UDP4_SENDMSG:
1640 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001641 ptype = BPF_PROG_TYPE_CGROUP_SOCK_ADDR;
1642 break;
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001643 case BPF_CGROUP_SOCK_OPS:
1644 ptype = BPF_PROG_TYPE_SOCK_OPS;
1645 break;
Roman Gushchinebc614f2017-11-05 08:15:32 -05001646 case BPF_CGROUP_DEVICE:
1647 ptype = BPF_PROG_TYPE_CGROUP_DEVICE;
1648 break;
John Fastabend4f738ad2018-03-18 12:57:10 -07001649 case BPF_SK_MSG_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001650 ptype = BPF_PROG_TYPE_SK_MSG;
1651 break;
John Fastabend464bc0f2017-08-28 07:10:04 -07001652 case BPF_SK_SKB_STREAM_PARSER:
1653 case BPF_SK_SKB_STREAM_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001654 ptype = BPF_PROG_TYPE_SK_SKB;
1655 break;
Sean Youngf4364dc2018-05-27 12:24:09 +01001656 case BPF_LIRC_MODE2:
Sean Youngfdb5c452018-06-19 00:04:24 +01001657 ptype = BPF_PROG_TYPE_LIRC_MODE2;
1658 break;
Petar Penkovd58e4682018-09-14 07:46:18 -07001659 case BPF_FLOW_DISSECTOR:
1660 ptype = BPF_PROG_TYPE_FLOW_DISSECTOR;
1661 break;
Daniel Mackf4324552016-11-23 16:52:27 +01001662 default:
1663 return -EINVAL;
1664 }
1665
David Ahernb2cd1252016-12-01 08:48:03 -08001666 prog = bpf_prog_get_type(attr->attach_bpf_fd, ptype);
1667 if (IS_ERR(prog))
1668 return PTR_ERR(prog);
1669
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001670 if (bpf_prog_attach_check_attach_type(prog, attr->attach_type)) {
1671 bpf_prog_put(prog);
1672 return -EINVAL;
1673 }
1674
Sean Youngfdb5c452018-06-19 00:04:24 +01001675 switch (ptype) {
1676 case BPF_PROG_TYPE_SK_SKB:
1677 case BPF_PROG_TYPE_SK_MSG:
Daniel Borkmann604326b2018-10-13 02:45:58 +02001678 ret = sock_map_get_from_fd(attr, prog);
Sean Youngfdb5c452018-06-19 00:04:24 +01001679 break;
1680 case BPF_PROG_TYPE_LIRC_MODE2:
1681 ret = lirc_prog_attach(attr, prog);
1682 break;
Petar Penkovd58e4682018-09-14 07:46:18 -07001683 case BPF_PROG_TYPE_FLOW_DISSECTOR:
1684 ret = skb_flow_dissector_bpf_prog_attach(attr, prog);
1685 break;
Sean Youngfdb5c452018-06-19 00:04:24 +01001686 default:
1687 ret = cgroup_bpf_prog_attach(attr, ptype, prog);
David Ahernb2cd1252016-12-01 08:48:03 -08001688 }
1689
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001690 if (ret)
1691 bpf_prog_put(prog);
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001692 return ret;
Daniel Mackf4324552016-11-23 16:52:27 +01001693}
1694
1695#define BPF_PROG_DETACH_LAST_FIELD attach_type
1696
1697static int bpf_prog_detach(const union bpf_attr *attr)
1698{
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001699 enum bpf_prog_type ptype;
Daniel Mackf4324552016-11-23 16:52:27 +01001700
1701 if (!capable(CAP_NET_ADMIN))
1702 return -EPERM;
1703
1704 if (CHECK_ATTR(BPF_PROG_DETACH))
1705 return -EINVAL;
1706
1707 switch (attr->attach_type) {
1708 case BPF_CGROUP_INET_INGRESS:
1709 case BPF_CGROUP_INET_EGRESS:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001710 ptype = BPF_PROG_TYPE_CGROUP_SKB;
1711 break;
David Ahern610236582016-12-01 08:48:04 -08001712 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001713 case BPF_CGROUP_INET4_POST_BIND:
1714 case BPF_CGROUP_INET6_POST_BIND:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001715 ptype = BPF_PROG_TYPE_CGROUP_SOCK;
1716 break;
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001717 case BPF_CGROUP_INET4_BIND:
1718 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001719 case BPF_CGROUP_INET4_CONNECT:
1720 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001721 case BPF_CGROUP_UDP4_SENDMSG:
1722 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001723 ptype = BPF_PROG_TYPE_CGROUP_SOCK_ADDR;
1724 break;
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001725 case BPF_CGROUP_SOCK_OPS:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001726 ptype = BPF_PROG_TYPE_SOCK_OPS;
Daniel Mackf4324552016-11-23 16:52:27 +01001727 break;
Roman Gushchinebc614f2017-11-05 08:15:32 -05001728 case BPF_CGROUP_DEVICE:
1729 ptype = BPF_PROG_TYPE_CGROUP_DEVICE;
1730 break;
John Fastabend4f738ad2018-03-18 12:57:10 -07001731 case BPF_SK_MSG_VERDICT:
Daniel Borkmann604326b2018-10-13 02:45:58 +02001732 return sock_map_get_from_fd(attr, NULL);
John Fastabend5a67da22017-09-08 14:00:49 -07001733 case BPF_SK_SKB_STREAM_PARSER:
1734 case BPF_SK_SKB_STREAM_VERDICT:
Daniel Borkmann604326b2018-10-13 02:45:58 +02001735 return sock_map_get_from_fd(attr, NULL);
Sean Youngf4364dc2018-05-27 12:24:09 +01001736 case BPF_LIRC_MODE2:
1737 return lirc_prog_detach(attr);
Petar Penkovd58e4682018-09-14 07:46:18 -07001738 case BPF_FLOW_DISSECTOR:
1739 return skb_flow_dissector_bpf_prog_detach(attr);
Daniel Mackf4324552016-11-23 16:52:27 +01001740 default:
1741 return -EINVAL;
1742 }
1743
Sean Youngfdb5c452018-06-19 00:04:24 +01001744 return cgroup_bpf_prog_detach(attr, ptype);
Daniel Mackf4324552016-11-23 16:52:27 +01001745}
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001746
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001747#define BPF_PROG_QUERY_LAST_FIELD query.prog_cnt
1748
1749static int bpf_prog_query(const union bpf_attr *attr,
1750 union bpf_attr __user *uattr)
1751{
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001752 if (!capable(CAP_NET_ADMIN))
1753 return -EPERM;
1754 if (CHECK_ATTR(BPF_PROG_QUERY))
1755 return -EINVAL;
1756 if (attr->query.query_flags & ~BPF_F_QUERY_EFFECTIVE)
1757 return -EINVAL;
1758
1759 switch (attr->query.attach_type) {
1760 case BPF_CGROUP_INET_INGRESS:
1761 case BPF_CGROUP_INET_EGRESS:
1762 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001763 case BPF_CGROUP_INET4_BIND:
1764 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001765 case BPF_CGROUP_INET4_POST_BIND:
1766 case BPF_CGROUP_INET6_POST_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001767 case BPF_CGROUP_INET4_CONNECT:
1768 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001769 case BPF_CGROUP_UDP4_SENDMSG:
1770 case BPF_CGROUP_UDP6_SENDMSG:
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001771 case BPF_CGROUP_SOCK_OPS:
Roman Gushchinebc614f2017-11-05 08:15:32 -05001772 case BPF_CGROUP_DEVICE:
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001773 break;
Sean Youngf4364dc2018-05-27 12:24:09 +01001774 case BPF_LIRC_MODE2:
1775 return lirc_prog_query(attr, uattr);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001776 default:
1777 return -EINVAL;
1778 }
Sean Youngfdb5c452018-06-19 00:04:24 +01001779
1780 return cgroup_bpf_prog_query(attr, uattr);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001781}
Daniel Mackf4324552016-11-23 16:52:27 +01001782
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07001783#define BPF_PROG_TEST_RUN_LAST_FIELD test.duration
1784
1785static int bpf_prog_test_run(const union bpf_attr *attr,
1786 union bpf_attr __user *uattr)
1787{
1788 struct bpf_prog *prog;
1789 int ret = -ENOTSUPP;
1790
Alexei Starovoitov61f3c962018-01-17 16:52:02 -08001791 if (!capable(CAP_SYS_ADMIN))
1792 return -EPERM;
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07001793 if (CHECK_ATTR(BPF_PROG_TEST_RUN))
1794 return -EINVAL;
1795
1796 prog = bpf_prog_get(attr->test.prog_fd);
1797 if (IS_ERR(prog))
1798 return PTR_ERR(prog);
1799
1800 if (prog->aux->ops->test_run)
1801 ret = prog->aux->ops->test_run(prog, attr, uattr);
1802
1803 bpf_prog_put(prog);
1804 return ret;
1805}
1806
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07001807#define BPF_OBJ_GET_NEXT_ID_LAST_FIELD next_id
1808
1809static int bpf_obj_get_next_id(const union bpf_attr *attr,
1810 union bpf_attr __user *uattr,
1811 struct idr *idr,
1812 spinlock_t *lock)
1813{
1814 u32 next_id = attr->start_id;
1815 int err = 0;
1816
1817 if (CHECK_ATTR(BPF_OBJ_GET_NEXT_ID) || next_id >= INT_MAX)
1818 return -EINVAL;
1819
1820 if (!capable(CAP_SYS_ADMIN))
1821 return -EPERM;
1822
1823 next_id++;
1824 spin_lock_bh(lock);
1825 if (!idr_get_next(idr, &next_id))
1826 err = -ENOENT;
1827 spin_unlock_bh(lock);
1828
1829 if (!err)
1830 err = put_user(next_id, &uattr->next_id);
1831
1832 return err;
1833}
1834
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001835#define BPF_PROG_GET_FD_BY_ID_LAST_FIELD prog_id
1836
1837static int bpf_prog_get_fd_by_id(const union bpf_attr *attr)
1838{
1839 struct bpf_prog *prog;
1840 u32 id = attr->prog_id;
1841 int fd;
1842
1843 if (CHECK_ATTR(BPF_PROG_GET_FD_BY_ID))
1844 return -EINVAL;
1845
1846 if (!capable(CAP_SYS_ADMIN))
1847 return -EPERM;
1848
1849 spin_lock_bh(&prog_idr_lock);
1850 prog = idr_find(&prog_idr, id);
1851 if (prog)
1852 prog = bpf_prog_inc_not_zero(prog);
1853 else
1854 prog = ERR_PTR(-ENOENT);
1855 spin_unlock_bh(&prog_idr_lock);
1856
1857 if (IS_ERR(prog))
1858 return PTR_ERR(prog);
1859
1860 fd = bpf_prog_new_fd(prog);
1861 if (fd < 0)
1862 bpf_prog_put(prog);
1863
1864 return fd;
1865}
1866
Chenbo Feng6e71b042017-10-18 13:00:22 -07001867#define BPF_MAP_GET_FD_BY_ID_LAST_FIELD open_flags
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001868
1869static int bpf_map_get_fd_by_id(const union bpf_attr *attr)
1870{
1871 struct bpf_map *map;
1872 u32 id = attr->map_id;
Chenbo Feng6e71b042017-10-18 13:00:22 -07001873 int f_flags;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001874 int fd;
1875
Chenbo Feng6e71b042017-10-18 13:00:22 -07001876 if (CHECK_ATTR(BPF_MAP_GET_FD_BY_ID) ||
1877 attr->open_flags & ~BPF_OBJ_FLAG_MASK)
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001878 return -EINVAL;
1879
1880 if (!capable(CAP_SYS_ADMIN))
1881 return -EPERM;
1882
Chenbo Feng6e71b042017-10-18 13:00:22 -07001883 f_flags = bpf_get_file_flag(attr->open_flags);
1884 if (f_flags < 0)
1885 return f_flags;
1886
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001887 spin_lock_bh(&map_idr_lock);
1888 map = idr_find(&map_idr, id);
1889 if (map)
1890 map = bpf_map_inc_not_zero(map, true);
1891 else
1892 map = ERR_PTR(-ENOENT);
1893 spin_unlock_bh(&map_idr_lock);
1894
1895 if (IS_ERR(map))
1896 return PTR_ERR(map);
1897
Chenbo Feng6e71b042017-10-18 13:00:22 -07001898 fd = bpf_map_new_fd(map, f_flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001899 if (fd < 0)
1900 bpf_map_put(map);
1901
1902 return fd;
1903}
1904
Daniel Borkmann7105e822017-12-20 13:42:57 +01001905static const struct bpf_map *bpf_map_from_imm(const struct bpf_prog *prog,
1906 unsigned long addr)
1907{
1908 int i;
1909
1910 for (i = 0; i < prog->aux->used_map_cnt; i++)
1911 if (prog->aux->used_maps[i] == (void *)addr)
1912 return prog->aux->used_maps[i];
1913 return NULL;
1914}
1915
1916static struct bpf_insn *bpf_insn_prepare_dump(const struct bpf_prog *prog)
1917{
1918 const struct bpf_map *map;
1919 struct bpf_insn *insns;
1920 u64 imm;
1921 int i;
1922
1923 insns = kmemdup(prog->insnsi, bpf_prog_insn_size(prog),
1924 GFP_USER);
1925 if (!insns)
1926 return insns;
1927
1928 for (i = 0; i < prog->len; i++) {
1929 if (insns[i].code == (BPF_JMP | BPF_TAIL_CALL)) {
1930 insns[i].code = BPF_JMP | BPF_CALL;
1931 insns[i].imm = BPF_FUNC_tail_call;
1932 /* fall-through */
1933 }
1934 if (insns[i].code == (BPF_JMP | BPF_CALL) ||
1935 insns[i].code == (BPF_JMP | BPF_CALL_ARGS)) {
1936 if (insns[i].code == (BPF_JMP | BPF_CALL_ARGS))
1937 insns[i].code = BPF_JMP | BPF_CALL;
1938 if (!bpf_dump_raw_ok())
1939 insns[i].imm = 0;
1940 continue;
1941 }
1942
1943 if (insns[i].code != (BPF_LD | BPF_IMM | BPF_DW))
1944 continue;
1945
1946 imm = ((u64)insns[i + 1].imm << 32) | (u32)insns[i].imm;
1947 map = bpf_map_from_imm(prog, imm);
1948 if (map) {
1949 insns[i].src_reg = BPF_PSEUDO_MAP_FD;
1950 insns[i].imm = map->id;
1951 insns[i + 1].imm = 0;
1952 continue;
1953 }
1954
1955 if (!bpf_dump_raw_ok() &&
1956 imm == (unsigned long)prog->aux) {
1957 insns[i].imm = 0;
1958 insns[i + 1].imm = 0;
1959 continue;
1960 }
1961 }
1962
1963 return insns;
1964}
1965
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001966static int bpf_prog_get_info_by_fd(struct bpf_prog *prog,
1967 const union bpf_attr *attr,
1968 union bpf_attr __user *uattr)
1969{
1970 struct bpf_prog_info __user *uinfo = u64_to_user_ptr(attr->info.info);
1971 struct bpf_prog_info info = {};
1972 u32 info_len = attr->info.info_len;
1973 char __user *uinsns;
1974 u32 ulen;
1975 int err;
1976
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07001977 err = bpf_check_uarg_tail_zero(uinfo, sizeof(info), info_len);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001978 if (err)
1979 return err;
1980 info_len = min_t(u32, sizeof(info), info_len);
1981
1982 if (copy_from_user(&info, uinfo, info_len))
Daniel Borkmann89b09682017-07-27 21:02:46 +02001983 return -EFAULT;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001984
1985 info.type = prog->type;
1986 info.id = prog->aux->id;
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001987 info.load_time = prog->aux->load_time;
1988 info.created_by_uid = from_kuid_munged(current_user_ns(),
1989 prog->aux->user->uid);
Jiri Olsab85fab02018-04-25 19:41:06 +02001990 info.gpl_compatible = prog->gpl_compatible;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001991
1992 memcpy(info.tag, prog->tag, sizeof(prog->tag));
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001993 memcpy(info.name, prog->aux->name, sizeof(prog->aux->name));
1994
1995 ulen = info.nr_map_ids;
1996 info.nr_map_ids = prog->aux->used_map_cnt;
1997 ulen = min_t(u32, info.nr_map_ids, ulen);
1998 if (ulen) {
Martin KaFai Lau721e08d2017-09-29 10:52:17 -07001999 u32 __user *user_map_ids = u64_to_user_ptr(info.map_ids);
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07002000 u32 i;
2001
2002 for (i = 0; i < ulen; i++)
2003 if (put_user(prog->aux->used_maps[i]->id,
2004 &user_map_ids[i]))
2005 return -EFAULT;
2006 }
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002007
2008 if (!capable(CAP_SYS_ADMIN)) {
2009 info.jited_prog_len = 0;
2010 info.xlated_prog_len = 0;
Sandipan Dasdbecd732018-05-24 12:26:48 +05302011 info.nr_jited_ksyms = 0;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002012 goto done;
2013 }
2014
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002015 ulen = info.xlated_prog_len;
Daniel Borkmann9975a542017-07-28 17:05:25 +02002016 info.xlated_prog_len = bpf_prog_insn_size(prog);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002017 if (info.xlated_prog_len && ulen) {
Daniel Borkmann7105e822017-12-20 13:42:57 +01002018 struct bpf_insn *insns_sanitized;
2019 bool fault;
2020
2021 if (prog->blinded && !bpf_dump_raw_ok()) {
2022 info.xlated_prog_insns = 0;
2023 goto done;
2024 }
2025 insns_sanitized = bpf_insn_prepare_dump(prog);
2026 if (!insns_sanitized)
2027 return -ENOMEM;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002028 uinsns = u64_to_user_ptr(info.xlated_prog_insns);
2029 ulen = min_t(u32, info.xlated_prog_len, ulen);
Daniel Borkmann7105e822017-12-20 13:42:57 +01002030 fault = copy_to_user(uinsns, insns_sanitized, ulen);
2031 kfree(insns_sanitized);
2032 if (fault)
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002033 return -EFAULT;
2034 }
2035
Jakub Kicinski675fc272017-12-27 18:39:09 -08002036 if (bpf_prog_is_dev_bound(prog->aux)) {
2037 err = bpf_prog_offload_info_fill(&info, prog);
2038 if (err)
2039 return err;
Jiong Wangfcfb1262018-01-16 16:05:19 -08002040 goto done;
2041 }
2042
2043 /* NOTE: the following code is supposed to be skipped for offload.
2044 * bpf_prog_offload_info_fill() is the place to fill similar fields
2045 * for offload.
2046 */
2047 ulen = info.jited_prog_len;
Sandipan Das4d56a762018-05-24 12:26:51 +05302048 if (prog->aux->func_cnt) {
2049 u32 i;
2050
2051 info.jited_prog_len = 0;
2052 for (i = 0; i < prog->aux->func_cnt; i++)
2053 info.jited_prog_len += prog->aux->func[i]->jited_len;
2054 } else {
2055 info.jited_prog_len = prog->jited_len;
2056 }
2057
Jiong Wangfcfb1262018-01-16 16:05:19 -08002058 if (info.jited_prog_len && ulen) {
2059 if (bpf_dump_raw_ok()) {
2060 uinsns = u64_to_user_ptr(info.jited_prog_insns);
2061 ulen = min_t(u32, info.jited_prog_len, ulen);
Sandipan Das4d56a762018-05-24 12:26:51 +05302062
2063 /* for multi-function programs, copy the JITed
2064 * instructions for all the functions
2065 */
2066 if (prog->aux->func_cnt) {
2067 u32 len, free, i;
2068 u8 *img;
2069
2070 free = ulen;
2071 for (i = 0; i < prog->aux->func_cnt; i++) {
2072 len = prog->aux->func[i]->jited_len;
2073 len = min_t(u32, len, free);
2074 img = (u8 *) prog->aux->func[i]->bpf_func;
2075 if (copy_to_user(uinsns, img, len))
2076 return -EFAULT;
2077 uinsns += len;
2078 free -= len;
2079 if (!free)
2080 break;
2081 }
2082 } else {
2083 if (copy_to_user(uinsns, prog->bpf_func, ulen))
2084 return -EFAULT;
2085 }
Jiong Wangfcfb1262018-01-16 16:05:19 -08002086 } else {
2087 info.jited_prog_insns = 0;
2088 }
Jakub Kicinski675fc272017-12-27 18:39:09 -08002089 }
2090
Sandipan Dasdbecd732018-05-24 12:26:48 +05302091 ulen = info.nr_jited_ksyms;
2092 info.nr_jited_ksyms = prog->aux->func_cnt;
2093 if (info.nr_jited_ksyms && ulen) {
2094 if (bpf_dump_raw_ok()) {
2095 u64 __user *user_ksyms;
2096 ulong ksym_addr;
2097 u32 i;
2098
2099 /* copy the address of the kernel symbol
2100 * corresponding to each function
2101 */
2102 ulen = min_t(u32, info.nr_jited_ksyms, ulen);
2103 user_ksyms = u64_to_user_ptr(info.jited_ksyms);
2104 for (i = 0; i < ulen; i++) {
2105 ksym_addr = (ulong) prog->aux->func[i]->bpf_func;
2106 ksym_addr &= PAGE_MASK;
2107 if (put_user((u64) ksym_addr, &user_ksyms[i]))
2108 return -EFAULT;
2109 }
2110 } else {
2111 info.jited_ksyms = 0;
2112 }
2113 }
2114
Sandipan Das815581c2018-05-24 12:26:52 +05302115 ulen = info.nr_jited_func_lens;
2116 info.nr_jited_func_lens = prog->aux->func_cnt;
2117 if (info.nr_jited_func_lens && ulen) {
2118 if (bpf_dump_raw_ok()) {
2119 u32 __user *user_lens;
2120 u32 func_len, i;
2121
2122 /* copy the JITed image lengths for each function */
2123 ulen = min_t(u32, info.nr_jited_func_lens, ulen);
2124 user_lens = u64_to_user_ptr(info.jited_func_lens);
2125 for (i = 0; i < ulen; i++) {
2126 func_len = prog->aux->func[i]->jited_len;
2127 if (put_user(func_len, &user_lens[i]))
2128 return -EFAULT;
2129 }
2130 } else {
2131 info.jited_func_lens = 0;
2132 }
2133 }
2134
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002135done:
2136 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
2143static int bpf_map_get_info_by_fd(struct bpf_map *map,
2144 const union bpf_attr *attr,
2145 union bpf_attr __user *uattr)
2146{
2147 struct bpf_map_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2148 struct bpf_map_info info = {};
2149 u32 info_len = attr->info.info_len;
2150 int err;
2151
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002152 err = bpf_check_uarg_tail_zero(uinfo, sizeof(info), info_len);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002153 if (err)
2154 return err;
2155 info_len = min_t(u32, sizeof(info), info_len);
2156
2157 info.type = map->map_type;
2158 info.id = map->id;
2159 info.key_size = map->key_size;
2160 info.value_size = map->value_size;
2161 info.max_entries = map->max_entries;
2162 info.map_flags = map->map_flags;
Martin KaFai Lauad5b1772017-09-27 14:37:53 -07002163 memcpy(info.name, map->name, sizeof(map->name));
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002164
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002165 if (map->btf) {
2166 info.btf_id = btf_id(map->btf);
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -07002167 info.btf_key_type_id = map->btf_key_type_id;
2168 info.btf_value_type_id = map->btf_value_type_id;
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002169 }
2170
Jakub Kicinski52775b32018-01-17 19:13:28 -08002171 if (bpf_map_is_dev_bound(map)) {
2172 err = bpf_map_offload_info_fill(&info, map);
2173 if (err)
2174 return err;
2175 }
2176
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002177 if (copy_to_user(uinfo, &info, info_len) ||
2178 put_user(info_len, &uattr->info.info_len))
2179 return -EFAULT;
2180
2181 return 0;
2182}
2183
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002184static int bpf_btf_get_info_by_fd(struct btf *btf,
2185 const union bpf_attr *attr,
2186 union bpf_attr __user *uattr)
2187{
2188 struct bpf_btf_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2189 u32 info_len = attr->info.info_len;
2190 int err;
2191
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002192 err = bpf_check_uarg_tail_zero(uinfo, sizeof(*uinfo), info_len);
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002193 if (err)
2194 return err;
2195
2196 return btf_get_info_by_fd(btf, attr, uattr);
2197}
2198
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002199#define BPF_OBJ_GET_INFO_BY_FD_LAST_FIELD info.info
2200
2201static int bpf_obj_get_info_by_fd(const union bpf_attr *attr,
2202 union bpf_attr __user *uattr)
2203{
2204 int ufd = attr->info.bpf_fd;
2205 struct fd f;
2206 int err;
2207
2208 if (CHECK_ATTR(BPF_OBJ_GET_INFO_BY_FD))
2209 return -EINVAL;
2210
2211 f = fdget(ufd);
2212 if (!f.file)
2213 return -EBADFD;
2214
2215 if (f.file->f_op == &bpf_prog_fops)
2216 err = bpf_prog_get_info_by_fd(f.file->private_data, attr,
2217 uattr);
2218 else if (f.file->f_op == &bpf_map_fops)
2219 err = bpf_map_get_info_by_fd(f.file->private_data, attr,
2220 uattr);
Martin KaFai Lau60197cf2018-04-18 15:56:02 -07002221 else if (f.file->f_op == &btf_fops)
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002222 err = bpf_btf_get_info_by_fd(f.file->private_data, attr, uattr);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002223 else
2224 err = -EINVAL;
2225
2226 fdput(f);
2227 return err;
2228}
2229
Martin KaFai Lauf56a6532018-04-18 15:56:01 -07002230#define BPF_BTF_LOAD_LAST_FIELD btf_log_level
2231
2232static int bpf_btf_load(const union bpf_attr *attr)
2233{
2234 if (CHECK_ATTR(BPF_BTF_LOAD))
2235 return -EINVAL;
2236
2237 if (!capable(CAP_SYS_ADMIN))
2238 return -EPERM;
2239
2240 return btf_new_fd(attr);
2241}
2242
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002243#define BPF_BTF_GET_FD_BY_ID_LAST_FIELD btf_id
2244
2245static int bpf_btf_get_fd_by_id(const union bpf_attr *attr)
2246{
2247 if (CHECK_ATTR(BPF_BTF_GET_FD_BY_ID))
2248 return -EINVAL;
2249
2250 if (!capable(CAP_SYS_ADMIN))
2251 return -EPERM;
2252
2253 return btf_get_fd_by_id(attr->btf_id);
2254}
2255
Yonghong Song41bdc4b2018-05-24 11:21:09 -07002256static int bpf_task_fd_query_copy(const union bpf_attr *attr,
2257 union bpf_attr __user *uattr,
2258 u32 prog_id, u32 fd_type,
2259 const char *buf, u64 probe_offset,
2260 u64 probe_addr)
2261{
2262 char __user *ubuf = u64_to_user_ptr(attr->task_fd_query.buf);
2263 u32 len = buf ? strlen(buf) : 0, input_len;
2264 int err = 0;
2265
2266 if (put_user(len, &uattr->task_fd_query.buf_len))
2267 return -EFAULT;
2268 input_len = attr->task_fd_query.buf_len;
2269 if (input_len && ubuf) {
2270 if (!len) {
2271 /* nothing to copy, just make ubuf NULL terminated */
2272 char zero = '\0';
2273
2274 if (put_user(zero, ubuf))
2275 return -EFAULT;
2276 } else if (input_len >= len + 1) {
2277 /* ubuf can hold the string with NULL terminator */
2278 if (copy_to_user(ubuf, buf, len + 1))
2279 return -EFAULT;
2280 } else {
2281 /* ubuf cannot hold the string with NULL terminator,
2282 * do a partial copy with NULL terminator.
2283 */
2284 char zero = '\0';
2285
2286 err = -ENOSPC;
2287 if (copy_to_user(ubuf, buf, input_len - 1))
2288 return -EFAULT;
2289 if (put_user(zero, ubuf + input_len - 1))
2290 return -EFAULT;
2291 }
2292 }
2293
2294 if (put_user(prog_id, &uattr->task_fd_query.prog_id) ||
2295 put_user(fd_type, &uattr->task_fd_query.fd_type) ||
2296 put_user(probe_offset, &uattr->task_fd_query.probe_offset) ||
2297 put_user(probe_addr, &uattr->task_fd_query.probe_addr))
2298 return -EFAULT;
2299
2300 return err;
2301}
2302
2303#define BPF_TASK_FD_QUERY_LAST_FIELD task_fd_query.probe_addr
2304
2305static int bpf_task_fd_query(const union bpf_attr *attr,
2306 union bpf_attr __user *uattr)
2307{
2308 pid_t pid = attr->task_fd_query.pid;
2309 u32 fd = attr->task_fd_query.fd;
2310 const struct perf_event *event;
2311 struct files_struct *files;
2312 struct task_struct *task;
2313 struct file *file;
2314 int err;
2315
2316 if (CHECK_ATTR(BPF_TASK_FD_QUERY))
2317 return -EINVAL;
2318
2319 if (!capable(CAP_SYS_ADMIN))
2320 return -EPERM;
2321
2322 if (attr->task_fd_query.flags != 0)
2323 return -EINVAL;
2324
2325 task = get_pid_task(find_vpid(pid), PIDTYPE_PID);
2326 if (!task)
2327 return -ENOENT;
2328
2329 files = get_files_struct(task);
2330 put_task_struct(task);
2331 if (!files)
2332 return -ENOENT;
2333
2334 err = 0;
2335 spin_lock(&files->file_lock);
2336 file = fcheck_files(files, fd);
2337 if (!file)
2338 err = -EBADF;
2339 else
2340 get_file(file);
2341 spin_unlock(&files->file_lock);
2342 put_files_struct(files);
2343
2344 if (err)
2345 goto out;
2346
2347 if (file->f_op == &bpf_raw_tp_fops) {
2348 struct bpf_raw_tracepoint *raw_tp = file->private_data;
2349 struct bpf_raw_event_map *btp = raw_tp->btp;
2350
2351 err = bpf_task_fd_query_copy(attr, uattr,
2352 raw_tp->prog->aux->id,
2353 BPF_FD_TYPE_RAW_TRACEPOINT,
2354 btp->tp->name, 0, 0);
2355 goto put_file;
2356 }
2357
2358 event = perf_get_event(file);
2359 if (!IS_ERR(event)) {
2360 u64 probe_offset, probe_addr;
2361 u32 prog_id, fd_type;
2362 const char *buf;
2363
2364 err = bpf_get_perf_event_info(event, &prog_id, &fd_type,
2365 &buf, &probe_offset,
2366 &probe_addr);
2367 if (!err)
2368 err = bpf_task_fd_query_copy(attr, uattr, prog_id,
2369 fd_type, buf,
2370 probe_offset,
2371 probe_addr);
2372 goto put_file;
2373 }
2374
2375 err = -ENOTSUPP;
2376put_file:
2377 fput(file);
2378out:
2379 return err;
2380}
2381
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002382SYSCALL_DEFINE3(bpf, int, cmd, union bpf_attr __user *, uattr, unsigned int, size)
2383{
2384 union bpf_attr attr = {};
2385 int err;
2386
Chenbo Feng0fa4fe82018-03-19 17:57:27 -07002387 if (sysctl_unprivileged_bpf_disabled && !capable(CAP_SYS_ADMIN))
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002388 return -EPERM;
2389
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002390 err = bpf_check_uarg_tail_zero(uattr, sizeof(attr), size);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002391 if (err)
2392 return err;
2393 size = min_t(u32, size, sizeof(attr));
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002394
2395 /* copy attributes from user space, may be less than sizeof(bpf_attr) */
2396 if (copy_from_user(&attr, uattr, size) != 0)
2397 return -EFAULT;
2398
Chenbo Fengafdb09c2017-10-18 13:00:24 -07002399 err = security_bpf(cmd, &attr, size);
2400 if (err < 0)
2401 return err;
2402
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002403 switch (cmd) {
2404 case BPF_MAP_CREATE:
2405 err = map_create(&attr);
2406 break;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -07002407 case BPF_MAP_LOOKUP_ELEM:
2408 err = map_lookup_elem(&attr);
2409 break;
2410 case BPF_MAP_UPDATE_ELEM:
2411 err = map_update_elem(&attr);
2412 break;
2413 case BPF_MAP_DELETE_ELEM:
2414 err = map_delete_elem(&attr);
2415 break;
2416 case BPF_MAP_GET_NEXT_KEY:
2417 err = map_get_next_key(&attr);
2418 break;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07002419 case BPF_PROG_LOAD:
2420 err = bpf_prog_load(&attr);
2421 break;
Daniel Borkmannb2197752015-10-29 14:58:09 +01002422 case BPF_OBJ_PIN:
2423 err = bpf_obj_pin(&attr);
2424 break;
2425 case BPF_OBJ_GET:
2426 err = bpf_obj_get(&attr);
2427 break;
Daniel Mackf4324552016-11-23 16:52:27 +01002428 case BPF_PROG_ATTACH:
2429 err = bpf_prog_attach(&attr);
2430 break;
2431 case BPF_PROG_DETACH:
2432 err = bpf_prog_detach(&attr);
2433 break;
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07002434 case BPF_PROG_QUERY:
2435 err = bpf_prog_query(&attr, uattr);
2436 break;
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07002437 case BPF_PROG_TEST_RUN:
2438 err = bpf_prog_test_run(&attr, uattr);
2439 break;
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07002440 case BPF_PROG_GET_NEXT_ID:
2441 err = bpf_obj_get_next_id(&attr, uattr,
2442 &prog_idr, &prog_idr_lock);
2443 break;
2444 case BPF_MAP_GET_NEXT_ID:
2445 err = bpf_obj_get_next_id(&attr, uattr,
2446 &map_idr, &map_idr_lock);
2447 break;
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07002448 case BPF_PROG_GET_FD_BY_ID:
2449 err = bpf_prog_get_fd_by_id(&attr);
2450 break;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07002451 case BPF_MAP_GET_FD_BY_ID:
2452 err = bpf_map_get_fd_by_id(&attr);
2453 break;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002454 case BPF_OBJ_GET_INFO_BY_FD:
2455 err = bpf_obj_get_info_by_fd(&attr, uattr);
2456 break;
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07002457 case BPF_RAW_TRACEPOINT_OPEN:
2458 err = bpf_raw_tracepoint_open(&attr);
2459 break;
Martin KaFai Lauf56a6532018-04-18 15:56:01 -07002460 case BPF_BTF_LOAD:
2461 err = bpf_btf_load(&attr);
2462 break;
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002463 case BPF_BTF_GET_FD_BY_ID:
2464 err = bpf_btf_get_fd_by_id(&attr);
2465 break;
Yonghong Song41bdc4b2018-05-24 11:21:09 -07002466 case BPF_TASK_FD_QUERY:
2467 err = bpf_task_fd_query(&attr, uattr);
2468 break;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002469 default:
2470 err = -EINVAL;
2471 break;
2472 }
2473
2474 return err;
2475}