Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 1 | /* 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 Borkmann | a67edbf | 2017-01-25 02:28:18 +0100 | [diff] [blame] | 13 | #include <linux/bpf_trace.h> |
Sean Young | f4364dc | 2018-05-27 12:24:09 +0100 | [diff] [blame] | 14 | #include <linux/bpf_lirc.h> |
Martin KaFai Lau | f56a653 | 2018-04-18 15:56:01 -0700 | [diff] [blame] | 15 | #include <linux/btf.h> |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 16 | #include <linux/syscalls.h> |
| 17 | #include <linux/slab.h> |
Ingo Molnar | 3f07c01 | 2017-02-08 18:51:30 +0100 | [diff] [blame] | 18 | #include <linux/sched/signal.h> |
Daniel Borkmann | d407bd2 | 2017-01-18 15:14:17 +0100 | [diff] [blame] | 19 | #include <linux/vmalloc.h> |
| 20 | #include <linux/mmzone.h> |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 21 | #include <linux/anon_inodes.h> |
Yonghong Song | 41bdc4b | 2018-05-24 11:21:09 -0700 | [diff] [blame] | 22 | #include <linux/fdtable.h> |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 23 | #include <linux/file.h> |
Yonghong Song | 41bdc4b | 2018-05-24 11:21:09 -0700 | [diff] [blame] | 24 | #include <linux/fs.h> |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 25 | #include <linux/license.h> |
| 26 | #include <linux/filter.h> |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 27 | #include <linux/version.h> |
Mickaël Salaün | 535e7b4b | 2016-11-13 19:44:03 +0100 | [diff] [blame] | 28 | #include <linux/kernel.h> |
Martin KaFai Lau | dc4bb0e | 2017-06-05 12:15:46 -0700 | [diff] [blame] | 29 | #include <linux/idr.h> |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 30 | #include <linux/cred.h> |
| 31 | #include <linux/timekeeping.h> |
| 32 | #include <linux/ctype.h> |
Mark Rutland | 9ef09e3 | 2018-05-03 17:04:59 +0100 | [diff] [blame] | 33 | #include <linux/nospec.h> |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 34 | |
Martin KaFai Lau | 14dc6f0 | 2017-06-27 23:08:34 -0700 | [diff] [blame] | 35 | #define IS_FD_ARRAY(map) ((map)->map_type == BPF_MAP_TYPE_PROG_ARRAY || \ |
| 36 | (map)->map_type == BPF_MAP_TYPE_PERF_EVENT_ARRAY || \ |
| 37 | (map)->map_type == BPF_MAP_TYPE_CGROUP_ARRAY || \ |
| 38 | (map)->map_type == BPF_MAP_TYPE_ARRAY_OF_MAPS) |
| 39 | #define IS_FD_HASH(map) ((map)->map_type == BPF_MAP_TYPE_HASH_OF_MAPS) |
| 40 | #define IS_FD_MAP(map) (IS_FD_ARRAY(map) || IS_FD_HASH(map)) |
| 41 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 42 | #define BPF_OBJ_FLAG_MASK (BPF_F_RDONLY | BPF_F_WRONLY) |
| 43 | |
Alexei Starovoitov | b121d1e | 2016-03-07 21:57:13 -0800 | [diff] [blame] | 44 | DEFINE_PER_CPU(int, bpf_prog_active); |
Martin KaFai Lau | dc4bb0e | 2017-06-05 12:15:46 -0700 | [diff] [blame] | 45 | static DEFINE_IDR(prog_idr); |
| 46 | static DEFINE_SPINLOCK(prog_idr_lock); |
Martin KaFai Lau | f3f1c05 | 2017-06-05 12:15:47 -0700 | [diff] [blame] | 47 | static DEFINE_IDR(map_idr); |
| 48 | static DEFINE_SPINLOCK(map_idr_lock); |
Alexei Starovoitov | b121d1e | 2016-03-07 21:57:13 -0800 | [diff] [blame] | 49 | |
Alexei Starovoitov | 1be7f75 | 2015-10-07 22:23:21 -0700 | [diff] [blame] | 50 | int sysctl_unprivileged_bpf_disabled __read_mostly; |
| 51 | |
Johannes Berg | 40077e0 | 2017-04-11 15:34:58 +0200 | [diff] [blame] | 52 | static const struct bpf_map_ops * const bpf_map_types[] = { |
| 53 | #define BPF_PROG_TYPE(_id, _ops) |
| 54 | #define BPF_MAP_TYPE(_id, _ops) \ |
| 55 | [_id] = &_ops, |
| 56 | #include <linux/bpf_types.h> |
| 57 | #undef BPF_PROG_TYPE |
| 58 | #undef BPF_MAP_TYPE |
| 59 | }; |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 60 | |
Mickaël Salaün | 752ba56 | 2017-08-07 20:45:20 +0200 | [diff] [blame] | 61 | /* |
| 62 | * If we're handed a bigger struct than we know of, ensure all the unknown bits |
| 63 | * are 0 - i.e. new user-space does not rely on any kernel feature extensions |
| 64 | * we don't know about yet. |
| 65 | * |
| 66 | * There is a ToCToU between this function call and the following |
| 67 | * copy_from_user() call. However, this is not a concern since this function is |
| 68 | * meant to be a future-proofing of bits. |
| 69 | */ |
Martin KaFai Lau | dcab51f | 2018-05-22 15:03:31 -0700 | [diff] [blame] | 70 | int bpf_check_uarg_tail_zero(void __user *uaddr, |
| 71 | size_t expected_size, |
| 72 | size_t actual_size) |
Mickaël Salaün | 58291a7 | 2017-08-07 20:45:19 +0200 | [diff] [blame] | 73 | { |
| 74 | unsigned char __user *addr; |
| 75 | unsigned char __user *end; |
| 76 | unsigned char val; |
| 77 | int err; |
| 78 | |
Mickaël Salaün | 752ba56 | 2017-08-07 20:45:20 +0200 | [diff] [blame] | 79 | if (unlikely(actual_size > PAGE_SIZE)) /* silly large */ |
| 80 | return -E2BIG; |
| 81 | |
| 82 | if (unlikely(!access_ok(VERIFY_READ, uaddr, actual_size))) |
| 83 | return -EFAULT; |
| 84 | |
Mickaël Salaün | 58291a7 | 2017-08-07 20:45:19 +0200 | [diff] [blame] | 85 | if (actual_size <= expected_size) |
| 86 | return 0; |
| 87 | |
| 88 | addr = uaddr + expected_size; |
| 89 | end = uaddr + actual_size; |
| 90 | |
| 91 | for (; addr < end; addr++) { |
| 92 | err = get_user(val, addr); |
| 93 | if (err) |
| 94 | return err; |
| 95 | if (val) |
| 96 | return -E2BIG; |
| 97 | } |
| 98 | |
| 99 | return 0; |
| 100 | } |
| 101 | |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 102 | const struct bpf_map_ops bpf_map_offload_ops = { |
| 103 | .map_alloc = bpf_map_offload_map_alloc, |
| 104 | .map_free = bpf_map_offload_map_free, |
Daniel Borkmann | e8d2bec | 2018-08-12 01:59:17 +0200 | [diff] [blame] | 105 | .map_check_btf = map_check_no_btf, |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 106 | }; |
| 107 | |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 108 | static struct bpf_map *find_and_alloc_map(union bpf_attr *attr) |
| 109 | { |
Jakub Kicinski | 1110f3a | 2018-01-11 20:29:03 -0800 | [diff] [blame] | 110 | const struct bpf_map_ops *ops; |
Mark Rutland | 9ef09e3 | 2018-05-03 17:04:59 +0100 | [diff] [blame] | 111 | u32 type = attr->map_type; |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 112 | struct bpf_map *map; |
Jakub Kicinski | 1110f3a | 2018-01-11 20:29:03 -0800 | [diff] [blame] | 113 | int err; |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 114 | |
Mark Rutland | 9ef09e3 | 2018-05-03 17:04:59 +0100 | [diff] [blame] | 115 | if (type >= ARRAY_SIZE(bpf_map_types)) |
Jakub Kicinski | 1110f3a | 2018-01-11 20:29:03 -0800 | [diff] [blame] | 116 | return ERR_PTR(-EINVAL); |
Mark Rutland | 9ef09e3 | 2018-05-03 17:04:59 +0100 | [diff] [blame] | 117 | type = array_index_nospec(type, ARRAY_SIZE(bpf_map_types)); |
| 118 | ops = bpf_map_types[type]; |
Jakub Kicinski | 1110f3a | 2018-01-11 20:29:03 -0800 | [diff] [blame] | 119 | if (!ops) |
Johannes Berg | 40077e0 | 2017-04-11 15:34:58 +0200 | [diff] [blame] | 120 | return ERR_PTR(-EINVAL); |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 121 | |
Jakub Kicinski | 1110f3a | 2018-01-11 20:29:03 -0800 | [diff] [blame] | 122 | if (ops->map_alloc_check) { |
| 123 | err = ops->map_alloc_check(attr); |
| 124 | if (err) |
| 125 | return ERR_PTR(err); |
| 126 | } |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 127 | if (attr->map_ifindex) |
| 128 | ops = &bpf_map_offload_ops; |
Jakub Kicinski | 1110f3a | 2018-01-11 20:29:03 -0800 | [diff] [blame] | 129 | map = ops->map_alloc(attr); |
Johannes Berg | 40077e0 | 2017-04-11 15:34:58 +0200 | [diff] [blame] | 130 | if (IS_ERR(map)) |
| 131 | return map; |
Jakub Kicinski | 1110f3a | 2018-01-11 20:29:03 -0800 | [diff] [blame] | 132 | map->ops = ops; |
Mark Rutland | 9ef09e3 | 2018-05-03 17:04:59 +0100 | [diff] [blame] | 133 | map->map_type = type; |
Johannes Berg | 40077e0 | 2017-04-11 15:34:58 +0200 | [diff] [blame] | 134 | return map; |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 135 | } |
| 136 | |
Martin KaFai Lau | 96eabe7 | 2017-08-18 11:28:00 -0700 | [diff] [blame] | 137 | void *bpf_map_area_alloc(size_t size, int numa_node) |
Daniel Borkmann | d407bd2 | 2017-01-18 15:14:17 +0100 | [diff] [blame] | 138 | { |
| 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 Lau | 96eabe7 | 2017-08-18 11:28:00 -0700 | [diff] [blame] | 147 | area = kmalloc_node(size, GFP_USER | flags, numa_node); |
Daniel Borkmann | d407bd2 | 2017-01-18 15:14:17 +0100 | [diff] [blame] | 148 | if (area != NULL) |
| 149 | return area; |
| 150 | } |
| 151 | |
Martin KaFai Lau | 96eabe7 | 2017-08-18 11:28:00 -0700 | [diff] [blame] | 152 | return __vmalloc_node_flags_caller(size, numa_node, GFP_KERNEL | flags, |
| 153 | __builtin_return_address(0)); |
Daniel Borkmann | d407bd2 | 2017-01-18 15:14:17 +0100 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | void bpf_map_area_free(void *area) |
| 157 | { |
| 158 | kvfree(area); |
| 159 | } |
| 160 | |
Jakub Kicinski | bd47564 | 2018-01-11 20:29:06 -0800 | [diff] [blame] | 161 | void 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 Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 171 | int 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 Gushchin | 0a4c58f | 2018-08-02 14:27:17 -0700 | [diff] [blame] | 184 | static int bpf_charge_memlock(struct user_struct *user, u32 pages) |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 185 | { |
Roman Gushchin | 0a4c58f | 2018-08-02 14:27:17 -0700 | [diff] [blame] | 186 | unsigned long memlock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT; |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 187 | |
Roman Gushchin | 0a4c58f | 2018-08-02 14:27:17 -0700 | [diff] [blame] | 188 | if (atomic_long_add_return(pages, &user->locked_vm) > memlock_limit) { |
| 189 | atomic_long_sub(pages, &user->locked_vm); |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 190 | return -EPERM; |
| 191 | } |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 192 | return 0; |
| 193 | } |
| 194 | |
Roman Gushchin | 0a4c58f | 2018-08-02 14:27:17 -0700 | [diff] [blame] | 195 | static void bpf_uncharge_memlock(struct user_struct *user, u32 pages) |
| 196 | { |
| 197 | atomic_long_sub(pages, &user->locked_vm); |
| 198 | } |
| 199 | |
| 200 | static 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 | |
| 214 | static void bpf_map_release_memlock(struct bpf_map *map) |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 215 | { |
| 216 | struct user_struct *user = map->user; |
Roman Gushchin | 0a4c58f | 2018-08-02 14:27:17 -0700 | [diff] [blame] | 217 | bpf_uncharge_memlock(user, map->pages); |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 218 | free_uid(user); |
| 219 | } |
| 220 | |
Roman Gushchin | 0a4c58f | 2018-08-02 14:27:17 -0700 | [diff] [blame] | 221 | int 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 | |
| 232 | void 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 Lau | f3f1c05 | 2017-06-05 12:15:47 -0700 | [diff] [blame] | 238 | static int bpf_map_alloc_id(struct bpf_map *map) |
| 239 | { |
| 240 | int id; |
| 241 | |
Shaohua Li | b76354c | 2018-03-27 11:53:21 -0700 | [diff] [blame] | 242 | idr_preload(GFP_KERNEL); |
Martin KaFai Lau | f3f1c05 | 2017-06-05 12:15:47 -0700 | [diff] [blame] | 243 | 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 Li | b76354c | 2018-03-27 11:53:21 -0700 | [diff] [blame] | 248 | idr_preload_end(); |
Martin KaFai Lau | f3f1c05 | 2017-06-05 12:15:47 -0700 | [diff] [blame] | 249 | |
| 250 | if (WARN_ON_ONCE(!id)) |
| 251 | return -ENOSPC; |
| 252 | |
| 253 | return id > 0 ? 0 : id; |
| 254 | } |
| 255 | |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 256 | void bpf_map_free_id(struct bpf_map *map, bool do_idr_lock) |
Martin KaFai Lau | f3f1c05 | 2017-06-05 12:15:47 -0700 | [diff] [blame] | 257 | { |
Eric Dumazet | 930651a | 2017-09-19 09:15:59 -0700 | [diff] [blame] | 258 | unsigned long flags; |
| 259 | |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 260 | /* 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 Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 268 | if (do_idr_lock) |
Eric Dumazet | 930651a | 2017-09-19 09:15:59 -0700 | [diff] [blame] | 269 | spin_lock_irqsave(&map_idr_lock, flags); |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 270 | else |
| 271 | __acquire(&map_idr_lock); |
| 272 | |
Martin KaFai Lau | f3f1c05 | 2017-06-05 12:15:47 -0700 | [diff] [blame] | 273 | idr_remove(&map_idr, map->id); |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 274 | map->id = 0; |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 275 | |
| 276 | if (do_idr_lock) |
Eric Dumazet | 930651a | 2017-09-19 09:15:59 -0700 | [diff] [blame] | 277 | spin_unlock_irqrestore(&map_idr_lock, flags); |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 278 | else |
| 279 | __release(&map_idr_lock); |
Martin KaFai Lau | f3f1c05 | 2017-06-05 12:15:47 -0700 | [diff] [blame] | 280 | } |
| 281 | |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 282 | /* called from workqueue */ |
| 283 | static void bpf_map_free_deferred(struct work_struct *work) |
| 284 | { |
| 285 | struct bpf_map *map = container_of(work, struct bpf_map, work); |
| 286 | |
Roman Gushchin | 0a4c58f | 2018-08-02 14:27:17 -0700 | [diff] [blame] | 287 | bpf_map_release_memlock(map); |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 288 | security_bpf_map_free(map); |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 289 | /* implementation dependent freeing */ |
| 290 | map->ops->map_free(map); |
| 291 | } |
| 292 | |
Daniel Borkmann | c9da161 | 2015-11-24 21:28:15 +0100 | [diff] [blame] | 293 | static void bpf_map_put_uref(struct bpf_map *map) |
| 294 | { |
| 295 | if (atomic_dec_and_test(&map->usercnt)) { |
John Fastabend | ba6b8de | 2018-04-23 15:39:23 -0700 | [diff] [blame] | 296 | if (map->ops->map_release_uref) |
| 297 | map->ops->map_release_uref(map); |
Daniel Borkmann | c9da161 | 2015-11-24 21:28:15 +0100 | [diff] [blame] | 298 | } |
| 299 | } |
| 300 | |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 301 | /* decrement map refcnt and schedule it for freeing via workqueue |
| 302 | * (unrelying map implementation ops->map_free() might sleep) |
| 303 | */ |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 304 | static void __bpf_map_put(struct bpf_map *map, bool do_idr_lock) |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 305 | { |
| 306 | if (atomic_dec_and_test(&map->refcnt)) { |
Martin KaFai Lau | 34ad558 | 2017-06-05 12:15:48 -0700 | [diff] [blame] | 307 | /* bpf_map_free_id() must be called first */ |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 308 | bpf_map_free_id(map, do_idr_lock); |
Martin KaFai Lau | 78958fc | 2018-05-04 14:49:51 -0700 | [diff] [blame] | 309 | btf_put(map->btf); |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 310 | INIT_WORK(&map->work, bpf_map_free_deferred); |
| 311 | schedule_work(&map->work); |
| 312 | } |
| 313 | } |
| 314 | |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 315 | void bpf_map_put(struct bpf_map *map) |
| 316 | { |
| 317 | __bpf_map_put(map, true); |
| 318 | } |
Jakub Kicinski | 630a4d3 | 2018-05-03 18:37:09 -0700 | [diff] [blame] | 319 | EXPORT_SYMBOL_GPL(bpf_map_put); |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 320 | |
Daniel Borkmann | c9da161 | 2015-11-24 21:28:15 +0100 | [diff] [blame] | 321 | void bpf_map_put_with_uref(struct bpf_map *map) |
| 322 | { |
| 323 | bpf_map_put_uref(map); |
| 324 | bpf_map_put(map); |
| 325 | } |
| 326 | |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 327 | static int bpf_map_release(struct inode *inode, struct file *filp) |
| 328 | { |
Daniel Borkmann | 61d1b6a | 2016-06-15 22:47:12 +0200 | [diff] [blame] | 329 | 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 Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 335 | return 0; |
| 336 | } |
| 337 | |
Daniel Borkmann | f99bf20 | 2015-11-19 11:56:22 +0100 | [diff] [blame] | 338 | #ifdef CONFIG_PROC_FS |
| 339 | static void bpf_map_show_fdinfo(struct seq_file *m, struct file *filp) |
| 340 | { |
| 341 | const struct bpf_map *map = filp->private_data; |
Daniel Borkmann | 21116b7 | 2016-11-26 01:28:07 +0100 | [diff] [blame] | 342 | const struct bpf_array *array; |
| 343 | u32 owner_prog_type = 0; |
Daniel Borkmann | 9780c0a | 2017-07-02 02:13:28 +0200 | [diff] [blame] | 344 | u32 owner_jited = 0; |
Daniel Borkmann | 21116b7 | 2016-11-26 01:28:07 +0100 | [diff] [blame] | 345 | |
| 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 Borkmann | 9780c0a | 2017-07-02 02:13:28 +0200 | [diff] [blame] | 349 | owner_jited = array->owner_jited; |
Daniel Borkmann | 21116b7 | 2016-11-26 01:28:07 +0100 | [diff] [blame] | 350 | } |
Daniel Borkmann | f99bf20 | 2015-11-19 11:56:22 +0100 | [diff] [blame] | 351 | |
| 352 | seq_printf(m, |
| 353 | "map_type:\t%u\n" |
| 354 | "key_size:\t%u\n" |
| 355 | "value_size:\t%u\n" |
Daniel Borkmann | 322cea2 | 2016-03-25 00:30:25 +0100 | [diff] [blame] | 356 | "max_entries:\t%u\n" |
Daniel Borkmann | 21116b7 | 2016-11-26 01:28:07 +0100 | [diff] [blame] | 357 | "map_flags:\t%#x\n" |
Daniel Borkmann | 4316b40 | 2018-06-02 23:06:34 +0200 | [diff] [blame] | 358 | "memlock:\t%llu\n" |
| 359 | "map_id:\t%u\n", |
Daniel Borkmann | f99bf20 | 2015-11-19 11:56:22 +0100 | [diff] [blame] | 360 | map->map_type, |
| 361 | map->key_size, |
| 362 | map->value_size, |
Daniel Borkmann | 322cea2 | 2016-03-25 00:30:25 +0100 | [diff] [blame] | 363 | map->max_entries, |
Daniel Borkmann | 21116b7 | 2016-11-26 01:28:07 +0100 | [diff] [blame] | 364 | map->map_flags, |
Daniel Borkmann | 4316b40 | 2018-06-02 23:06:34 +0200 | [diff] [blame] | 365 | map->pages * 1ULL << PAGE_SHIFT, |
| 366 | map->id); |
Daniel Borkmann | 21116b7 | 2016-11-26 01:28:07 +0100 | [diff] [blame] | 367 | |
Daniel Borkmann | 9780c0a | 2017-07-02 02:13:28 +0200 | [diff] [blame] | 368 | if (owner_prog_type) { |
Daniel Borkmann | 21116b7 | 2016-11-26 01:28:07 +0100 | [diff] [blame] | 369 | seq_printf(m, "owner_prog_type:\t%u\n", |
| 370 | owner_prog_type); |
Daniel Borkmann | 9780c0a | 2017-07-02 02:13:28 +0200 | [diff] [blame] | 371 | seq_printf(m, "owner_jited:\t%u\n", |
| 372 | owner_jited); |
| 373 | } |
Daniel Borkmann | f99bf20 | 2015-11-19 11:56:22 +0100 | [diff] [blame] | 374 | } |
| 375 | #endif |
| 376 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 377 | static 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 | |
| 386 | static 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 Feng | f66e448 | 2017-10-18 13:00:26 -0700 | [diff] [blame] | 395 | const struct file_operations bpf_map_fops = { |
Daniel Borkmann | f99bf20 | 2015-11-19 11:56:22 +0100 | [diff] [blame] | 396 | #ifdef CONFIG_PROC_FS |
| 397 | .show_fdinfo = bpf_map_show_fdinfo, |
| 398 | #endif |
| 399 | .release = bpf_map_release, |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 400 | .read = bpf_dummy_read, |
| 401 | .write = bpf_dummy_write, |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 402 | }; |
| 403 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 404 | int bpf_map_new_fd(struct bpf_map *map, int flags) |
Daniel Borkmann | aa79781 | 2015-10-29 14:58:06 +0100 | [diff] [blame] | 405 | { |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 406 | int ret; |
| 407 | |
| 408 | ret = security_bpf_map(map, OPEN_FMODE(flags)); |
| 409 | if (ret < 0) |
| 410 | return ret; |
| 411 | |
Daniel Borkmann | aa79781 | 2015-10-29 14:58:06 +0100 | [diff] [blame] | 412 | return anon_inode_getfd("bpf-map", &bpf_map_fops, map, |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 413 | flags | O_CLOEXEC); |
| 414 | } |
| 415 | |
| 416 | int 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 Borkmann | aa79781 | 2015-10-29 14:58:06 +0100 | [diff] [blame] | 425 | } |
| 426 | |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 427 | /* 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 Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 435 | /* dst and src must have at least BPF_OBJ_NAME_LEN number of bytes. |
| 436 | * Return 0 on success and < 0 on error. |
| 437 | */ |
| 438 | static int bpf_obj_name_cpy(char *dst, const char *src) |
| 439 | { |
| 440 | const char *end = src + BPF_OBJ_NAME_LEN; |
| 441 | |
Martin KaFai Lau | 473d973 | 2017-10-05 21:52:11 -0700 | [diff] [blame] | 442 | memset(dst, 0, BPF_OBJ_NAME_LEN); |
| 443 | |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 444 | /* 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 Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 455 | return 0; |
| 456 | } |
| 457 | |
Daniel Borkmann | e8d2bec | 2018-08-12 01:59:17 +0200 | [diff] [blame] | 458 | int map_check_no_btf(const struct bpf_map *map, |
Roman Gushchin | 1b2b234 | 2018-12-10 15:43:00 -0800 | [diff] [blame] | 459 | const struct btf *btf, |
Daniel Borkmann | e8d2bec | 2018-08-12 01:59:17 +0200 | [diff] [blame] | 460 | const struct btf_type *key_type, |
| 461 | const struct btf_type *value_type) |
| 462 | { |
| 463 | return -ENOTSUPP; |
| 464 | } |
| 465 | |
| 466 | static int map_check_btf(const struct bpf_map *map, const struct btf *btf, |
| 467 | u32 btf_key_id, u32 btf_value_id) |
| 468 | { |
| 469 | const struct btf_type *key_type, *value_type; |
| 470 | u32 key_size, value_size; |
| 471 | int ret = 0; |
| 472 | |
| 473 | key_type = btf_type_id_size(btf, &btf_key_id, &key_size); |
| 474 | if (!key_type || key_size != map->key_size) |
| 475 | return -EINVAL; |
| 476 | |
| 477 | value_type = btf_type_id_size(btf, &btf_value_id, &value_size); |
| 478 | if (!value_type || value_size != map->value_size) |
| 479 | return -EINVAL; |
| 480 | |
| 481 | if (map->ops->map_check_btf) |
Roman Gushchin | 1b2b234 | 2018-12-10 15:43:00 -0800 | [diff] [blame] | 482 | ret = map->ops->map_check_btf(map, btf, key_type, value_type); |
Daniel Borkmann | e8d2bec | 2018-08-12 01:59:17 +0200 | [diff] [blame] | 483 | |
| 484 | return ret; |
| 485 | } |
| 486 | |
Martin KaFai Lau | 9b2cf32 | 2018-05-22 14:57:21 -0700 | [diff] [blame] | 487 | #define BPF_MAP_CREATE_LAST_FIELD btf_value_type_id |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 488 | /* called via syscall */ |
| 489 | static int map_create(union bpf_attr *attr) |
| 490 | { |
Martin KaFai Lau | 96eabe7 | 2017-08-18 11:28:00 -0700 | [diff] [blame] | 491 | int numa_node = bpf_map_attr_numa_node(attr); |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 492 | struct bpf_map *map; |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 493 | int f_flags; |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 494 | int err; |
| 495 | |
| 496 | err = CHECK_ATTR(BPF_MAP_CREATE); |
| 497 | if (err) |
| 498 | return -EINVAL; |
| 499 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 500 | f_flags = bpf_get_file_flag(attr->map_flags); |
| 501 | if (f_flags < 0) |
| 502 | return f_flags; |
| 503 | |
Martin KaFai Lau | 96eabe7 | 2017-08-18 11:28:00 -0700 | [diff] [blame] | 504 | if (numa_node != NUMA_NO_NODE && |
Eric Dumazet | 96e5ae4 | 2017-09-04 22:41:02 -0700 | [diff] [blame] | 505 | ((unsigned int)numa_node >= nr_node_ids || |
| 506 | !node_online(numa_node))) |
Martin KaFai Lau | 96eabe7 | 2017-08-18 11:28:00 -0700 | [diff] [blame] | 507 | return -EINVAL; |
| 508 | |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 509 | /* find map type and init map: hashtable vs rbtree vs bloom vs ... */ |
| 510 | map = find_and_alloc_map(attr); |
| 511 | if (IS_ERR(map)) |
| 512 | return PTR_ERR(map); |
| 513 | |
Martin KaFai Lau | ad5b177 | 2017-09-27 14:37:53 -0700 | [diff] [blame] | 514 | err = bpf_obj_name_cpy(map->name, attr->map_name); |
| 515 | if (err) |
| 516 | goto free_map_nouncharge; |
| 517 | |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 518 | atomic_set(&map->refcnt, 1); |
Daniel Borkmann | c9da161 | 2015-11-24 21:28:15 +0100 | [diff] [blame] | 519 | atomic_set(&map->usercnt, 1); |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 520 | |
Daniel Borkmann | e8d2bec | 2018-08-12 01:59:17 +0200 | [diff] [blame] | 521 | if (attr->btf_key_type_id || attr->btf_value_type_id) { |
Martin KaFai Lau | a26ca7c | 2018-04-18 15:56:03 -0700 | [diff] [blame] | 522 | struct btf *btf; |
| 523 | |
Martin KaFai Lau | 9b2cf32 | 2018-05-22 14:57:21 -0700 | [diff] [blame] | 524 | if (!attr->btf_key_type_id || !attr->btf_value_type_id) { |
Martin KaFai Lau | a26ca7c | 2018-04-18 15:56:03 -0700 | [diff] [blame] | 525 | err = -EINVAL; |
| 526 | goto free_map_nouncharge; |
| 527 | } |
| 528 | |
| 529 | btf = btf_get_by_fd(attr->btf_fd); |
| 530 | if (IS_ERR(btf)) { |
| 531 | err = PTR_ERR(btf); |
| 532 | goto free_map_nouncharge; |
| 533 | } |
| 534 | |
Daniel Borkmann | e8d2bec | 2018-08-12 01:59:17 +0200 | [diff] [blame] | 535 | err = map_check_btf(map, btf, attr->btf_key_type_id, |
| 536 | attr->btf_value_type_id); |
Martin KaFai Lau | a26ca7c | 2018-04-18 15:56:03 -0700 | [diff] [blame] | 537 | if (err) { |
| 538 | btf_put(btf); |
| 539 | goto free_map_nouncharge; |
| 540 | } |
| 541 | |
| 542 | map->btf = btf; |
Martin KaFai Lau | 9b2cf32 | 2018-05-22 14:57:21 -0700 | [diff] [blame] | 543 | map->btf_key_type_id = attr->btf_key_type_id; |
| 544 | map->btf_value_type_id = attr->btf_value_type_id; |
Martin KaFai Lau | a26ca7c | 2018-04-18 15:56:03 -0700 | [diff] [blame] | 545 | } |
| 546 | |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 547 | err = security_bpf_map_alloc(map); |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 548 | if (err) |
Daniel Borkmann | 20b2b24 | 2016-11-04 00:56:31 +0100 | [diff] [blame] | 549 | goto free_map_nouncharge; |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 550 | |
Roman Gushchin | 0a4c58f | 2018-08-02 14:27:17 -0700 | [diff] [blame] | 551 | err = bpf_map_init_memlock(map); |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 552 | if (err) |
| 553 | goto free_map_sec; |
| 554 | |
Martin KaFai Lau | f3f1c05 | 2017-06-05 12:15:47 -0700 | [diff] [blame] | 555 | err = bpf_map_alloc_id(map); |
| 556 | if (err) |
| 557 | goto free_map; |
| 558 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 559 | err = bpf_map_new_fd(map, f_flags); |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 560 | if (err < 0) { |
| 561 | /* failed to allocate fd. |
| 562 | * bpf_map_put() is needed because the above |
| 563 | * bpf_map_alloc_id() has published the map |
| 564 | * to the userspace and the userspace may |
| 565 | * have refcnt-ed it through BPF_MAP_GET_FD_BY_ID. |
| 566 | */ |
| 567 | bpf_map_put(map); |
| 568 | return err; |
| 569 | } |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 570 | |
| 571 | return err; |
| 572 | |
| 573 | free_map: |
Roman Gushchin | 0a4c58f | 2018-08-02 14:27:17 -0700 | [diff] [blame] | 574 | bpf_map_release_memlock(map); |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 575 | free_map_sec: |
| 576 | security_bpf_map_free(map); |
Daniel Borkmann | 20b2b24 | 2016-11-04 00:56:31 +0100 | [diff] [blame] | 577 | free_map_nouncharge: |
Martin KaFai Lau | a26ca7c | 2018-04-18 15:56:03 -0700 | [diff] [blame] | 578 | btf_put(map->btf); |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 579 | map->ops->map_free(map); |
| 580 | return err; |
| 581 | } |
| 582 | |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 583 | /* if error is returned, fd is released. |
| 584 | * On success caller should complete fd access with matching fdput() |
| 585 | */ |
Daniel Borkmann | c210129 | 2015-10-29 14:58:07 +0100 | [diff] [blame] | 586 | struct bpf_map *__bpf_map_get(struct fd f) |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 587 | { |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 588 | if (!f.file) |
| 589 | return ERR_PTR(-EBADF); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 590 | if (f.file->f_op != &bpf_map_fops) { |
| 591 | fdput(f); |
| 592 | return ERR_PTR(-EINVAL); |
| 593 | } |
| 594 | |
Daniel Borkmann | c210129 | 2015-10-29 14:58:07 +0100 | [diff] [blame] | 595 | return f.file->private_data; |
| 596 | } |
| 597 | |
Alexei Starovoitov | 92117d8 | 2016-04-27 18:56:20 -0700 | [diff] [blame] | 598 | /* prog's and map's refcnt limit */ |
| 599 | #define BPF_MAX_REFCNT 32768 |
| 600 | |
| 601 | struct bpf_map *bpf_map_inc(struct bpf_map *map, bool uref) |
Daniel Borkmann | c9da161 | 2015-11-24 21:28:15 +0100 | [diff] [blame] | 602 | { |
Alexei Starovoitov | 92117d8 | 2016-04-27 18:56:20 -0700 | [diff] [blame] | 603 | if (atomic_inc_return(&map->refcnt) > BPF_MAX_REFCNT) { |
| 604 | atomic_dec(&map->refcnt); |
| 605 | return ERR_PTR(-EBUSY); |
| 606 | } |
Daniel Borkmann | c9da161 | 2015-11-24 21:28:15 +0100 | [diff] [blame] | 607 | if (uref) |
| 608 | atomic_inc(&map->usercnt); |
Alexei Starovoitov | 92117d8 | 2016-04-27 18:56:20 -0700 | [diff] [blame] | 609 | return map; |
Daniel Borkmann | c9da161 | 2015-11-24 21:28:15 +0100 | [diff] [blame] | 610 | } |
Jakub Kicinski | 630a4d3 | 2018-05-03 18:37:09 -0700 | [diff] [blame] | 611 | EXPORT_SYMBOL_GPL(bpf_map_inc); |
Daniel Borkmann | c9da161 | 2015-11-24 21:28:15 +0100 | [diff] [blame] | 612 | |
| 613 | struct bpf_map *bpf_map_get_with_uref(u32 ufd) |
Daniel Borkmann | c210129 | 2015-10-29 14:58:07 +0100 | [diff] [blame] | 614 | { |
| 615 | struct fd f = fdget(ufd); |
| 616 | struct bpf_map *map; |
| 617 | |
| 618 | map = __bpf_map_get(f); |
| 619 | if (IS_ERR(map)) |
| 620 | return map; |
| 621 | |
Alexei Starovoitov | 92117d8 | 2016-04-27 18:56:20 -0700 | [diff] [blame] | 622 | map = bpf_map_inc(map, true); |
Daniel Borkmann | c210129 | 2015-10-29 14:58:07 +0100 | [diff] [blame] | 623 | fdput(f); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 624 | |
| 625 | return map; |
| 626 | } |
| 627 | |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 628 | /* map_idr_lock should have been held */ |
| 629 | static struct bpf_map *bpf_map_inc_not_zero(struct bpf_map *map, |
| 630 | bool uref) |
| 631 | { |
| 632 | int refold; |
| 633 | |
Mark Rutland | bfc18e3 | 2018-06-21 13:13:04 +0100 | [diff] [blame] | 634 | refold = atomic_fetch_add_unless(&map->refcnt, 1, 0); |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 635 | |
| 636 | if (refold >= BPF_MAX_REFCNT) { |
| 637 | __bpf_map_put(map, false); |
| 638 | return ERR_PTR(-EBUSY); |
| 639 | } |
| 640 | |
| 641 | if (!refold) |
| 642 | return ERR_PTR(-ENOENT); |
| 643 | |
| 644 | if (uref) |
| 645 | atomic_inc(&map->usercnt); |
| 646 | |
| 647 | return map; |
| 648 | } |
| 649 | |
Alexei Starovoitov | b8cdc05 | 2016-03-09 18:56:49 -0800 | [diff] [blame] | 650 | int __weak bpf_stackmap_copy(struct bpf_map *map, void *key, void *value) |
| 651 | { |
| 652 | return -ENOTSUPP; |
| 653 | } |
| 654 | |
Mauricio Vasquez B | c9d29f4 | 2018-10-18 15:16:14 +0200 | [diff] [blame] | 655 | static void *__bpf_copy_key(void __user *ukey, u64 key_size) |
| 656 | { |
| 657 | if (key_size) |
| 658 | return memdup_user(ukey, key_size); |
| 659 | |
| 660 | if (ukey) |
| 661 | return ERR_PTR(-EINVAL); |
| 662 | |
| 663 | return NULL; |
| 664 | } |
| 665 | |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 666 | /* last field in 'union bpf_attr' used by this command */ |
| 667 | #define BPF_MAP_LOOKUP_ELEM_LAST_FIELD value |
| 668 | |
| 669 | static int map_lookup_elem(union bpf_attr *attr) |
| 670 | { |
Mickaël Salaün | 535e7b4b | 2016-11-13 19:44:03 +0100 | [diff] [blame] | 671 | void __user *ukey = u64_to_user_ptr(attr->key); |
| 672 | void __user *uvalue = u64_to_user_ptr(attr->value); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 673 | int ufd = attr->map_fd; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 674 | struct bpf_map *map; |
Alexei Starovoitov | 8ebe667 | 2015-01-22 17:11:08 -0800 | [diff] [blame] | 675 | void *key, *value, *ptr; |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 676 | u32 value_size; |
Daniel Borkmann | 592867b | 2015-09-08 18:00:09 +0200 | [diff] [blame] | 677 | struct fd f; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 678 | int err; |
| 679 | |
| 680 | if (CHECK_ATTR(BPF_MAP_LOOKUP_ELEM)) |
| 681 | return -EINVAL; |
| 682 | |
Daniel Borkmann | 592867b | 2015-09-08 18:00:09 +0200 | [diff] [blame] | 683 | f = fdget(ufd); |
Daniel Borkmann | c210129 | 2015-10-29 14:58:07 +0100 | [diff] [blame] | 684 | map = __bpf_map_get(f); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 685 | if (IS_ERR(map)) |
| 686 | return PTR_ERR(map); |
| 687 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 688 | if (!(f.file->f_mode & FMODE_CAN_READ)) { |
| 689 | err = -EPERM; |
| 690 | goto err_put; |
| 691 | } |
| 692 | |
Mauricio Vasquez B | c9d29f4 | 2018-10-18 15:16:14 +0200 | [diff] [blame] | 693 | key = __bpf_copy_key(ukey, map->key_size); |
Al Viro | e4448ed | 2017-05-13 18:43:00 -0400 | [diff] [blame] | 694 | if (IS_ERR(key)) { |
| 695 | err = PTR_ERR(key); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 696 | goto err_put; |
Al Viro | e4448ed | 2017-05-13 18:43:00 -0400 | [diff] [blame] | 697 | } |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 698 | |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 699 | if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH || |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 700 | map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH || |
Roman Gushchin | b741f16 | 2018-09-28 14:45:43 +0000 | [diff] [blame] | 701 | map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY || |
| 702 | map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 703 | value_size = round_up(map->value_size, 8) * num_possible_cpus(); |
Martin KaFai Lau | 14dc6f0 | 2017-06-27 23:08:34 -0700 | [diff] [blame] | 704 | else if (IS_FD_MAP(map)) |
| 705 | value_size = sizeof(u32); |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 706 | else |
| 707 | value_size = map->value_size; |
| 708 | |
Alexei Starovoitov | 8ebe667 | 2015-01-22 17:11:08 -0800 | [diff] [blame] | 709 | err = -ENOMEM; |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 710 | value = kmalloc(value_size, GFP_USER | __GFP_NOWARN); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 711 | if (!value) |
Alexei Starovoitov | 8ebe667 | 2015-01-22 17:11:08 -0800 | [diff] [blame] | 712 | goto free_key; |
| 713 | |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 714 | if (bpf_map_is_dev_bound(map)) { |
| 715 | err = bpf_map_offload_lookup_elem(map, key, value); |
| 716 | } else if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH || |
| 717 | map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) { |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 718 | err = bpf_percpu_hash_copy(map, key, value); |
| 719 | } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) { |
| 720 | err = bpf_percpu_array_copy(map, key, value); |
Roman Gushchin | b741f16 | 2018-09-28 14:45:43 +0000 | [diff] [blame] | 721 | } else if (map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) { |
| 722 | err = bpf_percpu_cgroup_storage_copy(map, key, value); |
Alexei Starovoitov | 557c0c6 | 2016-03-07 21:57:17 -0800 | [diff] [blame] | 723 | } else if (map->map_type == BPF_MAP_TYPE_STACK_TRACE) { |
| 724 | err = bpf_stackmap_copy(map, key, value); |
Martin KaFai Lau | 14dc6f0 | 2017-06-27 23:08:34 -0700 | [diff] [blame] | 725 | } else if (IS_FD_ARRAY(map)) { |
| 726 | err = bpf_fd_array_map_lookup_elem(map, key, value); |
| 727 | } else if (IS_FD_HASH(map)) { |
| 728 | err = bpf_fd_htab_map_lookup_elem(map, key, value); |
Martin KaFai Lau | 5dc4c4b | 2018-08-08 01:01:24 -0700 | [diff] [blame] | 729 | } else if (map->map_type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY) { |
| 730 | err = bpf_fd_reuseport_array_lookup_elem(map, key, value); |
Mauricio Vasquez B | f1a2e44 | 2018-10-18 15:16:25 +0200 | [diff] [blame] | 731 | } else if (map->map_type == BPF_MAP_TYPE_QUEUE || |
| 732 | map->map_type == BPF_MAP_TYPE_STACK) { |
| 733 | err = map->ops->map_peek_elem(map, value); |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 734 | } else { |
| 735 | rcu_read_lock(); |
| 736 | ptr = map->ops->map_lookup_elem(map, key); |
Prashant Bhole | 509db28 | 2018-10-09 10:04:49 +0900 | [diff] [blame] | 737 | if (IS_ERR(ptr)) { |
| 738 | err = PTR_ERR(ptr); |
| 739 | } else if (!ptr) { |
| 740 | err = -ENOENT; |
| 741 | } else { |
| 742 | err = 0; |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 743 | memcpy(value, ptr, value_size); |
Prashant Bhole | 509db28 | 2018-10-09 10:04:49 +0900 | [diff] [blame] | 744 | } |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 745 | rcu_read_unlock(); |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 746 | } |
Alexei Starovoitov | 8ebe667 | 2015-01-22 17:11:08 -0800 | [diff] [blame] | 747 | |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 748 | if (err) |
Alexei Starovoitov | 8ebe667 | 2015-01-22 17:11:08 -0800 | [diff] [blame] | 749 | goto free_value; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 750 | |
| 751 | err = -EFAULT; |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 752 | if (copy_to_user(uvalue, value, value_size) != 0) |
Alexei Starovoitov | 8ebe667 | 2015-01-22 17:11:08 -0800 | [diff] [blame] | 753 | goto free_value; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 754 | |
| 755 | err = 0; |
| 756 | |
Alexei Starovoitov | 8ebe667 | 2015-01-22 17:11:08 -0800 | [diff] [blame] | 757 | free_value: |
| 758 | kfree(value); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 759 | free_key: |
| 760 | kfree(key); |
| 761 | err_put: |
| 762 | fdput(f); |
| 763 | return err; |
| 764 | } |
| 765 | |
Daniel Colascione | 1ae80cf | 2018-10-12 03:54:27 -0700 | [diff] [blame] | 766 | static void maybe_wait_bpf_programs(struct bpf_map *map) |
| 767 | { |
| 768 | /* Wait for any running BPF programs to complete so that |
| 769 | * userspace, when we return to it, knows that all programs |
| 770 | * that could be running use the new map value. |
| 771 | */ |
| 772 | if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS || |
| 773 | map->map_type == BPF_MAP_TYPE_ARRAY_OF_MAPS) |
| 774 | synchronize_rcu(); |
| 775 | } |
| 776 | |
Alexei Starovoitov | 3274f52 | 2014-11-13 17:36:44 -0800 | [diff] [blame] | 777 | #define BPF_MAP_UPDATE_ELEM_LAST_FIELD flags |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 778 | |
| 779 | static int map_update_elem(union bpf_attr *attr) |
| 780 | { |
Mickaël Salaün | 535e7b4b | 2016-11-13 19:44:03 +0100 | [diff] [blame] | 781 | void __user *ukey = u64_to_user_ptr(attr->key); |
| 782 | void __user *uvalue = u64_to_user_ptr(attr->value); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 783 | int ufd = attr->map_fd; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 784 | struct bpf_map *map; |
| 785 | void *key, *value; |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 786 | u32 value_size; |
Daniel Borkmann | 592867b | 2015-09-08 18:00:09 +0200 | [diff] [blame] | 787 | struct fd f; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 788 | int err; |
| 789 | |
| 790 | if (CHECK_ATTR(BPF_MAP_UPDATE_ELEM)) |
| 791 | return -EINVAL; |
| 792 | |
Daniel Borkmann | 592867b | 2015-09-08 18:00:09 +0200 | [diff] [blame] | 793 | f = fdget(ufd); |
Daniel Borkmann | c210129 | 2015-10-29 14:58:07 +0100 | [diff] [blame] | 794 | map = __bpf_map_get(f); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 795 | if (IS_ERR(map)) |
| 796 | return PTR_ERR(map); |
| 797 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 798 | if (!(f.file->f_mode & FMODE_CAN_WRITE)) { |
| 799 | err = -EPERM; |
| 800 | goto err_put; |
| 801 | } |
| 802 | |
Mauricio Vasquez B | c9d29f4 | 2018-10-18 15:16:14 +0200 | [diff] [blame] | 803 | key = __bpf_copy_key(ukey, map->key_size); |
Al Viro | e4448ed | 2017-05-13 18:43:00 -0400 | [diff] [blame] | 804 | if (IS_ERR(key)) { |
| 805 | err = PTR_ERR(key); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 806 | goto err_put; |
Al Viro | e4448ed | 2017-05-13 18:43:00 -0400 | [diff] [blame] | 807 | } |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 808 | |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 809 | if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH || |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 810 | map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH || |
Roman Gushchin | b741f16 | 2018-09-28 14:45:43 +0000 | [diff] [blame] | 811 | map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY || |
| 812 | map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 813 | value_size = round_up(map->value_size, 8) * num_possible_cpus(); |
| 814 | else |
| 815 | value_size = map->value_size; |
| 816 | |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 817 | err = -ENOMEM; |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 818 | value = kmalloc(value_size, GFP_USER | __GFP_NOWARN); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 819 | if (!value) |
| 820 | goto free_key; |
| 821 | |
| 822 | err = -EFAULT; |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 823 | if (copy_from_user(value, uvalue, value_size) != 0) |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 824 | goto free_value; |
| 825 | |
Jesper Dangaard Brouer | 6710e11 | 2017-10-16 12:19:28 +0200 | [diff] [blame] | 826 | /* Need to create a kthread, thus must support schedule */ |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 827 | if (bpf_map_is_dev_bound(map)) { |
| 828 | err = bpf_map_offload_update_elem(map, key, value, attr->flags); |
| 829 | goto out; |
John Fastabend | 99ba2b5 | 2018-07-05 08:50:04 -0700 | [diff] [blame] | 830 | } else if (map->map_type == BPF_MAP_TYPE_CPUMAP || |
| 831 | map->map_type == BPF_MAP_TYPE_SOCKHASH || |
| 832 | map->map_type == BPF_MAP_TYPE_SOCKMAP) { |
Jesper Dangaard Brouer | 6710e11 | 2017-10-16 12:19:28 +0200 | [diff] [blame] | 833 | err = map->ops->map_update_elem(map, key, value, attr->flags); |
| 834 | goto out; |
| 835 | } |
| 836 | |
Alexei Starovoitov | b121d1e | 2016-03-07 21:57:13 -0800 | [diff] [blame] | 837 | /* must increment bpf_prog_active to avoid kprobe+bpf triggering from |
| 838 | * inside bpf map update or delete otherwise deadlocks are possible |
| 839 | */ |
| 840 | preempt_disable(); |
| 841 | __this_cpu_inc(bpf_prog_active); |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 842 | if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH || |
| 843 | map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) { |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 844 | err = bpf_percpu_hash_update(map, key, value, attr->flags); |
| 845 | } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) { |
| 846 | err = bpf_percpu_array_update(map, key, value, attr->flags); |
Roman Gushchin | b741f16 | 2018-09-28 14:45:43 +0000 | [diff] [blame] | 847 | } else if (map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) { |
| 848 | err = bpf_percpu_cgroup_storage_update(map, key, value, |
| 849 | attr->flags); |
Mickaël Salaün | 9c147b5 | 2018-01-26 00:54:02 +0100 | [diff] [blame] | 850 | } else if (IS_FD_ARRAY(map)) { |
Daniel Borkmann | d056a78 | 2016-06-15 22:47:13 +0200 | [diff] [blame] | 851 | rcu_read_lock(); |
| 852 | err = bpf_fd_array_map_update_elem(map, f.file, key, value, |
| 853 | attr->flags); |
| 854 | rcu_read_unlock(); |
Martin KaFai Lau | bcc6b1b | 2017-03-22 10:00:34 -0700 | [diff] [blame] | 855 | } else if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS) { |
| 856 | rcu_read_lock(); |
| 857 | err = bpf_fd_htab_map_update_elem(map, f.file, key, value, |
| 858 | attr->flags); |
| 859 | rcu_read_unlock(); |
Martin KaFai Lau | 5dc4c4b | 2018-08-08 01:01:24 -0700 | [diff] [blame] | 860 | } else if (map->map_type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY) { |
| 861 | /* rcu_read_lock() is not needed */ |
| 862 | err = bpf_fd_reuseport_array_update_elem(map, key, value, |
| 863 | attr->flags); |
Mauricio Vasquez B | f1a2e44 | 2018-10-18 15:16:25 +0200 | [diff] [blame] | 864 | } else if (map->map_type == BPF_MAP_TYPE_QUEUE || |
| 865 | map->map_type == BPF_MAP_TYPE_STACK) { |
| 866 | err = map->ops->map_push_elem(map, value, attr->flags); |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 867 | } else { |
| 868 | rcu_read_lock(); |
| 869 | err = map->ops->map_update_elem(map, key, value, attr->flags); |
| 870 | rcu_read_unlock(); |
| 871 | } |
Alexei Starovoitov | b121d1e | 2016-03-07 21:57:13 -0800 | [diff] [blame] | 872 | __this_cpu_dec(bpf_prog_active); |
| 873 | preempt_enable(); |
Daniel Colascione | 1ae80cf | 2018-10-12 03:54:27 -0700 | [diff] [blame] | 874 | maybe_wait_bpf_programs(map); |
Jesper Dangaard Brouer | 6710e11 | 2017-10-16 12:19:28 +0200 | [diff] [blame] | 875 | out: |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 876 | free_value: |
| 877 | kfree(value); |
| 878 | free_key: |
| 879 | kfree(key); |
| 880 | err_put: |
| 881 | fdput(f); |
| 882 | return err; |
| 883 | } |
| 884 | |
| 885 | #define BPF_MAP_DELETE_ELEM_LAST_FIELD key |
| 886 | |
| 887 | static int map_delete_elem(union bpf_attr *attr) |
| 888 | { |
Mickaël Salaün | 535e7b4b | 2016-11-13 19:44:03 +0100 | [diff] [blame] | 889 | void __user *ukey = u64_to_user_ptr(attr->key); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 890 | int ufd = attr->map_fd; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 891 | struct bpf_map *map; |
Daniel Borkmann | 592867b | 2015-09-08 18:00:09 +0200 | [diff] [blame] | 892 | struct fd f; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 893 | void *key; |
| 894 | int err; |
| 895 | |
| 896 | if (CHECK_ATTR(BPF_MAP_DELETE_ELEM)) |
| 897 | return -EINVAL; |
| 898 | |
Daniel Borkmann | 592867b | 2015-09-08 18:00:09 +0200 | [diff] [blame] | 899 | f = fdget(ufd); |
Daniel Borkmann | c210129 | 2015-10-29 14:58:07 +0100 | [diff] [blame] | 900 | map = __bpf_map_get(f); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 901 | if (IS_ERR(map)) |
| 902 | return PTR_ERR(map); |
| 903 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 904 | if (!(f.file->f_mode & FMODE_CAN_WRITE)) { |
| 905 | err = -EPERM; |
| 906 | goto err_put; |
| 907 | } |
| 908 | |
Mauricio Vasquez B | c9d29f4 | 2018-10-18 15:16:14 +0200 | [diff] [blame] | 909 | key = __bpf_copy_key(ukey, map->key_size); |
Al Viro | e4448ed | 2017-05-13 18:43:00 -0400 | [diff] [blame] | 910 | if (IS_ERR(key)) { |
| 911 | err = PTR_ERR(key); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 912 | goto err_put; |
Al Viro | e4448ed | 2017-05-13 18:43:00 -0400 | [diff] [blame] | 913 | } |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 914 | |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 915 | if (bpf_map_is_dev_bound(map)) { |
| 916 | err = bpf_map_offload_delete_elem(map, key); |
| 917 | goto out; |
| 918 | } |
| 919 | |
Alexei Starovoitov | b121d1e | 2016-03-07 21:57:13 -0800 | [diff] [blame] | 920 | preempt_disable(); |
| 921 | __this_cpu_inc(bpf_prog_active); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 922 | rcu_read_lock(); |
| 923 | err = map->ops->map_delete_elem(map, key); |
| 924 | rcu_read_unlock(); |
Alexei Starovoitov | b121d1e | 2016-03-07 21:57:13 -0800 | [diff] [blame] | 925 | __this_cpu_dec(bpf_prog_active); |
| 926 | preempt_enable(); |
Daniel Colascione | 1ae80cf | 2018-10-12 03:54:27 -0700 | [diff] [blame] | 927 | maybe_wait_bpf_programs(map); |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 928 | out: |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 929 | kfree(key); |
| 930 | err_put: |
| 931 | fdput(f); |
| 932 | return err; |
| 933 | } |
| 934 | |
| 935 | /* last field in 'union bpf_attr' used by this command */ |
| 936 | #define BPF_MAP_GET_NEXT_KEY_LAST_FIELD next_key |
| 937 | |
| 938 | static int map_get_next_key(union bpf_attr *attr) |
| 939 | { |
Mickaël Salaün | 535e7b4b | 2016-11-13 19:44:03 +0100 | [diff] [blame] | 940 | void __user *ukey = u64_to_user_ptr(attr->key); |
| 941 | void __user *unext_key = u64_to_user_ptr(attr->next_key); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 942 | int ufd = attr->map_fd; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 943 | struct bpf_map *map; |
| 944 | void *key, *next_key; |
Daniel Borkmann | 592867b | 2015-09-08 18:00:09 +0200 | [diff] [blame] | 945 | struct fd f; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 946 | int err; |
| 947 | |
| 948 | if (CHECK_ATTR(BPF_MAP_GET_NEXT_KEY)) |
| 949 | return -EINVAL; |
| 950 | |
Daniel Borkmann | 592867b | 2015-09-08 18:00:09 +0200 | [diff] [blame] | 951 | f = fdget(ufd); |
Daniel Borkmann | c210129 | 2015-10-29 14:58:07 +0100 | [diff] [blame] | 952 | map = __bpf_map_get(f); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 953 | if (IS_ERR(map)) |
| 954 | return PTR_ERR(map); |
| 955 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 956 | if (!(f.file->f_mode & FMODE_CAN_READ)) { |
| 957 | err = -EPERM; |
| 958 | goto err_put; |
| 959 | } |
| 960 | |
Teng Qin | 8fe4592 | 2017-04-24 19:00:37 -0700 | [diff] [blame] | 961 | if (ukey) { |
Mauricio Vasquez B | c9d29f4 | 2018-10-18 15:16:14 +0200 | [diff] [blame] | 962 | key = __bpf_copy_key(ukey, map->key_size); |
Al Viro | e4448ed | 2017-05-13 18:43:00 -0400 | [diff] [blame] | 963 | if (IS_ERR(key)) { |
| 964 | err = PTR_ERR(key); |
Teng Qin | 8fe4592 | 2017-04-24 19:00:37 -0700 | [diff] [blame] | 965 | goto err_put; |
Al Viro | e4448ed | 2017-05-13 18:43:00 -0400 | [diff] [blame] | 966 | } |
Teng Qin | 8fe4592 | 2017-04-24 19:00:37 -0700 | [diff] [blame] | 967 | } else { |
| 968 | key = NULL; |
| 969 | } |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 970 | |
| 971 | err = -ENOMEM; |
| 972 | next_key = kmalloc(map->key_size, GFP_USER); |
| 973 | if (!next_key) |
| 974 | goto free_key; |
| 975 | |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 976 | if (bpf_map_is_dev_bound(map)) { |
| 977 | err = bpf_map_offload_get_next_key(map, key, next_key); |
| 978 | goto out; |
| 979 | } |
| 980 | |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 981 | rcu_read_lock(); |
| 982 | err = map->ops->map_get_next_key(map, key, next_key); |
| 983 | rcu_read_unlock(); |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 984 | out: |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 985 | if (err) |
| 986 | goto free_next_key; |
| 987 | |
| 988 | err = -EFAULT; |
| 989 | if (copy_to_user(unext_key, next_key, map->key_size) != 0) |
| 990 | goto free_next_key; |
| 991 | |
| 992 | err = 0; |
| 993 | |
| 994 | free_next_key: |
| 995 | kfree(next_key); |
| 996 | free_key: |
| 997 | kfree(key); |
| 998 | err_put: |
| 999 | fdput(f); |
| 1000 | return err; |
| 1001 | } |
| 1002 | |
Mauricio Vasquez B | bd513cd | 2018-10-18 15:16:30 +0200 | [diff] [blame] | 1003 | #define BPF_MAP_LOOKUP_AND_DELETE_ELEM_LAST_FIELD value |
| 1004 | |
| 1005 | static int map_lookup_and_delete_elem(union bpf_attr *attr) |
| 1006 | { |
| 1007 | void __user *ukey = u64_to_user_ptr(attr->key); |
| 1008 | void __user *uvalue = u64_to_user_ptr(attr->value); |
| 1009 | int ufd = attr->map_fd; |
| 1010 | struct bpf_map *map; |
Alexei Starovoitov | 540fefc | 2018-10-19 13:52:38 -0700 | [diff] [blame] | 1011 | void *key, *value; |
Mauricio Vasquez B | bd513cd | 2018-10-18 15:16:30 +0200 | [diff] [blame] | 1012 | u32 value_size; |
| 1013 | struct fd f; |
| 1014 | int err; |
| 1015 | |
| 1016 | if (CHECK_ATTR(BPF_MAP_LOOKUP_AND_DELETE_ELEM)) |
| 1017 | return -EINVAL; |
| 1018 | |
| 1019 | f = fdget(ufd); |
| 1020 | map = __bpf_map_get(f); |
| 1021 | if (IS_ERR(map)) |
| 1022 | return PTR_ERR(map); |
| 1023 | |
| 1024 | if (!(f.file->f_mode & FMODE_CAN_WRITE)) { |
| 1025 | err = -EPERM; |
| 1026 | goto err_put; |
| 1027 | } |
| 1028 | |
| 1029 | key = __bpf_copy_key(ukey, map->key_size); |
| 1030 | if (IS_ERR(key)) { |
| 1031 | err = PTR_ERR(key); |
| 1032 | goto err_put; |
| 1033 | } |
| 1034 | |
| 1035 | value_size = map->value_size; |
| 1036 | |
| 1037 | err = -ENOMEM; |
| 1038 | value = kmalloc(value_size, GFP_USER | __GFP_NOWARN); |
| 1039 | if (!value) |
| 1040 | goto free_key; |
| 1041 | |
| 1042 | if (map->map_type == BPF_MAP_TYPE_QUEUE || |
| 1043 | map->map_type == BPF_MAP_TYPE_STACK) { |
| 1044 | err = map->ops->map_pop_elem(map, value); |
| 1045 | } else { |
| 1046 | err = -ENOTSUPP; |
| 1047 | } |
| 1048 | |
| 1049 | if (err) |
| 1050 | goto free_value; |
| 1051 | |
| 1052 | if (copy_to_user(uvalue, value, value_size) != 0) |
| 1053 | goto free_value; |
| 1054 | |
| 1055 | err = 0; |
| 1056 | |
| 1057 | free_value: |
| 1058 | kfree(value); |
| 1059 | free_key: |
| 1060 | kfree(key); |
| 1061 | err_put: |
| 1062 | fdput(f); |
| 1063 | return err; |
| 1064 | } |
| 1065 | |
Jakub Kicinski | 7de16e3 | 2017-10-16 16:40:53 -0700 | [diff] [blame] | 1066 | static const struct bpf_prog_ops * const bpf_prog_types[] = { |
| 1067 | #define BPF_PROG_TYPE(_id, _name) \ |
| 1068 | [_id] = & _name ## _prog_ops, |
| 1069 | #define BPF_MAP_TYPE(_id, _ops) |
| 1070 | #include <linux/bpf_types.h> |
| 1071 | #undef BPF_PROG_TYPE |
| 1072 | #undef BPF_MAP_TYPE |
| 1073 | }; |
| 1074 | |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1075 | static int find_prog_type(enum bpf_prog_type type, struct bpf_prog *prog) |
| 1076 | { |
Daniel Borkmann | d0f1a45 | 2018-05-04 02:13:57 +0200 | [diff] [blame] | 1077 | const struct bpf_prog_ops *ops; |
| 1078 | |
| 1079 | if (type >= ARRAY_SIZE(bpf_prog_types)) |
| 1080 | return -EINVAL; |
| 1081 | type = array_index_nospec(type, ARRAY_SIZE(bpf_prog_types)); |
| 1082 | ops = bpf_prog_types[type]; |
| 1083 | if (!ops) |
Johannes Berg | be9370a | 2017-04-11 15:34:57 +0200 | [diff] [blame] | 1084 | return -EINVAL; |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1085 | |
Jakub Kicinski | ab3f006 | 2017-11-03 13:56:17 -0700 | [diff] [blame] | 1086 | if (!bpf_prog_is_dev_bound(prog->aux)) |
Daniel Borkmann | d0f1a45 | 2018-05-04 02:13:57 +0200 | [diff] [blame] | 1087 | prog->aux->ops = ops; |
Jakub Kicinski | ab3f006 | 2017-11-03 13:56:17 -0700 | [diff] [blame] | 1088 | else |
| 1089 | prog->aux->ops = &bpf_offload_prog_ops; |
Johannes Berg | be9370a | 2017-04-11 15:34:57 +0200 | [diff] [blame] | 1090 | prog->type = type; |
| 1091 | return 0; |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1092 | } |
| 1093 | |
| 1094 | /* drop refcnt on maps used by eBPF program and free auxilary data */ |
| 1095 | static void free_used_maps(struct bpf_prog_aux *aux) |
| 1096 | { |
Roman Gushchin | 8bad74f | 2018-09-28 14:45:36 +0000 | [diff] [blame] | 1097 | enum bpf_cgroup_storage_type stype; |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1098 | int i; |
| 1099 | |
Roman Gushchin | 8bad74f | 2018-09-28 14:45:36 +0000 | [diff] [blame] | 1100 | for_each_cgroup_storage_type(stype) { |
| 1101 | if (!aux->cgroup_storage[stype]) |
| 1102 | continue; |
| 1103 | bpf_cgroup_storage_release(aux->prog, |
| 1104 | aux->cgroup_storage[stype]); |
| 1105 | } |
Roman Gushchin | de9cbba | 2018-08-02 14:27:18 -0700 | [diff] [blame] | 1106 | |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1107 | for (i = 0; i < aux->used_map_cnt; i++) |
| 1108 | bpf_map_put(aux->used_maps[i]); |
| 1109 | |
| 1110 | kfree(aux->used_maps); |
| 1111 | } |
| 1112 | |
Daniel Borkmann | 5ccb071 | 2016-12-18 01:52:58 +0100 | [diff] [blame] | 1113 | int __bpf_prog_charge(struct user_struct *user, u32 pages) |
| 1114 | { |
| 1115 | unsigned long memlock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT; |
| 1116 | unsigned long user_bufs; |
| 1117 | |
| 1118 | if (user) { |
| 1119 | user_bufs = atomic_long_add_return(pages, &user->locked_vm); |
| 1120 | if (user_bufs > memlock_limit) { |
| 1121 | atomic_long_sub(pages, &user->locked_vm); |
| 1122 | return -EPERM; |
| 1123 | } |
| 1124 | } |
| 1125 | |
| 1126 | return 0; |
| 1127 | } |
| 1128 | |
| 1129 | void __bpf_prog_uncharge(struct user_struct *user, u32 pages) |
| 1130 | { |
| 1131 | if (user) |
| 1132 | atomic_long_sub(pages, &user->locked_vm); |
| 1133 | } |
| 1134 | |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 1135 | static int bpf_prog_charge_memlock(struct bpf_prog *prog) |
| 1136 | { |
| 1137 | struct user_struct *user = get_current_user(); |
Daniel Borkmann | 5ccb071 | 2016-12-18 01:52:58 +0100 | [diff] [blame] | 1138 | int ret; |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 1139 | |
Daniel Borkmann | 5ccb071 | 2016-12-18 01:52:58 +0100 | [diff] [blame] | 1140 | ret = __bpf_prog_charge(user, prog->pages); |
| 1141 | if (ret) { |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 1142 | free_uid(user); |
Daniel Borkmann | 5ccb071 | 2016-12-18 01:52:58 +0100 | [diff] [blame] | 1143 | return ret; |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 1144 | } |
Daniel Borkmann | 5ccb071 | 2016-12-18 01:52:58 +0100 | [diff] [blame] | 1145 | |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 1146 | prog->aux->user = user; |
| 1147 | return 0; |
| 1148 | } |
| 1149 | |
| 1150 | static void bpf_prog_uncharge_memlock(struct bpf_prog *prog) |
| 1151 | { |
| 1152 | struct user_struct *user = prog->aux->user; |
| 1153 | |
Daniel Borkmann | 5ccb071 | 2016-12-18 01:52:58 +0100 | [diff] [blame] | 1154 | __bpf_prog_uncharge(user, prog->pages); |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 1155 | free_uid(user); |
| 1156 | } |
| 1157 | |
Martin KaFai Lau | dc4bb0e | 2017-06-05 12:15:46 -0700 | [diff] [blame] | 1158 | static int bpf_prog_alloc_id(struct bpf_prog *prog) |
| 1159 | { |
| 1160 | int id; |
| 1161 | |
Shaohua Li | b76354c | 2018-03-27 11:53:21 -0700 | [diff] [blame] | 1162 | idr_preload(GFP_KERNEL); |
Martin KaFai Lau | dc4bb0e | 2017-06-05 12:15:46 -0700 | [diff] [blame] | 1163 | spin_lock_bh(&prog_idr_lock); |
| 1164 | id = idr_alloc_cyclic(&prog_idr, prog, 1, INT_MAX, GFP_ATOMIC); |
| 1165 | if (id > 0) |
| 1166 | prog->aux->id = id; |
| 1167 | spin_unlock_bh(&prog_idr_lock); |
Shaohua Li | b76354c | 2018-03-27 11:53:21 -0700 | [diff] [blame] | 1168 | idr_preload_end(); |
Martin KaFai Lau | dc4bb0e | 2017-06-05 12:15:46 -0700 | [diff] [blame] | 1169 | |
| 1170 | /* id is in [1, INT_MAX) */ |
| 1171 | if (WARN_ON_ONCE(!id)) |
| 1172 | return -ENOSPC; |
| 1173 | |
| 1174 | return id > 0 ? 0 : id; |
| 1175 | } |
| 1176 | |
Jakub Kicinski | ad8ad79 | 2017-12-27 18:39:07 -0800 | [diff] [blame] | 1177 | void bpf_prog_free_id(struct bpf_prog *prog, bool do_idr_lock) |
Martin KaFai Lau | dc4bb0e | 2017-06-05 12:15:46 -0700 | [diff] [blame] | 1178 | { |
Jakub Kicinski | ad8ad79 | 2017-12-27 18:39:07 -0800 | [diff] [blame] | 1179 | /* cBPF to eBPF migrations are currently not in the idr store. |
| 1180 | * Offloaded programs are removed from the store when their device |
| 1181 | * disappears - even if someone grabs an fd to them they are unusable, |
| 1182 | * simply waiting for refcnt to drop to be freed. |
| 1183 | */ |
Martin KaFai Lau | dc4bb0e | 2017-06-05 12:15:46 -0700 | [diff] [blame] | 1184 | if (!prog->aux->id) |
| 1185 | return; |
| 1186 | |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 1187 | if (do_idr_lock) |
| 1188 | spin_lock_bh(&prog_idr_lock); |
| 1189 | else |
| 1190 | __acquire(&prog_idr_lock); |
| 1191 | |
Martin KaFai Lau | dc4bb0e | 2017-06-05 12:15:46 -0700 | [diff] [blame] | 1192 | idr_remove(&prog_idr, prog->aux->id); |
Jakub Kicinski | ad8ad79 | 2017-12-27 18:39:07 -0800 | [diff] [blame] | 1193 | prog->aux->id = 0; |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 1194 | |
| 1195 | if (do_idr_lock) |
| 1196 | spin_unlock_bh(&prog_idr_lock); |
| 1197 | else |
| 1198 | __release(&prog_idr_lock); |
Martin KaFai Lau | dc4bb0e | 2017-06-05 12:15:46 -0700 | [diff] [blame] | 1199 | } |
| 1200 | |
Daniel Borkmann | 1aacde3 | 2016-06-30 17:24:43 +0200 | [diff] [blame] | 1201 | static void __bpf_prog_put_rcu(struct rcu_head *rcu) |
Alexei Starovoitov | abf2e7d | 2015-05-28 19:26:02 -0700 | [diff] [blame] | 1202 | { |
| 1203 | struct bpf_prog_aux *aux = container_of(rcu, struct bpf_prog_aux, rcu); |
| 1204 | |
| 1205 | free_used_maps(aux); |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 1206 | bpf_prog_uncharge_memlock(aux->prog); |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 1207 | security_bpf_prog_free(aux); |
Alexei Starovoitov | abf2e7d | 2015-05-28 19:26:02 -0700 | [diff] [blame] | 1208 | bpf_prog_free(aux->prog); |
| 1209 | } |
| 1210 | |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 1211 | static void __bpf_prog_put(struct bpf_prog *prog, bool do_idr_lock) |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1212 | { |
Daniel Borkmann | a67edbf | 2017-01-25 02:28:18 +0100 | [diff] [blame] | 1213 | if (atomic_dec_and_test(&prog->aux->refcnt)) { |
Martin KaFai Lau | 34ad558 | 2017-06-05 12:15:48 -0700 | [diff] [blame] | 1214 | /* bpf_prog_free_id() must be called first */ |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 1215 | bpf_prog_free_id(prog, do_idr_lock); |
Daniel Borkmann | 7d1982b | 2018-06-15 02:30:47 +0200 | [diff] [blame] | 1216 | bpf_prog_kallsyms_del_all(prog); |
Yonghong Song | 838e969 | 2018-11-19 15:29:11 -0800 | [diff] [blame] | 1217 | btf_put(prog->aux->btf); |
Yonghong Song | ba64e7d | 2018-11-24 23:20:44 -0800 | [diff] [blame] | 1218 | kvfree(prog->aux->func_info); |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 1219 | bpf_prog_free_linfo(prog); |
Daniel Borkmann | 4f74d80 | 2017-12-20 13:42:56 +0100 | [diff] [blame] | 1220 | |
Daniel Borkmann | 1aacde3 | 2016-06-30 17:24:43 +0200 | [diff] [blame] | 1221 | call_rcu(&prog->aux->rcu, __bpf_prog_put_rcu); |
Daniel Borkmann | a67edbf | 2017-01-25 02:28:18 +0100 | [diff] [blame] | 1222 | } |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1223 | } |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 1224 | |
| 1225 | void bpf_prog_put(struct bpf_prog *prog) |
| 1226 | { |
| 1227 | __bpf_prog_put(prog, true); |
| 1228 | } |
Daniel Borkmann | e2e9b65 | 2015-03-01 12:31:48 +0100 | [diff] [blame] | 1229 | EXPORT_SYMBOL_GPL(bpf_prog_put); |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1230 | |
| 1231 | static int bpf_prog_release(struct inode *inode, struct file *filp) |
| 1232 | { |
| 1233 | struct bpf_prog *prog = filp->private_data; |
| 1234 | |
Daniel Borkmann | 1aacde3 | 2016-06-30 17:24:43 +0200 | [diff] [blame] | 1235 | bpf_prog_put(prog); |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1236 | return 0; |
| 1237 | } |
| 1238 | |
Daniel Borkmann | 7bd509e | 2016-12-04 23:19:41 +0100 | [diff] [blame] | 1239 | #ifdef CONFIG_PROC_FS |
| 1240 | static void bpf_prog_show_fdinfo(struct seq_file *m, struct file *filp) |
| 1241 | { |
| 1242 | const struct bpf_prog *prog = filp->private_data; |
Daniel Borkmann | f1f7714 | 2017-01-13 23:38:15 +0100 | [diff] [blame] | 1243 | char prog_tag[sizeof(prog->tag) * 2 + 1] = { }; |
Daniel Borkmann | 7bd509e | 2016-12-04 23:19:41 +0100 | [diff] [blame] | 1244 | |
Daniel Borkmann | f1f7714 | 2017-01-13 23:38:15 +0100 | [diff] [blame] | 1245 | bin2hex(prog_tag, prog->tag, sizeof(prog->tag)); |
Daniel Borkmann | 7bd509e | 2016-12-04 23:19:41 +0100 | [diff] [blame] | 1246 | seq_printf(m, |
| 1247 | "prog_type:\t%u\n" |
| 1248 | "prog_jited:\t%u\n" |
Daniel Borkmann | f1f7714 | 2017-01-13 23:38:15 +0100 | [diff] [blame] | 1249 | "prog_tag:\t%s\n" |
Daniel Borkmann | 4316b40 | 2018-06-02 23:06:34 +0200 | [diff] [blame] | 1250 | "memlock:\t%llu\n" |
| 1251 | "prog_id:\t%u\n", |
Daniel Borkmann | 7bd509e | 2016-12-04 23:19:41 +0100 | [diff] [blame] | 1252 | prog->type, |
| 1253 | prog->jited, |
Daniel Borkmann | f1f7714 | 2017-01-13 23:38:15 +0100 | [diff] [blame] | 1254 | prog_tag, |
Daniel Borkmann | 4316b40 | 2018-06-02 23:06:34 +0200 | [diff] [blame] | 1255 | prog->pages * 1ULL << PAGE_SHIFT, |
| 1256 | prog->aux->id); |
Daniel Borkmann | 7bd509e | 2016-12-04 23:19:41 +0100 | [diff] [blame] | 1257 | } |
| 1258 | #endif |
| 1259 | |
Chenbo Feng | f66e448 | 2017-10-18 13:00:26 -0700 | [diff] [blame] | 1260 | const struct file_operations bpf_prog_fops = { |
Daniel Borkmann | 7bd509e | 2016-12-04 23:19:41 +0100 | [diff] [blame] | 1261 | #ifdef CONFIG_PROC_FS |
| 1262 | .show_fdinfo = bpf_prog_show_fdinfo, |
| 1263 | #endif |
| 1264 | .release = bpf_prog_release, |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 1265 | .read = bpf_dummy_read, |
| 1266 | .write = bpf_dummy_write, |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1267 | }; |
| 1268 | |
Daniel Borkmann | b219775 | 2015-10-29 14:58:09 +0100 | [diff] [blame] | 1269 | int bpf_prog_new_fd(struct bpf_prog *prog) |
Daniel Borkmann | aa79781 | 2015-10-29 14:58:06 +0100 | [diff] [blame] | 1270 | { |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 1271 | int ret; |
| 1272 | |
| 1273 | ret = security_bpf_prog(prog); |
| 1274 | if (ret < 0) |
| 1275 | return ret; |
| 1276 | |
Daniel Borkmann | aa79781 | 2015-10-29 14:58:06 +0100 | [diff] [blame] | 1277 | return anon_inode_getfd("bpf-prog", &bpf_prog_fops, prog, |
| 1278 | O_RDWR | O_CLOEXEC); |
| 1279 | } |
| 1280 | |
Daniel Borkmann | 113214b | 2016-06-30 17:24:44 +0200 | [diff] [blame] | 1281 | static struct bpf_prog *____bpf_prog_get(struct fd f) |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1282 | { |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1283 | if (!f.file) |
| 1284 | return ERR_PTR(-EBADF); |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1285 | if (f.file->f_op != &bpf_prog_fops) { |
| 1286 | fdput(f); |
| 1287 | return ERR_PTR(-EINVAL); |
| 1288 | } |
| 1289 | |
Daniel Borkmann | c210129 | 2015-10-29 14:58:07 +0100 | [diff] [blame] | 1290 | return f.file->private_data; |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1291 | } |
| 1292 | |
Brenden Blanco | 59d3656 | 2016-07-19 12:16:46 -0700 | [diff] [blame] | 1293 | struct bpf_prog *bpf_prog_add(struct bpf_prog *prog, int i) |
Alexei Starovoitov | 92117d8 | 2016-04-27 18:56:20 -0700 | [diff] [blame] | 1294 | { |
Brenden Blanco | 59d3656 | 2016-07-19 12:16:46 -0700 | [diff] [blame] | 1295 | if (atomic_add_return(i, &prog->aux->refcnt) > BPF_MAX_REFCNT) { |
| 1296 | atomic_sub(i, &prog->aux->refcnt); |
Alexei Starovoitov | 92117d8 | 2016-04-27 18:56:20 -0700 | [diff] [blame] | 1297 | return ERR_PTR(-EBUSY); |
| 1298 | } |
| 1299 | return prog; |
| 1300 | } |
Brenden Blanco | 59d3656 | 2016-07-19 12:16:46 -0700 | [diff] [blame] | 1301 | EXPORT_SYMBOL_GPL(bpf_prog_add); |
| 1302 | |
Daniel Borkmann | c540594 | 2016-11-09 22:02:34 +0100 | [diff] [blame] | 1303 | void bpf_prog_sub(struct bpf_prog *prog, int i) |
| 1304 | { |
| 1305 | /* Only to be used for undoing previous bpf_prog_add() in some |
| 1306 | * error path. We still know that another entity in our call |
| 1307 | * path holds a reference to the program, thus atomic_sub() can |
| 1308 | * be safely used in such cases! |
| 1309 | */ |
| 1310 | WARN_ON(atomic_sub_return(i, &prog->aux->refcnt) == 0); |
| 1311 | } |
| 1312 | EXPORT_SYMBOL_GPL(bpf_prog_sub); |
| 1313 | |
Brenden Blanco | 59d3656 | 2016-07-19 12:16:46 -0700 | [diff] [blame] | 1314 | struct bpf_prog *bpf_prog_inc(struct bpf_prog *prog) |
| 1315 | { |
| 1316 | return bpf_prog_add(prog, 1); |
| 1317 | } |
Daniel Borkmann | 97bc402 | 2016-11-19 01:45:00 +0100 | [diff] [blame] | 1318 | EXPORT_SYMBOL_GPL(bpf_prog_inc); |
Alexei Starovoitov | 92117d8 | 2016-04-27 18:56:20 -0700 | [diff] [blame] | 1319 | |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 1320 | /* prog_idr_lock should have been held */ |
John Fastabend | a6f6df6 | 2017-08-15 22:32:22 -0700 | [diff] [blame] | 1321 | struct bpf_prog *bpf_prog_inc_not_zero(struct bpf_prog *prog) |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 1322 | { |
| 1323 | int refold; |
| 1324 | |
Mark Rutland | bfc18e3 | 2018-06-21 13:13:04 +0100 | [diff] [blame] | 1325 | refold = atomic_fetch_add_unless(&prog->aux->refcnt, 1, 0); |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 1326 | |
| 1327 | if (refold >= BPF_MAX_REFCNT) { |
| 1328 | __bpf_prog_put(prog, false); |
| 1329 | return ERR_PTR(-EBUSY); |
| 1330 | } |
| 1331 | |
| 1332 | if (!refold) |
| 1333 | return ERR_PTR(-ENOENT); |
| 1334 | |
| 1335 | return prog; |
| 1336 | } |
John Fastabend | a6f6df6 | 2017-08-15 22:32:22 -0700 | [diff] [blame] | 1337 | EXPORT_SYMBOL_GPL(bpf_prog_inc_not_zero); |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 1338 | |
Al Viro | 040ee69 | 2017-12-02 20:20:38 -0500 | [diff] [blame] | 1339 | bool bpf_prog_get_ok(struct bpf_prog *prog, |
Jakub Kicinski | 288b3de | 2017-11-20 15:21:54 -0800 | [diff] [blame] | 1340 | enum bpf_prog_type *attach_type, bool attach_drv) |
Jakub Kicinski | 248f346 | 2017-11-03 13:56:20 -0700 | [diff] [blame] | 1341 | { |
Jakub Kicinski | 288b3de | 2017-11-20 15:21:54 -0800 | [diff] [blame] | 1342 | /* not an attachment, just a refcount inc, always allow */ |
| 1343 | if (!attach_type) |
| 1344 | return true; |
Jakub Kicinski | 248f346 | 2017-11-03 13:56:20 -0700 | [diff] [blame] | 1345 | |
| 1346 | if (prog->type != *attach_type) |
| 1347 | return false; |
Jakub Kicinski | 288b3de | 2017-11-20 15:21:54 -0800 | [diff] [blame] | 1348 | if (bpf_prog_is_dev_bound(prog->aux) && !attach_drv) |
Jakub Kicinski | 248f346 | 2017-11-03 13:56:20 -0700 | [diff] [blame] | 1349 | return false; |
| 1350 | |
| 1351 | return true; |
| 1352 | } |
| 1353 | |
| 1354 | static struct bpf_prog *__bpf_prog_get(u32 ufd, enum bpf_prog_type *attach_type, |
Jakub Kicinski | 288b3de | 2017-11-20 15:21:54 -0800 | [diff] [blame] | 1355 | bool attach_drv) |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1356 | { |
| 1357 | struct fd f = fdget(ufd); |
| 1358 | struct bpf_prog *prog; |
| 1359 | |
Daniel Borkmann | 113214b | 2016-06-30 17:24:44 +0200 | [diff] [blame] | 1360 | prog = ____bpf_prog_get(f); |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1361 | if (IS_ERR(prog)) |
| 1362 | return prog; |
Jakub Kicinski | 288b3de | 2017-11-20 15:21:54 -0800 | [diff] [blame] | 1363 | if (!bpf_prog_get_ok(prog, attach_type, attach_drv)) { |
Daniel Borkmann | 113214b | 2016-06-30 17:24:44 +0200 | [diff] [blame] | 1364 | prog = ERR_PTR(-EINVAL); |
| 1365 | goto out; |
| 1366 | } |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1367 | |
Alexei Starovoitov | 92117d8 | 2016-04-27 18:56:20 -0700 | [diff] [blame] | 1368 | prog = bpf_prog_inc(prog); |
Daniel Borkmann | 113214b | 2016-06-30 17:24:44 +0200 | [diff] [blame] | 1369 | out: |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1370 | fdput(f); |
| 1371 | return prog; |
| 1372 | } |
Daniel Borkmann | 113214b | 2016-06-30 17:24:44 +0200 | [diff] [blame] | 1373 | |
| 1374 | struct bpf_prog *bpf_prog_get(u32 ufd) |
| 1375 | { |
Jakub Kicinski | 288b3de | 2017-11-20 15:21:54 -0800 | [diff] [blame] | 1376 | return __bpf_prog_get(ufd, NULL, false); |
Daniel Borkmann | 113214b | 2016-06-30 17:24:44 +0200 | [diff] [blame] | 1377 | } |
| 1378 | |
Jakub Kicinski | 248f346 | 2017-11-03 13:56:20 -0700 | [diff] [blame] | 1379 | struct bpf_prog *bpf_prog_get_type_dev(u32 ufd, enum bpf_prog_type type, |
Jakub Kicinski | 288b3de | 2017-11-20 15:21:54 -0800 | [diff] [blame] | 1380 | bool attach_drv) |
Jakub Kicinski | 248f346 | 2017-11-03 13:56:20 -0700 | [diff] [blame] | 1381 | { |
Alexei Starovoitov | 4d220ed | 2018-04-28 19:56:37 -0700 | [diff] [blame] | 1382 | return __bpf_prog_get(ufd, &type, attach_drv); |
Jakub Kicinski | 248f346 | 2017-11-03 13:56:20 -0700 | [diff] [blame] | 1383 | } |
Jakub Kicinski | 6c8dfe2 | 2017-11-03 13:56:21 -0700 | [diff] [blame] | 1384 | EXPORT_SYMBOL_GPL(bpf_prog_get_type_dev); |
Jakub Kicinski | 248f346 | 2017-11-03 13:56:20 -0700 | [diff] [blame] | 1385 | |
Andrey Ignatov | aac3fc3 | 2018-03-30 15:08:07 -0700 | [diff] [blame] | 1386 | /* Initially all BPF programs could be loaded w/o specifying |
| 1387 | * expected_attach_type. Later for some of them specifying expected_attach_type |
| 1388 | * at load time became required so that program could be validated properly. |
| 1389 | * Programs of types that are allowed to be loaded both w/ and w/o (for |
| 1390 | * backward compatibility) expected_attach_type, should have the default attach |
| 1391 | * type assigned to expected_attach_type for the latter case, so that it can be |
| 1392 | * validated later at attach time. |
| 1393 | * |
| 1394 | * bpf_prog_load_fixup_attach_type() sets expected_attach_type in @attr if |
| 1395 | * prog type requires it but has some attach types that have to be backward |
| 1396 | * compatible. |
| 1397 | */ |
| 1398 | static void bpf_prog_load_fixup_attach_type(union bpf_attr *attr) |
| 1399 | { |
| 1400 | switch (attr->prog_type) { |
| 1401 | case BPF_PROG_TYPE_CGROUP_SOCK: |
| 1402 | /* Unfortunately BPF_ATTACH_TYPE_UNSPEC enumeration doesn't |
| 1403 | * exist so checking for non-zero is the way to go here. |
| 1404 | */ |
| 1405 | if (!attr->expected_attach_type) |
| 1406 | attr->expected_attach_type = |
| 1407 | BPF_CGROUP_INET_SOCK_CREATE; |
| 1408 | break; |
| 1409 | } |
| 1410 | } |
| 1411 | |
Andrey Ignatov | 5e43f89 | 2018-03-30 15:08:00 -0700 | [diff] [blame] | 1412 | static int |
| 1413 | bpf_prog_load_check_attach_type(enum bpf_prog_type prog_type, |
| 1414 | enum bpf_attach_type expected_attach_type) |
| 1415 | { |
Andrey Ignatov | 4fbac77 | 2018-03-30 15:08:02 -0700 | [diff] [blame] | 1416 | switch (prog_type) { |
Andrey Ignatov | aac3fc3 | 2018-03-30 15:08:07 -0700 | [diff] [blame] | 1417 | case BPF_PROG_TYPE_CGROUP_SOCK: |
| 1418 | switch (expected_attach_type) { |
| 1419 | case BPF_CGROUP_INET_SOCK_CREATE: |
| 1420 | case BPF_CGROUP_INET4_POST_BIND: |
| 1421 | case BPF_CGROUP_INET6_POST_BIND: |
| 1422 | return 0; |
| 1423 | default: |
| 1424 | return -EINVAL; |
| 1425 | } |
Andrey Ignatov | 4fbac77 | 2018-03-30 15:08:02 -0700 | [diff] [blame] | 1426 | case BPF_PROG_TYPE_CGROUP_SOCK_ADDR: |
| 1427 | switch (expected_attach_type) { |
| 1428 | case BPF_CGROUP_INET4_BIND: |
| 1429 | case BPF_CGROUP_INET6_BIND: |
Andrey Ignatov | d74bad4 | 2018-03-30 15:08:05 -0700 | [diff] [blame] | 1430 | case BPF_CGROUP_INET4_CONNECT: |
| 1431 | case BPF_CGROUP_INET6_CONNECT: |
Andrey Ignatov | 1cedee1 | 2018-05-25 08:55:23 -0700 | [diff] [blame] | 1432 | case BPF_CGROUP_UDP4_SENDMSG: |
| 1433 | case BPF_CGROUP_UDP6_SENDMSG: |
Andrey Ignatov | 4fbac77 | 2018-03-30 15:08:02 -0700 | [diff] [blame] | 1434 | return 0; |
| 1435 | default: |
| 1436 | return -EINVAL; |
| 1437 | } |
| 1438 | default: |
| 1439 | return 0; |
| 1440 | } |
Andrey Ignatov | 5e43f89 | 2018-03-30 15:08:00 -0700 | [diff] [blame] | 1441 | } |
| 1442 | |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1443 | /* last field in 'union bpf_attr' used by this command */ |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 1444 | #define BPF_PROG_LOAD_LAST_FIELD line_info_cnt |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1445 | |
Yonghong Song | 838e969 | 2018-11-19 15:29:11 -0800 | [diff] [blame] | 1446 | static int bpf_prog_load(union bpf_attr *attr, union bpf_attr __user *uattr) |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1447 | { |
| 1448 | enum bpf_prog_type type = attr->prog_type; |
| 1449 | struct bpf_prog *prog; |
| 1450 | int err; |
| 1451 | char license[128]; |
| 1452 | bool is_gpl; |
| 1453 | |
| 1454 | if (CHECK_ATTR(BPF_PROG_LOAD)) |
| 1455 | return -EINVAL; |
| 1456 | |
David Miller | e9ee9ef | 2018-11-30 21:08:14 -0800 | [diff] [blame] | 1457 | if (attr->prog_flags & ~(BPF_F_STRICT_ALIGNMENT | BPF_F_ANY_ALIGNMENT)) |
David S. Miller | e07b98d | 2017-05-10 11:38:07 -0700 | [diff] [blame] | 1458 | return -EINVAL; |
| 1459 | |
David Miller | e9ee9ef | 2018-11-30 21:08:14 -0800 | [diff] [blame] | 1460 | if (!IS_ENABLED(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && |
| 1461 | (attr->prog_flags & BPF_F_ANY_ALIGNMENT) && |
| 1462 | !capable(CAP_SYS_ADMIN)) |
| 1463 | return -EPERM; |
| 1464 | |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1465 | /* copy eBPF program license from user space */ |
Mickaël Salaün | 535e7b4b | 2016-11-13 19:44:03 +0100 | [diff] [blame] | 1466 | if (strncpy_from_user(license, u64_to_user_ptr(attr->license), |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1467 | sizeof(license) - 1) < 0) |
| 1468 | return -EFAULT; |
| 1469 | license[sizeof(license) - 1] = 0; |
| 1470 | |
| 1471 | /* eBPF programs must be GPL compatible to use GPL-ed functions */ |
| 1472 | is_gpl = license_is_gpl_compatible(license); |
| 1473 | |
Daniel Borkmann | ef0915c | 2016-12-07 01:15:44 +0100 | [diff] [blame] | 1474 | if (attr->insn_cnt == 0 || attr->insn_cnt > BPF_MAXINSNS) |
| 1475 | return -E2BIG; |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1476 | |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 1477 | if (type == BPF_PROG_TYPE_KPROBE && |
| 1478 | attr->kern_version != LINUX_VERSION_CODE) |
| 1479 | return -EINVAL; |
| 1480 | |
Chenbo Feng | 80b7d81 | 2017-05-31 18:16:00 -0700 | [diff] [blame] | 1481 | if (type != BPF_PROG_TYPE_SOCKET_FILTER && |
| 1482 | type != BPF_PROG_TYPE_CGROUP_SKB && |
| 1483 | !capable(CAP_SYS_ADMIN)) |
Alexei Starovoitov | 1be7f75 | 2015-10-07 22:23:21 -0700 | [diff] [blame] | 1484 | return -EPERM; |
| 1485 | |
Andrey Ignatov | aac3fc3 | 2018-03-30 15:08:07 -0700 | [diff] [blame] | 1486 | bpf_prog_load_fixup_attach_type(attr); |
Andrey Ignatov | 5e43f89 | 2018-03-30 15:08:00 -0700 | [diff] [blame] | 1487 | if (bpf_prog_load_check_attach_type(type, attr->expected_attach_type)) |
| 1488 | return -EINVAL; |
| 1489 | |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1490 | /* plain bpf_prog allocation */ |
| 1491 | prog = bpf_prog_alloc(bpf_prog_size(attr->insn_cnt), GFP_USER); |
| 1492 | if (!prog) |
| 1493 | return -ENOMEM; |
| 1494 | |
Andrey Ignatov | 5e43f89 | 2018-03-30 15:08:00 -0700 | [diff] [blame] | 1495 | prog->expected_attach_type = attr->expected_attach_type; |
| 1496 | |
Jakub Kicinski | 9a18eed | 2017-12-27 18:39:04 -0800 | [diff] [blame] | 1497 | prog->aux->offload_requested = !!attr->prog_ifindex; |
| 1498 | |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 1499 | err = security_bpf_prog_alloc(prog->aux); |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 1500 | if (err) |
| 1501 | goto free_prog_nouncharge; |
| 1502 | |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 1503 | err = bpf_prog_charge_memlock(prog); |
| 1504 | if (err) |
| 1505 | goto free_prog_sec; |
| 1506 | |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1507 | prog->len = attr->insn_cnt; |
| 1508 | |
| 1509 | err = -EFAULT; |
Mickaël Salaün | 535e7b4b | 2016-11-13 19:44:03 +0100 | [diff] [blame] | 1510 | if (copy_from_user(prog->insns, u64_to_user_ptr(attr->insns), |
Daniel Borkmann | aafe6ae | 2016-12-18 01:52:57 +0100 | [diff] [blame] | 1511 | bpf_prog_insn_size(prog)) != 0) |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1512 | goto free_prog; |
| 1513 | |
| 1514 | prog->orig_prog = NULL; |
Daniel Borkmann | a91263d | 2015-09-30 01:41:50 +0200 | [diff] [blame] | 1515 | prog->jited = 0; |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1516 | |
| 1517 | atomic_set(&prog->aux->refcnt, 1); |
Daniel Borkmann | a91263d | 2015-09-30 01:41:50 +0200 | [diff] [blame] | 1518 | prog->gpl_compatible = is_gpl ? 1 : 0; |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1519 | |
Jakub Kicinski | 9a18eed | 2017-12-27 18:39:04 -0800 | [diff] [blame] | 1520 | if (bpf_prog_is_dev_bound(prog->aux)) { |
Jakub Kicinski | ab3f006 | 2017-11-03 13:56:17 -0700 | [diff] [blame] | 1521 | err = bpf_prog_offload_init(prog, attr); |
| 1522 | if (err) |
| 1523 | goto free_prog; |
| 1524 | } |
| 1525 | |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1526 | /* find program type: socket_filter vs tracing_filter */ |
| 1527 | err = find_prog_type(type, prog); |
| 1528 | if (err < 0) |
| 1529 | goto free_prog; |
| 1530 | |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 1531 | prog->aux->load_time = ktime_get_boot_ns(); |
| 1532 | err = bpf_obj_name_cpy(prog->aux->name, attr->prog_name); |
| 1533 | if (err) |
| 1534 | goto free_prog; |
| 1535 | |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1536 | /* run eBPF verifier */ |
Yonghong Song | 838e969 | 2018-11-19 15:29:11 -0800 | [diff] [blame] | 1537 | err = bpf_check(&prog, attr, uattr); |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1538 | if (err < 0) |
| 1539 | goto free_used_maps; |
| 1540 | |
Daniel Borkmann | 9facc33 | 2018-06-15 02:30:48 +0200 | [diff] [blame] | 1541 | prog = bpf_prog_select_runtime(prog, &err); |
Alexei Starovoitov | 04fd61ab | 2015-05-19 16:59:03 -0700 | [diff] [blame] | 1542 | if (err < 0) |
| 1543 | goto free_used_maps; |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1544 | |
Martin KaFai Lau | dc4bb0e | 2017-06-05 12:15:46 -0700 | [diff] [blame] | 1545 | err = bpf_prog_alloc_id(prog); |
| 1546 | if (err) |
| 1547 | goto free_used_maps; |
| 1548 | |
Daniel Borkmann | aa79781 | 2015-10-29 14:58:06 +0100 | [diff] [blame] | 1549 | err = bpf_prog_new_fd(prog); |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 1550 | if (err < 0) { |
| 1551 | /* failed to allocate fd. |
| 1552 | * bpf_prog_put() is needed because the above |
| 1553 | * bpf_prog_alloc_id() has published the prog |
| 1554 | * to the userspace and the userspace may |
| 1555 | * have refcnt-ed it through BPF_PROG_GET_FD_BY_ID. |
| 1556 | */ |
| 1557 | bpf_prog_put(prog); |
| 1558 | return err; |
| 1559 | } |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1560 | |
Daniel Borkmann | 74451e66 | 2017-02-16 22:24:50 +0100 | [diff] [blame] | 1561 | bpf_prog_kallsyms_add(prog); |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1562 | return err; |
| 1563 | |
| 1564 | free_used_maps: |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 1565 | bpf_prog_free_linfo(prog); |
Martin KaFai Lau | 5482e9a | 2018-12-01 17:08:44 -0800 | [diff] [blame] | 1566 | kvfree(prog->aux->func_info); |
| 1567 | btf_put(prog->aux->btf); |
Daniel Borkmann | 7d1982b | 2018-06-15 02:30:47 +0200 | [diff] [blame] | 1568 | bpf_prog_kallsyms_del_subprogs(prog); |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1569 | free_used_maps(prog->aux); |
| 1570 | free_prog: |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 1571 | bpf_prog_uncharge_memlock(prog); |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 1572 | free_prog_sec: |
| 1573 | security_bpf_prog_free(prog->aux); |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 1574 | free_prog_nouncharge: |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1575 | bpf_prog_free(prog); |
| 1576 | return err; |
| 1577 | } |
| 1578 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 1579 | #define BPF_OBJ_LAST_FIELD file_flags |
Daniel Borkmann | b219775 | 2015-10-29 14:58:09 +0100 | [diff] [blame] | 1580 | |
| 1581 | static int bpf_obj_pin(const union bpf_attr *attr) |
| 1582 | { |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 1583 | if (CHECK_ATTR(BPF_OBJ) || attr->file_flags != 0) |
Daniel Borkmann | b219775 | 2015-10-29 14:58:09 +0100 | [diff] [blame] | 1584 | return -EINVAL; |
| 1585 | |
Mickaël Salaün | 535e7b4b | 2016-11-13 19:44:03 +0100 | [diff] [blame] | 1586 | return bpf_obj_pin_user(attr->bpf_fd, u64_to_user_ptr(attr->pathname)); |
Daniel Borkmann | b219775 | 2015-10-29 14:58:09 +0100 | [diff] [blame] | 1587 | } |
| 1588 | |
| 1589 | static int bpf_obj_get(const union bpf_attr *attr) |
| 1590 | { |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 1591 | if (CHECK_ATTR(BPF_OBJ) || attr->bpf_fd != 0 || |
| 1592 | attr->file_flags & ~BPF_OBJ_FLAG_MASK) |
Daniel Borkmann | b219775 | 2015-10-29 14:58:09 +0100 | [diff] [blame] | 1593 | return -EINVAL; |
| 1594 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 1595 | return bpf_obj_get_user(u64_to_user_ptr(attr->pathname), |
| 1596 | attr->file_flags); |
Daniel Borkmann | b219775 | 2015-10-29 14:58:09 +0100 | [diff] [blame] | 1597 | } |
| 1598 | |
Alexei Starovoitov | c4f6699 | 2018-03-28 12:05:37 -0700 | [diff] [blame] | 1599 | struct bpf_raw_tracepoint { |
| 1600 | struct bpf_raw_event_map *btp; |
| 1601 | struct bpf_prog *prog; |
| 1602 | }; |
| 1603 | |
| 1604 | static int bpf_raw_tracepoint_release(struct inode *inode, struct file *filp) |
| 1605 | { |
| 1606 | struct bpf_raw_tracepoint *raw_tp = filp->private_data; |
| 1607 | |
| 1608 | if (raw_tp->prog) { |
| 1609 | bpf_probe_unregister(raw_tp->btp, raw_tp->prog); |
| 1610 | bpf_prog_put(raw_tp->prog); |
| 1611 | } |
| 1612 | kfree(raw_tp); |
| 1613 | return 0; |
| 1614 | } |
| 1615 | |
| 1616 | static const struct file_operations bpf_raw_tp_fops = { |
| 1617 | .release = bpf_raw_tracepoint_release, |
| 1618 | .read = bpf_dummy_read, |
| 1619 | .write = bpf_dummy_write, |
| 1620 | }; |
| 1621 | |
| 1622 | #define BPF_RAW_TRACEPOINT_OPEN_LAST_FIELD raw_tracepoint.prog_fd |
| 1623 | |
| 1624 | static int bpf_raw_tracepoint_open(const union bpf_attr *attr) |
| 1625 | { |
| 1626 | struct bpf_raw_tracepoint *raw_tp; |
| 1627 | struct bpf_raw_event_map *btp; |
| 1628 | struct bpf_prog *prog; |
| 1629 | char tp_name[128]; |
| 1630 | int tp_fd, err; |
| 1631 | |
| 1632 | if (strncpy_from_user(tp_name, u64_to_user_ptr(attr->raw_tracepoint.name), |
| 1633 | sizeof(tp_name) - 1) < 0) |
| 1634 | return -EFAULT; |
| 1635 | tp_name[sizeof(tp_name) - 1] = 0; |
| 1636 | |
| 1637 | btp = bpf_find_raw_tracepoint(tp_name); |
| 1638 | if (!btp) |
| 1639 | return -ENOENT; |
| 1640 | |
| 1641 | raw_tp = kzalloc(sizeof(*raw_tp), GFP_USER); |
| 1642 | if (!raw_tp) |
| 1643 | return -ENOMEM; |
| 1644 | raw_tp->btp = btp; |
| 1645 | |
| 1646 | prog = bpf_prog_get_type(attr->raw_tracepoint.prog_fd, |
| 1647 | BPF_PROG_TYPE_RAW_TRACEPOINT); |
| 1648 | if (IS_ERR(prog)) { |
| 1649 | err = PTR_ERR(prog); |
| 1650 | goto out_free_tp; |
| 1651 | } |
| 1652 | |
| 1653 | err = bpf_probe_register(raw_tp->btp, prog); |
| 1654 | if (err) |
| 1655 | goto out_put_prog; |
| 1656 | |
| 1657 | raw_tp->prog = prog; |
| 1658 | tp_fd = anon_inode_getfd("bpf-raw-tracepoint", &bpf_raw_tp_fops, raw_tp, |
| 1659 | O_CLOEXEC); |
| 1660 | if (tp_fd < 0) { |
| 1661 | bpf_probe_unregister(raw_tp->btp, prog); |
| 1662 | err = tp_fd; |
| 1663 | goto out_put_prog; |
| 1664 | } |
| 1665 | return tp_fd; |
| 1666 | |
| 1667 | out_put_prog: |
| 1668 | bpf_prog_put(prog); |
| 1669 | out_free_tp: |
| 1670 | kfree(raw_tp); |
| 1671 | return err; |
| 1672 | } |
| 1673 | |
Anders Roxell | 3349158 | 2018-04-03 14:09:47 +0200 | [diff] [blame] | 1674 | static int bpf_prog_attach_check_attach_type(const struct bpf_prog *prog, |
| 1675 | enum bpf_attach_type attach_type) |
| 1676 | { |
| 1677 | switch (prog->type) { |
| 1678 | case BPF_PROG_TYPE_CGROUP_SOCK: |
| 1679 | case BPF_PROG_TYPE_CGROUP_SOCK_ADDR: |
| 1680 | return attach_type == prog->expected_attach_type ? 0 : -EINVAL; |
| 1681 | default: |
| 1682 | return 0; |
| 1683 | } |
| 1684 | } |
| 1685 | |
John Fastabend | 464bc0f | 2017-08-28 07:10:04 -0700 | [diff] [blame] | 1686 | #define BPF_PROG_ATTACH_LAST_FIELD attach_flags |
John Fastabend | 174a79f | 2017-08-15 22:32:47 -0700 | [diff] [blame] | 1687 | |
Alexei Starovoitov | 324bda9e6 | 2017-10-02 22:50:21 -0700 | [diff] [blame] | 1688 | #define BPF_F_ATTACH_MASK \ |
| 1689 | (BPF_F_ALLOW_OVERRIDE | BPF_F_ALLOW_MULTI) |
| 1690 | |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 1691 | static int bpf_prog_attach(const union bpf_attr *attr) |
| 1692 | { |
Alexei Starovoitov | 7f67763 | 2017-02-10 20:28:24 -0800 | [diff] [blame] | 1693 | enum bpf_prog_type ptype; |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 1694 | struct bpf_prog *prog; |
Alexei Starovoitov | 7f67763 | 2017-02-10 20:28:24 -0800 | [diff] [blame] | 1695 | int ret; |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 1696 | |
| 1697 | if (!capable(CAP_NET_ADMIN)) |
| 1698 | return -EPERM; |
| 1699 | |
| 1700 | if (CHECK_ATTR(BPF_PROG_ATTACH)) |
| 1701 | return -EINVAL; |
| 1702 | |
Alexei Starovoitov | 324bda9e6 | 2017-10-02 22:50:21 -0700 | [diff] [blame] | 1703 | if (attr->attach_flags & ~BPF_F_ATTACH_MASK) |
Alexei Starovoitov | 7f67763 | 2017-02-10 20:28:24 -0800 | [diff] [blame] | 1704 | return -EINVAL; |
| 1705 | |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 1706 | switch (attr->attach_type) { |
| 1707 | case BPF_CGROUP_INET_INGRESS: |
| 1708 | case BPF_CGROUP_INET_EGRESS: |
David Ahern | b2cd125 | 2016-12-01 08:48:03 -0800 | [diff] [blame] | 1709 | ptype = BPF_PROG_TYPE_CGROUP_SKB; |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 1710 | break; |
David Ahern | 61023658 | 2016-12-01 08:48:04 -0800 | [diff] [blame] | 1711 | case BPF_CGROUP_INET_SOCK_CREATE: |
Andrey Ignatov | aac3fc3 | 2018-03-30 15:08:07 -0700 | [diff] [blame] | 1712 | case BPF_CGROUP_INET4_POST_BIND: |
| 1713 | case BPF_CGROUP_INET6_POST_BIND: |
David Ahern | 61023658 | 2016-12-01 08:48:04 -0800 | [diff] [blame] | 1714 | ptype = BPF_PROG_TYPE_CGROUP_SOCK; |
| 1715 | break; |
Andrey Ignatov | 4fbac77 | 2018-03-30 15:08:02 -0700 | [diff] [blame] | 1716 | case BPF_CGROUP_INET4_BIND: |
| 1717 | case BPF_CGROUP_INET6_BIND: |
Andrey Ignatov | d74bad4 | 2018-03-30 15:08:05 -0700 | [diff] [blame] | 1718 | case BPF_CGROUP_INET4_CONNECT: |
| 1719 | case BPF_CGROUP_INET6_CONNECT: |
Andrey Ignatov | 1cedee1 | 2018-05-25 08:55:23 -0700 | [diff] [blame] | 1720 | case BPF_CGROUP_UDP4_SENDMSG: |
| 1721 | case BPF_CGROUP_UDP6_SENDMSG: |
Andrey Ignatov | 4fbac77 | 2018-03-30 15:08:02 -0700 | [diff] [blame] | 1722 | ptype = BPF_PROG_TYPE_CGROUP_SOCK_ADDR; |
| 1723 | break; |
Lawrence Brakmo | 40304b2 | 2017-06-30 20:02:40 -0700 | [diff] [blame] | 1724 | case BPF_CGROUP_SOCK_OPS: |
| 1725 | ptype = BPF_PROG_TYPE_SOCK_OPS; |
| 1726 | break; |
Roman Gushchin | ebc614f | 2017-11-05 08:15:32 -0500 | [diff] [blame] | 1727 | case BPF_CGROUP_DEVICE: |
| 1728 | ptype = BPF_PROG_TYPE_CGROUP_DEVICE; |
| 1729 | break; |
John Fastabend | 4f738ad | 2018-03-18 12:57:10 -0700 | [diff] [blame] | 1730 | case BPF_SK_MSG_VERDICT: |
Sean Young | fdb5c45 | 2018-06-19 00:04:24 +0100 | [diff] [blame] | 1731 | ptype = BPF_PROG_TYPE_SK_MSG; |
| 1732 | break; |
John Fastabend | 464bc0f | 2017-08-28 07:10:04 -0700 | [diff] [blame] | 1733 | case BPF_SK_SKB_STREAM_PARSER: |
| 1734 | case BPF_SK_SKB_STREAM_VERDICT: |
Sean Young | fdb5c45 | 2018-06-19 00:04:24 +0100 | [diff] [blame] | 1735 | ptype = BPF_PROG_TYPE_SK_SKB; |
| 1736 | break; |
Sean Young | f4364dc | 2018-05-27 12:24:09 +0100 | [diff] [blame] | 1737 | case BPF_LIRC_MODE2: |
Sean Young | fdb5c45 | 2018-06-19 00:04:24 +0100 | [diff] [blame] | 1738 | ptype = BPF_PROG_TYPE_LIRC_MODE2; |
| 1739 | break; |
Petar Penkov | d58e468 | 2018-09-14 07:46:18 -0700 | [diff] [blame] | 1740 | case BPF_FLOW_DISSECTOR: |
| 1741 | ptype = BPF_PROG_TYPE_FLOW_DISSECTOR; |
| 1742 | break; |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 1743 | default: |
| 1744 | return -EINVAL; |
| 1745 | } |
| 1746 | |
David Ahern | b2cd125 | 2016-12-01 08:48:03 -0800 | [diff] [blame] | 1747 | prog = bpf_prog_get_type(attr->attach_bpf_fd, ptype); |
| 1748 | if (IS_ERR(prog)) |
| 1749 | return PTR_ERR(prog); |
| 1750 | |
Andrey Ignatov | 5e43f89 | 2018-03-30 15:08:00 -0700 | [diff] [blame] | 1751 | if (bpf_prog_attach_check_attach_type(prog, attr->attach_type)) { |
| 1752 | bpf_prog_put(prog); |
| 1753 | return -EINVAL; |
| 1754 | } |
| 1755 | |
Sean Young | fdb5c45 | 2018-06-19 00:04:24 +0100 | [diff] [blame] | 1756 | switch (ptype) { |
| 1757 | case BPF_PROG_TYPE_SK_SKB: |
| 1758 | case BPF_PROG_TYPE_SK_MSG: |
Daniel Borkmann | 604326b | 2018-10-13 02:45:58 +0200 | [diff] [blame] | 1759 | ret = sock_map_get_from_fd(attr, prog); |
Sean Young | fdb5c45 | 2018-06-19 00:04:24 +0100 | [diff] [blame] | 1760 | break; |
| 1761 | case BPF_PROG_TYPE_LIRC_MODE2: |
| 1762 | ret = lirc_prog_attach(attr, prog); |
| 1763 | break; |
Petar Penkov | d58e468 | 2018-09-14 07:46:18 -0700 | [diff] [blame] | 1764 | case BPF_PROG_TYPE_FLOW_DISSECTOR: |
| 1765 | ret = skb_flow_dissector_bpf_prog_attach(attr, prog); |
| 1766 | break; |
Sean Young | fdb5c45 | 2018-06-19 00:04:24 +0100 | [diff] [blame] | 1767 | default: |
| 1768 | ret = cgroup_bpf_prog_attach(attr, ptype, prog); |
David Ahern | b2cd125 | 2016-12-01 08:48:03 -0800 | [diff] [blame] | 1769 | } |
| 1770 | |
Alexei Starovoitov | 7f67763 | 2017-02-10 20:28:24 -0800 | [diff] [blame] | 1771 | if (ret) |
| 1772 | bpf_prog_put(prog); |
Alexei Starovoitov | 7f67763 | 2017-02-10 20:28:24 -0800 | [diff] [blame] | 1773 | return ret; |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 1774 | } |
| 1775 | |
| 1776 | #define BPF_PROG_DETACH_LAST_FIELD attach_type |
| 1777 | |
| 1778 | static int bpf_prog_detach(const union bpf_attr *attr) |
| 1779 | { |
Alexei Starovoitov | 324bda9e6 | 2017-10-02 22:50:21 -0700 | [diff] [blame] | 1780 | enum bpf_prog_type ptype; |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 1781 | |
| 1782 | if (!capable(CAP_NET_ADMIN)) |
| 1783 | return -EPERM; |
| 1784 | |
| 1785 | if (CHECK_ATTR(BPF_PROG_DETACH)) |
| 1786 | return -EINVAL; |
| 1787 | |
| 1788 | switch (attr->attach_type) { |
| 1789 | case BPF_CGROUP_INET_INGRESS: |
| 1790 | case BPF_CGROUP_INET_EGRESS: |
Alexei Starovoitov | 324bda9e6 | 2017-10-02 22:50:21 -0700 | [diff] [blame] | 1791 | ptype = BPF_PROG_TYPE_CGROUP_SKB; |
| 1792 | break; |
David Ahern | 61023658 | 2016-12-01 08:48:04 -0800 | [diff] [blame] | 1793 | case BPF_CGROUP_INET_SOCK_CREATE: |
Andrey Ignatov | aac3fc3 | 2018-03-30 15:08:07 -0700 | [diff] [blame] | 1794 | case BPF_CGROUP_INET4_POST_BIND: |
| 1795 | case BPF_CGROUP_INET6_POST_BIND: |
Alexei Starovoitov | 324bda9e6 | 2017-10-02 22:50:21 -0700 | [diff] [blame] | 1796 | ptype = BPF_PROG_TYPE_CGROUP_SOCK; |
| 1797 | break; |
Andrey Ignatov | 4fbac77 | 2018-03-30 15:08:02 -0700 | [diff] [blame] | 1798 | case BPF_CGROUP_INET4_BIND: |
| 1799 | case BPF_CGROUP_INET6_BIND: |
Andrey Ignatov | d74bad4 | 2018-03-30 15:08:05 -0700 | [diff] [blame] | 1800 | case BPF_CGROUP_INET4_CONNECT: |
| 1801 | case BPF_CGROUP_INET6_CONNECT: |
Andrey Ignatov | 1cedee1 | 2018-05-25 08:55:23 -0700 | [diff] [blame] | 1802 | case BPF_CGROUP_UDP4_SENDMSG: |
| 1803 | case BPF_CGROUP_UDP6_SENDMSG: |
Andrey Ignatov | 4fbac77 | 2018-03-30 15:08:02 -0700 | [diff] [blame] | 1804 | ptype = BPF_PROG_TYPE_CGROUP_SOCK_ADDR; |
| 1805 | break; |
Lawrence Brakmo | 40304b2 | 2017-06-30 20:02:40 -0700 | [diff] [blame] | 1806 | case BPF_CGROUP_SOCK_OPS: |
Alexei Starovoitov | 324bda9e6 | 2017-10-02 22:50:21 -0700 | [diff] [blame] | 1807 | ptype = BPF_PROG_TYPE_SOCK_OPS; |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 1808 | break; |
Roman Gushchin | ebc614f | 2017-11-05 08:15:32 -0500 | [diff] [blame] | 1809 | case BPF_CGROUP_DEVICE: |
| 1810 | ptype = BPF_PROG_TYPE_CGROUP_DEVICE; |
| 1811 | break; |
John Fastabend | 4f738ad | 2018-03-18 12:57:10 -0700 | [diff] [blame] | 1812 | case BPF_SK_MSG_VERDICT: |
Daniel Borkmann | 604326b | 2018-10-13 02:45:58 +0200 | [diff] [blame] | 1813 | return sock_map_get_from_fd(attr, NULL); |
John Fastabend | 5a67da2 | 2017-09-08 14:00:49 -0700 | [diff] [blame] | 1814 | case BPF_SK_SKB_STREAM_PARSER: |
| 1815 | case BPF_SK_SKB_STREAM_VERDICT: |
Daniel Borkmann | 604326b | 2018-10-13 02:45:58 +0200 | [diff] [blame] | 1816 | return sock_map_get_from_fd(attr, NULL); |
Sean Young | f4364dc | 2018-05-27 12:24:09 +0100 | [diff] [blame] | 1817 | case BPF_LIRC_MODE2: |
| 1818 | return lirc_prog_detach(attr); |
Petar Penkov | d58e468 | 2018-09-14 07:46:18 -0700 | [diff] [blame] | 1819 | case BPF_FLOW_DISSECTOR: |
| 1820 | return skb_flow_dissector_bpf_prog_detach(attr); |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 1821 | default: |
| 1822 | return -EINVAL; |
| 1823 | } |
| 1824 | |
Sean Young | fdb5c45 | 2018-06-19 00:04:24 +0100 | [diff] [blame] | 1825 | return cgroup_bpf_prog_detach(attr, ptype); |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 1826 | } |
Lawrence Brakmo | 40304b2 | 2017-06-30 20:02:40 -0700 | [diff] [blame] | 1827 | |
Alexei Starovoitov | 468e2f6 | 2017-10-02 22:50:22 -0700 | [diff] [blame] | 1828 | #define BPF_PROG_QUERY_LAST_FIELD query.prog_cnt |
| 1829 | |
| 1830 | static int bpf_prog_query(const union bpf_attr *attr, |
| 1831 | union bpf_attr __user *uattr) |
| 1832 | { |
Alexei Starovoitov | 468e2f6 | 2017-10-02 22:50:22 -0700 | [diff] [blame] | 1833 | if (!capable(CAP_NET_ADMIN)) |
| 1834 | return -EPERM; |
| 1835 | if (CHECK_ATTR(BPF_PROG_QUERY)) |
| 1836 | return -EINVAL; |
| 1837 | if (attr->query.query_flags & ~BPF_F_QUERY_EFFECTIVE) |
| 1838 | return -EINVAL; |
| 1839 | |
| 1840 | switch (attr->query.attach_type) { |
| 1841 | case BPF_CGROUP_INET_INGRESS: |
| 1842 | case BPF_CGROUP_INET_EGRESS: |
| 1843 | case BPF_CGROUP_INET_SOCK_CREATE: |
Andrey Ignatov | 4fbac77 | 2018-03-30 15:08:02 -0700 | [diff] [blame] | 1844 | case BPF_CGROUP_INET4_BIND: |
| 1845 | case BPF_CGROUP_INET6_BIND: |
Andrey Ignatov | aac3fc3 | 2018-03-30 15:08:07 -0700 | [diff] [blame] | 1846 | case BPF_CGROUP_INET4_POST_BIND: |
| 1847 | case BPF_CGROUP_INET6_POST_BIND: |
Andrey Ignatov | d74bad4 | 2018-03-30 15:08:05 -0700 | [diff] [blame] | 1848 | case BPF_CGROUP_INET4_CONNECT: |
| 1849 | case BPF_CGROUP_INET6_CONNECT: |
Andrey Ignatov | 1cedee1 | 2018-05-25 08:55:23 -0700 | [diff] [blame] | 1850 | case BPF_CGROUP_UDP4_SENDMSG: |
| 1851 | case BPF_CGROUP_UDP6_SENDMSG: |
Alexei Starovoitov | 468e2f6 | 2017-10-02 22:50:22 -0700 | [diff] [blame] | 1852 | case BPF_CGROUP_SOCK_OPS: |
Roman Gushchin | ebc614f | 2017-11-05 08:15:32 -0500 | [diff] [blame] | 1853 | case BPF_CGROUP_DEVICE: |
Alexei Starovoitov | 468e2f6 | 2017-10-02 22:50:22 -0700 | [diff] [blame] | 1854 | break; |
Sean Young | f4364dc | 2018-05-27 12:24:09 +0100 | [diff] [blame] | 1855 | case BPF_LIRC_MODE2: |
| 1856 | return lirc_prog_query(attr, uattr); |
Alexei Starovoitov | 468e2f6 | 2017-10-02 22:50:22 -0700 | [diff] [blame] | 1857 | default: |
| 1858 | return -EINVAL; |
| 1859 | } |
Sean Young | fdb5c45 | 2018-06-19 00:04:24 +0100 | [diff] [blame] | 1860 | |
| 1861 | return cgroup_bpf_prog_query(attr, uattr); |
Alexei Starovoitov | 468e2f6 | 2017-10-02 22:50:22 -0700 | [diff] [blame] | 1862 | } |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 1863 | |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 1864 | #define BPF_PROG_TEST_RUN_LAST_FIELD test.duration |
| 1865 | |
| 1866 | static int bpf_prog_test_run(const union bpf_attr *attr, |
| 1867 | union bpf_attr __user *uattr) |
| 1868 | { |
| 1869 | struct bpf_prog *prog; |
| 1870 | int ret = -ENOTSUPP; |
| 1871 | |
Alexei Starovoitov | 61f3c96 | 2018-01-17 16:52:02 -0800 | [diff] [blame] | 1872 | if (!capable(CAP_SYS_ADMIN)) |
| 1873 | return -EPERM; |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 1874 | if (CHECK_ATTR(BPF_PROG_TEST_RUN)) |
| 1875 | return -EINVAL; |
| 1876 | |
| 1877 | prog = bpf_prog_get(attr->test.prog_fd); |
| 1878 | if (IS_ERR(prog)) |
| 1879 | return PTR_ERR(prog); |
| 1880 | |
| 1881 | if (prog->aux->ops->test_run) |
| 1882 | ret = prog->aux->ops->test_run(prog, attr, uattr); |
| 1883 | |
| 1884 | bpf_prog_put(prog); |
| 1885 | return ret; |
| 1886 | } |
| 1887 | |
Martin KaFai Lau | 34ad558 | 2017-06-05 12:15:48 -0700 | [diff] [blame] | 1888 | #define BPF_OBJ_GET_NEXT_ID_LAST_FIELD next_id |
| 1889 | |
| 1890 | static int bpf_obj_get_next_id(const union bpf_attr *attr, |
| 1891 | union bpf_attr __user *uattr, |
| 1892 | struct idr *idr, |
| 1893 | spinlock_t *lock) |
| 1894 | { |
| 1895 | u32 next_id = attr->start_id; |
| 1896 | int err = 0; |
| 1897 | |
| 1898 | if (CHECK_ATTR(BPF_OBJ_GET_NEXT_ID) || next_id >= INT_MAX) |
| 1899 | return -EINVAL; |
| 1900 | |
| 1901 | if (!capable(CAP_SYS_ADMIN)) |
| 1902 | return -EPERM; |
| 1903 | |
| 1904 | next_id++; |
| 1905 | spin_lock_bh(lock); |
| 1906 | if (!idr_get_next(idr, &next_id)) |
| 1907 | err = -ENOENT; |
| 1908 | spin_unlock_bh(lock); |
| 1909 | |
| 1910 | if (!err) |
| 1911 | err = put_user(next_id, &uattr->next_id); |
| 1912 | |
| 1913 | return err; |
| 1914 | } |
| 1915 | |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 1916 | #define BPF_PROG_GET_FD_BY_ID_LAST_FIELD prog_id |
| 1917 | |
| 1918 | static int bpf_prog_get_fd_by_id(const union bpf_attr *attr) |
| 1919 | { |
| 1920 | struct bpf_prog *prog; |
| 1921 | u32 id = attr->prog_id; |
| 1922 | int fd; |
| 1923 | |
| 1924 | if (CHECK_ATTR(BPF_PROG_GET_FD_BY_ID)) |
| 1925 | return -EINVAL; |
| 1926 | |
| 1927 | if (!capable(CAP_SYS_ADMIN)) |
| 1928 | return -EPERM; |
| 1929 | |
| 1930 | spin_lock_bh(&prog_idr_lock); |
| 1931 | prog = idr_find(&prog_idr, id); |
| 1932 | if (prog) |
| 1933 | prog = bpf_prog_inc_not_zero(prog); |
| 1934 | else |
| 1935 | prog = ERR_PTR(-ENOENT); |
| 1936 | spin_unlock_bh(&prog_idr_lock); |
| 1937 | |
| 1938 | if (IS_ERR(prog)) |
| 1939 | return PTR_ERR(prog); |
| 1940 | |
| 1941 | fd = bpf_prog_new_fd(prog); |
| 1942 | if (fd < 0) |
| 1943 | bpf_prog_put(prog); |
| 1944 | |
| 1945 | return fd; |
| 1946 | } |
| 1947 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 1948 | #define BPF_MAP_GET_FD_BY_ID_LAST_FIELD open_flags |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 1949 | |
| 1950 | static int bpf_map_get_fd_by_id(const union bpf_attr *attr) |
| 1951 | { |
| 1952 | struct bpf_map *map; |
| 1953 | u32 id = attr->map_id; |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 1954 | int f_flags; |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 1955 | int fd; |
| 1956 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 1957 | if (CHECK_ATTR(BPF_MAP_GET_FD_BY_ID) || |
| 1958 | attr->open_flags & ~BPF_OBJ_FLAG_MASK) |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 1959 | return -EINVAL; |
| 1960 | |
| 1961 | if (!capable(CAP_SYS_ADMIN)) |
| 1962 | return -EPERM; |
| 1963 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 1964 | f_flags = bpf_get_file_flag(attr->open_flags); |
| 1965 | if (f_flags < 0) |
| 1966 | return f_flags; |
| 1967 | |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 1968 | spin_lock_bh(&map_idr_lock); |
| 1969 | map = idr_find(&map_idr, id); |
| 1970 | if (map) |
| 1971 | map = bpf_map_inc_not_zero(map, true); |
| 1972 | else |
| 1973 | map = ERR_PTR(-ENOENT); |
| 1974 | spin_unlock_bh(&map_idr_lock); |
| 1975 | |
| 1976 | if (IS_ERR(map)) |
| 1977 | return PTR_ERR(map); |
| 1978 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 1979 | fd = bpf_map_new_fd(map, f_flags); |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 1980 | if (fd < 0) |
| 1981 | bpf_map_put(map); |
| 1982 | |
| 1983 | return fd; |
| 1984 | } |
| 1985 | |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 1986 | static const struct bpf_map *bpf_map_from_imm(const struct bpf_prog *prog, |
| 1987 | unsigned long addr) |
| 1988 | { |
| 1989 | int i; |
| 1990 | |
| 1991 | for (i = 0; i < prog->aux->used_map_cnt; i++) |
| 1992 | if (prog->aux->used_maps[i] == (void *)addr) |
| 1993 | return prog->aux->used_maps[i]; |
| 1994 | return NULL; |
| 1995 | } |
| 1996 | |
| 1997 | static struct bpf_insn *bpf_insn_prepare_dump(const struct bpf_prog *prog) |
| 1998 | { |
| 1999 | const struct bpf_map *map; |
| 2000 | struct bpf_insn *insns; |
| 2001 | u64 imm; |
| 2002 | int i; |
| 2003 | |
| 2004 | insns = kmemdup(prog->insnsi, bpf_prog_insn_size(prog), |
| 2005 | GFP_USER); |
| 2006 | if (!insns) |
| 2007 | return insns; |
| 2008 | |
| 2009 | for (i = 0; i < prog->len; i++) { |
| 2010 | if (insns[i].code == (BPF_JMP | BPF_TAIL_CALL)) { |
| 2011 | insns[i].code = BPF_JMP | BPF_CALL; |
| 2012 | insns[i].imm = BPF_FUNC_tail_call; |
| 2013 | /* fall-through */ |
| 2014 | } |
| 2015 | if (insns[i].code == (BPF_JMP | BPF_CALL) || |
| 2016 | insns[i].code == (BPF_JMP | BPF_CALL_ARGS)) { |
| 2017 | if (insns[i].code == (BPF_JMP | BPF_CALL_ARGS)) |
| 2018 | insns[i].code = BPF_JMP | BPF_CALL; |
| 2019 | if (!bpf_dump_raw_ok()) |
| 2020 | insns[i].imm = 0; |
| 2021 | continue; |
| 2022 | } |
| 2023 | |
| 2024 | if (insns[i].code != (BPF_LD | BPF_IMM | BPF_DW)) |
| 2025 | continue; |
| 2026 | |
| 2027 | imm = ((u64)insns[i + 1].imm << 32) | (u32)insns[i].imm; |
| 2028 | map = bpf_map_from_imm(prog, imm); |
| 2029 | if (map) { |
| 2030 | insns[i].src_reg = BPF_PSEUDO_MAP_FD; |
| 2031 | insns[i].imm = map->id; |
| 2032 | insns[i + 1].imm = 0; |
| 2033 | continue; |
| 2034 | } |
| 2035 | |
| 2036 | if (!bpf_dump_raw_ok() && |
| 2037 | imm == (unsigned long)prog->aux) { |
| 2038 | insns[i].imm = 0; |
| 2039 | insns[i + 1].imm = 0; |
| 2040 | continue; |
| 2041 | } |
| 2042 | } |
| 2043 | |
| 2044 | return insns; |
| 2045 | } |
| 2046 | |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 2047 | static int set_info_rec_size(struct bpf_prog_info *info) |
| 2048 | { |
| 2049 | /* |
| 2050 | * Ensure info.*_rec_size is the same as kernel expected size |
| 2051 | * |
| 2052 | * or |
| 2053 | * |
| 2054 | * Only allow zero *_rec_size if both _rec_size and _cnt are |
| 2055 | * zero. In this case, the kernel will set the expected |
| 2056 | * _rec_size back to the info. |
| 2057 | */ |
| 2058 | |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 2059 | if ((info->nr_func_info || info->func_info_rec_size) && |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 2060 | info->func_info_rec_size != sizeof(struct bpf_func_info)) |
| 2061 | return -EINVAL; |
| 2062 | |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 2063 | if ((info->nr_line_info || info->line_info_rec_size) && |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 2064 | info->line_info_rec_size != sizeof(struct bpf_line_info)) |
| 2065 | return -EINVAL; |
| 2066 | |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 2067 | if ((info->nr_jited_line_info || info->jited_line_info_rec_size) && |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 2068 | info->jited_line_info_rec_size != sizeof(__u64)) |
| 2069 | return -EINVAL; |
| 2070 | |
| 2071 | info->func_info_rec_size = sizeof(struct bpf_func_info); |
| 2072 | info->line_info_rec_size = sizeof(struct bpf_line_info); |
| 2073 | info->jited_line_info_rec_size = sizeof(__u64); |
| 2074 | |
| 2075 | return 0; |
| 2076 | } |
| 2077 | |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 2078 | static int bpf_prog_get_info_by_fd(struct bpf_prog *prog, |
| 2079 | const union bpf_attr *attr, |
| 2080 | union bpf_attr __user *uattr) |
| 2081 | { |
| 2082 | struct bpf_prog_info __user *uinfo = u64_to_user_ptr(attr->info.info); |
| 2083 | struct bpf_prog_info info = {}; |
| 2084 | u32 info_len = attr->info.info_len; |
| 2085 | char __user *uinsns; |
| 2086 | u32 ulen; |
| 2087 | int err; |
| 2088 | |
Martin KaFai Lau | dcab51f | 2018-05-22 15:03:31 -0700 | [diff] [blame] | 2089 | err = bpf_check_uarg_tail_zero(uinfo, sizeof(info), info_len); |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 2090 | if (err) |
| 2091 | return err; |
| 2092 | info_len = min_t(u32, sizeof(info), info_len); |
| 2093 | |
| 2094 | if (copy_from_user(&info, uinfo, info_len)) |
Daniel Borkmann | 89b0968 | 2017-07-27 21:02:46 +0200 | [diff] [blame] | 2095 | return -EFAULT; |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 2096 | |
| 2097 | info.type = prog->type; |
| 2098 | info.id = prog->aux->id; |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 2099 | info.load_time = prog->aux->load_time; |
| 2100 | info.created_by_uid = from_kuid_munged(current_user_ns(), |
| 2101 | prog->aux->user->uid); |
Jiri Olsa | b85fab0 | 2018-04-25 19:41:06 +0200 | [diff] [blame] | 2102 | info.gpl_compatible = prog->gpl_compatible; |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 2103 | |
| 2104 | memcpy(info.tag, prog->tag, sizeof(prog->tag)); |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 2105 | memcpy(info.name, prog->aux->name, sizeof(prog->aux->name)); |
| 2106 | |
| 2107 | ulen = info.nr_map_ids; |
| 2108 | info.nr_map_ids = prog->aux->used_map_cnt; |
| 2109 | ulen = min_t(u32, info.nr_map_ids, ulen); |
| 2110 | if (ulen) { |
Martin KaFai Lau | 721e08d | 2017-09-29 10:52:17 -0700 | [diff] [blame] | 2111 | u32 __user *user_map_ids = u64_to_user_ptr(info.map_ids); |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 2112 | u32 i; |
| 2113 | |
| 2114 | for (i = 0; i < ulen; i++) |
| 2115 | if (put_user(prog->aux->used_maps[i]->id, |
| 2116 | &user_map_ids[i])) |
| 2117 | return -EFAULT; |
| 2118 | } |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 2119 | |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 2120 | err = set_info_rec_size(&info); |
| 2121 | if (err) |
| 2122 | return err; |
Martin KaFai Lau | 7337224 | 2018-12-05 17:35:43 -0800 | [diff] [blame] | 2123 | |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 2124 | if (!capable(CAP_SYS_ADMIN)) { |
| 2125 | info.jited_prog_len = 0; |
| 2126 | info.xlated_prog_len = 0; |
Sandipan Das | dbecd73 | 2018-05-24 12:26:48 +0530 | [diff] [blame] | 2127 | info.nr_jited_ksyms = 0; |
Daniel Borkmann | 28c2fae | 2018-11-02 11:35:46 +0100 | [diff] [blame] | 2128 | info.nr_jited_func_lens = 0; |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 2129 | info.nr_func_info = 0; |
| 2130 | info.nr_line_info = 0; |
| 2131 | info.nr_jited_line_info = 0; |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 2132 | goto done; |
| 2133 | } |
| 2134 | |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 2135 | ulen = info.xlated_prog_len; |
Daniel Borkmann | 9975a54 | 2017-07-28 17:05:25 +0200 | [diff] [blame] | 2136 | info.xlated_prog_len = bpf_prog_insn_size(prog); |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 2137 | if (info.xlated_prog_len && ulen) { |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 2138 | struct bpf_insn *insns_sanitized; |
| 2139 | bool fault; |
| 2140 | |
| 2141 | if (prog->blinded && !bpf_dump_raw_ok()) { |
| 2142 | info.xlated_prog_insns = 0; |
| 2143 | goto done; |
| 2144 | } |
| 2145 | insns_sanitized = bpf_insn_prepare_dump(prog); |
| 2146 | if (!insns_sanitized) |
| 2147 | return -ENOMEM; |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 2148 | uinsns = u64_to_user_ptr(info.xlated_prog_insns); |
| 2149 | ulen = min_t(u32, info.xlated_prog_len, ulen); |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 2150 | fault = copy_to_user(uinsns, insns_sanitized, ulen); |
| 2151 | kfree(insns_sanitized); |
| 2152 | if (fault) |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 2153 | return -EFAULT; |
| 2154 | } |
| 2155 | |
Jakub Kicinski | 675fc27 | 2017-12-27 18:39:09 -0800 | [diff] [blame] | 2156 | if (bpf_prog_is_dev_bound(prog->aux)) { |
| 2157 | err = bpf_prog_offload_info_fill(&info, prog); |
| 2158 | if (err) |
| 2159 | return err; |
Jiong Wang | fcfb126 | 2018-01-16 16:05:19 -0800 | [diff] [blame] | 2160 | goto done; |
| 2161 | } |
| 2162 | |
| 2163 | /* NOTE: the following code is supposed to be skipped for offload. |
| 2164 | * bpf_prog_offload_info_fill() is the place to fill similar fields |
| 2165 | * for offload. |
| 2166 | */ |
| 2167 | ulen = info.jited_prog_len; |
Sandipan Das | 4d56a76 | 2018-05-24 12:26:51 +0530 | [diff] [blame] | 2168 | if (prog->aux->func_cnt) { |
| 2169 | u32 i; |
| 2170 | |
| 2171 | info.jited_prog_len = 0; |
| 2172 | for (i = 0; i < prog->aux->func_cnt; i++) |
| 2173 | info.jited_prog_len += prog->aux->func[i]->jited_len; |
| 2174 | } else { |
| 2175 | info.jited_prog_len = prog->jited_len; |
| 2176 | } |
| 2177 | |
Jiong Wang | fcfb126 | 2018-01-16 16:05:19 -0800 | [diff] [blame] | 2178 | if (info.jited_prog_len && ulen) { |
| 2179 | if (bpf_dump_raw_ok()) { |
| 2180 | uinsns = u64_to_user_ptr(info.jited_prog_insns); |
| 2181 | ulen = min_t(u32, info.jited_prog_len, ulen); |
Sandipan Das | 4d56a76 | 2018-05-24 12:26:51 +0530 | [diff] [blame] | 2182 | |
| 2183 | /* for multi-function programs, copy the JITed |
| 2184 | * instructions for all the functions |
| 2185 | */ |
| 2186 | if (prog->aux->func_cnt) { |
| 2187 | u32 len, free, i; |
| 2188 | u8 *img; |
| 2189 | |
| 2190 | free = ulen; |
| 2191 | for (i = 0; i < prog->aux->func_cnt; i++) { |
| 2192 | len = prog->aux->func[i]->jited_len; |
| 2193 | len = min_t(u32, len, free); |
| 2194 | img = (u8 *) prog->aux->func[i]->bpf_func; |
| 2195 | if (copy_to_user(uinsns, img, len)) |
| 2196 | return -EFAULT; |
| 2197 | uinsns += len; |
| 2198 | free -= len; |
| 2199 | if (!free) |
| 2200 | break; |
| 2201 | } |
| 2202 | } else { |
| 2203 | if (copy_to_user(uinsns, prog->bpf_func, ulen)) |
| 2204 | return -EFAULT; |
| 2205 | } |
Jiong Wang | fcfb126 | 2018-01-16 16:05:19 -0800 | [diff] [blame] | 2206 | } else { |
| 2207 | info.jited_prog_insns = 0; |
| 2208 | } |
Jakub Kicinski | 675fc27 | 2017-12-27 18:39:09 -0800 | [diff] [blame] | 2209 | } |
| 2210 | |
Sandipan Das | dbecd73 | 2018-05-24 12:26:48 +0530 | [diff] [blame] | 2211 | ulen = info.nr_jited_ksyms; |
Song Liu | ff1889f | 2018-11-02 10:16:17 -0700 | [diff] [blame] | 2212 | info.nr_jited_ksyms = prog->aux->func_cnt ? : 1; |
Song Liu | 7a5725d | 2018-12-10 11:17:50 -0800 | [diff] [blame] | 2213 | if (ulen) { |
Sandipan Das | dbecd73 | 2018-05-24 12:26:48 +0530 | [diff] [blame] | 2214 | if (bpf_dump_raw_ok()) { |
Song Liu | ff1889f | 2018-11-02 10:16:17 -0700 | [diff] [blame] | 2215 | unsigned long ksym_addr; |
Sandipan Das | dbecd73 | 2018-05-24 12:26:48 +0530 | [diff] [blame] | 2216 | u64 __user *user_ksyms; |
Sandipan Das | dbecd73 | 2018-05-24 12:26:48 +0530 | [diff] [blame] | 2217 | u32 i; |
| 2218 | |
| 2219 | /* copy the address of the kernel symbol |
| 2220 | * corresponding to each function |
| 2221 | */ |
| 2222 | ulen = min_t(u32, info.nr_jited_ksyms, ulen); |
| 2223 | user_ksyms = u64_to_user_ptr(info.jited_ksyms); |
Song Liu | ff1889f | 2018-11-02 10:16:17 -0700 | [diff] [blame] | 2224 | if (prog->aux->func_cnt) { |
| 2225 | for (i = 0; i < ulen; i++) { |
| 2226 | ksym_addr = (unsigned long) |
| 2227 | prog->aux->func[i]->bpf_func; |
| 2228 | if (put_user((u64) ksym_addr, |
| 2229 | &user_ksyms[i])) |
| 2230 | return -EFAULT; |
| 2231 | } |
| 2232 | } else { |
| 2233 | ksym_addr = (unsigned long) prog->bpf_func; |
| 2234 | if (put_user((u64) ksym_addr, &user_ksyms[0])) |
Sandipan Das | dbecd73 | 2018-05-24 12:26:48 +0530 | [diff] [blame] | 2235 | return -EFAULT; |
| 2236 | } |
| 2237 | } else { |
| 2238 | info.jited_ksyms = 0; |
| 2239 | } |
| 2240 | } |
| 2241 | |
Sandipan Das | 815581c | 2018-05-24 12:26:52 +0530 | [diff] [blame] | 2242 | ulen = info.nr_jited_func_lens; |
Song Liu | ff1889f | 2018-11-02 10:16:17 -0700 | [diff] [blame] | 2243 | info.nr_jited_func_lens = prog->aux->func_cnt ? : 1; |
Song Liu | 7a5725d | 2018-12-10 11:17:50 -0800 | [diff] [blame] | 2244 | if (ulen) { |
Sandipan Das | 815581c | 2018-05-24 12:26:52 +0530 | [diff] [blame] | 2245 | if (bpf_dump_raw_ok()) { |
| 2246 | u32 __user *user_lens; |
| 2247 | u32 func_len, i; |
| 2248 | |
| 2249 | /* copy the JITed image lengths for each function */ |
| 2250 | ulen = min_t(u32, info.nr_jited_func_lens, ulen); |
| 2251 | user_lens = u64_to_user_ptr(info.jited_func_lens); |
Song Liu | ff1889f | 2018-11-02 10:16:17 -0700 | [diff] [blame] | 2252 | if (prog->aux->func_cnt) { |
| 2253 | for (i = 0; i < ulen; i++) { |
| 2254 | func_len = |
| 2255 | prog->aux->func[i]->jited_len; |
| 2256 | if (put_user(func_len, &user_lens[i])) |
| 2257 | return -EFAULT; |
| 2258 | } |
| 2259 | } else { |
| 2260 | func_len = prog->jited_len; |
| 2261 | if (put_user(func_len, &user_lens[0])) |
Sandipan Das | 815581c | 2018-05-24 12:26:52 +0530 | [diff] [blame] | 2262 | return -EFAULT; |
| 2263 | } |
| 2264 | } else { |
| 2265 | info.jited_func_lens = 0; |
| 2266 | } |
| 2267 | } |
| 2268 | |
Martin KaFai Lau | 7337224 | 2018-12-05 17:35:43 -0800 | [diff] [blame] | 2269 | if (prog->aux->btf) |
Yonghong Song | 838e969 | 2018-11-19 15:29:11 -0800 | [diff] [blame] | 2270 | info.btf_id = btf_id(prog->aux->btf); |
| 2271 | |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 2272 | ulen = info.nr_func_info; |
| 2273 | info.nr_func_info = prog->aux->func_info_cnt; |
| 2274 | if (info.nr_func_info && ulen) { |
Martin KaFai Lau | 9e79416 | 2018-12-12 10:18:21 -0800 | [diff] [blame] | 2275 | char __user *user_finfo; |
Yonghong Song | 838e969 | 2018-11-19 15:29:11 -0800 | [diff] [blame] | 2276 | |
Martin KaFai Lau | 9e79416 | 2018-12-12 10:18:21 -0800 | [diff] [blame] | 2277 | user_finfo = u64_to_user_ptr(info.func_info); |
| 2278 | ulen = min_t(u32, info.nr_func_info, ulen); |
| 2279 | if (copy_to_user(user_finfo, prog->aux->func_info, |
| 2280 | info.func_info_rec_size * ulen)) |
| 2281 | return -EFAULT; |
Yonghong Song | 838e969 | 2018-11-19 15:29:11 -0800 | [diff] [blame] | 2282 | } |
| 2283 | |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 2284 | ulen = info.nr_line_info; |
| 2285 | info.nr_line_info = prog->aux->nr_linfo; |
| 2286 | if (info.nr_line_info && ulen) { |
Martin KaFai Lau | 9e79416 | 2018-12-12 10:18:21 -0800 | [diff] [blame] | 2287 | __u8 __user *user_linfo; |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 2288 | |
Martin KaFai Lau | 9e79416 | 2018-12-12 10:18:21 -0800 | [diff] [blame] | 2289 | user_linfo = u64_to_user_ptr(info.line_info); |
| 2290 | ulen = min_t(u32, info.nr_line_info, ulen); |
| 2291 | if (copy_to_user(user_linfo, prog->aux->linfo, |
| 2292 | info.line_info_rec_size * ulen)) |
| 2293 | return -EFAULT; |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 2294 | } |
| 2295 | |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 2296 | ulen = info.nr_jited_line_info; |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 2297 | if (prog->aux->jited_linfo) |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 2298 | info.nr_jited_line_info = prog->aux->nr_linfo; |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 2299 | else |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 2300 | info.nr_jited_line_info = 0; |
| 2301 | if (info.nr_jited_line_info && ulen) { |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 2302 | if (bpf_dump_raw_ok()) { |
| 2303 | __u64 __user *user_linfo; |
| 2304 | u32 i; |
| 2305 | |
| 2306 | user_linfo = u64_to_user_ptr(info.jited_line_info); |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 2307 | ulen = min_t(u32, info.nr_jited_line_info, ulen); |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 2308 | for (i = 0; i < ulen; i++) { |
| 2309 | if (put_user((__u64)(long)prog->aux->jited_linfo[i], |
| 2310 | &user_linfo[i])) |
| 2311 | return -EFAULT; |
| 2312 | } |
| 2313 | } else { |
| 2314 | info.jited_line_info = 0; |
| 2315 | } |
| 2316 | } |
| 2317 | |
Song Liu | c872bdb | 2018-12-12 09:37:46 -0800 | [diff] [blame^] | 2318 | ulen = info.nr_prog_tags; |
| 2319 | info.nr_prog_tags = prog->aux->func_cnt ? : 1; |
| 2320 | if (ulen) { |
| 2321 | __u8 __user (*user_prog_tags)[BPF_TAG_SIZE]; |
| 2322 | u32 i; |
| 2323 | |
| 2324 | user_prog_tags = u64_to_user_ptr(info.prog_tags); |
| 2325 | ulen = min_t(u32, info.nr_prog_tags, ulen); |
| 2326 | if (prog->aux->func_cnt) { |
| 2327 | for (i = 0; i < ulen; i++) { |
| 2328 | if (copy_to_user(user_prog_tags[i], |
| 2329 | prog->aux->func[i]->tag, |
| 2330 | BPF_TAG_SIZE)) |
| 2331 | return -EFAULT; |
| 2332 | } |
| 2333 | } else { |
| 2334 | if (copy_to_user(user_prog_tags[0], |
| 2335 | prog->tag, BPF_TAG_SIZE)) |
| 2336 | return -EFAULT; |
| 2337 | } |
| 2338 | } |
| 2339 | |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 2340 | done: |
| 2341 | if (copy_to_user(uinfo, &info, info_len) || |
| 2342 | put_user(info_len, &uattr->info.info_len)) |
| 2343 | return -EFAULT; |
| 2344 | |
| 2345 | return 0; |
| 2346 | } |
| 2347 | |
| 2348 | static int bpf_map_get_info_by_fd(struct bpf_map *map, |
| 2349 | const union bpf_attr *attr, |
| 2350 | union bpf_attr __user *uattr) |
| 2351 | { |
| 2352 | struct bpf_map_info __user *uinfo = u64_to_user_ptr(attr->info.info); |
| 2353 | struct bpf_map_info info = {}; |
| 2354 | u32 info_len = attr->info.info_len; |
| 2355 | int err; |
| 2356 | |
Martin KaFai Lau | dcab51f | 2018-05-22 15:03:31 -0700 | [diff] [blame] | 2357 | err = bpf_check_uarg_tail_zero(uinfo, sizeof(info), info_len); |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 2358 | if (err) |
| 2359 | return err; |
| 2360 | info_len = min_t(u32, sizeof(info), info_len); |
| 2361 | |
| 2362 | info.type = map->map_type; |
| 2363 | info.id = map->id; |
| 2364 | info.key_size = map->key_size; |
| 2365 | info.value_size = map->value_size; |
| 2366 | info.max_entries = map->max_entries; |
| 2367 | info.map_flags = map->map_flags; |
Martin KaFai Lau | ad5b177 | 2017-09-27 14:37:53 -0700 | [diff] [blame] | 2368 | memcpy(info.name, map->name, sizeof(map->name)); |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 2369 | |
Martin KaFai Lau | 78958fc | 2018-05-04 14:49:51 -0700 | [diff] [blame] | 2370 | if (map->btf) { |
| 2371 | info.btf_id = btf_id(map->btf); |
Martin KaFai Lau | 9b2cf32 | 2018-05-22 14:57:21 -0700 | [diff] [blame] | 2372 | info.btf_key_type_id = map->btf_key_type_id; |
| 2373 | info.btf_value_type_id = map->btf_value_type_id; |
Martin KaFai Lau | 78958fc | 2018-05-04 14:49:51 -0700 | [diff] [blame] | 2374 | } |
| 2375 | |
Jakub Kicinski | 52775b3 | 2018-01-17 19:13:28 -0800 | [diff] [blame] | 2376 | if (bpf_map_is_dev_bound(map)) { |
| 2377 | err = bpf_map_offload_info_fill(&info, map); |
| 2378 | if (err) |
| 2379 | return err; |
| 2380 | } |
| 2381 | |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 2382 | if (copy_to_user(uinfo, &info, info_len) || |
| 2383 | put_user(info_len, &uattr->info.info_len)) |
| 2384 | return -EFAULT; |
| 2385 | |
| 2386 | return 0; |
| 2387 | } |
| 2388 | |
Martin KaFai Lau | 62dab84 | 2018-05-04 14:49:52 -0700 | [diff] [blame] | 2389 | static int bpf_btf_get_info_by_fd(struct btf *btf, |
| 2390 | const union bpf_attr *attr, |
| 2391 | union bpf_attr __user *uattr) |
| 2392 | { |
| 2393 | struct bpf_btf_info __user *uinfo = u64_to_user_ptr(attr->info.info); |
| 2394 | u32 info_len = attr->info.info_len; |
| 2395 | int err; |
| 2396 | |
Martin KaFai Lau | dcab51f | 2018-05-22 15:03:31 -0700 | [diff] [blame] | 2397 | err = bpf_check_uarg_tail_zero(uinfo, sizeof(*uinfo), info_len); |
Martin KaFai Lau | 62dab84 | 2018-05-04 14:49:52 -0700 | [diff] [blame] | 2398 | if (err) |
| 2399 | return err; |
| 2400 | |
| 2401 | return btf_get_info_by_fd(btf, attr, uattr); |
| 2402 | } |
| 2403 | |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 2404 | #define BPF_OBJ_GET_INFO_BY_FD_LAST_FIELD info.info |
| 2405 | |
| 2406 | static int bpf_obj_get_info_by_fd(const union bpf_attr *attr, |
| 2407 | union bpf_attr __user *uattr) |
| 2408 | { |
| 2409 | int ufd = attr->info.bpf_fd; |
| 2410 | struct fd f; |
| 2411 | int err; |
| 2412 | |
| 2413 | if (CHECK_ATTR(BPF_OBJ_GET_INFO_BY_FD)) |
| 2414 | return -EINVAL; |
| 2415 | |
| 2416 | f = fdget(ufd); |
| 2417 | if (!f.file) |
| 2418 | return -EBADFD; |
| 2419 | |
| 2420 | if (f.file->f_op == &bpf_prog_fops) |
| 2421 | err = bpf_prog_get_info_by_fd(f.file->private_data, attr, |
| 2422 | uattr); |
| 2423 | else if (f.file->f_op == &bpf_map_fops) |
| 2424 | err = bpf_map_get_info_by_fd(f.file->private_data, attr, |
| 2425 | uattr); |
Martin KaFai Lau | 60197cf | 2018-04-18 15:56:02 -0700 | [diff] [blame] | 2426 | else if (f.file->f_op == &btf_fops) |
Martin KaFai Lau | 62dab84 | 2018-05-04 14:49:52 -0700 | [diff] [blame] | 2427 | err = bpf_btf_get_info_by_fd(f.file->private_data, attr, uattr); |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 2428 | else |
| 2429 | err = -EINVAL; |
| 2430 | |
| 2431 | fdput(f); |
| 2432 | return err; |
| 2433 | } |
| 2434 | |
Martin KaFai Lau | f56a653 | 2018-04-18 15:56:01 -0700 | [diff] [blame] | 2435 | #define BPF_BTF_LOAD_LAST_FIELD btf_log_level |
| 2436 | |
| 2437 | static int bpf_btf_load(const union bpf_attr *attr) |
| 2438 | { |
| 2439 | if (CHECK_ATTR(BPF_BTF_LOAD)) |
| 2440 | return -EINVAL; |
| 2441 | |
| 2442 | if (!capable(CAP_SYS_ADMIN)) |
| 2443 | return -EPERM; |
| 2444 | |
| 2445 | return btf_new_fd(attr); |
| 2446 | } |
| 2447 | |
Martin KaFai Lau | 78958fc | 2018-05-04 14:49:51 -0700 | [diff] [blame] | 2448 | #define BPF_BTF_GET_FD_BY_ID_LAST_FIELD btf_id |
| 2449 | |
| 2450 | static int bpf_btf_get_fd_by_id(const union bpf_attr *attr) |
| 2451 | { |
| 2452 | if (CHECK_ATTR(BPF_BTF_GET_FD_BY_ID)) |
| 2453 | return -EINVAL; |
| 2454 | |
| 2455 | if (!capable(CAP_SYS_ADMIN)) |
| 2456 | return -EPERM; |
| 2457 | |
| 2458 | return btf_get_fd_by_id(attr->btf_id); |
| 2459 | } |
| 2460 | |
Yonghong Song | 41bdc4b | 2018-05-24 11:21:09 -0700 | [diff] [blame] | 2461 | static int bpf_task_fd_query_copy(const union bpf_attr *attr, |
| 2462 | union bpf_attr __user *uattr, |
| 2463 | u32 prog_id, u32 fd_type, |
| 2464 | const char *buf, u64 probe_offset, |
| 2465 | u64 probe_addr) |
| 2466 | { |
| 2467 | char __user *ubuf = u64_to_user_ptr(attr->task_fd_query.buf); |
| 2468 | u32 len = buf ? strlen(buf) : 0, input_len; |
| 2469 | int err = 0; |
| 2470 | |
| 2471 | if (put_user(len, &uattr->task_fd_query.buf_len)) |
| 2472 | return -EFAULT; |
| 2473 | input_len = attr->task_fd_query.buf_len; |
| 2474 | if (input_len && ubuf) { |
| 2475 | if (!len) { |
| 2476 | /* nothing to copy, just make ubuf NULL terminated */ |
| 2477 | char zero = '\0'; |
| 2478 | |
| 2479 | if (put_user(zero, ubuf)) |
| 2480 | return -EFAULT; |
| 2481 | } else if (input_len >= len + 1) { |
| 2482 | /* ubuf can hold the string with NULL terminator */ |
| 2483 | if (copy_to_user(ubuf, buf, len + 1)) |
| 2484 | return -EFAULT; |
| 2485 | } else { |
| 2486 | /* ubuf cannot hold the string with NULL terminator, |
| 2487 | * do a partial copy with NULL terminator. |
| 2488 | */ |
| 2489 | char zero = '\0'; |
| 2490 | |
| 2491 | err = -ENOSPC; |
| 2492 | if (copy_to_user(ubuf, buf, input_len - 1)) |
| 2493 | return -EFAULT; |
| 2494 | if (put_user(zero, ubuf + input_len - 1)) |
| 2495 | return -EFAULT; |
| 2496 | } |
| 2497 | } |
| 2498 | |
| 2499 | if (put_user(prog_id, &uattr->task_fd_query.prog_id) || |
| 2500 | put_user(fd_type, &uattr->task_fd_query.fd_type) || |
| 2501 | put_user(probe_offset, &uattr->task_fd_query.probe_offset) || |
| 2502 | put_user(probe_addr, &uattr->task_fd_query.probe_addr)) |
| 2503 | return -EFAULT; |
| 2504 | |
| 2505 | return err; |
| 2506 | } |
| 2507 | |
| 2508 | #define BPF_TASK_FD_QUERY_LAST_FIELD task_fd_query.probe_addr |
| 2509 | |
| 2510 | static int bpf_task_fd_query(const union bpf_attr *attr, |
| 2511 | union bpf_attr __user *uattr) |
| 2512 | { |
| 2513 | pid_t pid = attr->task_fd_query.pid; |
| 2514 | u32 fd = attr->task_fd_query.fd; |
| 2515 | const struct perf_event *event; |
| 2516 | struct files_struct *files; |
| 2517 | struct task_struct *task; |
| 2518 | struct file *file; |
| 2519 | int err; |
| 2520 | |
| 2521 | if (CHECK_ATTR(BPF_TASK_FD_QUERY)) |
| 2522 | return -EINVAL; |
| 2523 | |
| 2524 | if (!capable(CAP_SYS_ADMIN)) |
| 2525 | return -EPERM; |
| 2526 | |
| 2527 | if (attr->task_fd_query.flags != 0) |
| 2528 | return -EINVAL; |
| 2529 | |
| 2530 | task = get_pid_task(find_vpid(pid), PIDTYPE_PID); |
| 2531 | if (!task) |
| 2532 | return -ENOENT; |
| 2533 | |
| 2534 | files = get_files_struct(task); |
| 2535 | put_task_struct(task); |
| 2536 | if (!files) |
| 2537 | return -ENOENT; |
| 2538 | |
| 2539 | err = 0; |
| 2540 | spin_lock(&files->file_lock); |
| 2541 | file = fcheck_files(files, fd); |
| 2542 | if (!file) |
| 2543 | err = -EBADF; |
| 2544 | else |
| 2545 | get_file(file); |
| 2546 | spin_unlock(&files->file_lock); |
| 2547 | put_files_struct(files); |
| 2548 | |
| 2549 | if (err) |
| 2550 | goto out; |
| 2551 | |
| 2552 | if (file->f_op == &bpf_raw_tp_fops) { |
| 2553 | struct bpf_raw_tracepoint *raw_tp = file->private_data; |
| 2554 | struct bpf_raw_event_map *btp = raw_tp->btp; |
| 2555 | |
| 2556 | err = bpf_task_fd_query_copy(attr, uattr, |
| 2557 | raw_tp->prog->aux->id, |
| 2558 | BPF_FD_TYPE_RAW_TRACEPOINT, |
| 2559 | btp->tp->name, 0, 0); |
| 2560 | goto put_file; |
| 2561 | } |
| 2562 | |
| 2563 | event = perf_get_event(file); |
| 2564 | if (!IS_ERR(event)) { |
| 2565 | u64 probe_offset, probe_addr; |
| 2566 | u32 prog_id, fd_type; |
| 2567 | const char *buf; |
| 2568 | |
| 2569 | err = bpf_get_perf_event_info(event, &prog_id, &fd_type, |
| 2570 | &buf, &probe_offset, |
| 2571 | &probe_addr); |
| 2572 | if (!err) |
| 2573 | err = bpf_task_fd_query_copy(attr, uattr, prog_id, |
| 2574 | fd_type, buf, |
| 2575 | probe_offset, |
| 2576 | probe_addr); |
| 2577 | goto put_file; |
| 2578 | } |
| 2579 | |
| 2580 | err = -ENOTSUPP; |
| 2581 | put_file: |
| 2582 | fput(file); |
| 2583 | out: |
| 2584 | return err; |
| 2585 | } |
| 2586 | |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 2587 | SYSCALL_DEFINE3(bpf, int, cmd, union bpf_attr __user *, uattr, unsigned int, size) |
| 2588 | { |
| 2589 | union bpf_attr attr = {}; |
| 2590 | int err; |
| 2591 | |
Chenbo Feng | 0fa4fe8 | 2018-03-19 17:57:27 -0700 | [diff] [blame] | 2592 | if (sysctl_unprivileged_bpf_disabled && !capable(CAP_SYS_ADMIN)) |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 2593 | return -EPERM; |
| 2594 | |
Martin KaFai Lau | dcab51f | 2018-05-22 15:03:31 -0700 | [diff] [blame] | 2595 | err = bpf_check_uarg_tail_zero(uattr, sizeof(attr), size); |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 2596 | if (err) |
| 2597 | return err; |
| 2598 | size = min_t(u32, size, sizeof(attr)); |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 2599 | |
| 2600 | /* copy attributes from user space, may be less than sizeof(bpf_attr) */ |
| 2601 | if (copy_from_user(&attr, uattr, size) != 0) |
| 2602 | return -EFAULT; |
| 2603 | |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 2604 | err = security_bpf(cmd, &attr, size); |
| 2605 | if (err < 0) |
| 2606 | return err; |
| 2607 | |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 2608 | switch (cmd) { |
| 2609 | case BPF_MAP_CREATE: |
| 2610 | err = map_create(&attr); |
| 2611 | break; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 2612 | case BPF_MAP_LOOKUP_ELEM: |
| 2613 | err = map_lookup_elem(&attr); |
| 2614 | break; |
| 2615 | case BPF_MAP_UPDATE_ELEM: |
| 2616 | err = map_update_elem(&attr); |
| 2617 | break; |
| 2618 | case BPF_MAP_DELETE_ELEM: |
| 2619 | err = map_delete_elem(&attr); |
| 2620 | break; |
| 2621 | case BPF_MAP_GET_NEXT_KEY: |
| 2622 | err = map_get_next_key(&attr); |
| 2623 | break; |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2624 | case BPF_PROG_LOAD: |
Yonghong Song | 838e969 | 2018-11-19 15:29:11 -0800 | [diff] [blame] | 2625 | err = bpf_prog_load(&attr, uattr); |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2626 | break; |
Daniel Borkmann | b219775 | 2015-10-29 14:58:09 +0100 | [diff] [blame] | 2627 | case BPF_OBJ_PIN: |
| 2628 | err = bpf_obj_pin(&attr); |
| 2629 | break; |
| 2630 | case BPF_OBJ_GET: |
| 2631 | err = bpf_obj_get(&attr); |
| 2632 | break; |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 2633 | case BPF_PROG_ATTACH: |
| 2634 | err = bpf_prog_attach(&attr); |
| 2635 | break; |
| 2636 | case BPF_PROG_DETACH: |
| 2637 | err = bpf_prog_detach(&attr); |
| 2638 | break; |
Alexei Starovoitov | 468e2f6 | 2017-10-02 22:50:22 -0700 | [diff] [blame] | 2639 | case BPF_PROG_QUERY: |
| 2640 | err = bpf_prog_query(&attr, uattr); |
| 2641 | break; |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 2642 | case BPF_PROG_TEST_RUN: |
| 2643 | err = bpf_prog_test_run(&attr, uattr); |
| 2644 | break; |
Martin KaFai Lau | 34ad558 | 2017-06-05 12:15:48 -0700 | [diff] [blame] | 2645 | case BPF_PROG_GET_NEXT_ID: |
| 2646 | err = bpf_obj_get_next_id(&attr, uattr, |
| 2647 | &prog_idr, &prog_idr_lock); |
| 2648 | break; |
| 2649 | case BPF_MAP_GET_NEXT_ID: |
| 2650 | err = bpf_obj_get_next_id(&attr, uattr, |
| 2651 | &map_idr, &map_idr_lock); |
| 2652 | break; |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 2653 | case BPF_PROG_GET_FD_BY_ID: |
| 2654 | err = bpf_prog_get_fd_by_id(&attr); |
| 2655 | break; |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 2656 | case BPF_MAP_GET_FD_BY_ID: |
| 2657 | err = bpf_map_get_fd_by_id(&attr); |
| 2658 | break; |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 2659 | case BPF_OBJ_GET_INFO_BY_FD: |
| 2660 | err = bpf_obj_get_info_by_fd(&attr, uattr); |
| 2661 | break; |
Alexei Starovoitov | c4f6699 | 2018-03-28 12:05:37 -0700 | [diff] [blame] | 2662 | case BPF_RAW_TRACEPOINT_OPEN: |
| 2663 | err = bpf_raw_tracepoint_open(&attr); |
| 2664 | break; |
Martin KaFai Lau | f56a653 | 2018-04-18 15:56:01 -0700 | [diff] [blame] | 2665 | case BPF_BTF_LOAD: |
| 2666 | err = bpf_btf_load(&attr); |
| 2667 | break; |
Martin KaFai Lau | 78958fc | 2018-05-04 14:49:51 -0700 | [diff] [blame] | 2668 | case BPF_BTF_GET_FD_BY_ID: |
| 2669 | err = bpf_btf_get_fd_by_id(&attr); |
| 2670 | break; |
Yonghong Song | 41bdc4b | 2018-05-24 11:21:09 -0700 | [diff] [blame] | 2671 | case BPF_TASK_FD_QUERY: |
| 2672 | err = bpf_task_fd_query(&attr, uattr); |
| 2673 | break; |
Mauricio Vasquez B | bd513cd | 2018-10-18 15:16:30 +0200 | [diff] [blame] | 2674 | case BPF_MAP_LOOKUP_AND_DELETE_ELEM: |
| 2675 | err = map_lookup_and_delete_elem(&attr); |
| 2676 | break; |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 2677 | default: |
| 2678 | err = -EINVAL; |
| 2679 | break; |
| 2680 | } |
| 2681 | |
| 2682 | return err; |
| 2683 | } |