Thomas Gleixner | 25763b3 | 2019-05-28 10:10:09 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 2 | /* Copyright (c) 2017 Facebook |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 3 | */ |
| 4 | #include <linux/bpf.h> |
Kumar Kartikeya Dwivedi | c48e51c | 2021-10-02 06:47:57 +0530 | [diff] [blame] | 5 | #include <linux/btf.h> |
Martin KaFai Lau | 7bd1590 | 2021-03-24 18:52:52 -0700 | [diff] [blame] | 6 | #include <linux/btf_ids.h> |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 7 | #include <linux/slab.h> |
| 8 | #include <linux/vmalloc.h> |
| 9 | #include <linux/etherdevice.h> |
| 10 | #include <linux/filter.h> |
Yonghong Song | 87b7b53 | 2021-08-09 16:51:51 -0700 | [diff] [blame] | 11 | #include <linux/rcupdate_trace.h> |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 12 | #include <linux/sched/signal.h> |
Martin KaFai Lau | 6ac99e8 | 2019-04-26 16:39:39 -0700 | [diff] [blame] | 13 | #include <net/bpf_sk_storage.h> |
Song Liu | 2cb494a | 2018-10-19 09:57:58 -0700 | [diff] [blame] | 14 | #include <net/sock.h> |
| 15 | #include <net/tcp.h> |
Lorenz Bauer | 7c32e8f | 2021-03-03 10:18:13 +0000 | [diff] [blame] | 16 | #include <net/net_namespace.h> |
KP Singh | 3d08b6f | 2020-03-04 20:18:53 +0100 | [diff] [blame] | 17 | #include <linux/error-injection.h> |
Song Liu | 1b4d60e | 2020-09-25 13:54:29 -0700 | [diff] [blame] | 18 | #include <linux/smp.h> |
Lorenz Bauer | 7c32e8f | 2021-03-03 10:18:13 +0000 | [diff] [blame] | 19 | #include <linux/sock_diag.h> |
Zvi Effron | 47316f4 | 2021-07-07 22:16:55 +0000 | [diff] [blame] | 20 | #include <net/xdp.h> |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 21 | |
Matt Mullins | e950e84 | 2019-04-26 11:49:51 -0700 | [diff] [blame] | 22 | #define CREATE_TRACE_POINTS |
| 23 | #include <trace/events/bpf_test_run.h> |
| 24 | |
Lorenz Bauer | 607b9cc | 2021-03-03 10:18:12 +0000 | [diff] [blame] | 25 | struct bpf_test_timer { |
| 26 | enum { NO_PREEMPT, NO_MIGRATE } mode; |
| 27 | u32 i; |
| 28 | u64 time_start, time_spent; |
| 29 | }; |
| 30 | |
| 31 | static void bpf_test_timer_enter(struct bpf_test_timer *t) |
| 32 | __acquires(rcu) |
| 33 | { |
| 34 | rcu_read_lock(); |
| 35 | if (t->mode == NO_PREEMPT) |
| 36 | preempt_disable(); |
| 37 | else |
| 38 | migrate_disable(); |
| 39 | |
| 40 | t->time_start = ktime_get_ns(); |
| 41 | } |
| 42 | |
| 43 | static void bpf_test_timer_leave(struct bpf_test_timer *t) |
| 44 | __releases(rcu) |
| 45 | { |
| 46 | t->time_start = 0; |
| 47 | |
| 48 | if (t->mode == NO_PREEMPT) |
| 49 | preempt_enable(); |
| 50 | else |
| 51 | migrate_enable(); |
| 52 | rcu_read_unlock(); |
| 53 | } |
| 54 | |
| 55 | static bool bpf_test_timer_continue(struct bpf_test_timer *t, u32 repeat, int *err, u32 *duration) |
| 56 | __must_hold(rcu) |
| 57 | { |
| 58 | t->i++; |
| 59 | if (t->i >= repeat) { |
| 60 | /* We're done. */ |
| 61 | t->time_spent += ktime_get_ns() - t->time_start; |
| 62 | do_div(t->time_spent, t->i); |
| 63 | *duration = t->time_spent > U32_MAX ? U32_MAX : (u32)t->time_spent; |
| 64 | *err = 0; |
| 65 | goto reset; |
| 66 | } |
| 67 | |
| 68 | if (signal_pending(current)) { |
| 69 | /* During iteration: we've been cancelled, abort. */ |
| 70 | *err = -EINTR; |
| 71 | goto reset; |
| 72 | } |
| 73 | |
| 74 | if (need_resched()) { |
| 75 | /* During iteration: we need to reschedule between runs. */ |
| 76 | t->time_spent += ktime_get_ns() - t->time_start; |
| 77 | bpf_test_timer_leave(t); |
| 78 | cond_resched(); |
| 79 | bpf_test_timer_enter(t); |
| 80 | } |
| 81 | |
| 82 | /* Do another round. */ |
| 83 | return true; |
| 84 | |
| 85 | reset: |
| 86 | t->i = 0; |
| 87 | return false; |
| 88 | } |
| 89 | |
Stanislav Fomichev | df1a2cb | 2019-02-12 15:42:38 -0800 | [diff] [blame] | 90 | static int bpf_test_run(struct bpf_prog *prog, void *ctx, u32 repeat, |
Björn Töpel | f23c4b3 | 2019-12-13 18:51:10 +0100 | [diff] [blame] | 91 | u32 *retval, u32 *time, bool xdp) |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 92 | { |
Andrii Nakryiko | c7603cf | 2021-07-12 16:06:15 -0700 | [diff] [blame] | 93 | struct bpf_prog_array_item item = {.prog = prog}; |
| 94 | struct bpf_run_ctx *old_ctx; |
| 95 | struct bpf_cg_run_ctx run_ctx; |
Lorenz Bauer | 607b9cc | 2021-03-03 10:18:12 +0000 | [diff] [blame] | 96 | struct bpf_test_timer t = { NO_MIGRATE }; |
Roman Gushchin | 8bad74f | 2018-09-28 14:45:36 +0000 | [diff] [blame] | 97 | enum bpf_cgroup_storage_type stype; |
Lorenz Bauer | 607b9cc | 2021-03-03 10:18:12 +0000 | [diff] [blame] | 98 | int ret; |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 99 | |
Roman Gushchin | 8bad74f | 2018-09-28 14:45:36 +0000 | [diff] [blame] | 100 | for_each_cgroup_storage_type(stype) { |
Andrii Nakryiko | c7603cf | 2021-07-12 16:06:15 -0700 | [diff] [blame] | 101 | item.cgroup_storage[stype] = bpf_cgroup_storage_alloc(prog, stype); |
| 102 | if (IS_ERR(item.cgroup_storage[stype])) { |
| 103 | item.cgroup_storage[stype] = NULL; |
Roman Gushchin | 8bad74f | 2018-09-28 14:45:36 +0000 | [diff] [blame] | 104 | for_each_cgroup_storage_type(stype) |
Andrii Nakryiko | c7603cf | 2021-07-12 16:06:15 -0700 | [diff] [blame] | 105 | bpf_cgroup_storage_free(item.cgroup_storage[stype]); |
Roman Gushchin | 8bad74f | 2018-09-28 14:45:36 +0000 | [diff] [blame] | 106 | return -ENOMEM; |
| 107 | } |
| 108 | } |
Roman Gushchin | f42ee09 | 2018-08-02 14:27:27 -0700 | [diff] [blame] | 109 | |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 110 | if (!repeat) |
| 111 | repeat = 1; |
Stanislav Fomichev | df1a2cb | 2019-02-12 15:42:38 -0800 | [diff] [blame] | 112 | |
Lorenz Bauer | 607b9cc | 2021-03-03 10:18:12 +0000 | [diff] [blame] | 113 | bpf_test_timer_enter(&t); |
Andrii Nakryiko | c7603cf | 2021-07-12 16:06:15 -0700 | [diff] [blame] | 114 | old_ctx = bpf_set_run_ctx(&run_ctx.run_ctx); |
Lorenz Bauer | 607b9cc | 2021-03-03 10:18:12 +0000 | [diff] [blame] | 115 | do { |
Andrii Nakryiko | c7603cf | 2021-07-12 16:06:15 -0700 | [diff] [blame] | 116 | run_ctx.prog_item = &item; |
Björn Töpel | f23c4b3 | 2019-12-13 18:51:10 +0100 | [diff] [blame] | 117 | if (xdp) |
| 118 | *retval = bpf_prog_run_xdp(prog, ctx); |
| 119 | else |
Andrii Nakryiko | fb7dd8b | 2021-08-15 00:05:54 -0700 | [diff] [blame] | 120 | *retval = bpf_prog_run(prog, ctx); |
Lorenz Bauer | 607b9cc | 2021-03-03 10:18:12 +0000 | [diff] [blame] | 121 | } while (bpf_test_timer_continue(&t, repeat, &ret, time)); |
Andrii Nakryiko | c7603cf | 2021-07-12 16:06:15 -0700 | [diff] [blame] | 122 | bpf_reset_run_ctx(old_ctx); |
Lorenz Bauer | 607b9cc | 2021-03-03 10:18:12 +0000 | [diff] [blame] | 123 | bpf_test_timer_leave(&t); |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 124 | |
Roman Gushchin | 8bad74f | 2018-09-28 14:45:36 +0000 | [diff] [blame] | 125 | for_each_cgroup_storage_type(stype) |
Andrii Nakryiko | c7603cf | 2021-07-12 16:06:15 -0700 | [diff] [blame] | 126 | bpf_cgroup_storage_free(item.cgroup_storage[stype]); |
Roman Gushchin | f42ee09 | 2018-08-02 14:27:27 -0700 | [diff] [blame] | 127 | |
Stanislav Fomichev | df1a2cb | 2019-02-12 15:42:38 -0800 | [diff] [blame] | 128 | return ret; |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 129 | } |
| 130 | |
David Miller | 78e5227 | 2017-05-02 11:36:33 -0400 | [diff] [blame] | 131 | static int bpf_test_finish(const union bpf_attr *kattr, |
| 132 | union bpf_attr __user *uattr, const void *data, |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 133 | u32 size, u32 retval, u32 duration) |
| 134 | { |
David Miller | 78e5227 | 2017-05-02 11:36:33 -0400 | [diff] [blame] | 135 | void __user *data_out = u64_to_user_ptr(kattr->test.data_out); |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 136 | int err = -EFAULT; |
Lorenz Bauer | b5a36b1 | 2018-12-03 11:31:23 +0000 | [diff] [blame] | 137 | u32 copy_size = size; |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 138 | |
Lorenz Bauer | b5a36b1 | 2018-12-03 11:31:23 +0000 | [diff] [blame] | 139 | /* Clamp copy if the user has provided a size hint, but copy the full |
| 140 | * buffer if not to retain old behaviour. |
| 141 | */ |
| 142 | if (kattr->test.data_size_out && |
| 143 | copy_size > kattr->test.data_size_out) { |
| 144 | copy_size = kattr->test.data_size_out; |
| 145 | err = -ENOSPC; |
| 146 | } |
| 147 | |
| 148 | if (data_out && copy_to_user(data_out, data, copy_size)) |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 149 | goto out; |
| 150 | if (copy_to_user(&uattr->test.data_size_out, &size, sizeof(size))) |
| 151 | goto out; |
| 152 | if (copy_to_user(&uattr->test.retval, &retval, sizeof(retval))) |
| 153 | goto out; |
| 154 | if (copy_to_user(&uattr->test.duration, &duration, sizeof(duration))) |
| 155 | goto out; |
Lorenz Bauer | b5a36b1 | 2018-12-03 11:31:23 +0000 | [diff] [blame] | 156 | if (err != -ENOSPC) |
| 157 | err = 0; |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 158 | out: |
Matt Mullins | e950e84 | 2019-04-26 11:49:51 -0700 | [diff] [blame] | 159 | trace_bpf_test_finish(&err); |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 160 | return err; |
| 161 | } |
| 162 | |
Alexei Starovoitov | faeb2dc | 2019-11-14 10:57:08 -0800 | [diff] [blame] | 163 | /* Integer types of various sizes and pointer combinations cover variety of |
| 164 | * architecture dependent calling conventions. 7+ can be supported in the |
| 165 | * future. |
| 166 | */ |
Jean-Philippe Menil | e9ff9d5 | 2020-03-27 21:47:13 +0100 | [diff] [blame] | 167 | __diag_push(); |
| 168 | __diag_ignore(GCC, 8, "-Wmissing-prototypes", |
| 169 | "Global functions as their definitions will be in vmlinux BTF"); |
Alexei Starovoitov | faeb2dc | 2019-11-14 10:57:08 -0800 | [diff] [blame] | 170 | int noinline bpf_fentry_test1(int a) |
| 171 | { |
| 172 | return a + 1; |
| 173 | } |
| 174 | |
| 175 | int noinline bpf_fentry_test2(int a, u64 b) |
| 176 | { |
| 177 | return a + b; |
| 178 | } |
| 179 | |
| 180 | int noinline bpf_fentry_test3(char a, int b, u64 c) |
| 181 | { |
| 182 | return a + b + c; |
| 183 | } |
| 184 | |
| 185 | int noinline bpf_fentry_test4(void *a, char b, int c, u64 d) |
| 186 | { |
| 187 | return (long)a + b + c + d; |
| 188 | } |
| 189 | |
| 190 | int noinline bpf_fentry_test5(u64 a, void *b, short c, int d, u64 e) |
| 191 | { |
| 192 | return a + (long)b + c + d + e; |
| 193 | } |
| 194 | |
| 195 | int noinline bpf_fentry_test6(u64 a, void *b, short c, int d, void *e, u64 f) |
| 196 | { |
| 197 | return a + (long)b + c + d + (long)e + f; |
| 198 | } |
| 199 | |
Yonghong Song | d923021 | 2020-06-30 10:12:41 -0700 | [diff] [blame] | 200 | struct bpf_fentry_test_t { |
| 201 | struct bpf_fentry_test_t *a; |
| 202 | }; |
| 203 | |
| 204 | int noinline bpf_fentry_test7(struct bpf_fentry_test_t *arg) |
| 205 | { |
| 206 | return (long)arg; |
| 207 | } |
| 208 | |
| 209 | int noinline bpf_fentry_test8(struct bpf_fentry_test_t *arg) |
| 210 | { |
| 211 | return (long)arg->a; |
| 212 | } |
| 213 | |
KP Singh | 3d08b6f | 2020-03-04 20:18:53 +0100 | [diff] [blame] | 214 | int noinline bpf_modify_return_test(int a, int *b) |
| 215 | { |
| 216 | *b += 1; |
| 217 | return a + *b; |
| 218 | } |
Martin KaFai Lau | 7bd1590 | 2021-03-24 18:52:52 -0700 | [diff] [blame] | 219 | |
| 220 | u64 noinline bpf_kfunc_call_test1(struct sock *sk, u32 a, u64 b, u32 c, u64 d) |
| 221 | { |
| 222 | return a + b + c + d; |
| 223 | } |
| 224 | |
| 225 | int noinline bpf_kfunc_call_test2(struct sock *sk, u32 a, u32 b) |
| 226 | { |
| 227 | return a + b; |
| 228 | } |
| 229 | |
| 230 | struct sock * noinline bpf_kfunc_call_test3(struct sock *sk) |
| 231 | { |
| 232 | return sk; |
| 233 | } |
| 234 | |
Jean-Philippe Menil | e9ff9d5 | 2020-03-27 21:47:13 +0100 | [diff] [blame] | 235 | __diag_pop(); |
KP Singh | 3d08b6f | 2020-03-04 20:18:53 +0100 | [diff] [blame] | 236 | |
| 237 | ALLOW_ERROR_INJECTION(bpf_modify_return_test, ERRNO); |
| 238 | |
Martin KaFai Lau | 7bd1590 | 2021-03-24 18:52:52 -0700 | [diff] [blame] | 239 | BTF_SET_START(test_sk_kfunc_ids) |
| 240 | BTF_ID(func, bpf_kfunc_call_test1) |
| 241 | BTF_ID(func, bpf_kfunc_call_test2) |
| 242 | BTF_ID(func, bpf_kfunc_call_test3) |
| 243 | BTF_SET_END(test_sk_kfunc_ids) |
| 244 | |
Kumar Kartikeya Dwivedi | 2357672 | 2021-10-02 06:47:49 +0530 | [diff] [blame] | 245 | bool bpf_prog_test_check_kfunc_call(u32 kfunc_id, struct module *owner) |
Martin KaFai Lau | 7bd1590 | 2021-03-24 18:52:52 -0700 | [diff] [blame] | 246 | { |
Kumar Kartikeya Dwivedi | c48e51c | 2021-10-02 06:47:57 +0530 | [diff] [blame] | 247 | if (btf_id_set_contains(&test_sk_kfunc_ids, kfunc_id)) |
| 248 | return true; |
| 249 | return bpf_check_mod_kfunc_call(&prog_test_kfunc_list, kfunc_id, owner); |
Martin KaFai Lau | 7bd1590 | 2021-03-24 18:52:52 -0700 | [diff] [blame] | 250 | } |
| 251 | |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 252 | static void *bpf_test_init(const union bpf_attr *kattr, u32 size, |
| 253 | u32 headroom, u32 tailroom) |
| 254 | { |
| 255 | void __user *data_in = u64_to_user_ptr(kattr->test.data_in); |
Jesper Dangaard Brouer | d800bad | 2020-05-18 15:05:27 +0200 | [diff] [blame] | 256 | u32 user_size = kattr->test.data_size_in; |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 257 | void *data; |
| 258 | |
| 259 | if (size < ETH_HLEN || size > PAGE_SIZE - headroom - tailroom) |
| 260 | return ERR_PTR(-EINVAL); |
| 261 | |
Jesper Dangaard Brouer | d800bad | 2020-05-18 15:05:27 +0200 | [diff] [blame] | 262 | if (user_size > size) |
| 263 | return ERR_PTR(-EMSGSIZE); |
| 264 | |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 265 | data = kzalloc(size + headroom + tailroom, GFP_USER); |
| 266 | if (!data) |
| 267 | return ERR_PTR(-ENOMEM); |
| 268 | |
Jesper Dangaard Brouer | d800bad | 2020-05-18 15:05:27 +0200 | [diff] [blame] | 269 | if (copy_from_user(data + headroom, data_in, user_size)) { |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 270 | kfree(data); |
| 271 | return ERR_PTR(-EFAULT); |
| 272 | } |
KP Singh | da00d2f | 2020-03-04 20:18:52 +0100 | [diff] [blame] | 273 | |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 274 | return data; |
| 275 | } |
| 276 | |
KP Singh | da00d2f | 2020-03-04 20:18:52 +0100 | [diff] [blame] | 277 | int bpf_prog_test_run_tracing(struct bpf_prog *prog, |
| 278 | const union bpf_attr *kattr, |
| 279 | union bpf_attr __user *uattr) |
| 280 | { |
Yonghong Song | d923021 | 2020-06-30 10:12:41 -0700 | [diff] [blame] | 281 | struct bpf_fentry_test_t arg = {}; |
KP Singh | 3d08b6f | 2020-03-04 20:18:53 +0100 | [diff] [blame] | 282 | u16 side_effect = 0, ret = 0; |
| 283 | int b = 2, err = -EFAULT; |
| 284 | u32 retval = 0; |
KP Singh | da00d2f | 2020-03-04 20:18:52 +0100 | [diff] [blame] | 285 | |
Song Liu | 1b4d60e | 2020-09-25 13:54:29 -0700 | [diff] [blame] | 286 | if (kattr->test.flags || kattr->test.cpu) |
| 287 | return -EINVAL; |
| 288 | |
KP Singh | da00d2f | 2020-03-04 20:18:52 +0100 | [diff] [blame] | 289 | switch (prog->expected_attach_type) { |
| 290 | case BPF_TRACE_FENTRY: |
| 291 | case BPF_TRACE_FEXIT: |
| 292 | if (bpf_fentry_test1(1) != 2 || |
| 293 | bpf_fentry_test2(2, 3) != 5 || |
| 294 | bpf_fentry_test3(4, 5, 6) != 15 || |
| 295 | bpf_fentry_test4((void *)7, 8, 9, 10) != 34 || |
| 296 | bpf_fentry_test5(11, (void *)12, 13, 14, 15) != 65 || |
Yonghong Song | d923021 | 2020-06-30 10:12:41 -0700 | [diff] [blame] | 297 | bpf_fentry_test6(16, (void *)17, 18, 19, (void *)20, 21) != 111 || |
| 298 | bpf_fentry_test7((struct bpf_fentry_test_t *)0) != 0 || |
| 299 | bpf_fentry_test8(&arg) != 0) |
KP Singh | da00d2f | 2020-03-04 20:18:52 +0100 | [diff] [blame] | 300 | goto out; |
| 301 | break; |
KP Singh | 3d08b6f | 2020-03-04 20:18:53 +0100 | [diff] [blame] | 302 | case BPF_MODIFY_RETURN: |
| 303 | ret = bpf_modify_return_test(1, &b); |
| 304 | if (b != 2) |
| 305 | side_effect = 1; |
| 306 | break; |
KP Singh | da00d2f | 2020-03-04 20:18:52 +0100 | [diff] [blame] | 307 | default: |
| 308 | goto out; |
| 309 | } |
| 310 | |
KP Singh | 3d08b6f | 2020-03-04 20:18:53 +0100 | [diff] [blame] | 311 | retval = ((u32)side_effect << 16) | ret; |
| 312 | if (copy_to_user(&uattr->test.retval, &retval, sizeof(retval))) |
| 313 | goto out; |
| 314 | |
KP Singh | da00d2f | 2020-03-04 20:18:52 +0100 | [diff] [blame] | 315 | err = 0; |
| 316 | out: |
| 317 | trace_bpf_test_finish(&err); |
| 318 | return err; |
| 319 | } |
| 320 | |
Song Liu | 1b4d60e | 2020-09-25 13:54:29 -0700 | [diff] [blame] | 321 | struct bpf_raw_tp_test_run_info { |
| 322 | struct bpf_prog *prog; |
| 323 | void *ctx; |
| 324 | u32 retval; |
| 325 | }; |
| 326 | |
| 327 | static void |
| 328 | __bpf_prog_test_run_raw_tp(void *data) |
| 329 | { |
| 330 | struct bpf_raw_tp_test_run_info *info = data; |
| 331 | |
| 332 | rcu_read_lock(); |
Andrii Nakryiko | fb7dd8b | 2021-08-15 00:05:54 -0700 | [diff] [blame] | 333 | info->retval = bpf_prog_run(info->prog, info->ctx); |
Song Liu | 1b4d60e | 2020-09-25 13:54:29 -0700 | [diff] [blame] | 334 | rcu_read_unlock(); |
| 335 | } |
| 336 | |
| 337 | int bpf_prog_test_run_raw_tp(struct bpf_prog *prog, |
| 338 | const union bpf_attr *kattr, |
| 339 | union bpf_attr __user *uattr) |
| 340 | { |
| 341 | void __user *ctx_in = u64_to_user_ptr(kattr->test.ctx_in); |
| 342 | __u32 ctx_size_in = kattr->test.ctx_size_in; |
| 343 | struct bpf_raw_tp_test_run_info info; |
| 344 | int cpu = kattr->test.cpu, err = 0; |
Song Liu | 963ec27 | 2020-09-29 15:29:49 -0700 | [diff] [blame] | 345 | int current_cpu; |
Song Liu | 1b4d60e | 2020-09-25 13:54:29 -0700 | [diff] [blame] | 346 | |
| 347 | /* doesn't support data_in/out, ctx_out, duration, or repeat */ |
| 348 | if (kattr->test.data_in || kattr->test.data_out || |
| 349 | kattr->test.ctx_out || kattr->test.duration || |
| 350 | kattr->test.repeat) |
| 351 | return -EINVAL; |
| 352 | |
Song Liu | 7ac6ad0 | 2021-01-12 15:42:54 -0800 | [diff] [blame] | 353 | if (ctx_size_in < prog->aux->max_ctx_offset || |
| 354 | ctx_size_in > MAX_BPF_FUNC_ARGS * sizeof(u64)) |
Song Liu | 1b4d60e | 2020-09-25 13:54:29 -0700 | [diff] [blame] | 355 | return -EINVAL; |
| 356 | |
| 357 | if ((kattr->test.flags & BPF_F_TEST_RUN_ON_CPU) == 0 && cpu != 0) |
| 358 | return -EINVAL; |
| 359 | |
| 360 | if (ctx_size_in) { |
Qing Wang | db5b6a4 | 2021-10-18 04:30:48 -0700 | [diff] [blame] | 361 | info.ctx = memdup_user(ctx_in, ctx_size_in); |
| 362 | if (IS_ERR(info.ctx)) |
| 363 | return PTR_ERR(info.ctx); |
Song Liu | 1b4d60e | 2020-09-25 13:54:29 -0700 | [diff] [blame] | 364 | } else { |
| 365 | info.ctx = NULL; |
| 366 | } |
| 367 | |
| 368 | info.prog = prog; |
| 369 | |
Song Liu | 963ec27 | 2020-09-29 15:29:49 -0700 | [diff] [blame] | 370 | current_cpu = get_cpu(); |
Song Liu | 1b4d60e | 2020-09-25 13:54:29 -0700 | [diff] [blame] | 371 | if ((kattr->test.flags & BPF_F_TEST_RUN_ON_CPU) == 0 || |
Song Liu | 963ec27 | 2020-09-29 15:29:49 -0700 | [diff] [blame] | 372 | cpu == current_cpu) { |
Song Liu | 1b4d60e | 2020-09-25 13:54:29 -0700 | [diff] [blame] | 373 | __bpf_prog_test_run_raw_tp(&info); |
Song Liu | 963ec27 | 2020-09-29 15:29:49 -0700 | [diff] [blame] | 374 | } else if (cpu >= nr_cpu_ids || !cpu_online(cpu)) { |
Song Liu | 1b4d60e | 2020-09-25 13:54:29 -0700 | [diff] [blame] | 375 | /* smp_call_function_single() also checks cpu_online() |
| 376 | * after csd_lock(). However, since cpu is from user |
| 377 | * space, let's do an extra quick check to filter out |
| 378 | * invalid value before smp_call_function_single(). |
| 379 | */ |
Song Liu | 963ec27 | 2020-09-29 15:29:49 -0700 | [diff] [blame] | 380 | err = -ENXIO; |
| 381 | } else { |
Song Liu | 1b4d60e | 2020-09-25 13:54:29 -0700 | [diff] [blame] | 382 | err = smp_call_function_single(cpu, __bpf_prog_test_run_raw_tp, |
| 383 | &info, 1); |
Song Liu | 1b4d60e | 2020-09-25 13:54:29 -0700 | [diff] [blame] | 384 | } |
Song Liu | 963ec27 | 2020-09-29 15:29:49 -0700 | [diff] [blame] | 385 | put_cpu(); |
Song Liu | 1b4d60e | 2020-09-25 13:54:29 -0700 | [diff] [blame] | 386 | |
Song Liu | 963ec27 | 2020-09-29 15:29:49 -0700 | [diff] [blame] | 387 | if (!err && |
| 388 | copy_to_user(&uattr->test.retval, &info.retval, sizeof(u32))) |
Song Liu | 1b4d60e | 2020-09-25 13:54:29 -0700 | [diff] [blame] | 389 | err = -EFAULT; |
| 390 | |
Song Liu | 1b4d60e | 2020-09-25 13:54:29 -0700 | [diff] [blame] | 391 | kfree(info.ctx); |
| 392 | return err; |
| 393 | } |
| 394 | |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 395 | static void *bpf_ctx_init(const union bpf_attr *kattr, u32 max_size) |
| 396 | { |
| 397 | void __user *data_in = u64_to_user_ptr(kattr->test.ctx_in); |
| 398 | void __user *data_out = u64_to_user_ptr(kattr->test.ctx_out); |
| 399 | u32 size = kattr->test.ctx_size_in; |
| 400 | void *data; |
| 401 | int err; |
| 402 | |
| 403 | if (!data_in && !data_out) |
| 404 | return NULL; |
| 405 | |
| 406 | data = kzalloc(max_size, GFP_USER); |
| 407 | if (!data) |
| 408 | return ERR_PTR(-ENOMEM); |
| 409 | |
| 410 | if (data_in) { |
Alexei Starovoitov | af2ac3e | 2021-05-13 17:36:05 -0700 | [diff] [blame] | 411 | err = bpf_check_uarg_tail_zero(USER_BPFPTR(data_in), max_size, size); |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 412 | if (err) { |
| 413 | kfree(data); |
| 414 | return ERR_PTR(err); |
| 415 | } |
| 416 | |
| 417 | size = min_t(u32, max_size, size); |
| 418 | if (copy_from_user(data, data_in, size)) { |
| 419 | kfree(data); |
| 420 | return ERR_PTR(-EFAULT); |
| 421 | } |
| 422 | } |
| 423 | return data; |
| 424 | } |
| 425 | |
| 426 | static int bpf_ctx_finish(const union bpf_attr *kattr, |
| 427 | union bpf_attr __user *uattr, const void *data, |
| 428 | u32 size) |
| 429 | { |
| 430 | void __user *data_out = u64_to_user_ptr(kattr->test.ctx_out); |
| 431 | int err = -EFAULT; |
| 432 | u32 copy_size = size; |
| 433 | |
| 434 | if (!data || !data_out) |
| 435 | return 0; |
| 436 | |
| 437 | if (copy_size > kattr->test.ctx_size_out) { |
| 438 | copy_size = kattr->test.ctx_size_out; |
| 439 | err = -ENOSPC; |
| 440 | } |
| 441 | |
| 442 | if (copy_to_user(data_out, data, copy_size)) |
| 443 | goto out; |
| 444 | if (copy_to_user(&uattr->test.ctx_size_out, &size, sizeof(size))) |
| 445 | goto out; |
| 446 | if (err != -ENOSPC) |
| 447 | err = 0; |
| 448 | out: |
| 449 | return err; |
| 450 | } |
| 451 | |
| 452 | /** |
| 453 | * range_is_zero - test whether buffer is initialized |
| 454 | * @buf: buffer to check |
| 455 | * @from: check from this position |
| 456 | * @to: check up until (excluding) this position |
| 457 | * |
| 458 | * This function returns true if the there is a non-zero byte |
| 459 | * in the buf in the range [from,to). |
| 460 | */ |
| 461 | static inline bool range_is_zero(void *buf, size_t from, size_t to) |
| 462 | { |
| 463 | return !memchr_inv((u8 *)buf + from, 0, to - from); |
| 464 | } |
| 465 | |
| 466 | static int convert___skb_to_skb(struct sk_buff *skb, struct __sk_buff *__skb) |
| 467 | { |
| 468 | struct qdisc_skb_cb *cb = (struct qdisc_skb_cb *)skb->cb; |
| 469 | |
| 470 | if (!__skb) |
| 471 | return 0; |
| 472 | |
| 473 | /* make sure the fields we don't use are zeroed */ |
Nikita V. Shirokov | 6de6c1f | 2019-12-18 12:57:47 -0800 | [diff] [blame] | 474 | if (!range_is_zero(__skb, 0, offsetof(struct __sk_buff, mark))) |
| 475 | return -EINVAL; |
| 476 | |
| 477 | /* mark is allowed */ |
| 478 | |
| 479 | if (!range_is_zero(__skb, offsetofend(struct __sk_buff, mark), |
| 480 | offsetof(struct __sk_buff, priority))) |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 481 | return -EINVAL; |
| 482 | |
| 483 | /* priority is allowed */ |
Neil Spring | b238290 | 2021-08-30 20:33:56 -0700 | [diff] [blame] | 484 | /* ingress_ifindex is allowed */ |
Dmitry Yakunin | 21594c4 | 2020-08-03 12:05:45 +0300 | [diff] [blame] | 485 | /* ifindex is allowed */ |
| 486 | |
| 487 | if (!range_is_zero(__skb, offsetofend(struct __sk_buff, ifindex), |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 488 | offsetof(struct __sk_buff, cb))) |
| 489 | return -EINVAL; |
| 490 | |
| 491 | /* cb is allowed */ |
| 492 | |
Stanislav Fomichev | b590cb5 | 2019-12-10 11:19:33 -0800 | [diff] [blame] | 493 | if (!range_is_zero(__skb, offsetofend(struct __sk_buff, cb), |
Stanislav Fomichev | ba94094 | 2019-10-15 11:31:24 -0700 | [diff] [blame] | 494 | offsetof(struct __sk_buff, tstamp))) |
| 495 | return -EINVAL; |
| 496 | |
| 497 | /* tstamp is allowed */ |
Stanislav Fomichev | 850a88c | 2019-12-13 14:30:27 -0800 | [diff] [blame] | 498 | /* wire_len is allowed */ |
| 499 | /* gso_segs is allowed */ |
Stanislav Fomichev | ba94094 | 2019-10-15 11:31:24 -0700 | [diff] [blame] | 500 | |
Stanislav Fomichev | 850a88c | 2019-12-13 14:30:27 -0800 | [diff] [blame] | 501 | if (!range_is_zero(__skb, offsetofend(struct __sk_buff, gso_segs), |
Willem de Bruijn | cf62089 | 2020-03-03 15:05:01 -0500 | [diff] [blame] | 502 | offsetof(struct __sk_buff, gso_size))) |
| 503 | return -EINVAL; |
| 504 | |
| 505 | /* gso_size is allowed */ |
| 506 | |
| 507 | if (!range_is_zero(__skb, offsetofend(struct __sk_buff, gso_size), |
Vadim Fedorenko | 3384c7c | 2021-09-10 01:04:09 +0300 | [diff] [blame] | 508 | offsetof(struct __sk_buff, hwtstamp))) |
| 509 | return -EINVAL; |
| 510 | |
| 511 | /* hwtstamp is allowed */ |
| 512 | |
| 513 | if (!range_is_zero(__skb, offsetofend(struct __sk_buff, hwtstamp), |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 514 | sizeof(struct __sk_buff))) |
| 515 | return -EINVAL; |
| 516 | |
Nikita V. Shirokov | 6de6c1f | 2019-12-18 12:57:47 -0800 | [diff] [blame] | 517 | skb->mark = __skb->mark; |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 518 | skb->priority = __skb->priority; |
Neil Spring | b238290 | 2021-08-30 20:33:56 -0700 | [diff] [blame] | 519 | skb->skb_iif = __skb->ingress_ifindex; |
Stanislav Fomichev | ba94094 | 2019-10-15 11:31:24 -0700 | [diff] [blame] | 520 | skb->tstamp = __skb->tstamp; |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 521 | memcpy(&cb->data, __skb->cb, QDISC_CB_PRIV_LEN); |
| 522 | |
Stanislav Fomichev | 850a88c | 2019-12-13 14:30:27 -0800 | [diff] [blame] | 523 | if (__skb->wire_len == 0) { |
| 524 | cb->pkt_len = skb->len; |
| 525 | } else { |
| 526 | if (__skb->wire_len < skb->len || |
| 527 | __skb->wire_len > GSO_MAX_SIZE) |
| 528 | return -EINVAL; |
| 529 | cb->pkt_len = __skb->wire_len; |
| 530 | } |
| 531 | |
| 532 | if (__skb->gso_segs > GSO_MAX_SEGS) |
| 533 | return -EINVAL; |
| 534 | skb_shinfo(skb)->gso_segs = __skb->gso_segs; |
Willem de Bruijn | cf62089 | 2020-03-03 15:05:01 -0500 | [diff] [blame] | 535 | skb_shinfo(skb)->gso_size = __skb->gso_size; |
Vadim Fedorenko | 3384c7c | 2021-09-10 01:04:09 +0300 | [diff] [blame] | 536 | skb_shinfo(skb)->hwtstamps.hwtstamp = __skb->hwtstamp; |
Stanislav Fomichev | 850a88c | 2019-12-13 14:30:27 -0800 | [diff] [blame] | 537 | |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 538 | return 0; |
| 539 | } |
| 540 | |
| 541 | static void convert_skb_to___skb(struct sk_buff *skb, struct __sk_buff *__skb) |
| 542 | { |
| 543 | struct qdisc_skb_cb *cb = (struct qdisc_skb_cb *)skb->cb; |
| 544 | |
| 545 | if (!__skb) |
| 546 | return; |
| 547 | |
Nikita V. Shirokov | 6de6c1f | 2019-12-18 12:57:47 -0800 | [diff] [blame] | 548 | __skb->mark = skb->mark; |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 549 | __skb->priority = skb->priority; |
Neil Spring | b238290 | 2021-08-30 20:33:56 -0700 | [diff] [blame] | 550 | __skb->ingress_ifindex = skb->skb_iif; |
Dmitry Yakunin | 21594c4 | 2020-08-03 12:05:45 +0300 | [diff] [blame] | 551 | __skb->ifindex = skb->dev->ifindex; |
Stanislav Fomichev | ba94094 | 2019-10-15 11:31:24 -0700 | [diff] [blame] | 552 | __skb->tstamp = skb->tstamp; |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 553 | memcpy(__skb->cb, &cb->data, QDISC_CB_PRIV_LEN); |
Stanislav Fomichev | 850a88c | 2019-12-13 14:30:27 -0800 | [diff] [blame] | 554 | __skb->wire_len = cb->pkt_len; |
| 555 | __skb->gso_segs = skb_shinfo(skb)->gso_segs; |
Vadim Fedorenko | 3384c7c | 2021-09-10 01:04:09 +0300 | [diff] [blame] | 556 | __skb->hwtstamp = skb_shinfo(skb)->hwtstamps.hwtstamp; |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 557 | } |
| 558 | |
Daniel Borkmann | 435b08e | 2021-09-27 14:39:21 +0200 | [diff] [blame] | 559 | static struct proto bpf_dummy_proto = { |
| 560 | .name = "bpf_dummy", |
| 561 | .owner = THIS_MODULE, |
| 562 | .obj_size = sizeof(struct sock), |
| 563 | }; |
| 564 | |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 565 | int bpf_prog_test_run_skb(struct bpf_prog *prog, const union bpf_attr *kattr, |
| 566 | union bpf_attr __user *uattr) |
| 567 | { |
| 568 | bool is_l2 = false, is_direct_pkt_access = false; |
Dmitry Yakunin | 21594c4 | 2020-08-03 12:05:45 +0300 | [diff] [blame] | 569 | struct net *net = current->nsproxy->net_ns; |
| 570 | struct net_device *dev = net->loopback_dev; |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 571 | u32 size = kattr->test.data_size_in; |
| 572 | u32 repeat = kattr->test.repeat; |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 573 | struct __sk_buff *ctx = NULL; |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 574 | u32 retval, duration; |
Daniel Borkmann | 6e6fddc | 2018-07-11 15:30:14 +0200 | [diff] [blame] | 575 | int hh_len = ETH_HLEN; |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 576 | struct sk_buff *skb; |
Song Liu | 2cb494a | 2018-10-19 09:57:58 -0700 | [diff] [blame] | 577 | struct sock *sk; |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 578 | void *data; |
| 579 | int ret; |
| 580 | |
Song Liu | 1b4d60e | 2020-09-25 13:54:29 -0700 | [diff] [blame] | 581 | if (kattr->test.flags || kattr->test.cpu) |
| 582 | return -EINVAL; |
| 583 | |
David Miller | 586f852 | 2017-05-02 11:36:45 -0400 | [diff] [blame] | 584 | data = bpf_test_init(kattr, size, NET_SKB_PAD + NET_IP_ALIGN, |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 585 | SKB_DATA_ALIGN(sizeof(struct skb_shared_info))); |
| 586 | if (IS_ERR(data)) |
| 587 | return PTR_ERR(data); |
| 588 | |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 589 | ctx = bpf_ctx_init(kattr, sizeof(struct __sk_buff)); |
| 590 | if (IS_ERR(ctx)) { |
| 591 | kfree(data); |
| 592 | return PTR_ERR(ctx); |
| 593 | } |
| 594 | |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 595 | switch (prog->type) { |
| 596 | case BPF_PROG_TYPE_SCHED_CLS: |
| 597 | case BPF_PROG_TYPE_SCHED_ACT: |
| 598 | is_l2 = true; |
Gustavo A. R. Silva | df561f66 | 2020-08-23 17:36:59 -0500 | [diff] [blame] | 599 | fallthrough; |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 600 | case BPF_PROG_TYPE_LWT_IN: |
| 601 | case BPF_PROG_TYPE_LWT_OUT: |
| 602 | case BPF_PROG_TYPE_LWT_XMIT: |
| 603 | is_direct_pkt_access = true; |
| 604 | break; |
| 605 | default: |
| 606 | break; |
| 607 | } |
| 608 | |
Daniel Borkmann | 435b08e | 2021-09-27 14:39:21 +0200 | [diff] [blame] | 609 | sk = sk_alloc(net, AF_UNSPEC, GFP_USER, &bpf_dummy_proto, 1); |
Song Liu | 2cb494a | 2018-10-19 09:57:58 -0700 | [diff] [blame] | 610 | if (!sk) { |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 611 | kfree(data); |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 612 | kfree(ctx); |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 613 | return -ENOMEM; |
| 614 | } |
Song Liu | 2cb494a | 2018-10-19 09:57:58 -0700 | [diff] [blame] | 615 | sock_init_data(NULL, sk); |
| 616 | |
| 617 | skb = build_skb(data, 0); |
| 618 | if (!skb) { |
| 619 | kfree(data); |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 620 | kfree(ctx); |
Daniel Borkmann | 435b08e | 2021-09-27 14:39:21 +0200 | [diff] [blame] | 621 | sk_free(sk); |
Song Liu | 2cb494a | 2018-10-19 09:57:58 -0700 | [diff] [blame] | 622 | return -ENOMEM; |
| 623 | } |
| 624 | skb->sk = sk; |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 625 | |
David Miller | 586f852 | 2017-05-02 11:36:45 -0400 | [diff] [blame] | 626 | skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN); |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 627 | __skb_put(skb, size); |
Dmitry Yakunin | 21594c4 | 2020-08-03 12:05:45 +0300 | [diff] [blame] | 628 | if (ctx && ctx->ifindex > 1) { |
| 629 | dev = dev_get_by_index(net, ctx->ifindex); |
| 630 | if (!dev) { |
| 631 | ret = -ENODEV; |
| 632 | goto out; |
| 633 | } |
| 634 | } |
| 635 | skb->protocol = eth_type_trans(skb, dev); |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 636 | skb_reset_network_header(skb); |
| 637 | |
Dmitry Yakunin | fa5cb54 | 2020-08-03 12:05:44 +0300 | [diff] [blame] | 638 | switch (skb->protocol) { |
| 639 | case htons(ETH_P_IP): |
| 640 | sk->sk_family = AF_INET; |
| 641 | if (sizeof(struct iphdr) <= skb_headlen(skb)) { |
| 642 | sk->sk_rcv_saddr = ip_hdr(skb)->saddr; |
| 643 | sk->sk_daddr = ip_hdr(skb)->daddr; |
| 644 | } |
| 645 | break; |
| 646 | #if IS_ENABLED(CONFIG_IPV6) |
| 647 | case htons(ETH_P_IPV6): |
| 648 | sk->sk_family = AF_INET6; |
| 649 | if (sizeof(struct ipv6hdr) <= skb_headlen(skb)) { |
| 650 | sk->sk_v6_rcv_saddr = ipv6_hdr(skb)->saddr; |
| 651 | sk->sk_v6_daddr = ipv6_hdr(skb)->daddr; |
| 652 | } |
| 653 | break; |
| 654 | #endif |
| 655 | default: |
| 656 | break; |
| 657 | } |
| 658 | |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 659 | if (is_l2) |
Daniel Borkmann | 6e6fddc | 2018-07-11 15:30:14 +0200 | [diff] [blame] | 660 | __skb_push(skb, hh_len); |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 661 | if (is_direct_pkt_access) |
Daniel Borkmann | 6aaae2b | 2017-09-25 02:25:50 +0200 | [diff] [blame] | 662 | bpf_compute_data_pointers(skb); |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 663 | ret = convert___skb_to_skb(skb, ctx); |
| 664 | if (ret) |
| 665 | goto out; |
Björn Töpel | f23c4b3 | 2019-12-13 18:51:10 +0100 | [diff] [blame] | 666 | ret = bpf_test_run(prog, skb, repeat, &retval, &duration, false); |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 667 | if (ret) |
| 668 | goto out; |
Daniel Borkmann | 6e6fddc | 2018-07-11 15:30:14 +0200 | [diff] [blame] | 669 | if (!is_l2) { |
| 670 | if (skb_headroom(skb) < hh_len) { |
| 671 | int nhead = HH_DATA_ALIGN(hh_len - skb_headroom(skb)); |
| 672 | |
| 673 | if (pskb_expand_head(skb, nhead, 0, GFP_USER)) { |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 674 | ret = -ENOMEM; |
| 675 | goto out; |
Daniel Borkmann | 6e6fddc | 2018-07-11 15:30:14 +0200 | [diff] [blame] | 676 | } |
| 677 | } |
| 678 | memset(__skb_push(skb, hh_len), 0, hh_len); |
| 679 | } |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 680 | convert_skb_to___skb(skb, ctx); |
Daniel Borkmann | 6e6fddc | 2018-07-11 15:30:14 +0200 | [diff] [blame] | 681 | |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 682 | size = skb->len; |
| 683 | /* bpf program can never convert linear skb to non-linear */ |
| 684 | if (WARN_ON_ONCE(skb_is_nonlinear(skb))) |
| 685 | size = skb_headlen(skb); |
David Miller | 78e5227 | 2017-05-02 11:36:33 -0400 | [diff] [blame] | 686 | ret = bpf_test_finish(kattr, uattr, skb->data, size, retval, duration); |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 687 | if (!ret) |
| 688 | ret = bpf_ctx_finish(kattr, uattr, ctx, |
| 689 | sizeof(struct __sk_buff)); |
| 690 | out: |
Dmitry Yakunin | 21594c4 | 2020-08-03 12:05:45 +0300 | [diff] [blame] | 691 | if (dev && dev != net->loopback_dev) |
| 692 | dev_put(dev); |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 693 | kfree_skb(skb); |
Daniel Borkmann | 435b08e | 2021-09-27 14:39:21 +0200 | [diff] [blame] | 694 | sk_free(sk); |
Stanislav Fomichev | b0b9395 | 2019-04-09 11:49:09 -0700 | [diff] [blame] | 695 | kfree(ctx); |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 696 | return ret; |
| 697 | } |
| 698 | |
Zvi Effron | 47316f4 | 2021-07-07 22:16:55 +0000 | [diff] [blame] | 699 | static int xdp_convert_md_to_buff(struct xdp_md *xdp_md, struct xdp_buff *xdp) |
| 700 | { |
Zvi Effron | ec94670 | 2021-07-07 22:16:56 +0000 | [diff] [blame] | 701 | unsigned int ingress_ifindex, rx_queue_index; |
| 702 | struct netdev_rx_queue *rxqueue; |
| 703 | struct net_device *device; |
| 704 | |
Zvi Effron | 47316f4 | 2021-07-07 22:16:55 +0000 | [diff] [blame] | 705 | if (!xdp_md) |
| 706 | return 0; |
| 707 | |
| 708 | if (xdp_md->egress_ifindex != 0) |
| 709 | return -EINVAL; |
| 710 | |
Zvi Effron | ec94670 | 2021-07-07 22:16:56 +0000 | [diff] [blame] | 711 | ingress_ifindex = xdp_md->ingress_ifindex; |
| 712 | rx_queue_index = xdp_md->rx_queue_index; |
| 713 | |
| 714 | if (!ingress_ifindex && rx_queue_index) |
Zvi Effron | 47316f4 | 2021-07-07 22:16:55 +0000 | [diff] [blame] | 715 | return -EINVAL; |
| 716 | |
Zvi Effron | ec94670 | 2021-07-07 22:16:56 +0000 | [diff] [blame] | 717 | if (ingress_ifindex) { |
| 718 | device = dev_get_by_index(current->nsproxy->net_ns, |
| 719 | ingress_ifindex); |
| 720 | if (!device) |
| 721 | return -ENODEV; |
Zvi Effron | 47316f4 | 2021-07-07 22:16:55 +0000 | [diff] [blame] | 722 | |
Zvi Effron | ec94670 | 2021-07-07 22:16:56 +0000 | [diff] [blame] | 723 | if (rx_queue_index >= device->real_num_rx_queues) |
| 724 | goto free_dev; |
| 725 | |
| 726 | rxqueue = __netif_get_rx_queue(device, rx_queue_index); |
| 727 | |
| 728 | if (!xdp_rxq_info_is_reg(&rxqueue->xdp_rxq)) |
| 729 | goto free_dev; |
| 730 | |
| 731 | xdp->rxq = &rxqueue->xdp_rxq; |
| 732 | /* The device is now tracked in the xdp->rxq for later |
| 733 | * dev_put() |
| 734 | */ |
| 735 | } |
| 736 | |
| 737 | xdp->data = xdp->data_meta + xdp_md->data; |
Zvi Effron | 47316f4 | 2021-07-07 22:16:55 +0000 | [diff] [blame] | 738 | return 0; |
Zvi Effron | ec94670 | 2021-07-07 22:16:56 +0000 | [diff] [blame] | 739 | |
| 740 | free_dev: |
| 741 | dev_put(device); |
| 742 | return -EINVAL; |
| 743 | } |
| 744 | |
| 745 | static void xdp_convert_buff_to_md(struct xdp_buff *xdp, struct xdp_md *xdp_md) |
| 746 | { |
| 747 | if (!xdp_md) |
| 748 | return; |
| 749 | |
| 750 | xdp_md->data = xdp->data - xdp->data_meta; |
| 751 | xdp_md->data_end = xdp->data_end - xdp->data_meta; |
| 752 | |
| 753 | if (xdp_md->ingress_ifindex) |
| 754 | dev_put(xdp->rxq->dev); |
Zvi Effron | 47316f4 | 2021-07-07 22:16:55 +0000 | [diff] [blame] | 755 | } |
| 756 | |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 757 | int bpf_prog_test_run_xdp(struct bpf_prog *prog, const union bpf_attr *kattr, |
| 758 | union bpf_attr __user *uattr) |
| 759 | { |
Jesper Dangaard Brouer | bc56c91 | 2020-05-14 12:51:35 +0200 | [diff] [blame] | 760 | u32 tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); |
| 761 | u32 headroom = XDP_PACKET_HEADROOM; |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 762 | u32 size = kattr->test.data_size_in; |
| 763 | u32 repeat = kattr->test.repeat; |
Daniel Borkmann | 65073a6 | 2018-01-31 12:58:56 +0100 | [diff] [blame] | 764 | struct netdev_rx_queue *rxqueue; |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 765 | struct xdp_buff xdp = {}; |
| 766 | u32 retval, duration; |
Zvi Effron | 47316f4 | 2021-07-07 22:16:55 +0000 | [diff] [blame] | 767 | struct xdp_md *ctx; |
Jesper Dangaard Brouer | bc56c91 | 2020-05-14 12:51:35 +0200 | [diff] [blame] | 768 | u32 max_data_sz; |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 769 | void *data; |
Zvi Effron | 47316f4 | 2021-07-07 22:16:55 +0000 | [diff] [blame] | 770 | int ret = -EINVAL; |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 771 | |
Xuan Zhuo | 5e21bb4 | 2021-07-08 16:04:09 +0800 | [diff] [blame] | 772 | if (prog->expected_attach_type == BPF_XDP_DEVMAP || |
| 773 | prog->expected_attach_type == BPF_XDP_CPUMAP) |
| 774 | return -EINVAL; |
Andrii Nakryiko | 6d4eb36 | 2021-08-04 08:37:50 -0700 | [diff] [blame] | 775 | |
Zvi Effron | 47316f4 | 2021-07-07 22:16:55 +0000 | [diff] [blame] | 776 | ctx = bpf_ctx_init(kattr, sizeof(struct xdp_md)); |
| 777 | if (IS_ERR(ctx)) |
| 778 | return PTR_ERR(ctx); |
| 779 | |
| 780 | if (ctx) { |
| 781 | /* There can't be user provided data before the meta data */ |
| 782 | if (ctx->data_meta || ctx->data_end != size || |
| 783 | ctx->data > ctx->data_end || |
| 784 | unlikely(xdp_metalen_invalid(ctx->data))) |
| 785 | goto free_ctx; |
| 786 | /* Meta data is allocated from the headroom */ |
| 787 | headroom -= ctx->data; |
| 788 | } |
Stanislav Fomichev | 947e8b5 | 2019-04-11 15:47:07 -0700 | [diff] [blame] | 789 | |
Jesper Dangaard Brouer | bc56c91 | 2020-05-14 12:51:35 +0200 | [diff] [blame] | 790 | /* XDP have extra tailroom as (most) drivers use full page */ |
| 791 | max_data_sz = 4096 - headroom - tailroom; |
Jesper Dangaard Brouer | bc56c91 | 2020-05-14 12:51:35 +0200 | [diff] [blame] | 792 | |
| 793 | data = bpf_test_init(kattr, max_data_sz, headroom, tailroom); |
Zvi Effron | 47316f4 | 2021-07-07 22:16:55 +0000 | [diff] [blame] | 794 | if (IS_ERR(data)) { |
| 795 | ret = PTR_ERR(data); |
| 796 | goto free_ctx; |
| 797 | } |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 798 | |
Daniel Borkmann | 65073a6 | 2018-01-31 12:58:56 +0100 | [diff] [blame] | 799 | rxqueue = __netif_get_rx_queue(current->nsproxy->net_ns->loopback_dev, 0); |
Lorenzo Bianconi | 43b5169 | 2020-12-22 22:09:28 +0100 | [diff] [blame] | 800 | xdp_init_buff(&xdp, headroom + max_data_sz + tailroom, |
| 801 | &rxqueue->xdp_rxq); |
Lorenzo Bianconi | be9df4a | 2020-12-22 22:09:29 +0100 | [diff] [blame] | 802 | xdp_prepare_buff(&xdp, data, headroom, size, true); |
| 803 | |
Zvi Effron | 47316f4 | 2021-07-07 22:16:55 +0000 | [diff] [blame] | 804 | ret = xdp_convert_md_to_buff(ctx, &xdp); |
| 805 | if (ret) |
| 806 | goto free_data; |
| 807 | |
Lorenz Bauer | de21d8b | 2021-09-28 10:30:59 +0100 | [diff] [blame] | 808 | if (repeat > 1) |
| 809 | bpf_prog_change_xdp(NULL, prog); |
Björn Töpel | f23c4b3 | 2019-12-13 18:51:10 +0100 | [diff] [blame] | 810 | ret = bpf_test_run(prog, &xdp, repeat, &retval, &duration, true); |
Zvi Effron | ec94670 | 2021-07-07 22:16:56 +0000 | [diff] [blame] | 811 | /* We convert the xdp_buff back to an xdp_md before checking the return |
| 812 | * code so the reference count of any held netdevice will be decremented |
| 813 | * even if the test run failed. |
| 814 | */ |
| 815 | xdp_convert_buff_to_md(&xdp, ctx); |
Roman Gushchin | dcb4059 | 2018-12-01 10:39:44 -0800 | [diff] [blame] | 816 | if (ret) |
| 817 | goto out; |
Zvi Effron | 47316f4 | 2021-07-07 22:16:55 +0000 | [diff] [blame] | 818 | |
| 819 | if (xdp.data_meta != data + headroom || |
| 820 | xdp.data_end != xdp.data_meta + size) |
| 821 | size = xdp.data_end - xdp.data_meta; |
| 822 | |
Zvi Effron | 47316f4 | 2021-07-07 22:16:55 +0000 | [diff] [blame] | 823 | ret = bpf_test_finish(kattr, uattr, xdp.data_meta, size, retval, |
| 824 | duration); |
| 825 | if (!ret) |
| 826 | ret = bpf_ctx_finish(kattr, uattr, ctx, |
| 827 | sizeof(struct xdp_md)); |
| 828 | |
Roman Gushchin | dcb4059 | 2018-12-01 10:39:44 -0800 | [diff] [blame] | 829 | out: |
Lorenz Bauer | de21d8b | 2021-09-28 10:30:59 +0100 | [diff] [blame] | 830 | if (repeat > 1) |
| 831 | bpf_prog_change_xdp(prog, NULL); |
Zvi Effron | 47316f4 | 2021-07-07 22:16:55 +0000 | [diff] [blame] | 832 | free_data: |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 833 | kfree(data); |
Zvi Effron | 47316f4 | 2021-07-07 22:16:55 +0000 | [diff] [blame] | 834 | free_ctx: |
| 835 | kfree(ctx); |
Alexei Starovoitov | 1cf1cae | 2017-03-30 21:45:38 -0700 | [diff] [blame] | 836 | return ret; |
| 837 | } |
Stanislav Fomichev | b7a1848 | 2019-01-28 08:53:54 -0800 | [diff] [blame] | 838 | |
Stanislav Fomichev | b2ca4e1 | 2019-07-25 15:52:27 -0700 | [diff] [blame] | 839 | static int verify_user_bpf_flow_keys(struct bpf_flow_keys *ctx) |
| 840 | { |
| 841 | /* make sure the fields we don't use are zeroed */ |
| 842 | if (!range_is_zero(ctx, 0, offsetof(struct bpf_flow_keys, flags))) |
| 843 | return -EINVAL; |
| 844 | |
| 845 | /* flags is allowed */ |
| 846 | |
Stanislav Fomichev | b590cb5 | 2019-12-10 11:19:33 -0800 | [diff] [blame] | 847 | if (!range_is_zero(ctx, offsetofend(struct bpf_flow_keys, flags), |
Stanislav Fomichev | b2ca4e1 | 2019-07-25 15:52:27 -0700 | [diff] [blame] | 848 | sizeof(struct bpf_flow_keys))) |
| 849 | return -EINVAL; |
| 850 | |
| 851 | return 0; |
| 852 | } |
| 853 | |
Stanislav Fomichev | b7a1848 | 2019-01-28 08:53:54 -0800 | [diff] [blame] | 854 | int bpf_prog_test_run_flow_dissector(struct bpf_prog *prog, |
| 855 | const union bpf_attr *kattr, |
| 856 | union bpf_attr __user *uattr) |
| 857 | { |
Lorenz Bauer | 607b9cc | 2021-03-03 10:18:12 +0000 | [diff] [blame] | 858 | struct bpf_test_timer t = { NO_PREEMPT }; |
Stanislav Fomichev | b7a1848 | 2019-01-28 08:53:54 -0800 | [diff] [blame] | 859 | u32 size = kattr->test.data_size_in; |
Stanislav Fomichev | 7b8a130 | 2019-04-22 08:55:45 -0700 | [diff] [blame] | 860 | struct bpf_flow_dissector ctx = {}; |
Stanislav Fomichev | b7a1848 | 2019-01-28 08:53:54 -0800 | [diff] [blame] | 861 | u32 repeat = kattr->test.repeat; |
Stanislav Fomichev | b2ca4e1 | 2019-07-25 15:52:27 -0700 | [diff] [blame] | 862 | struct bpf_flow_keys *user_ctx; |
Stanislav Fomichev | b7a1848 | 2019-01-28 08:53:54 -0800 | [diff] [blame] | 863 | struct bpf_flow_keys flow_keys; |
Stanislav Fomichev | 7b8a130 | 2019-04-22 08:55:45 -0700 | [diff] [blame] | 864 | const struct ethhdr *eth; |
Stanislav Fomichev | b2ca4e1 | 2019-07-25 15:52:27 -0700 | [diff] [blame] | 865 | unsigned int flags = 0; |
Stanislav Fomichev | b7a1848 | 2019-01-28 08:53:54 -0800 | [diff] [blame] | 866 | u32 retval, duration; |
Stanislav Fomichev | b7a1848 | 2019-01-28 08:53:54 -0800 | [diff] [blame] | 867 | void *data; |
| 868 | int ret; |
Stanislav Fomichev | b7a1848 | 2019-01-28 08:53:54 -0800 | [diff] [blame] | 869 | |
| 870 | if (prog->type != BPF_PROG_TYPE_FLOW_DISSECTOR) |
| 871 | return -EINVAL; |
| 872 | |
Song Liu | 1b4d60e | 2020-09-25 13:54:29 -0700 | [diff] [blame] | 873 | if (kattr->test.flags || kattr->test.cpu) |
| 874 | return -EINVAL; |
| 875 | |
Stanislav Fomichev | 7b8a130 | 2019-04-22 08:55:45 -0700 | [diff] [blame] | 876 | if (size < ETH_HLEN) |
| 877 | return -EINVAL; |
| 878 | |
| 879 | data = bpf_test_init(kattr, size, 0, 0); |
Stanislav Fomichev | b7a1848 | 2019-01-28 08:53:54 -0800 | [diff] [blame] | 880 | if (IS_ERR(data)) |
| 881 | return PTR_ERR(data); |
| 882 | |
Stanislav Fomichev | 7b8a130 | 2019-04-22 08:55:45 -0700 | [diff] [blame] | 883 | eth = (struct ethhdr *)data; |
Stanislav Fomichev | b7a1848 | 2019-01-28 08:53:54 -0800 | [diff] [blame] | 884 | |
Stanislav Fomichev | b7a1848 | 2019-01-28 08:53:54 -0800 | [diff] [blame] | 885 | if (!repeat) |
| 886 | repeat = 1; |
| 887 | |
Stanislav Fomichev | b2ca4e1 | 2019-07-25 15:52:27 -0700 | [diff] [blame] | 888 | user_ctx = bpf_ctx_init(kattr, sizeof(struct bpf_flow_keys)); |
| 889 | if (IS_ERR(user_ctx)) { |
| 890 | kfree(data); |
| 891 | return PTR_ERR(user_ctx); |
| 892 | } |
| 893 | if (user_ctx) { |
| 894 | ret = verify_user_bpf_flow_keys(user_ctx); |
| 895 | if (ret) |
| 896 | goto out; |
| 897 | flags = user_ctx->flags; |
| 898 | } |
| 899 | |
Stanislav Fomichev | 7b8a130 | 2019-04-22 08:55:45 -0700 | [diff] [blame] | 900 | ctx.flow_keys = &flow_keys; |
| 901 | ctx.data = data; |
| 902 | ctx.data_end = (__u8 *)data + size; |
| 903 | |
Lorenz Bauer | 607b9cc | 2021-03-03 10:18:12 +0000 | [diff] [blame] | 904 | bpf_test_timer_enter(&t); |
| 905 | do { |
Stanislav Fomichev | 7b8a130 | 2019-04-22 08:55:45 -0700 | [diff] [blame] | 906 | retval = bpf_flow_dissect(prog, &ctx, eth->h_proto, ETH_HLEN, |
Stanislav Fomichev | b2ca4e1 | 2019-07-25 15:52:27 -0700 | [diff] [blame] | 907 | size, flags); |
Lorenz Bauer | 607b9cc | 2021-03-03 10:18:12 +0000 | [diff] [blame] | 908 | } while (bpf_test_timer_continue(&t, repeat, &ret, &duration)); |
| 909 | bpf_test_timer_leave(&t); |
Stanislav Fomichev | 7b8a130 | 2019-04-22 08:55:45 -0700 | [diff] [blame] | 910 | |
Lorenz Bauer | 607b9cc | 2021-03-03 10:18:12 +0000 | [diff] [blame] | 911 | if (ret < 0) |
| 912 | goto out; |
Stanislav Fomichev | b7a1848 | 2019-01-28 08:53:54 -0800 | [diff] [blame] | 913 | |
| 914 | ret = bpf_test_finish(kattr, uattr, &flow_keys, sizeof(flow_keys), |
| 915 | retval, duration); |
Stanislav Fomichev | b2ca4e1 | 2019-07-25 15:52:27 -0700 | [diff] [blame] | 916 | if (!ret) |
| 917 | ret = bpf_ctx_finish(kattr, uattr, user_ctx, |
| 918 | sizeof(struct bpf_flow_keys)); |
Stanislav Fomichev | b7a1848 | 2019-01-28 08:53:54 -0800 | [diff] [blame] | 919 | |
Stanislav Fomichev | a439184 | 2019-02-19 10:54:17 -0800 | [diff] [blame] | 920 | out: |
Stanislav Fomichev | b2ca4e1 | 2019-07-25 15:52:27 -0700 | [diff] [blame] | 921 | kfree(user_ctx); |
Stanislav Fomichev | 7b8a130 | 2019-04-22 08:55:45 -0700 | [diff] [blame] | 922 | kfree(data); |
Stanislav Fomichev | b7a1848 | 2019-01-28 08:53:54 -0800 | [diff] [blame] | 923 | return ret; |
| 924 | } |
Lorenz Bauer | 7c32e8f | 2021-03-03 10:18:13 +0000 | [diff] [blame] | 925 | |
| 926 | int bpf_prog_test_run_sk_lookup(struct bpf_prog *prog, const union bpf_attr *kattr, |
| 927 | union bpf_attr __user *uattr) |
| 928 | { |
| 929 | struct bpf_test_timer t = { NO_PREEMPT }; |
| 930 | struct bpf_prog_array *progs = NULL; |
| 931 | struct bpf_sk_lookup_kern ctx = {}; |
| 932 | u32 repeat = kattr->test.repeat; |
| 933 | struct bpf_sk_lookup *user_ctx; |
| 934 | u32 retval, duration; |
| 935 | int ret = -EINVAL; |
| 936 | |
| 937 | if (prog->type != BPF_PROG_TYPE_SK_LOOKUP) |
| 938 | return -EINVAL; |
| 939 | |
| 940 | if (kattr->test.flags || kattr->test.cpu) |
| 941 | return -EINVAL; |
| 942 | |
| 943 | if (kattr->test.data_in || kattr->test.data_size_in || kattr->test.data_out || |
| 944 | kattr->test.data_size_out) |
| 945 | return -EINVAL; |
| 946 | |
| 947 | if (!repeat) |
| 948 | repeat = 1; |
| 949 | |
| 950 | user_ctx = bpf_ctx_init(kattr, sizeof(*user_ctx)); |
| 951 | if (IS_ERR(user_ctx)) |
| 952 | return PTR_ERR(user_ctx); |
| 953 | |
| 954 | if (!user_ctx) |
| 955 | return -EINVAL; |
| 956 | |
| 957 | if (user_ctx->sk) |
| 958 | goto out; |
| 959 | |
| 960 | if (!range_is_zero(user_ctx, offsetofend(typeof(*user_ctx), local_port), sizeof(*user_ctx))) |
| 961 | goto out; |
| 962 | |
| 963 | if (user_ctx->local_port > U16_MAX || user_ctx->remote_port > U16_MAX) { |
| 964 | ret = -ERANGE; |
| 965 | goto out; |
| 966 | } |
| 967 | |
| 968 | ctx.family = (u16)user_ctx->family; |
| 969 | ctx.protocol = (u16)user_ctx->protocol; |
| 970 | ctx.dport = (u16)user_ctx->local_port; |
| 971 | ctx.sport = (__force __be16)user_ctx->remote_port; |
| 972 | |
| 973 | switch (ctx.family) { |
| 974 | case AF_INET: |
| 975 | ctx.v4.daddr = (__force __be32)user_ctx->local_ip4; |
| 976 | ctx.v4.saddr = (__force __be32)user_ctx->remote_ip4; |
| 977 | break; |
| 978 | |
| 979 | #if IS_ENABLED(CONFIG_IPV6) |
| 980 | case AF_INET6: |
| 981 | ctx.v6.daddr = (struct in6_addr *)user_ctx->local_ip6; |
| 982 | ctx.v6.saddr = (struct in6_addr *)user_ctx->remote_ip6; |
| 983 | break; |
| 984 | #endif |
| 985 | |
| 986 | default: |
| 987 | ret = -EAFNOSUPPORT; |
| 988 | goto out; |
| 989 | } |
| 990 | |
| 991 | progs = bpf_prog_array_alloc(1, GFP_KERNEL); |
| 992 | if (!progs) { |
| 993 | ret = -ENOMEM; |
| 994 | goto out; |
| 995 | } |
| 996 | |
| 997 | progs->items[0].prog = prog; |
| 998 | |
| 999 | bpf_test_timer_enter(&t); |
| 1000 | do { |
| 1001 | ctx.selected_sk = NULL; |
Andrii Nakryiko | fb7dd8b | 2021-08-15 00:05:54 -0700 | [diff] [blame] | 1002 | retval = BPF_PROG_SK_LOOKUP_RUN_ARRAY(progs, ctx, bpf_prog_run); |
Lorenz Bauer | 7c32e8f | 2021-03-03 10:18:13 +0000 | [diff] [blame] | 1003 | } while (bpf_test_timer_continue(&t, repeat, &ret, &duration)); |
| 1004 | bpf_test_timer_leave(&t); |
| 1005 | |
| 1006 | if (ret < 0) |
| 1007 | goto out; |
| 1008 | |
| 1009 | user_ctx->cookie = 0; |
| 1010 | if (ctx.selected_sk) { |
| 1011 | if (ctx.selected_sk->sk_reuseport && !ctx.no_reuseport) { |
| 1012 | ret = -EOPNOTSUPP; |
| 1013 | goto out; |
| 1014 | } |
| 1015 | |
| 1016 | user_ctx->cookie = sock_gen_cookie(ctx.selected_sk); |
| 1017 | } |
| 1018 | |
| 1019 | ret = bpf_test_finish(kattr, uattr, NULL, 0, retval, duration); |
| 1020 | if (!ret) |
| 1021 | ret = bpf_ctx_finish(kattr, uattr, user_ctx, sizeof(*user_ctx)); |
| 1022 | |
| 1023 | out: |
| 1024 | bpf_prog_array_free(progs); |
| 1025 | kfree(user_ctx); |
| 1026 | return ret; |
| 1027 | } |
Alexei Starovoitov | 79a7f8b | 2021-05-13 17:36:03 -0700 | [diff] [blame] | 1028 | |
| 1029 | int bpf_prog_test_run_syscall(struct bpf_prog *prog, |
| 1030 | const union bpf_attr *kattr, |
| 1031 | union bpf_attr __user *uattr) |
| 1032 | { |
| 1033 | void __user *ctx_in = u64_to_user_ptr(kattr->test.ctx_in); |
| 1034 | __u32 ctx_size_in = kattr->test.ctx_size_in; |
| 1035 | void *ctx = NULL; |
| 1036 | u32 retval; |
| 1037 | int err = 0; |
| 1038 | |
| 1039 | /* doesn't support data_in/out, ctx_out, duration, or repeat or flags */ |
| 1040 | if (kattr->test.data_in || kattr->test.data_out || |
| 1041 | kattr->test.ctx_out || kattr->test.duration || |
| 1042 | kattr->test.repeat || kattr->test.flags) |
| 1043 | return -EINVAL; |
| 1044 | |
| 1045 | if (ctx_size_in < prog->aux->max_ctx_offset || |
| 1046 | ctx_size_in > U16_MAX) |
| 1047 | return -EINVAL; |
| 1048 | |
| 1049 | if (ctx_size_in) { |
Qing Wang | db5b6a4 | 2021-10-18 04:30:48 -0700 | [diff] [blame] | 1050 | ctx = memdup_user(ctx_in, ctx_size_in); |
| 1051 | if (IS_ERR(ctx)) |
| 1052 | return PTR_ERR(ctx); |
Alexei Starovoitov | 79a7f8b | 2021-05-13 17:36:03 -0700 | [diff] [blame] | 1053 | } |
Yonghong Song | 87b7b53 | 2021-08-09 16:51:51 -0700 | [diff] [blame] | 1054 | |
| 1055 | rcu_read_lock_trace(); |
Alexei Starovoitov | 79a7f8b | 2021-05-13 17:36:03 -0700 | [diff] [blame] | 1056 | retval = bpf_prog_run_pin_on_cpu(prog, ctx); |
Yonghong Song | 87b7b53 | 2021-08-09 16:51:51 -0700 | [diff] [blame] | 1057 | rcu_read_unlock_trace(); |
Alexei Starovoitov | 79a7f8b | 2021-05-13 17:36:03 -0700 | [diff] [blame] | 1058 | |
| 1059 | if (copy_to_user(&uattr->test.retval, &retval, sizeof(u32))) { |
| 1060 | err = -EFAULT; |
| 1061 | goto out; |
| 1062 | } |
| 1063 | if (ctx_size_in) |
| 1064 | if (copy_to_user(ctx_in, ctx, ctx_size_in)) |
| 1065 | err = -EFAULT; |
| 1066 | out: |
| 1067 | kfree(ctx); |
| 1068 | return err; |
| 1069 | } |