Thomas Gleixner | 5b497af | 2019-05-29 07:18:09 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 2 | /* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 3 | */ |
| 4 | #include <linux/bpf.h> |
Daniel Borkmann | a67edbf | 2017-01-25 02:28:18 +0100 | [diff] [blame] | 5 | #include <linux/bpf_trace.h> |
Sean Young | f4364dc | 2018-05-27 12:24:09 +0100 | [diff] [blame] | 6 | #include <linux/bpf_lirc.h> |
Toke Høiland-Jørgensen | 4a1e7c0 | 2020-09-29 14:45:51 +0200 | [diff] [blame] | 7 | #include <linux/bpf_verifier.h> |
Martin KaFai Lau | f56a653 | 2018-04-18 15:56:01 -0700 | [diff] [blame] | 8 | #include <linux/btf.h> |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 9 | #include <linux/syscalls.h> |
| 10 | #include <linux/slab.h> |
Ingo Molnar | 3f07c01 | 2017-02-08 18:51:30 +0100 | [diff] [blame] | 11 | #include <linux/sched/signal.h> |
Daniel Borkmann | d407bd2 | 2017-01-18 15:14:17 +0100 | [diff] [blame] | 12 | #include <linux/vmalloc.h> |
| 13 | #include <linux/mmzone.h> |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 14 | #include <linux/anon_inodes.h> |
Yonghong Song | 41bdc4b | 2018-05-24 11:21:09 -0700 | [diff] [blame] | 15 | #include <linux/fdtable.h> |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 16 | #include <linux/file.h> |
Yonghong Song | 41bdc4b | 2018-05-24 11:21:09 -0700 | [diff] [blame] | 17 | #include <linux/fs.h> |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 18 | #include <linux/license.h> |
| 19 | #include <linux/filter.h> |
Mickaël Salaün | 535e7b4b | 2016-11-13 19:44:03 +0100 | [diff] [blame] | 20 | #include <linux/kernel.h> |
Martin KaFai Lau | dc4bb0e | 2017-06-05 12:15:46 -0700 | [diff] [blame] | 21 | #include <linux/idr.h> |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 22 | #include <linux/cred.h> |
| 23 | #include <linux/timekeeping.h> |
| 24 | #include <linux/ctype.h> |
Mark Rutland | 9ef09e3 | 2018-05-03 17:04:59 +0100 | [diff] [blame] | 25 | #include <linux/nospec.h> |
Daniel Borkmann | bae141f | 2019-12-06 22:49:34 +0100 | [diff] [blame] | 26 | #include <linux/audit.h> |
Alexei Starovoitov | ccfe29e | 2019-10-15 20:24:58 -0700 | [diff] [blame] | 27 | #include <uapi/linux/btf.h> |
Mike Rapoport | ca5999f | 2020-06-08 21:32:38 -0700 | [diff] [blame] | 28 | #include <linux/pgtable.h> |
KP Singh | 9e4e01d | 2020-03-29 01:43:52 +0100 | [diff] [blame] | 29 | #include <linux/bpf_lsm.h> |
Andrii Nakryiko | 457f443 | 2020-05-29 00:54:20 -0700 | [diff] [blame] | 30 | #include <linux/poll.h> |
Jakub Sitnicki | a3fd7ce | 2020-05-31 10:28:36 +0200 | [diff] [blame] | 31 | #include <linux/bpf-netns.h> |
Alexei Starovoitov | 1e6c62a | 2020-08-27 15:01:11 -0700 | [diff] [blame] | 32 | #include <linux/rcupdate_trace.h> |
Roman Gushchin | 48edc1f | 2020-12-01 13:58:32 -0800 | [diff] [blame] | 33 | #include <linux/memcontrol.h> |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 34 | |
Daniel Borkmann | da765a2 | 2019-11-22 21:07:58 +0100 | [diff] [blame] | 35 | #define IS_FD_ARRAY(map) ((map)->map_type == BPF_MAP_TYPE_PERF_EVENT_ARRAY || \ |
| 36 | (map)->map_type == BPF_MAP_TYPE_CGROUP_ARRAY || \ |
| 37 | (map)->map_type == BPF_MAP_TYPE_ARRAY_OF_MAPS) |
| 38 | #define IS_FD_PROG_ARRAY(map) ((map)->map_type == BPF_MAP_TYPE_PROG_ARRAY) |
Martin KaFai Lau | 14dc6f0 | 2017-06-27 23:08:34 -0700 | [diff] [blame] | 39 | #define IS_FD_HASH(map) ((map)->map_type == BPF_MAP_TYPE_HASH_OF_MAPS) |
Daniel Borkmann | da765a2 | 2019-11-22 21:07:58 +0100 | [diff] [blame] | 40 | #define IS_FD_MAP(map) (IS_FD_ARRAY(map) || IS_FD_PROG_ARRAY(map) || \ |
| 41 | IS_FD_HASH(map)) |
Martin KaFai Lau | 14dc6f0 | 2017-06-27 23:08:34 -0700 | [diff] [blame] | 42 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 43 | #define BPF_OBJ_FLAG_MASK (BPF_F_RDONLY | BPF_F_WRONLY) |
| 44 | |
Alexei Starovoitov | b121d1e | 2016-03-07 21:57:13 -0800 | [diff] [blame] | 45 | DEFINE_PER_CPU(int, bpf_prog_active); |
Martin KaFai Lau | dc4bb0e | 2017-06-05 12:15:46 -0700 | [diff] [blame] | 46 | static DEFINE_IDR(prog_idr); |
| 47 | static DEFINE_SPINLOCK(prog_idr_lock); |
Martin KaFai Lau | f3f1c05 | 2017-06-05 12:15:47 -0700 | [diff] [blame] | 48 | static DEFINE_IDR(map_idr); |
| 49 | static DEFINE_SPINLOCK(map_idr_lock); |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 50 | static DEFINE_IDR(link_idr); |
| 51 | static DEFINE_SPINLOCK(link_idr_lock); |
Alexei Starovoitov | b121d1e | 2016-03-07 21:57:13 -0800 | [diff] [blame] | 52 | |
Daniel Borkmann | 08389d8 | 2021-05-11 22:35:17 +0200 | [diff] [blame] | 53 | int sysctl_unprivileged_bpf_disabled __read_mostly = |
| 54 | IS_BUILTIN(CONFIG_BPF_UNPRIV_DEFAULT_OFF) ? 2 : 0; |
Alexei Starovoitov | 1be7f75 | 2015-10-07 22:23:21 -0700 | [diff] [blame] | 55 | |
Johannes Berg | 40077e0 | 2017-04-11 15:34:58 +0200 | [diff] [blame] | 56 | static const struct bpf_map_ops * const bpf_map_types[] = { |
Alexei Starovoitov | 91cc1a9 | 2019-11-14 10:57:15 -0800 | [diff] [blame] | 57 | #define BPF_PROG_TYPE(_id, _name, prog_ctx_type, kern_ctx_type) |
Johannes Berg | 40077e0 | 2017-04-11 15:34:58 +0200 | [diff] [blame] | 58 | #define BPF_MAP_TYPE(_id, _ops) \ |
| 59 | [_id] = &_ops, |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 60 | #define BPF_LINK_TYPE(_id, _name) |
Johannes Berg | 40077e0 | 2017-04-11 15:34:58 +0200 | [diff] [blame] | 61 | #include <linux/bpf_types.h> |
| 62 | #undef BPF_PROG_TYPE |
| 63 | #undef BPF_MAP_TYPE |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 64 | #undef BPF_LINK_TYPE |
Johannes Berg | 40077e0 | 2017-04-11 15:34:58 +0200 | [diff] [blame] | 65 | }; |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 66 | |
Mickaël Salaün | 752ba56 | 2017-08-07 20:45:20 +0200 | [diff] [blame] | 67 | /* |
| 68 | * If we're handed a bigger struct than we know of, ensure all the unknown bits |
| 69 | * are 0 - i.e. new user-space does not rely on any kernel feature extensions |
| 70 | * we don't know about yet. |
| 71 | * |
| 72 | * There is a ToCToU between this function call and the following |
| 73 | * copy_from_user() call. However, this is not a concern since this function is |
| 74 | * meant to be a future-proofing of bits. |
| 75 | */ |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 76 | int bpf_check_uarg_tail_zero(bpfptr_t uaddr, |
Martin KaFai Lau | dcab51f | 2018-05-22 15:03:31 -0700 | [diff] [blame] | 77 | size_t expected_size, |
| 78 | size_t actual_size) |
Mickaël Salaün | 58291a7 | 2017-08-07 20:45:19 +0200 | [diff] [blame] | 79 | { |
Al Viro | b7e4b65 | 2020-05-08 00:16:31 -0400 | [diff] [blame] | 80 | int res; |
Mickaël Salaün | 58291a7 | 2017-08-07 20:45:19 +0200 | [diff] [blame] | 81 | |
Mickaël Salaün | 752ba56 | 2017-08-07 20:45:20 +0200 | [diff] [blame] | 82 | if (unlikely(actual_size > PAGE_SIZE)) /* silly large */ |
| 83 | return -E2BIG; |
| 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 | |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 88 | if (uaddr.is_kernel) |
| 89 | res = memchr_inv(uaddr.kernel + expected_size, 0, |
| 90 | actual_size - expected_size) == NULL; |
| 91 | else |
| 92 | res = check_zeroed_user(uaddr.user + expected_size, |
| 93 | actual_size - expected_size); |
Al Viro | b7e4b65 | 2020-05-08 00:16:31 -0400 | [diff] [blame] | 94 | if (res < 0) |
| 95 | return res; |
| 96 | return res ? 0 : -E2BIG; |
Mickaël Salaün | 58291a7 | 2017-08-07 20:45:19 +0200 | [diff] [blame] | 97 | } |
| 98 | |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 99 | const struct bpf_map_ops bpf_map_offload_ops = { |
Martin KaFai Lau | f4d0525 | 2020-08-27 18:18:06 -0700 | [diff] [blame] | 100 | .map_meta_equal = bpf_map_meta_equal, |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 101 | .map_alloc = bpf_map_offload_map_alloc, |
| 102 | .map_free = bpf_map_offload_map_free, |
Daniel Borkmann | e8d2bec | 2018-08-12 01:59:17 +0200 | [diff] [blame] | 103 | .map_check_btf = map_check_no_btf, |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 104 | }; |
| 105 | |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 106 | static struct bpf_map *find_and_alloc_map(union bpf_attr *attr) |
| 107 | { |
Jakub Kicinski | 1110f3a | 2018-01-11 20:29:03 -0800 | [diff] [blame] | 108 | const struct bpf_map_ops *ops; |
Mark Rutland | 9ef09e3 | 2018-05-03 17:04:59 +0100 | [diff] [blame] | 109 | u32 type = attr->map_type; |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 110 | struct bpf_map *map; |
Jakub Kicinski | 1110f3a | 2018-01-11 20:29:03 -0800 | [diff] [blame] | 111 | int err; |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 112 | |
Mark Rutland | 9ef09e3 | 2018-05-03 17:04:59 +0100 | [diff] [blame] | 113 | if (type >= ARRAY_SIZE(bpf_map_types)) |
Jakub Kicinski | 1110f3a | 2018-01-11 20:29:03 -0800 | [diff] [blame] | 114 | return ERR_PTR(-EINVAL); |
Mark Rutland | 9ef09e3 | 2018-05-03 17:04:59 +0100 | [diff] [blame] | 115 | type = array_index_nospec(type, ARRAY_SIZE(bpf_map_types)); |
| 116 | ops = bpf_map_types[type]; |
Jakub Kicinski | 1110f3a | 2018-01-11 20:29:03 -0800 | [diff] [blame] | 117 | if (!ops) |
Johannes Berg | 40077e0 | 2017-04-11 15:34:58 +0200 | [diff] [blame] | 118 | return ERR_PTR(-EINVAL); |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 119 | |
Jakub Kicinski | 1110f3a | 2018-01-11 20:29:03 -0800 | [diff] [blame] | 120 | if (ops->map_alloc_check) { |
| 121 | err = ops->map_alloc_check(attr); |
| 122 | if (err) |
| 123 | return ERR_PTR(err); |
| 124 | } |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 125 | if (attr->map_ifindex) |
| 126 | ops = &bpf_map_offload_ops; |
Jakub Kicinski | 1110f3a | 2018-01-11 20:29:03 -0800 | [diff] [blame] | 127 | map = ops->map_alloc(attr); |
Johannes Berg | 40077e0 | 2017-04-11 15:34:58 +0200 | [diff] [blame] | 128 | if (IS_ERR(map)) |
| 129 | return map; |
Jakub Kicinski | 1110f3a | 2018-01-11 20:29:03 -0800 | [diff] [blame] | 130 | map->ops = ops; |
Mark Rutland | 9ef09e3 | 2018-05-03 17:04:59 +0100 | [diff] [blame] | 131 | map->map_type = type; |
Johannes Berg | 40077e0 | 2017-04-11 15:34:58 +0200 | [diff] [blame] | 132 | return map; |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 133 | } |
| 134 | |
Roman Gushchin | 80ee81e | 2020-12-01 13:58:58 -0800 | [diff] [blame] | 135 | static u32 bpf_map_value_size(const struct bpf_map *map) |
Brian Vazquez | 15c14a3 | 2020-01-15 10:43:00 -0800 | [diff] [blame] | 136 | { |
| 137 | if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH || |
| 138 | map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH || |
| 139 | map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY || |
| 140 | map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) |
| 141 | return round_up(map->value_size, 8) * num_possible_cpus(); |
| 142 | else if (IS_FD_MAP(map)) |
| 143 | return sizeof(u32); |
| 144 | else |
| 145 | return map->value_size; |
| 146 | } |
| 147 | |
| 148 | static void maybe_wait_bpf_programs(struct bpf_map *map) |
| 149 | { |
| 150 | /* Wait for any running BPF programs to complete so that |
| 151 | * userspace, when we return to it, knows that all programs |
| 152 | * that could be running use the new map value. |
| 153 | */ |
| 154 | if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS || |
| 155 | map->map_type == BPF_MAP_TYPE_ARRAY_OF_MAPS) |
| 156 | synchronize_rcu(); |
| 157 | } |
| 158 | |
| 159 | static int bpf_map_update_value(struct bpf_map *map, struct fd f, void *key, |
| 160 | void *value, __u64 flags) |
| 161 | { |
| 162 | int err; |
| 163 | |
| 164 | /* Need to create a kthread, thus must support schedule */ |
| 165 | if (bpf_map_is_dev_bound(map)) { |
| 166 | return bpf_map_offload_update_elem(map, key, value, flags); |
| 167 | } else if (map->map_type == BPF_MAP_TYPE_CPUMAP || |
Brian Vazquez | 15c14a3 | 2020-01-15 10:43:00 -0800 | [diff] [blame] | 168 | map->map_type == BPF_MAP_TYPE_STRUCT_OPS) { |
| 169 | return map->ops->map_update_elem(map, key, value, flags); |
Lorenz Bauer | 13b79d3 | 2020-08-21 11:29:45 +0100 | [diff] [blame] | 170 | } else if (map->map_type == BPF_MAP_TYPE_SOCKHASH || |
| 171 | map->map_type == BPF_MAP_TYPE_SOCKMAP) { |
| 172 | return sock_map_update_elem_sys(map, key, value, flags); |
Brian Vazquez | 15c14a3 | 2020-01-15 10:43:00 -0800 | [diff] [blame] | 173 | } else if (IS_FD_PROG_ARRAY(map)) { |
| 174 | return bpf_fd_array_map_update_elem(map, f.file, key, value, |
| 175 | flags); |
| 176 | } |
| 177 | |
Thomas Gleixner | b6e5dae | 2020-02-24 15:01:49 +0100 | [diff] [blame] | 178 | bpf_disable_instrumentation(); |
Brian Vazquez | 15c14a3 | 2020-01-15 10:43:00 -0800 | [diff] [blame] | 179 | if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH || |
| 180 | map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) { |
| 181 | err = bpf_percpu_hash_update(map, key, value, flags); |
| 182 | } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) { |
| 183 | err = bpf_percpu_array_update(map, key, value, flags); |
| 184 | } else if (map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) { |
| 185 | err = bpf_percpu_cgroup_storage_update(map, key, value, |
| 186 | flags); |
| 187 | } else if (IS_FD_ARRAY(map)) { |
| 188 | rcu_read_lock(); |
| 189 | err = bpf_fd_array_map_update_elem(map, f.file, key, value, |
| 190 | flags); |
| 191 | rcu_read_unlock(); |
| 192 | } else if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS) { |
| 193 | rcu_read_lock(); |
| 194 | err = bpf_fd_htab_map_update_elem(map, f.file, key, value, |
| 195 | flags); |
| 196 | rcu_read_unlock(); |
| 197 | } else if (map->map_type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY) { |
| 198 | /* rcu_read_lock() is not needed */ |
| 199 | err = bpf_fd_reuseport_array_update_elem(map, key, value, |
| 200 | flags); |
| 201 | } else if (map->map_type == BPF_MAP_TYPE_QUEUE || |
| 202 | map->map_type == BPF_MAP_TYPE_STACK) { |
| 203 | err = map->ops->map_push_elem(map, value, flags); |
| 204 | } else { |
| 205 | rcu_read_lock(); |
| 206 | err = map->ops->map_update_elem(map, key, value, flags); |
| 207 | rcu_read_unlock(); |
| 208 | } |
Thomas Gleixner | b6e5dae | 2020-02-24 15:01:49 +0100 | [diff] [blame] | 209 | bpf_enable_instrumentation(); |
Brian Vazquez | 15c14a3 | 2020-01-15 10:43:00 -0800 | [diff] [blame] | 210 | maybe_wait_bpf_programs(map); |
| 211 | |
| 212 | return err; |
| 213 | } |
| 214 | |
| 215 | static int bpf_map_copy_value(struct bpf_map *map, void *key, void *value, |
| 216 | __u64 flags) |
| 217 | { |
| 218 | void *ptr; |
| 219 | int err; |
| 220 | |
Brian Vazquez | cb4d03a | 2020-01-15 10:43:01 -0800 | [diff] [blame] | 221 | if (bpf_map_is_dev_bound(map)) |
| 222 | return bpf_map_offload_lookup_elem(map, key, value); |
Brian Vazquez | 15c14a3 | 2020-01-15 10:43:00 -0800 | [diff] [blame] | 223 | |
Thomas Gleixner | b6e5dae | 2020-02-24 15:01:49 +0100 | [diff] [blame] | 224 | bpf_disable_instrumentation(); |
Brian Vazquez | 15c14a3 | 2020-01-15 10:43:00 -0800 | [diff] [blame] | 225 | if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH || |
| 226 | map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) { |
| 227 | err = bpf_percpu_hash_copy(map, key, value); |
| 228 | } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) { |
| 229 | err = bpf_percpu_array_copy(map, key, value); |
| 230 | } else if (map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) { |
| 231 | err = bpf_percpu_cgroup_storage_copy(map, key, value); |
| 232 | } else if (map->map_type == BPF_MAP_TYPE_STACK_TRACE) { |
| 233 | err = bpf_stackmap_copy(map, key, value); |
| 234 | } else if (IS_FD_ARRAY(map) || IS_FD_PROG_ARRAY(map)) { |
| 235 | err = bpf_fd_array_map_lookup_elem(map, key, value); |
| 236 | } else if (IS_FD_HASH(map)) { |
| 237 | err = bpf_fd_htab_map_lookup_elem(map, key, value); |
| 238 | } else if (map->map_type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY) { |
| 239 | err = bpf_fd_reuseport_array_lookup_elem(map, key, value); |
| 240 | } else if (map->map_type == BPF_MAP_TYPE_QUEUE || |
| 241 | map->map_type == BPF_MAP_TYPE_STACK) { |
| 242 | err = map->ops->map_peek_elem(map, value); |
| 243 | } else if (map->map_type == BPF_MAP_TYPE_STRUCT_OPS) { |
| 244 | /* struct_ops map requires directly updating "value" */ |
| 245 | err = bpf_struct_ops_map_sys_lookup_elem(map, key, value); |
| 246 | } else { |
| 247 | rcu_read_lock(); |
| 248 | if (map->ops->map_lookup_elem_sys_only) |
| 249 | ptr = map->ops->map_lookup_elem_sys_only(map, key); |
| 250 | else |
| 251 | ptr = map->ops->map_lookup_elem(map, key); |
| 252 | if (IS_ERR(ptr)) { |
| 253 | err = PTR_ERR(ptr); |
| 254 | } else if (!ptr) { |
| 255 | err = -ENOENT; |
| 256 | } else { |
| 257 | err = 0; |
| 258 | if (flags & BPF_F_LOCK) |
| 259 | /* lock 'ptr' and copy everything but lock */ |
| 260 | copy_map_value_locked(map, value, ptr, true); |
| 261 | else |
| 262 | copy_map_value(map, value, ptr); |
| 263 | /* mask lock, since value wasn't zero inited */ |
| 264 | check_and_init_map_lock(map, value); |
| 265 | } |
| 266 | rcu_read_unlock(); |
| 267 | } |
| 268 | |
Thomas Gleixner | b6e5dae | 2020-02-24 15:01:49 +0100 | [diff] [blame] | 269 | bpf_enable_instrumentation(); |
Brian Vazquez | 15c14a3 | 2020-01-15 10:43:00 -0800 | [diff] [blame] | 270 | maybe_wait_bpf_programs(map); |
| 271 | |
| 272 | return err; |
| 273 | } |
| 274 | |
Roman Gushchin | d5299b6 | 2020-12-01 13:58:33 -0800 | [diff] [blame] | 275 | /* Please, do not use this function outside from the map creation path |
| 276 | * (e.g. in map update path) without taking care of setting the active |
| 277 | * memory cgroup (see at bpf_map_kmalloc_node() for example). |
| 278 | */ |
Daniel Borkmann | 196e8ca | 2019-11-20 23:04:44 +0100 | [diff] [blame] | 279 | static void *__bpf_map_area_alloc(u64 size, int numa_node, bool mmapable) |
Daniel Borkmann | d407bd2 | 2017-01-18 15:14:17 +0100 | [diff] [blame] | 280 | { |
Martynas Pumputis | f01a7db | 2019-03-18 16:10:26 +0100 | [diff] [blame] | 281 | /* We really just want to fail instead of triggering OOM killer |
| 282 | * under memory pressure, therefore we set __GFP_NORETRY to kmalloc, |
| 283 | * which is used for lower order allocation requests. |
| 284 | * |
| 285 | * It has been observed that higher order allocation requests done by |
| 286 | * vmalloc with __GFP_NORETRY being set might fail due to not trying |
| 287 | * to reclaim memory from the page cache, thus we set |
| 288 | * __GFP_RETRY_MAYFAIL to avoid such situations. |
Daniel Borkmann | d407bd2 | 2017-01-18 15:14:17 +0100 | [diff] [blame] | 289 | */ |
Martynas Pumputis | f01a7db | 2019-03-18 16:10:26 +0100 | [diff] [blame] | 290 | |
Roman Gushchin | d5299b6 | 2020-12-01 13:58:33 -0800 | [diff] [blame] | 291 | const gfp_t gfp = __GFP_NOWARN | __GFP_ZERO | __GFP_ACCOUNT; |
Christoph Hellwig | 041de93 | 2020-06-01 21:52:02 -0700 | [diff] [blame] | 292 | unsigned int flags = 0; |
| 293 | unsigned long align = 1; |
Daniel Borkmann | d407bd2 | 2017-01-18 15:14:17 +0100 | [diff] [blame] | 294 | void *area; |
| 295 | |
Daniel Borkmann | 196e8ca | 2019-11-20 23:04:44 +0100 | [diff] [blame] | 296 | if (size >= SIZE_MAX) |
| 297 | return NULL; |
| 298 | |
Andrii Nakryiko | fc97022 | 2019-11-17 09:28:04 -0800 | [diff] [blame] | 299 | /* kmalloc()'ed memory can't be mmap()'ed */ |
Christoph Hellwig | 041de93 | 2020-06-01 21:52:02 -0700 | [diff] [blame] | 300 | if (mmapable) { |
| 301 | BUG_ON(!PAGE_ALIGNED(size)); |
| 302 | align = SHMLBA; |
| 303 | flags = VM_USERMAP; |
| 304 | } else if (size <= (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER)) { |
| 305 | area = kmalloc_node(size, gfp | GFP_USER | __GFP_NORETRY, |
Martynas Pumputis | f01a7db | 2019-03-18 16:10:26 +0100 | [diff] [blame] | 306 | numa_node); |
Daniel Borkmann | d407bd2 | 2017-01-18 15:14:17 +0100 | [diff] [blame] | 307 | if (area != NULL) |
| 308 | return area; |
| 309 | } |
Christoph Hellwig | 041de93 | 2020-06-01 21:52:02 -0700 | [diff] [blame] | 310 | |
| 311 | return __vmalloc_node_range(size, align, VMALLOC_START, VMALLOC_END, |
| 312 | gfp | GFP_KERNEL | __GFP_RETRY_MAYFAIL, PAGE_KERNEL, |
| 313 | flags, numa_node, __builtin_return_address(0)); |
Daniel Borkmann | d407bd2 | 2017-01-18 15:14:17 +0100 | [diff] [blame] | 314 | } |
| 315 | |
Daniel Borkmann | 196e8ca | 2019-11-20 23:04:44 +0100 | [diff] [blame] | 316 | void *bpf_map_area_alloc(u64 size, int numa_node) |
Andrii Nakryiko | fc97022 | 2019-11-17 09:28:04 -0800 | [diff] [blame] | 317 | { |
| 318 | return __bpf_map_area_alloc(size, numa_node, false); |
| 319 | } |
| 320 | |
Daniel Borkmann | 196e8ca | 2019-11-20 23:04:44 +0100 | [diff] [blame] | 321 | void *bpf_map_area_mmapable_alloc(u64 size, int numa_node) |
Andrii Nakryiko | fc97022 | 2019-11-17 09:28:04 -0800 | [diff] [blame] | 322 | { |
| 323 | return __bpf_map_area_alloc(size, numa_node, true); |
| 324 | } |
| 325 | |
Daniel Borkmann | d407bd2 | 2017-01-18 15:14:17 +0100 | [diff] [blame] | 326 | void bpf_map_area_free(void *area) |
| 327 | { |
| 328 | kvfree(area); |
| 329 | } |
| 330 | |
Daniel Borkmann | be70bcd | 2019-04-09 23:20:04 +0200 | [diff] [blame] | 331 | static u32 bpf_map_flags_retain_permanent(u32 flags) |
| 332 | { |
| 333 | /* Some map creation flags are not tied to the map object but |
| 334 | * rather to the map fd instead, so they have no meaning upon |
| 335 | * map object inspection since multiple file descriptors with |
| 336 | * different (access) properties can exist here. Thus, given |
| 337 | * this has zero meaning for the map itself, lets clear these |
| 338 | * from here. |
| 339 | */ |
| 340 | return flags & ~(BPF_F_RDONLY | BPF_F_WRONLY); |
| 341 | } |
| 342 | |
Jakub Kicinski | bd47564 | 2018-01-11 20:29:06 -0800 | [diff] [blame] | 343 | void bpf_map_init_from_attr(struct bpf_map *map, union bpf_attr *attr) |
| 344 | { |
| 345 | map->map_type = attr->map_type; |
| 346 | map->key_size = attr->key_size; |
| 347 | map->value_size = attr->value_size; |
| 348 | map->max_entries = attr->max_entries; |
Daniel Borkmann | be70bcd | 2019-04-09 23:20:04 +0200 | [diff] [blame] | 349 | map->map_flags = bpf_map_flags_retain_permanent(attr->map_flags); |
Jakub Kicinski | bd47564 | 2018-01-11 20:29:06 -0800 | [diff] [blame] | 350 | map->numa_node = bpf_map_attr_numa_node(attr); |
| 351 | } |
| 352 | |
Martin KaFai Lau | f3f1c05 | 2017-06-05 12:15:47 -0700 | [diff] [blame] | 353 | static int bpf_map_alloc_id(struct bpf_map *map) |
| 354 | { |
| 355 | int id; |
| 356 | |
Shaohua Li | b76354c | 2018-03-27 11:53:21 -0700 | [diff] [blame] | 357 | idr_preload(GFP_KERNEL); |
Martin KaFai Lau | f3f1c05 | 2017-06-05 12:15:47 -0700 | [diff] [blame] | 358 | spin_lock_bh(&map_idr_lock); |
| 359 | id = idr_alloc_cyclic(&map_idr, map, 1, INT_MAX, GFP_ATOMIC); |
| 360 | if (id > 0) |
| 361 | map->id = id; |
| 362 | spin_unlock_bh(&map_idr_lock); |
Shaohua Li | b76354c | 2018-03-27 11:53:21 -0700 | [diff] [blame] | 363 | idr_preload_end(); |
Martin KaFai Lau | f3f1c05 | 2017-06-05 12:15:47 -0700 | [diff] [blame] | 364 | |
| 365 | if (WARN_ON_ONCE(!id)) |
| 366 | return -ENOSPC; |
| 367 | |
| 368 | return id > 0 ? 0 : id; |
| 369 | } |
| 370 | |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 371 | 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] | 372 | { |
Eric Dumazet | 930651a | 2017-09-19 09:15:59 -0700 | [diff] [blame] | 373 | unsigned long flags; |
| 374 | |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 375 | /* Offloaded maps are removed from the IDR store when their device |
| 376 | * disappears - even if someone holds an fd to them they are unusable, |
| 377 | * the memory is gone, all ops will fail; they are simply waiting for |
| 378 | * refcnt to drop to be freed. |
| 379 | */ |
| 380 | if (!map->id) |
| 381 | return; |
| 382 | |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 383 | if (do_idr_lock) |
Eric Dumazet | 930651a | 2017-09-19 09:15:59 -0700 | [diff] [blame] | 384 | spin_lock_irqsave(&map_idr_lock, flags); |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 385 | else |
| 386 | __acquire(&map_idr_lock); |
| 387 | |
Martin KaFai Lau | f3f1c05 | 2017-06-05 12:15:47 -0700 | [diff] [blame] | 388 | idr_remove(&map_idr, map->id); |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 389 | map->id = 0; |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 390 | |
| 391 | if (do_idr_lock) |
Eric Dumazet | 930651a | 2017-09-19 09:15:59 -0700 | [diff] [blame] | 392 | spin_unlock_irqrestore(&map_idr_lock, flags); |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 393 | else |
| 394 | __release(&map_idr_lock); |
Martin KaFai Lau | f3f1c05 | 2017-06-05 12:15:47 -0700 | [diff] [blame] | 395 | } |
| 396 | |
Roman Gushchin | 48edc1f | 2020-12-01 13:58:32 -0800 | [diff] [blame] | 397 | #ifdef CONFIG_MEMCG_KMEM |
| 398 | static void bpf_map_save_memcg(struct bpf_map *map) |
| 399 | { |
| 400 | map->memcg = get_mem_cgroup_from_mm(current->mm); |
| 401 | } |
| 402 | |
| 403 | static void bpf_map_release_memcg(struct bpf_map *map) |
| 404 | { |
| 405 | mem_cgroup_put(map->memcg); |
| 406 | } |
| 407 | |
| 408 | void *bpf_map_kmalloc_node(const struct bpf_map *map, size_t size, gfp_t flags, |
| 409 | int node) |
| 410 | { |
| 411 | struct mem_cgroup *old_memcg; |
| 412 | void *ptr; |
| 413 | |
| 414 | old_memcg = set_active_memcg(map->memcg); |
| 415 | ptr = kmalloc_node(size, flags | __GFP_ACCOUNT, node); |
| 416 | set_active_memcg(old_memcg); |
| 417 | |
| 418 | return ptr; |
| 419 | } |
| 420 | |
| 421 | void *bpf_map_kzalloc(const struct bpf_map *map, size_t size, gfp_t flags) |
| 422 | { |
| 423 | struct mem_cgroup *old_memcg; |
| 424 | void *ptr; |
| 425 | |
| 426 | old_memcg = set_active_memcg(map->memcg); |
| 427 | ptr = kzalloc(size, flags | __GFP_ACCOUNT); |
| 428 | set_active_memcg(old_memcg); |
| 429 | |
| 430 | return ptr; |
| 431 | } |
| 432 | |
| 433 | void __percpu *bpf_map_alloc_percpu(const struct bpf_map *map, size_t size, |
| 434 | size_t align, gfp_t flags) |
| 435 | { |
| 436 | struct mem_cgroup *old_memcg; |
| 437 | void __percpu *ptr; |
| 438 | |
| 439 | old_memcg = set_active_memcg(map->memcg); |
| 440 | ptr = __alloc_percpu_gfp(size, align, flags | __GFP_ACCOUNT); |
| 441 | set_active_memcg(old_memcg); |
| 442 | |
| 443 | return ptr; |
| 444 | } |
| 445 | |
| 446 | #else |
| 447 | static void bpf_map_save_memcg(struct bpf_map *map) |
| 448 | { |
| 449 | } |
| 450 | |
| 451 | static void bpf_map_release_memcg(struct bpf_map *map) |
| 452 | { |
| 453 | } |
| 454 | #endif |
| 455 | |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 456 | /* called from workqueue */ |
| 457 | static void bpf_map_free_deferred(struct work_struct *work) |
| 458 | { |
| 459 | struct bpf_map *map = container_of(work, struct bpf_map, work); |
| 460 | |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 461 | security_bpf_map_free(map); |
Roman Gushchin | 48edc1f | 2020-12-01 13:58:32 -0800 | [diff] [blame] | 462 | bpf_map_release_memcg(map); |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 463 | /* implementation dependent freeing */ |
| 464 | map->ops->map_free(map); |
| 465 | } |
| 466 | |
Daniel Borkmann | c9da161 | 2015-11-24 21:28:15 +0100 | [diff] [blame] | 467 | static void bpf_map_put_uref(struct bpf_map *map) |
| 468 | { |
Andrii Nakryiko | 1e0bd5a | 2019-11-17 09:28:02 -0800 | [diff] [blame] | 469 | if (atomic64_dec_and_test(&map->usercnt)) { |
John Fastabend | ba6b8de | 2018-04-23 15:39:23 -0700 | [diff] [blame] | 470 | if (map->ops->map_release_uref) |
| 471 | map->ops->map_release_uref(map); |
Daniel Borkmann | c9da161 | 2015-11-24 21:28:15 +0100 | [diff] [blame] | 472 | } |
| 473 | } |
| 474 | |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 475 | /* decrement map refcnt and schedule it for freeing via workqueue |
| 476 | * (unrelying map implementation ops->map_free() might sleep) |
| 477 | */ |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 478 | 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] | 479 | { |
Andrii Nakryiko | 1e0bd5a | 2019-11-17 09:28:02 -0800 | [diff] [blame] | 480 | if (atomic64_dec_and_test(&map->refcnt)) { |
Martin KaFai Lau | 34ad558 | 2017-06-05 12:15:48 -0700 | [diff] [blame] | 481 | /* bpf_map_free_id() must be called first */ |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 482 | bpf_map_free_id(map, do_idr_lock); |
Martin KaFai Lau | 78958fc | 2018-05-04 14:49:51 -0700 | [diff] [blame] | 483 | btf_put(map->btf); |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 484 | INIT_WORK(&map->work, bpf_map_free_deferred); |
| 485 | schedule_work(&map->work); |
| 486 | } |
| 487 | } |
| 488 | |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 489 | void bpf_map_put(struct bpf_map *map) |
| 490 | { |
| 491 | __bpf_map_put(map, true); |
| 492 | } |
Jakub Kicinski | 630a4d3 | 2018-05-03 18:37:09 -0700 | [diff] [blame] | 493 | EXPORT_SYMBOL_GPL(bpf_map_put); |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 494 | |
Daniel Borkmann | c9da161 | 2015-11-24 21:28:15 +0100 | [diff] [blame] | 495 | void bpf_map_put_with_uref(struct bpf_map *map) |
| 496 | { |
| 497 | bpf_map_put_uref(map); |
| 498 | bpf_map_put(map); |
| 499 | } |
| 500 | |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 501 | static int bpf_map_release(struct inode *inode, struct file *filp) |
| 502 | { |
Daniel Borkmann | 61d1b6a | 2016-06-15 22:47:12 +0200 | [diff] [blame] | 503 | struct bpf_map *map = filp->private_data; |
| 504 | |
| 505 | if (map->ops->map_release) |
| 506 | map->ops->map_release(map, filp); |
| 507 | |
| 508 | bpf_map_put_with_uref(map); |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 509 | return 0; |
| 510 | } |
| 511 | |
Daniel Borkmann | 87df15d | 2019-04-09 23:20:06 +0200 | [diff] [blame] | 512 | static fmode_t map_get_sys_perms(struct bpf_map *map, struct fd f) |
| 513 | { |
| 514 | fmode_t mode = f.file->f_mode; |
| 515 | |
| 516 | /* Our file permissions may have been overridden by global |
| 517 | * map permissions facing syscall side. |
| 518 | */ |
| 519 | if (READ_ONCE(map->frozen)) |
| 520 | mode &= ~FMODE_CAN_WRITE; |
| 521 | return mode; |
| 522 | } |
| 523 | |
Daniel Borkmann | f99bf20 | 2015-11-19 11:56:22 +0100 | [diff] [blame] | 524 | #ifdef CONFIG_PROC_FS |
Roman Gushchin | 80ee81e | 2020-12-01 13:58:58 -0800 | [diff] [blame] | 525 | /* Provides an approximation of the map's memory footprint. |
| 526 | * Used only to provide a backward compatibility and display |
| 527 | * a reasonable "memlock" info. |
| 528 | */ |
| 529 | static unsigned long bpf_map_memory_footprint(const struct bpf_map *map) |
| 530 | { |
| 531 | unsigned long size; |
| 532 | |
| 533 | size = round_up(map->key_size + bpf_map_value_size(map), 8); |
| 534 | |
| 535 | return round_up(map->max_entries * size, PAGE_SIZE); |
| 536 | } |
| 537 | |
Daniel Borkmann | f99bf20 | 2015-11-19 11:56:22 +0100 | [diff] [blame] | 538 | static void bpf_map_show_fdinfo(struct seq_file *m, struct file *filp) |
| 539 | { |
| 540 | const struct bpf_map *map = filp->private_data; |
Daniel Borkmann | 21116b7 | 2016-11-26 01:28:07 +0100 | [diff] [blame] | 541 | const struct bpf_array *array; |
Daniel Borkmann | 2beee5f | 2019-11-22 21:07:56 +0100 | [diff] [blame] | 542 | u32 type = 0, jited = 0; |
Daniel Borkmann | 21116b7 | 2016-11-26 01:28:07 +0100 | [diff] [blame] | 543 | |
| 544 | if (map->map_type == BPF_MAP_TYPE_PROG_ARRAY) { |
| 545 | array = container_of(map, struct bpf_array, map); |
Daniel Borkmann | 2beee5f | 2019-11-22 21:07:56 +0100 | [diff] [blame] | 546 | type = array->aux->type; |
| 547 | jited = array->aux->jited; |
Daniel Borkmann | 21116b7 | 2016-11-26 01:28:07 +0100 | [diff] [blame] | 548 | } |
Daniel Borkmann | f99bf20 | 2015-11-19 11:56:22 +0100 | [diff] [blame] | 549 | |
| 550 | seq_printf(m, |
| 551 | "map_type:\t%u\n" |
| 552 | "key_size:\t%u\n" |
| 553 | "value_size:\t%u\n" |
Daniel Borkmann | 322cea2 | 2016-03-25 00:30:25 +0100 | [diff] [blame] | 554 | "max_entries:\t%u\n" |
Daniel Borkmann | 21116b7 | 2016-11-26 01:28:07 +0100 | [diff] [blame] | 555 | "map_flags:\t%#x\n" |
Roman Gushchin | 80ee81e | 2020-12-01 13:58:58 -0800 | [diff] [blame] | 556 | "memlock:\t%lu\n" |
Daniel Borkmann | 87df15d | 2019-04-09 23:20:06 +0200 | [diff] [blame] | 557 | "map_id:\t%u\n" |
| 558 | "frozen:\t%u\n", |
Daniel Borkmann | f99bf20 | 2015-11-19 11:56:22 +0100 | [diff] [blame] | 559 | map->map_type, |
| 560 | map->key_size, |
| 561 | map->value_size, |
Daniel Borkmann | 322cea2 | 2016-03-25 00:30:25 +0100 | [diff] [blame] | 562 | map->max_entries, |
Daniel Borkmann | 21116b7 | 2016-11-26 01:28:07 +0100 | [diff] [blame] | 563 | map->map_flags, |
Roman Gushchin | 80ee81e | 2020-12-01 13:58:58 -0800 | [diff] [blame] | 564 | bpf_map_memory_footprint(map), |
Daniel Borkmann | 87df15d | 2019-04-09 23:20:06 +0200 | [diff] [blame] | 565 | map->id, |
| 566 | READ_ONCE(map->frozen)); |
Daniel Borkmann | 2beee5f | 2019-11-22 21:07:56 +0100 | [diff] [blame] | 567 | if (type) { |
| 568 | seq_printf(m, "owner_prog_type:\t%u\n", type); |
| 569 | seq_printf(m, "owner_jited:\t%u\n", jited); |
Daniel Borkmann | 9780c0a | 2017-07-02 02:13:28 +0200 | [diff] [blame] | 570 | } |
Daniel Borkmann | f99bf20 | 2015-11-19 11:56:22 +0100 | [diff] [blame] | 571 | } |
| 572 | #endif |
| 573 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 574 | static ssize_t bpf_dummy_read(struct file *filp, char __user *buf, size_t siz, |
| 575 | loff_t *ppos) |
| 576 | { |
| 577 | /* We need this handler such that alloc_file() enables |
| 578 | * f_mode with FMODE_CAN_READ. |
| 579 | */ |
| 580 | return -EINVAL; |
| 581 | } |
| 582 | |
| 583 | static ssize_t bpf_dummy_write(struct file *filp, const char __user *buf, |
| 584 | size_t siz, loff_t *ppos) |
| 585 | { |
| 586 | /* We need this handler such that alloc_file() enables |
| 587 | * f_mode with FMODE_CAN_WRITE. |
| 588 | */ |
| 589 | return -EINVAL; |
| 590 | } |
| 591 | |
Andrii Nakryiko | fc97022 | 2019-11-17 09:28:04 -0800 | [diff] [blame] | 592 | /* called for any extra memory-mapped regions (except initial) */ |
| 593 | static void bpf_map_mmap_open(struct vm_area_struct *vma) |
| 594 | { |
| 595 | struct bpf_map *map = vma->vm_file->private_data; |
| 596 | |
Andrii Nakryiko | 1f6cb19 | 2020-04-10 13:26:12 -0700 | [diff] [blame] | 597 | if (vma->vm_flags & VM_MAYWRITE) { |
Andrii Nakryiko | fc97022 | 2019-11-17 09:28:04 -0800 | [diff] [blame] | 598 | mutex_lock(&map->freeze_mutex); |
| 599 | map->writecnt++; |
| 600 | mutex_unlock(&map->freeze_mutex); |
| 601 | } |
| 602 | } |
| 603 | |
| 604 | /* called for all unmapped memory region (including initial) */ |
| 605 | static void bpf_map_mmap_close(struct vm_area_struct *vma) |
| 606 | { |
| 607 | struct bpf_map *map = vma->vm_file->private_data; |
| 608 | |
Andrii Nakryiko | 1f6cb19 | 2020-04-10 13:26:12 -0700 | [diff] [blame] | 609 | if (vma->vm_flags & VM_MAYWRITE) { |
Andrii Nakryiko | fc97022 | 2019-11-17 09:28:04 -0800 | [diff] [blame] | 610 | mutex_lock(&map->freeze_mutex); |
| 611 | map->writecnt--; |
| 612 | mutex_unlock(&map->freeze_mutex); |
| 613 | } |
Andrii Nakryiko | fc97022 | 2019-11-17 09:28:04 -0800 | [diff] [blame] | 614 | } |
| 615 | |
| 616 | static const struct vm_operations_struct bpf_map_default_vmops = { |
| 617 | .open = bpf_map_mmap_open, |
| 618 | .close = bpf_map_mmap_close, |
| 619 | }; |
| 620 | |
| 621 | static int bpf_map_mmap(struct file *filp, struct vm_area_struct *vma) |
| 622 | { |
| 623 | struct bpf_map *map = filp->private_data; |
| 624 | int err; |
| 625 | |
| 626 | if (!map->ops->map_mmap || map_value_has_spin_lock(map)) |
| 627 | return -ENOTSUPP; |
| 628 | |
| 629 | if (!(vma->vm_flags & VM_SHARED)) |
| 630 | return -EINVAL; |
| 631 | |
| 632 | mutex_lock(&map->freeze_mutex); |
| 633 | |
Andrii Nakryiko | dfeb376 | 2020-05-18 22:38:24 -0700 | [diff] [blame] | 634 | if (vma->vm_flags & VM_WRITE) { |
| 635 | if (map->frozen) { |
| 636 | err = -EPERM; |
| 637 | goto out; |
| 638 | } |
| 639 | /* map is meant to be read-only, so do not allow mapping as |
| 640 | * writable, because it's possible to leak a writable page |
| 641 | * reference and allows user-space to still modify it after |
| 642 | * freezing, while verifier will assume contents do not change |
| 643 | */ |
| 644 | if (map->map_flags & BPF_F_RDONLY_PROG) { |
| 645 | err = -EACCES; |
| 646 | goto out; |
| 647 | } |
Andrii Nakryiko | fc97022 | 2019-11-17 09:28:04 -0800 | [diff] [blame] | 648 | } |
| 649 | |
| 650 | /* set default open/close callbacks */ |
| 651 | vma->vm_ops = &bpf_map_default_vmops; |
| 652 | vma->vm_private_data = map; |
Andrii Nakryiko | 1f6cb19 | 2020-04-10 13:26:12 -0700 | [diff] [blame] | 653 | vma->vm_flags &= ~VM_MAYEXEC; |
| 654 | if (!(vma->vm_flags & VM_WRITE)) |
| 655 | /* disallow re-mapping with PROT_WRITE */ |
| 656 | vma->vm_flags &= ~VM_MAYWRITE; |
Andrii Nakryiko | fc97022 | 2019-11-17 09:28:04 -0800 | [diff] [blame] | 657 | |
| 658 | err = map->ops->map_mmap(map, vma); |
| 659 | if (err) |
| 660 | goto out; |
| 661 | |
Andrii Nakryiko | 1f6cb19 | 2020-04-10 13:26:12 -0700 | [diff] [blame] | 662 | if (vma->vm_flags & VM_MAYWRITE) |
Andrii Nakryiko | fc97022 | 2019-11-17 09:28:04 -0800 | [diff] [blame] | 663 | map->writecnt++; |
| 664 | out: |
| 665 | mutex_unlock(&map->freeze_mutex); |
| 666 | return err; |
| 667 | } |
| 668 | |
Andrii Nakryiko | 457f443 | 2020-05-29 00:54:20 -0700 | [diff] [blame] | 669 | static __poll_t bpf_map_poll(struct file *filp, struct poll_table_struct *pts) |
| 670 | { |
| 671 | struct bpf_map *map = filp->private_data; |
| 672 | |
| 673 | if (map->ops->map_poll) |
| 674 | return map->ops->map_poll(map, filp, pts); |
| 675 | |
| 676 | return EPOLLERR; |
| 677 | } |
| 678 | |
Chenbo Feng | f66e448 | 2017-10-18 13:00:26 -0700 | [diff] [blame] | 679 | const struct file_operations bpf_map_fops = { |
Daniel Borkmann | f99bf20 | 2015-11-19 11:56:22 +0100 | [diff] [blame] | 680 | #ifdef CONFIG_PROC_FS |
| 681 | .show_fdinfo = bpf_map_show_fdinfo, |
| 682 | #endif |
| 683 | .release = bpf_map_release, |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 684 | .read = bpf_dummy_read, |
| 685 | .write = bpf_dummy_write, |
Andrii Nakryiko | fc97022 | 2019-11-17 09:28:04 -0800 | [diff] [blame] | 686 | .mmap = bpf_map_mmap, |
Andrii Nakryiko | 457f443 | 2020-05-29 00:54:20 -0700 | [diff] [blame] | 687 | .poll = bpf_map_poll, |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 688 | }; |
| 689 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 690 | int bpf_map_new_fd(struct bpf_map *map, int flags) |
Daniel Borkmann | aa79781 | 2015-10-29 14:58:06 +0100 | [diff] [blame] | 691 | { |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 692 | int ret; |
| 693 | |
| 694 | ret = security_bpf_map(map, OPEN_FMODE(flags)); |
| 695 | if (ret < 0) |
| 696 | return ret; |
| 697 | |
Daniel Borkmann | aa79781 | 2015-10-29 14:58:06 +0100 | [diff] [blame] | 698 | return anon_inode_getfd("bpf-map", &bpf_map_fops, map, |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 699 | flags | O_CLOEXEC); |
| 700 | } |
| 701 | |
| 702 | int bpf_get_file_flag(int flags) |
| 703 | { |
| 704 | if ((flags & BPF_F_RDONLY) && (flags & BPF_F_WRONLY)) |
| 705 | return -EINVAL; |
| 706 | if (flags & BPF_F_RDONLY) |
| 707 | return O_RDONLY; |
| 708 | if (flags & BPF_F_WRONLY) |
| 709 | return O_WRONLY; |
| 710 | return O_RDWR; |
Daniel Borkmann | aa79781 | 2015-10-29 14:58:06 +0100 | [diff] [blame] | 711 | } |
| 712 | |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 713 | /* helper macro to check that unused fields 'union bpf_attr' are zero */ |
| 714 | #define CHECK_ATTR(CMD) \ |
| 715 | memchr_inv((void *) &attr->CMD##_LAST_FIELD + \ |
| 716 | sizeof(attr->CMD##_LAST_FIELD), 0, \ |
| 717 | sizeof(*attr) - \ |
| 718 | offsetof(union bpf_attr, CMD##_LAST_FIELD) - \ |
| 719 | sizeof(attr->CMD##_LAST_FIELD)) != NULL |
| 720 | |
Martin KaFai Lau | 8e7ae25 | 2020-03-13 18:02:09 -0700 | [diff] [blame] | 721 | /* dst and src must have at least "size" number of bytes. |
| 722 | * Return strlen on success and < 0 on error. |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 723 | */ |
Martin KaFai Lau | 8e7ae25 | 2020-03-13 18:02:09 -0700 | [diff] [blame] | 724 | int bpf_obj_name_cpy(char *dst, const char *src, unsigned int size) |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 725 | { |
Martin KaFai Lau | 8e7ae25 | 2020-03-13 18:02:09 -0700 | [diff] [blame] | 726 | const char *end = src + size; |
| 727 | const char *orig_src = src; |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 728 | |
Martin KaFai Lau | 8e7ae25 | 2020-03-13 18:02:09 -0700 | [diff] [blame] | 729 | memset(dst, 0, size); |
Daniel Borkmann | 3e0ddc4f | 2019-04-09 23:20:07 +0200 | [diff] [blame] | 730 | /* Copy all isalnum(), '_' and '.' chars. */ |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 731 | while (src < end && *src) { |
Daniel Borkmann | 3e0ddc4f | 2019-04-09 23:20:07 +0200 | [diff] [blame] | 732 | if (!isalnum(*src) && |
| 733 | *src != '_' && *src != '.') |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 734 | return -EINVAL; |
| 735 | *dst++ = *src++; |
| 736 | } |
| 737 | |
Martin KaFai Lau | 8e7ae25 | 2020-03-13 18:02:09 -0700 | [diff] [blame] | 738 | /* No '\0' found in "size" number of bytes */ |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 739 | if (src == end) |
| 740 | return -EINVAL; |
| 741 | |
Martin KaFai Lau | 8e7ae25 | 2020-03-13 18:02:09 -0700 | [diff] [blame] | 742 | return src - orig_src; |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 743 | } |
| 744 | |
Daniel Borkmann | e8d2bec | 2018-08-12 01:59:17 +0200 | [diff] [blame] | 745 | int map_check_no_btf(const struct bpf_map *map, |
Roman Gushchin | 1b2b234 | 2018-12-10 15:43:00 -0800 | [diff] [blame] | 746 | const struct btf *btf, |
Daniel Borkmann | e8d2bec | 2018-08-12 01:59:17 +0200 | [diff] [blame] | 747 | const struct btf_type *key_type, |
| 748 | const struct btf_type *value_type) |
| 749 | { |
| 750 | return -ENOTSUPP; |
| 751 | } |
| 752 | |
Alexei Starovoitov | d83525c | 2019-01-31 15:40:04 -0800 | [diff] [blame] | 753 | static int map_check_btf(struct bpf_map *map, const struct btf *btf, |
Daniel Borkmann | e8d2bec | 2018-08-12 01:59:17 +0200 | [diff] [blame] | 754 | u32 btf_key_id, u32 btf_value_id) |
| 755 | { |
| 756 | const struct btf_type *key_type, *value_type; |
| 757 | u32 key_size, value_size; |
| 758 | int ret = 0; |
| 759 | |
Daniel Borkmann | 2824ecb | 2019-04-09 23:20:10 +0200 | [diff] [blame] | 760 | /* Some maps allow key to be unspecified. */ |
| 761 | if (btf_key_id) { |
| 762 | key_type = btf_type_id_size(btf, &btf_key_id, &key_size); |
| 763 | if (!key_type || key_size != map->key_size) |
| 764 | return -EINVAL; |
| 765 | } else { |
| 766 | key_type = btf_type_by_id(btf, 0); |
| 767 | if (!map->ops->map_check_btf) |
| 768 | return -EINVAL; |
| 769 | } |
Daniel Borkmann | e8d2bec | 2018-08-12 01:59:17 +0200 | [diff] [blame] | 770 | |
| 771 | value_type = btf_type_id_size(btf, &btf_value_id, &value_size); |
| 772 | if (!value_type || value_size != map->value_size) |
| 773 | return -EINVAL; |
| 774 | |
Alexei Starovoitov | d83525c | 2019-01-31 15:40:04 -0800 | [diff] [blame] | 775 | map->spin_lock_off = btf_find_spin_lock(btf, value_type); |
| 776 | |
| 777 | if (map_value_has_spin_lock(map)) { |
Daniel Borkmann | 591fe98 | 2019-04-09 23:20:05 +0200 | [diff] [blame] | 778 | if (map->map_flags & BPF_F_RDONLY_PROG) |
| 779 | return -EACCES; |
Alexei Starovoitov | d83525c | 2019-01-31 15:40:04 -0800 | [diff] [blame] | 780 | if (map->map_type != BPF_MAP_TYPE_HASH && |
Alexei Starovoitov | e16d2f1 | 2019-01-31 15:40:05 -0800 | [diff] [blame] | 781 | map->map_type != BPF_MAP_TYPE_ARRAY && |
Martin KaFai Lau | 6ac99e8 | 2019-04-26 16:39:39 -0700 | [diff] [blame] | 782 | map->map_type != BPF_MAP_TYPE_CGROUP_STORAGE && |
KP Singh | 8ea6368 | 2020-08-25 20:29:17 +0200 | [diff] [blame] | 783 | map->map_type != BPF_MAP_TYPE_SK_STORAGE && |
KP Singh | 4cf1bc1 | 2020-11-06 10:37:40 +0000 | [diff] [blame] | 784 | map->map_type != BPF_MAP_TYPE_INODE_STORAGE && |
| 785 | map->map_type != BPF_MAP_TYPE_TASK_STORAGE) |
Alexei Starovoitov | d83525c | 2019-01-31 15:40:04 -0800 | [diff] [blame] | 786 | return -ENOTSUPP; |
| 787 | if (map->spin_lock_off + sizeof(struct bpf_spin_lock) > |
| 788 | map->value_size) { |
| 789 | WARN_ONCE(1, |
| 790 | "verifier bug spin_lock_off %d value_size %d\n", |
| 791 | map->spin_lock_off, map->value_size); |
| 792 | return -EFAULT; |
| 793 | } |
| 794 | } |
| 795 | |
Daniel Borkmann | e8d2bec | 2018-08-12 01:59:17 +0200 | [diff] [blame] | 796 | if (map->ops->map_check_btf) |
Roman Gushchin | 1b2b234 | 2018-12-10 15:43:00 -0800 | [diff] [blame] | 797 | ret = map->ops->map_check_btf(map, btf, key_type, value_type); |
Daniel Borkmann | e8d2bec | 2018-08-12 01:59:17 +0200 | [diff] [blame] | 798 | |
| 799 | return ret; |
| 800 | } |
| 801 | |
Martin KaFai Lau | 85d33df | 2020-01-08 16:35:05 -0800 | [diff] [blame] | 802 | #define BPF_MAP_CREATE_LAST_FIELD btf_vmlinux_value_type_id |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 803 | /* called via syscall */ |
| 804 | static int map_create(union bpf_attr *attr) |
| 805 | { |
Martin KaFai Lau | 96eabe7 | 2017-08-18 11:28:00 -0700 | [diff] [blame] | 806 | int numa_node = bpf_map_attr_numa_node(attr); |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 807 | struct bpf_map *map; |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 808 | int f_flags; |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 809 | int err; |
| 810 | |
| 811 | err = CHECK_ATTR(BPF_MAP_CREATE); |
| 812 | if (err) |
| 813 | return -EINVAL; |
| 814 | |
Martin KaFai Lau | 85d33df | 2020-01-08 16:35:05 -0800 | [diff] [blame] | 815 | if (attr->btf_vmlinux_value_type_id) { |
| 816 | if (attr->map_type != BPF_MAP_TYPE_STRUCT_OPS || |
| 817 | attr->btf_key_type_id || attr->btf_value_type_id) |
| 818 | return -EINVAL; |
| 819 | } else if (attr->btf_key_type_id && !attr->btf_value_type_id) { |
| 820 | return -EINVAL; |
| 821 | } |
| 822 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 823 | f_flags = bpf_get_file_flag(attr->map_flags); |
| 824 | if (f_flags < 0) |
| 825 | return f_flags; |
| 826 | |
Martin KaFai Lau | 96eabe7 | 2017-08-18 11:28:00 -0700 | [diff] [blame] | 827 | if (numa_node != NUMA_NO_NODE && |
Eric Dumazet | 96e5ae4 | 2017-09-04 22:41:02 -0700 | [diff] [blame] | 828 | ((unsigned int)numa_node >= nr_node_ids || |
| 829 | !node_online(numa_node))) |
Martin KaFai Lau | 96eabe7 | 2017-08-18 11:28:00 -0700 | [diff] [blame] | 830 | return -EINVAL; |
| 831 | |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 832 | /* find map type and init map: hashtable vs rbtree vs bloom vs ... */ |
| 833 | map = find_and_alloc_map(attr); |
| 834 | if (IS_ERR(map)) |
| 835 | return PTR_ERR(map); |
| 836 | |
Martin KaFai Lau | 8e7ae25 | 2020-03-13 18:02:09 -0700 | [diff] [blame] | 837 | err = bpf_obj_name_cpy(map->name, attr->map_name, |
| 838 | sizeof(attr->map_name)); |
| 839 | if (err < 0) |
Roman Gushchin | b936ca6 | 2019-05-29 18:03:58 -0700 | [diff] [blame] | 840 | goto free_map; |
Martin KaFai Lau | ad5b177 | 2017-09-27 14:37:53 -0700 | [diff] [blame] | 841 | |
Andrii Nakryiko | 1e0bd5a | 2019-11-17 09:28:02 -0800 | [diff] [blame] | 842 | atomic64_set(&map->refcnt, 1); |
| 843 | atomic64_set(&map->usercnt, 1); |
Andrii Nakryiko | fc97022 | 2019-11-17 09:28:04 -0800 | [diff] [blame] | 844 | mutex_init(&map->freeze_mutex); |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 845 | |
Martin KaFai Lau | 85d33df | 2020-01-08 16:35:05 -0800 | [diff] [blame] | 846 | map->spin_lock_off = -EINVAL; |
| 847 | if (attr->btf_key_type_id || attr->btf_value_type_id || |
| 848 | /* Even the map's value is a kernel's struct, |
| 849 | * the bpf_prog.o must have BTF to begin with |
| 850 | * to figure out the corresponding kernel's |
| 851 | * counter part. Thus, attr->btf_fd has |
| 852 | * to be valid also. |
| 853 | */ |
| 854 | attr->btf_vmlinux_value_type_id) { |
Martin KaFai Lau | a26ca7c | 2018-04-18 15:56:03 -0700 | [diff] [blame] | 855 | struct btf *btf; |
| 856 | |
Martin KaFai Lau | a26ca7c | 2018-04-18 15:56:03 -0700 | [diff] [blame] | 857 | btf = btf_get_by_fd(attr->btf_fd); |
| 858 | if (IS_ERR(btf)) { |
| 859 | err = PTR_ERR(btf); |
Roman Gushchin | b936ca6 | 2019-05-29 18:03:58 -0700 | [diff] [blame] | 860 | goto free_map; |
Martin KaFai Lau | a26ca7c | 2018-04-18 15:56:03 -0700 | [diff] [blame] | 861 | } |
Alexei Starovoitov | 350a5c4 | 2021-03-07 14:52:48 -0800 | [diff] [blame] | 862 | if (btf_is_kernel(btf)) { |
| 863 | btf_put(btf); |
| 864 | err = -EACCES; |
| 865 | goto free_map; |
| 866 | } |
Martin KaFai Lau | 85d33df | 2020-01-08 16:35:05 -0800 | [diff] [blame] | 867 | map->btf = btf; |
Martin KaFai Lau | a26ca7c | 2018-04-18 15:56:03 -0700 | [diff] [blame] | 868 | |
Martin KaFai Lau | 85d33df | 2020-01-08 16:35:05 -0800 | [diff] [blame] | 869 | if (attr->btf_value_type_id) { |
| 870 | err = map_check_btf(map, btf, attr->btf_key_type_id, |
| 871 | attr->btf_value_type_id); |
| 872 | if (err) |
| 873 | goto free_map; |
Martin KaFai Lau | a26ca7c | 2018-04-18 15:56:03 -0700 | [diff] [blame] | 874 | } |
| 875 | |
Martin KaFai Lau | 9b2cf32 | 2018-05-22 14:57:21 -0700 | [diff] [blame] | 876 | map->btf_key_type_id = attr->btf_key_type_id; |
| 877 | map->btf_value_type_id = attr->btf_value_type_id; |
Martin KaFai Lau | 85d33df | 2020-01-08 16:35:05 -0800 | [diff] [blame] | 878 | map->btf_vmlinux_value_type_id = |
| 879 | attr->btf_vmlinux_value_type_id; |
Martin KaFai Lau | a26ca7c | 2018-04-18 15:56:03 -0700 | [diff] [blame] | 880 | } |
| 881 | |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 882 | err = security_bpf_map_alloc(map); |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 883 | if (err) |
Roman Gushchin | b936ca6 | 2019-05-29 18:03:58 -0700 | [diff] [blame] | 884 | goto free_map; |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 885 | |
Martin KaFai Lau | f3f1c05 | 2017-06-05 12:15:47 -0700 | [diff] [blame] | 886 | err = bpf_map_alloc_id(map); |
| 887 | if (err) |
Roman Gushchin | b936ca6 | 2019-05-29 18:03:58 -0700 | [diff] [blame] | 888 | goto free_map_sec; |
Martin KaFai Lau | f3f1c05 | 2017-06-05 12:15:47 -0700 | [diff] [blame] | 889 | |
Roman Gushchin | 48edc1f | 2020-12-01 13:58:32 -0800 | [diff] [blame] | 890 | bpf_map_save_memcg(map); |
| 891 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 892 | err = bpf_map_new_fd(map, f_flags); |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 893 | if (err < 0) { |
| 894 | /* failed to allocate fd. |
Peng Sun | 352d20d | 2019-02-27 22:36:25 +0800 | [diff] [blame] | 895 | * bpf_map_put_with_uref() is needed because the above |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 896 | * bpf_map_alloc_id() has published the map |
| 897 | * to the userspace and the userspace may |
| 898 | * have refcnt-ed it through BPF_MAP_GET_FD_BY_ID. |
| 899 | */ |
Peng Sun | 352d20d | 2019-02-27 22:36:25 +0800 | [diff] [blame] | 900 | bpf_map_put_with_uref(map); |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 901 | return err; |
| 902 | } |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 903 | |
| 904 | return err; |
| 905 | |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 906 | free_map_sec: |
| 907 | security_bpf_map_free(map); |
Roman Gushchin | b936ca6 | 2019-05-29 18:03:58 -0700 | [diff] [blame] | 908 | free_map: |
Martin KaFai Lau | a26ca7c | 2018-04-18 15:56:03 -0700 | [diff] [blame] | 909 | btf_put(map->btf); |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 910 | map->ops->map_free(map); |
| 911 | return err; |
| 912 | } |
| 913 | |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 914 | /* if error is returned, fd is released. |
| 915 | * On success caller should complete fd access with matching fdput() |
| 916 | */ |
Daniel Borkmann | c210129 | 2015-10-29 14:58:07 +0100 | [diff] [blame] | 917 | struct bpf_map *__bpf_map_get(struct fd f) |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 918 | { |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 919 | if (!f.file) |
| 920 | return ERR_PTR(-EBADF); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 921 | if (f.file->f_op != &bpf_map_fops) { |
| 922 | fdput(f); |
| 923 | return ERR_PTR(-EINVAL); |
| 924 | } |
| 925 | |
Daniel Borkmann | c210129 | 2015-10-29 14:58:07 +0100 | [diff] [blame] | 926 | return f.file->private_data; |
| 927 | } |
| 928 | |
Andrii Nakryiko | 1e0bd5a | 2019-11-17 09:28:02 -0800 | [diff] [blame] | 929 | void bpf_map_inc(struct bpf_map *map) |
Daniel Borkmann | c9da161 | 2015-11-24 21:28:15 +0100 | [diff] [blame] | 930 | { |
Andrii Nakryiko | 1e0bd5a | 2019-11-17 09:28:02 -0800 | [diff] [blame] | 931 | atomic64_inc(&map->refcnt); |
Daniel Borkmann | c9da161 | 2015-11-24 21:28:15 +0100 | [diff] [blame] | 932 | } |
Jakub Kicinski | 630a4d3 | 2018-05-03 18:37:09 -0700 | [diff] [blame] | 933 | EXPORT_SYMBOL_GPL(bpf_map_inc); |
Daniel Borkmann | c9da161 | 2015-11-24 21:28:15 +0100 | [diff] [blame] | 934 | |
Andrii Nakryiko | 1e0bd5a | 2019-11-17 09:28:02 -0800 | [diff] [blame] | 935 | void bpf_map_inc_with_uref(struct bpf_map *map) |
| 936 | { |
| 937 | atomic64_inc(&map->refcnt); |
| 938 | atomic64_inc(&map->usercnt); |
| 939 | } |
| 940 | EXPORT_SYMBOL_GPL(bpf_map_inc_with_uref); |
| 941 | |
Martin KaFai Lau | 1ed4d92 | 2020-02-25 15:04:21 -0800 | [diff] [blame] | 942 | struct bpf_map *bpf_map_get(u32 ufd) |
| 943 | { |
| 944 | struct fd f = fdget(ufd); |
| 945 | struct bpf_map *map; |
| 946 | |
| 947 | map = __bpf_map_get(f); |
| 948 | if (IS_ERR(map)) |
| 949 | return map; |
| 950 | |
| 951 | bpf_map_inc(map); |
| 952 | fdput(f); |
| 953 | |
| 954 | return map; |
| 955 | } |
| 956 | |
Daniel Borkmann | c9da161 | 2015-11-24 21:28:15 +0100 | [diff] [blame] | 957 | struct bpf_map *bpf_map_get_with_uref(u32 ufd) |
Daniel Borkmann | c210129 | 2015-10-29 14:58:07 +0100 | [diff] [blame] | 958 | { |
| 959 | struct fd f = fdget(ufd); |
| 960 | struct bpf_map *map; |
| 961 | |
| 962 | map = __bpf_map_get(f); |
| 963 | if (IS_ERR(map)) |
| 964 | return map; |
| 965 | |
Andrii Nakryiko | 1e0bd5a | 2019-11-17 09:28:02 -0800 | [diff] [blame] | 966 | bpf_map_inc_with_uref(map); |
Daniel Borkmann | c210129 | 2015-10-29 14:58:07 +0100 | [diff] [blame] | 967 | fdput(f); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 968 | |
| 969 | return map; |
| 970 | } |
| 971 | |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 972 | /* map_idr_lock should have been held */ |
Andrii Nakryiko | 1e0bd5a | 2019-11-17 09:28:02 -0800 | [diff] [blame] | 973 | static struct bpf_map *__bpf_map_inc_not_zero(struct bpf_map *map, bool uref) |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 974 | { |
| 975 | int refold; |
| 976 | |
Andrii Nakryiko | 1e0bd5a | 2019-11-17 09:28:02 -0800 | [diff] [blame] | 977 | refold = atomic64_fetch_add_unless(&map->refcnt, 1, 0); |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 978 | if (!refold) |
| 979 | return ERR_PTR(-ENOENT); |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 980 | if (uref) |
Andrii Nakryiko | 1e0bd5a | 2019-11-17 09:28:02 -0800 | [diff] [blame] | 981 | atomic64_inc(&map->usercnt); |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 982 | |
| 983 | return map; |
| 984 | } |
| 985 | |
Andrii Nakryiko | 1e0bd5a | 2019-11-17 09:28:02 -0800 | [diff] [blame] | 986 | struct bpf_map *bpf_map_inc_not_zero(struct bpf_map *map) |
Stanislav Fomichev | b0e4701 | 2019-08-14 10:37:48 -0700 | [diff] [blame] | 987 | { |
| 988 | spin_lock_bh(&map_idr_lock); |
Andrii Nakryiko | 1e0bd5a | 2019-11-17 09:28:02 -0800 | [diff] [blame] | 989 | map = __bpf_map_inc_not_zero(map, false); |
Stanislav Fomichev | b0e4701 | 2019-08-14 10:37:48 -0700 | [diff] [blame] | 990 | spin_unlock_bh(&map_idr_lock); |
| 991 | |
| 992 | return map; |
| 993 | } |
| 994 | EXPORT_SYMBOL_GPL(bpf_map_inc_not_zero); |
| 995 | |
Alexei Starovoitov | b8cdc05 | 2016-03-09 18:56:49 -0800 | [diff] [blame] | 996 | int __weak bpf_stackmap_copy(struct bpf_map *map, void *key, void *value) |
| 997 | { |
| 998 | return -ENOTSUPP; |
| 999 | } |
| 1000 | |
Mauricio Vasquez B | c9d29f4 | 2018-10-18 15:16:14 +0200 | [diff] [blame] | 1001 | static void *__bpf_copy_key(void __user *ukey, u64 key_size) |
| 1002 | { |
| 1003 | if (key_size) |
| 1004 | return memdup_user(ukey, key_size); |
| 1005 | |
| 1006 | if (ukey) |
| 1007 | return ERR_PTR(-EINVAL); |
| 1008 | |
| 1009 | return NULL; |
| 1010 | } |
| 1011 | |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 1012 | static void *___bpf_copy_key(bpfptr_t ukey, u64 key_size) |
| 1013 | { |
| 1014 | if (key_size) |
| 1015 | return memdup_bpfptr(ukey, key_size); |
| 1016 | |
| 1017 | if (!bpfptr_is_null(ukey)) |
| 1018 | return ERR_PTR(-EINVAL); |
| 1019 | |
| 1020 | return NULL; |
| 1021 | } |
| 1022 | |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1023 | /* last field in 'union bpf_attr' used by this command */ |
Alexei Starovoitov | 96049f3 | 2019-01-31 15:40:09 -0800 | [diff] [blame] | 1024 | #define BPF_MAP_LOOKUP_ELEM_LAST_FIELD flags |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1025 | |
| 1026 | static int map_lookup_elem(union bpf_attr *attr) |
| 1027 | { |
Mickaël Salaün | 535e7b4b | 2016-11-13 19:44:03 +0100 | [diff] [blame] | 1028 | void __user *ukey = u64_to_user_ptr(attr->key); |
| 1029 | void __user *uvalue = u64_to_user_ptr(attr->value); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1030 | int ufd = attr->map_fd; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1031 | struct bpf_map *map; |
Brian Vazquez | 15c14a3 | 2020-01-15 10:43:00 -0800 | [diff] [blame] | 1032 | void *key, *value; |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 1033 | u32 value_size; |
Daniel Borkmann | 592867b | 2015-09-08 18:00:09 +0200 | [diff] [blame] | 1034 | struct fd f; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1035 | int err; |
| 1036 | |
| 1037 | if (CHECK_ATTR(BPF_MAP_LOOKUP_ELEM)) |
| 1038 | return -EINVAL; |
| 1039 | |
Alexei Starovoitov | 96049f3 | 2019-01-31 15:40:09 -0800 | [diff] [blame] | 1040 | if (attr->flags & ~BPF_F_LOCK) |
| 1041 | return -EINVAL; |
| 1042 | |
Daniel Borkmann | 592867b | 2015-09-08 18:00:09 +0200 | [diff] [blame] | 1043 | f = fdget(ufd); |
Daniel Borkmann | c210129 | 2015-10-29 14:58:07 +0100 | [diff] [blame] | 1044 | map = __bpf_map_get(f); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1045 | if (IS_ERR(map)) |
| 1046 | return PTR_ERR(map); |
Daniel Borkmann | 87df15d | 2019-04-09 23:20:06 +0200 | [diff] [blame] | 1047 | if (!(map_get_sys_perms(map, f) & FMODE_CAN_READ)) { |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 1048 | err = -EPERM; |
| 1049 | goto err_put; |
| 1050 | } |
| 1051 | |
Alexei Starovoitov | 96049f3 | 2019-01-31 15:40:09 -0800 | [diff] [blame] | 1052 | if ((attr->flags & BPF_F_LOCK) && |
| 1053 | !map_value_has_spin_lock(map)) { |
| 1054 | err = -EINVAL; |
| 1055 | goto err_put; |
| 1056 | } |
| 1057 | |
Mauricio Vasquez B | c9d29f4 | 2018-10-18 15:16:14 +0200 | [diff] [blame] | 1058 | key = __bpf_copy_key(ukey, map->key_size); |
Al Viro | e4448ed | 2017-05-13 18:43:00 -0400 | [diff] [blame] | 1059 | if (IS_ERR(key)) { |
| 1060 | err = PTR_ERR(key); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1061 | goto err_put; |
Al Viro | e4448ed | 2017-05-13 18:43:00 -0400 | [diff] [blame] | 1062 | } |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1063 | |
Brian Vazquez | 15c14a3 | 2020-01-15 10:43:00 -0800 | [diff] [blame] | 1064 | value_size = bpf_map_value_size(map); |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 1065 | |
Alexei Starovoitov | 8ebe667 | 2015-01-22 17:11:08 -0800 | [diff] [blame] | 1066 | err = -ENOMEM; |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 1067 | value = kmalloc(value_size, GFP_USER | __GFP_NOWARN); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1068 | if (!value) |
Alexei Starovoitov | 8ebe667 | 2015-01-22 17:11:08 -0800 | [diff] [blame] | 1069 | goto free_key; |
| 1070 | |
Brian Vazquez | 15c14a3 | 2020-01-15 10:43:00 -0800 | [diff] [blame] | 1071 | err = bpf_map_copy_value(map, key, value, attr->flags); |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 1072 | if (err) |
Alexei Starovoitov | 8ebe667 | 2015-01-22 17:11:08 -0800 | [diff] [blame] | 1073 | goto free_value; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1074 | |
| 1075 | err = -EFAULT; |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 1076 | if (copy_to_user(uvalue, value, value_size) != 0) |
Alexei Starovoitov | 8ebe667 | 2015-01-22 17:11:08 -0800 | [diff] [blame] | 1077 | goto free_value; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1078 | |
| 1079 | err = 0; |
| 1080 | |
Alexei Starovoitov | 8ebe667 | 2015-01-22 17:11:08 -0800 | [diff] [blame] | 1081 | free_value: |
| 1082 | kfree(value); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1083 | free_key: |
| 1084 | kfree(key); |
| 1085 | err_put: |
| 1086 | fdput(f); |
| 1087 | return err; |
| 1088 | } |
| 1089 | |
Daniel Colascione | 1ae80cf | 2018-10-12 03:54:27 -0700 | [diff] [blame] | 1090 | |
Alexei Starovoitov | 3274f52 | 2014-11-13 17:36:44 -0800 | [diff] [blame] | 1091 | #define BPF_MAP_UPDATE_ELEM_LAST_FIELD flags |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1092 | |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 1093 | static int map_update_elem(union bpf_attr *attr, bpfptr_t uattr) |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1094 | { |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 1095 | bpfptr_t ukey = make_bpfptr(attr->key, uattr.is_kernel); |
| 1096 | bpfptr_t uvalue = make_bpfptr(attr->value, uattr.is_kernel); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1097 | int ufd = attr->map_fd; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1098 | struct bpf_map *map; |
| 1099 | void *key, *value; |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 1100 | u32 value_size; |
Daniel Borkmann | 592867b | 2015-09-08 18:00:09 +0200 | [diff] [blame] | 1101 | struct fd f; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1102 | int err; |
| 1103 | |
| 1104 | if (CHECK_ATTR(BPF_MAP_UPDATE_ELEM)) |
| 1105 | return -EINVAL; |
| 1106 | |
Daniel Borkmann | 592867b | 2015-09-08 18:00:09 +0200 | [diff] [blame] | 1107 | f = fdget(ufd); |
Daniel Borkmann | c210129 | 2015-10-29 14:58:07 +0100 | [diff] [blame] | 1108 | map = __bpf_map_get(f); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1109 | if (IS_ERR(map)) |
| 1110 | return PTR_ERR(map); |
Daniel Borkmann | 87df15d | 2019-04-09 23:20:06 +0200 | [diff] [blame] | 1111 | if (!(map_get_sys_perms(map, f) & FMODE_CAN_WRITE)) { |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 1112 | err = -EPERM; |
| 1113 | goto err_put; |
| 1114 | } |
| 1115 | |
Alexei Starovoitov | 96049f3 | 2019-01-31 15:40:09 -0800 | [diff] [blame] | 1116 | if ((attr->flags & BPF_F_LOCK) && |
| 1117 | !map_value_has_spin_lock(map)) { |
| 1118 | err = -EINVAL; |
| 1119 | goto err_put; |
| 1120 | } |
| 1121 | |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 1122 | key = ___bpf_copy_key(ukey, map->key_size); |
Al Viro | e4448ed | 2017-05-13 18:43:00 -0400 | [diff] [blame] | 1123 | if (IS_ERR(key)) { |
| 1124 | err = PTR_ERR(key); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1125 | goto err_put; |
Al Viro | e4448ed | 2017-05-13 18:43:00 -0400 | [diff] [blame] | 1126 | } |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1127 | |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 1128 | if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH || |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 1129 | map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH || |
Roman Gushchin | b741f16 | 2018-09-28 14:45:43 +0000 | [diff] [blame] | 1130 | map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY || |
| 1131 | map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE) |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 1132 | value_size = round_up(map->value_size, 8) * num_possible_cpus(); |
| 1133 | else |
| 1134 | value_size = map->value_size; |
| 1135 | |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1136 | err = -ENOMEM; |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 1137 | value = kmalloc(value_size, GFP_USER | __GFP_NOWARN); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1138 | if (!value) |
| 1139 | goto free_key; |
| 1140 | |
| 1141 | err = -EFAULT; |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 1142 | if (copy_from_bpfptr(value, uvalue, value_size) != 0) |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1143 | goto free_value; |
| 1144 | |
Brian Vazquez | 15c14a3 | 2020-01-15 10:43:00 -0800 | [diff] [blame] | 1145 | err = bpf_map_update_value(map, f, key, value, attr->flags); |
Jesper Dangaard Brouer | 6710e11 | 2017-10-16 12:19:28 +0200 | [diff] [blame] | 1146 | |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1147 | free_value: |
| 1148 | kfree(value); |
| 1149 | free_key: |
| 1150 | kfree(key); |
| 1151 | err_put: |
| 1152 | fdput(f); |
| 1153 | return err; |
| 1154 | } |
| 1155 | |
| 1156 | #define BPF_MAP_DELETE_ELEM_LAST_FIELD key |
| 1157 | |
| 1158 | static int map_delete_elem(union bpf_attr *attr) |
| 1159 | { |
Mickaël Salaün | 535e7b4b | 2016-11-13 19:44:03 +0100 | [diff] [blame] | 1160 | void __user *ukey = u64_to_user_ptr(attr->key); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1161 | int ufd = attr->map_fd; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1162 | struct bpf_map *map; |
Daniel Borkmann | 592867b | 2015-09-08 18:00:09 +0200 | [diff] [blame] | 1163 | struct fd f; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1164 | void *key; |
| 1165 | int err; |
| 1166 | |
| 1167 | if (CHECK_ATTR(BPF_MAP_DELETE_ELEM)) |
| 1168 | return -EINVAL; |
| 1169 | |
Daniel Borkmann | 592867b | 2015-09-08 18:00:09 +0200 | [diff] [blame] | 1170 | f = fdget(ufd); |
Daniel Borkmann | c210129 | 2015-10-29 14:58:07 +0100 | [diff] [blame] | 1171 | map = __bpf_map_get(f); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1172 | if (IS_ERR(map)) |
| 1173 | return PTR_ERR(map); |
Daniel Borkmann | 87df15d | 2019-04-09 23:20:06 +0200 | [diff] [blame] | 1174 | if (!(map_get_sys_perms(map, f) & FMODE_CAN_WRITE)) { |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 1175 | err = -EPERM; |
| 1176 | goto err_put; |
| 1177 | } |
| 1178 | |
Mauricio Vasquez B | c9d29f4 | 2018-10-18 15:16:14 +0200 | [diff] [blame] | 1179 | key = __bpf_copy_key(ukey, map->key_size); |
Al Viro | e4448ed | 2017-05-13 18:43:00 -0400 | [diff] [blame] | 1180 | if (IS_ERR(key)) { |
| 1181 | err = PTR_ERR(key); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1182 | goto err_put; |
Al Viro | e4448ed | 2017-05-13 18:43:00 -0400 | [diff] [blame] | 1183 | } |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1184 | |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 1185 | if (bpf_map_is_dev_bound(map)) { |
| 1186 | err = bpf_map_offload_delete_elem(map, key); |
| 1187 | goto out; |
Martin KaFai Lau | 85d33df | 2020-01-08 16:35:05 -0800 | [diff] [blame] | 1188 | } else if (IS_FD_PROG_ARRAY(map) || |
| 1189 | map->map_type == BPF_MAP_TYPE_STRUCT_OPS) { |
| 1190 | /* These maps require sleepable context */ |
Daniel Borkmann | da765a2 | 2019-11-22 21:07:58 +0100 | [diff] [blame] | 1191 | err = map->ops->map_delete_elem(map, key); |
| 1192 | goto out; |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 1193 | } |
| 1194 | |
Thomas Gleixner | b6e5dae | 2020-02-24 15:01:49 +0100 | [diff] [blame] | 1195 | bpf_disable_instrumentation(); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1196 | rcu_read_lock(); |
| 1197 | err = map->ops->map_delete_elem(map, key); |
| 1198 | rcu_read_unlock(); |
Thomas Gleixner | b6e5dae | 2020-02-24 15:01:49 +0100 | [diff] [blame] | 1199 | bpf_enable_instrumentation(); |
Daniel Colascione | 1ae80cf | 2018-10-12 03:54:27 -0700 | [diff] [blame] | 1200 | maybe_wait_bpf_programs(map); |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 1201 | out: |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1202 | kfree(key); |
| 1203 | err_put: |
| 1204 | fdput(f); |
| 1205 | return err; |
| 1206 | } |
| 1207 | |
| 1208 | /* last field in 'union bpf_attr' used by this command */ |
| 1209 | #define BPF_MAP_GET_NEXT_KEY_LAST_FIELD next_key |
| 1210 | |
| 1211 | static int map_get_next_key(union bpf_attr *attr) |
| 1212 | { |
Mickaël Salaün | 535e7b4b | 2016-11-13 19:44:03 +0100 | [diff] [blame] | 1213 | void __user *ukey = u64_to_user_ptr(attr->key); |
| 1214 | void __user *unext_key = u64_to_user_ptr(attr->next_key); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1215 | int ufd = attr->map_fd; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1216 | struct bpf_map *map; |
| 1217 | void *key, *next_key; |
Daniel Borkmann | 592867b | 2015-09-08 18:00:09 +0200 | [diff] [blame] | 1218 | struct fd f; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1219 | int err; |
| 1220 | |
| 1221 | if (CHECK_ATTR(BPF_MAP_GET_NEXT_KEY)) |
| 1222 | return -EINVAL; |
| 1223 | |
Daniel Borkmann | 592867b | 2015-09-08 18:00:09 +0200 | [diff] [blame] | 1224 | f = fdget(ufd); |
Daniel Borkmann | c210129 | 2015-10-29 14:58:07 +0100 | [diff] [blame] | 1225 | map = __bpf_map_get(f); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1226 | if (IS_ERR(map)) |
| 1227 | return PTR_ERR(map); |
Daniel Borkmann | 87df15d | 2019-04-09 23:20:06 +0200 | [diff] [blame] | 1228 | if (!(map_get_sys_perms(map, f) & FMODE_CAN_READ)) { |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 1229 | err = -EPERM; |
| 1230 | goto err_put; |
| 1231 | } |
| 1232 | |
Teng Qin | 8fe4592 | 2017-04-24 19:00:37 -0700 | [diff] [blame] | 1233 | if (ukey) { |
Mauricio Vasquez B | c9d29f4 | 2018-10-18 15:16:14 +0200 | [diff] [blame] | 1234 | key = __bpf_copy_key(ukey, map->key_size); |
Al Viro | e4448ed | 2017-05-13 18:43:00 -0400 | [diff] [blame] | 1235 | if (IS_ERR(key)) { |
| 1236 | err = PTR_ERR(key); |
Teng Qin | 8fe4592 | 2017-04-24 19:00:37 -0700 | [diff] [blame] | 1237 | goto err_put; |
Al Viro | e4448ed | 2017-05-13 18:43:00 -0400 | [diff] [blame] | 1238 | } |
Teng Qin | 8fe4592 | 2017-04-24 19:00:37 -0700 | [diff] [blame] | 1239 | } else { |
| 1240 | key = NULL; |
| 1241 | } |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1242 | |
| 1243 | err = -ENOMEM; |
| 1244 | next_key = kmalloc(map->key_size, GFP_USER); |
| 1245 | if (!next_key) |
| 1246 | goto free_key; |
| 1247 | |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 1248 | if (bpf_map_is_dev_bound(map)) { |
| 1249 | err = bpf_map_offload_get_next_key(map, key, next_key); |
| 1250 | goto out; |
| 1251 | } |
| 1252 | |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1253 | rcu_read_lock(); |
| 1254 | err = map->ops->map_get_next_key(map, key, next_key); |
| 1255 | rcu_read_unlock(); |
Jakub Kicinski | a388457 | 2018-01-11 20:29:09 -0800 | [diff] [blame] | 1256 | out: |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 1257 | if (err) |
| 1258 | goto free_next_key; |
| 1259 | |
| 1260 | err = -EFAULT; |
| 1261 | if (copy_to_user(unext_key, next_key, map->key_size) != 0) |
| 1262 | goto free_next_key; |
| 1263 | |
| 1264 | err = 0; |
| 1265 | |
| 1266 | free_next_key: |
| 1267 | kfree(next_key); |
| 1268 | free_key: |
| 1269 | kfree(key); |
| 1270 | err_put: |
| 1271 | fdput(f); |
| 1272 | return err; |
| 1273 | } |
| 1274 | |
Brian Vazquez | aa2e93b | 2020-01-15 10:43:02 -0800 | [diff] [blame] | 1275 | int generic_map_delete_batch(struct bpf_map *map, |
| 1276 | const union bpf_attr *attr, |
| 1277 | union bpf_attr __user *uattr) |
| 1278 | { |
| 1279 | void __user *keys = u64_to_user_ptr(attr->batch.keys); |
| 1280 | u32 cp, max_count; |
| 1281 | int err = 0; |
| 1282 | void *key; |
| 1283 | |
| 1284 | if (attr->batch.elem_flags & ~BPF_F_LOCK) |
| 1285 | return -EINVAL; |
| 1286 | |
| 1287 | if ((attr->batch.elem_flags & BPF_F_LOCK) && |
| 1288 | !map_value_has_spin_lock(map)) { |
| 1289 | return -EINVAL; |
| 1290 | } |
| 1291 | |
| 1292 | max_count = attr->batch.count; |
| 1293 | if (!max_count) |
| 1294 | return 0; |
| 1295 | |
Brian Vazquez | 2e3a94a | 2020-01-19 11:40:40 -0800 | [diff] [blame] | 1296 | key = kmalloc(map->key_size, GFP_USER | __GFP_NOWARN); |
| 1297 | if (!key) |
| 1298 | return -ENOMEM; |
| 1299 | |
Brian Vazquez | aa2e93b | 2020-01-15 10:43:02 -0800 | [diff] [blame] | 1300 | for (cp = 0; cp < max_count; cp++) { |
Brian Vazquez | 2e3a94a | 2020-01-19 11:40:40 -0800 | [diff] [blame] | 1301 | err = -EFAULT; |
| 1302 | if (copy_from_user(key, keys + cp * map->key_size, |
| 1303 | map->key_size)) |
Brian Vazquez | aa2e93b | 2020-01-15 10:43:02 -0800 | [diff] [blame] | 1304 | break; |
Brian Vazquez | aa2e93b | 2020-01-15 10:43:02 -0800 | [diff] [blame] | 1305 | |
| 1306 | if (bpf_map_is_dev_bound(map)) { |
| 1307 | err = bpf_map_offload_delete_elem(map, key); |
| 1308 | break; |
| 1309 | } |
| 1310 | |
Thomas Gleixner | b6e5dae | 2020-02-24 15:01:49 +0100 | [diff] [blame] | 1311 | bpf_disable_instrumentation(); |
Brian Vazquez | aa2e93b | 2020-01-15 10:43:02 -0800 | [diff] [blame] | 1312 | rcu_read_lock(); |
| 1313 | err = map->ops->map_delete_elem(map, key); |
| 1314 | rcu_read_unlock(); |
Thomas Gleixner | b6e5dae | 2020-02-24 15:01:49 +0100 | [diff] [blame] | 1315 | bpf_enable_instrumentation(); |
Brian Vazquez | aa2e93b | 2020-01-15 10:43:02 -0800 | [diff] [blame] | 1316 | maybe_wait_bpf_programs(map); |
| 1317 | if (err) |
| 1318 | break; |
| 1319 | } |
| 1320 | if (copy_to_user(&uattr->batch.count, &cp, sizeof(cp))) |
| 1321 | err = -EFAULT; |
Brian Vazquez | 2e3a94a | 2020-01-19 11:40:40 -0800 | [diff] [blame] | 1322 | |
| 1323 | kfree(key); |
Brian Vazquez | aa2e93b | 2020-01-15 10:43:02 -0800 | [diff] [blame] | 1324 | return err; |
| 1325 | } |
| 1326 | |
| 1327 | int generic_map_update_batch(struct bpf_map *map, |
| 1328 | const union bpf_attr *attr, |
| 1329 | union bpf_attr __user *uattr) |
| 1330 | { |
| 1331 | void __user *values = u64_to_user_ptr(attr->batch.values); |
| 1332 | void __user *keys = u64_to_user_ptr(attr->batch.keys); |
| 1333 | u32 value_size, cp, max_count; |
| 1334 | int ufd = attr->map_fd; |
| 1335 | void *key, *value; |
| 1336 | struct fd f; |
| 1337 | int err = 0; |
| 1338 | |
| 1339 | f = fdget(ufd); |
| 1340 | if (attr->batch.elem_flags & ~BPF_F_LOCK) |
| 1341 | return -EINVAL; |
| 1342 | |
| 1343 | if ((attr->batch.elem_flags & BPF_F_LOCK) && |
| 1344 | !map_value_has_spin_lock(map)) { |
| 1345 | return -EINVAL; |
| 1346 | } |
| 1347 | |
| 1348 | value_size = bpf_map_value_size(map); |
| 1349 | |
| 1350 | max_count = attr->batch.count; |
| 1351 | if (!max_count) |
| 1352 | return 0; |
| 1353 | |
Brian Vazquez | 2e3a94a | 2020-01-19 11:40:40 -0800 | [diff] [blame] | 1354 | key = kmalloc(map->key_size, GFP_USER | __GFP_NOWARN); |
| 1355 | if (!key) |
Brian Vazquez | aa2e93b | 2020-01-15 10:43:02 -0800 | [diff] [blame] | 1356 | return -ENOMEM; |
| 1357 | |
Brian Vazquez | 2e3a94a | 2020-01-19 11:40:40 -0800 | [diff] [blame] | 1358 | value = kmalloc(value_size, GFP_USER | __GFP_NOWARN); |
| 1359 | if (!value) { |
| 1360 | kfree(key); |
| 1361 | return -ENOMEM; |
| 1362 | } |
| 1363 | |
Brian Vazquez | aa2e93b | 2020-01-15 10:43:02 -0800 | [diff] [blame] | 1364 | for (cp = 0; cp < max_count; cp++) { |
Brian Vazquez | aa2e93b | 2020-01-15 10:43:02 -0800 | [diff] [blame] | 1365 | err = -EFAULT; |
Brian Vazquez | 2e3a94a | 2020-01-19 11:40:40 -0800 | [diff] [blame] | 1366 | if (copy_from_user(key, keys + cp * map->key_size, |
| 1367 | map->key_size) || |
| 1368 | copy_from_user(value, values + cp * value_size, value_size)) |
Brian Vazquez | aa2e93b | 2020-01-15 10:43:02 -0800 | [diff] [blame] | 1369 | break; |
| 1370 | |
| 1371 | err = bpf_map_update_value(map, f, key, value, |
| 1372 | attr->batch.elem_flags); |
| 1373 | |
| 1374 | if (err) |
| 1375 | break; |
| 1376 | } |
| 1377 | |
| 1378 | if (copy_to_user(&uattr->batch.count, &cp, sizeof(cp))) |
| 1379 | err = -EFAULT; |
| 1380 | |
| 1381 | kfree(value); |
| 1382 | kfree(key); |
| 1383 | return err; |
| 1384 | } |
| 1385 | |
Brian Vazquez | cb4d03a | 2020-01-15 10:43:01 -0800 | [diff] [blame] | 1386 | #define MAP_LOOKUP_RETRIES 3 |
| 1387 | |
| 1388 | int generic_map_lookup_batch(struct bpf_map *map, |
| 1389 | const union bpf_attr *attr, |
| 1390 | union bpf_attr __user *uattr) |
| 1391 | { |
| 1392 | void __user *uobatch = u64_to_user_ptr(attr->batch.out_batch); |
| 1393 | void __user *ubatch = u64_to_user_ptr(attr->batch.in_batch); |
| 1394 | void __user *values = u64_to_user_ptr(attr->batch.values); |
| 1395 | void __user *keys = u64_to_user_ptr(attr->batch.keys); |
| 1396 | void *buf, *buf_prevkey, *prev_key, *key, *value; |
| 1397 | int err, retry = MAP_LOOKUP_RETRIES; |
| 1398 | u32 value_size, cp, max_count; |
Brian Vazquez | cb4d03a | 2020-01-15 10:43:01 -0800 | [diff] [blame] | 1399 | |
| 1400 | if (attr->batch.elem_flags & ~BPF_F_LOCK) |
| 1401 | return -EINVAL; |
| 1402 | |
| 1403 | if ((attr->batch.elem_flags & BPF_F_LOCK) && |
| 1404 | !map_value_has_spin_lock(map)) |
| 1405 | return -EINVAL; |
| 1406 | |
| 1407 | value_size = bpf_map_value_size(map); |
| 1408 | |
| 1409 | max_count = attr->batch.count; |
| 1410 | if (!max_count) |
| 1411 | return 0; |
| 1412 | |
| 1413 | if (put_user(0, &uattr->batch.count)) |
| 1414 | return -EFAULT; |
| 1415 | |
| 1416 | buf_prevkey = kmalloc(map->key_size, GFP_USER | __GFP_NOWARN); |
| 1417 | if (!buf_prevkey) |
| 1418 | return -ENOMEM; |
| 1419 | |
| 1420 | buf = kmalloc(map->key_size + value_size, GFP_USER | __GFP_NOWARN); |
| 1421 | if (!buf) { |
Denis Efremov | bb2359f | 2020-06-01 19:28:14 +0300 | [diff] [blame] | 1422 | kfree(buf_prevkey); |
Brian Vazquez | cb4d03a | 2020-01-15 10:43:01 -0800 | [diff] [blame] | 1423 | return -ENOMEM; |
| 1424 | } |
| 1425 | |
| 1426 | err = -EFAULT; |
Brian Vazquez | cb4d03a | 2020-01-15 10:43:01 -0800 | [diff] [blame] | 1427 | prev_key = NULL; |
| 1428 | if (ubatch && copy_from_user(buf_prevkey, ubatch, map->key_size)) |
| 1429 | goto free_buf; |
| 1430 | key = buf; |
| 1431 | value = key + map->key_size; |
| 1432 | if (ubatch) |
| 1433 | prev_key = buf_prevkey; |
| 1434 | |
| 1435 | for (cp = 0; cp < max_count;) { |
| 1436 | rcu_read_lock(); |
| 1437 | err = map->ops->map_get_next_key(map, prev_key, key); |
| 1438 | rcu_read_unlock(); |
| 1439 | if (err) |
| 1440 | break; |
| 1441 | err = bpf_map_copy_value(map, key, value, |
| 1442 | attr->batch.elem_flags); |
| 1443 | |
| 1444 | if (err == -ENOENT) { |
| 1445 | if (retry) { |
| 1446 | retry--; |
| 1447 | continue; |
| 1448 | } |
| 1449 | err = -EINTR; |
| 1450 | break; |
| 1451 | } |
| 1452 | |
| 1453 | if (err) |
| 1454 | goto free_buf; |
| 1455 | |
| 1456 | if (copy_to_user(keys + cp * map->key_size, key, |
| 1457 | map->key_size)) { |
| 1458 | err = -EFAULT; |
| 1459 | goto free_buf; |
| 1460 | } |
| 1461 | if (copy_to_user(values + cp * value_size, value, value_size)) { |
| 1462 | err = -EFAULT; |
| 1463 | goto free_buf; |
| 1464 | } |
| 1465 | |
| 1466 | if (!prev_key) |
| 1467 | prev_key = buf_prevkey; |
| 1468 | |
| 1469 | swap(prev_key, key); |
| 1470 | retry = MAP_LOOKUP_RETRIES; |
| 1471 | cp++; |
| 1472 | } |
| 1473 | |
| 1474 | if (err == -EFAULT) |
| 1475 | goto free_buf; |
| 1476 | |
| 1477 | if ((copy_to_user(&uattr->batch.count, &cp, sizeof(cp)) || |
| 1478 | (cp && copy_to_user(uobatch, prev_key, map->key_size)))) |
| 1479 | err = -EFAULT; |
| 1480 | |
| 1481 | free_buf: |
| 1482 | kfree(buf_prevkey); |
| 1483 | kfree(buf); |
| 1484 | return err; |
| 1485 | } |
| 1486 | |
Denis Salopek | 3e87f19 | 2021-05-11 23:00:04 +0200 | [diff] [blame] | 1487 | #define BPF_MAP_LOOKUP_AND_DELETE_ELEM_LAST_FIELD flags |
Mauricio Vasquez B | bd513cd | 2018-10-18 15:16:30 +0200 | [diff] [blame] | 1488 | |
| 1489 | static int map_lookup_and_delete_elem(union bpf_attr *attr) |
| 1490 | { |
| 1491 | void __user *ukey = u64_to_user_ptr(attr->key); |
| 1492 | void __user *uvalue = u64_to_user_ptr(attr->value); |
| 1493 | int ufd = attr->map_fd; |
| 1494 | struct bpf_map *map; |
Alexei Starovoitov | 540fefc | 2018-10-19 13:52:38 -0700 | [diff] [blame] | 1495 | void *key, *value; |
Mauricio Vasquez B | bd513cd | 2018-10-18 15:16:30 +0200 | [diff] [blame] | 1496 | u32 value_size; |
| 1497 | struct fd f; |
| 1498 | int err; |
| 1499 | |
| 1500 | if (CHECK_ATTR(BPF_MAP_LOOKUP_AND_DELETE_ELEM)) |
| 1501 | return -EINVAL; |
| 1502 | |
Denis Salopek | 3e87f19 | 2021-05-11 23:00:04 +0200 | [diff] [blame] | 1503 | if (attr->flags & ~BPF_F_LOCK) |
| 1504 | return -EINVAL; |
| 1505 | |
Mauricio Vasquez B | bd513cd | 2018-10-18 15:16:30 +0200 | [diff] [blame] | 1506 | f = fdget(ufd); |
| 1507 | map = __bpf_map_get(f); |
| 1508 | if (IS_ERR(map)) |
| 1509 | return PTR_ERR(map); |
Anton Protopopov | 1ea0f91 | 2020-05-27 18:56:59 +0000 | [diff] [blame] | 1510 | if (!(map_get_sys_perms(map, f) & FMODE_CAN_READ) || |
| 1511 | !(map_get_sys_perms(map, f) & FMODE_CAN_WRITE)) { |
Mauricio Vasquez B | bd513cd | 2018-10-18 15:16:30 +0200 | [diff] [blame] | 1512 | err = -EPERM; |
| 1513 | goto err_put; |
| 1514 | } |
| 1515 | |
Denis Salopek | 3e87f19 | 2021-05-11 23:00:04 +0200 | [diff] [blame] | 1516 | if (attr->flags && |
| 1517 | (map->map_type == BPF_MAP_TYPE_QUEUE || |
| 1518 | map->map_type == BPF_MAP_TYPE_STACK)) { |
| 1519 | err = -EINVAL; |
| 1520 | goto err_put; |
| 1521 | } |
| 1522 | |
| 1523 | if ((attr->flags & BPF_F_LOCK) && |
| 1524 | !map_value_has_spin_lock(map)) { |
| 1525 | err = -EINVAL; |
| 1526 | goto err_put; |
| 1527 | } |
| 1528 | |
Mauricio Vasquez B | bd513cd | 2018-10-18 15:16:30 +0200 | [diff] [blame] | 1529 | key = __bpf_copy_key(ukey, map->key_size); |
| 1530 | if (IS_ERR(key)) { |
| 1531 | err = PTR_ERR(key); |
| 1532 | goto err_put; |
| 1533 | } |
| 1534 | |
Denis Salopek | 3e87f19 | 2021-05-11 23:00:04 +0200 | [diff] [blame] | 1535 | value_size = bpf_map_value_size(map); |
Mauricio Vasquez B | bd513cd | 2018-10-18 15:16:30 +0200 | [diff] [blame] | 1536 | |
| 1537 | err = -ENOMEM; |
| 1538 | value = kmalloc(value_size, GFP_USER | __GFP_NOWARN); |
| 1539 | if (!value) |
| 1540 | goto free_key; |
| 1541 | |
Denis Salopek | 3e87f19 | 2021-05-11 23:00:04 +0200 | [diff] [blame] | 1542 | err = -ENOTSUPP; |
Mauricio Vasquez B | bd513cd | 2018-10-18 15:16:30 +0200 | [diff] [blame] | 1543 | if (map->map_type == BPF_MAP_TYPE_QUEUE || |
| 1544 | map->map_type == BPF_MAP_TYPE_STACK) { |
| 1545 | err = map->ops->map_pop_elem(map, value); |
Denis Salopek | 3e87f19 | 2021-05-11 23:00:04 +0200 | [diff] [blame] | 1546 | } else if (map->map_type == BPF_MAP_TYPE_HASH || |
| 1547 | map->map_type == BPF_MAP_TYPE_PERCPU_HASH || |
| 1548 | map->map_type == BPF_MAP_TYPE_LRU_HASH || |
| 1549 | map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) { |
| 1550 | if (!bpf_map_is_dev_bound(map)) { |
| 1551 | bpf_disable_instrumentation(); |
| 1552 | rcu_read_lock(); |
| 1553 | err = map->ops->map_lookup_and_delete_elem(map, key, value, attr->flags); |
| 1554 | rcu_read_unlock(); |
| 1555 | bpf_enable_instrumentation(); |
| 1556 | } |
Mauricio Vasquez B | bd513cd | 2018-10-18 15:16:30 +0200 | [diff] [blame] | 1557 | } |
| 1558 | |
| 1559 | if (err) |
| 1560 | goto free_value; |
| 1561 | |
Wei Yongjun | 7f64546 | 2020-04-30 08:18:51 +0000 | [diff] [blame] | 1562 | if (copy_to_user(uvalue, value, value_size) != 0) { |
| 1563 | err = -EFAULT; |
Mauricio Vasquez B | bd513cd | 2018-10-18 15:16:30 +0200 | [diff] [blame] | 1564 | goto free_value; |
Wei Yongjun | 7f64546 | 2020-04-30 08:18:51 +0000 | [diff] [blame] | 1565 | } |
Mauricio Vasquez B | bd513cd | 2018-10-18 15:16:30 +0200 | [diff] [blame] | 1566 | |
| 1567 | err = 0; |
| 1568 | |
| 1569 | free_value: |
| 1570 | kfree(value); |
| 1571 | free_key: |
| 1572 | kfree(key); |
| 1573 | err_put: |
| 1574 | fdput(f); |
| 1575 | return err; |
| 1576 | } |
| 1577 | |
Daniel Borkmann | 87df15d | 2019-04-09 23:20:06 +0200 | [diff] [blame] | 1578 | #define BPF_MAP_FREEZE_LAST_FIELD map_fd |
| 1579 | |
| 1580 | static int map_freeze(const union bpf_attr *attr) |
| 1581 | { |
| 1582 | int err = 0, ufd = attr->map_fd; |
| 1583 | struct bpf_map *map; |
| 1584 | struct fd f; |
| 1585 | |
| 1586 | if (CHECK_ATTR(BPF_MAP_FREEZE)) |
| 1587 | return -EINVAL; |
| 1588 | |
| 1589 | f = fdget(ufd); |
| 1590 | map = __bpf_map_get(f); |
| 1591 | if (IS_ERR(map)) |
| 1592 | return PTR_ERR(map); |
Andrii Nakryiko | fc97022 | 2019-11-17 09:28:04 -0800 | [diff] [blame] | 1593 | |
Martin KaFai Lau | 849b4d9 | 2020-03-04 17:34:54 -0800 | [diff] [blame] | 1594 | if (map->map_type == BPF_MAP_TYPE_STRUCT_OPS) { |
| 1595 | fdput(f); |
| 1596 | return -ENOTSUPP; |
| 1597 | } |
| 1598 | |
Andrii Nakryiko | fc97022 | 2019-11-17 09:28:04 -0800 | [diff] [blame] | 1599 | mutex_lock(&map->freeze_mutex); |
| 1600 | |
| 1601 | if (map->writecnt) { |
| 1602 | err = -EBUSY; |
| 1603 | goto err_put; |
| 1604 | } |
Daniel Borkmann | 87df15d | 2019-04-09 23:20:06 +0200 | [diff] [blame] | 1605 | if (READ_ONCE(map->frozen)) { |
| 1606 | err = -EBUSY; |
| 1607 | goto err_put; |
| 1608 | } |
Alexei Starovoitov | 2c78ee8 | 2020-05-13 16:03:54 -0700 | [diff] [blame] | 1609 | if (!bpf_capable()) { |
Daniel Borkmann | 87df15d | 2019-04-09 23:20:06 +0200 | [diff] [blame] | 1610 | err = -EPERM; |
| 1611 | goto err_put; |
| 1612 | } |
| 1613 | |
| 1614 | WRITE_ONCE(map->frozen, true); |
| 1615 | err_put: |
Andrii Nakryiko | fc97022 | 2019-11-17 09:28:04 -0800 | [diff] [blame] | 1616 | mutex_unlock(&map->freeze_mutex); |
Daniel Borkmann | 87df15d | 2019-04-09 23:20:06 +0200 | [diff] [blame] | 1617 | fdput(f); |
| 1618 | return err; |
| 1619 | } |
| 1620 | |
Jakub Kicinski | 7de16e3 | 2017-10-16 16:40:53 -0700 | [diff] [blame] | 1621 | static const struct bpf_prog_ops * const bpf_prog_types[] = { |
Alexei Starovoitov | 91cc1a9 | 2019-11-14 10:57:15 -0800 | [diff] [blame] | 1622 | #define BPF_PROG_TYPE(_id, _name, prog_ctx_type, kern_ctx_type) \ |
Jakub Kicinski | 7de16e3 | 2017-10-16 16:40:53 -0700 | [diff] [blame] | 1623 | [_id] = & _name ## _prog_ops, |
| 1624 | #define BPF_MAP_TYPE(_id, _ops) |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 1625 | #define BPF_LINK_TYPE(_id, _name) |
Jakub Kicinski | 7de16e3 | 2017-10-16 16:40:53 -0700 | [diff] [blame] | 1626 | #include <linux/bpf_types.h> |
| 1627 | #undef BPF_PROG_TYPE |
| 1628 | #undef BPF_MAP_TYPE |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 1629 | #undef BPF_LINK_TYPE |
Jakub Kicinski | 7de16e3 | 2017-10-16 16:40:53 -0700 | [diff] [blame] | 1630 | }; |
| 1631 | |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1632 | static int find_prog_type(enum bpf_prog_type type, struct bpf_prog *prog) |
| 1633 | { |
Daniel Borkmann | d0f1a45 | 2018-05-04 02:13:57 +0200 | [diff] [blame] | 1634 | const struct bpf_prog_ops *ops; |
| 1635 | |
| 1636 | if (type >= ARRAY_SIZE(bpf_prog_types)) |
| 1637 | return -EINVAL; |
| 1638 | type = array_index_nospec(type, ARRAY_SIZE(bpf_prog_types)); |
| 1639 | ops = bpf_prog_types[type]; |
| 1640 | if (!ops) |
Johannes Berg | be9370a | 2017-04-11 15:34:57 +0200 | [diff] [blame] | 1641 | return -EINVAL; |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1642 | |
Jakub Kicinski | ab3f006 | 2017-11-03 13:56:17 -0700 | [diff] [blame] | 1643 | if (!bpf_prog_is_dev_bound(prog->aux)) |
Daniel Borkmann | d0f1a45 | 2018-05-04 02:13:57 +0200 | [diff] [blame] | 1644 | prog->aux->ops = ops; |
Jakub Kicinski | ab3f006 | 2017-11-03 13:56:17 -0700 | [diff] [blame] | 1645 | else |
| 1646 | prog->aux->ops = &bpf_offload_prog_ops; |
Johannes Berg | be9370a | 2017-04-11 15:34:57 +0200 | [diff] [blame] | 1647 | prog->type = type; |
| 1648 | return 0; |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1649 | } |
| 1650 | |
Daniel Borkmann | bae141f | 2019-12-06 22:49:34 +0100 | [diff] [blame] | 1651 | enum bpf_audit { |
| 1652 | BPF_AUDIT_LOAD, |
| 1653 | BPF_AUDIT_UNLOAD, |
| 1654 | BPF_AUDIT_MAX, |
| 1655 | }; |
| 1656 | |
| 1657 | static const char * const bpf_audit_str[BPF_AUDIT_MAX] = { |
| 1658 | [BPF_AUDIT_LOAD] = "LOAD", |
| 1659 | [BPF_AUDIT_UNLOAD] = "UNLOAD", |
| 1660 | }; |
| 1661 | |
| 1662 | static void bpf_audit_prog(const struct bpf_prog *prog, unsigned int op) |
| 1663 | { |
| 1664 | struct audit_context *ctx = NULL; |
| 1665 | struct audit_buffer *ab; |
| 1666 | |
| 1667 | if (WARN_ON_ONCE(op >= BPF_AUDIT_MAX)) |
| 1668 | return; |
| 1669 | if (audit_enabled == AUDIT_OFF) |
| 1670 | return; |
| 1671 | if (op == BPF_AUDIT_LOAD) |
| 1672 | ctx = audit_context(); |
| 1673 | ab = audit_log_start(ctx, GFP_ATOMIC, AUDIT_BPF); |
| 1674 | if (unlikely(!ab)) |
| 1675 | return; |
| 1676 | audit_log_format(ab, "prog-id=%u op=%s", |
| 1677 | prog->aux->id, bpf_audit_str[op]); |
| 1678 | audit_log_end(ab); |
| 1679 | } |
| 1680 | |
Martin KaFai Lau | dc4bb0e | 2017-06-05 12:15:46 -0700 | [diff] [blame] | 1681 | static int bpf_prog_alloc_id(struct bpf_prog *prog) |
| 1682 | { |
| 1683 | int id; |
| 1684 | |
Shaohua Li | b76354c | 2018-03-27 11:53:21 -0700 | [diff] [blame] | 1685 | idr_preload(GFP_KERNEL); |
Martin KaFai Lau | dc4bb0e | 2017-06-05 12:15:46 -0700 | [diff] [blame] | 1686 | spin_lock_bh(&prog_idr_lock); |
| 1687 | id = idr_alloc_cyclic(&prog_idr, prog, 1, INT_MAX, GFP_ATOMIC); |
| 1688 | if (id > 0) |
| 1689 | prog->aux->id = id; |
| 1690 | spin_unlock_bh(&prog_idr_lock); |
Shaohua Li | b76354c | 2018-03-27 11:53:21 -0700 | [diff] [blame] | 1691 | idr_preload_end(); |
Martin KaFai Lau | dc4bb0e | 2017-06-05 12:15:46 -0700 | [diff] [blame] | 1692 | |
| 1693 | /* id is in [1, INT_MAX) */ |
| 1694 | if (WARN_ON_ONCE(!id)) |
| 1695 | return -ENOSPC; |
| 1696 | |
| 1697 | return id > 0 ? 0 : id; |
| 1698 | } |
| 1699 | |
Jakub Kicinski | ad8ad79 | 2017-12-27 18:39:07 -0800 | [diff] [blame] | 1700 | 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] | 1701 | { |
Jakub Kicinski | ad8ad79 | 2017-12-27 18:39:07 -0800 | [diff] [blame] | 1702 | /* cBPF to eBPF migrations are currently not in the idr store. |
| 1703 | * Offloaded programs are removed from the store when their device |
| 1704 | * disappears - even if someone grabs an fd to them they are unusable, |
| 1705 | * simply waiting for refcnt to drop to be freed. |
| 1706 | */ |
Martin KaFai Lau | dc4bb0e | 2017-06-05 12:15:46 -0700 | [diff] [blame] | 1707 | if (!prog->aux->id) |
| 1708 | return; |
| 1709 | |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 1710 | if (do_idr_lock) |
| 1711 | spin_lock_bh(&prog_idr_lock); |
| 1712 | else |
| 1713 | __acquire(&prog_idr_lock); |
| 1714 | |
Martin KaFai Lau | dc4bb0e | 2017-06-05 12:15:46 -0700 | [diff] [blame] | 1715 | idr_remove(&prog_idr, prog->aux->id); |
Jakub Kicinski | ad8ad79 | 2017-12-27 18:39:07 -0800 | [diff] [blame] | 1716 | prog->aux->id = 0; |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 1717 | |
| 1718 | if (do_idr_lock) |
| 1719 | spin_unlock_bh(&prog_idr_lock); |
| 1720 | else |
| 1721 | __release(&prog_idr_lock); |
Martin KaFai Lau | dc4bb0e | 2017-06-05 12:15:46 -0700 | [diff] [blame] | 1722 | } |
| 1723 | |
Daniel Borkmann | 1aacde3 | 2016-06-30 17:24:43 +0200 | [diff] [blame] | 1724 | static void __bpf_prog_put_rcu(struct rcu_head *rcu) |
Alexei Starovoitov | abf2e7d | 2015-05-28 19:26:02 -0700 | [diff] [blame] | 1725 | { |
| 1726 | struct bpf_prog_aux *aux = container_of(rcu, struct bpf_prog_aux, rcu); |
| 1727 | |
Daniel Borkmann | 3b4d9eb | 2019-10-22 23:30:38 +0200 | [diff] [blame] | 1728 | kvfree(aux->func_info); |
Alexei Starovoitov | 8c1b6e6 | 2019-11-14 10:57:16 -0800 | [diff] [blame] | 1729 | kfree(aux->func_info_aux); |
Roman Gushchin | 3ac1f01 | 2020-12-01 13:58:59 -0800 | [diff] [blame] | 1730 | free_uid(aux->user); |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 1731 | security_bpf_prog_free(aux); |
Alexei Starovoitov | abf2e7d | 2015-05-28 19:26:02 -0700 | [diff] [blame] | 1732 | bpf_prog_free(aux->prog); |
| 1733 | } |
| 1734 | |
Daniel Borkmann | cd7455f | 2019-10-22 15:57:23 +0200 | [diff] [blame] | 1735 | static void __bpf_prog_put_noref(struct bpf_prog *prog, bool deferred) |
| 1736 | { |
| 1737 | bpf_prog_kallsyms_del_all(prog); |
| 1738 | btf_put(prog->aux->btf); |
Martin KaFai Lau | e16301f | 2021-03-24 18:51:30 -0700 | [diff] [blame] | 1739 | kvfree(prog->aux->jited_linfo); |
| 1740 | kvfree(prog->aux->linfo); |
Martin KaFai Lau | e6ac245 | 2021-03-24 18:51:42 -0700 | [diff] [blame] | 1741 | kfree(prog->aux->kfunc_tab); |
Andrii Nakryiko | 22dc4a0 | 2020-12-03 12:46:29 -0800 | [diff] [blame] | 1742 | if (prog->aux->attach_btf) |
| 1743 | btf_put(prog->aux->attach_btf); |
Daniel Borkmann | cd7455f | 2019-10-22 15:57:23 +0200 | [diff] [blame] | 1744 | |
Alexei Starovoitov | 1e6c62a | 2020-08-27 15:01:11 -0700 | [diff] [blame] | 1745 | if (deferred) { |
| 1746 | if (prog->aux->sleepable) |
| 1747 | call_rcu_tasks_trace(&prog->aux->rcu, __bpf_prog_put_rcu); |
| 1748 | else |
| 1749 | call_rcu(&prog->aux->rcu, __bpf_prog_put_rcu); |
| 1750 | } else { |
Daniel Borkmann | cd7455f | 2019-10-22 15:57:23 +0200 | [diff] [blame] | 1751 | __bpf_prog_put_rcu(&prog->aux->rcu); |
Alexei Starovoitov | 1e6c62a | 2020-08-27 15:01:11 -0700 | [diff] [blame] | 1752 | } |
Daniel Borkmann | cd7455f | 2019-10-22 15:57:23 +0200 | [diff] [blame] | 1753 | } |
| 1754 | |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 1755 | 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] | 1756 | { |
Andrii Nakryiko | 85192db | 2019-11-17 09:28:03 -0800 | [diff] [blame] | 1757 | if (atomic64_dec_and_test(&prog->aux->refcnt)) { |
Song Liu | 6ee52e2 | 2019-01-17 08:15:15 -0800 | [diff] [blame] | 1758 | perf_event_bpf_event(prog, PERF_BPF_EVENT_PROG_UNLOAD, 0); |
Daniel Borkmann | bae141f | 2019-12-06 22:49:34 +0100 | [diff] [blame] | 1759 | bpf_audit_prog(prog, BPF_AUDIT_UNLOAD); |
Martin KaFai Lau | 34ad558 | 2017-06-05 12:15:48 -0700 | [diff] [blame] | 1760 | /* bpf_prog_free_id() must be called first */ |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 1761 | bpf_prog_free_id(prog, do_idr_lock); |
Daniel Borkmann | cd7455f | 2019-10-22 15:57:23 +0200 | [diff] [blame] | 1762 | __bpf_prog_put_noref(prog, true); |
Daniel Borkmann | a67edbf | 2017-01-25 02:28:18 +0100 | [diff] [blame] | 1763 | } |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1764 | } |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 1765 | |
| 1766 | void bpf_prog_put(struct bpf_prog *prog) |
| 1767 | { |
| 1768 | __bpf_prog_put(prog, true); |
| 1769 | } |
Daniel Borkmann | e2e9b65 | 2015-03-01 12:31:48 +0100 | [diff] [blame] | 1770 | EXPORT_SYMBOL_GPL(bpf_prog_put); |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1771 | |
| 1772 | static int bpf_prog_release(struct inode *inode, struct file *filp) |
| 1773 | { |
| 1774 | struct bpf_prog *prog = filp->private_data; |
| 1775 | |
Daniel Borkmann | 1aacde3 | 2016-06-30 17:24:43 +0200 | [diff] [blame] | 1776 | bpf_prog_put(prog); |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1777 | return 0; |
| 1778 | } |
| 1779 | |
Alexei Starovoitov | 492ecee | 2019-02-25 14:28:39 -0800 | [diff] [blame] | 1780 | static void bpf_prog_get_stats(const struct bpf_prog *prog, |
| 1781 | struct bpf_prog_stats *stats) |
| 1782 | { |
Alexei Starovoitov | 9ed9e9b | 2021-02-09 19:36:31 -0800 | [diff] [blame] | 1783 | u64 nsecs = 0, cnt = 0, misses = 0; |
Alexei Starovoitov | 492ecee | 2019-02-25 14:28:39 -0800 | [diff] [blame] | 1784 | int cpu; |
| 1785 | |
| 1786 | for_each_possible_cpu(cpu) { |
| 1787 | const struct bpf_prog_stats *st; |
| 1788 | unsigned int start; |
Alexei Starovoitov | 9ed9e9b | 2021-02-09 19:36:31 -0800 | [diff] [blame] | 1789 | u64 tnsecs, tcnt, tmisses; |
Alexei Starovoitov | 492ecee | 2019-02-25 14:28:39 -0800 | [diff] [blame] | 1790 | |
Alexei Starovoitov | 700d479 | 2021-02-09 19:36:26 -0800 | [diff] [blame] | 1791 | st = per_cpu_ptr(prog->stats, cpu); |
Alexei Starovoitov | 492ecee | 2019-02-25 14:28:39 -0800 | [diff] [blame] | 1792 | do { |
| 1793 | start = u64_stats_fetch_begin_irq(&st->syncp); |
| 1794 | tnsecs = st->nsecs; |
| 1795 | tcnt = st->cnt; |
Alexei Starovoitov | 9ed9e9b | 2021-02-09 19:36:31 -0800 | [diff] [blame] | 1796 | tmisses = st->misses; |
Alexei Starovoitov | 492ecee | 2019-02-25 14:28:39 -0800 | [diff] [blame] | 1797 | } while (u64_stats_fetch_retry_irq(&st->syncp, start)); |
| 1798 | nsecs += tnsecs; |
| 1799 | cnt += tcnt; |
Alexei Starovoitov | 9ed9e9b | 2021-02-09 19:36:31 -0800 | [diff] [blame] | 1800 | misses += tmisses; |
Alexei Starovoitov | 492ecee | 2019-02-25 14:28:39 -0800 | [diff] [blame] | 1801 | } |
| 1802 | stats->nsecs = nsecs; |
| 1803 | stats->cnt = cnt; |
Alexei Starovoitov | 9ed9e9b | 2021-02-09 19:36:31 -0800 | [diff] [blame] | 1804 | stats->misses = misses; |
Alexei Starovoitov | 492ecee | 2019-02-25 14:28:39 -0800 | [diff] [blame] | 1805 | } |
| 1806 | |
Daniel Borkmann | 7bd509e | 2016-12-04 23:19:41 +0100 | [diff] [blame] | 1807 | #ifdef CONFIG_PROC_FS |
| 1808 | static void bpf_prog_show_fdinfo(struct seq_file *m, struct file *filp) |
| 1809 | { |
| 1810 | const struct bpf_prog *prog = filp->private_data; |
Daniel Borkmann | f1f7714 | 2017-01-13 23:38:15 +0100 | [diff] [blame] | 1811 | char prog_tag[sizeof(prog->tag) * 2 + 1] = { }; |
Alexei Starovoitov | 492ecee | 2019-02-25 14:28:39 -0800 | [diff] [blame] | 1812 | struct bpf_prog_stats stats; |
Daniel Borkmann | 7bd509e | 2016-12-04 23:19:41 +0100 | [diff] [blame] | 1813 | |
Alexei Starovoitov | 492ecee | 2019-02-25 14:28:39 -0800 | [diff] [blame] | 1814 | bpf_prog_get_stats(prog, &stats); |
Daniel Borkmann | f1f7714 | 2017-01-13 23:38:15 +0100 | [diff] [blame] | 1815 | bin2hex(prog_tag, prog->tag, sizeof(prog->tag)); |
Daniel Borkmann | 7bd509e | 2016-12-04 23:19:41 +0100 | [diff] [blame] | 1816 | seq_printf(m, |
| 1817 | "prog_type:\t%u\n" |
| 1818 | "prog_jited:\t%u\n" |
Daniel Borkmann | f1f7714 | 2017-01-13 23:38:15 +0100 | [diff] [blame] | 1819 | "prog_tag:\t%s\n" |
Daniel Borkmann | 4316b40 | 2018-06-02 23:06:34 +0200 | [diff] [blame] | 1820 | "memlock:\t%llu\n" |
Alexei Starovoitov | 492ecee | 2019-02-25 14:28:39 -0800 | [diff] [blame] | 1821 | "prog_id:\t%u\n" |
| 1822 | "run_time_ns:\t%llu\n" |
Alexei Starovoitov | 9ed9e9b | 2021-02-09 19:36:31 -0800 | [diff] [blame] | 1823 | "run_cnt:\t%llu\n" |
| 1824 | "recursion_misses:\t%llu\n", |
Daniel Borkmann | 7bd509e | 2016-12-04 23:19:41 +0100 | [diff] [blame] | 1825 | prog->type, |
| 1826 | prog->jited, |
Daniel Borkmann | f1f7714 | 2017-01-13 23:38:15 +0100 | [diff] [blame] | 1827 | prog_tag, |
Daniel Borkmann | 4316b40 | 2018-06-02 23:06:34 +0200 | [diff] [blame] | 1828 | prog->pages * 1ULL << PAGE_SHIFT, |
Alexei Starovoitov | 492ecee | 2019-02-25 14:28:39 -0800 | [diff] [blame] | 1829 | prog->aux->id, |
| 1830 | stats.nsecs, |
Alexei Starovoitov | 9ed9e9b | 2021-02-09 19:36:31 -0800 | [diff] [blame] | 1831 | stats.cnt, |
| 1832 | stats.misses); |
Daniel Borkmann | 7bd509e | 2016-12-04 23:19:41 +0100 | [diff] [blame] | 1833 | } |
| 1834 | #endif |
| 1835 | |
Chenbo Feng | f66e448 | 2017-10-18 13:00:26 -0700 | [diff] [blame] | 1836 | const struct file_operations bpf_prog_fops = { |
Daniel Borkmann | 7bd509e | 2016-12-04 23:19:41 +0100 | [diff] [blame] | 1837 | #ifdef CONFIG_PROC_FS |
| 1838 | .show_fdinfo = bpf_prog_show_fdinfo, |
| 1839 | #endif |
| 1840 | .release = bpf_prog_release, |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 1841 | .read = bpf_dummy_read, |
| 1842 | .write = bpf_dummy_write, |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1843 | }; |
| 1844 | |
Daniel Borkmann | b219775 | 2015-10-29 14:58:09 +0100 | [diff] [blame] | 1845 | int bpf_prog_new_fd(struct bpf_prog *prog) |
Daniel Borkmann | aa79781 | 2015-10-29 14:58:06 +0100 | [diff] [blame] | 1846 | { |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 1847 | int ret; |
| 1848 | |
| 1849 | ret = security_bpf_prog(prog); |
| 1850 | if (ret < 0) |
| 1851 | return ret; |
| 1852 | |
Daniel Borkmann | aa79781 | 2015-10-29 14:58:06 +0100 | [diff] [blame] | 1853 | return anon_inode_getfd("bpf-prog", &bpf_prog_fops, prog, |
| 1854 | O_RDWR | O_CLOEXEC); |
| 1855 | } |
| 1856 | |
Daniel Borkmann | 113214b | 2016-06-30 17:24:44 +0200 | [diff] [blame] | 1857 | static struct bpf_prog *____bpf_prog_get(struct fd f) |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1858 | { |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1859 | if (!f.file) |
| 1860 | return ERR_PTR(-EBADF); |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1861 | if (f.file->f_op != &bpf_prog_fops) { |
| 1862 | fdput(f); |
| 1863 | return ERR_PTR(-EINVAL); |
| 1864 | } |
| 1865 | |
Daniel Borkmann | c210129 | 2015-10-29 14:58:07 +0100 | [diff] [blame] | 1866 | return f.file->private_data; |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1867 | } |
| 1868 | |
Andrii Nakryiko | 85192db | 2019-11-17 09:28:03 -0800 | [diff] [blame] | 1869 | void bpf_prog_add(struct bpf_prog *prog, int i) |
Alexei Starovoitov | 92117d8 | 2016-04-27 18:56:20 -0700 | [diff] [blame] | 1870 | { |
Andrii Nakryiko | 85192db | 2019-11-17 09:28:03 -0800 | [diff] [blame] | 1871 | atomic64_add(i, &prog->aux->refcnt); |
Alexei Starovoitov | 92117d8 | 2016-04-27 18:56:20 -0700 | [diff] [blame] | 1872 | } |
Brenden Blanco | 59d3656 | 2016-07-19 12:16:46 -0700 | [diff] [blame] | 1873 | EXPORT_SYMBOL_GPL(bpf_prog_add); |
| 1874 | |
Daniel Borkmann | c540594 | 2016-11-09 22:02:34 +0100 | [diff] [blame] | 1875 | void bpf_prog_sub(struct bpf_prog *prog, int i) |
| 1876 | { |
| 1877 | /* Only to be used for undoing previous bpf_prog_add() in some |
| 1878 | * error path. We still know that another entity in our call |
| 1879 | * path holds a reference to the program, thus atomic_sub() can |
| 1880 | * be safely used in such cases! |
| 1881 | */ |
Andrii Nakryiko | 85192db | 2019-11-17 09:28:03 -0800 | [diff] [blame] | 1882 | WARN_ON(atomic64_sub_return(i, &prog->aux->refcnt) == 0); |
Daniel Borkmann | c540594 | 2016-11-09 22:02:34 +0100 | [diff] [blame] | 1883 | } |
| 1884 | EXPORT_SYMBOL_GPL(bpf_prog_sub); |
| 1885 | |
Andrii Nakryiko | 85192db | 2019-11-17 09:28:03 -0800 | [diff] [blame] | 1886 | void bpf_prog_inc(struct bpf_prog *prog) |
Brenden Blanco | 59d3656 | 2016-07-19 12:16:46 -0700 | [diff] [blame] | 1887 | { |
Andrii Nakryiko | 85192db | 2019-11-17 09:28:03 -0800 | [diff] [blame] | 1888 | atomic64_inc(&prog->aux->refcnt); |
Brenden Blanco | 59d3656 | 2016-07-19 12:16:46 -0700 | [diff] [blame] | 1889 | } |
Daniel Borkmann | 97bc402 | 2016-11-19 01:45:00 +0100 | [diff] [blame] | 1890 | EXPORT_SYMBOL_GPL(bpf_prog_inc); |
Alexei Starovoitov | 92117d8 | 2016-04-27 18:56:20 -0700 | [diff] [blame] | 1891 | |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 1892 | /* prog_idr_lock should have been held */ |
John Fastabend | a6f6df6 | 2017-08-15 22:32:22 -0700 | [diff] [blame] | 1893 | 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] | 1894 | { |
| 1895 | int refold; |
| 1896 | |
Andrii Nakryiko | 85192db | 2019-11-17 09:28:03 -0800 | [diff] [blame] | 1897 | refold = atomic64_fetch_add_unless(&prog->aux->refcnt, 1, 0); |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 1898 | |
| 1899 | if (!refold) |
| 1900 | return ERR_PTR(-ENOENT); |
| 1901 | |
| 1902 | return prog; |
| 1903 | } |
John Fastabend | a6f6df6 | 2017-08-15 22:32:22 -0700 | [diff] [blame] | 1904 | EXPORT_SYMBOL_GPL(bpf_prog_inc_not_zero); |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 1905 | |
Al Viro | 040ee69 | 2017-12-02 20:20:38 -0500 | [diff] [blame] | 1906 | bool bpf_prog_get_ok(struct bpf_prog *prog, |
Jakub Kicinski | 288b3de | 2017-11-20 15:21:54 -0800 | [diff] [blame] | 1907 | enum bpf_prog_type *attach_type, bool attach_drv) |
Jakub Kicinski | 248f346 | 2017-11-03 13:56:20 -0700 | [diff] [blame] | 1908 | { |
Jakub Kicinski | 288b3de | 2017-11-20 15:21:54 -0800 | [diff] [blame] | 1909 | /* not an attachment, just a refcount inc, always allow */ |
| 1910 | if (!attach_type) |
| 1911 | return true; |
Jakub Kicinski | 248f346 | 2017-11-03 13:56:20 -0700 | [diff] [blame] | 1912 | |
| 1913 | if (prog->type != *attach_type) |
| 1914 | return false; |
Jakub Kicinski | 288b3de | 2017-11-20 15:21:54 -0800 | [diff] [blame] | 1915 | if (bpf_prog_is_dev_bound(prog->aux) && !attach_drv) |
Jakub Kicinski | 248f346 | 2017-11-03 13:56:20 -0700 | [diff] [blame] | 1916 | return false; |
| 1917 | |
| 1918 | return true; |
| 1919 | } |
| 1920 | |
| 1921 | 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] | 1922 | bool attach_drv) |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1923 | { |
| 1924 | struct fd f = fdget(ufd); |
| 1925 | struct bpf_prog *prog; |
| 1926 | |
Daniel Borkmann | 113214b | 2016-06-30 17:24:44 +0200 | [diff] [blame] | 1927 | prog = ____bpf_prog_get(f); |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1928 | if (IS_ERR(prog)) |
| 1929 | return prog; |
Jakub Kicinski | 288b3de | 2017-11-20 15:21:54 -0800 | [diff] [blame] | 1930 | if (!bpf_prog_get_ok(prog, attach_type, attach_drv)) { |
Daniel Borkmann | 113214b | 2016-06-30 17:24:44 +0200 | [diff] [blame] | 1931 | prog = ERR_PTR(-EINVAL); |
| 1932 | goto out; |
| 1933 | } |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1934 | |
Andrii Nakryiko | 85192db | 2019-11-17 09:28:03 -0800 | [diff] [blame] | 1935 | bpf_prog_inc(prog); |
Daniel Borkmann | 113214b | 2016-06-30 17:24:44 +0200 | [diff] [blame] | 1936 | out: |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 1937 | fdput(f); |
| 1938 | return prog; |
| 1939 | } |
Daniel Borkmann | 113214b | 2016-06-30 17:24:44 +0200 | [diff] [blame] | 1940 | |
| 1941 | struct bpf_prog *bpf_prog_get(u32 ufd) |
| 1942 | { |
Jakub Kicinski | 288b3de | 2017-11-20 15:21:54 -0800 | [diff] [blame] | 1943 | return __bpf_prog_get(ufd, NULL, false); |
Daniel Borkmann | 113214b | 2016-06-30 17:24:44 +0200 | [diff] [blame] | 1944 | } |
| 1945 | |
Jakub Kicinski | 248f346 | 2017-11-03 13:56:20 -0700 | [diff] [blame] | 1946 | 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] | 1947 | bool attach_drv) |
Jakub Kicinski | 248f346 | 2017-11-03 13:56:20 -0700 | [diff] [blame] | 1948 | { |
Alexei Starovoitov | 4d220ed | 2018-04-28 19:56:37 -0700 | [diff] [blame] | 1949 | return __bpf_prog_get(ufd, &type, attach_drv); |
Jakub Kicinski | 248f346 | 2017-11-03 13:56:20 -0700 | [diff] [blame] | 1950 | } |
Jakub Kicinski | 6c8dfe2 | 2017-11-03 13:56:21 -0700 | [diff] [blame] | 1951 | EXPORT_SYMBOL_GPL(bpf_prog_get_type_dev); |
Jakub Kicinski | 248f346 | 2017-11-03 13:56:20 -0700 | [diff] [blame] | 1952 | |
Andrey Ignatov | aac3fc3 | 2018-03-30 15:08:07 -0700 | [diff] [blame] | 1953 | /* Initially all BPF programs could be loaded w/o specifying |
| 1954 | * expected_attach_type. Later for some of them specifying expected_attach_type |
| 1955 | * at load time became required so that program could be validated properly. |
| 1956 | * Programs of types that are allowed to be loaded both w/ and w/o (for |
| 1957 | * backward compatibility) expected_attach_type, should have the default attach |
| 1958 | * type assigned to expected_attach_type for the latter case, so that it can be |
| 1959 | * validated later at attach time. |
| 1960 | * |
| 1961 | * bpf_prog_load_fixup_attach_type() sets expected_attach_type in @attr if |
| 1962 | * prog type requires it but has some attach types that have to be backward |
| 1963 | * compatible. |
| 1964 | */ |
| 1965 | static void bpf_prog_load_fixup_attach_type(union bpf_attr *attr) |
| 1966 | { |
| 1967 | switch (attr->prog_type) { |
| 1968 | case BPF_PROG_TYPE_CGROUP_SOCK: |
| 1969 | /* Unfortunately BPF_ATTACH_TYPE_UNSPEC enumeration doesn't |
| 1970 | * exist so checking for non-zero is the way to go here. |
| 1971 | */ |
| 1972 | if (!attr->expected_attach_type) |
| 1973 | attr->expected_attach_type = |
| 1974 | BPF_CGROUP_INET_SOCK_CREATE; |
| 1975 | break; |
Kuniyuki Iwashima | d5e4dda | 2021-06-12 21:32:22 +0900 | [diff] [blame] | 1976 | case BPF_PROG_TYPE_SK_REUSEPORT: |
| 1977 | if (!attr->expected_attach_type) |
| 1978 | attr->expected_attach_type = |
| 1979 | BPF_SK_REUSEPORT_SELECT; |
| 1980 | break; |
Andrey Ignatov | aac3fc3 | 2018-03-30 15:08:07 -0700 | [diff] [blame] | 1981 | } |
| 1982 | } |
| 1983 | |
Andrey Ignatov | 5e43f89 | 2018-03-30 15:08:00 -0700 | [diff] [blame] | 1984 | static int |
Alexei Starovoitov | ccfe29e | 2019-10-15 20:24:58 -0700 | [diff] [blame] | 1985 | bpf_prog_load_check_attach(enum bpf_prog_type prog_type, |
| 1986 | enum bpf_attach_type expected_attach_type, |
Andrii Nakryiko | 290248a | 2020-12-03 12:46:30 -0800 | [diff] [blame] | 1987 | struct btf *attach_btf, u32 btf_id, |
| 1988 | struct bpf_prog *dst_prog) |
Andrey Ignatov | 5e43f89 | 2018-03-30 15:08:00 -0700 | [diff] [blame] | 1989 | { |
Martin KaFai Lau | 27ae7997 | 2020-01-08 16:35:03 -0800 | [diff] [blame] | 1990 | if (btf_id) { |
Alexei Starovoitov | c108e3c | 2019-10-17 23:09:33 -0700 | [diff] [blame] | 1991 | if (btf_id > BTF_MAX_TYPE) |
| 1992 | return -EINVAL; |
Martin KaFai Lau | 27ae7997 | 2020-01-08 16:35:03 -0800 | [diff] [blame] | 1993 | |
Andrii Nakryiko | 290248a | 2020-12-03 12:46:30 -0800 | [diff] [blame] | 1994 | if (!attach_btf && !dst_prog) |
| 1995 | return -EINVAL; |
| 1996 | |
Martin KaFai Lau | 27ae7997 | 2020-01-08 16:35:03 -0800 | [diff] [blame] | 1997 | switch (prog_type) { |
| 1998 | case BPF_PROG_TYPE_TRACING: |
KP Singh | 9e4e01d | 2020-03-29 01:43:52 +0100 | [diff] [blame] | 1999 | case BPF_PROG_TYPE_LSM: |
Martin KaFai Lau | 27ae7997 | 2020-01-08 16:35:03 -0800 | [diff] [blame] | 2000 | case BPF_PROG_TYPE_STRUCT_OPS: |
Alexei Starovoitov | be8704f | 2020-01-20 16:53:46 -0800 | [diff] [blame] | 2001 | case BPF_PROG_TYPE_EXT: |
Martin KaFai Lau | 27ae7997 | 2020-01-08 16:35:03 -0800 | [diff] [blame] | 2002 | break; |
| 2003 | default: |
Alexei Starovoitov | c108e3c | 2019-10-17 23:09:33 -0700 | [diff] [blame] | 2004 | return -EINVAL; |
Martin KaFai Lau | 27ae7997 | 2020-01-08 16:35:03 -0800 | [diff] [blame] | 2005 | } |
Alexei Starovoitov | c108e3c | 2019-10-17 23:09:33 -0700 | [diff] [blame] | 2006 | } |
| 2007 | |
Andrii Nakryiko | 290248a | 2020-12-03 12:46:30 -0800 | [diff] [blame] | 2008 | if (attach_btf && (!btf_id || dst_prog)) |
| 2009 | return -EINVAL; |
| 2010 | |
| 2011 | if (dst_prog && prog_type != BPF_PROG_TYPE_TRACING && |
Alexei Starovoitov | be8704f | 2020-01-20 16:53:46 -0800 | [diff] [blame] | 2012 | prog_type != BPF_PROG_TYPE_EXT) |
Martin KaFai Lau | 27ae7997 | 2020-01-08 16:35:03 -0800 | [diff] [blame] | 2013 | return -EINVAL; |
| 2014 | |
Alexei Starovoitov | c108e3c | 2019-10-17 23:09:33 -0700 | [diff] [blame] | 2015 | switch (prog_type) { |
Andrey Ignatov | aac3fc3 | 2018-03-30 15:08:07 -0700 | [diff] [blame] | 2016 | case BPF_PROG_TYPE_CGROUP_SOCK: |
| 2017 | switch (expected_attach_type) { |
| 2018 | case BPF_CGROUP_INET_SOCK_CREATE: |
Stanislav Fomichev | f583674 | 2020-07-06 16:01:25 -0700 | [diff] [blame] | 2019 | case BPF_CGROUP_INET_SOCK_RELEASE: |
Andrey Ignatov | aac3fc3 | 2018-03-30 15:08:07 -0700 | [diff] [blame] | 2020 | case BPF_CGROUP_INET4_POST_BIND: |
| 2021 | case BPF_CGROUP_INET6_POST_BIND: |
| 2022 | return 0; |
| 2023 | default: |
| 2024 | return -EINVAL; |
| 2025 | } |
Andrey Ignatov | 4fbac77 | 2018-03-30 15:08:02 -0700 | [diff] [blame] | 2026 | case BPF_PROG_TYPE_CGROUP_SOCK_ADDR: |
| 2027 | switch (expected_attach_type) { |
| 2028 | case BPF_CGROUP_INET4_BIND: |
| 2029 | case BPF_CGROUP_INET6_BIND: |
Andrey Ignatov | d74bad4 | 2018-03-30 15:08:05 -0700 | [diff] [blame] | 2030 | case BPF_CGROUP_INET4_CONNECT: |
| 2031 | case BPF_CGROUP_INET6_CONNECT: |
Daniel Borkmann | 1b66d25 | 2020-05-19 00:45:45 +0200 | [diff] [blame] | 2032 | case BPF_CGROUP_INET4_GETPEERNAME: |
| 2033 | case BPF_CGROUP_INET6_GETPEERNAME: |
| 2034 | case BPF_CGROUP_INET4_GETSOCKNAME: |
| 2035 | case BPF_CGROUP_INET6_GETSOCKNAME: |
Andrey Ignatov | 1cedee1 | 2018-05-25 08:55:23 -0700 | [diff] [blame] | 2036 | case BPF_CGROUP_UDP4_SENDMSG: |
| 2037 | case BPF_CGROUP_UDP6_SENDMSG: |
Daniel Borkmann | 983695f | 2019-06-07 01:48:57 +0200 | [diff] [blame] | 2038 | case BPF_CGROUP_UDP4_RECVMSG: |
| 2039 | case BPF_CGROUP_UDP6_RECVMSG: |
Andrey Ignatov | 4fbac77 | 2018-03-30 15:08:02 -0700 | [diff] [blame] | 2040 | return 0; |
| 2041 | default: |
| 2042 | return -EINVAL; |
| 2043 | } |
brakmo | 5cf1e91 | 2019-05-28 16:59:36 -0700 | [diff] [blame] | 2044 | case BPF_PROG_TYPE_CGROUP_SKB: |
| 2045 | switch (expected_attach_type) { |
| 2046 | case BPF_CGROUP_INET_INGRESS: |
| 2047 | case BPF_CGROUP_INET_EGRESS: |
| 2048 | return 0; |
| 2049 | default: |
| 2050 | return -EINVAL; |
| 2051 | } |
Stanislav Fomichev | 0d01da6 | 2019-06-27 13:38:47 -0700 | [diff] [blame] | 2052 | case BPF_PROG_TYPE_CGROUP_SOCKOPT: |
| 2053 | switch (expected_attach_type) { |
| 2054 | case BPF_CGROUP_SETSOCKOPT: |
| 2055 | case BPF_CGROUP_GETSOCKOPT: |
| 2056 | return 0; |
| 2057 | default: |
| 2058 | return -EINVAL; |
| 2059 | } |
Jakub Sitnicki | e9ddbb7 | 2020-07-17 12:35:23 +0200 | [diff] [blame] | 2060 | case BPF_PROG_TYPE_SK_LOOKUP: |
| 2061 | if (expected_attach_type == BPF_SK_LOOKUP) |
| 2062 | return 0; |
| 2063 | return -EINVAL; |
Kuniyuki Iwashima | d5e4dda | 2021-06-12 21:32:22 +0900 | [diff] [blame] | 2064 | case BPF_PROG_TYPE_SK_REUSEPORT: |
| 2065 | switch (expected_attach_type) { |
| 2066 | case BPF_SK_REUSEPORT_SELECT: |
| 2067 | case BPF_SK_REUSEPORT_SELECT_OR_MIGRATE: |
| 2068 | return 0; |
| 2069 | default: |
| 2070 | return -EINVAL; |
| 2071 | } |
Alexei Starovoitov | 79a7f8b | 2021-05-13 17:36:03 -0700 | [diff] [blame] | 2072 | case BPF_PROG_TYPE_SYSCALL: |
Alexei Starovoitov | be8704f | 2020-01-20 16:53:46 -0800 | [diff] [blame] | 2073 | case BPF_PROG_TYPE_EXT: |
| 2074 | if (expected_attach_type) |
| 2075 | return -EINVAL; |
Gustavo A. R. Silva | df561f66 | 2020-08-23 17:36:59 -0500 | [diff] [blame] | 2076 | fallthrough; |
Andrey Ignatov | 4fbac77 | 2018-03-30 15:08:02 -0700 | [diff] [blame] | 2077 | default: |
| 2078 | return 0; |
| 2079 | } |
Andrey Ignatov | 5e43f89 | 2018-03-30 15:08:00 -0700 | [diff] [blame] | 2080 | } |
| 2081 | |
Alexei Starovoitov | 2c78ee8 | 2020-05-13 16:03:54 -0700 | [diff] [blame] | 2082 | static bool is_net_admin_prog_type(enum bpf_prog_type prog_type) |
| 2083 | { |
| 2084 | switch (prog_type) { |
| 2085 | case BPF_PROG_TYPE_SCHED_CLS: |
| 2086 | case BPF_PROG_TYPE_SCHED_ACT: |
| 2087 | case BPF_PROG_TYPE_XDP: |
| 2088 | case BPF_PROG_TYPE_LWT_IN: |
| 2089 | case BPF_PROG_TYPE_LWT_OUT: |
| 2090 | case BPF_PROG_TYPE_LWT_XMIT: |
| 2091 | case BPF_PROG_TYPE_LWT_SEG6LOCAL: |
| 2092 | case BPF_PROG_TYPE_SK_SKB: |
| 2093 | case BPF_PROG_TYPE_SK_MSG: |
| 2094 | case BPF_PROG_TYPE_LIRC_MODE2: |
| 2095 | case BPF_PROG_TYPE_FLOW_DISSECTOR: |
| 2096 | case BPF_PROG_TYPE_CGROUP_DEVICE: |
| 2097 | case BPF_PROG_TYPE_CGROUP_SOCK: |
| 2098 | case BPF_PROG_TYPE_CGROUP_SOCK_ADDR: |
| 2099 | case BPF_PROG_TYPE_CGROUP_SOCKOPT: |
| 2100 | case BPF_PROG_TYPE_CGROUP_SYSCTL: |
| 2101 | case BPF_PROG_TYPE_SOCK_OPS: |
| 2102 | case BPF_PROG_TYPE_EXT: /* extends any prog */ |
| 2103 | return true; |
| 2104 | case BPF_PROG_TYPE_CGROUP_SKB: |
| 2105 | /* always unpriv */ |
| 2106 | case BPF_PROG_TYPE_SK_REUSEPORT: |
| 2107 | /* equivalent to SOCKET_FILTER. need CAP_BPF only */ |
| 2108 | default: |
| 2109 | return false; |
| 2110 | } |
| 2111 | } |
| 2112 | |
| 2113 | static bool is_perfmon_prog_type(enum bpf_prog_type prog_type) |
| 2114 | { |
| 2115 | switch (prog_type) { |
| 2116 | case BPF_PROG_TYPE_KPROBE: |
| 2117 | case BPF_PROG_TYPE_TRACEPOINT: |
| 2118 | case BPF_PROG_TYPE_PERF_EVENT: |
| 2119 | case BPF_PROG_TYPE_RAW_TRACEPOINT: |
| 2120 | case BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE: |
| 2121 | case BPF_PROG_TYPE_TRACING: |
| 2122 | case BPF_PROG_TYPE_LSM: |
| 2123 | case BPF_PROG_TYPE_STRUCT_OPS: /* has access to struct sock */ |
| 2124 | case BPF_PROG_TYPE_EXT: /* extends any prog */ |
| 2125 | return true; |
| 2126 | default: |
| 2127 | return false; |
| 2128 | } |
| 2129 | } |
| 2130 | |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2131 | /* last field in 'union bpf_attr' used by this command */ |
Alexei Starovoitov | 387544b | 2021-05-13 17:36:10 -0700 | [diff] [blame] | 2132 | #define BPF_PROG_LOAD_LAST_FIELD fd_array |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2133 | |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 2134 | static int bpf_prog_load(union bpf_attr *attr, bpfptr_t uattr) |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2135 | { |
| 2136 | enum bpf_prog_type type = attr->prog_type; |
Andrii Nakryiko | 290248a | 2020-12-03 12:46:30 -0800 | [diff] [blame] | 2137 | struct bpf_prog *prog, *dst_prog = NULL; |
| 2138 | struct btf *attach_btf = NULL; |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2139 | int err; |
| 2140 | char license[128]; |
| 2141 | bool is_gpl; |
| 2142 | |
| 2143 | if (CHECK_ATTR(BPF_PROG_LOAD)) |
| 2144 | return -EINVAL; |
| 2145 | |
Jiong Wang | c240eff | 2019-05-24 23:25:16 +0100 | [diff] [blame] | 2146 | if (attr->prog_flags & ~(BPF_F_STRICT_ALIGNMENT | |
| 2147 | BPF_F_ANY_ALIGNMENT | |
Alexei Starovoitov | 10d274e | 2019-08-22 22:52:12 -0700 | [diff] [blame] | 2148 | BPF_F_TEST_STATE_FREQ | |
Alexei Starovoitov | 1e6c62a | 2020-08-27 15:01:11 -0700 | [diff] [blame] | 2149 | BPF_F_SLEEPABLE | |
Jiong Wang | c240eff | 2019-05-24 23:25:16 +0100 | [diff] [blame] | 2150 | BPF_F_TEST_RND_HI32)) |
David S. Miller | e07b98d | 2017-05-10 11:38:07 -0700 | [diff] [blame] | 2151 | return -EINVAL; |
| 2152 | |
David Miller | e9ee9ef | 2018-11-30 21:08:14 -0800 | [diff] [blame] | 2153 | if (!IS_ENABLED(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && |
| 2154 | (attr->prog_flags & BPF_F_ANY_ALIGNMENT) && |
Alexei Starovoitov | 2c78ee8 | 2020-05-13 16:03:54 -0700 | [diff] [blame] | 2155 | !bpf_capable()) |
David Miller | e9ee9ef | 2018-11-30 21:08:14 -0800 | [diff] [blame] | 2156 | return -EPERM; |
| 2157 | |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2158 | /* copy eBPF program license from user space */ |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 2159 | if (strncpy_from_bpfptr(license, |
| 2160 | make_bpfptr(attr->license, uattr.is_kernel), |
| 2161 | sizeof(license) - 1) < 0) |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2162 | return -EFAULT; |
| 2163 | license[sizeof(license) - 1] = 0; |
| 2164 | |
| 2165 | /* eBPF programs must be GPL compatible to use GPL-ed functions */ |
| 2166 | is_gpl = license_is_gpl_compatible(license); |
| 2167 | |
Alexei Starovoitov | c04c0d2 | 2019-04-01 21:27:45 -0700 | [diff] [blame] | 2168 | if (attr->insn_cnt == 0 || |
Alexei Starovoitov | 2c78ee8 | 2020-05-13 16:03:54 -0700 | [diff] [blame] | 2169 | attr->insn_cnt > (bpf_capable() ? BPF_COMPLEXITY_LIMIT_INSNS : BPF_MAXINSNS)) |
Daniel Borkmann | ef0915c | 2016-12-07 01:15:44 +0100 | [diff] [blame] | 2170 | return -E2BIG; |
Chenbo Feng | 80b7d81 | 2017-05-31 18:16:00 -0700 | [diff] [blame] | 2171 | if (type != BPF_PROG_TYPE_SOCKET_FILTER && |
| 2172 | type != BPF_PROG_TYPE_CGROUP_SKB && |
Alexei Starovoitov | 2c78ee8 | 2020-05-13 16:03:54 -0700 | [diff] [blame] | 2173 | !bpf_capable()) |
| 2174 | return -EPERM; |
| 2175 | |
Maciej Żenczykowski | b338cb9 | 2020-06-20 14:26:16 -0700 | [diff] [blame] | 2176 | if (is_net_admin_prog_type(type) && !capable(CAP_NET_ADMIN) && !capable(CAP_SYS_ADMIN)) |
Alexei Starovoitov | 2c78ee8 | 2020-05-13 16:03:54 -0700 | [diff] [blame] | 2177 | return -EPERM; |
| 2178 | if (is_perfmon_prog_type(type) && !perfmon_capable()) |
Alexei Starovoitov | 1be7f75 | 2015-10-07 22:23:21 -0700 | [diff] [blame] | 2179 | return -EPERM; |
| 2180 | |
Andrii Nakryiko | 290248a | 2020-12-03 12:46:30 -0800 | [diff] [blame] | 2181 | /* attach_prog_fd/attach_btf_obj_fd can specify fd of either bpf_prog |
| 2182 | * or btf, we need to check which one it is |
| 2183 | */ |
| 2184 | if (attr->attach_prog_fd) { |
| 2185 | dst_prog = bpf_prog_get(attr->attach_prog_fd); |
| 2186 | if (IS_ERR(dst_prog)) { |
| 2187 | dst_prog = NULL; |
| 2188 | attach_btf = btf_get_by_fd(attr->attach_btf_obj_fd); |
| 2189 | if (IS_ERR(attach_btf)) |
| 2190 | return -EINVAL; |
| 2191 | if (!btf_is_kernel(attach_btf)) { |
Andrii Nakryiko | 8bdd8e2 | 2020-12-07 22:43:26 -0800 | [diff] [blame] | 2192 | /* attaching through specifying bpf_prog's BTF |
| 2193 | * objects directly might be supported eventually |
| 2194 | */ |
Andrii Nakryiko | 290248a | 2020-12-03 12:46:30 -0800 | [diff] [blame] | 2195 | btf_put(attach_btf); |
Andrii Nakryiko | 8bdd8e2 | 2020-12-07 22:43:26 -0800 | [diff] [blame] | 2196 | return -ENOTSUPP; |
Andrii Nakryiko | 290248a | 2020-12-03 12:46:30 -0800 | [diff] [blame] | 2197 | } |
| 2198 | } |
| 2199 | } else if (attr->attach_btf_id) { |
| 2200 | /* fall back to vmlinux BTF, if BTF type ID is specified */ |
| 2201 | attach_btf = bpf_get_btf_vmlinux(); |
| 2202 | if (IS_ERR(attach_btf)) |
| 2203 | return PTR_ERR(attach_btf); |
| 2204 | if (!attach_btf) |
| 2205 | return -EINVAL; |
| 2206 | btf_get(attach_btf); |
| 2207 | } |
| 2208 | |
Andrey Ignatov | aac3fc3 | 2018-03-30 15:08:07 -0700 | [diff] [blame] | 2209 | bpf_prog_load_fixup_attach_type(attr); |
Alexei Starovoitov | ccfe29e | 2019-10-15 20:24:58 -0700 | [diff] [blame] | 2210 | if (bpf_prog_load_check_attach(type, attr->expected_attach_type, |
Andrii Nakryiko | 290248a | 2020-12-03 12:46:30 -0800 | [diff] [blame] | 2211 | attach_btf, attr->attach_btf_id, |
| 2212 | dst_prog)) { |
| 2213 | if (dst_prog) |
| 2214 | bpf_prog_put(dst_prog); |
| 2215 | if (attach_btf) |
| 2216 | btf_put(attach_btf); |
Andrey Ignatov | 5e43f89 | 2018-03-30 15:08:00 -0700 | [diff] [blame] | 2217 | return -EINVAL; |
Andrii Nakryiko | 290248a | 2020-12-03 12:46:30 -0800 | [diff] [blame] | 2218 | } |
Andrey Ignatov | 5e43f89 | 2018-03-30 15:08:00 -0700 | [diff] [blame] | 2219 | |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2220 | /* plain bpf_prog allocation */ |
| 2221 | prog = bpf_prog_alloc(bpf_prog_size(attr->insn_cnt), GFP_USER); |
Andrii Nakryiko | 290248a | 2020-12-03 12:46:30 -0800 | [diff] [blame] | 2222 | if (!prog) { |
| 2223 | if (dst_prog) |
| 2224 | bpf_prog_put(dst_prog); |
| 2225 | if (attach_btf) |
| 2226 | btf_put(attach_btf); |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2227 | return -ENOMEM; |
Andrii Nakryiko | 290248a | 2020-12-03 12:46:30 -0800 | [diff] [blame] | 2228 | } |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2229 | |
Andrey Ignatov | 5e43f89 | 2018-03-30 15:08:00 -0700 | [diff] [blame] | 2230 | prog->expected_attach_type = attr->expected_attach_type; |
Andrii Nakryiko | 290248a | 2020-12-03 12:46:30 -0800 | [diff] [blame] | 2231 | prog->aux->attach_btf = attach_btf; |
Alexei Starovoitov | ccfe29e | 2019-10-15 20:24:58 -0700 | [diff] [blame] | 2232 | prog->aux->attach_btf_id = attr->attach_btf_id; |
Andrii Nakryiko | 290248a | 2020-12-03 12:46:30 -0800 | [diff] [blame] | 2233 | prog->aux->dst_prog = dst_prog; |
Jakub Kicinski | 9a18eed | 2017-12-27 18:39:04 -0800 | [diff] [blame] | 2234 | prog->aux->offload_requested = !!attr->prog_ifindex; |
Alexei Starovoitov | 1e6c62a | 2020-08-27 15:01:11 -0700 | [diff] [blame] | 2235 | prog->aux->sleepable = attr->prog_flags & BPF_F_SLEEPABLE; |
Jakub Kicinski | 9a18eed | 2017-12-27 18:39:04 -0800 | [diff] [blame] | 2236 | |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 2237 | err = security_bpf_prog_alloc(prog->aux); |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 2238 | if (err) |
Roman Gushchin | 3ac1f01 | 2020-12-01 13:58:59 -0800 | [diff] [blame] | 2239 | goto free_prog; |
Alexei Starovoitov | aaac3ba | 2015-10-07 22:23:22 -0700 | [diff] [blame] | 2240 | |
Roman Gushchin | 3ac1f01 | 2020-12-01 13:58:59 -0800 | [diff] [blame] | 2241 | prog->aux->user = get_current_user(); |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2242 | prog->len = attr->insn_cnt; |
| 2243 | |
| 2244 | err = -EFAULT; |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 2245 | if (copy_from_bpfptr(prog->insns, |
| 2246 | make_bpfptr(attr->insns, uattr.is_kernel), |
| 2247 | bpf_prog_insn_size(prog)) != 0) |
Roman Gushchin | 3ac1f01 | 2020-12-01 13:58:59 -0800 | [diff] [blame] | 2248 | goto free_prog_sec; |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2249 | |
| 2250 | prog->orig_prog = NULL; |
Daniel Borkmann | a91263d | 2015-09-30 01:41:50 +0200 | [diff] [blame] | 2251 | prog->jited = 0; |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2252 | |
Andrii Nakryiko | 85192db | 2019-11-17 09:28:03 -0800 | [diff] [blame] | 2253 | atomic64_set(&prog->aux->refcnt, 1); |
Daniel Borkmann | a91263d | 2015-09-30 01:41:50 +0200 | [diff] [blame] | 2254 | prog->gpl_compatible = is_gpl ? 1 : 0; |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2255 | |
Jakub Kicinski | 9a18eed | 2017-12-27 18:39:04 -0800 | [diff] [blame] | 2256 | if (bpf_prog_is_dev_bound(prog->aux)) { |
Jakub Kicinski | ab3f006 | 2017-11-03 13:56:17 -0700 | [diff] [blame] | 2257 | err = bpf_prog_offload_init(prog, attr); |
| 2258 | if (err) |
Roman Gushchin | 3ac1f01 | 2020-12-01 13:58:59 -0800 | [diff] [blame] | 2259 | goto free_prog_sec; |
Jakub Kicinski | ab3f006 | 2017-11-03 13:56:17 -0700 | [diff] [blame] | 2260 | } |
| 2261 | |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2262 | /* find program type: socket_filter vs tracing_filter */ |
| 2263 | err = find_prog_type(type, prog); |
| 2264 | if (err < 0) |
Roman Gushchin | 3ac1f01 | 2020-12-01 13:58:59 -0800 | [diff] [blame] | 2265 | goto free_prog_sec; |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2266 | |
Jason A. Donenfeld | 9285ec4 | 2019-06-21 22:32:48 +0200 | [diff] [blame] | 2267 | prog->aux->load_time = ktime_get_boottime_ns(); |
Martin KaFai Lau | 8e7ae25 | 2020-03-13 18:02:09 -0700 | [diff] [blame] | 2268 | err = bpf_obj_name_cpy(prog->aux->name, attr->prog_name, |
| 2269 | sizeof(attr->prog_name)); |
| 2270 | if (err < 0) |
Roman Gushchin | 3ac1f01 | 2020-12-01 13:58:59 -0800 | [diff] [blame] | 2271 | goto free_prog_sec; |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 2272 | |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2273 | /* run eBPF verifier */ |
Yonghong Song | 838e969 | 2018-11-19 15:29:11 -0800 | [diff] [blame] | 2274 | err = bpf_check(&prog, attr, uattr); |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2275 | if (err < 0) |
| 2276 | goto free_used_maps; |
| 2277 | |
Daniel Borkmann | 9facc33 | 2018-06-15 02:30:48 +0200 | [diff] [blame] | 2278 | prog = bpf_prog_select_runtime(prog, &err); |
Alexei Starovoitov | 04fd61ab | 2015-05-19 16:59:03 -0700 | [diff] [blame] | 2279 | if (err < 0) |
| 2280 | goto free_used_maps; |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2281 | |
Martin KaFai Lau | dc4bb0e | 2017-06-05 12:15:46 -0700 | [diff] [blame] | 2282 | err = bpf_prog_alloc_id(prog); |
| 2283 | if (err) |
| 2284 | goto free_used_maps; |
| 2285 | |
Daniel Borkmann | c751798 | 2019-08-23 22:14:23 +0200 | [diff] [blame] | 2286 | /* Upon success of bpf_prog_alloc_id(), the BPF prog is |
| 2287 | * effectively publicly exposed. However, retrieving via |
| 2288 | * bpf_prog_get_fd_by_id() will take another reference, |
| 2289 | * therefore it cannot be gone underneath us. |
| 2290 | * |
| 2291 | * Only for the time /after/ successful bpf_prog_new_fd() |
| 2292 | * and before returning to userspace, we might just hold |
| 2293 | * one reference and any parallel close on that fd could |
| 2294 | * rip everything out. Hence, below notifications must |
| 2295 | * happen before bpf_prog_new_fd(). |
| 2296 | * |
| 2297 | * Also, any failure handling from this point onwards must |
| 2298 | * be using bpf_prog_put() given the program is exposed. |
| 2299 | */ |
Daniel Borkmann | 74451e66 | 2017-02-16 22:24:50 +0100 | [diff] [blame] | 2300 | bpf_prog_kallsyms_add(prog); |
Song Liu | 6ee52e2 | 2019-01-17 08:15:15 -0800 | [diff] [blame] | 2301 | perf_event_bpf_event(prog, PERF_BPF_EVENT_PROG_LOAD, 0); |
Daniel Borkmann | bae141f | 2019-12-06 22:49:34 +0100 | [diff] [blame] | 2302 | bpf_audit_prog(prog, BPF_AUDIT_LOAD); |
Daniel Borkmann | c751798 | 2019-08-23 22:14:23 +0200 | [diff] [blame] | 2303 | |
| 2304 | err = bpf_prog_new_fd(prog); |
| 2305 | if (err < 0) |
| 2306 | bpf_prog_put(prog); |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2307 | return err; |
| 2308 | |
| 2309 | free_used_maps: |
Daniel Borkmann | cd7455f | 2019-10-22 15:57:23 +0200 | [diff] [blame] | 2310 | /* In case we have subprogs, we need to wait for a grace |
| 2311 | * period before we can tear down JIT memory since symbols |
| 2312 | * are already exposed under kallsyms. |
| 2313 | */ |
| 2314 | __bpf_prog_put_noref(prog, prog->aux->func_cnt); |
| 2315 | return err; |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 2316 | free_prog_sec: |
Roman Gushchin | 3ac1f01 | 2020-12-01 13:58:59 -0800 | [diff] [blame] | 2317 | free_uid(prog->aux->user); |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 2318 | security_bpf_prog_free(prog->aux); |
Roman Gushchin | 3ac1f01 | 2020-12-01 13:58:59 -0800 | [diff] [blame] | 2319 | free_prog: |
Andrii Nakryiko | 22dc4a0 | 2020-12-03 12:46:29 -0800 | [diff] [blame] | 2320 | if (prog->aux->attach_btf) |
| 2321 | btf_put(prog->aux->attach_btf); |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 2322 | bpf_prog_free(prog); |
| 2323 | return err; |
| 2324 | } |
| 2325 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 2326 | #define BPF_OBJ_LAST_FIELD file_flags |
Daniel Borkmann | b219775 | 2015-10-29 14:58:09 +0100 | [diff] [blame] | 2327 | |
| 2328 | static int bpf_obj_pin(const union bpf_attr *attr) |
| 2329 | { |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 2330 | if (CHECK_ATTR(BPF_OBJ) || attr->file_flags != 0) |
Daniel Borkmann | b219775 | 2015-10-29 14:58:09 +0100 | [diff] [blame] | 2331 | return -EINVAL; |
| 2332 | |
Mickaël Salaün | 535e7b4b | 2016-11-13 19:44:03 +0100 | [diff] [blame] | 2333 | 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] | 2334 | } |
| 2335 | |
| 2336 | static int bpf_obj_get(const union bpf_attr *attr) |
| 2337 | { |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 2338 | if (CHECK_ATTR(BPF_OBJ) || attr->bpf_fd != 0 || |
| 2339 | attr->file_flags & ~BPF_OBJ_FLAG_MASK) |
Daniel Borkmann | b219775 | 2015-10-29 14:58:09 +0100 | [diff] [blame] | 2340 | return -EINVAL; |
| 2341 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 2342 | return bpf_obj_get_user(u64_to_user_ptr(attr->pathname), |
| 2343 | attr->file_flags); |
Daniel Borkmann | b219775 | 2015-10-29 14:58:09 +0100 | [diff] [blame] | 2344 | } |
| 2345 | |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 2346 | void bpf_link_init(struct bpf_link *link, enum bpf_link_type type, |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2347 | const struct bpf_link_ops *ops, struct bpf_prog *prog) |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2348 | { |
| 2349 | atomic64_set(&link->refcnt, 1); |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 2350 | link->type = type; |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2351 | link->id = 0; |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2352 | link->ops = ops; |
| 2353 | link->prog = prog; |
| 2354 | } |
| 2355 | |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2356 | static void bpf_link_free_id(int id) |
| 2357 | { |
| 2358 | if (!id) |
| 2359 | return; |
| 2360 | |
| 2361 | spin_lock_bh(&link_idr_lock); |
| 2362 | idr_remove(&link_idr, id); |
| 2363 | spin_unlock_bh(&link_idr_lock); |
| 2364 | } |
| 2365 | |
Andrii Nakryiko | 9886866 | 2020-03-12 17:21:28 -0700 | [diff] [blame] | 2366 | /* Clean up bpf_link and corresponding anon_inode file and FD. After |
| 2367 | * anon_inode is created, bpf_link can't be just kfree()'d due to deferred |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2368 | * anon_inode's release() call. This helper marksbpf_link as |
| 2369 | * defunct, releases anon_inode file and puts reserved FD. bpf_prog's refcnt |
| 2370 | * is not decremented, it's the responsibility of a calling code that failed |
| 2371 | * to complete bpf_link initialization. |
Andrii Nakryiko | 9886866 | 2020-03-12 17:21:28 -0700 | [diff] [blame] | 2372 | */ |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2373 | void bpf_link_cleanup(struct bpf_link_primer *primer) |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2374 | { |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2375 | primer->link->prog = NULL; |
| 2376 | bpf_link_free_id(primer->id); |
| 2377 | fput(primer->file); |
| 2378 | put_unused_fd(primer->fd); |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2379 | } |
| 2380 | |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2381 | void bpf_link_inc(struct bpf_link *link) |
| 2382 | { |
| 2383 | atomic64_inc(&link->refcnt); |
| 2384 | } |
| 2385 | |
| 2386 | /* bpf_link_free is guaranteed to be called from process context */ |
| 2387 | static void bpf_link_free(struct bpf_link *link) |
| 2388 | { |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2389 | bpf_link_free_id(link->id); |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2390 | if (link->prog) { |
| 2391 | /* detach BPF program, clean up used resources */ |
| 2392 | link->ops->release(link); |
| 2393 | bpf_prog_put(link->prog); |
| 2394 | } |
| 2395 | /* free bpf_link and its containing memory */ |
| 2396 | link->ops->dealloc(link); |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2397 | } |
| 2398 | |
| 2399 | static void bpf_link_put_deferred(struct work_struct *work) |
| 2400 | { |
| 2401 | struct bpf_link *link = container_of(work, struct bpf_link, work); |
| 2402 | |
| 2403 | bpf_link_free(link); |
| 2404 | } |
| 2405 | |
| 2406 | /* bpf_link_put can be called from atomic context, but ensures that resources |
| 2407 | * are freed from process context |
| 2408 | */ |
| 2409 | void bpf_link_put(struct bpf_link *link) |
| 2410 | { |
| 2411 | if (!atomic64_dec_and_test(&link->refcnt)) |
| 2412 | return; |
| 2413 | |
Alexei Starovoitov | f00f2f7 | 2020-09-23 19:10:38 -0700 | [diff] [blame] | 2414 | if (in_atomic()) { |
| 2415 | INIT_WORK(&link->work, bpf_link_put_deferred); |
| 2416 | schedule_work(&link->work); |
| 2417 | } else { |
| 2418 | bpf_link_free(link); |
| 2419 | } |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2420 | } |
| 2421 | |
| 2422 | static int bpf_link_release(struct inode *inode, struct file *filp) |
| 2423 | { |
| 2424 | struct bpf_link *link = filp->private_data; |
| 2425 | |
| 2426 | bpf_link_put(link); |
Alexei Starovoitov | fec56f5 | 2019-11-14 10:57:04 -0800 | [diff] [blame] | 2427 | return 0; |
| 2428 | } |
| 2429 | |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2430 | #ifdef CONFIG_PROC_FS |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 2431 | #define BPF_PROG_TYPE(_id, _name, prog_ctx_type, kern_ctx_type) |
| 2432 | #define BPF_MAP_TYPE(_id, _ops) |
| 2433 | #define BPF_LINK_TYPE(_id, _name) [_id] = #_name, |
| 2434 | static const char *bpf_link_type_strs[] = { |
| 2435 | [BPF_LINK_TYPE_UNSPEC] = "<invalid>", |
| 2436 | #include <linux/bpf_types.h> |
| 2437 | }; |
| 2438 | #undef BPF_PROG_TYPE |
| 2439 | #undef BPF_MAP_TYPE |
| 2440 | #undef BPF_LINK_TYPE |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2441 | |
| 2442 | static void bpf_link_show_fdinfo(struct seq_file *m, struct file *filp) |
| 2443 | { |
| 2444 | const struct bpf_link *link = filp->private_data; |
| 2445 | const struct bpf_prog *prog = link->prog; |
| 2446 | char prog_tag[sizeof(prog->tag) * 2 + 1] = { }; |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2447 | |
| 2448 | bin2hex(prog_tag, prog->tag, sizeof(prog->tag)); |
| 2449 | seq_printf(m, |
| 2450 | "link_type:\t%s\n" |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2451 | "link_id:\t%u\n" |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2452 | "prog_tag:\t%s\n" |
| 2453 | "prog_id:\t%u\n", |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 2454 | bpf_link_type_strs[link->type], |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2455 | link->id, |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2456 | prog_tag, |
| 2457 | prog->aux->id); |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 2458 | if (link->ops->show_fdinfo) |
| 2459 | link->ops->show_fdinfo(link, m); |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2460 | } |
| 2461 | #endif |
| 2462 | |
Zou Wei | 6f302bf | 2020-04-23 10:32:40 +0800 | [diff] [blame] | 2463 | static const struct file_operations bpf_link_fops = { |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2464 | #ifdef CONFIG_PROC_FS |
| 2465 | .show_fdinfo = bpf_link_show_fdinfo, |
| 2466 | #endif |
| 2467 | .release = bpf_link_release, |
Alexei Starovoitov | fec56f5 | 2019-11-14 10:57:04 -0800 | [diff] [blame] | 2468 | .read = bpf_dummy_read, |
| 2469 | .write = bpf_dummy_write, |
| 2470 | }; |
| 2471 | |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2472 | static int bpf_link_alloc_id(struct bpf_link *link) |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2473 | { |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2474 | int id; |
| 2475 | |
| 2476 | idr_preload(GFP_KERNEL); |
| 2477 | spin_lock_bh(&link_idr_lock); |
| 2478 | id = idr_alloc_cyclic(&link_idr, link, 1, INT_MAX, GFP_ATOMIC); |
| 2479 | spin_unlock_bh(&link_idr_lock); |
| 2480 | idr_preload_end(); |
| 2481 | |
| 2482 | return id; |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2483 | } |
| 2484 | |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2485 | /* Prepare bpf_link to be exposed to user-space by allocating anon_inode file, |
| 2486 | * reserving unused FD and allocating ID from link_idr. This is to be paired |
| 2487 | * with bpf_link_settle() to install FD and ID and expose bpf_link to |
| 2488 | * user-space, if bpf_link is successfully attached. If not, bpf_link and |
| 2489 | * pre-allocated resources are to be freed with bpf_cleanup() call. All the |
| 2490 | * transient state is passed around in struct bpf_link_primer. |
| 2491 | * This is preferred way to create and initialize bpf_link, especially when |
| 2492 | * there are complicated and expensive operations inbetween creating bpf_link |
| 2493 | * itself and attaching it to BPF hook. By using bpf_link_prime() and |
| 2494 | * bpf_link_settle() kernel code using bpf_link doesn't have to perform |
| 2495 | * expensive (and potentially failing) roll back operations in a rare case |
| 2496 | * that file, FD, or ID can't be allocated. |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2497 | */ |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2498 | int bpf_link_prime(struct bpf_link *link, struct bpf_link_primer *primer) |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2499 | { |
| 2500 | struct file *file; |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2501 | int fd, id; |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2502 | |
| 2503 | fd = get_unused_fd_flags(O_CLOEXEC); |
| 2504 | if (fd < 0) |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2505 | return fd; |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2506 | |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2507 | |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2508 | id = bpf_link_alloc_id(link); |
| 2509 | if (id < 0) { |
| 2510 | put_unused_fd(fd); |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2511 | return id; |
| 2512 | } |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2513 | |
| 2514 | file = anon_inode_getfile("bpf_link", &bpf_link_fops, link, O_CLOEXEC); |
| 2515 | if (IS_ERR(file)) { |
Andrii Nakryiko | 138c676 | 2020-05-01 11:56:22 -0700 | [diff] [blame] | 2516 | bpf_link_free_id(id); |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2517 | put_unused_fd(fd); |
Andrii Nakryiko | 138c676 | 2020-05-01 11:56:22 -0700 | [diff] [blame] | 2518 | return PTR_ERR(file); |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2519 | } |
| 2520 | |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2521 | primer->link = link; |
| 2522 | primer->file = file; |
| 2523 | primer->fd = fd; |
| 2524 | primer->id = id; |
| 2525 | return 0; |
| 2526 | } |
| 2527 | |
| 2528 | int bpf_link_settle(struct bpf_link_primer *primer) |
| 2529 | { |
| 2530 | /* make bpf_link fetchable by ID */ |
| 2531 | spin_lock_bh(&link_idr_lock); |
| 2532 | primer->link->id = primer->id; |
| 2533 | spin_unlock_bh(&link_idr_lock); |
| 2534 | /* make bpf_link fetchable by FD */ |
| 2535 | fd_install(primer->fd, primer->file); |
| 2536 | /* pass through installed FD */ |
| 2537 | return primer->fd; |
| 2538 | } |
| 2539 | |
| 2540 | int bpf_link_new_fd(struct bpf_link *link) |
| 2541 | { |
| 2542 | return anon_inode_getfd("bpf-link", &bpf_link_fops, link, O_CLOEXEC); |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2543 | } |
| 2544 | |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2545 | struct bpf_link *bpf_link_get_from_fd(u32 ufd) |
| 2546 | { |
| 2547 | struct fd f = fdget(ufd); |
| 2548 | struct bpf_link *link; |
| 2549 | |
| 2550 | if (!f.file) |
| 2551 | return ERR_PTR(-EBADF); |
| 2552 | if (f.file->f_op != &bpf_link_fops) { |
| 2553 | fdput(f); |
| 2554 | return ERR_PTR(-EINVAL); |
| 2555 | } |
| 2556 | |
| 2557 | link = f.file->private_data; |
| 2558 | bpf_link_inc(link); |
| 2559 | fdput(f); |
| 2560 | |
| 2561 | return link; |
| 2562 | } |
| 2563 | |
| 2564 | struct bpf_tracing_link { |
| 2565 | struct bpf_link link; |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 2566 | enum bpf_attach_type attach_type; |
Toke Høiland-Jørgensen | 3aac1ea | 2020-09-29 14:45:50 +0200 | [diff] [blame] | 2567 | struct bpf_trampoline *trampoline; |
| 2568 | struct bpf_prog *tgt_prog; |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2569 | }; |
| 2570 | |
| 2571 | static void bpf_tracing_link_release(struct bpf_link *link) |
| 2572 | { |
Toke Høiland-Jørgensen | 3aac1ea | 2020-09-29 14:45:50 +0200 | [diff] [blame] | 2573 | struct bpf_tracing_link *tr_link = |
| 2574 | container_of(link, struct bpf_tracing_link, link); |
| 2575 | |
| 2576 | WARN_ON_ONCE(bpf_trampoline_unlink_prog(link->prog, |
| 2577 | tr_link->trampoline)); |
| 2578 | |
| 2579 | bpf_trampoline_put(tr_link->trampoline); |
| 2580 | |
| 2581 | /* tgt_prog is NULL if target is a kernel function */ |
| 2582 | if (tr_link->tgt_prog) |
| 2583 | bpf_prog_put(tr_link->tgt_prog); |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2584 | } |
| 2585 | |
| 2586 | static void bpf_tracing_link_dealloc(struct bpf_link *link) |
| 2587 | { |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2588 | struct bpf_tracing_link *tr_link = |
| 2589 | container_of(link, struct bpf_tracing_link, link); |
| 2590 | |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2591 | kfree(tr_link); |
| 2592 | } |
| 2593 | |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 2594 | static void bpf_tracing_link_show_fdinfo(const struct bpf_link *link, |
| 2595 | struct seq_file *seq) |
| 2596 | { |
| 2597 | struct bpf_tracing_link *tr_link = |
| 2598 | container_of(link, struct bpf_tracing_link, link); |
| 2599 | |
| 2600 | seq_printf(seq, |
| 2601 | "attach_type:\t%d\n", |
| 2602 | tr_link->attach_type); |
| 2603 | } |
| 2604 | |
| 2605 | static int bpf_tracing_link_fill_link_info(const struct bpf_link *link, |
| 2606 | struct bpf_link_info *info) |
| 2607 | { |
| 2608 | struct bpf_tracing_link *tr_link = |
| 2609 | container_of(link, struct bpf_tracing_link, link); |
| 2610 | |
| 2611 | info->tracing.attach_type = tr_link->attach_type; |
Toke Høiland-Jørgensen | 441e8c6 | 2021-04-13 11:16:06 +0200 | [diff] [blame] | 2612 | bpf_trampoline_unpack_key(tr_link->trampoline->key, |
| 2613 | &info->tracing.target_obj_id, |
| 2614 | &info->tracing.target_btf_id); |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 2615 | |
| 2616 | return 0; |
| 2617 | } |
| 2618 | |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2619 | static const struct bpf_link_ops bpf_tracing_link_lops = { |
| 2620 | .release = bpf_tracing_link_release, |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2621 | .dealloc = bpf_tracing_link_dealloc, |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 2622 | .show_fdinfo = bpf_tracing_link_show_fdinfo, |
| 2623 | .fill_link_info = bpf_tracing_link_fill_link_info, |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2624 | }; |
| 2625 | |
Toke Høiland-Jørgensen | 4a1e7c0 | 2020-09-29 14:45:51 +0200 | [diff] [blame] | 2626 | static int bpf_tracing_prog_attach(struct bpf_prog *prog, |
| 2627 | int tgt_prog_fd, |
| 2628 | u32 btf_id) |
Alexei Starovoitov | fec56f5 | 2019-11-14 10:57:04 -0800 | [diff] [blame] | 2629 | { |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2630 | struct bpf_link_primer link_primer; |
Toke Høiland-Jørgensen | 3aac1ea | 2020-09-29 14:45:50 +0200 | [diff] [blame] | 2631 | struct bpf_prog *tgt_prog = NULL; |
Toke Høiland-Jørgensen | 4a1e7c0 | 2020-09-29 14:45:51 +0200 | [diff] [blame] | 2632 | struct bpf_trampoline *tr = NULL; |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2633 | struct bpf_tracing_link *link; |
Toke Høiland-Jørgensen | 4a1e7c0 | 2020-09-29 14:45:51 +0200 | [diff] [blame] | 2634 | u64 key = 0; |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2635 | int err; |
Alexei Starovoitov | fec56f5 | 2019-11-14 10:57:04 -0800 | [diff] [blame] | 2636 | |
KP Singh | 9e4e01d | 2020-03-29 01:43:52 +0100 | [diff] [blame] | 2637 | switch (prog->type) { |
| 2638 | case BPF_PROG_TYPE_TRACING: |
| 2639 | if (prog->expected_attach_type != BPF_TRACE_FENTRY && |
| 2640 | prog->expected_attach_type != BPF_TRACE_FEXIT && |
| 2641 | prog->expected_attach_type != BPF_MODIFY_RETURN) { |
| 2642 | err = -EINVAL; |
| 2643 | goto out_put_prog; |
| 2644 | } |
| 2645 | break; |
| 2646 | case BPF_PROG_TYPE_EXT: |
| 2647 | if (prog->expected_attach_type != 0) { |
| 2648 | err = -EINVAL; |
| 2649 | goto out_put_prog; |
| 2650 | } |
| 2651 | break; |
| 2652 | case BPF_PROG_TYPE_LSM: |
| 2653 | if (prog->expected_attach_type != BPF_LSM_MAC) { |
| 2654 | err = -EINVAL; |
| 2655 | goto out_put_prog; |
| 2656 | } |
| 2657 | break; |
| 2658 | default: |
Alexei Starovoitov | fec56f5 | 2019-11-14 10:57:04 -0800 | [diff] [blame] | 2659 | err = -EINVAL; |
| 2660 | goto out_put_prog; |
| 2661 | } |
| 2662 | |
Toke Høiland-Jørgensen | 4a1e7c0 | 2020-09-29 14:45:51 +0200 | [diff] [blame] | 2663 | if (!!tgt_prog_fd != !!btf_id) { |
| 2664 | err = -EINVAL; |
| 2665 | goto out_put_prog; |
| 2666 | } |
| 2667 | |
| 2668 | if (tgt_prog_fd) { |
| 2669 | /* For now we only allow new targets for BPF_PROG_TYPE_EXT */ |
| 2670 | if (prog->type != BPF_PROG_TYPE_EXT) { |
| 2671 | err = -EINVAL; |
| 2672 | goto out_put_prog; |
| 2673 | } |
| 2674 | |
| 2675 | tgt_prog = bpf_prog_get(tgt_prog_fd); |
| 2676 | if (IS_ERR(tgt_prog)) { |
| 2677 | err = PTR_ERR(tgt_prog); |
| 2678 | tgt_prog = NULL; |
| 2679 | goto out_put_prog; |
| 2680 | } |
| 2681 | |
Andrii Nakryiko | 22dc4a0 | 2020-12-03 12:46:29 -0800 | [diff] [blame] | 2682 | key = bpf_trampoline_compute_key(tgt_prog, NULL, btf_id); |
Toke Høiland-Jørgensen | 4a1e7c0 | 2020-09-29 14:45:51 +0200 | [diff] [blame] | 2683 | } |
| 2684 | |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2685 | link = kzalloc(sizeof(*link), GFP_USER); |
| 2686 | if (!link) { |
| 2687 | err = -ENOMEM; |
Alexei Starovoitov | fec56f5 | 2019-11-14 10:57:04 -0800 | [diff] [blame] | 2688 | goto out_put_prog; |
| 2689 | } |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 2690 | bpf_link_init(&link->link, BPF_LINK_TYPE_TRACING, |
| 2691 | &bpf_tracing_link_lops, prog); |
| 2692 | link->attach_type = prog->expected_attach_type; |
Alexei Starovoitov | fec56f5 | 2019-11-14 10:57:04 -0800 | [diff] [blame] | 2693 | |
Toke Høiland-Jørgensen | 3aac1ea | 2020-09-29 14:45:50 +0200 | [diff] [blame] | 2694 | mutex_lock(&prog->aux->dst_mutex); |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2695 | |
Toke Høiland-Jørgensen | 4a1e7c0 | 2020-09-29 14:45:51 +0200 | [diff] [blame] | 2696 | /* There are a few possible cases here: |
| 2697 | * |
| 2698 | * - if prog->aux->dst_trampoline is set, the program was just loaded |
| 2699 | * and not yet attached to anything, so we can use the values stored |
| 2700 | * in prog->aux |
| 2701 | * |
| 2702 | * - if prog->aux->dst_trampoline is NULL, the program has already been |
| 2703 | * attached to a target and its initial target was cleared (below) |
| 2704 | * |
| 2705 | * - if tgt_prog != NULL, the caller specified tgt_prog_fd + |
| 2706 | * target_btf_id using the link_create API. |
| 2707 | * |
| 2708 | * - if tgt_prog == NULL when this function was called using the old |
Jiri Olsa | f3a9507 | 2021-04-14 21:51:41 +0200 | [diff] [blame] | 2709 | * raw_tracepoint_open API, and we need a target from prog->aux |
| 2710 | * |
| 2711 | * - if prog->aux->dst_trampoline and tgt_prog is NULL, the program |
| 2712 | * was detached and is going for re-attachment. |
Toke Høiland-Jørgensen | 4a1e7c0 | 2020-09-29 14:45:51 +0200 | [diff] [blame] | 2713 | */ |
| 2714 | if (!prog->aux->dst_trampoline && !tgt_prog) { |
Jiri Olsa | f3a9507 | 2021-04-14 21:51:41 +0200 | [diff] [blame] | 2715 | /* |
| 2716 | * Allow re-attach for TRACING and LSM programs. If it's |
| 2717 | * currently linked, bpf_trampoline_link_prog will fail. |
| 2718 | * EXT programs need to specify tgt_prog_fd, so they |
| 2719 | * re-attach in separate code path. |
| 2720 | */ |
| 2721 | if (prog->type != BPF_PROG_TYPE_TRACING && |
| 2722 | prog->type != BPF_PROG_TYPE_LSM) { |
| 2723 | err = -EINVAL; |
| 2724 | goto out_unlock; |
| 2725 | } |
| 2726 | btf_id = prog->aux->attach_btf_id; |
| 2727 | key = bpf_trampoline_compute_key(NULL, prog->aux->attach_btf, btf_id); |
Toke Høiland-Jørgensen | 3aac1ea | 2020-09-29 14:45:50 +0200 | [diff] [blame] | 2728 | } |
Toke Høiland-Jørgensen | 4a1e7c0 | 2020-09-29 14:45:51 +0200 | [diff] [blame] | 2729 | |
| 2730 | if (!prog->aux->dst_trampoline || |
| 2731 | (key && key != prog->aux->dst_trampoline->key)) { |
| 2732 | /* If there is no saved target, or the specified target is |
| 2733 | * different from the destination specified at load time, we |
| 2734 | * need a new trampoline and a check for compatibility |
| 2735 | */ |
| 2736 | struct bpf_attach_target_info tgt_info = {}; |
| 2737 | |
| 2738 | err = bpf_check_attach_target(NULL, prog, tgt_prog, btf_id, |
| 2739 | &tgt_info); |
| 2740 | if (err) |
| 2741 | goto out_unlock; |
| 2742 | |
| 2743 | tr = bpf_trampoline_get(key, &tgt_info); |
| 2744 | if (!tr) { |
| 2745 | err = -ENOMEM; |
| 2746 | goto out_unlock; |
| 2747 | } |
| 2748 | } else { |
| 2749 | /* The caller didn't specify a target, or the target was the |
| 2750 | * same as the destination supplied during program load. This |
| 2751 | * means we can reuse the trampoline and reference from program |
| 2752 | * load time, and there is no need to allocate a new one. This |
| 2753 | * can only happen once for any program, as the saved values in |
| 2754 | * prog->aux are cleared below. |
| 2755 | */ |
| 2756 | tr = prog->aux->dst_trampoline; |
| 2757 | tgt_prog = prog->aux->dst_prog; |
| 2758 | } |
Toke Høiland-Jørgensen | 3aac1ea | 2020-09-29 14:45:50 +0200 | [diff] [blame] | 2759 | |
| 2760 | err = bpf_link_prime(&link->link, &link_primer); |
| 2761 | if (err) |
| 2762 | goto out_unlock; |
| 2763 | |
| 2764 | err = bpf_trampoline_link_prog(prog, tr); |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2765 | if (err) { |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2766 | bpf_link_cleanup(&link_primer); |
Toke Høiland-Jørgensen | 3aac1ea | 2020-09-29 14:45:50 +0200 | [diff] [blame] | 2767 | link = NULL; |
| 2768 | goto out_unlock; |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2769 | } |
| 2770 | |
Toke Høiland-Jørgensen | 3aac1ea | 2020-09-29 14:45:50 +0200 | [diff] [blame] | 2771 | link->tgt_prog = tgt_prog; |
| 2772 | link->trampoline = tr; |
| 2773 | |
Toke Høiland-Jørgensen | 4a1e7c0 | 2020-09-29 14:45:51 +0200 | [diff] [blame] | 2774 | /* Always clear the trampoline and target prog from prog->aux to make |
| 2775 | * sure the original attach destination is not kept alive after a |
| 2776 | * program is (re-)attached to another target. |
| 2777 | */ |
| 2778 | if (prog->aux->dst_prog && |
| 2779 | (tgt_prog_fd || tr != prog->aux->dst_trampoline)) |
| 2780 | /* got extra prog ref from syscall, or attaching to different prog */ |
| 2781 | bpf_prog_put(prog->aux->dst_prog); |
| 2782 | if (prog->aux->dst_trampoline && tr != prog->aux->dst_trampoline) |
| 2783 | /* we allocated a new trampoline, so free the old one */ |
| 2784 | bpf_trampoline_put(prog->aux->dst_trampoline); |
| 2785 | |
Toke Høiland-Jørgensen | 3aac1ea | 2020-09-29 14:45:50 +0200 | [diff] [blame] | 2786 | prog->aux->dst_prog = NULL; |
| 2787 | prog->aux->dst_trampoline = NULL; |
| 2788 | mutex_unlock(&prog->aux->dst_mutex); |
| 2789 | |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2790 | return bpf_link_settle(&link_primer); |
Toke Høiland-Jørgensen | 3aac1ea | 2020-09-29 14:45:50 +0200 | [diff] [blame] | 2791 | out_unlock: |
Toke Høiland-Jørgensen | 4a1e7c0 | 2020-09-29 14:45:51 +0200 | [diff] [blame] | 2792 | if (tr && tr != prog->aux->dst_trampoline) |
| 2793 | bpf_trampoline_put(tr); |
Toke Høiland-Jørgensen | 3aac1ea | 2020-09-29 14:45:50 +0200 | [diff] [blame] | 2794 | mutex_unlock(&prog->aux->dst_mutex); |
| 2795 | kfree(link); |
Alexei Starovoitov | fec56f5 | 2019-11-14 10:57:04 -0800 | [diff] [blame] | 2796 | out_put_prog: |
Toke Høiland-Jørgensen | 4a1e7c0 | 2020-09-29 14:45:51 +0200 | [diff] [blame] | 2797 | if (tgt_prog_fd && tgt_prog) |
| 2798 | bpf_prog_put(tgt_prog); |
Alexei Starovoitov | fec56f5 | 2019-11-14 10:57:04 -0800 | [diff] [blame] | 2799 | return err; |
| 2800 | } |
| 2801 | |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2802 | struct bpf_raw_tp_link { |
| 2803 | struct bpf_link link; |
Alexei Starovoitov | c4f6699 | 2018-03-28 12:05:37 -0700 | [diff] [blame] | 2804 | struct bpf_raw_event_map *btp; |
Alexei Starovoitov | c4f6699 | 2018-03-28 12:05:37 -0700 | [diff] [blame] | 2805 | }; |
| 2806 | |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2807 | static void bpf_raw_tp_link_release(struct bpf_link *link) |
Alexei Starovoitov | c4f6699 | 2018-03-28 12:05:37 -0700 | [diff] [blame] | 2808 | { |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2809 | struct bpf_raw_tp_link *raw_tp = |
| 2810 | container_of(link, struct bpf_raw_tp_link, link); |
Alexei Starovoitov | c4f6699 | 2018-03-28 12:05:37 -0700 | [diff] [blame] | 2811 | |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2812 | bpf_probe_unregister(raw_tp->btp, raw_tp->link.prog); |
Matt Mullins | a38d110 | 2018-12-12 16:42:37 -0800 | [diff] [blame] | 2813 | bpf_put_raw_tracepoint(raw_tp->btp); |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2814 | } |
| 2815 | |
| 2816 | static void bpf_raw_tp_link_dealloc(struct bpf_link *link) |
| 2817 | { |
| 2818 | struct bpf_raw_tp_link *raw_tp = |
| 2819 | container_of(link, struct bpf_raw_tp_link, link); |
| 2820 | |
Alexei Starovoitov | c4f6699 | 2018-03-28 12:05:37 -0700 | [diff] [blame] | 2821 | kfree(raw_tp); |
Alexei Starovoitov | c4f6699 | 2018-03-28 12:05:37 -0700 | [diff] [blame] | 2822 | } |
| 2823 | |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 2824 | static void bpf_raw_tp_link_show_fdinfo(const struct bpf_link *link, |
| 2825 | struct seq_file *seq) |
| 2826 | { |
| 2827 | struct bpf_raw_tp_link *raw_tp_link = |
| 2828 | container_of(link, struct bpf_raw_tp_link, link); |
| 2829 | |
| 2830 | seq_printf(seq, |
| 2831 | "tp_name:\t%s\n", |
| 2832 | raw_tp_link->btp->tp->name); |
| 2833 | } |
| 2834 | |
| 2835 | static int bpf_raw_tp_link_fill_link_info(const struct bpf_link *link, |
| 2836 | struct bpf_link_info *info) |
| 2837 | { |
| 2838 | struct bpf_raw_tp_link *raw_tp_link = |
| 2839 | container_of(link, struct bpf_raw_tp_link, link); |
| 2840 | char __user *ubuf = u64_to_user_ptr(info->raw_tracepoint.tp_name); |
| 2841 | const char *tp_name = raw_tp_link->btp->tp->name; |
| 2842 | u32 ulen = info->raw_tracepoint.tp_name_len; |
| 2843 | size_t tp_len = strlen(tp_name); |
| 2844 | |
Yonghong Song | b474959 | 2020-08-21 12:10:54 -0700 | [diff] [blame] | 2845 | if (!ulen ^ !ubuf) |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 2846 | return -EINVAL; |
| 2847 | |
| 2848 | info->raw_tracepoint.tp_name_len = tp_len + 1; |
| 2849 | |
| 2850 | if (!ubuf) |
| 2851 | return 0; |
| 2852 | |
| 2853 | if (ulen >= tp_len + 1) { |
| 2854 | if (copy_to_user(ubuf, tp_name, tp_len + 1)) |
| 2855 | return -EFAULT; |
| 2856 | } else { |
| 2857 | char zero = '\0'; |
| 2858 | |
| 2859 | if (copy_to_user(ubuf, tp_name, ulen - 1)) |
| 2860 | return -EFAULT; |
| 2861 | if (put_user(zero, ubuf + ulen - 1)) |
| 2862 | return -EFAULT; |
| 2863 | return -ENOSPC; |
| 2864 | } |
| 2865 | |
| 2866 | return 0; |
| 2867 | } |
| 2868 | |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2869 | static const struct bpf_link_ops bpf_raw_tp_link_lops = { |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 2870 | .release = bpf_raw_tp_link_release, |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2871 | .dealloc = bpf_raw_tp_link_dealloc, |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 2872 | .show_fdinfo = bpf_raw_tp_link_show_fdinfo, |
| 2873 | .fill_link_info = bpf_raw_tp_link_fill_link_info, |
Alexei Starovoitov | c4f6699 | 2018-03-28 12:05:37 -0700 | [diff] [blame] | 2874 | }; |
| 2875 | |
| 2876 | #define BPF_RAW_TRACEPOINT_OPEN_LAST_FIELD raw_tracepoint.prog_fd |
| 2877 | |
| 2878 | static int bpf_raw_tracepoint_open(const union bpf_attr *attr) |
| 2879 | { |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2880 | struct bpf_link_primer link_primer; |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2881 | struct bpf_raw_tp_link *link; |
Alexei Starovoitov | c4f6699 | 2018-03-28 12:05:37 -0700 | [diff] [blame] | 2882 | struct bpf_raw_event_map *btp; |
| 2883 | struct bpf_prog *prog; |
Alexei Starovoitov | ac4414b | 2019-10-15 20:25:01 -0700 | [diff] [blame] | 2884 | const char *tp_name; |
| 2885 | char buf[128]; |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2886 | int err; |
Alexei Starovoitov | c4f6699 | 2018-03-28 12:05:37 -0700 | [diff] [blame] | 2887 | |
Alexei Starovoitov | ac4414b | 2019-10-15 20:25:01 -0700 | [diff] [blame] | 2888 | if (CHECK_ATTR(BPF_RAW_TRACEPOINT_OPEN)) |
| 2889 | return -EINVAL; |
| 2890 | |
| 2891 | prog = bpf_prog_get(attr->raw_tracepoint.prog_fd); |
| 2892 | if (IS_ERR(prog)) |
| 2893 | return PTR_ERR(prog); |
| 2894 | |
KP Singh | 9e4e01d | 2020-03-29 01:43:52 +0100 | [diff] [blame] | 2895 | switch (prog->type) { |
| 2896 | case BPF_PROG_TYPE_TRACING: |
| 2897 | case BPF_PROG_TYPE_EXT: |
| 2898 | case BPF_PROG_TYPE_LSM: |
Alexei Starovoitov | ac4414b | 2019-10-15 20:25:01 -0700 | [diff] [blame] | 2899 | if (attr->raw_tracepoint.name) { |
Alexei Starovoitov | fec56f5 | 2019-11-14 10:57:04 -0800 | [diff] [blame] | 2900 | /* The attach point for this category of programs |
| 2901 | * should be specified via btf_id during program load. |
Alexei Starovoitov | ac4414b | 2019-10-15 20:25:01 -0700 | [diff] [blame] | 2902 | */ |
| 2903 | err = -EINVAL; |
| 2904 | goto out_put_prog; |
| 2905 | } |
KP Singh | 9e4e01d | 2020-03-29 01:43:52 +0100 | [diff] [blame] | 2906 | if (prog->type == BPF_PROG_TYPE_TRACING && |
| 2907 | prog->expected_attach_type == BPF_TRACE_RAW_TP) { |
Alexei Starovoitov | fec56f5 | 2019-11-14 10:57:04 -0800 | [diff] [blame] | 2908 | tp_name = prog->aux->attach_func_name; |
KP Singh | 9e4e01d | 2020-03-29 01:43:52 +0100 | [diff] [blame] | 2909 | break; |
| 2910 | } |
Jiri Olsa | 5541075 | 2021-01-11 20:16:50 +0100 | [diff] [blame] | 2911 | err = bpf_tracing_prog_attach(prog, 0, 0); |
| 2912 | if (err >= 0) |
| 2913 | return err; |
| 2914 | goto out_put_prog; |
KP Singh | 9e4e01d | 2020-03-29 01:43:52 +0100 | [diff] [blame] | 2915 | case BPF_PROG_TYPE_RAW_TRACEPOINT: |
| 2916 | case BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE: |
Alexei Starovoitov | ac4414b | 2019-10-15 20:25:01 -0700 | [diff] [blame] | 2917 | if (strncpy_from_user(buf, |
| 2918 | u64_to_user_ptr(attr->raw_tracepoint.name), |
| 2919 | sizeof(buf) - 1) < 0) { |
| 2920 | err = -EFAULT; |
| 2921 | goto out_put_prog; |
| 2922 | } |
| 2923 | buf[sizeof(buf) - 1] = 0; |
| 2924 | tp_name = buf; |
KP Singh | 9e4e01d | 2020-03-29 01:43:52 +0100 | [diff] [blame] | 2925 | break; |
| 2926 | default: |
| 2927 | err = -EINVAL; |
| 2928 | goto out_put_prog; |
Alexei Starovoitov | ac4414b | 2019-10-15 20:25:01 -0700 | [diff] [blame] | 2929 | } |
Alexei Starovoitov | c4f6699 | 2018-03-28 12:05:37 -0700 | [diff] [blame] | 2930 | |
Matt Mullins | a38d110 | 2018-12-12 16:42:37 -0800 | [diff] [blame] | 2931 | btp = bpf_get_raw_tracepoint(tp_name); |
Alexei Starovoitov | ac4414b | 2019-10-15 20:25:01 -0700 | [diff] [blame] | 2932 | if (!btp) { |
| 2933 | err = -ENOENT; |
| 2934 | goto out_put_prog; |
| 2935 | } |
Alexei Starovoitov | c4f6699 | 2018-03-28 12:05:37 -0700 | [diff] [blame] | 2936 | |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2937 | link = kzalloc(sizeof(*link), GFP_USER); |
| 2938 | if (!link) { |
Matt Mullins | a38d110 | 2018-12-12 16:42:37 -0800 | [diff] [blame] | 2939 | err = -ENOMEM; |
| 2940 | goto out_put_btp; |
| 2941 | } |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 2942 | bpf_link_init(&link->link, BPF_LINK_TYPE_RAW_TRACEPOINT, |
| 2943 | &bpf_raw_tp_link_lops, prog); |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2944 | link->btp = btp; |
Alexei Starovoitov | c4f6699 | 2018-03-28 12:05:37 -0700 | [diff] [blame] | 2945 | |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2946 | err = bpf_link_prime(&link->link, &link_primer); |
| 2947 | if (err) { |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2948 | kfree(link); |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2949 | goto out_put_btp; |
Alexei Starovoitov | c4f6699 | 2018-03-28 12:05:37 -0700 | [diff] [blame] | 2950 | } |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2951 | |
| 2952 | err = bpf_probe_register(link->btp, prog); |
| 2953 | if (err) { |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2954 | bpf_link_cleanup(&link_primer); |
Andrii Nakryiko | babf316 | 2020-03-09 16:10:51 -0700 | [diff] [blame] | 2955 | goto out_put_btp; |
| 2956 | } |
| 2957 | |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 2958 | return bpf_link_settle(&link_primer); |
Alexei Starovoitov | c4f6699 | 2018-03-28 12:05:37 -0700 | [diff] [blame] | 2959 | |
Matt Mullins | a38d110 | 2018-12-12 16:42:37 -0800 | [diff] [blame] | 2960 | out_put_btp: |
| 2961 | bpf_put_raw_tracepoint(btp); |
Alexei Starovoitov | ac4414b | 2019-10-15 20:25:01 -0700 | [diff] [blame] | 2962 | out_put_prog: |
| 2963 | bpf_prog_put(prog); |
Alexei Starovoitov | c4f6699 | 2018-03-28 12:05:37 -0700 | [diff] [blame] | 2964 | return err; |
| 2965 | } |
| 2966 | |
Anders Roxell | 3349158 | 2018-04-03 14:09:47 +0200 | [diff] [blame] | 2967 | static int bpf_prog_attach_check_attach_type(const struct bpf_prog *prog, |
| 2968 | enum bpf_attach_type attach_type) |
| 2969 | { |
| 2970 | switch (prog->type) { |
| 2971 | case BPF_PROG_TYPE_CGROUP_SOCK: |
| 2972 | case BPF_PROG_TYPE_CGROUP_SOCK_ADDR: |
Stanislav Fomichev | 0d01da6 | 2019-06-27 13:38:47 -0700 | [diff] [blame] | 2973 | case BPF_PROG_TYPE_CGROUP_SOCKOPT: |
Jakub Sitnicki | e9ddbb7 | 2020-07-17 12:35:23 +0200 | [diff] [blame] | 2974 | case BPF_PROG_TYPE_SK_LOOKUP: |
Anders Roxell | 3349158 | 2018-04-03 14:09:47 +0200 | [diff] [blame] | 2975 | return attach_type == prog->expected_attach_type ? 0 : -EINVAL; |
brakmo | 5cf1e91 | 2019-05-28 16:59:36 -0700 | [diff] [blame] | 2976 | case BPF_PROG_TYPE_CGROUP_SKB: |
Alexei Starovoitov | 2c78ee8 | 2020-05-13 16:03:54 -0700 | [diff] [blame] | 2977 | if (!capable(CAP_NET_ADMIN)) |
| 2978 | /* cg-skb progs can be loaded by unpriv user. |
| 2979 | * check permissions at attach time. |
| 2980 | */ |
| 2981 | return -EPERM; |
brakmo | 5cf1e91 | 2019-05-28 16:59:36 -0700 | [diff] [blame] | 2982 | return prog->enforce_expected_attach_type && |
| 2983 | prog->expected_attach_type != attach_type ? |
| 2984 | -EINVAL : 0; |
Anders Roxell | 3349158 | 2018-04-03 14:09:47 +0200 | [diff] [blame] | 2985 | default: |
| 2986 | return 0; |
| 2987 | } |
| 2988 | } |
| 2989 | |
Andrii Nakryiko | e28784e | 2020-03-24 23:57:42 -0700 | [diff] [blame] | 2990 | static enum bpf_prog_type |
| 2991 | attach_type_to_prog_type(enum bpf_attach_type attach_type) |
| 2992 | { |
| 2993 | switch (attach_type) { |
| 2994 | case BPF_CGROUP_INET_INGRESS: |
| 2995 | case BPF_CGROUP_INET_EGRESS: |
| 2996 | return BPF_PROG_TYPE_CGROUP_SKB; |
Andrii Nakryiko | e28784e | 2020-03-24 23:57:42 -0700 | [diff] [blame] | 2997 | case BPF_CGROUP_INET_SOCK_CREATE: |
Stanislav Fomichev | f583674 | 2020-07-06 16:01:25 -0700 | [diff] [blame] | 2998 | case BPF_CGROUP_INET_SOCK_RELEASE: |
Andrii Nakryiko | e28784e | 2020-03-24 23:57:42 -0700 | [diff] [blame] | 2999 | case BPF_CGROUP_INET4_POST_BIND: |
| 3000 | case BPF_CGROUP_INET6_POST_BIND: |
| 3001 | return BPF_PROG_TYPE_CGROUP_SOCK; |
| 3002 | case BPF_CGROUP_INET4_BIND: |
| 3003 | case BPF_CGROUP_INET6_BIND: |
| 3004 | case BPF_CGROUP_INET4_CONNECT: |
| 3005 | case BPF_CGROUP_INET6_CONNECT: |
Daniel Borkmann | 1b66d25 | 2020-05-19 00:45:45 +0200 | [diff] [blame] | 3006 | case BPF_CGROUP_INET4_GETPEERNAME: |
| 3007 | case BPF_CGROUP_INET6_GETPEERNAME: |
| 3008 | case BPF_CGROUP_INET4_GETSOCKNAME: |
| 3009 | case BPF_CGROUP_INET6_GETSOCKNAME: |
Andrii Nakryiko | e28784e | 2020-03-24 23:57:42 -0700 | [diff] [blame] | 3010 | case BPF_CGROUP_UDP4_SENDMSG: |
| 3011 | case BPF_CGROUP_UDP6_SENDMSG: |
| 3012 | case BPF_CGROUP_UDP4_RECVMSG: |
| 3013 | case BPF_CGROUP_UDP6_RECVMSG: |
| 3014 | return BPF_PROG_TYPE_CGROUP_SOCK_ADDR; |
| 3015 | case BPF_CGROUP_SOCK_OPS: |
| 3016 | return BPF_PROG_TYPE_SOCK_OPS; |
| 3017 | case BPF_CGROUP_DEVICE: |
| 3018 | return BPF_PROG_TYPE_CGROUP_DEVICE; |
| 3019 | case BPF_SK_MSG_VERDICT: |
| 3020 | return BPF_PROG_TYPE_SK_MSG; |
| 3021 | case BPF_SK_SKB_STREAM_PARSER: |
| 3022 | case BPF_SK_SKB_STREAM_VERDICT: |
Cong Wang | a7ba455 | 2021-03-30 19:32:30 -0700 | [diff] [blame] | 3023 | case BPF_SK_SKB_VERDICT: |
Andrii Nakryiko | e28784e | 2020-03-24 23:57:42 -0700 | [diff] [blame] | 3024 | return BPF_PROG_TYPE_SK_SKB; |
| 3025 | case BPF_LIRC_MODE2: |
| 3026 | return BPF_PROG_TYPE_LIRC_MODE2; |
| 3027 | case BPF_FLOW_DISSECTOR: |
| 3028 | return BPF_PROG_TYPE_FLOW_DISSECTOR; |
| 3029 | case BPF_CGROUP_SYSCTL: |
| 3030 | return BPF_PROG_TYPE_CGROUP_SYSCTL; |
| 3031 | case BPF_CGROUP_GETSOCKOPT: |
| 3032 | case BPF_CGROUP_SETSOCKOPT: |
| 3033 | return BPF_PROG_TYPE_CGROUP_SOCKOPT; |
Yonghong Song | de4e05c | 2020-05-09 10:59:01 -0700 | [diff] [blame] | 3034 | case BPF_TRACE_ITER: |
| 3035 | return BPF_PROG_TYPE_TRACING; |
Jakub Sitnicki | e9ddbb7 | 2020-07-17 12:35:23 +0200 | [diff] [blame] | 3036 | case BPF_SK_LOOKUP: |
| 3037 | return BPF_PROG_TYPE_SK_LOOKUP; |
Andrii Nakryiko | aa8d3a7 | 2020-07-21 23:45:57 -0700 | [diff] [blame] | 3038 | case BPF_XDP: |
| 3039 | return BPF_PROG_TYPE_XDP; |
Andrii Nakryiko | e28784e | 2020-03-24 23:57:42 -0700 | [diff] [blame] | 3040 | default: |
| 3041 | return BPF_PROG_TYPE_UNSPEC; |
| 3042 | } |
| 3043 | } |
| 3044 | |
Andrey Ignatov | 7dd68b3 | 2019-12-18 23:44:35 -0800 | [diff] [blame] | 3045 | #define BPF_PROG_ATTACH_LAST_FIELD replace_bpf_fd |
John Fastabend | 174a79f | 2017-08-15 22:32:47 -0700 | [diff] [blame] | 3046 | |
Alexei Starovoitov | 324bda9e6 | 2017-10-02 22:50:21 -0700 | [diff] [blame] | 3047 | #define BPF_F_ATTACH_MASK \ |
Andrey Ignatov | 7dd68b3 | 2019-12-18 23:44:35 -0800 | [diff] [blame] | 3048 | (BPF_F_ALLOW_OVERRIDE | BPF_F_ALLOW_MULTI | BPF_F_REPLACE) |
Alexei Starovoitov | 324bda9e6 | 2017-10-02 22:50:21 -0700 | [diff] [blame] | 3049 | |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 3050 | static int bpf_prog_attach(const union bpf_attr *attr) |
| 3051 | { |
Alexei Starovoitov | 7f67763 | 2017-02-10 20:28:24 -0800 | [diff] [blame] | 3052 | enum bpf_prog_type ptype; |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 3053 | struct bpf_prog *prog; |
Alexei Starovoitov | 7f67763 | 2017-02-10 20:28:24 -0800 | [diff] [blame] | 3054 | int ret; |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 3055 | |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 3056 | if (CHECK_ATTR(BPF_PROG_ATTACH)) |
| 3057 | return -EINVAL; |
| 3058 | |
Alexei Starovoitov | 324bda9e6 | 2017-10-02 22:50:21 -0700 | [diff] [blame] | 3059 | if (attr->attach_flags & ~BPF_F_ATTACH_MASK) |
Alexei Starovoitov | 7f67763 | 2017-02-10 20:28:24 -0800 | [diff] [blame] | 3060 | return -EINVAL; |
| 3061 | |
Andrii Nakryiko | e28784e | 2020-03-24 23:57:42 -0700 | [diff] [blame] | 3062 | ptype = attach_type_to_prog_type(attr->attach_type); |
| 3063 | if (ptype == BPF_PROG_TYPE_UNSPEC) |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 3064 | return -EINVAL; |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 3065 | |
David Ahern | b2cd125 | 2016-12-01 08:48:03 -0800 | [diff] [blame] | 3066 | prog = bpf_prog_get_type(attr->attach_bpf_fd, ptype); |
| 3067 | if (IS_ERR(prog)) |
| 3068 | return PTR_ERR(prog); |
| 3069 | |
Andrey Ignatov | 5e43f89 | 2018-03-30 15:08:00 -0700 | [diff] [blame] | 3070 | if (bpf_prog_attach_check_attach_type(prog, attr->attach_type)) { |
| 3071 | bpf_prog_put(prog); |
| 3072 | return -EINVAL; |
| 3073 | } |
| 3074 | |
Sean Young | fdb5c45 | 2018-06-19 00:04:24 +0100 | [diff] [blame] | 3075 | switch (ptype) { |
| 3076 | case BPF_PROG_TYPE_SK_SKB: |
| 3077 | case BPF_PROG_TYPE_SK_MSG: |
Daniel Borkmann | 604326b | 2018-10-13 02:45:58 +0200 | [diff] [blame] | 3078 | ret = sock_map_get_from_fd(attr, prog); |
Sean Young | fdb5c45 | 2018-06-19 00:04:24 +0100 | [diff] [blame] | 3079 | break; |
| 3080 | case BPF_PROG_TYPE_LIRC_MODE2: |
| 3081 | ret = lirc_prog_attach(attr, prog); |
| 3082 | break; |
Petar Penkov | d58e468 | 2018-09-14 07:46:18 -0700 | [diff] [blame] | 3083 | case BPF_PROG_TYPE_FLOW_DISSECTOR: |
Jakub Sitnicki | a3fd7ce | 2020-05-31 10:28:36 +0200 | [diff] [blame] | 3084 | ret = netns_bpf_prog_attach(attr, prog); |
Petar Penkov | d58e468 | 2018-09-14 07:46:18 -0700 | [diff] [blame] | 3085 | break; |
Andrii Nakryiko | e28784e | 2020-03-24 23:57:42 -0700 | [diff] [blame] | 3086 | case BPF_PROG_TYPE_CGROUP_DEVICE: |
| 3087 | case BPF_PROG_TYPE_CGROUP_SKB: |
| 3088 | case BPF_PROG_TYPE_CGROUP_SOCK: |
| 3089 | case BPF_PROG_TYPE_CGROUP_SOCK_ADDR: |
| 3090 | case BPF_PROG_TYPE_CGROUP_SOCKOPT: |
| 3091 | case BPF_PROG_TYPE_CGROUP_SYSCTL: |
| 3092 | case BPF_PROG_TYPE_SOCK_OPS: |
Sean Young | fdb5c45 | 2018-06-19 00:04:24 +0100 | [diff] [blame] | 3093 | ret = cgroup_bpf_prog_attach(attr, ptype, prog); |
Andrii Nakryiko | e28784e | 2020-03-24 23:57:42 -0700 | [diff] [blame] | 3094 | break; |
| 3095 | default: |
| 3096 | ret = -EINVAL; |
David Ahern | b2cd125 | 2016-12-01 08:48:03 -0800 | [diff] [blame] | 3097 | } |
| 3098 | |
Alexei Starovoitov | 7f67763 | 2017-02-10 20:28:24 -0800 | [diff] [blame] | 3099 | if (ret) |
| 3100 | bpf_prog_put(prog); |
Alexei Starovoitov | 7f67763 | 2017-02-10 20:28:24 -0800 | [diff] [blame] | 3101 | return ret; |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 3102 | } |
| 3103 | |
| 3104 | #define BPF_PROG_DETACH_LAST_FIELD attach_type |
| 3105 | |
| 3106 | static int bpf_prog_detach(const union bpf_attr *attr) |
| 3107 | { |
Alexei Starovoitov | 324bda9e6 | 2017-10-02 22:50:21 -0700 | [diff] [blame] | 3108 | enum bpf_prog_type ptype; |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 3109 | |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 3110 | if (CHECK_ATTR(BPF_PROG_DETACH)) |
| 3111 | return -EINVAL; |
| 3112 | |
Andrii Nakryiko | e28784e | 2020-03-24 23:57:42 -0700 | [diff] [blame] | 3113 | ptype = attach_type_to_prog_type(attr->attach_type); |
| 3114 | |
| 3115 | switch (ptype) { |
| 3116 | case BPF_PROG_TYPE_SK_MSG: |
| 3117 | case BPF_PROG_TYPE_SK_SKB: |
Lorenz Bauer | bb0de31 | 2020-06-29 10:56:28 +0100 | [diff] [blame] | 3118 | return sock_map_prog_detach(attr, ptype); |
Andrii Nakryiko | e28784e | 2020-03-24 23:57:42 -0700 | [diff] [blame] | 3119 | case BPF_PROG_TYPE_LIRC_MODE2: |
Sean Young | f4364dc | 2018-05-27 12:24:09 +0100 | [diff] [blame] | 3120 | return lirc_prog_detach(attr); |
Andrii Nakryiko | e28784e | 2020-03-24 23:57:42 -0700 | [diff] [blame] | 3121 | case BPF_PROG_TYPE_FLOW_DISSECTOR: |
Lorenz Bauer | 4ac2add | 2020-06-29 10:56:26 +0100 | [diff] [blame] | 3122 | return netns_bpf_prog_detach(attr, ptype); |
Andrii Nakryiko | e28784e | 2020-03-24 23:57:42 -0700 | [diff] [blame] | 3123 | case BPF_PROG_TYPE_CGROUP_DEVICE: |
| 3124 | case BPF_PROG_TYPE_CGROUP_SKB: |
| 3125 | case BPF_PROG_TYPE_CGROUP_SOCK: |
| 3126 | case BPF_PROG_TYPE_CGROUP_SOCK_ADDR: |
| 3127 | case BPF_PROG_TYPE_CGROUP_SOCKOPT: |
| 3128 | case BPF_PROG_TYPE_CGROUP_SYSCTL: |
| 3129 | case BPF_PROG_TYPE_SOCK_OPS: |
| 3130 | return cgroup_bpf_prog_detach(attr, ptype); |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 3131 | default: |
| 3132 | return -EINVAL; |
| 3133 | } |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 3134 | } |
Lawrence Brakmo | 40304b2 | 2017-06-30 20:02:40 -0700 | [diff] [blame] | 3135 | |
Alexei Starovoitov | 468e2f6 | 2017-10-02 22:50:22 -0700 | [diff] [blame] | 3136 | #define BPF_PROG_QUERY_LAST_FIELD query.prog_cnt |
| 3137 | |
| 3138 | static int bpf_prog_query(const union bpf_attr *attr, |
| 3139 | union bpf_attr __user *uattr) |
| 3140 | { |
Alexei Starovoitov | 468e2f6 | 2017-10-02 22:50:22 -0700 | [diff] [blame] | 3141 | if (!capable(CAP_NET_ADMIN)) |
| 3142 | return -EPERM; |
| 3143 | if (CHECK_ATTR(BPF_PROG_QUERY)) |
| 3144 | return -EINVAL; |
| 3145 | if (attr->query.query_flags & ~BPF_F_QUERY_EFFECTIVE) |
| 3146 | return -EINVAL; |
| 3147 | |
| 3148 | switch (attr->query.attach_type) { |
| 3149 | case BPF_CGROUP_INET_INGRESS: |
| 3150 | case BPF_CGROUP_INET_EGRESS: |
| 3151 | case BPF_CGROUP_INET_SOCK_CREATE: |
Stanislav Fomichev | f583674 | 2020-07-06 16:01:25 -0700 | [diff] [blame] | 3152 | case BPF_CGROUP_INET_SOCK_RELEASE: |
Andrey Ignatov | 4fbac77 | 2018-03-30 15:08:02 -0700 | [diff] [blame] | 3153 | case BPF_CGROUP_INET4_BIND: |
| 3154 | case BPF_CGROUP_INET6_BIND: |
Andrey Ignatov | aac3fc3 | 2018-03-30 15:08:07 -0700 | [diff] [blame] | 3155 | case BPF_CGROUP_INET4_POST_BIND: |
| 3156 | case BPF_CGROUP_INET6_POST_BIND: |
Andrey Ignatov | d74bad4 | 2018-03-30 15:08:05 -0700 | [diff] [blame] | 3157 | case BPF_CGROUP_INET4_CONNECT: |
| 3158 | case BPF_CGROUP_INET6_CONNECT: |
Daniel Borkmann | 1b66d25 | 2020-05-19 00:45:45 +0200 | [diff] [blame] | 3159 | case BPF_CGROUP_INET4_GETPEERNAME: |
| 3160 | case BPF_CGROUP_INET6_GETPEERNAME: |
| 3161 | case BPF_CGROUP_INET4_GETSOCKNAME: |
| 3162 | case BPF_CGROUP_INET6_GETSOCKNAME: |
Andrey Ignatov | 1cedee1 | 2018-05-25 08:55:23 -0700 | [diff] [blame] | 3163 | case BPF_CGROUP_UDP4_SENDMSG: |
| 3164 | case BPF_CGROUP_UDP6_SENDMSG: |
Daniel Borkmann | 983695f | 2019-06-07 01:48:57 +0200 | [diff] [blame] | 3165 | case BPF_CGROUP_UDP4_RECVMSG: |
| 3166 | case BPF_CGROUP_UDP6_RECVMSG: |
Alexei Starovoitov | 468e2f6 | 2017-10-02 22:50:22 -0700 | [diff] [blame] | 3167 | case BPF_CGROUP_SOCK_OPS: |
Roman Gushchin | ebc614f | 2017-11-05 08:15:32 -0500 | [diff] [blame] | 3168 | case BPF_CGROUP_DEVICE: |
Andrey Ignatov | 7b146ce | 2019-02-27 12:59:24 -0800 | [diff] [blame] | 3169 | case BPF_CGROUP_SYSCTL: |
Stanislav Fomichev | 0d01da6 | 2019-06-27 13:38:47 -0700 | [diff] [blame] | 3170 | case BPF_CGROUP_GETSOCKOPT: |
| 3171 | case BPF_CGROUP_SETSOCKOPT: |
Andrii Nakryiko | e28784e | 2020-03-24 23:57:42 -0700 | [diff] [blame] | 3172 | return cgroup_bpf_prog_query(attr, uattr); |
Sean Young | f4364dc | 2018-05-27 12:24:09 +0100 | [diff] [blame] | 3173 | case BPF_LIRC_MODE2: |
| 3174 | return lirc_prog_query(attr, uattr); |
Stanislav Fomichev | 118c8e9 | 2019-04-25 14:37:23 -0700 | [diff] [blame] | 3175 | case BPF_FLOW_DISSECTOR: |
Jakub Sitnicki | e9ddbb7 | 2020-07-17 12:35:23 +0200 | [diff] [blame] | 3176 | case BPF_SK_LOOKUP: |
Jakub Sitnicki | a3fd7ce | 2020-05-31 10:28:36 +0200 | [diff] [blame] | 3177 | return netns_bpf_prog_query(attr, uattr); |
Alexei Starovoitov | 468e2f6 | 2017-10-02 22:50:22 -0700 | [diff] [blame] | 3178 | default: |
| 3179 | return -EINVAL; |
| 3180 | } |
Alexei Starovoitov | 468e2f6 | 2017-10-02 22:50:22 -0700 | [diff] [blame] | 3181 | } |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 3182 | |
Song Liu | 1b4d60e | 2020-09-25 13:54:29 -0700 | [diff] [blame] | 3183 | #define BPF_PROG_TEST_RUN_LAST_FIELD test.cpu |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 3184 | |
| 3185 | static int bpf_prog_test_run(const union bpf_attr *attr, |
| 3186 | union bpf_attr __user *uattr) |
| 3187 | { |
| 3188 | struct bpf_prog *prog; |
| 3189 | int ret = -ENOTSUPP; |
| 3190 | |
| 3191 | if (CHECK_ATTR(BPF_PROG_TEST_RUN)) |
| 3192 | return -EINVAL; |
| 3193 | |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 3194 | if ((attr->test.ctx_size_in && !attr->test.ctx_in) || |
| 3195 | (!attr->test.ctx_size_in && attr->test.ctx_in)) |
| 3196 | return -EINVAL; |
| 3197 | |
| 3198 | if ((attr->test.ctx_size_out && !attr->test.ctx_out) || |
| 3199 | (!attr->test.ctx_size_out && attr->test.ctx_out)) |
| 3200 | return -EINVAL; |
| 3201 | |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 3202 | prog = bpf_prog_get(attr->test.prog_fd); |
| 3203 | if (IS_ERR(prog)) |
| 3204 | return PTR_ERR(prog); |
| 3205 | |
| 3206 | if (prog->aux->ops->test_run) |
| 3207 | ret = prog->aux->ops->test_run(prog, attr, uattr); |
| 3208 | |
| 3209 | bpf_prog_put(prog); |
| 3210 | return ret; |
| 3211 | } |
| 3212 | |
Martin KaFai Lau | 34ad558 | 2017-06-05 12:15:48 -0700 | [diff] [blame] | 3213 | #define BPF_OBJ_GET_NEXT_ID_LAST_FIELD next_id |
| 3214 | |
| 3215 | static int bpf_obj_get_next_id(const union bpf_attr *attr, |
| 3216 | union bpf_attr __user *uattr, |
| 3217 | struct idr *idr, |
| 3218 | spinlock_t *lock) |
| 3219 | { |
| 3220 | u32 next_id = attr->start_id; |
| 3221 | int err = 0; |
| 3222 | |
| 3223 | if (CHECK_ATTR(BPF_OBJ_GET_NEXT_ID) || next_id >= INT_MAX) |
| 3224 | return -EINVAL; |
| 3225 | |
| 3226 | if (!capable(CAP_SYS_ADMIN)) |
| 3227 | return -EPERM; |
| 3228 | |
| 3229 | next_id++; |
| 3230 | spin_lock_bh(lock); |
| 3231 | if (!idr_get_next(idr, &next_id)) |
| 3232 | err = -ENOENT; |
| 3233 | spin_unlock_bh(lock); |
| 3234 | |
| 3235 | if (!err) |
| 3236 | err = put_user(next_id, &uattr->next_id); |
| 3237 | |
| 3238 | return err; |
| 3239 | } |
| 3240 | |
Yonghong Song | 6086d29 | 2020-05-09 10:59:09 -0700 | [diff] [blame] | 3241 | struct bpf_map *bpf_map_get_curr_or_next(u32 *id) |
| 3242 | { |
| 3243 | struct bpf_map *map; |
| 3244 | |
| 3245 | spin_lock_bh(&map_idr_lock); |
| 3246 | again: |
| 3247 | map = idr_get_next(&map_idr, id); |
| 3248 | if (map) { |
| 3249 | map = __bpf_map_inc_not_zero(map, false); |
| 3250 | if (IS_ERR(map)) { |
| 3251 | (*id)++; |
| 3252 | goto again; |
| 3253 | } |
| 3254 | } |
| 3255 | spin_unlock_bh(&map_idr_lock); |
| 3256 | |
| 3257 | return map; |
| 3258 | } |
| 3259 | |
Alexei Starovoitov | a228a64 | 2020-07-01 18:10:18 -0700 | [diff] [blame] | 3260 | struct bpf_prog *bpf_prog_get_curr_or_next(u32 *id) |
| 3261 | { |
| 3262 | struct bpf_prog *prog; |
| 3263 | |
| 3264 | spin_lock_bh(&prog_idr_lock); |
| 3265 | again: |
| 3266 | prog = idr_get_next(&prog_idr, id); |
| 3267 | if (prog) { |
| 3268 | prog = bpf_prog_inc_not_zero(prog); |
| 3269 | if (IS_ERR(prog)) { |
| 3270 | (*id)++; |
| 3271 | goto again; |
| 3272 | } |
| 3273 | } |
| 3274 | spin_unlock_bh(&prog_idr_lock); |
| 3275 | |
| 3276 | return prog; |
| 3277 | } |
| 3278 | |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 3279 | #define BPF_PROG_GET_FD_BY_ID_LAST_FIELD prog_id |
| 3280 | |
Björn Töpel | 7e6897f | 2019-12-13 18:51:09 +0100 | [diff] [blame] | 3281 | struct bpf_prog *bpf_prog_by_id(u32 id) |
| 3282 | { |
| 3283 | struct bpf_prog *prog; |
| 3284 | |
| 3285 | if (!id) |
| 3286 | return ERR_PTR(-ENOENT); |
| 3287 | |
| 3288 | spin_lock_bh(&prog_idr_lock); |
| 3289 | prog = idr_find(&prog_idr, id); |
| 3290 | if (prog) |
| 3291 | prog = bpf_prog_inc_not_zero(prog); |
| 3292 | else |
| 3293 | prog = ERR_PTR(-ENOENT); |
| 3294 | spin_unlock_bh(&prog_idr_lock); |
| 3295 | return prog; |
| 3296 | } |
| 3297 | |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 3298 | static int bpf_prog_get_fd_by_id(const union bpf_attr *attr) |
| 3299 | { |
| 3300 | struct bpf_prog *prog; |
| 3301 | u32 id = attr->prog_id; |
| 3302 | int fd; |
| 3303 | |
| 3304 | if (CHECK_ATTR(BPF_PROG_GET_FD_BY_ID)) |
| 3305 | return -EINVAL; |
| 3306 | |
| 3307 | if (!capable(CAP_SYS_ADMIN)) |
| 3308 | return -EPERM; |
| 3309 | |
Björn Töpel | 7e6897f | 2019-12-13 18:51:09 +0100 | [diff] [blame] | 3310 | prog = bpf_prog_by_id(id); |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 3311 | if (IS_ERR(prog)) |
| 3312 | return PTR_ERR(prog); |
| 3313 | |
| 3314 | fd = bpf_prog_new_fd(prog); |
| 3315 | if (fd < 0) |
| 3316 | bpf_prog_put(prog); |
| 3317 | |
| 3318 | return fd; |
| 3319 | } |
| 3320 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 3321 | #define BPF_MAP_GET_FD_BY_ID_LAST_FIELD open_flags |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 3322 | |
| 3323 | static int bpf_map_get_fd_by_id(const union bpf_attr *attr) |
| 3324 | { |
| 3325 | struct bpf_map *map; |
| 3326 | u32 id = attr->map_id; |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 3327 | int f_flags; |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 3328 | int fd; |
| 3329 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 3330 | if (CHECK_ATTR(BPF_MAP_GET_FD_BY_ID) || |
| 3331 | attr->open_flags & ~BPF_OBJ_FLAG_MASK) |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 3332 | return -EINVAL; |
| 3333 | |
| 3334 | if (!capable(CAP_SYS_ADMIN)) |
| 3335 | return -EPERM; |
| 3336 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 3337 | f_flags = bpf_get_file_flag(attr->open_flags); |
| 3338 | if (f_flags < 0) |
| 3339 | return f_flags; |
| 3340 | |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 3341 | spin_lock_bh(&map_idr_lock); |
| 3342 | map = idr_find(&map_idr, id); |
| 3343 | if (map) |
Stanislav Fomichev | b0e4701 | 2019-08-14 10:37:48 -0700 | [diff] [blame] | 3344 | map = __bpf_map_inc_not_zero(map, true); |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 3345 | else |
| 3346 | map = ERR_PTR(-ENOENT); |
| 3347 | spin_unlock_bh(&map_idr_lock); |
| 3348 | |
| 3349 | if (IS_ERR(map)) |
| 3350 | return PTR_ERR(map); |
| 3351 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 3352 | fd = bpf_map_new_fd(map, f_flags); |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 3353 | if (fd < 0) |
Peng Sun | 781e628 | 2019-02-26 22:15:37 +0800 | [diff] [blame] | 3354 | bpf_map_put_with_uref(map); |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 3355 | |
| 3356 | return fd; |
| 3357 | } |
| 3358 | |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3359 | static const struct bpf_map *bpf_map_from_imm(const struct bpf_prog *prog, |
Daniel Borkmann | d8eca5b | 2019-04-09 23:20:03 +0200 | [diff] [blame] | 3360 | unsigned long addr, u32 *off, |
| 3361 | u32 *type) |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3362 | { |
Daniel Borkmann | d8eca5b | 2019-04-09 23:20:03 +0200 | [diff] [blame] | 3363 | const struct bpf_map *map; |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3364 | int i; |
| 3365 | |
YiFei Zhu | 984fe94 | 2020-09-15 16:45:39 -0700 | [diff] [blame] | 3366 | mutex_lock(&prog->aux->used_maps_mutex); |
Daniel Borkmann | d8eca5b | 2019-04-09 23:20:03 +0200 | [diff] [blame] | 3367 | for (i = 0, *off = 0; i < prog->aux->used_map_cnt; i++) { |
| 3368 | map = prog->aux->used_maps[i]; |
| 3369 | if (map == (void *)addr) { |
| 3370 | *type = BPF_PSEUDO_MAP_FD; |
YiFei Zhu | 984fe94 | 2020-09-15 16:45:39 -0700 | [diff] [blame] | 3371 | goto out; |
Daniel Borkmann | d8eca5b | 2019-04-09 23:20:03 +0200 | [diff] [blame] | 3372 | } |
| 3373 | if (!map->ops->map_direct_value_meta) |
| 3374 | continue; |
| 3375 | if (!map->ops->map_direct_value_meta(map, addr, off)) { |
| 3376 | *type = BPF_PSEUDO_MAP_VALUE; |
YiFei Zhu | 984fe94 | 2020-09-15 16:45:39 -0700 | [diff] [blame] | 3377 | goto out; |
Daniel Borkmann | d8eca5b | 2019-04-09 23:20:03 +0200 | [diff] [blame] | 3378 | } |
| 3379 | } |
YiFei Zhu | 984fe94 | 2020-09-15 16:45:39 -0700 | [diff] [blame] | 3380 | map = NULL; |
Daniel Borkmann | d8eca5b | 2019-04-09 23:20:03 +0200 | [diff] [blame] | 3381 | |
YiFei Zhu | 984fe94 | 2020-09-15 16:45:39 -0700 | [diff] [blame] | 3382 | out: |
| 3383 | mutex_unlock(&prog->aux->used_maps_mutex); |
| 3384 | return map; |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3385 | } |
| 3386 | |
Kees Cook | 6396026 | 2020-07-02 15:45:23 -0700 | [diff] [blame] | 3387 | static struct bpf_insn *bpf_insn_prepare_dump(const struct bpf_prog *prog, |
| 3388 | const struct cred *f_cred) |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3389 | { |
| 3390 | const struct bpf_map *map; |
| 3391 | struct bpf_insn *insns; |
Daniel Borkmann | d8eca5b | 2019-04-09 23:20:03 +0200 | [diff] [blame] | 3392 | u32 off, type; |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3393 | u64 imm; |
Andrii Nakryiko | 29fcb05 | 2020-06-12 17:21:15 -0700 | [diff] [blame] | 3394 | u8 code; |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3395 | int i; |
| 3396 | |
| 3397 | insns = kmemdup(prog->insnsi, bpf_prog_insn_size(prog), |
| 3398 | GFP_USER); |
| 3399 | if (!insns) |
| 3400 | return insns; |
| 3401 | |
| 3402 | for (i = 0; i < prog->len; i++) { |
Andrii Nakryiko | 29fcb05 | 2020-06-12 17:21:15 -0700 | [diff] [blame] | 3403 | code = insns[i].code; |
| 3404 | |
| 3405 | if (code == (BPF_JMP | BPF_TAIL_CALL)) { |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3406 | insns[i].code = BPF_JMP | BPF_CALL; |
| 3407 | insns[i].imm = BPF_FUNC_tail_call; |
| 3408 | /* fall-through */ |
| 3409 | } |
Andrii Nakryiko | 29fcb05 | 2020-06-12 17:21:15 -0700 | [diff] [blame] | 3410 | if (code == (BPF_JMP | BPF_CALL) || |
| 3411 | code == (BPF_JMP | BPF_CALL_ARGS)) { |
| 3412 | if (code == (BPF_JMP | BPF_CALL_ARGS)) |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3413 | insns[i].code = BPF_JMP | BPF_CALL; |
Kees Cook | 6396026 | 2020-07-02 15:45:23 -0700 | [diff] [blame] | 3414 | if (!bpf_dump_raw_ok(f_cred)) |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3415 | insns[i].imm = 0; |
| 3416 | continue; |
| 3417 | } |
Andrii Nakryiko | 29fcb05 | 2020-06-12 17:21:15 -0700 | [diff] [blame] | 3418 | if (BPF_CLASS(code) == BPF_LDX && BPF_MODE(code) == BPF_PROBE_MEM) { |
| 3419 | insns[i].code = BPF_LDX | BPF_SIZE(code) | BPF_MEM; |
| 3420 | continue; |
| 3421 | } |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3422 | |
Andrii Nakryiko | 29fcb05 | 2020-06-12 17:21:15 -0700 | [diff] [blame] | 3423 | if (code != (BPF_LD | BPF_IMM | BPF_DW)) |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3424 | continue; |
| 3425 | |
| 3426 | imm = ((u64)insns[i + 1].imm << 32) | (u32)insns[i].imm; |
Daniel Borkmann | d8eca5b | 2019-04-09 23:20:03 +0200 | [diff] [blame] | 3427 | map = bpf_map_from_imm(prog, imm, &off, &type); |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3428 | if (map) { |
Daniel Borkmann | d8eca5b | 2019-04-09 23:20:03 +0200 | [diff] [blame] | 3429 | insns[i].src_reg = type; |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3430 | insns[i].imm = map->id; |
Daniel Borkmann | d8eca5b | 2019-04-09 23:20:03 +0200 | [diff] [blame] | 3431 | insns[i + 1].imm = off; |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3432 | continue; |
| 3433 | } |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3434 | } |
| 3435 | |
| 3436 | return insns; |
| 3437 | } |
| 3438 | |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 3439 | static int set_info_rec_size(struct bpf_prog_info *info) |
| 3440 | { |
| 3441 | /* |
| 3442 | * Ensure info.*_rec_size is the same as kernel expected size |
| 3443 | * |
| 3444 | * or |
| 3445 | * |
| 3446 | * Only allow zero *_rec_size if both _rec_size and _cnt are |
| 3447 | * zero. In this case, the kernel will set the expected |
| 3448 | * _rec_size back to the info. |
| 3449 | */ |
| 3450 | |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 3451 | if ((info->nr_func_info || info->func_info_rec_size) && |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 3452 | info->func_info_rec_size != sizeof(struct bpf_func_info)) |
| 3453 | return -EINVAL; |
| 3454 | |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 3455 | if ((info->nr_line_info || info->line_info_rec_size) && |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 3456 | info->line_info_rec_size != sizeof(struct bpf_line_info)) |
| 3457 | return -EINVAL; |
| 3458 | |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 3459 | 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] | 3460 | info->jited_line_info_rec_size != sizeof(__u64)) |
| 3461 | return -EINVAL; |
| 3462 | |
| 3463 | info->func_info_rec_size = sizeof(struct bpf_func_info); |
| 3464 | info->line_info_rec_size = sizeof(struct bpf_line_info); |
| 3465 | info->jited_line_info_rec_size = sizeof(__u64); |
| 3466 | |
| 3467 | return 0; |
| 3468 | } |
| 3469 | |
Kees Cook | 6396026 | 2020-07-02 15:45:23 -0700 | [diff] [blame] | 3470 | static int bpf_prog_get_info_by_fd(struct file *file, |
| 3471 | struct bpf_prog *prog, |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3472 | const union bpf_attr *attr, |
| 3473 | union bpf_attr __user *uattr) |
| 3474 | { |
| 3475 | struct bpf_prog_info __user *uinfo = u64_to_user_ptr(attr->info.info); |
Greg Kroah-Hartman | 5c6f258 | 2020-03-20 17:22:58 +0100 | [diff] [blame] | 3476 | struct bpf_prog_info info; |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3477 | u32 info_len = attr->info.info_len; |
Alexei Starovoitov | 5f8f8b9 | 2019-02-25 14:28:40 -0800 | [diff] [blame] | 3478 | struct bpf_prog_stats stats; |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3479 | char __user *uinsns; |
| 3480 | u32 ulen; |
| 3481 | int err; |
| 3482 | |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 3483 | err = bpf_check_uarg_tail_zero(USER_BPFPTR(uinfo), sizeof(info), info_len); |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3484 | if (err) |
| 3485 | return err; |
| 3486 | info_len = min_t(u32, sizeof(info), info_len); |
| 3487 | |
Greg Kroah-Hartman | 5c6f258 | 2020-03-20 17:22:58 +0100 | [diff] [blame] | 3488 | memset(&info, 0, sizeof(info)); |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3489 | if (copy_from_user(&info, uinfo, info_len)) |
Daniel Borkmann | 89b0968 | 2017-07-27 21:02:46 +0200 | [diff] [blame] | 3490 | return -EFAULT; |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3491 | |
| 3492 | info.type = prog->type; |
| 3493 | info.id = prog->aux->id; |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 3494 | info.load_time = prog->aux->load_time; |
| 3495 | info.created_by_uid = from_kuid_munged(current_user_ns(), |
| 3496 | prog->aux->user->uid); |
Jiri Olsa | b85fab0 | 2018-04-25 19:41:06 +0200 | [diff] [blame] | 3497 | info.gpl_compatible = prog->gpl_compatible; |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3498 | |
| 3499 | memcpy(info.tag, prog->tag, sizeof(prog->tag)); |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 3500 | memcpy(info.name, prog->aux->name, sizeof(prog->aux->name)); |
| 3501 | |
YiFei Zhu | 984fe94 | 2020-09-15 16:45:39 -0700 | [diff] [blame] | 3502 | mutex_lock(&prog->aux->used_maps_mutex); |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 3503 | ulen = info.nr_map_ids; |
| 3504 | info.nr_map_ids = prog->aux->used_map_cnt; |
| 3505 | ulen = min_t(u32, info.nr_map_ids, ulen); |
| 3506 | if (ulen) { |
Martin KaFai Lau | 721e08d | 2017-09-29 10:52:17 -0700 | [diff] [blame] | 3507 | 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] | 3508 | u32 i; |
| 3509 | |
| 3510 | for (i = 0; i < ulen; i++) |
| 3511 | if (put_user(prog->aux->used_maps[i]->id, |
YiFei Zhu | 984fe94 | 2020-09-15 16:45:39 -0700 | [diff] [blame] | 3512 | &user_map_ids[i])) { |
| 3513 | mutex_unlock(&prog->aux->used_maps_mutex); |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 3514 | return -EFAULT; |
YiFei Zhu | 984fe94 | 2020-09-15 16:45:39 -0700 | [diff] [blame] | 3515 | } |
Martin KaFai Lau | cb4d2b3 | 2017-09-27 14:37:52 -0700 | [diff] [blame] | 3516 | } |
YiFei Zhu | 984fe94 | 2020-09-15 16:45:39 -0700 | [diff] [blame] | 3517 | mutex_unlock(&prog->aux->used_maps_mutex); |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3518 | |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 3519 | err = set_info_rec_size(&info); |
| 3520 | if (err) |
| 3521 | return err; |
Martin KaFai Lau | 7337224 | 2018-12-05 17:35:43 -0800 | [diff] [blame] | 3522 | |
Alexei Starovoitov | 5f8f8b9 | 2019-02-25 14:28:40 -0800 | [diff] [blame] | 3523 | bpf_prog_get_stats(prog, &stats); |
| 3524 | info.run_time_ns = stats.nsecs; |
| 3525 | info.run_cnt = stats.cnt; |
Alexei Starovoitov | 9ed9e9b | 2021-02-09 19:36:31 -0800 | [diff] [blame] | 3526 | info.recursion_misses = stats.misses; |
Alexei Starovoitov | 5f8f8b9 | 2019-02-25 14:28:40 -0800 | [diff] [blame] | 3527 | |
Alexei Starovoitov | 2c78ee8 | 2020-05-13 16:03:54 -0700 | [diff] [blame] | 3528 | if (!bpf_capable()) { |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3529 | info.jited_prog_len = 0; |
| 3530 | info.xlated_prog_len = 0; |
Sandipan Das | dbecd73 | 2018-05-24 12:26:48 +0530 | [diff] [blame] | 3531 | info.nr_jited_ksyms = 0; |
Daniel Borkmann | 28c2fae | 2018-11-02 11:35:46 +0100 | [diff] [blame] | 3532 | info.nr_jited_func_lens = 0; |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 3533 | info.nr_func_info = 0; |
| 3534 | info.nr_line_info = 0; |
| 3535 | info.nr_jited_line_info = 0; |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3536 | goto done; |
| 3537 | } |
| 3538 | |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3539 | ulen = info.xlated_prog_len; |
Daniel Borkmann | 9975a54 | 2017-07-28 17:05:25 +0200 | [diff] [blame] | 3540 | info.xlated_prog_len = bpf_prog_insn_size(prog); |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3541 | if (info.xlated_prog_len && ulen) { |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3542 | struct bpf_insn *insns_sanitized; |
| 3543 | bool fault; |
| 3544 | |
Kees Cook | 6396026 | 2020-07-02 15:45:23 -0700 | [diff] [blame] | 3545 | if (prog->blinded && !bpf_dump_raw_ok(file->f_cred)) { |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3546 | info.xlated_prog_insns = 0; |
| 3547 | goto done; |
| 3548 | } |
Kees Cook | 6396026 | 2020-07-02 15:45:23 -0700 | [diff] [blame] | 3549 | insns_sanitized = bpf_insn_prepare_dump(prog, file->f_cred); |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3550 | if (!insns_sanitized) |
| 3551 | return -ENOMEM; |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3552 | uinsns = u64_to_user_ptr(info.xlated_prog_insns); |
| 3553 | ulen = min_t(u32, info.xlated_prog_len, ulen); |
Daniel Borkmann | 7105e82 | 2017-12-20 13:42:57 +0100 | [diff] [blame] | 3554 | fault = copy_to_user(uinsns, insns_sanitized, ulen); |
| 3555 | kfree(insns_sanitized); |
| 3556 | if (fault) |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3557 | return -EFAULT; |
| 3558 | } |
| 3559 | |
Jakub Kicinski | 675fc27 | 2017-12-27 18:39:09 -0800 | [diff] [blame] | 3560 | if (bpf_prog_is_dev_bound(prog->aux)) { |
| 3561 | err = bpf_prog_offload_info_fill(&info, prog); |
| 3562 | if (err) |
| 3563 | return err; |
Jiong Wang | fcfb126 | 2018-01-16 16:05:19 -0800 | [diff] [blame] | 3564 | goto done; |
| 3565 | } |
| 3566 | |
| 3567 | /* NOTE: the following code is supposed to be skipped for offload. |
| 3568 | * bpf_prog_offload_info_fill() is the place to fill similar fields |
| 3569 | * for offload. |
| 3570 | */ |
| 3571 | ulen = info.jited_prog_len; |
Sandipan Das | 4d56a76 | 2018-05-24 12:26:51 +0530 | [diff] [blame] | 3572 | if (prog->aux->func_cnt) { |
| 3573 | u32 i; |
| 3574 | |
| 3575 | info.jited_prog_len = 0; |
| 3576 | for (i = 0; i < prog->aux->func_cnt; i++) |
| 3577 | info.jited_prog_len += prog->aux->func[i]->jited_len; |
| 3578 | } else { |
| 3579 | info.jited_prog_len = prog->jited_len; |
| 3580 | } |
| 3581 | |
Jiong Wang | fcfb126 | 2018-01-16 16:05:19 -0800 | [diff] [blame] | 3582 | if (info.jited_prog_len && ulen) { |
Kees Cook | 6396026 | 2020-07-02 15:45:23 -0700 | [diff] [blame] | 3583 | if (bpf_dump_raw_ok(file->f_cred)) { |
Jiong Wang | fcfb126 | 2018-01-16 16:05:19 -0800 | [diff] [blame] | 3584 | uinsns = u64_to_user_ptr(info.jited_prog_insns); |
| 3585 | ulen = min_t(u32, info.jited_prog_len, ulen); |
Sandipan Das | 4d56a76 | 2018-05-24 12:26:51 +0530 | [diff] [blame] | 3586 | |
| 3587 | /* for multi-function programs, copy the JITed |
| 3588 | * instructions for all the functions |
| 3589 | */ |
| 3590 | if (prog->aux->func_cnt) { |
| 3591 | u32 len, free, i; |
| 3592 | u8 *img; |
| 3593 | |
| 3594 | free = ulen; |
| 3595 | for (i = 0; i < prog->aux->func_cnt; i++) { |
| 3596 | len = prog->aux->func[i]->jited_len; |
| 3597 | len = min_t(u32, len, free); |
| 3598 | img = (u8 *) prog->aux->func[i]->bpf_func; |
| 3599 | if (copy_to_user(uinsns, img, len)) |
| 3600 | return -EFAULT; |
| 3601 | uinsns += len; |
| 3602 | free -= len; |
| 3603 | if (!free) |
| 3604 | break; |
| 3605 | } |
| 3606 | } else { |
| 3607 | if (copy_to_user(uinsns, prog->bpf_func, ulen)) |
| 3608 | return -EFAULT; |
| 3609 | } |
Jiong Wang | fcfb126 | 2018-01-16 16:05:19 -0800 | [diff] [blame] | 3610 | } else { |
| 3611 | info.jited_prog_insns = 0; |
| 3612 | } |
Jakub Kicinski | 675fc27 | 2017-12-27 18:39:09 -0800 | [diff] [blame] | 3613 | } |
| 3614 | |
Sandipan Das | dbecd73 | 2018-05-24 12:26:48 +0530 | [diff] [blame] | 3615 | ulen = info.nr_jited_ksyms; |
Song Liu | ff1889f | 2018-11-02 10:16:17 -0700 | [diff] [blame] | 3616 | info.nr_jited_ksyms = prog->aux->func_cnt ? : 1; |
Song Liu | 7a5725d | 2018-12-10 11:17:50 -0800 | [diff] [blame] | 3617 | if (ulen) { |
Kees Cook | 6396026 | 2020-07-02 15:45:23 -0700 | [diff] [blame] | 3618 | if (bpf_dump_raw_ok(file->f_cred)) { |
Song Liu | ff1889f | 2018-11-02 10:16:17 -0700 | [diff] [blame] | 3619 | unsigned long ksym_addr; |
Sandipan Das | dbecd73 | 2018-05-24 12:26:48 +0530 | [diff] [blame] | 3620 | u64 __user *user_ksyms; |
Sandipan Das | dbecd73 | 2018-05-24 12:26:48 +0530 | [diff] [blame] | 3621 | u32 i; |
| 3622 | |
| 3623 | /* copy the address of the kernel symbol |
| 3624 | * corresponding to each function |
| 3625 | */ |
| 3626 | ulen = min_t(u32, info.nr_jited_ksyms, ulen); |
| 3627 | user_ksyms = u64_to_user_ptr(info.jited_ksyms); |
Song Liu | ff1889f | 2018-11-02 10:16:17 -0700 | [diff] [blame] | 3628 | if (prog->aux->func_cnt) { |
| 3629 | for (i = 0; i < ulen; i++) { |
| 3630 | ksym_addr = (unsigned long) |
| 3631 | prog->aux->func[i]->bpf_func; |
| 3632 | if (put_user((u64) ksym_addr, |
| 3633 | &user_ksyms[i])) |
| 3634 | return -EFAULT; |
| 3635 | } |
| 3636 | } else { |
| 3637 | ksym_addr = (unsigned long) prog->bpf_func; |
| 3638 | if (put_user((u64) ksym_addr, &user_ksyms[0])) |
Sandipan Das | dbecd73 | 2018-05-24 12:26:48 +0530 | [diff] [blame] | 3639 | return -EFAULT; |
| 3640 | } |
| 3641 | } else { |
| 3642 | info.jited_ksyms = 0; |
| 3643 | } |
| 3644 | } |
| 3645 | |
Sandipan Das | 815581c | 2018-05-24 12:26:52 +0530 | [diff] [blame] | 3646 | ulen = info.nr_jited_func_lens; |
Song Liu | ff1889f | 2018-11-02 10:16:17 -0700 | [diff] [blame] | 3647 | info.nr_jited_func_lens = prog->aux->func_cnt ? : 1; |
Song Liu | 7a5725d | 2018-12-10 11:17:50 -0800 | [diff] [blame] | 3648 | if (ulen) { |
Kees Cook | 6396026 | 2020-07-02 15:45:23 -0700 | [diff] [blame] | 3649 | if (bpf_dump_raw_ok(file->f_cred)) { |
Sandipan Das | 815581c | 2018-05-24 12:26:52 +0530 | [diff] [blame] | 3650 | u32 __user *user_lens; |
| 3651 | u32 func_len, i; |
| 3652 | |
| 3653 | /* copy the JITed image lengths for each function */ |
| 3654 | ulen = min_t(u32, info.nr_jited_func_lens, ulen); |
| 3655 | user_lens = u64_to_user_ptr(info.jited_func_lens); |
Song Liu | ff1889f | 2018-11-02 10:16:17 -0700 | [diff] [blame] | 3656 | if (prog->aux->func_cnt) { |
| 3657 | for (i = 0; i < ulen; i++) { |
| 3658 | func_len = |
| 3659 | prog->aux->func[i]->jited_len; |
| 3660 | if (put_user(func_len, &user_lens[i])) |
| 3661 | return -EFAULT; |
| 3662 | } |
| 3663 | } else { |
| 3664 | func_len = prog->jited_len; |
| 3665 | if (put_user(func_len, &user_lens[0])) |
Sandipan Das | 815581c | 2018-05-24 12:26:52 +0530 | [diff] [blame] | 3666 | return -EFAULT; |
| 3667 | } |
| 3668 | } else { |
| 3669 | info.jited_func_lens = 0; |
| 3670 | } |
| 3671 | } |
| 3672 | |
Martin KaFai Lau | 7337224 | 2018-12-05 17:35:43 -0800 | [diff] [blame] | 3673 | if (prog->aux->btf) |
Andrii Nakryiko | 22dc4a0 | 2020-12-03 12:46:29 -0800 | [diff] [blame] | 3674 | info.btf_id = btf_obj_id(prog->aux->btf); |
Yonghong Song | 838e969 | 2018-11-19 15:29:11 -0800 | [diff] [blame] | 3675 | |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 3676 | ulen = info.nr_func_info; |
| 3677 | info.nr_func_info = prog->aux->func_info_cnt; |
| 3678 | if (info.nr_func_info && ulen) { |
Martin KaFai Lau | 9e79416 | 2018-12-12 10:18:21 -0800 | [diff] [blame] | 3679 | char __user *user_finfo; |
Yonghong Song | 838e969 | 2018-11-19 15:29:11 -0800 | [diff] [blame] | 3680 | |
Martin KaFai Lau | 9e79416 | 2018-12-12 10:18:21 -0800 | [diff] [blame] | 3681 | user_finfo = u64_to_user_ptr(info.func_info); |
| 3682 | ulen = min_t(u32, info.nr_func_info, ulen); |
| 3683 | if (copy_to_user(user_finfo, prog->aux->func_info, |
| 3684 | info.func_info_rec_size * ulen)) |
| 3685 | return -EFAULT; |
Yonghong Song | 838e969 | 2018-11-19 15:29:11 -0800 | [diff] [blame] | 3686 | } |
| 3687 | |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 3688 | ulen = info.nr_line_info; |
| 3689 | info.nr_line_info = prog->aux->nr_linfo; |
| 3690 | if (info.nr_line_info && ulen) { |
Martin KaFai Lau | 9e79416 | 2018-12-12 10:18:21 -0800 | [diff] [blame] | 3691 | __u8 __user *user_linfo; |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 3692 | |
Martin KaFai Lau | 9e79416 | 2018-12-12 10:18:21 -0800 | [diff] [blame] | 3693 | user_linfo = u64_to_user_ptr(info.line_info); |
| 3694 | ulen = min_t(u32, info.nr_line_info, ulen); |
| 3695 | if (copy_to_user(user_linfo, prog->aux->linfo, |
| 3696 | info.line_info_rec_size * ulen)) |
| 3697 | return -EFAULT; |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 3698 | } |
| 3699 | |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 3700 | ulen = info.nr_jited_line_info; |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 3701 | if (prog->aux->jited_linfo) |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 3702 | info.nr_jited_line_info = prog->aux->nr_linfo; |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 3703 | else |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 3704 | info.nr_jited_line_info = 0; |
| 3705 | if (info.nr_jited_line_info && ulen) { |
Kees Cook | 6396026 | 2020-07-02 15:45:23 -0700 | [diff] [blame] | 3706 | if (bpf_dump_raw_ok(file->f_cred)) { |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 3707 | __u64 __user *user_linfo; |
| 3708 | u32 i; |
| 3709 | |
| 3710 | user_linfo = u64_to_user_ptr(info.jited_line_info); |
Yonghong Song | 11d8b82 | 2018-12-10 14:14:08 -0800 | [diff] [blame] | 3711 | ulen = min_t(u32, info.nr_jited_line_info, ulen); |
Martin KaFai Lau | c454a46 | 2018-12-07 16:42:25 -0800 | [diff] [blame] | 3712 | for (i = 0; i < ulen; i++) { |
| 3713 | if (put_user((__u64)(long)prog->aux->jited_linfo[i], |
| 3714 | &user_linfo[i])) |
| 3715 | return -EFAULT; |
| 3716 | } |
| 3717 | } else { |
| 3718 | info.jited_line_info = 0; |
| 3719 | } |
| 3720 | } |
| 3721 | |
Song Liu | c872bdb | 2018-12-12 09:37:46 -0800 | [diff] [blame] | 3722 | ulen = info.nr_prog_tags; |
| 3723 | info.nr_prog_tags = prog->aux->func_cnt ? : 1; |
| 3724 | if (ulen) { |
| 3725 | __u8 __user (*user_prog_tags)[BPF_TAG_SIZE]; |
| 3726 | u32 i; |
| 3727 | |
| 3728 | user_prog_tags = u64_to_user_ptr(info.prog_tags); |
| 3729 | ulen = min_t(u32, info.nr_prog_tags, ulen); |
| 3730 | if (prog->aux->func_cnt) { |
| 3731 | for (i = 0; i < ulen; i++) { |
| 3732 | if (copy_to_user(user_prog_tags[i], |
| 3733 | prog->aux->func[i]->tag, |
| 3734 | BPF_TAG_SIZE)) |
| 3735 | return -EFAULT; |
| 3736 | } |
| 3737 | } else { |
| 3738 | if (copy_to_user(user_prog_tags[0], |
| 3739 | prog->tag, BPF_TAG_SIZE)) |
| 3740 | return -EFAULT; |
| 3741 | } |
| 3742 | } |
| 3743 | |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3744 | done: |
| 3745 | if (copy_to_user(uinfo, &info, info_len) || |
| 3746 | put_user(info_len, &uattr->info.info_len)) |
| 3747 | return -EFAULT; |
| 3748 | |
| 3749 | return 0; |
| 3750 | } |
| 3751 | |
Kees Cook | 6396026 | 2020-07-02 15:45:23 -0700 | [diff] [blame] | 3752 | static int bpf_map_get_info_by_fd(struct file *file, |
| 3753 | struct bpf_map *map, |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3754 | const union bpf_attr *attr, |
| 3755 | union bpf_attr __user *uattr) |
| 3756 | { |
| 3757 | struct bpf_map_info __user *uinfo = u64_to_user_ptr(attr->info.info); |
Greg Kroah-Hartman | 5c6f258 | 2020-03-20 17:22:58 +0100 | [diff] [blame] | 3758 | struct bpf_map_info info; |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3759 | u32 info_len = attr->info.info_len; |
| 3760 | int err; |
| 3761 | |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 3762 | err = bpf_check_uarg_tail_zero(USER_BPFPTR(uinfo), sizeof(info), info_len); |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3763 | if (err) |
| 3764 | return err; |
| 3765 | info_len = min_t(u32, sizeof(info), info_len); |
| 3766 | |
Greg Kroah-Hartman | 5c6f258 | 2020-03-20 17:22:58 +0100 | [diff] [blame] | 3767 | memset(&info, 0, sizeof(info)); |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3768 | info.type = map->map_type; |
| 3769 | info.id = map->id; |
| 3770 | info.key_size = map->key_size; |
| 3771 | info.value_size = map->value_size; |
| 3772 | info.max_entries = map->max_entries; |
| 3773 | info.map_flags = map->map_flags; |
Martin KaFai Lau | ad5b177 | 2017-09-27 14:37:53 -0700 | [diff] [blame] | 3774 | memcpy(info.name, map->name, sizeof(map->name)); |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3775 | |
Martin KaFai Lau | 78958fc | 2018-05-04 14:49:51 -0700 | [diff] [blame] | 3776 | if (map->btf) { |
Andrii Nakryiko | 22dc4a0 | 2020-12-03 12:46:29 -0800 | [diff] [blame] | 3777 | info.btf_id = btf_obj_id(map->btf); |
Martin KaFai Lau | 9b2cf32 | 2018-05-22 14:57:21 -0700 | [diff] [blame] | 3778 | info.btf_key_type_id = map->btf_key_type_id; |
| 3779 | info.btf_value_type_id = map->btf_value_type_id; |
Martin KaFai Lau | 78958fc | 2018-05-04 14:49:51 -0700 | [diff] [blame] | 3780 | } |
Martin KaFai Lau | 85d33df | 2020-01-08 16:35:05 -0800 | [diff] [blame] | 3781 | info.btf_vmlinux_value_type_id = map->btf_vmlinux_value_type_id; |
Martin KaFai Lau | 78958fc | 2018-05-04 14:49:51 -0700 | [diff] [blame] | 3782 | |
Jakub Kicinski | 52775b3 | 2018-01-17 19:13:28 -0800 | [diff] [blame] | 3783 | if (bpf_map_is_dev_bound(map)) { |
| 3784 | err = bpf_map_offload_info_fill(&info, map); |
| 3785 | if (err) |
| 3786 | return err; |
| 3787 | } |
| 3788 | |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3789 | if (copy_to_user(uinfo, &info, info_len) || |
| 3790 | put_user(info_len, &uattr->info.info_len)) |
| 3791 | return -EFAULT; |
| 3792 | |
| 3793 | return 0; |
| 3794 | } |
| 3795 | |
Kees Cook | 6396026 | 2020-07-02 15:45:23 -0700 | [diff] [blame] | 3796 | static int bpf_btf_get_info_by_fd(struct file *file, |
| 3797 | struct btf *btf, |
Martin KaFai Lau | 62dab84 | 2018-05-04 14:49:52 -0700 | [diff] [blame] | 3798 | const union bpf_attr *attr, |
| 3799 | union bpf_attr __user *uattr) |
| 3800 | { |
| 3801 | struct bpf_btf_info __user *uinfo = u64_to_user_ptr(attr->info.info); |
| 3802 | u32 info_len = attr->info.info_len; |
| 3803 | int err; |
| 3804 | |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 3805 | err = bpf_check_uarg_tail_zero(USER_BPFPTR(uinfo), sizeof(*uinfo), info_len); |
Martin KaFai Lau | 62dab84 | 2018-05-04 14:49:52 -0700 | [diff] [blame] | 3806 | if (err) |
| 3807 | return err; |
| 3808 | |
| 3809 | return btf_get_info_by_fd(btf, attr, uattr); |
| 3810 | } |
| 3811 | |
Kees Cook | 6396026 | 2020-07-02 15:45:23 -0700 | [diff] [blame] | 3812 | static int bpf_link_get_info_by_fd(struct file *file, |
| 3813 | struct bpf_link *link, |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 3814 | const union bpf_attr *attr, |
| 3815 | union bpf_attr __user *uattr) |
| 3816 | { |
| 3817 | struct bpf_link_info __user *uinfo = u64_to_user_ptr(attr->info.info); |
| 3818 | struct bpf_link_info info; |
| 3819 | u32 info_len = attr->info.info_len; |
| 3820 | int err; |
| 3821 | |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 3822 | err = bpf_check_uarg_tail_zero(USER_BPFPTR(uinfo), sizeof(info), info_len); |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 3823 | if (err) |
| 3824 | return err; |
| 3825 | info_len = min_t(u32, sizeof(info), info_len); |
| 3826 | |
| 3827 | memset(&info, 0, sizeof(info)); |
| 3828 | if (copy_from_user(&info, uinfo, info_len)) |
| 3829 | return -EFAULT; |
| 3830 | |
| 3831 | info.type = link->type; |
| 3832 | info.id = link->id; |
| 3833 | info.prog_id = link->prog->aux->id; |
| 3834 | |
| 3835 | if (link->ops->fill_link_info) { |
| 3836 | err = link->ops->fill_link_info(link, &info); |
| 3837 | if (err) |
| 3838 | return err; |
| 3839 | } |
| 3840 | |
| 3841 | if (copy_to_user(uinfo, &info, info_len) || |
| 3842 | put_user(info_len, &uattr->info.info_len)) |
| 3843 | return -EFAULT; |
| 3844 | |
| 3845 | return 0; |
| 3846 | } |
| 3847 | |
| 3848 | |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3849 | #define BPF_OBJ_GET_INFO_BY_FD_LAST_FIELD info.info |
| 3850 | |
| 3851 | static int bpf_obj_get_info_by_fd(const union bpf_attr *attr, |
| 3852 | union bpf_attr __user *uattr) |
| 3853 | { |
| 3854 | int ufd = attr->info.bpf_fd; |
| 3855 | struct fd f; |
| 3856 | int err; |
| 3857 | |
| 3858 | if (CHECK_ATTR(BPF_OBJ_GET_INFO_BY_FD)) |
| 3859 | return -EINVAL; |
| 3860 | |
| 3861 | f = fdget(ufd); |
| 3862 | if (!f.file) |
| 3863 | return -EBADFD; |
| 3864 | |
| 3865 | if (f.file->f_op == &bpf_prog_fops) |
Kees Cook | 6396026 | 2020-07-02 15:45:23 -0700 | [diff] [blame] | 3866 | err = bpf_prog_get_info_by_fd(f.file, f.file->private_data, attr, |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3867 | uattr); |
| 3868 | else if (f.file->f_op == &bpf_map_fops) |
Kees Cook | 6396026 | 2020-07-02 15:45:23 -0700 | [diff] [blame] | 3869 | err = bpf_map_get_info_by_fd(f.file, f.file->private_data, attr, |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3870 | uattr); |
Martin KaFai Lau | 60197cf | 2018-04-18 15:56:02 -0700 | [diff] [blame] | 3871 | else if (f.file->f_op == &btf_fops) |
Kees Cook | 6396026 | 2020-07-02 15:45:23 -0700 | [diff] [blame] | 3872 | err = bpf_btf_get_info_by_fd(f.file, f.file->private_data, attr, uattr); |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 3873 | else if (f.file->f_op == &bpf_link_fops) |
Kees Cook | 6396026 | 2020-07-02 15:45:23 -0700 | [diff] [blame] | 3874 | err = bpf_link_get_info_by_fd(f.file, f.file->private_data, |
Andrii Nakryiko | f2e10bf | 2020-04-28 17:16:08 -0700 | [diff] [blame] | 3875 | attr, uattr); |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 3876 | else |
| 3877 | err = -EINVAL; |
| 3878 | |
| 3879 | fdput(f); |
| 3880 | return err; |
| 3881 | } |
| 3882 | |
Martin KaFai Lau | f56a653 | 2018-04-18 15:56:01 -0700 | [diff] [blame] | 3883 | #define BPF_BTF_LOAD_LAST_FIELD btf_log_level |
| 3884 | |
Alexei Starovoitov | c571bd7 | 2021-05-13 17:36:08 -0700 | [diff] [blame] | 3885 | static int bpf_btf_load(const union bpf_attr *attr, bpfptr_t uattr) |
Martin KaFai Lau | f56a653 | 2018-04-18 15:56:01 -0700 | [diff] [blame] | 3886 | { |
| 3887 | if (CHECK_ATTR(BPF_BTF_LOAD)) |
| 3888 | return -EINVAL; |
| 3889 | |
Alexei Starovoitov | 2c78ee8 | 2020-05-13 16:03:54 -0700 | [diff] [blame] | 3890 | if (!bpf_capable()) |
Martin KaFai Lau | f56a653 | 2018-04-18 15:56:01 -0700 | [diff] [blame] | 3891 | return -EPERM; |
| 3892 | |
Alexei Starovoitov | c571bd7 | 2021-05-13 17:36:08 -0700 | [diff] [blame] | 3893 | return btf_new_fd(attr, uattr); |
Martin KaFai Lau | f56a653 | 2018-04-18 15:56:01 -0700 | [diff] [blame] | 3894 | } |
| 3895 | |
Martin KaFai Lau | 78958fc | 2018-05-04 14:49:51 -0700 | [diff] [blame] | 3896 | #define BPF_BTF_GET_FD_BY_ID_LAST_FIELD btf_id |
| 3897 | |
| 3898 | static int bpf_btf_get_fd_by_id(const union bpf_attr *attr) |
| 3899 | { |
| 3900 | if (CHECK_ATTR(BPF_BTF_GET_FD_BY_ID)) |
| 3901 | return -EINVAL; |
| 3902 | |
| 3903 | if (!capable(CAP_SYS_ADMIN)) |
| 3904 | return -EPERM; |
| 3905 | |
| 3906 | return btf_get_fd_by_id(attr->btf_id); |
| 3907 | } |
| 3908 | |
Yonghong Song | 41bdc4b | 2018-05-24 11:21:09 -0700 | [diff] [blame] | 3909 | static int bpf_task_fd_query_copy(const union bpf_attr *attr, |
| 3910 | union bpf_attr __user *uattr, |
| 3911 | u32 prog_id, u32 fd_type, |
| 3912 | const char *buf, u64 probe_offset, |
| 3913 | u64 probe_addr) |
| 3914 | { |
| 3915 | char __user *ubuf = u64_to_user_ptr(attr->task_fd_query.buf); |
| 3916 | u32 len = buf ? strlen(buf) : 0, input_len; |
| 3917 | int err = 0; |
| 3918 | |
| 3919 | if (put_user(len, &uattr->task_fd_query.buf_len)) |
| 3920 | return -EFAULT; |
| 3921 | input_len = attr->task_fd_query.buf_len; |
| 3922 | if (input_len && ubuf) { |
| 3923 | if (!len) { |
| 3924 | /* nothing to copy, just make ubuf NULL terminated */ |
| 3925 | char zero = '\0'; |
| 3926 | |
| 3927 | if (put_user(zero, ubuf)) |
| 3928 | return -EFAULT; |
| 3929 | } else if (input_len >= len + 1) { |
| 3930 | /* ubuf can hold the string with NULL terminator */ |
| 3931 | if (copy_to_user(ubuf, buf, len + 1)) |
| 3932 | return -EFAULT; |
| 3933 | } else { |
| 3934 | /* ubuf cannot hold the string with NULL terminator, |
| 3935 | * do a partial copy with NULL terminator. |
| 3936 | */ |
| 3937 | char zero = '\0'; |
| 3938 | |
| 3939 | err = -ENOSPC; |
| 3940 | if (copy_to_user(ubuf, buf, input_len - 1)) |
| 3941 | return -EFAULT; |
| 3942 | if (put_user(zero, ubuf + input_len - 1)) |
| 3943 | return -EFAULT; |
| 3944 | } |
| 3945 | } |
| 3946 | |
| 3947 | if (put_user(prog_id, &uattr->task_fd_query.prog_id) || |
| 3948 | put_user(fd_type, &uattr->task_fd_query.fd_type) || |
| 3949 | put_user(probe_offset, &uattr->task_fd_query.probe_offset) || |
| 3950 | put_user(probe_addr, &uattr->task_fd_query.probe_addr)) |
| 3951 | return -EFAULT; |
| 3952 | |
| 3953 | return err; |
| 3954 | } |
| 3955 | |
| 3956 | #define BPF_TASK_FD_QUERY_LAST_FIELD task_fd_query.probe_addr |
| 3957 | |
| 3958 | static int bpf_task_fd_query(const union bpf_attr *attr, |
| 3959 | union bpf_attr __user *uattr) |
| 3960 | { |
| 3961 | pid_t pid = attr->task_fd_query.pid; |
| 3962 | u32 fd = attr->task_fd_query.fd; |
| 3963 | const struct perf_event *event; |
Yonghong Song | 41bdc4b | 2018-05-24 11:21:09 -0700 | [diff] [blame] | 3964 | struct task_struct *task; |
| 3965 | struct file *file; |
| 3966 | int err; |
| 3967 | |
| 3968 | if (CHECK_ATTR(BPF_TASK_FD_QUERY)) |
| 3969 | return -EINVAL; |
| 3970 | |
| 3971 | if (!capable(CAP_SYS_ADMIN)) |
| 3972 | return -EPERM; |
| 3973 | |
| 3974 | if (attr->task_fd_query.flags != 0) |
| 3975 | return -EINVAL; |
| 3976 | |
| 3977 | task = get_pid_task(find_vpid(pid), PIDTYPE_PID); |
| 3978 | if (!task) |
| 3979 | return -ENOENT; |
| 3980 | |
Yonghong Song | 41bdc4b | 2018-05-24 11:21:09 -0700 | [diff] [blame] | 3981 | err = 0; |
Eric W. Biederman | b48845a | 2020-11-20 17:14:22 -0600 | [diff] [blame] | 3982 | file = fget_task(task, fd); |
| 3983 | put_task_struct(task); |
Yonghong Song | 41bdc4b | 2018-05-24 11:21:09 -0700 | [diff] [blame] | 3984 | if (!file) |
Eric W. Biederman | b48845a | 2020-11-20 17:14:22 -0600 | [diff] [blame] | 3985 | return -EBADF; |
Yonghong Song | 41bdc4b | 2018-05-24 11:21:09 -0700 | [diff] [blame] | 3986 | |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 3987 | if (file->f_op == &bpf_link_fops) { |
| 3988 | struct bpf_link *link = file->private_data; |
Yonghong Song | 41bdc4b | 2018-05-24 11:21:09 -0700 | [diff] [blame] | 3989 | |
Andrii Nakryiko | a3b80e1 | 2020-04-28 17:16:06 -0700 | [diff] [blame] | 3990 | if (link->ops == &bpf_raw_tp_link_lops) { |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 3991 | struct bpf_raw_tp_link *raw_tp = |
| 3992 | container_of(link, struct bpf_raw_tp_link, link); |
| 3993 | struct bpf_raw_event_map *btp = raw_tp->btp; |
| 3994 | |
| 3995 | err = bpf_task_fd_query_copy(attr, uattr, |
| 3996 | raw_tp->link.prog->aux->id, |
| 3997 | BPF_FD_TYPE_RAW_TRACEPOINT, |
| 3998 | btp->tp->name, 0, 0); |
| 3999 | goto put_file; |
| 4000 | } |
| 4001 | goto out_not_supp; |
Yonghong Song | 41bdc4b | 2018-05-24 11:21:09 -0700 | [diff] [blame] | 4002 | } |
| 4003 | |
| 4004 | event = perf_get_event(file); |
| 4005 | if (!IS_ERR(event)) { |
| 4006 | u64 probe_offset, probe_addr; |
| 4007 | u32 prog_id, fd_type; |
| 4008 | const char *buf; |
| 4009 | |
| 4010 | err = bpf_get_perf_event_info(event, &prog_id, &fd_type, |
| 4011 | &buf, &probe_offset, |
| 4012 | &probe_addr); |
| 4013 | if (!err) |
| 4014 | err = bpf_task_fd_query_copy(attr, uattr, prog_id, |
| 4015 | fd_type, buf, |
| 4016 | probe_offset, |
| 4017 | probe_addr); |
| 4018 | goto put_file; |
| 4019 | } |
| 4020 | |
Andrii Nakryiko | 70ed506 | 2020-03-02 20:31:57 -0800 | [diff] [blame] | 4021 | out_not_supp: |
Yonghong Song | 41bdc4b | 2018-05-24 11:21:09 -0700 | [diff] [blame] | 4022 | err = -ENOTSUPP; |
| 4023 | put_file: |
| 4024 | fput(file); |
Yonghong Song | 41bdc4b | 2018-05-24 11:21:09 -0700 | [diff] [blame] | 4025 | return err; |
| 4026 | } |
| 4027 | |
Brian Vazquez | cb4d03a | 2020-01-15 10:43:01 -0800 | [diff] [blame] | 4028 | #define BPF_MAP_BATCH_LAST_FIELD batch.flags |
| 4029 | |
| 4030 | #define BPF_DO_BATCH(fn) \ |
| 4031 | do { \ |
| 4032 | if (!fn) { \ |
| 4033 | err = -ENOTSUPP; \ |
| 4034 | goto err_put; \ |
| 4035 | } \ |
| 4036 | err = fn(map, attr, uattr); \ |
| 4037 | } while (0) |
| 4038 | |
| 4039 | static int bpf_map_do_batch(const union bpf_attr *attr, |
| 4040 | union bpf_attr __user *uattr, |
| 4041 | int cmd) |
| 4042 | { |
| 4043 | struct bpf_map *map; |
| 4044 | int err, ufd; |
| 4045 | struct fd f; |
| 4046 | |
| 4047 | if (CHECK_ATTR(BPF_MAP_BATCH)) |
| 4048 | return -EINVAL; |
| 4049 | |
| 4050 | ufd = attr->batch.map_fd; |
| 4051 | f = fdget(ufd); |
| 4052 | map = __bpf_map_get(f); |
| 4053 | if (IS_ERR(map)) |
| 4054 | return PTR_ERR(map); |
| 4055 | |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 4056 | if ((cmd == BPF_MAP_LOOKUP_BATCH || |
| 4057 | cmd == BPF_MAP_LOOKUP_AND_DELETE_BATCH) && |
Brian Vazquez | cb4d03a | 2020-01-15 10:43:01 -0800 | [diff] [blame] | 4058 | !(map_get_sys_perms(map, f) & FMODE_CAN_READ)) { |
| 4059 | err = -EPERM; |
| 4060 | goto err_put; |
| 4061 | } |
| 4062 | |
| 4063 | if (cmd != BPF_MAP_LOOKUP_BATCH && |
| 4064 | !(map_get_sys_perms(map, f) & FMODE_CAN_WRITE)) { |
| 4065 | err = -EPERM; |
| 4066 | goto err_put; |
| 4067 | } |
| 4068 | |
| 4069 | if (cmd == BPF_MAP_LOOKUP_BATCH) |
| 4070 | BPF_DO_BATCH(map->ops->map_lookup_batch); |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 4071 | else if (cmd == BPF_MAP_LOOKUP_AND_DELETE_BATCH) |
| 4072 | BPF_DO_BATCH(map->ops->map_lookup_and_delete_batch); |
Brian Vazquez | aa2e93b | 2020-01-15 10:43:02 -0800 | [diff] [blame] | 4073 | else if (cmd == BPF_MAP_UPDATE_BATCH) |
| 4074 | BPF_DO_BATCH(map->ops->map_update_batch); |
| 4075 | else |
| 4076 | BPF_DO_BATCH(map->ops->map_delete_batch); |
Brian Vazquez | cb4d03a | 2020-01-15 10:43:01 -0800 | [diff] [blame] | 4077 | |
| 4078 | err_put: |
| 4079 | fdput(f); |
| 4080 | return err; |
| 4081 | } |
| 4082 | |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4083 | static int tracing_bpf_link_attach(const union bpf_attr *attr, bpfptr_t uattr, |
| 4084 | struct bpf_prog *prog) |
Yonghong Song | de4e05c | 2020-05-09 10:59:01 -0700 | [diff] [blame] | 4085 | { |
Toke Høiland-Jørgensen | 4a1e7c0 | 2020-09-29 14:45:51 +0200 | [diff] [blame] | 4086 | if (attr->link_create.attach_type != prog->expected_attach_type) |
| 4087 | return -EINVAL; |
Yonghong Song | de4e05c | 2020-05-09 10:59:01 -0700 | [diff] [blame] | 4088 | |
Toke Høiland-Jørgensen | 4a1e7c0 | 2020-09-29 14:45:51 +0200 | [diff] [blame] | 4089 | if (prog->expected_attach_type == BPF_TRACE_ITER) |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4090 | return bpf_iter_link_attach(attr, uattr, prog); |
Toke Høiland-Jørgensen | 4a1e7c0 | 2020-09-29 14:45:51 +0200 | [diff] [blame] | 4091 | else if (prog->type == BPF_PROG_TYPE_EXT) |
| 4092 | return bpf_tracing_prog_attach(prog, |
| 4093 | attr->link_create.target_fd, |
| 4094 | attr->link_create.target_btf_id); |
Yonghong Song | de4e05c | 2020-05-09 10:59:01 -0700 | [diff] [blame] | 4095 | return -EINVAL; |
| 4096 | } |
| 4097 | |
Yonghong Song | 5e7b302 | 2020-08-04 22:50:56 -0700 | [diff] [blame] | 4098 | #define BPF_LINK_CREATE_LAST_FIELD link_create.iter_info_len |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4099 | static int link_create(union bpf_attr *attr, bpfptr_t uattr) |
Andrii Nakryiko | af6eea5 | 2020-03-29 19:59:58 -0700 | [diff] [blame] | 4100 | { |
| 4101 | enum bpf_prog_type ptype; |
| 4102 | struct bpf_prog *prog; |
| 4103 | int ret; |
| 4104 | |
Andrii Nakryiko | af6eea5 | 2020-03-29 19:59:58 -0700 | [diff] [blame] | 4105 | if (CHECK_ATTR(BPF_LINK_CREATE)) |
| 4106 | return -EINVAL; |
| 4107 | |
Toke Høiland-Jørgensen | 4a1e7c0 | 2020-09-29 14:45:51 +0200 | [diff] [blame] | 4108 | prog = bpf_prog_get(attr->link_create.prog_fd); |
Andrii Nakryiko | af6eea5 | 2020-03-29 19:59:58 -0700 | [diff] [blame] | 4109 | if (IS_ERR(prog)) |
| 4110 | return PTR_ERR(prog); |
| 4111 | |
| 4112 | ret = bpf_prog_attach_check_attach_type(prog, |
| 4113 | attr->link_create.attach_type); |
| 4114 | if (ret) |
Toke Høiland-Jørgensen | 4a1e7c0 | 2020-09-29 14:45:51 +0200 | [diff] [blame] | 4115 | goto out; |
| 4116 | |
| 4117 | if (prog->type == BPF_PROG_TYPE_EXT) { |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4118 | ret = tracing_bpf_link_attach(attr, uattr, prog); |
Toke Høiland-Jørgensen | 4a1e7c0 | 2020-09-29 14:45:51 +0200 | [diff] [blame] | 4119 | goto out; |
| 4120 | } |
| 4121 | |
| 4122 | ptype = attach_type_to_prog_type(attr->link_create.attach_type); |
| 4123 | if (ptype == BPF_PROG_TYPE_UNSPEC || ptype != prog->type) { |
| 4124 | ret = -EINVAL; |
| 4125 | goto out; |
| 4126 | } |
Andrii Nakryiko | af6eea5 | 2020-03-29 19:59:58 -0700 | [diff] [blame] | 4127 | |
| 4128 | switch (ptype) { |
| 4129 | case BPF_PROG_TYPE_CGROUP_SKB: |
| 4130 | case BPF_PROG_TYPE_CGROUP_SOCK: |
| 4131 | case BPF_PROG_TYPE_CGROUP_SOCK_ADDR: |
| 4132 | case BPF_PROG_TYPE_SOCK_OPS: |
| 4133 | case BPF_PROG_TYPE_CGROUP_DEVICE: |
| 4134 | case BPF_PROG_TYPE_CGROUP_SYSCTL: |
| 4135 | case BPF_PROG_TYPE_CGROUP_SOCKOPT: |
| 4136 | ret = cgroup_bpf_link_attach(attr, prog); |
| 4137 | break; |
Yonghong Song | de4e05c | 2020-05-09 10:59:01 -0700 | [diff] [blame] | 4138 | case BPF_PROG_TYPE_TRACING: |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4139 | ret = tracing_bpf_link_attach(attr, uattr, prog); |
Yonghong Song | de4e05c | 2020-05-09 10:59:01 -0700 | [diff] [blame] | 4140 | break; |
Jakub Sitnicki | 7f045a4 | 2020-05-31 10:28:38 +0200 | [diff] [blame] | 4141 | case BPF_PROG_TYPE_FLOW_DISSECTOR: |
Jakub Sitnicki | e9ddbb7 | 2020-07-17 12:35:23 +0200 | [diff] [blame] | 4142 | case BPF_PROG_TYPE_SK_LOOKUP: |
Jakub Sitnicki | 7f045a4 | 2020-05-31 10:28:38 +0200 | [diff] [blame] | 4143 | ret = netns_bpf_link_create(attr, prog); |
| 4144 | break; |
Andrii Nakryiko | 310ad79 | 2020-07-28 12:05:27 -0700 | [diff] [blame] | 4145 | #ifdef CONFIG_NET |
Andrii Nakryiko | aa8d3a7 | 2020-07-21 23:45:57 -0700 | [diff] [blame] | 4146 | case BPF_PROG_TYPE_XDP: |
| 4147 | ret = bpf_xdp_link_attach(attr, prog); |
| 4148 | break; |
Andrii Nakryiko | 310ad79 | 2020-07-28 12:05:27 -0700 | [diff] [blame] | 4149 | #endif |
Andrii Nakryiko | af6eea5 | 2020-03-29 19:59:58 -0700 | [diff] [blame] | 4150 | default: |
| 4151 | ret = -EINVAL; |
| 4152 | } |
| 4153 | |
Toke Høiland-Jørgensen | 4a1e7c0 | 2020-09-29 14:45:51 +0200 | [diff] [blame] | 4154 | out: |
Andrii Nakryiko | af6eea5 | 2020-03-29 19:59:58 -0700 | [diff] [blame] | 4155 | if (ret < 0) |
| 4156 | bpf_prog_put(prog); |
| 4157 | return ret; |
| 4158 | } |
| 4159 | |
Andrii Nakryiko | 0c991eb | 2020-03-29 19:59:59 -0700 | [diff] [blame] | 4160 | #define BPF_LINK_UPDATE_LAST_FIELD link_update.old_prog_fd |
| 4161 | |
| 4162 | static int link_update(union bpf_attr *attr) |
| 4163 | { |
| 4164 | struct bpf_prog *old_prog = NULL, *new_prog; |
| 4165 | struct bpf_link *link; |
| 4166 | u32 flags; |
| 4167 | int ret; |
| 4168 | |
Andrii Nakryiko | 0c991eb | 2020-03-29 19:59:59 -0700 | [diff] [blame] | 4169 | if (CHECK_ATTR(BPF_LINK_UPDATE)) |
| 4170 | return -EINVAL; |
| 4171 | |
| 4172 | flags = attr->link_update.flags; |
| 4173 | if (flags & ~BPF_F_REPLACE) |
| 4174 | return -EINVAL; |
| 4175 | |
| 4176 | link = bpf_link_get_from_fd(attr->link_update.link_fd); |
| 4177 | if (IS_ERR(link)) |
| 4178 | return PTR_ERR(link); |
| 4179 | |
| 4180 | new_prog = bpf_prog_get(attr->link_update.new_prog_fd); |
Andrii Nakryiko | 4adb7a4 | 2020-04-23 22:20:44 -0700 | [diff] [blame] | 4181 | if (IS_ERR(new_prog)) { |
| 4182 | ret = PTR_ERR(new_prog); |
| 4183 | goto out_put_link; |
| 4184 | } |
Andrii Nakryiko | 0c991eb | 2020-03-29 19:59:59 -0700 | [diff] [blame] | 4185 | |
| 4186 | if (flags & BPF_F_REPLACE) { |
| 4187 | old_prog = bpf_prog_get(attr->link_update.old_prog_fd); |
| 4188 | if (IS_ERR(old_prog)) { |
| 4189 | ret = PTR_ERR(old_prog); |
| 4190 | old_prog = NULL; |
| 4191 | goto out_put_progs; |
| 4192 | } |
Andrii Nakryiko | 4adb7a4 | 2020-04-23 22:20:44 -0700 | [diff] [blame] | 4193 | } else if (attr->link_update.old_prog_fd) { |
| 4194 | ret = -EINVAL; |
| 4195 | goto out_put_progs; |
Andrii Nakryiko | 0c991eb | 2020-03-29 19:59:59 -0700 | [diff] [blame] | 4196 | } |
| 4197 | |
Andrii Nakryiko | f9d0412 | 2020-04-28 17:16:05 -0700 | [diff] [blame] | 4198 | if (link->ops->update_prog) |
| 4199 | ret = link->ops->update_prog(link, new_prog, old_prog); |
| 4200 | else |
Jakub Sitnicki | fe53739 | 2020-05-25 14:29:28 +0200 | [diff] [blame] | 4201 | ret = -EINVAL; |
Andrii Nakryiko | 0c991eb | 2020-03-29 19:59:59 -0700 | [diff] [blame] | 4202 | |
| 4203 | out_put_progs: |
| 4204 | if (old_prog) |
| 4205 | bpf_prog_put(old_prog); |
| 4206 | if (ret) |
| 4207 | bpf_prog_put(new_prog); |
Andrii Nakryiko | 4adb7a4 | 2020-04-23 22:20:44 -0700 | [diff] [blame] | 4208 | out_put_link: |
| 4209 | bpf_link_put(link); |
Andrii Nakryiko | 0c991eb | 2020-03-29 19:59:59 -0700 | [diff] [blame] | 4210 | return ret; |
| 4211 | } |
| 4212 | |
Andrii Nakryiko | 73b11c2a | 2020-07-31 11:28:26 -0700 | [diff] [blame] | 4213 | #define BPF_LINK_DETACH_LAST_FIELD link_detach.link_fd |
| 4214 | |
| 4215 | static int link_detach(union bpf_attr *attr) |
| 4216 | { |
| 4217 | struct bpf_link *link; |
| 4218 | int ret; |
| 4219 | |
| 4220 | if (CHECK_ATTR(BPF_LINK_DETACH)) |
| 4221 | return -EINVAL; |
| 4222 | |
| 4223 | link = bpf_link_get_from_fd(attr->link_detach.link_fd); |
| 4224 | if (IS_ERR(link)) |
| 4225 | return PTR_ERR(link); |
| 4226 | |
| 4227 | if (link->ops->detach) |
| 4228 | ret = link->ops->detach(link); |
| 4229 | else |
| 4230 | ret = -EOPNOTSUPP; |
| 4231 | |
| 4232 | bpf_link_put(link); |
| 4233 | return ret; |
| 4234 | } |
| 4235 | |
Alexei Starovoitov | 005142b | 2020-08-18 21:27:56 -0700 | [diff] [blame] | 4236 | static struct bpf_link *bpf_link_inc_not_zero(struct bpf_link *link) |
Andrii Nakryiko | 2d602c8 | 2020-04-28 17:16:07 -0700 | [diff] [blame] | 4237 | { |
Alexei Starovoitov | 005142b | 2020-08-18 21:27:56 -0700 | [diff] [blame] | 4238 | return atomic64_fetch_add_unless(&link->refcnt, 1, 0) ? link : ERR_PTR(-ENOENT); |
| 4239 | } |
| 4240 | |
| 4241 | struct bpf_link *bpf_link_by_id(u32 id) |
| 4242 | { |
| 4243 | struct bpf_link *link; |
| 4244 | |
| 4245 | if (!id) |
| 4246 | return ERR_PTR(-ENOENT); |
| 4247 | |
| 4248 | spin_lock_bh(&link_idr_lock); |
| 4249 | /* before link is "settled", ID is 0, pretend it doesn't exist yet */ |
| 4250 | link = idr_find(&link_idr, id); |
| 4251 | if (link) { |
| 4252 | if (link->id) |
| 4253 | link = bpf_link_inc_not_zero(link); |
| 4254 | else |
| 4255 | link = ERR_PTR(-EAGAIN); |
| 4256 | } else { |
| 4257 | link = ERR_PTR(-ENOENT); |
| 4258 | } |
| 4259 | spin_unlock_bh(&link_idr_lock); |
| 4260 | return link; |
Andrii Nakryiko | 2d602c8 | 2020-04-28 17:16:07 -0700 | [diff] [blame] | 4261 | } |
| 4262 | |
| 4263 | #define BPF_LINK_GET_FD_BY_ID_LAST_FIELD link_id |
| 4264 | |
| 4265 | static int bpf_link_get_fd_by_id(const union bpf_attr *attr) |
| 4266 | { |
| 4267 | struct bpf_link *link; |
| 4268 | u32 id = attr->link_id; |
Alexei Starovoitov | 005142b | 2020-08-18 21:27:56 -0700 | [diff] [blame] | 4269 | int fd; |
Andrii Nakryiko | 2d602c8 | 2020-04-28 17:16:07 -0700 | [diff] [blame] | 4270 | |
| 4271 | if (CHECK_ATTR(BPF_LINK_GET_FD_BY_ID)) |
| 4272 | return -EINVAL; |
| 4273 | |
| 4274 | if (!capable(CAP_SYS_ADMIN)) |
| 4275 | return -EPERM; |
| 4276 | |
Alexei Starovoitov | 005142b | 2020-08-18 21:27:56 -0700 | [diff] [blame] | 4277 | link = bpf_link_by_id(id); |
| 4278 | if (IS_ERR(link)) |
| 4279 | return PTR_ERR(link); |
Andrii Nakryiko | 2d602c8 | 2020-04-28 17:16:07 -0700 | [diff] [blame] | 4280 | |
| 4281 | fd = bpf_link_new_fd(link); |
| 4282 | if (fd < 0) |
| 4283 | bpf_link_put(link); |
| 4284 | |
| 4285 | return fd; |
| 4286 | } |
| 4287 | |
Song Liu | d46edd6 | 2020-04-30 00:15:04 -0700 | [diff] [blame] | 4288 | DEFINE_MUTEX(bpf_stats_enabled_mutex); |
| 4289 | |
| 4290 | static int bpf_stats_release(struct inode *inode, struct file *file) |
| 4291 | { |
| 4292 | mutex_lock(&bpf_stats_enabled_mutex); |
| 4293 | static_key_slow_dec(&bpf_stats_enabled_key.key); |
| 4294 | mutex_unlock(&bpf_stats_enabled_mutex); |
| 4295 | return 0; |
| 4296 | } |
| 4297 | |
| 4298 | static const struct file_operations bpf_stats_fops = { |
| 4299 | .release = bpf_stats_release, |
| 4300 | }; |
| 4301 | |
| 4302 | static int bpf_enable_runtime_stats(void) |
| 4303 | { |
| 4304 | int fd; |
| 4305 | |
| 4306 | mutex_lock(&bpf_stats_enabled_mutex); |
| 4307 | |
| 4308 | /* Set a very high limit to avoid overflow */ |
| 4309 | if (static_key_count(&bpf_stats_enabled_key.key) > INT_MAX / 2) { |
| 4310 | mutex_unlock(&bpf_stats_enabled_mutex); |
| 4311 | return -EBUSY; |
| 4312 | } |
| 4313 | |
| 4314 | fd = anon_inode_getfd("bpf-stats", &bpf_stats_fops, NULL, O_CLOEXEC); |
| 4315 | if (fd >= 0) |
| 4316 | static_key_slow_inc(&bpf_stats_enabled_key.key); |
| 4317 | |
| 4318 | mutex_unlock(&bpf_stats_enabled_mutex); |
| 4319 | return fd; |
| 4320 | } |
| 4321 | |
| 4322 | #define BPF_ENABLE_STATS_LAST_FIELD enable_stats.type |
| 4323 | |
| 4324 | static int bpf_enable_stats(union bpf_attr *attr) |
| 4325 | { |
| 4326 | |
| 4327 | if (CHECK_ATTR(BPF_ENABLE_STATS)) |
| 4328 | return -EINVAL; |
| 4329 | |
| 4330 | if (!capable(CAP_SYS_ADMIN)) |
| 4331 | return -EPERM; |
| 4332 | |
| 4333 | switch (attr->enable_stats.type) { |
| 4334 | case BPF_STATS_RUN_TIME: |
| 4335 | return bpf_enable_runtime_stats(); |
| 4336 | default: |
| 4337 | break; |
| 4338 | } |
| 4339 | return -EINVAL; |
| 4340 | } |
| 4341 | |
Yonghong Song | ac51d99 | 2020-05-09 10:59:05 -0700 | [diff] [blame] | 4342 | #define BPF_ITER_CREATE_LAST_FIELD iter_create.flags |
| 4343 | |
| 4344 | static int bpf_iter_create(union bpf_attr *attr) |
| 4345 | { |
| 4346 | struct bpf_link *link; |
| 4347 | int err; |
| 4348 | |
| 4349 | if (CHECK_ATTR(BPF_ITER_CREATE)) |
| 4350 | return -EINVAL; |
| 4351 | |
| 4352 | if (attr->iter_create.flags) |
| 4353 | return -EINVAL; |
| 4354 | |
| 4355 | link = bpf_link_get_from_fd(attr->iter_create.link_fd); |
| 4356 | if (IS_ERR(link)) |
| 4357 | return PTR_ERR(link); |
| 4358 | |
| 4359 | err = bpf_iter_new_fd(link); |
| 4360 | bpf_link_put(link); |
| 4361 | |
| 4362 | return err; |
| 4363 | } |
| 4364 | |
YiFei Zhu | ef15314 | 2020-09-15 16:45:40 -0700 | [diff] [blame] | 4365 | #define BPF_PROG_BIND_MAP_LAST_FIELD prog_bind_map.flags |
| 4366 | |
| 4367 | static int bpf_prog_bind_map(union bpf_attr *attr) |
| 4368 | { |
| 4369 | struct bpf_prog *prog; |
| 4370 | struct bpf_map *map; |
| 4371 | struct bpf_map **used_maps_old, **used_maps_new; |
| 4372 | int i, ret = 0; |
| 4373 | |
| 4374 | if (CHECK_ATTR(BPF_PROG_BIND_MAP)) |
| 4375 | return -EINVAL; |
| 4376 | |
| 4377 | if (attr->prog_bind_map.flags) |
| 4378 | return -EINVAL; |
| 4379 | |
| 4380 | prog = bpf_prog_get(attr->prog_bind_map.prog_fd); |
| 4381 | if (IS_ERR(prog)) |
| 4382 | return PTR_ERR(prog); |
| 4383 | |
| 4384 | map = bpf_map_get(attr->prog_bind_map.map_fd); |
| 4385 | if (IS_ERR(map)) { |
| 4386 | ret = PTR_ERR(map); |
| 4387 | goto out_prog_put; |
| 4388 | } |
| 4389 | |
| 4390 | mutex_lock(&prog->aux->used_maps_mutex); |
| 4391 | |
| 4392 | used_maps_old = prog->aux->used_maps; |
| 4393 | |
| 4394 | for (i = 0; i < prog->aux->used_map_cnt; i++) |
Stanislav Fomichev | 1028ae4 | 2020-10-02 17:25:44 -0700 | [diff] [blame] | 4395 | if (used_maps_old[i] == map) { |
| 4396 | bpf_map_put(map); |
YiFei Zhu | ef15314 | 2020-09-15 16:45:40 -0700 | [diff] [blame] | 4397 | goto out_unlock; |
Stanislav Fomichev | 1028ae4 | 2020-10-02 17:25:44 -0700 | [diff] [blame] | 4398 | } |
YiFei Zhu | ef15314 | 2020-09-15 16:45:40 -0700 | [diff] [blame] | 4399 | |
| 4400 | used_maps_new = kmalloc_array(prog->aux->used_map_cnt + 1, |
| 4401 | sizeof(used_maps_new[0]), |
| 4402 | GFP_KERNEL); |
| 4403 | if (!used_maps_new) { |
| 4404 | ret = -ENOMEM; |
| 4405 | goto out_unlock; |
| 4406 | } |
| 4407 | |
| 4408 | memcpy(used_maps_new, used_maps_old, |
| 4409 | sizeof(used_maps_old[0]) * prog->aux->used_map_cnt); |
| 4410 | used_maps_new[prog->aux->used_map_cnt] = map; |
| 4411 | |
| 4412 | prog->aux->used_map_cnt++; |
| 4413 | prog->aux->used_maps = used_maps_new; |
| 4414 | |
| 4415 | kfree(used_maps_old); |
| 4416 | |
| 4417 | out_unlock: |
| 4418 | mutex_unlock(&prog->aux->used_maps_mutex); |
| 4419 | |
| 4420 | if (ret) |
| 4421 | bpf_map_put(map); |
| 4422 | out_prog_put: |
| 4423 | bpf_prog_put(prog); |
| 4424 | return ret; |
| 4425 | } |
| 4426 | |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4427 | static int __sys_bpf(int cmd, bpfptr_t uattr, unsigned int size) |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 4428 | { |
Greg Kroah-Hartman | 8096f22 | 2020-03-20 10:48:13 +0100 | [diff] [blame] | 4429 | union bpf_attr attr; |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 4430 | int err; |
| 4431 | |
Alexei Starovoitov | 2c78ee8 | 2020-05-13 16:03:54 -0700 | [diff] [blame] | 4432 | if (sysctl_unprivileged_bpf_disabled && !bpf_capable()) |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 4433 | return -EPERM; |
| 4434 | |
Martin KaFai Lau | dcab51f | 2018-05-22 15:03:31 -0700 | [diff] [blame] | 4435 | err = bpf_check_uarg_tail_zero(uattr, sizeof(attr), size); |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 4436 | if (err) |
| 4437 | return err; |
| 4438 | size = min_t(u32, size, sizeof(attr)); |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 4439 | |
| 4440 | /* copy attributes from user space, may be less than sizeof(bpf_attr) */ |
Greg Kroah-Hartman | 8096f22 | 2020-03-20 10:48:13 +0100 | [diff] [blame] | 4441 | memset(&attr, 0, sizeof(attr)); |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4442 | if (copy_from_bpfptr(&attr, uattr, size) != 0) |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 4443 | return -EFAULT; |
| 4444 | |
Chenbo Feng | afdb09c | 2017-10-18 13:00:24 -0700 | [diff] [blame] | 4445 | err = security_bpf(cmd, &attr, size); |
| 4446 | if (err < 0) |
| 4447 | return err; |
| 4448 | |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 4449 | switch (cmd) { |
| 4450 | case BPF_MAP_CREATE: |
| 4451 | err = map_create(&attr); |
| 4452 | break; |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 4453 | case BPF_MAP_LOOKUP_ELEM: |
| 4454 | err = map_lookup_elem(&attr); |
| 4455 | break; |
| 4456 | case BPF_MAP_UPDATE_ELEM: |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4457 | err = map_update_elem(&attr, uattr); |
Alexei Starovoitov | db20fd2 | 2014-09-26 00:16:59 -0700 | [diff] [blame] | 4458 | break; |
| 4459 | case BPF_MAP_DELETE_ELEM: |
| 4460 | err = map_delete_elem(&attr); |
| 4461 | break; |
| 4462 | case BPF_MAP_GET_NEXT_KEY: |
| 4463 | err = map_get_next_key(&attr); |
| 4464 | break; |
Daniel Borkmann | 87df15d | 2019-04-09 23:20:06 +0200 | [diff] [blame] | 4465 | case BPF_MAP_FREEZE: |
| 4466 | err = map_freeze(&attr); |
| 4467 | break; |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 4468 | case BPF_PROG_LOAD: |
Yonghong Song | 838e969 | 2018-11-19 15:29:11 -0800 | [diff] [blame] | 4469 | err = bpf_prog_load(&attr, uattr); |
Alexei Starovoitov | 09756af | 2014-09-26 00:17:00 -0700 | [diff] [blame] | 4470 | break; |
Daniel Borkmann | b219775 | 2015-10-29 14:58:09 +0100 | [diff] [blame] | 4471 | case BPF_OBJ_PIN: |
| 4472 | err = bpf_obj_pin(&attr); |
| 4473 | break; |
| 4474 | case BPF_OBJ_GET: |
| 4475 | err = bpf_obj_get(&attr); |
| 4476 | break; |
Daniel Mack | f432455 | 2016-11-23 16:52:27 +0100 | [diff] [blame] | 4477 | case BPF_PROG_ATTACH: |
| 4478 | err = bpf_prog_attach(&attr); |
| 4479 | break; |
| 4480 | case BPF_PROG_DETACH: |
| 4481 | err = bpf_prog_detach(&attr); |
| 4482 | break; |
Alexei Starovoitov | 468e2f6 | 2017-10-02 22:50:22 -0700 | [diff] [blame] | 4483 | case BPF_PROG_QUERY: |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4484 | err = bpf_prog_query(&attr, uattr.user); |
Alexei Starovoitov | 468e2f6 | 2017-10-02 22:50:22 -0700 | [diff] [blame] | 4485 | break; |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 4486 | case BPF_PROG_TEST_RUN: |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4487 | err = bpf_prog_test_run(&attr, uattr.user); |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 4488 | break; |
Martin KaFai Lau | 34ad558 | 2017-06-05 12:15:48 -0700 | [diff] [blame] | 4489 | case BPF_PROG_GET_NEXT_ID: |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4490 | err = bpf_obj_get_next_id(&attr, uattr.user, |
Martin KaFai Lau | 34ad558 | 2017-06-05 12:15:48 -0700 | [diff] [blame] | 4491 | &prog_idr, &prog_idr_lock); |
| 4492 | break; |
| 4493 | case BPF_MAP_GET_NEXT_ID: |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4494 | err = bpf_obj_get_next_id(&attr, uattr.user, |
Martin KaFai Lau | 34ad558 | 2017-06-05 12:15:48 -0700 | [diff] [blame] | 4495 | &map_idr, &map_idr_lock); |
| 4496 | break; |
Quentin Monnet | 1b9ed84 | 2019-08-20 10:31:50 +0100 | [diff] [blame] | 4497 | case BPF_BTF_GET_NEXT_ID: |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4498 | err = bpf_obj_get_next_id(&attr, uattr.user, |
Quentin Monnet | 1b9ed84 | 2019-08-20 10:31:50 +0100 | [diff] [blame] | 4499 | &btf_idr, &btf_idr_lock); |
| 4500 | break; |
Martin KaFai Lau | b16d9aa | 2017-06-05 12:15:49 -0700 | [diff] [blame] | 4501 | case BPF_PROG_GET_FD_BY_ID: |
| 4502 | err = bpf_prog_get_fd_by_id(&attr); |
| 4503 | break; |
Martin KaFai Lau | bd5f5f4e | 2017-06-05 12:15:50 -0700 | [diff] [blame] | 4504 | case BPF_MAP_GET_FD_BY_ID: |
| 4505 | err = bpf_map_get_fd_by_id(&attr); |
| 4506 | break; |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 4507 | case BPF_OBJ_GET_INFO_BY_FD: |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4508 | err = bpf_obj_get_info_by_fd(&attr, uattr.user); |
Martin KaFai Lau | 1e27097 | 2017-06-05 12:15:52 -0700 | [diff] [blame] | 4509 | break; |
Alexei Starovoitov | c4f6699 | 2018-03-28 12:05:37 -0700 | [diff] [blame] | 4510 | case BPF_RAW_TRACEPOINT_OPEN: |
| 4511 | err = bpf_raw_tracepoint_open(&attr); |
| 4512 | break; |
Martin KaFai Lau | f56a653 | 2018-04-18 15:56:01 -0700 | [diff] [blame] | 4513 | case BPF_BTF_LOAD: |
Alexei Starovoitov | c571bd7 | 2021-05-13 17:36:08 -0700 | [diff] [blame] | 4514 | err = bpf_btf_load(&attr, uattr); |
Martin KaFai Lau | f56a653 | 2018-04-18 15:56:01 -0700 | [diff] [blame] | 4515 | break; |
Martin KaFai Lau | 78958fc | 2018-05-04 14:49:51 -0700 | [diff] [blame] | 4516 | case BPF_BTF_GET_FD_BY_ID: |
| 4517 | err = bpf_btf_get_fd_by_id(&attr); |
| 4518 | break; |
Yonghong Song | 41bdc4b | 2018-05-24 11:21:09 -0700 | [diff] [blame] | 4519 | case BPF_TASK_FD_QUERY: |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4520 | err = bpf_task_fd_query(&attr, uattr.user); |
Yonghong Song | 41bdc4b | 2018-05-24 11:21:09 -0700 | [diff] [blame] | 4521 | break; |
Mauricio Vasquez B | bd513cd | 2018-10-18 15:16:30 +0200 | [diff] [blame] | 4522 | case BPF_MAP_LOOKUP_AND_DELETE_ELEM: |
| 4523 | err = map_lookup_and_delete_elem(&attr); |
| 4524 | break; |
Brian Vazquez | cb4d03a | 2020-01-15 10:43:01 -0800 | [diff] [blame] | 4525 | case BPF_MAP_LOOKUP_BATCH: |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4526 | err = bpf_map_do_batch(&attr, uattr.user, BPF_MAP_LOOKUP_BATCH); |
Brian Vazquez | cb4d03a | 2020-01-15 10:43:01 -0800 | [diff] [blame] | 4527 | break; |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 4528 | case BPF_MAP_LOOKUP_AND_DELETE_BATCH: |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4529 | err = bpf_map_do_batch(&attr, uattr.user, |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 4530 | BPF_MAP_LOOKUP_AND_DELETE_BATCH); |
| 4531 | break; |
Brian Vazquez | aa2e93b | 2020-01-15 10:43:02 -0800 | [diff] [blame] | 4532 | case BPF_MAP_UPDATE_BATCH: |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4533 | err = bpf_map_do_batch(&attr, uattr.user, BPF_MAP_UPDATE_BATCH); |
Brian Vazquez | aa2e93b | 2020-01-15 10:43:02 -0800 | [diff] [blame] | 4534 | break; |
| 4535 | case BPF_MAP_DELETE_BATCH: |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4536 | err = bpf_map_do_batch(&attr, uattr.user, BPF_MAP_DELETE_BATCH); |
Brian Vazquez | aa2e93b | 2020-01-15 10:43:02 -0800 | [diff] [blame] | 4537 | break; |
Andrii Nakryiko | af6eea5 | 2020-03-29 19:59:58 -0700 | [diff] [blame] | 4538 | case BPF_LINK_CREATE: |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4539 | err = link_create(&attr, uattr); |
Andrii Nakryiko | af6eea5 | 2020-03-29 19:59:58 -0700 | [diff] [blame] | 4540 | break; |
Andrii Nakryiko | 0c991eb | 2020-03-29 19:59:59 -0700 | [diff] [blame] | 4541 | case BPF_LINK_UPDATE: |
| 4542 | err = link_update(&attr); |
| 4543 | break; |
Andrii Nakryiko | 2d602c8 | 2020-04-28 17:16:07 -0700 | [diff] [blame] | 4544 | case BPF_LINK_GET_FD_BY_ID: |
| 4545 | err = bpf_link_get_fd_by_id(&attr); |
| 4546 | break; |
| 4547 | case BPF_LINK_GET_NEXT_ID: |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4548 | err = bpf_obj_get_next_id(&attr, uattr.user, |
Andrii Nakryiko | 2d602c8 | 2020-04-28 17:16:07 -0700 | [diff] [blame] | 4549 | &link_idr, &link_idr_lock); |
| 4550 | break; |
Song Liu | d46edd6 | 2020-04-30 00:15:04 -0700 | [diff] [blame] | 4551 | case BPF_ENABLE_STATS: |
| 4552 | err = bpf_enable_stats(&attr); |
| 4553 | break; |
Yonghong Song | ac51d99 | 2020-05-09 10:59:05 -0700 | [diff] [blame] | 4554 | case BPF_ITER_CREATE: |
| 4555 | err = bpf_iter_create(&attr); |
| 4556 | break; |
Andrii Nakryiko | 73b11c2a | 2020-07-31 11:28:26 -0700 | [diff] [blame] | 4557 | case BPF_LINK_DETACH: |
| 4558 | err = link_detach(&attr); |
| 4559 | break; |
YiFei Zhu | ef15314 | 2020-09-15 16:45:40 -0700 | [diff] [blame] | 4560 | case BPF_PROG_BIND_MAP: |
| 4561 | err = bpf_prog_bind_map(&attr); |
| 4562 | break; |
Alexei Starovoitov | 99c55f7 | 2014-09-26 00:16:57 -0700 | [diff] [blame] | 4563 | default: |
| 4564 | err = -EINVAL; |
| 4565 | break; |
| 4566 | } |
| 4567 | |
| 4568 | return err; |
| 4569 | } |
Alexei Starovoitov | 79a7f8b | 2021-05-13 17:36:03 -0700 | [diff] [blame] | 4570 | |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4571 | SYSCALL_DEFINE3(bpf, int, cmd, union bpf_attr __user *, uattr, unsigned int, size) |
| 4572 | { |
| 4573 | return __sys_bpf(cmd, USER_BPFPTR(uattr), size); |
| 4574 | } |
| 4575 | |
Alexei Starovoitov | 79a7f8b | 2021-05-13 17:36:03 -0700 | [diff] [blame] | 4576 | static bool syscall_prog_is_valid_access(int off, int size, |
| 4577 | enum bpf_access_type type, |
| 4578 | const struct bpf_prog *prog, |
| 4579 | struct bpf_insn_access_aux *info) |
| 4580 | { |
| 4581 | if (off < 0 || off >= U16_MAX) |
| 4582 | return false; |
| 4583 | if (off % size != 0) |
| 4584 | return false; |
| 4585 | return true; |
| 4586 | } |
| 4587 | |
| 4588 | BPF_CALL_3(bpf_sys_bpf, int, cmd, void *, attr, u32, attr_size) |
| 4589 | { |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4590 | switch (cmd) { |
| 4591 | case BPF_MAP_CREATE: |
| 4592 | case BPF_MAP_UPDATE_ELEM: |
| 4593 | case BPF_MAP_FREEZE: |
| 4594 | case BPF_PROG_LOAD: |
Alexei Starovoitov | c571bd7 | 2021-05-13 17:36:08 -0700 | [diff] [blame] | 4595 | case BPF_BTF_LOAD: |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 4596 | break; |
| 4597 | /* case BPF_PROG_TEST_RUN: |
| 4598 | * is not part of this list to prevent recursive test_run |
| 4599 | */ |
| 4600 | default: |
| 4601 | return -EINVAL; |
| 4602 | } |
| 4603 | return __sys_bpf(cmd, KERNEL_BPFPTR(attr), attr_size); |
Alexei Starovoitov | 79a7f8b | 2021-05-13 17:36:03 -0700 | [diff] [blame] | 4604 | } |
| 4605 | |
Pu Lehui | 3a2daa7 | 2021-05-19 14:41:16 +0800 | [diff] [blame] | 4606 | static const struct bpf_func_proto bpf_sys_bpf_proto = { |
Alexei Starovoitov | 79a7f8b | 2021-05-13 17:36:03 -0700 | [diff] [blame] | 4607 | .func = bpf_sys_bpf, |
| 4608 | .gpl_only = false, |
| 4609 | .ret_type = RET_INTEGER, |
| 4610 | .arg1_type = ARG_ANYTHING, |
| 4611 | .arg2_type = ARG_PTR_TO_MEM, |
| 4612 | .arg3_type = ARG_CONST_SIZE, |
| 4613 | }; |
| 4614 | |
| 4615 | const struct bpf_func_proto * __weak |
| 4616 | tracing_prog_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog) |
| 4617 | { |
| 4618 | return bpf_base_func_proto(func_id); |
| 4619 | } |
| 4620 | |
Alexei Starovoitov | 3abea08 | 2021-05-13 17:36:12 -0700 | [diff] [blame] | 4621 | BPF_CALL_1(bpf_sys_close, u32, fd) |
| 4622 | { |
| 4623 | /* When bpf program calls this helper there should not be |
| 4624 | * an fdget() without matching completed fdput(). |
| 4625 | * This helper is allowed in the following callchain only: |
| 4626 | * sys_bpf->prog_test_run->bpf_prog->bpf_sys_close |
| 4627 | */ |
| 4628 | return close_fd(fd); |
| 4629 | } |
| 4630 | |
Pu Lehui | 3a2daa7 | 2021-05-19 14:41:16 +0800 | [diff] [blame] | 4631 | static const struct bpf_func_proto bpf_sys_close_proto = { |
Alexei Starovoitov | 3abea08 | 2021-05-13 17:36:12 -0700 | [diff] [blame] | 4632 | .func = bpf_sys_close, |
| 4633 | .gpl_only = false, |
| 4634 | .ret_type = RET_INTEGER, |
| 4635 | .arg1_type = ARG_ANYTHING, |
| 4636 | }; |
| 4637 | |
Alexei Starovoitov | 79a7f8b | 2021-05-13 17:36:03 -0700 | [diff] [blame] | 4638 | static const struct bpf_func_proto * |
| 4639 | syscall_prog_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog) |
| 4640 | { |
| 4641 | switch (func_id) { |
| 4642 | case BPF_FUNC_sys_bpf: |
| 4643 | return &bpf_sys_bpf_proto; |
Alexei Starovoitov | 3d78417 | 2021-05-13 17:36:11 -0700 | [diff] [blame] | 4644 | case BPF_FUNC_btf_find_by_name_kind: |
| 4645 | return &bpf_btf_find_by_name_kind_proto; |
Alexei Starovoitov | 3abea08 | 2021-05-13 17:36:12 -0700 | [diff] [blame] | 4646 | case BPF_FUNC_sys_close: |
| 4647 | return &bpf_sys_close_proto; |
Alexei Starovoitov | 79a7f8b | 2021-05-13 17:36:03 -0700 | [diff] [blame] | 4648 | default: |
| 4649 | return tracing_prog_func_proto(func_id, prog); |
| 4650 | } |
| 4651 | } |
| 4652 | |
| 4653 | const struct bpf_verifier_ops bpf_syscall_verifier_ops = { |
| 4654 | .get_func_proto = syscall_prog_func_proto, |
| 4655 | .is_valid_access = syscall_prog_is_valid_access, |
| 4656 | }; |
| 4657 | |
| 4658 | const struct bpf_prog_ops bpf_syscall_prog_ops = { |
| 4659 | .test_run = bpf_prog_test_run_syscall, |
| 4660 | }; |