blob: 5af4e9e2722dbf8b0e745f0b321d8d05ac6bbf17 [file] [log] [blame]
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07001/* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com
2 *
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of version 2 of the GNU General Public
5 * License as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful, but
8 * WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 * General Public License for more details.
11 */
12#include <linux/bpf.h>
Daniel Borkmanna67edbf2017-01-25 02:28:18 +010013#include <linux/bpf_trace.h>
Sean Youngf4364dc2018-05-27 12:24:09 +010014#include <linux/bpf_lirc.h>
Martin KaFai Lauf56a6532018-04-18 15:56:01 -070015#include <linux/btf.h>
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070016#include <linux/syscalls.h>
17#include <linux/slab.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010018#include <linux/sched/signal.h>
Daniel Borkmannd407bd22017-01-18 15:14:17 +010019#include <linux/vmalloc.h>
20#include <linux/mmzone.h>
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070021#include <linux/anon_inodes.h>
Yonghong Song41bdc4b2018-05-24 11:21:09 -070022#include <linux/fdtable.h>
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -070023#include <linux/file.h>
Yonghong Song41bdc4b2018-05-24 11:21:09 -070024#include <linux/fs.h>
Alexei Starovoitov09756af2014-09-26 00:17:00 -070025#include <linux/license.h>
26#include <linux/filter.h>
Alexei Starovoitov25415172015-03-25 12:49:20 -070027#include <linux/version.h>
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +010028#include <linux/kernel.h>
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -070029#include <linux/idr.h>
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -070030#include <linux/cred.h>
31#include <linux/timekeeping.h>
32#include <linux/ctype.h>
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -070033#include <linux/btf.h>
Mark Rutland9ef09e32018-05-03 17:04:59 +010034#include <linux/nospec.h>
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070035
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -070036#define IS_FD_ARRAY(map) ((map)->map_type == BPF_MAP_TYPE_PROG_ARRAY || \
37 (map)->map_type == BPF_MAP_TYPE_PERF_EVENT_ARRAY || \
38 (map)->map_type == BPF_MAP_TYPE_CGROUP_ARRAY || \
39 (map)->map_type == BPF_MAP_TYPE_ARRAY_OF_MAPS)
40#define IS_FD_HASH(map) ((map)->map_type == BPF_MAP_TYPE_HASH_OF_MAPS)
41#define IS_FD_MAP(map) (IS_FD_ARRAY(map) || IS_FD_HASH(map))
42
Chenbo Feng6e71b042017-10-18 13:00:22 -070043#define BPF_OBJ_FLAG_MASK (BPF_F_RDONLY | BPF_F_WRONLY)
44
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -080045DEFINE_PER_CPU(int, bpf_prog_active);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -070046static DEFINE_IDR(prog_idr);
47static DEFINE_SPINLOCK(prog_idr_lock);
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -070048static DEFINE_IDR(map_idr);
49static DEFINE_SPINLOCK(map_idr_lock);
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -080050
Alexei Starovoitov1be7f752015-10-07 22:23:21 -070051int sysctl_unprivileged_bpf_disabled __read_mostly;
52
Johannes Berg40077e02017-04-11 15:34:58 +020053static const struct bpf_map_ops * const bpf_map_types[] = {
54#define BPF_PROG_TYPE(_id, _ops)
55#define BPF_MAP_TYPE(_id, _ops) \
56 [_id] = &_ops,
57#include <linux/bpf_types.h>
58#undef BPF_PROG_TYPE
59#undef BPF_MAP_TYPE
60};
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070061
Mickaël Salaün752ba562017-08-07 20:45:20 +020062/*
63 * If we're handed a bigger struct than we know of, ensure all the unknown bits
64 * are 0 - i.e. new user-space does not rely on any kernel feature extensions
65 * we don't know about yet.
66 *
67 * There is a ToCToU between this function call and the following
68 * copy_from_user() call. However, this is not a concern since this function is
69 * meant to be a future-proofing of bits.
70 */
Martin KaFai Laudcab51f2018-05-22 15:03:31 -070071int bpf_check_uarg_tail_zero(void __user *uaddr,
72 size_t expected_size,
73 size_t actual_size)
Mickaël Salaün58291a72017-08-07 20:45:19 +020074{
75 unsigned char __user *addr;
76 unsigned char __user *end;
77 unsigned char val;
78 int err;
79
Mickaël Salaün752ba562017-08-07 20:45:20 +020080 if (unlikely(actual_size > PAGE_SIZE)) /* silly large */
81 return -E2BIG;
82
83 if (unlikely(!access_ok(VERIFY_READ, uaddr, actual_size)))
84 return -EFAULT;
85
Mickaël Salaün58291a72017-08-07 20:45:19 +020086 if (actual_size <= expected_size)
87 return 0;
88
89 addr = uaddr + expected_size;
90 end = uaddr + actual_size;
91
92 for (; addr < end; addr++) {
93 err = get_user(val, addr);
94 if (err)
95 return err;
96 if (val)
97 return -E2BIG;
98 }
99
100 return 0;
101}
102
Jakub Kicinskia3884572018-01-11 20:29:09 -0800103const struct bpf_map_ops bpf_map_offload_ops = {
104 .map_alloc = bpf_map_offload_map_alloc,
105 .map_free = bpf_map_offload_map_free,
106};
107
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700108static struct bpf_map *find_and_alloc_map(union bpf_attr *attr)
109{
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800110 const struct bpf_map_ops *ops;
Mark Rutland9ef09e32018-05-03 17:04:59 +0100111 u32 type = attr->map_type;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700112 struct bpf_map *map;
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800113 int err;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700114
Mark Rutland9ef09e32018-05-03 17:04:59 +0100115 if (type >= ARRAY_SIZE(bpf_map_types))
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800116 return ERR_PTR(-EINVAL);
Mark Rutland9ef09e32018-05-03 17:04:59 +0100117 type = array_index_nospec(type, ARRAY_SIZE(bpf_map_types));
118 ops = bpf_map_types[type];
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800119 if (!ops)
Johannes Berg40077e02017-04-11 15:34:58 +0200120 return ERR_PTR(-EINVAL);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700121
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800122 if (ops->map_alloc_check) {
123 err = ops->map_alloc_check(attr);
124 if (err)
125 return ERR_PTR(err);
126 }
Jakub Kicinskia3884572018-01-11 20:29:09 -0800127 if (attr->map_ifindex)
128 ops = &bpf_map_offload_ops;
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800129 map = ops->map_alloc(attr);
Johannes Berg40077e02017-04-11 15:34:58 +0200130 if (IS_ERR(map))
131 return map;
Jakub Kicinski1110f3a2018-01-11 20:29:03 -0800132 map->ops = ops;
Mark Rutland9ef09e32018-05-03 17:04:59 +0100133 map->map_type = type;
Johannes Berg40077e02017-04-11 15:34:58 +0200134 return map;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700135}
136
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700137void *bpf_map_area_alloc(size_t size, int numa_node)
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100138{
139 /* We definitely need __GFP_NORETRY, so OOM killer doesn't
140 * trigger under memory pressure as we really just want to
141 * fail instead.
142 */
143 const gfp_t flags = __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO;
144 void *area;
145
146 if (size <= (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER)) {
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700147 area = kmalloc_node(size, GFP_USER | flags, numa_node);
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100148 if (area != NULL)
149 return area;
150 }
151
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700152 return __vmalloc_node_flags_caller(size, numa_node, GFP_KERNEL | flags,
153 __builtin_return_address(0));
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100154}
155
156void bpf_map_area_free(void *area)
157{
158 kvfree(area);
159}
160
Jakub Kicinskibd475642018-01-11 20:29:06 -0800161void bpf_map_init_from_attr(struct bpf_map *map, union bpf_attr *attr)
162{
163 map->map_type = attr->map_type;
164 map->key_size = attr->key_size;
165 map->value_size = attr->value_size;
166 map->max_entries = attr->max_entries;
167 map->map_flags = attr->map_flags;
168 map->numa_node = bpf_map_attr_numa_node(attr);
169}
170
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800171int bpf_map_precharge_memlock(u32 pages)
172{
173 struct user_struct *user = get_current_user();
174 unsigned long memlock_limit, cur;
175
176 memlock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
177 cur = atomic_long_read(&user->locked_vm);
178 free_uid(user);
179 if (cur + pages > memlock_limit)
180 return -EPERM;
181 return 0;
182}
183
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
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700458#define BPF_MAP_CREATE_LAST_FIELD btf_value_type_id
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700459/* called via syscall */
460static int map_create(union bpf_attr *attr)
461{
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700462 int numa_node = bpf_map_attr_numa_node(attr);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700463 struct bpf_map *map;
Chenbo Feng6e71b042017-10-18 13:00:22 -0700464 int f_flags;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700465 int err;
466
467 err = CHECK_ATTR(BPF_MAP_CREATE);
468 if (err)
469 return -EINVAL;
470
Chenbo Feng6e71b042017-10-18 13:00:22 -0700471 f_flags = bpf_get_file_flag(attr->map_flags);
472 if (f_flags < 0)
473 return f_flags;
474
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700475 if (numa_node != NUMA_NO_NODE &&
Eric Dumazet96e5ae42017-09-04 22:41:02 -0700476 ((unsigned int)numa_node >= nr_node_ids ||
477 !node_online(numa_node)))
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700478 return -EINVAL;
479
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700480 /* find map type and init map: hashtable vs rbtree vs bloom vs ... */
481 map = find_and_alloc_map(attr);
482 if (IS_ERR(map))
483 return PTR_ERR(map);
484
Martin KaFai Lauad5b1772017-09-27 14:37:53 -0700485 err = bpf_obj_name_cpy(map->name, attr->map_name);
486 if (err)
487 goto free_map_nouncharge;
488
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700489 atomic_set(&map->refcnt, 1);
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100490 atomic_set(&map->usercnt, 1);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700491
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700492 if (bpf_map_support_seq_show(map) &&
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700493 (attr->btf_key_type_id || attr->btf_value_type_id)) {
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700494 struct btf *btf;
495
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700496 if (!attr->btf_key_type_id || !attr->btf_value_type_id) {
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700497 err = -EINVAL;
498 goto free_map_nouncharge;
499 }
500
501 btf = btf_get_by_fd(attr->btf_fd);
502 if (IS_ERR(btf)) {
503 err = PTR_ERR(btf);
504 goto free_map_nouncharge;
505 }
506
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700507 err = map->ops->map_check_btf(map, btf, attr->btf_key_type_id,
508 attr->btf_value_type_id);
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700509 if (err) {
510 btf_put(btf);
511 goto free_map_nouncharge;
512 }
513
514 map->btf = btf;
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -0700515 map->btf_key_type_id = attr->btf_key_type_id;
516 map->btf_value_type_id = attr->btf_value_type_id;
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700517 }
518
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700519 err = security_bpf_map_alloc(map);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700520 if (err)
Daniel Borkmann20b2b242016-11-04 00:56:31 +0100521 goto free_map_nouncharge;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700522
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700523 err = bpf_map_init_memlock(map);
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700524 if (err)
525 goto free_map_sec;
526
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -0700527 err = bpf_map_alloc_id(map);
528 if (err)
529 goto free_map;
530
Chenbo Feng6e71b042017-10-18 13:00:22 -0700531 err = bpf_map_new_fd(map, f_flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700532 if (err < 0) {
533 /* failed to allocate fd.
534 * bpf_map_put() is needed because the above
535 * bpf_map_alloc_id() has published the map
536 * to the userspace and the userspace may
537 * have refcnt-ed it through BPF_MAP_GET_FD_BY_ID.
538 */
539 bpf_map_put(map);
540 return err;
541 }
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700542
543 return err;
544
545free_map:
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700546 bpf_map_release_memlock(map);
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700547free_map_sec:
548 security_bpf_map_free(map);
Daniel Borkmann20b2b242016-11-04 00:56:31 +0100549free_map_nouncharge:
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700550 btf_put(map->btf);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700551 map->ops->map_free(map);
552 return err;
553}
554
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700555/* if error is returned, fd is released.
556 * On success caller should complete fd access with matching fdput()
557 */
Daniel Borkmannc2101292015-10-29 14:58:07 +0100558struct bpf_map *__bpf_map_get(struct fd f)
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700559{
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700560 if (!f.file)
561 return ERR_PTR(-EBADF);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700562 if (f.file->f_op != &bpf_map_fops) {
563 fdput(f);
564 return ERR_PTR(-EINVAL);
565 }
566
Daniel Borkmannc2101292015-10-29 14:58:07 +0100567 return f.file->private_data;
568}
569
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700570/* prog's and map's refcnt limit */
571#define BPF_MAX_REFCNT 32768
572
573struct bpf_map *bpf_map_inc(struct bpf_map *map, bool uref)
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100574{
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700575 if (atomic_inc_return(&map->refcnt) > BPF_MAX_REFCNT) {
576 atomic_dec(&map->refcnt);
577 return ERR_PTR(-EBUSY);
578 }
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100579 if (uref)
580 atomic_inc(&map->usercnt);
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700581 return map;
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100582}
Jakub Kicinski630a4d32018-05-03 18:37:09 -0700583EXPORT_SYMBOL_GPL(bpf_map_inc);
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100584
585struct bpf_map *bpf_map_get_with_uref(u32 ufd)
Daniel Borkmannc2101292015-10-29 14:58:07 +0100586{
587 struct fd f = fdget(ufd);
588 struct bpf_map *map;
589
590 map = __bpf_map_get(f);
591 if (IS_ERR(map))
592 return map;
593
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700594 map = bpf_map_inc(map, true);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100595 fdput(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700596
597 return map;
598}
599
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -0700600/* map_idr_lock should have been held */
601static struct bpf_map *bpf_map_inc_not_zero(struct bpf_map *map,
602 bool uref)
603{
604 int refold;
605
606 refold = __atomic_add_unless(&map->refcnt, 1, 0);
607
608 if (refold >= BPF_MAX_REFCNT) {
609 __bpf_map_put(map, false);
610 return ERR_PTR(-EBUSY);
611 }
612
613 if (!refold)
614 return ERR_PTR(-ENOENT);
615
616 if (uref)
617 atomic_inc(&map->usercnt);
618
619 return map;
620}
621
Alexei Starovoitovb8cdc052016-03-09 18:56:49 -0800622int __weak bpf_stackmap_copy(struct bpf_map *map, void *key, void *value)
623{
624 return -ENOTSUPP;
625}
626
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700627/* last field in 'union bpf_attr' used by this command */
628#define BPF_MAP_LOOKUP_ELEM_LAST_FIELD value
629
630static int map_lookup_elem(union bpf_attr *attr)
631{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100632 void __user *ukey = u64_to_user_ptr(attr->key);
633 void __user *uvalue = u64_to_user_ptr(attr->value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700634 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700635 struct bpf_map *map;
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800636 void *key, *value, *ptr;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800637 u32 value_size;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200638 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700639 int err;
640
641 if (CHECK_ATTR(BPF_MAP_LOOKUP_ELEM))
642 return -EINVAL;
643
Daniel Borkmann592867b2015-09-08 18:00:09 +0200644 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100645 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700646 if (IS_ERR(map))
647 return PTR_ERR(map);
648
Chenbo Feng6e71b042017-10-18 13:00:22 -0700649 if (!(f.file->f_mode & FMODE_CAN_READ)) {
650 err = -EPERM;
651 goto err_put;
652 }
653
Al Viroe4448ed2017-05-13 18:43:00 -0400654 key = memdup_user(ukey, map->key_size);
655 if (IS_ERR(key)) {
656 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700657 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400658 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700659
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800660 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800661 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH ||
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800662 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY)
663 value_size = round_up(map->value_size, 8) * num_possible_cpus();
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -0700664 else if (IS_FD_MAP(map))
665 value_size = sizeof(u32);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800666 else
667 value_size = map->value_size;
668
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800669 err = -ENOMEM;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800670 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700671 if (!value)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800672 goto free_key;
673
Jakub Kicinskia3884572018-01-11 20:29:09 -0800674 if (bpf_map_is_dev_bound(map)) {
675 err = bpf_map_offload_lookup_elem(map, key, value);
676 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
677 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) {
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800678 err = bpf_percpu_hash_copy(map, key, value);
679 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) {
680 err = bpf_percpu_array_copy(map, key, value);
Alexei Starovoitov557c0c62016-03-07 21:57:17 -0800681 } else if (map->map_type == BPF_MAP_TYPE_STACK_TRACE) {
682 err = bpf_stackmap_copy(map, key, value);
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -0700683 } else if (IS_FD_ARRAY(map)) {
684 err = bpf_fd_array_map_lookup_elem(map, key, value);
685 } else if (IS_FD_HASH(map)) {
686 err = bpf_fd_htab_map_lookup_elem(map, key, value);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800687 } else {
688 rcu_read_lock();
689 ptr = map->ops->map_lookup_elem(map, key);
690 if (ptr)
691 memcpy(value, ptr, value_size);
692 rcu_read_unlock();
693 err = ptr ? 0 : -ENOENT;
694 }
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800695
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800696 if (err)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800697 goto free_value;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700698
699 err = -EFAULT;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800700 if (copy_to_user(uvalue, value, value_size) != 0)
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800701 goto free_value;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700702
703 err = 0;
704
Alexei Starovoitov8ebe6672015-01-22 17:11:08 -0800705free_value:
706 kfree(value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700707free_key:
708 kfree(key);
709err_put:
710 fdput(f);
711 return err;
712}
713
Alexei Starovoitov3274f522014-11-13 17:36:44 -0800714#define BPF_MAP_UPDATE_ELEM_LAST_FIELD flags
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700715
716static int map_update_elem(union bpf_attr *attr)
717{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100718 void __user *ukey = u64_to_user_ptr(attr->key);
719 void __user *uvalue = u64_to_user_ptr(attr->value);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700720 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700721 struct bpf_map *map;
722 void *key, *value;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800723 u32 value_size;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200724 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700725 int err;
726
727 if (CHECK_ATTR(BPF_MAP_UPDATE_ELEM))
728 return -EINVAL;
729
Daniel Borkmann592867b2015-09-08 18:00:09 +0200730 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100731 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700732 if (IS_ERR(map))
733 return PTR_ERR(map);
734
Chenbo Feng6e71b042017-10-18 13:00:22 -0700735 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
736 err = -EPERM;
737 goto err_put;
738 }
739
Al Viroe4448ed2017-05-13 18:43:00 -0400740 key = memdup_user(ukey, map->key_size);
741 if (IS_ERR(key)) {
742 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700743 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400744 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700745
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800746 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800747 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH ||
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800748 map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY)
749 value_size = round_up(map->value_size, 8) * num_possible_cpus();
750 else
751 value_size = map->value_size;
752
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700753 err = -ENOMEM;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800754 value = kmalloc(value_size, GFP_USER | __GFP_NOWARN);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700755 if (!value)
756 goto free_key;
757
758 err = -EFAULT;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800759 if (copy_from_user(value, uvalue, value_size) != 0)
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700760 goto free_value;
761
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200762 /* Need to create a kthread, thus must support schedule */
Jakub Kicinskia3884572018-01-11 20:29:09 -0800763 if (bpf_map_is_dev_bound(map)) {
764 err = bpf_map_offload_update_elem(map, key, value, attr->flags);
765 goto out;
John Fastabend99ba2b52018-07-05 08:50:04 -0700766 } else if (map->map_type == BPF_MAP_TYPE_CPUMAP ||
767 map->map_type == BPF_MAP_TYPE_SOCKHASH ||
768 map->map_type == BPF_MAP_TYPE_SOCKMAP) {
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200769 err = map->ops->map_update_elem(map, key, value, attr->flags);
770 goto out;
771 }
772
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800773 /* must increment bpf_prog_active to avoid kprobe+bpf triggering from
774 * inside bpf map update or delete otherwise deadlocks are possible
775 */
776 preempt_disable();
777 __this_cpu_inc(bpf_prog_active);
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800778 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
779 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) {
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800780 err = bpf_percpu_hash_update(map, key, value, attr->flags);
781 } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) {
782 err = bpf_percpu_array_update(map, key, value, attr->flags);
Mickaël Salaün9c147b52018-01-26 00:54:02 +0100783 } else if (IS_FD_ARRAY(map)) {
Daniel Borkmannd056a782016-06-15 22:47:13 +0200784 rcu_read_lock();
785 err = bpf_fd_array_map_update_elem(map, f.file, key, value,
786 attr->flags);
787 rcu_read_unlock();
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700788 } else if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS) {
789 rcu_read_lock();
790 err = bpf_fd_htab_map_update_elem(map, f.file, key, value,
791 attr->flags);
792 rcu_read_unlock();
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800793 } else {
794 rcu_read_lock();
795 err = map->ops->map_update_elem(map, key, value, attr->flags);
796 rcu_read_unlock();
797 }
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800798 __this_cpu_dec(bpf_prog_active);
799 preempt_enable();
Jesper Dangaard Brouer6710e112017-10-16 12:19:28 +0200800out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700801free_value:
802 kfree(value);
803free_key:
804 kfree(key);
805err_put:
806 fdput(f);
807 return err;
808}
809
810#define BPF_MAP_DELETE_ELEM_LAST_FIELD key
811
812static int map_delete_elem(union bpf_attr *attr)
813{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100814 void __user *ukey = u64_to_user_ptr(attr->key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700815 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700816 struct bpf_map *map;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200817 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700818 void *key;
819 int err;
820
821 if (CHECK_ATTR(BPF_MAP_DELETE_ELEM))
822 return -EINVAL;
823
Daniel Borkmann592867b2015-09-08 18:00:09 +0200824 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100825 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700826 if (IS_ERR(map))
827 return PTR_ERR(map);
828
Chenbo Feng6e71b042017-10-18 13:00:22 -0700829 if (!(f.file->f_mode & FMODE_CAN_WRITE)) {
830 err = -EPERM;
831 goto err_put;
832 }
833
Al Viroe4448ed2017-05-13 18:43:00 -0400834 key = memdup_user(ukey, map->key_size);
835 if (IS_ERR(key)) {
836 err = PTR_ERR(key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700837 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400838 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700839
Jakub Kicinskia3884572018-01-11 20:29:09 -0800840 if (bpf_map_is_dev_bound(map)) {
841 err = bpf_map_offload_delete_elem(map, key);
842 goto out;
843 }
844
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800845 preempt_disable();
846 __this_cpu_inc(bpf_prog_active);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700847 rcu_read_lock();
848 err = map->ops->map_delete_elem(map, key);
849 rcu_read_unlock();
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800850 __this_cpu_dec(bpf_prog_active);
851 preempt_enable();
Jakub Kicinskia3884572018-01-11 20:29:09 -0800852out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700853 kfree(key);
854err_put:
855 fdput(f);
856 return err;
857}
858
859/* last field in 'union bpf_attr' used by this command */
860#define BPF_MAP_GET_NEXT_KEY_LAST_FIELD next_key
861
862static int map_get_next_key(union bpf_attr *attr)
863{
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +0100864 void __user *ukey = u64_to_user_ptr(attr->key);
865 void __user *unext_key = u64_to_user_ptr(attr->next_key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700866 int ufd = attr->map_fd;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700867 struct bpf_map *map;
868 void *key, *next_key;
Daniel Borkmann592867b2015-09-08 18:00:09 +0200869 struct fd f;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700870 int err;
871
872 if (CHECK_ATTR(BPF_MAP_GET_NEXT_KEY))
873 return -EINVAL;
874
Daniel Borkmann592867b2015-09-08 18:00:09 +0200875 f = fdget(ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100876 map = __bpf_map_get(f);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700877 if (IS_ERR(map))
878 return PTR_ERR(map);
879
Chenbo Feng6e71b042017-10-18 13:00:22 -0700880 if (!(f.file->f_mode & FMODE_CAN_READ)) {
881 err = -EPERM;
882 goto err_put;
883 }
884
Teng Qin8fe45922017-04-24 19:00:37 -0700885 if (ukey) {
Al Viroe4448ed2017-05-13 18:43:00 -0400886 key = memdup_user(ukey, map->key_size);
887 if (IS_ERR(key)) {
888 err = PTR_ERR(key);
Teng Qin8fe45922017-04-24 19:00:37 -0700889 goto err_put;
Al Viroe4448ed2017-05-13 18:43:00 -0400890 }
Teng Qin8fe45922017-04-24 19:00:37 -0700891 } else {
892 key = NULL;
893 }
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700894
895 err = -ENOMEM;
896 next_key = kmalloc(map->key_size, GFP_USER);
897 if (!next_key)
898 goto free_key;
899
Jakub Kicinskia3884572018-01-11 20:29:09 -0800900 if (bpf_map_is_dev_bound(map)) {
901 err = bpf_map_offload_get_next_key(map, key, next_key);
902 goto out;
903 }
904
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700905 rcu_read_lock();
906 err = map->ops->map_get_next_key(map, key, next_key);
907 rcu_read_unlock();
Jakub Kicinskia3884572018-01-11 20:29:09 -0800908out:
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -0700909 if (err)
910 goto free_next_key;
911
912 err = -EFAULT;
913 if (copy_to_user(unext_key, next_key, map->key_size) != 0)
914 goto free_next_key;
915
916 err = 0;
917
918free_next_key:
919 kfree(next_key);
920free_key:
921 kfree(key);
922err_put:
923 fdput(f);
924 return err;
925}
926
Jakub Kicinski7de16e32017-10-16 16:40:53 -0700927static const struct bpf_prog_ops * const bpf_prog_types[] = {
928#define BPF_PROG_TYPE(_id, _name) \
929 [_id] = & _name ## _prog_ops,
930#define BPF_MAP_TYPE(_id, _ops)
931#include <linux/bpf_types.h>
932#undef BPF_PROG_TYPE
933#undef BPF_MAP_TYPE
934};
935
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700936static int find_prog_type(enum bpf_prog_type type, struct bpf_prog *prog)
937{
Daniel Borkmannd0f1a452018-05-04 02:13:57 +0200938 const struct bpf_prog_ops *ops;
939
940 if (type >= ARRAY_SIZE(bpf_prog_types))
941 return -EINVAL;
942 type = array_index_nospec(type, ARRAY_SIZE(bpf_prog_types));
943 ops = bpf_prog_types[type];
944 if (!ops)
Johannes Bergbe9370a2017-04-11 15:34:57 +0200945 return -EINVAL;
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700946
Jakub Kicinskiab3f0062017-11-03 13:56:17 -0700947 if (!bpf_prog_is_dev_bound(prog->aux))
Daniel Borkmannd0f1a452018-05-04 02:13:57 +0200948 prog->aux->ops = ops;
Jakub Kicinskiab3f0062017-11-03 13:56:17 -0700949 else
950 prog->aux->ops = &bpf_offload_prog_ops;
Johannes Bergbe9370a2017-04-11 15:34:57 +0200951 prog->type = type;
952 return 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700953}
954
955/* drop refcnt on maps used by eBPF program and free auxilary data */
956static void free_used_maps(struct bpf_prog_aux *aux)
957{
958 int i;
959
Roman Gushchinde9cbba2018-08-02 14:27:18 -0700960 if (aux->cgroup_storage)
961 bpf_cgroup_storage_release(aux->prog, aux->cgroup_storage);
962
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700963 for (i = 0; i < aux->used_map_cnt; i++)
964 bpf_map_put(aux->used_maps[i]);
965
966 kfree(aux->used_maps);
967}
968
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100969int __bpf_prog_charge(struct user_struct *user, u32 pages)
970{
971 unsigned long memlock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
972 unsigned long user_bufs;
973
974 if (user) {
975 user_bufs = atomic_long_add_return(pages, &user->locked_vm);
976 if (user_bufs > memlock_limit) {
977 atomic_long_sub(pages, &user->locked_vm);
978 return -EPERM;
979 }
980 }
981
982 return 0;
983}
984
985void __bpf_prog_uncharge(struct user_struct *user, u32 pages)
986{
987 if (user)
988 atomic_long_sub(pages, &user->locked_vm);
989}
990
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700991static int bpf_prog_charge_memlock(struct bpf_prog *prog)
992{
993 struct user_struct *user = get_current_user();
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100994 int ret;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700995
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100996 ret = __bpf_prog_charge(user, prog->pages);
997 if (ret) {
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700998 free_uid(user);
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100999 return ret;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001000 }
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001001
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001002 prog->aux->user = user;
1003 return 0;
1004}
1005
1006static void bpf_prog_uncharge_memlock(struct bpf_prog *prog)
1007{
1008 struct user_struct *user = prog->aux->user;
1009
Daniel Borkmann5ccb0712016-12-18 01:52:58 +01001010 __bpf_prog_uncharge(user, prog->pages);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001011 free_uid(user);
1012}
1013
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001014static int bpf_prog_alloc_id(struct bpf_prog *prog)
1015{
1016 int id;
1017
Shaohua Lib76354c2018-03-27 11:53:21 -07001018 idr_preload(GFP_KERNEL);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001019 spin_lock_bh(&prog_idr_lock);
1020 id = idr_alloc_cyclic(&prog_idr, prog, 1, INT_MAX, GFP_ATOMIC);
1021 if (id > 0)
1022 prog->aux->id = id;
1023 spin_unlock_bh(&prog_idr_lock);
Shaohua Lib76354c2018-03-27 11:53:21 -07001024 idr_preload_end();
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001025
1026 /* id is in [1, INT_MAX) */
1027 if (WARN_ON_ONCE(!id))
1028 return -ENOSPC;
1029
1030 return id > 0 ? 0 : id;
1031}
1032
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001033void bpf_prog_free_id(struct bpf_prog *prog, bool do_idr_lock)
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001034{
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001035 /* cBPF to eBPF migrations are currently not in the idr store.
1036 * Offloaded programs are removed from the store when their device
1037 * disappears - even if someone grabs an fd to them they are unusable,
1038 * simply waiting for refcnt to drop to be freed.
1039 */
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001040 if (!prog->aux->id)
1041 return;
1042
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001043 if (do_idr_lock)
1044 spin_lock_bh(&prog_idr_lock);
1045 else
1046 __acquire(&prog_idr_lock);
1047
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001048 idr_remove(&prog_idr, prog->aux->id);
Jakub Kicinskiad8ad792017-12-27 18:39:07 -08001049 prog->aux->id = 0;
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001050
1051 if (do_idr_lock)
1052 spin_unlock_bh(&prog_idr_lock);
1053 else
1054 __release(&prog_idr_lock);
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001055}
1056
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001057static void __bpf_prog_put_rcu(struct rcu_head *rcu)
Alexei Starovoitovabf2e7d2015-05-28 19:26:02 -07001058{
1059 struct bpf_prog_aux *aux = container_of(rcu, struct bpf_prog_aux, rcu);
1060
1061 free_used_maps(aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001062 bpf_prog_uncharge_memlock(aux->prog);
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001063 security_bpf_prog_free(aux);
Alexei Starovoitovabf2e7d2015-05-28 19:26:02 -07001064 bpf_prog_free(aux->prog);
1065}
1066
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001067static void __bpf_prog_put(struct bpf_prog *prog, bool do_idr_lock)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001068{
Daniel Borkmanna67edbf2017-01-25 02:28:18 +01001069 if (atomic_dec_and_test(&prog->aux->refcnt)) {
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07001070 /* bpf_prog_free_id() must be called first */
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001071 bpf_prog_free_id(prog, do_idr_lock);
Daniel Borkmann7d1982b2018-06-15 02:30:47 +02001072 bpf_prog_kallsyms_del_all(prog);
Daniel Borkmann4f74d802017-12-20 13:42:56 +01001073
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001074 call_rcu(&prog->aux->rcu, __bpf_prog_put_rcu);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +01001075 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001076}
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001077
1078void bpf_prog_put(struct bpf_prog *prog)
1079{
1080 __bpf_prog_put(prog, true);
1081}
Daniel Borkmanne2e9b652015-03-01 12:31:48 +01001082EXPORT_SYMBOL_GPL(bpf_prog_put);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001083
1084static int bpf_prog_release(struct inode *inode, struct file *filp)
1085{
1086 struct bpf_prog *prog = filp->private_data;
1087
Daniel Borkmann1aacde32016-06-30 17:24:43 +02001088 bpf_prog_put(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001089 return 0;
1090}
1091
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001092#ifdef CONFIG_PROC_FS
1093static void bpf_prog_show_fdinfo(struct seq_file *m, struct file *filp)
1094{
1095 const struct bpf_prog *prog = filp->private_data;
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001096 char prog_tag[sizeof(prog->tag) * 2 + 1] = { };
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001097
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001098 bin2hex(prog_tag, prog->tag, sizeof(prog->tag));
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001099 seq_printf(m,
1100 "prog_type:\t%u\n"
1101 "prog_jited:\t%u\n"
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001102 "prog_tag:\t%s\n"
Daniel Borkmann4316b402018-06-02 23:06:34 +02001103 "memlock:\t%llu\n"
1104 "prog_id:\t%u\n",
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001105 prog->type,
1106 prog->jited,
Daniel Borkmannf1f77142017-01-13 23:38:15 +01001107 prog_tag,
Daniel Borkmann4316b402018-06-02 23:06:34 +02001108 prog->pages * 1ULL << PAGE_SHIFT,
1109 prog->aux->id);
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001110}
1111#endif
1112
Chenbo Fengf66e4482017-10-18 13:00:26 -07001113const struct file_operations bpf_prog_fops = {
Daniel Borkmann7bd509e2016-12-04 23:19:41 +01001114#ifdef CONFIG_PROC_FS
1115 .show_fdinfo = bpf_prog_show_fdinfo,
1116#endif
1117 .release = bpf_prog_release,
Chenbo Feng6e71b042017-10-18 13:00:22 -07001118 .read = bpf_dummy_read,
1119 .write = bpf_dummy_write,
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001120};
1121
Daniel Borkmannb2197752015-10-29 14:58:09 +01001122int bpf_prog_new_fd(struct bpf_prog *prog)
Daniel Borkmannaa797812015-10-29 14:58:06 +01001123{
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001124 int ret;
1125
1126 ret = security_bpf_prog(prog);
1127 if (ret < 0)
1128 return ret;
1129
Daniel Borkmannaa797812015-10-29 14:58:06 +01001130 return anon_inode_getfd("bpf-prog", &bpf_prog_fops, prog,
1131 O_RDWR | O_CLOEXEC);
1132}
1133
Daniel Borkmann113214b2016-06-30 17:24:44 +02001134static struct bpf_prog *____bpf_prog_get(struct fd f)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001135{
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001136 if (!f.file)
1137 return ERR_PTR(-EBADF);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001138 if (f.file->f_op != &bpf_prog_fops) {
1139 fdput(f);
1140 return ERR_PTR(-EINVAL);
1141 }
1142
Daniel Borkmannc2101292015-10-29 14:58:07 +01001143 return f.file->private_data;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001144}
1145
Brenden Blanco59d36562016-07-19 12:16:46 -07001146struct bpf_prog *bpf_prog_add(struct bpf_prog *prog, int i)
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001147{
Brenden Blanco59d36562016-07-19 12:16:46 -07001148 if (atomic_add_return(i, &prog->aux->refcnt) > BPF_MAX_REFCNT) {
1149 atomic_sub(i, &prog->aux->refcnt);
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001150 return ERR_PTR(-EBUSY);
1151 }
1152 return prog;
1153}
Brenden Blanco59d36562016-07-19 12:16:46 -07001154EXPORT_SYMBOL_GPL(bpf_prog_add);
1155
Daniel Borkmannc5405942016-11-09 22:02:34 +01001156void bpf_prog_sub(struct bpf_prog *prog, int i)
1157{
1158 /* Only to be used for undoing previous bpf_prog_add() in some
1159 * error path. We still know that another entity in our call
1160 * path holds a reference to the program, thus atomic_sub() can
1161 * be safely used in such cases!
1162 */
1163 WARN_ON(atomic_sub_return(i, &prog->aux->refcnt) == 0);
1164}
1165EXPORT_SYMBOL_GPL(bpf_prog_sub);
1166
Brenden Blanco59d36562016-07-19 12:16:46 -07001167struct bpf_prog *bpf_prog_inc(struct bpf_prog *prog)
1168{
1169 return bpf_prog_add(prog, 1);
1170}
Daniel Borkmann97bc4022016-11-19 01:45:00 +01001171EXPORT_SYMBOL_GPL(bpf_prog_inc);
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001172
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001173/* prog_idr_lock should have been held */
John Fastabenda6f6df62017-08-15 22:32:22 -07001174struct bpf_prog *bpf_prog_inc_not_zero(struct bpf_prog *prog)
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001175{
1176 int refold;
1177
1178 refold = __atomic_add_unless(&prog->aux->refcnt, 1, 0);
1179
1180 if (refold >= BPF_MAX_REFCNT) {
1181 __bpf_prog_put(prog, false);
1182 return ERR_PTR(-EBUSY);
1183 }
1184
1185 if (!refold)
1186 return ERR_PTR(-ENOENT);
1187
1188 return prog;
1189}
John Fastabenda6f6df62017-08-15 22:32:22 -07001190EXPORT_SYMBOL_GPL(bpf_prog_inc_not_zero);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001191
Al Viro040ee692017-12-02 20:20:38 -05001192bool bpf_prog_get_ok(struct bpf_prog *prog,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001193 enum bpf_prog_type *attach_type, bool attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001194{
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001195 /* not an attachment, just a refcount inc, always allow */
1196 if (!attach_type)
1197 return true;
Jakub Kicinski248f3462017-11-03 13:56:20 -07001198
1199 if (prog->type != *attach_type)
1200 return false;
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001201 if (bpf_prog_is_dev_bound(prog->aux) && !attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001202 return false;
1203
1204 return true;
1205}
1206
1207static struct bpf_prog *__bpf_prog_get(u32 ufd, enum bpf_prog_type *attach_type,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001208 bool attach_drv)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001209{
1210 struct fd f = fdget(ufd);
1211 struct bpf_prog *prog;
1212
Daniel Borkmann113214b2016-06-30 17:24:44 +02001213 prog = ____bpf_prog_get(f);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001214 if (IS_ERR(prog))
1215 return prog;
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001216 if (!bpf_prog_get_ok(prog, attach_type, attach_drv)) {
Daniel Borkmann113214b2016-06-30 17:24:44 +02001217 prog = ERR_PTR(-EINVAL);
1218 goto out;
1219 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001220
Alexei Starovoitov92117d82016-04-27 18:56:20 -07001221 prog = bpf_prog_inc(prog);
Daniel Borkmann113214b2016-06-30 17:24:44 +02001222out:
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001223 fdput(f);
1224 return prog;
1225}
Daniel Borkmann113214b2016-06-30 17:24:44 +02001226
1227struct bpf_prog *bpf_prog_get(u32 ufd)
1228{
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001229 return __bpf_prog_get(ufd, NULL, false);
Daniel Borkmann113214b2016-06-30 17:24:44 +02001230}
1231
Jakub Kicinski248f3462017-11-03 13:56:20 -07001232struct bpf_prog *bpf_prog_get_type_dev(u32 ufd, enum bpf_prog_type type,
Jakub Kicinski288b3de2017-11-20 15:21:54 -08001233 bool attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -07001234{
Alexei Starovoitov4d220ed2018-04-28 19:56:37 -07001235 return __bpf_prog_get(ufd, &type, attach_drv);
Jakub Kicinski248f3462017-11-03 13:56:20 -07001236}
Jakub Kicinski6c8dfe22017-11-03 13:56:21 -07001237EXPORT_SYMBOL_GPL(bpf_prog_get_type_dev);
Jakub Kicinski248f3462017-11-03 13:56:20 -07001238
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001239/* Initially all BPF programs could be loaded w/o specifying
1240 * expected_attach_type. Later for some of them specifying expected_attach_type
1241 * at load time became required so that program could be validated properly.
1242 * Programs of types that are allowed to be loaded both w/ and w/o (for
1243 * backward compatibility) expected_attach_type, should have the default attach
1244 * type assigned to expected_attach_type for the latter case, so that it can be
1245 * validated later at attach time.
1246 *
1247 * bpf_prog_load_fixup_attach_type() sets expected_attach_type in @attr if
1248 * prog type requires it but has some attach types that have to be backward
1249 * compatible.
1250 */
1251static void bpf_prog_load_fixup_attach_type(union bpf_attr *attr)
1252{
1253 switch (attr->prog_type) {
1254 case BPF_PROG_TYPE_CGROUP_SOCK:
1255 /* Unfortunately BPF_ATTACH_TYPE_UNSPEC enumeration doesn't
1256 * exist so checking for non-zero is the way to go here.
1257 */
1258 if (!attr->expected_attach_type)
1259 attr->expected_attach_type =
1260 BPF_CGROUP_INET_SOCK_CREATE;
1261 break;
1262 }
1263}
1264
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001265static int
1266bpf_prog_load_check_attach_type(enum bpf_prog_type prog_type,
1267 enum bpf_attach_type expected_attach_type)
1268{
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001269 switch (prog_type) {
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001270 case BPF_PROG_TYPE_CGROUP_SOCK:
1271 switch (expected_attach_type) {
1272 case BPF_CGROUP_INET_SOCK_CREATE:
1273 case BPF_CGROUP_INET4_POST_BIND:
1274 case BPF_CGROUP_INET6_POST_BIND:
1275 return 0;
1276 default:
1277 return -EINVAL;
1278 }
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001279 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
1280 switch (expected_attach_type) {
1281 case BPF_CGROUP_INET4_BIND:
1282 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001283 case BPF_CGROUP_INET4_CONNECT:
1284 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001285 case BPF_CGROUP_UDP4_SENDMSG:
1286 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001287 return 0;
1288 default:
1289 return -EINVAL;
1290 }
1291 default:
1292 return 0;
1293 }
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001294}
1295
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001296/* last field in 'union bpf_attr' used by this command */
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001297#define BPF_PROG_LOAD_LAST_FIELD expected_attach_type
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001298
1299static int bpf_prog_load(union bpf_attr *attr)
1300{
1301 enum bpf_prog_type type = attr->prog_type;
1302 struct bpf_prog *prog;
1303 int err;
1304 char license[128];
1305 bool is_gpl;
1306
1307 if (CHECK_ATTR(BPF_PROG_LOAD))
1308 return -EINVAL;
1309
David S. Millere07b98d2017-05-10 11:38:07 -07001310 if (attr->prog_flags & ~BPF_F_STRICT_ALIGNMENT)
1311 return -EINVAL;
1312
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001313 /* copy eBPF program license from user space */
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001314 if (strncpy_from_user(license, u64_to_user_ptr(attr->license),
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001315 sizeof(license) - 1) < 0)
1316 return -EFAULT;
1317 license[sizeof(license) - 1] = 0;
1318
1319 /* eBPF programs must be GPL compatible to use GPL-ed functions */
1320 is_gpl = license_is_gpl_compatible(license);
1321
Daniel Borkmannef0915c2016-12-07 01:15:44 +01001322 if (attr->insn_cnt == 0 || attr->insn_cnt > BPF_MAXINSNS)
1323 return -E2BIG;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001324
Alexei Starovoitov25415172015-03-25 12:49:20 -07001325 if (type == BPF_PROG_TYPE_KPROBE &&
1326 attr->kern_version != LINUX_VERSION_CODE)
1327 return -EINVAL;
1328
Chenbo Feng80b7d812017-05-31 18:16:00 -07001329 if (type != BPF_PROG_TYPE_SOCKET_FILTER &&
1330 type != BPF_PROG_TYPE_CGROUP_SKB &&
1331 !capable(CAP_SYS_ADMIN))
Alexei Starovoitov1be7f752015-10-07 22:23:21 -07001332 return -EPERM;
1333
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001334 bpf_prog_load_fixup_attach_type(attr);
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001335 if (bpf_prog_load_check_attach_type(type, attr->expected_attach_type))
1336 return -EINVAL;
1337
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001338 /* plain bpf_prog allocation */
1339 prog = bpf_prog_alloc(bpf_prog_size(attr->insn_cnt), GFP_USER);
1340 if (!prog)
1341 return -ENOMEM;
1342
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001343 prog->expected_attach_type = attr->expected_attach_type;
1344
Jakub Kicinski9a18eed2017-12-27 18:39:04 -08001345 prog->aux->offload_requested = !!attr->prog_ifindex;
1346
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001347 err = security_bpf_prog_alloc(prog->aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001348 if (err)
1349 goto free_prog_nouncharge;
1350
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001351 err = bpf_prog_charge_memlock(prog);
1352 if (err)
1353 goto free_prog_sec;
1354
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001355 prog->len = attr->insn_cnt;
1356
1357 err = -EFAULT;
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001358 if (copy_from_user(prog->insns, u64_to_user_ptr(attr->insns),
Daniel Borkmannaafe6ae2016-12-18 01:52:57 +01001359 bpf_prog_insn_size(prog)) != 0)
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001360 goto free_prog;
1361
1362 prog->orig_prog = NULL;
Daniel Borkmanna91263d2015-09-30 01:41:50 +02001363 prog->jited = 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001364
1365 atomic_set(&prog->aux->refcnt, 1);
Daniel Borkmanna91263d2015-09-30 01:41:50 +02001366 prog->gpl_compatible = is_gpl ? 1 : 0;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001367
Jakub Kicinski9a18eed2017-12-27 18:39:04 -08001368 if (bpf_prog_is_dev_bound(prog->aux)) {
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07001369 err = bpf_prog_offload_init(prog, attr);
1370 if (err)
1371 goto free_prog;
1372 }
1373
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001374 /* find program type: socket_filter vs tracing_filter */
1375 err = find_prog_type(type, prog);
1376 if (err < 0)
1377 goto free_prog;
1378
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001379 prog->aux->load_time = ktime_get_boot_ns();
1380 err = bpf_obj_name_cpy(prog->aux->name, attr->prog_name);
1381 if (err)
1382 goto free_prog;
1383
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001384 /* run eBPF verifier */
Alexei Starovoitov9bac3d62015-03-13 11:57:42 -07001385 err = bpf_check(&prog, attr);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001386 if (err < 0)
1387 goto free_used_maps;
1388
Daniel Borkmann9facc332018-06-15 02:30:48 +02001389 prog = bpf_prog_select_runtime(prog, &err);
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001390 if (err < 0)
1391 goto free_used_maps;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001392
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -07001393 err = bpf_prog_alloc_id(prog);
1394 if (err)
1395 goto free_used_maps;
1396
Daniel Borkmannaa797812015-10-29 14:58:06 +01001397 err = bpf_prog_new_fd(prog);
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001398 if (err < 0) {
1399 /* failed to allocate fd.
1400 * bpf_prog_put() is needed because the above
1401 * bpf_prog_alloc_id() has published the prog
1402 * to the userspace and the userspace may
1403 * have refcnt-ed it through BPF_PROG_GET_FD_BY_ID.
1404 */
1405 bpf_prog_put(prog);
1406 return err;
1407 }
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001408
Daniel Borkmann74451e662017-02-16 22:24:50 +01001409 bpf_prog_kallsyms_add(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001410 return err;
1411
1412free_used_maps:
Daniel Borkmann7d1982b2018-06-15 02:30:47 +02001413 bpf_prog_kallsyms_del_subprogs(prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001414 free_used_maps(prog->aux);
1415free_prog:
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001416 bpf_prog_uncharge_memlock(prog);
Chenbo Fengafdb09c2017-10-18 13:00:24 -07001417free_prog_sec:
1418 security_bpf_prog_free(prog->aux);
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -07001419free_prog_nouncharge:
Alexei Starovoitov09756af2014-09-26 00:17:00 -07001420 bpf_prog_free(prog);
1421 return err;
1422}
1423
Chenbo Feng6e71b042017-10-18 13:00:22 -07001424#define BPF_OBJ_LAST_FIELD file_flags
Daniel Borkmannb2197752015-10-29 14:58:09 +01001425
1426static int bpf_obj_pin(const union bpf_attr *attr)
1427{
Chenbo Feng6e71b042017-10-18 13:00:22 -07001428 if (CHECK_ATTR(BPF_OBJ) || attr->file_flags != 0)
Daniel Borkmannb2197752015-10-29 14:58:09 +01001429 return -EINVAL;
1430
Mickaël Salaün535e7b4b2016-11-13 19:44:03 +01001431 return bpf_obj_pin_user(attr->bpf_fd, u64_to_user_ptr(attr->pathname));
Daniel Borkmannb2197752015-10-29 14:58:09 +01001432}
1433
1434static int bpf_obj_get(const union bpf_attr *attr)
1435{
Chenbo Feng6e71b042017-10-18 13:00:22 -07001436 if (CHECK_ATTR(BPF_OBJ) || attr->bpf_fd != 0 ||
1437 attr->file_flags & ~BPF_OBJ_FLAG_MASK)
Daniel Borkmannb2197752015-10-29 14:58:09 +01001438 return -EINVAL;
1439
Chenbo Feng6e71b042017-10-18 13:00:22 -07001440 return bpf_obj_get_user(u64_to_user_ptr(attr->pathname),
1441 attr->file_flags);
Daniel Borkmannb2197752015-10-29 14:58:09 +01001442}
1443
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001444struct bpf_raw_tracepoint {
1445 struct bpf_raw_event_map *btp;
1446 struct bpf_prog *prog;
1447};
1448
1449static int bpf_raw_tracepoint_release(struct inode *inode, struct file *filp)
1450{
1451 struct bpf_raw_tracepoint *raw_tp = filp->private_data;
1452
1453 if (raw_tp->prog) {
1454 bpf_probe_unregister(raw_tp->btp, raw_tp->prog);
1455 bpf_prog_put(raw_tp->prog);
1456 }
1457 kfree(raw_tp);
1458 return 0;
1459}
1460
1461static const struct file_operations bpf_raw_tp_fops = {
1462 .release = bpf_raw_tracepoint_release,
1463 .read = bpf_dummy_read,
1464 .write = bpf_dummy_write,
1465};
1466
1467#define BPF_RAW_TRACEPOINT_OPEN_LAST_FIELD raw_tracepoint.prog_fd
1468
1469static int bpf_raw_tracepoint_open(const union bpf_attr *attr)
1470{
1471 struct bpf_raw_tracepoint *raw_tp;
1472 struct bpf_raw_event_map *btp;
1473 struct bpf_prog *prog;
1474 char tp_name[128];
1475 int tp_fd, err;
1476
1477 if (strncpy_from_user(tp_name, u64_to_user_ptr(attr->raw_tracepoint.name),
1478 sizeof(tp_name) - 1) < 0)
1479 return -EFAULT;
1480 tp_name[sizeof(tp_name) - 1] = 0;
1481
1482 btp = bpf_find_raw_tracepoint(tp_name);
1483 if (!btp)
1484 return -ENOENT;
1485
1486 raw_tp = kzalloc(sizeof(*raw_tp), GFP_USER);
1487 if (!raw_tp)
1488 return -ENOMEM;
1489 raw_tp->btp = btp;
1490
1491 prog = bpf_prog_get_type(attr->raw_tracepoint.prog_fd,
1492 BPF_PROG_TYPE_RAW_TRACEPOINT);
1493 if (IS_ERR(prog)) {
1494 err = PTR_ERR(prog);
1495 goto out_free_tp;
1496 }
1497
1498 err = bpf_probe_register(raw_tp->btp, prog);
1499 if (err)
1500 goto out_put_prog;
1501
1502 raw_tp->prog = prog;
1503 tp_fd = anon_inode_getfd("bpf-raw-tracepoint", &bpf_raw_tp_fops, raw_tp,
1504 O_CLOEXEC);
1505 if (tp_fd < 0) {
1506 bpf_probe_unregister(raw_tp->btp, prog);
1507 err = tp_fd;
1508 goto out_put_prog;
1509 }
1510 return tp_fd;
1511
1512out_put_prog:
1513 bpf_prog_put(prog);
1514out_free_tp:
1515 kfree(raw_tp);
1516 return err;
1517}
1518
Anders Roxell33491582018-04-03 14:09:47 +02001519static int bpf_prog_attach_check_attach_type(const struct bpf_prog *prog,
1520 enum bpf_attach_type attach_type)
1521{
1522 switch (prog->type) {
1523 case BPF_PROG_TYPE_CGROUP_SOCK:
1524 case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
1525 return attach_type == prog->expected_attach_type ? 0 : -EINVAL;
1526 default:
1527 return 0;
1528 }
1529}
1530
John Fastabend464bc0f2017-08-28 07:10:04 -07001531#define BPF_PROG_ATTACH_LAST_FIELD attach_flags
John Fastabend174a79f2017-08-15 22:32:47 -07001532
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001533#define BPF_F_ATTACH_MASK \
1534 (BPF_F_ALLOW_OVERRIDE | BPF_F_ALLOW_MULTI)
1535
Daniel Mackf4324552016-11-23 16:52:27 +01001536static int bpf_prog_attach(const union bpf_attr *attr)
1537{
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001538 enum bpf_prog_type ptype;
Daniel Mackf4324552016-11-23 16:52:27 +01001539 struct bpf_prog *prog;
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001540 int ret;
Daniel Mackf4324552016-11-23 16:52:27 +01001541
1542 if (!capable(CAP_NET_ADMIN))
1543 return -EPERM;
1544
1545 if (CHECK_ATTR(BPF_PROG_ATTACH))
1546 return -EINVAL;
1547
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001548 if (attr->attach_flags & ~BPF_F_ATTACH_MASK)
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001549 return -EINVAL;
1550
Daniel Mackf4324552016-11-23 16:52:27 +01001551 switch (attr->attach_type) {
1552 case BPF_CGROUP_INET_INGRESS:
1553 case BPF_CGROUP_INET_EGRESS:
David Ahernb2cd1252016-12-01 08:48:03 -08001554 ptype = BPF_PROG_TYPE_CGROUP_SKB;
Daniel Mackf4324552016-11-23 16:52:27 +01001555 break;
David Ahern610236582016-12-01 08:48:04 -08001556 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001557 case BPF_CGROUP_INET4_POST_BIND:
1558 case BPF_CGROUP_INET6_POST_BIND:
David Ahern610236582016-12-01 08:48:04 -08001559 ptype = BPF_PROG_TYPE_CGROUP_SOCK;
1560 break;
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001561 case BPF_CGROUP_INET4_BIND:
1562 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001563 case BPF_CGROUP_INET4_CONNECT:
1564 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001565 case BPF_CGROUP_UDP4_SENDMSG:
1566 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001567 ptype = BPF_PROG_TYPE_CGROUP_SOCK_ADDR;
1568 break;
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001569 case BPF_CGROUP_SOCK_OPS:
1570 ptype = BPF_PROG_TYPE_SOCK_OPS;
1571 break;
Roman Gushchinebc614f2017-11-05 08:15:32 -05001572 case BPF_CGROUP_DEVICE:
1573 ptype = BPF_PROG_TYPE_CGROUP_DEVICE;
1574 break;
John Fastabend4f738ad2018-03-18 12:57:10 -07001575 case BPF_SK_MSG_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001576 ptype = BPF_PROG_TYPE_SK_MSG;
1577 break;
John Fastabend464bc0f2017-08-28 07:10:04 -07001578 case BPF_SK_SKB_STREAM_PARSER:
1579 case BPF_SK_SKB_STREAM_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001580 ptype = BPF_PROG_TYPE_SK_SKB;
1581 break;
Sean Youngf4364dc2018-05-27 12:24:09 +01001582 case BPF_LIRC_MODE2:
Sean Youngfdb5c452018-06-19 00:04:24 +01001583 ptype = BPF_PROG_TYPE_LIRC_MODE2;
1584 break;
Daniel Mackf4324552016-11-23 16:52:27 +01001585 default:
1586 return -EINVAL;
1587 }
1588
David Ahernb2cd1252016-12-01 08:48:03 -08001589 prog = bpf_prog_get_type(attr->attach_bpf_fd, ptype);
1590 if (IS_ERR(prog))
1591 return PTR_ERR(prog);
1592
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001593 if (bpf_prog_attach_check_attach_type(prog, attr->attach_type)) {
1594 bpf_prog_put(prog);
1595 return -EINVAL;
1596 }
1597
Sean Youngfdb5c452018-06-19 00:04:24 +01001598 switch (ptype) {
1599 case BPF_PROG_TYPE_SK_SKB:
1600 case BPF_PROG_TYPE_SK_MSG:
1601 ret = sockmap_get_from_fd(attr, ptype, prog);
1602 break;
1603 case BPF_PROG_TYPE_LIRC_MODE2:
1604 ret = lirc_prog_attach(attr, prog);
1605 break;
1606 default:
1607 ret = cgroup_bpf_prog_attach(attr, ptype, prog);
David Ahernb2cd1252016-12-01 08:48:03 -08001608 }
1609
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001610 if (ret)
1611 bpf_prog_put(prog);
Alexei Starovoitov7f677632017-02-10 20:28:24 -08001612 return ret;
Daniel Mackf4324552016-11-23 16:52:27 +01001613}
1614
1615#define BPF_PROG_DETACH_LAST_FIELD attach_type
1616
1617static int bpf_prog_detach(const union bpf_attr *attr)
1618{
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001619 enum bpf_prog_type ptype;
Daniel Mackf4324552016-11-23 16:52:27 +01001620
1621 if (!capable(CAP_NET_ADMIN))
1622 return -EPERM;
1623
1624 if (CHECK_ATTR(BPF_PROG_DETACH))
1625 return -EINVAL;
1626
1627 switch (attr->attach_type) {
1628 case BPF_CGROUP_INET_INGRESS:
1629 case BPF_CGROUP_INET_EGRESS:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001630 ptype = BPF_PROG_TYPE_CGROUP_SKB;
1631 break;
David Ahern610236582016-12-01 08:48:04 -08001632 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001633 case BPF_CGROUP_INET4_POST_BIND:
1634 case BPF_CGROUP_INET6_POST_BIND:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001635 ptype = BPF_PROG_TYPE_CGROUP_SOCK;
1636 break;
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001637 case BPF_CGROUP_INET4_BIND:
1638 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001639 case BPF_CGROUP_INET4_CONNECT:
1640 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001641 case BPF_CGROUP_UDP4_SENDMSG:
1642 case BPF_CGROUP_UDP6_SENDMSG:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001643 ptype = BPF_PROG_TYPE_CGROUP_SOCK_ADDR;
1644 break;
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001645 case BPF_CGROUP_SOCK_OPS:
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001646 ptype = BPF_PROG_TYPE_SOCK_OPS;
Daniel Mackf4324552016-11-23 16:52:27 +01001647 break;
Roman Gushchinebc614f2017-11-05 08:15:32 -05001648 case BPF_CGROUP_DEVICE:
1649 ptype = BPF_PROG_TYPE_CGROUP_DEVICE;
1650 break;
John Fastabend4f738ad2018-03-18 12:57:10 -07001651 case BPF_SK_MSG_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001652 return sockmap_get_from_fd(attr, BPF_PROG_TYPE_SK_MSG, NULL);
John Fastabend5a67da22017-09-08 14:00:49 -07001653 case BPF_SK_SKB_STREAM_PARSER:
1654 case BPF_SK_SKB_STREAM_VERDICT:
Sean Youngfdb5c452018-06-19 00:04:24 +01001655 return sockmap_get_from_fd(attr, BPF_PROG_TYPE_SK_SKB, NULL);
Sean Youngf4364dc2018-05-27 12:24:09 +01001656 case BPF_LIRC_MODE2:
1657 return lirc_prog_detach(attr);
Daniel Mackf4324552016-11-23 16:52:27 +01001658 default:
1659 return -EINVAL;
1660 }
1661
Sean Youngfdb5c452018-06-19 00:04:24 +01001662 return cgroup_bpf_prog_detach(attr, ptype);
Daniel Mackf4324552016-11-23 16:52:27 +01001663}
Lawrence Brakmo40304b22017-06-30 20:02:40 -07001664
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001665#define BPF_PROG_QUERY_LAST_FIELD query.prog_cnt
1666
1667static int bpf_prog_query(const union bpf_attr *attr,
1668 union bpf_attr __user *uattr)
1669{
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001670 if (!capable(CAP_NET_ADMIN))
1671 return -EPERM;
1672 if (CHECK_ATTR(BPF_PROG_QUERY))
1673 return -EINVAL;
1674 if (attr->query.query_flags & ~BPF_F_QUERY_EFFECTIVE)
1675 return -EINVAL;
1676
1677 switch (attr->query.attach_type) {
1678 case BPF_CGROUP_INET_INGRESS:
1679 case BPF_CGROUP_INET_EGRESS:
1680 case BPF_CGROUP_INET_SOCK_CREATE:
Andrey Ignatov4fbac772018-03-30 15:08:02 -07001681 case BPF_CGROUP_INET4_BIND:
1682 case BPF_CGROUP_INET6_BIND:
Andrey Ignatovaac3fc32018-03-30 15:08:07 -07001683 case BPF_CGROUP_INET4_POST_BIND:
1684 case BPF_CGROUP_INET6_POST_BIND:
Andrey Ignatovd74bad42018-03-30 15:08:05 -07001685 case BPF_CGROUP_INET4_CONNECT:
1686 case BPF_CGROUP_INET6_CONNECT:
Andrey Ignatov1cedee12018-05-25 08:55:23 -07001687 case BPF_CGROUP_UDP4_SENDMSG:
1688 case BPF_CGROUP_UDP6_SENDMSG:
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001689 case BPF_CGROUP_SOCK_OPS:
Roman Gushchinebc614f2017-11-05 08:15:32 -05001690 case BPF_CGROUP_DEVICE:
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001691 break;
Sean Youngf4364dc2018-05-27 12:24:09 +01001692 case BPF_LIRC_MODE2:
1693 return lirc_prog_query(attr, uattr);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001694 default:
1695 return -EINVAL;
1696 }
Sean Youngfdb5c452018-06-19 00:04:24 +01001697
1698 return cgroup_bpf_prog_query(attr, uattr);
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07001699}
Daniel Mackf4324552016-11-23 16:52:27 +01001700
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07001701#define BPF_PROG_TEST_RUN_LAST_FIELD test.duration
1702
1703static int bpf_prog_test_run(const union bpf_attr *attr,
1704 union bpf_attr __user *uattr)
1705{
1706 struct bpf_prog *prog;
1707 int ret = -ENOTSUPP;
1708
Alexei Starovoitov61f3c962018-01-17 16:52:02 -08001709 if (!capable(CAP_SYS_ADMIN))
1710 return -EPERM;
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07001711 if (CHECK_ATTR(BPF_PROG_TEST_RUN))
1712 return -EINVAL;
1713
1714 prog = bpf_prog_get(attr->test.prog_fd);
1715 if (IS_ERR(prog))
1716 return PTR_ERR(prog);
1717
1718 if (prog->aux->ops->test_run)
1719 ret = prog->aux->ops->test_run(prog, attr, uattr);
1720
1721 bpf_prog_put(prog);
1722 return ret;
1723}
1724
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07001725#define BPF_OBJ_GET_NEXT_ID_LAST_FIELD next_id
1726
1727static int bpf_obj_get_next_id(const union bpf_attr *attr,
1728 union bpf_attr __user *uattr,
1729 struct idr *idr,
1730 spinlock_t *lock)
1731{
1732 u32 next_id = attr->start_id;
1733 int err = 0;
1734
1735 if (CHECK_ATTR(BPF_OBJ_GET_NEXT_ID) || next_id >= INT_MAX)
1736 return -EINVAL;
1737
1738 if (!capable(CAP_SYS_ADMIN))
1739 return -EPERM;
1740
1741 next_id++;
1742 spin_lock_bh(lock);
1743 if (!idr_get_next(idr, &next_id))
1744 err = -ENOENT;
1745 spin_unlock_bh(lock);
1746
1747 if (!err)
1748 err = put_user(next_id, &uattr->next_id);
1749
1750 return err;
1751}
1752
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07001753#define BPF_PROG_GET_FD_BY_ID_LAST_FIELD prog_id
1754
1755static int bpf_prog_get_fd_by_id(const union bpf_attr *attr)
1756{
1757 struct bpf_prog *prog;
1758 u32 id = attr->prog_id;
1759 int fd;
1760
1761 if (CHECK_ATTR(BPF_PROG_GET_FD_BY_ID))
1762 return -EINVAL;
1763
1764 if (!capable(CAP_SYS_ADMIN))
1765 return -EPERM;
1766
1767 spin_lock_bh(&prog_idr_lock);
1768 prog = idr_find(&prog_idr, id);
1769 if (prog)
1770 prog = bpf_prog_inc_not_zero(prog);
1771 else
1772 prog = ERR_PTR(-ENOENT);
1773 spin_unlock_bh(&prog_idr_lock);
1774
1775 if (IS_ERR(prog))
1776 return PTR_ERR(prog);
1777
1778 fd = bpf_prog_new_fd(prog);
1779 if (fd < 0)
1780 bpf_prog_put(prog);
1781
1782 return fd;
1783}
1784
Chenbo Feng6e71b042017-10-18 13:00:22 -07001785#define BPF_MAP_GET_FD_BY_ID_LAST_FIELD open_flags
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001786
1787static int bpf_map_get_fd_by_id(const union bpf_attr *attr)
1788{
1789 struct bpf_map *map;
1790 u32 id = attr->map_id;
Chenbo Feng6e71b042017-10-18 13:00:22 -07001791 int f_flags;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001792 int fd;
1793
Chenbo Feng6e71b042017-10-18 13:00:22 -07001794 if (CHECK_ATTR(BPF_MAP_GET_FD_BY_ID) ||
1795 attr->open_flags & ~BPF_OBJ_FLAG_MASK)
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001796 return -EINVAL;
1797
1798 if (!capable(CAP_SYS_ADMIN))
1799 return -EPERM;
1800
Chenbo Feng6e71b042017-10-18 13:00:22 -07001801 f_flags = bpf_get_file_flag(attr->open_flags);
1802 if (f_flags < 0)
1803 return f_flags;
1804
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001805 spin_lock_bh(&map_idr_lock);
1806 map = idr_find(&map_idr, id);
1807 if (map)
1808 map = bpf_map_inc_not_zero(map, true);
1809 else
1810 map = ERR_PTR(-ENOENT);
1811 spin_unlock_bh(&map_idr_lock);
1812
1813 if (IS_ERR(map))
1814 return PTR_ERR(map);
1815
Chenbo Feng6e71b042017-10-18 13:00:22 -07001816 fd = bpf_map_new_fd(map, f_flags);
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07001817 if (fd < 0)
1818 bpf_map_put(map);
1819
1820 return fd;
1821}
1822
Daniel Borkmann7105e822017-12-20 13:42:57 +01001823static const struct bpf_map *bpf_map_from_imm(const struct bpf_prog *prog,
1824 unsigned long addr)
1825{
1826 int i;
1827
1828 for (i = 0; i < prog->aux->used_map_cnt; i++)
1829 if (prog->aux->used_maps[i] == (void *)addr)
1830 return prog->aux->used_maps[i];
1831 return NULL;
1832}
1833
1834static struct bpf_insn *bpf_insn_prepare_dump(const struct bpf_prog *prog)
1835{
1836 const struct bpf_map *map;
1837 struct bpf_insn *insns;
1838 u64 imm;
1839 int i;
1840
1841 insns = kmemdup(prog->insnsi, bpf_prog_insn_size(prog),
1842 GFP_USER);
1843 if (!insns)
1844 return insns;
1845
1846 for (i = 0; i < prog->len; i++) {
1847 if (insns[i].code == (BPF_JMP | BPF_TAIL_CALL)) {
1848 insns[i].code = BPF_JMP | BPF_CALL;
1849 insns[i].imm = BPF_FUNC_tail_call;
1850 /* fall-through */
1851 }
1852 if (insns[i].code == (BPF_JMP | BPF_CALL) ||
1853 insns[i].code == (BPF_JMP | BPF_CALL_ARGS)) {
1854 if (insns[i].code == (BPF_JMP | BPF_CALL_ARGS))
1855 insns[i].code = BPF_JMP | BPF_CALL;
1856 if (!bpf_dump_raw_ok())
1857 insns[i].imm = 0;
1858 continue;
1859 }
1860
1861 if (insns[i].code != (BPF_LD | BPF_IMM | BPF_DW))
1862 continue;
1863
1864 imm = ((u64)insns[i + 1].imm << 32) | (u32)insns[i].imm;
1865 map = bpf_map_from_imm(prog, imm);
1866 if (map) {
1867 insns[i].src_reg = BPF_PSEUDO_MAP_FD;
1868 insns[i].imm = map->id;
1869 insns[i + 1].imm = 0;
1870 continue;
1871 }
1872
1873 if (!bpf_dump_raw_ok() &&
1874 imm == (unsigned long)prog->aux) {
1875 insns[i].imm = 0;
1876 insns[i + 1].imm = 0;
1877 continue;
1878 }
1879 }
1880
1881 return insns;
1882}
1883
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001884static int bpf_prog_get_info_by_fd(struct bpf_prog *prog,
1885 const union bpf_attr *attr,
1886 union bpf_attr __user *uattr)
1887{
1888 struct bpf_prog_info __user *uinfo = u64_to_user_ptr(attr->info.info);
1889 struct bpf_prog_info info = {};
1890 u32 info_len = attr->info.info_len;
1891 char __user *uinsns;
1892 u32 ulen;
1893 int err;
1894
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07001895 err = bpf_check_uarg_tail_zero(uinfo, sizeof(info), info_len);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001896 if (err)
1897 return err;
1898 info_len = min_t(u32, sizeof(info), info_len);
1899
1900 if (copy_from_user(&info, uinfo, info_len))
Daniel Borkmann89b09682017-07-27 21:02:46 +02001901 return -EFAULT;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001902
1903 info.type = prog->type;
1904 info.id = prog->aux->id;
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001905 info.load_time = prog->aux->load_time;
1906 info.created_by_uid = from_kuid_munged(current_user_ns(),
1907 prog->aux->user->uid);
Jiri Olsab85fab02018-04-25 19:41:06 +02001908 info.gpl_compatible = prog->gpl_compatible;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001909
1910 memcpy(info.tag, prog->tag, sizeof(prog->tag));
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001911 memcpy(info.name, prog->aux->name, sizeof(prog->aux->name));
1912
1913 ulen = info.nr_map_ids;
1914 info.nr_map_ids = prog->aux->used_map_cnt;
1915 ulen = min_t(u32, info.nr_map_ids, ulen);
1916 if (ulen) {
Martin KaFai Lau721e08d2017-09-29 10:52:17 -07001917 u32 __user *user_map_ids = u64_to_user_ptr(info.map_ids);
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -07001918 u32 i;
1919
1920 for (i = 0; i < ulen; i++)
1921 if (put_user(prog->aux->used_maps[i]->id,
1922 &user_map_ids[i]))
1923 return -EFAULT;
1924 }
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001925
1926 if (!capable(CAP_SYS_ADMIN)) {
1927 info.jited_prog_len = 0;
1928 info.xlated_prog_len = 0;
Sandipan Dasdbecd732018-05-24 12:26:48 +05301929 info.nr_jited_ksyms = 0;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001930 goto done;
1931 }
1932
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001933 ulen = info.xlated_prog_len;
Daniel Borkmann9975a542017-07-28 17:05:25 +02001934 info.xlated_prog_len = bpf_prog_insn_size(prog);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001935 if (info.xlated_prog_len && ulen) {
Daniel Borkmann7105e822017-12-20 13:42:57 +01001936 struct bpf_insn *insns_sanitized;
1937 bool fault;
1938
1939 if (prog->blinded && !bpf_dump_raw_ok()) {
1940 info.xlated_prog_insns = 0;
1941 goto done;
1942 }
1943 insns_sanitized = bpf_insn_prepare_dump(prog);
1944 if (!insns_sanitized)
1945 return -ENOMEM;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001946 uinsns = u64_to_user_ptr(info.xlated_prog_insns);
1947 ulen = min_t(u32, info.xlated_prog_len, ulen);
Daniel Borkmann7105e822017-12-20 13:42:57 +01001948 fault = copy_to_user(uinsns, insns_sanitized, ulen);
1949 kfree(insns_sanitized);
1950 if (fault)
Martin KaFai Lau1e270972017-06-05 12:15:52 -07001951 return -EFAULT;
1952 }
1953
Jakub Kicinski675fc272017-12-27 18:39:09 -08001954 if (bpf_prog_is_dev_bound(prog->aux)) {
1955 err = bpf_prog_offload_info_fill(&info, prog);
1956 if (err)
1957 return err;
Jiong Wangfcfb1262018-01-16 16:05:19 -08001958 goto done;
1959 }
1960
1961 /* NOTE: the following code is supposed to be skipped for offload.
1962 * bpf_prog_offload_info_fill() is the place to fill similar fields
1963 * for offload.
1964 */
1965 ulen = info.jited_prog_len;
Sandipan Das4d56a762018-05-24 12:26:51 +05301966 if (prog->aux->func_cnt) {
1967 u32 i;
1968
1969 info.jited_prog_len = 0;
1970 for (i = 0; i < prog->aux->func_cnt; i++)
1971 info.jited_prog_len += prog->aux->func[i]->jited_len;
1972 } else {
1973 info.jited_prog_len = prog->jited_len;
1974 }
1975
Jiong Wangfcfb1262018-01-16 16:05:19 -08001976 if (info.jited_prog_len && ulen) {
1977 if (bpf_dump_raw_ok()) {
1978 uinsns = u64_to_user_ptr(info.jited_prog_insns);
1979 ulen = min_t(u32, info.jited_prog_len, ulen);
Sandipan Das4d56a762018-05-24 12:26:51 +05301980
1981 /* for multi-function programs, copy the JITed
1982 * instructions for all the functions
1983 */
1984 if (prog->aux->func_cnt) {
1985 u32 len, free, i;
1986 u8 *img;
1987
1988 free = ulen;
1989 for (i = 0; i < prog->aux->func_cnt; i++) {
1990 len = prog->aux->func[i]->jited_len;
1991 len = min_t(u32, len, free);
1992 img = (u8 *) prog->aux->func[i]->bpf_func;
1993 if (copy_to_user(uinsns, img, len))
1994 return -EFAULT;
1995 uinsns += len;
1996 free -= len;
1997 if (!free)
1998 break;
1999 }
2000 } else {
2001 if (copy_to_user(uinsns, prog->bpf_func, ulen))
2002 return -EFAULT;
2003 }
Jiong Wangfcfb1262018-01-16 16:05:19 -08002004 } else {
2005 info.jited_prog_insns = 0;
2006 }
Jakub Kicinski675fc272017-12-27 18:39:09 -08002007 }
2008
Sandipan Dasdbecd732018-05-24 12:26:48 +05302009 ulen = info.nr_jited_ksyms;
2010 info.nr_jited_ksyms = prog->aux->func_cnt;
2011 if (info.nr_jited_ksyms && ulen) {
2012 if (bpf_dump_raw_ok()) {
2013 u64 __user *user_ksyms;
2014 ulong ksym_addr;
2015 u32 i;
2016
2017 /* copy the address of the kernel symbol
2018 * corresponding to each function
2019 */
2020 ulen = min_t(u32, info.nr_jited_ksyms, ulen);
2021 user_ksyms = u64_to_user_ptr(info.jited_ksyms);
2022 for (i = 0; i < ulen; i++) {
2023 ksym_addr = (ulong) prog->aux->func[i]->bpf_func;
2024 ksym_addr &= PAGE_MASK;
2025 if (put_user((u64) ksym_addr, &user_ksyms[i]))
2026 return -EFAULT;
2027 }
2028 } else {
2029 info.jited_ksyms = 0;
2030 }
2031 }
2032
Sandipan Das815581c2018-05-24 12:26:52 +05302033 ulen = info.nr_jited_func_lens;
2034 info.nr_jited_func_lens = prog->aux->func_cnt;
2035 if (info.nr_jited_func_lens && ulen) {
2036 if (bpf_dump_raw_ok()) {
2037 u32 __user *user_lens;
2038 u32 func_len, i;
2039
2040 /* copy the JITed image lengths for each function */
2041 ulen = min_t(u32, info.nr_jited_func_lens, ulen);
2042 user_lens = u64_to_user_ptr(info.jited_func_lens);
2043 for (i = 0; i < ulen; i++) {
2044 func_len = prog->aux->func[i]->jited_len;
2045 if (put_user(func_len, &user_lens[i]))
2046 return -EFAULT;
2047 }
2048 } else {
2049 info.jited_func_lens = 0;
2050 }
2051 }
2052
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002053done:
2054 if (copy_to_user(uinfo, &info, info_len) ||
2055 put_user(info_len, &uattr->info.info_len))
2056 return -EFAULT;
2057
2058 return 0;
2059}
2060
2061static int bpf_map_get_info_by_fd(struct bpf_map *map,
2062 const union bpf_attr *attr,
2063 union bpf_attr __user *uattr)
2064{
2065 struct bpf_map_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2066 struct bpf_map_info info = {};
2067 u32 info_len = attr->info.info_len;
2068 int err;
2069
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002070 err = bpf_check_uarg_tail_zero(uinfo, sizeof(info), info_len);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002071 if (err)
2072 return err;
2073 info_len = min_t(u32, sizeof(info), info_len);
2074
2075 info.type = map->map_type;
2076 info.id = map->id;
2077 info.key_size = map->key_size;
2078 info.value_size = map->value_size;
2079 info.max_entries = map->max_entries;
2080 info.map_flags = map->map_flags;
Martin KaFai Lauad5b1772017-09-27 14:37:53 -07002081 memcpy(info.name, map->name, sizeof(map->name));
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002082
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002083 if (map->btf) {
2084 info.btf_id = btf_id(map->btf);
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -07002085 info.btf_key_type_id = map->btf_key_type_id;
2086 info.btf_value_type_id = map->btf_value_type_id;
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002087 }
2088
Jakub Kicinski52775b32018-01-17 19:13:28 -08002089 if (bpf_map_is_dev_bound(map)) {
2090 err = bpf_map_offload_info_fill(&info, map);
2091 if (err)
2092 return err;
2093 }
2094
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002095 if (copy_to_user(uinfo, &info, info_len) ||
2096 put_user(info_len, &uattr->info.info_len))
2097 return -EFAULT;
2098
2099 return 0;
2100}
2101
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002102static int bpf_btf_get_info_by_fd(struct btf *btf,
2103 const union bpf_attr *attr,
2104 union bpf_attr __user *uattr)
2105{
2106 struct bpf_btf_info __user *uinfo = u64_to_user_ptr(attr->info.info);
2107 u32 info_len = attr->info.info_len;
2108 int err;
2109
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002110 err = bpf_check_uarg_tail_zero(uinfo, sizeof(*uinfo), info_len);
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002111 if (err)
2112 return err;
2113
2114 return btf_get_info_by_fd(btf, attr, uattr);
2115}
2116
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002117#define BPF_OBJ_GET_INFO_BY_FD_LAST_FIELD info.info
2118
2119static int bpf_obj_get_info_by_fd(const union bpf_attr *attr,
2120 union bpf_attr __user *uattr)
2121{
2122 int ufd = attr->info.bpf_fd;
2123 struct fd f;
2124 int err;
2125
2126 if (CHECK_ATTR(BPF_OBJ_GET_INFO_BY_FD))
2127 return -EINVAL;
2128
2129 f = fdget(ufd);
2130 if (!f.file)
2131 return -EBADFD;
2132
2133 if (f.file->f_op == &bpf_prog_fops)
2134 err = bpf_prog_get_info_by_fd(f.file->private_data, attr,
2135 uattr);
2136 else if (f.file->f_op == &bpf_map_fops)
2137 err = bpf_map_get_info_by_fd(f.file->private_data, attr,
2138 uattr);
Martin KaFai Lau60197cf2018-04-18 15:56:02 -07002139 else if (f.file->f_op == &btf_fops)
Martin KaFai Lau62dab842018-05-04 14:49:52 -07002140 err = bpf_btf_get_info_by_fd(f.file->private_data, attr, uattr);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002141 else
2142 err = -EINVAL;
2143
2144 fdput(f);
2145 return err;
2146}
2147
Martin KaFai Lauf56a6532018-04-18 15:56:01 -07002148#define BPF_BTF_LOAD_LAST_FIELD btf_log_level
2149
2150static int bpf_btf_load(const union bpf_attr *attr)
2151{
2152 if (CHECK_ATTR(BPF_BTF_LOAD))
2153 return -EINVAL;
2154
2155 if (!capable(CAP_SYS_ADMIN))
2156 return -EPERM;
2157
2158 return btf_new_fd(attr);
2159}
2160
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002161#define BPF_BTF_GET_FD_BY_ID_LAST_FIELD btf_id
2162
2163static int bpf_btf_get_fd_by_id(const union bpf_attr *attr)
2164{
2165 if (CHECK_ATTR(BPF_BTF_GET_FD_BY_ID))
2166 return -EINVAL;
2167
2168 if (!capable(CAP_SYS_ADMIN))
2169 return -EPERM;
2170
2171 return btf_get_fd_by_id(attr->btf_id);
2172}
2173
Yonghong Song41bdc4b2018-05-24 11:21:09 -07002174static int bpf_task_fd_query_copy(const union bpf_attr *attr,
2175 union bpf_attr __user *uattr,
2176 u32 prog_id, u32 fd_type,
2177 const char *buf, u64 probe_offset,
2178 u64 probe_addr)
2179{
2180 char __user *ubuf = u64_to_user_ptr(attr->task_fd_query.buf);
2181 u32 len = buf ? strlen(buf) : 0, input_len;
2182 int err = 0;
2183
2184 if (put_user(len, &uattr->task_fd_query.buf_len))
2185 return -EFAULT;
2186 input_len = attr->task_fd_query.buf_len;
2187 if (input_len && ubuf) {
2188 if (!len) {
2189 /* nothing to copy, just make ubuf NULL terminated */
2190 char zero = '\0';
2191
2192 if (put_user(zero, ubuf))
2193 return -EFAULT;
2194 } else if (input_len >= len + 1) {
2195 /* ubuf can hold the string with NULL terminator */
2196 if (copy_to_user(ubuf, buf, len + 1))
2197 return -EFAULT;
2198 } else {
2199 /* ubuf cannot hold the string with NULL terminator,
2200 * do a partial copy with NULL terminator.
2201 */
2202 char zero = '\0';
2203
2204 err = -ENOSPC;
2205 if (copy_to_user(ubuf, buf, input_len - 1))
2206 return -EFAULT;
2207 if (put_user(zero, ubuf + input_len - 1))
2208 return -EFAULT;
2209 }
2210 }
2211
2212 if (put_user(prog_id, &uattr->task_fd_query.prog_id) ||
2213 put_user(fd_type, &uattr->task_fd_query.fd_type) ||
2214 put_user(probe_offset, &uattr->task_fd_query.probe_offset) ||
2215 put_user(probe_addr, &uattr->task_fd_query.probe_addr))
2216 return -EFAULT;
2217
2218 return err;
2219}
2220
2221#define BPF_TASK_FD_QUERY_LAST_FIELD task_fd_query.probe_addr
2222
2223static int bpf_task_fd_query(const union bpf_attr *attr,
2224 union bpf_attr __user *uattr)
2225{
2226 pid_t pid = attr->task_fd_query.pid;
2227 u32 fd = attr->task_fd_query.fd;
2228 const struct perf_event *event;
2229 struct files_struct *files;
2230 struct task_struct *task;
2231 struct file *file;
2232 int err;
2233
2234 if (CHECK_ATTR(BPF_TASK_FD_QUERY))
2235 return -EINVAL;
2236
2237 if (!capable(CAP_SYS_ADMIN))
2238 return -EPERM;
2239
2240 if (attr->task_fd_query.flags != 0)
2241 return -EINVAL;
2242
2243 task = get_pid_task(find_vpid(pid), PIDTYPE_PID);
2244 if (!task)
2245 return -ENOENT;
2246
2247 files = get_files_struct(task);
2248 put_task_struct(task);
2249 if (!files)
2250 return -ENOENT;
2251
2252 err = 0;
2253 spin_lock(&files->file_lock);
2254 file = fcheck_files(files, fd);
2255 if (!file)
2256 err = -EBADF;
2257 else
2258 get_file(file);
2259 spin_unlock(&files->file_lock);
2260 put_files_struct(files);
2261
2262 if (err)
2263 goto out;
2264
2265 if (file->f_op == &bpf_raw_tp_fops) {
2266 struct bpf_raw_tracepoint *raw_tp = file->private_data;
2267 struct bpf_raw_event_map *btp = raw_tp->btp;
2268
2269 err = bpf_task_fd_query_copy(attr, uattr,
2270 raw_tp->prog->aux->id,
2271 BPF_FD_TYPE_RAW_TRACEPOINT,
2272 btp->tp->name, 0, 0);
2273 goto put_file;
2274 }
2275
2276 event = perf_get_event(file);
2277 if (!IS_ERR(event)) {
2278 u64 probe_offset, probe_addr;
2279 u32 prog_id, fd_type;
2280 const char *buf;
2281
2282 err = bpf_get_perf_event_info(event, &prog_id, &fd_type,
2283 &buf, &probe_offset,
2284 &probe_addr);
2285 if (!err)
2286 err = bpf_task_fd_query_copy(attr, uattr, prog_id,
2287 fd_type, buf,
2288 probe_offset,
2289 probe_addr);
2290 goto put_file;
2291 }
2292
2293 err = -ENOTSUPP;
2294put_file:
2295 fput(file);
2296out:
2297 return err;
2298}
2299
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002300SYSCALL_DEFINE3(bpf, int, cmd, union bpf_attr __user *, uattr, unsigned int, size)
2301{
2302 union bpf_attr attr = {};
2303 int err;
2304
Chenbo Feng0fa4fe82018-03-19 17:57:27 -07002305 if (sysctl_unprivileged_bpf_disabled && !capable(CAP_SYS_ADMIN))
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002306 return -EPERM;
2307
Martin KaFai Laudcab51f2018-05-22 15:03:31 -07002308 err = bpf_check_uarg_tail_zero(uattr, sizeof(attr), size);
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002309 if (err)
2310 return err;
2311 size = min_t(u32, size, sizeof(attr));
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002312
2313 /* copy attributes from user space, may be less than sizeof(bpf_attr) */
2314 if (copy_from_user(&attr, uattr, size) != 0)
2315 return -EFAULT;
2316
Chenbo Fengafdb09c2017-10-18 13:00:24 -07002317 err = security_bpf(cmd, &attr, size);
2318 if (err < 0)
2319 return err;
2320
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002321 switch (cmd) {
2322 case BPF_MAP_CREATE:
2323 err = map_create(&attr);
2324 break;
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -07002325 case BPF_MAP_LOOKUP_ELEM:
2326 err = map_lookup_elem(&attr);
2327 break;
2328 case BPF_MAP_UPDATE_ELEM:
2329 err = map_update_elem(&attr);
2330 break;
2331 case BPF_MAP_DELETE_ELEM:
2332 err = map_delete_elem(&attr);
2333 break;
2334 case BPF_MAP_GET_NEXT_KEY:
2335 err = map_get_next_key(&attr);
2336 break;
Alexei Starovoitov09756af2014-09-26 00:17:00 -07002337 case BPF_PROG_LOAD:
2338 err = bpf_prog_load(&attr);
2339 break;
Daniel Borkmannb2197752015-10-29 14:58:09 +01002340 case BPF_OBJ_PIN:
2341 err = bpf_obj_pin(&attr);
2342 break;
2343 case BPF_OBJ_GET:
2344 err = bpf_obj_get(&attr);
2345 break;
Daniel Mackf4324552016-11-23 16:52:27 +01002346 case BPF_PROG_ATTACH:
2347 err = bpf_prog_attach(&attr);
2348 break;
2349 case BPF_PROG_DETACH:
2350 err = bpf_prog_detach(&attr);
2351 break;
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07002352 case BPF_PROG_QUERY:
2353 err = bpf_prog_query(&attr, uattr);
2354 break;
Alexei Starovoitov1cf1cae2017-03-30 21:45:38 -07002355 case BPF_PROG_TEST_RUN:
2356 err = bpf_prog_test_run(&attr, uattr);
2357 break;
Martin KaFai Lau34ad5582017-06-05 12:15:48 -07002358 case BPF_PROG_GET_NEXT_ID:
2359 err = bpf_obj_get_next_id(&attr, uattr,
2360 &prog_idr, &prog_idr_lock);
2361 break;
2362 case BPF_MAP_GET_NEXT_ID:
2363 err = bpf_obj_get_next_id(&attr, uattr,
2364 &map_idr, &map_idr_lock);
2365 break;
Martin KaFai Laub16d9aa2017-06-05 12:15:49 -07002366 case BPF_PROG_GET_FD_BY_ID:
2367 err = bpf_prog_get_fd_by_id(&attr);
2368 break;
Martin KaFai Laubd5f5f4e2017-06-05 12:15:50 -07002369 case BPF_MAP_GET_FD_BY_ID:
2370 err = bpf_map_get_fd_by_id(&attr);
2371 break;
Martin KaFai Lau1e270972017-06-05 12:15:52 -07002372 case BPF_OBJ_GET_INFO_BY_FD:
2373 err = bpf_obj_get_info_by_fd(&attr, uattr);
2374 break;
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07002375 case BPF_RAW_TRACEPOINT_OPEN:
2376 err = bpf_raw_tracepoint_open(&attr);
2377 break;
Martin KaFai Lauf56a6532018-04-18 15:56:01 -07002378 case BPF_BTF_LOAD:
2379 err = bpf_btf_load(&attr);
2380 break;
Martin KaFai Lau78958fc2018-05-04 14:49:51 -07002381 case BPF_BTF_GET_FD_BY_ID:
2382 err = bpf_btf_get_fd_by_id(&attr);
2383 break;
Yonghong Song41bdc4b2018-05-24 11:21:09 -07002384 case BPF_TASK_FD_QUERY:
2385 err = bpf_task_fd_query(&attr, uattr);
2386 break;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002387 default:
2388 err = -EINVAL;
2389 break;
2390 }
2391
2392 return err;
2393}