bpf: Guard stack limits against 32bit overflow
[platform/kernel/linux-rpi.git] / kernel / bpf / verifier.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com
3  * Copyright (c) 2016 Facebook
4  * Copyright (c) 2018 Covalent IO, Inc. http://covalent.io
5  */
6 #include <uapi/linux/btf.h>
7 #include <linux/bpf-cgroup.h>
8 #include <linux/kernel.h>
9 #include <linux/types.h>
10 #include <linux/slab.h>
11 #include <linux/bpf.h>
12 #include <linux/btf.h>
13 #include <linux/bpf_verifier.h>
14 #include <linux/filter.h>
15 #include <net/netlink.h>
16 #include <linux/file.h>
17 #include <linux/vmalloc.h>
18 #include <linux/stringify.h>
19 #include <linux/bsearch.h>
20 #include <linux/sort.h>
21 #include <linux/perf_event.h>
22 #include <linux/ctype.h>
23 #include <linux/error-injection.h>
24 #include <linux/bpf_lsm.h>
25 #include <linux/btf_ids.h>
26 #include <linux/poison.h>
27 #include <linux/module.h>
28 #include <linux/cpumask.h>
29 #include <net/xdp.h>
30
31 #include "disasm.h"
32
33 static const struct bpf_verifier_ops * const bpf_verifier_ops[] = {
34 #define BPF_PROG_TYPE(_id, _name, prog_ctx_type, kern_ctx_type) \
35         [_id] = & _name ## _verifier_ops,
36 #define BPF_MAP_TYPE(_id, _ops)
37 #define BPF_LINK_TYPE(_id, _name)
38 #include <linux/bpf_types.h>
39 #undef BPF_PROG_TYPE
40 #undef BPF_MAP_TYPE
41 #undef BPF_LINK_TYPE
42 };
43
44 /* bpf_check() is a static code analyzer that walks eBPF program
45  * instruction by instruction and updates register/stack state.
46  * All paths of conditional branches are analyzed until 'bpf_exit' insn.
47  *
48  * The first pass is depth-first-search to check that the program is a DAG.
49  * It rejects the following programs:
50  * - larger than BPF_MAXINSNS insns
51  * - if loop is present (detected via back-edge)
52  * - unreachable insns exist (shouldn't be a forest. program = one function)
53  * - out of bounds or malformed jumps
54  * The second pass is all possible path descent from the 1st insn.
55  * Since it's analyzing all paths through the program, the length of the
56  * analysis is limited to 64k insn, which may be hit even if total number of
57  * insn is less then 4K, but there are too many branches that change stack/regs.
58  * Number of 'branches to be analyzed' is limited to 1k
59  *
60  * On entry to each instruction, each register has a type, and the instruction
61  * changes the types of the registers depending on instruction semantics.
62  * If instruction is BPF_MOV64_REG(BPF_REG_1, BPF_REG_5), then type of R5 is
63  * copied to R1.
64  *
65  * All registers are 64-bit.
66  * R0 - return register
67  * R1-R5 argument passing registers
68  * R6-R9 callee saved registers
69  * R10 - frame pointer read-only
70  *
71  * At the start of BPF program the register R1 contains a pointer to bpf_context
72  * and has type PTR_TO_CTX.
73  *
74  * Verifier tracks arithmetic operations on pointers in case:
75  *    BPF_MOV64_REG(BPF_REG_1, BPF_REG_10),
76  *    BPF_ALU64_IMM(BPF_ADD, BPF_REG_1, -20),
77  * 1st insn copies R10 (which has FRAME_PTR) type into R1
78  * and 2nd arithmetic instruction is pattern matched to recognize
79  * that it wants to construct a pointer to some element within stack.
80  * So after 2nd insn, the register R1 has type PTR_TO_STACK
81  * (and -20 constant is saved for further stack bounds checking).
82  * Meaning that this reg is a pointer to stack plus known immediate constant.
83  *
84  * Most of the time the registers have SCALAR_VALUE type, which
85  * means the register has some value, but it's not a valid pointer.
86  * (like pointer plus pointer becomes SCALAR_VALUE type)
87  *
88  * When verifier sees load or store instructions the type of base register
89  * can be: PTR_TO_MAP_VALUE, PTR_TO_CTX, PTR_TO_STACK, PTR_TO_SOCKET. These are
90  * four pointer types recognized by check_mem_access() function.
91  *
92  * PTR_TO_MAP_VALUE means that this register is pointing to 'map element value'
93  * and the range of [ptr, ptr + map's value_size) is accessible.
94  *
95  * registers used to pass values to function calls are checked against
96  * function argument constraints.
97  *
98  * ARG_PTR_TO_MAP_KEY is one of such argument constraints.
99  * It means that the register type passed to this function must be
100  * PTR_TO_STACK and it will be used inside the function as
101  * 'pointer to map element key'
102  *
103  * For example the argument constraints for bpf_map_lookup_elem():
104  *   .ret_type = RET_PTR_TO_MAP_VALUE_OR_NULL,
105  *   .arg1_type = ARG_CONST_MAP_PTR,
106  *   .arg2_type = ARG_PTR_TO_MAP_KEY,
107  *
108  * ret_type says that this function returns 'pointer to map elem value or null'
109  * function expects 1st argument to be a const pointer to 'struct bpf_map' and
110  * 2nd argument should be a pointer to stack, which will be used inside
111  * the helper function as a pointer to map element key.
112  *
113  * On the kernel side the helper function looks like:
114  * u64 bpf_map_lookup_elem(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5)
115  * {
116  *    struct bpf_map *map = (struct bpf_map *) (unsigned long) r1;
117  *    void *key = (void *) (unsigned long) r2;
118  *    void *value;
119  *
120  *    here kernel can access 'key' and 'map' pointers safely, knowing that
121  *    [key, key + map->key_size) bytes are valid and were initialized on
122  *    the stack of eBPF program.
123  * }
124  *
125  * Corresponding eBPF program may look like:
126  *    BPF_MOV64_REG(BPF_REG_2, BPF_REG_10),  // after this insn R2 type is FRAME_PTR
127  *    BPF_ALU64_IMM(BPF_ADD, BPF_REG_2, -4), // after this insn R2 type is PTR_TO_STACK
128  *    BPF_LD_MAP_FD(BPF_REG_1, map_fd),      // after this insn R1 type is CONST_PTR_TO_MAP
129  *    BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 0, 0, BPF_FUNC_map_lookup_elem),
130  * here verifier looks at prototype of map_lookup_elem() and sees:
131  * .arg1_type == ARG_CONST_MAP_PTR and R1->type == CONST_PTR_TO_MAP, which is ok,
132  * Now verifier knows that this map has key of R1->map_ptr->key_size bytes
133  *
134  * Then .arg2_type == ARG_PTR_TO_MAP_KEY and R2->type == PTR_TO_STACK, ok so far,
135  * Now verifier checks that [R2, R2 + map's key_size) are within stack limits
136  * and were initialized prior to this call.
137  * If it's ok, then verifier allows this BPF_CALL insn and looks at
138  * .ret_type which is RET_PTR_TO_MAP_VALUE_OR_NULL, so it sets
139  * R0->type = PTR_TO_MAP_VALUE_OR_NULL which means bpf_map_lookup_elem() function
140  * returns either pointer to map value or NULL.
141  *
142  * When type PTR_TO_MAP_VALUE_OR_NULL passes through 'if (reg != 0) goto +off'
143  * insn, the register holding that pointer in the true branch changes state to
144  * PTR_TO_MAP_VALUE and the same register changes state to CONST_IMM in the false
145  * branch. See check_cond_jmp_op().
146  *
147  * After the call R0 is set to return type of the function and registers R1-R5
148  * are set to NOT_INIT to indicate that they are no longer readable.
149  *
150  * The following reference types represent a potential reference to a kernel
151  * resource which, after first being allocated, must be checked and freed by
152  * the BPF program:
153  * - PTR_TO_SOCKET_OR_NULL, PTR_TO_SOCKET
154  *
155  * When the verifier sees a helper call return a reference type, it allocates a
156  * pointer id for the reference and stores it in the current function state.
157  * Similar to the way that PTR_TO_MAP_VALUE_OR_NULL is converted into
158  * PTR_TO_MAP_VALUE, PTR_TO_SOCKET_OR_NULL becomes PTR_TO_SOCKET when the type
159  * passes through a NULL-check conditional. For the branch wherein the state is
160  * changed to CONST_IMM, the verifier releases the reference.
161  *
162  * For each helper function that allocates a reference, such as
163  * bpf_sk_lookup_tcp(), there is a corresponding release function, such as
164  * bpf_sk_release(). When a reference type passes into the release function,
165  * the verifier also releases the reference. If any unchecked or unreleased
166  * reference remains at the end of the program, the verifier rejects it.
167  */
168
169 /* verifier_state + insn_idx are pushed to stack when branch is encountered */
170 struct bpf_verifier_stack_elem {
171         /* verifer state is 'st'
172          * before processing instruction 'insn_idx'
173          * and after processing instruction 'prev_insn_idx'
174          */
175         struct bpf_verifier_state st;
176         int insn_idx;
177         int prev_insn_idx;
178         struct bpf_verifier_stack_elem *next;
179         /* length of verifier log at the time this state was pushed on stack */
180         u32 log_pos;
181 };
182
183 #define BPF_COMPLEXITY_LIMIT_JMP_SEQ    8192
184 #define BPF_COMPLEXITY_LIMIT_STATES     64
185
186 #define BPF_MAP_KEY_POISON      (1ULL << 63)
187 #define BPF_MAP_KEY_SEEN        (1ULL << 62)
188
189 #define BPF_MAP_PTR_UNPRIV      1UL
190 #define BPF_MAP_PTR_POISON      ((void *)((0xeB9FUL << 1) +     \
191                                           POISON_POINTER_DELTA))
192 #define BPF_MAP_PTR(X)          ((struct bpf_map *)((X) & ~BPF_MAP_PTR_UNPRIV))
193
194 static int acquire_reference_state(struct bpf_verifier_env *env, int insn_idx);
195 static int release_reference(struct bpf_verifier_env *env, int ref_obj_id);
196 static void invalidate_non_owning_refs(struct bpf_verifier_env *env);
197 static bool in_rbtree_lock_required_cb(struct bpf_verifier_env *env);
198 static int ref_set_non_owning(struct bpf_verifier_env *env,
199                               struct bpf_reg_state *reg);
200 static void specialize_kfunc(struct bpf_verifier_env *env,
201                              u32 func_id, u16 offset, unsigned long *addr);
202 static bool is_trusted_reg(const struct bpf_reg_state *reg);
203
204 static bool bpf_map_ptr_poisoned(const struct bpf_insn_aux_data *aux)
205 {
206         return BPF_MAP_PTR(aux->map_ptr_state) == BPF_MAP_PTR_POISON;
207 }
208
209 static bool bpf_map_ptr_unpriv(const struct bpf_insn_aux_data *aux)
210 {
211         return aux->map_ptr_state & BPF_MAP_PTR_UNPRIV;
212 }
213
214 static void bpf_map_ptr_store(struct bpf_insn_aux_data *aux,
215                               const struct bpf_map *map, bool unpriv)
216 {
217         BUILD_BUG_ON((unsigned long)BPF_MAP_PTR_POISON & BPF_MAP_PTR_UNPRIV);
218         unpriv |= bpf_map_ptr_unpriv(aux);
219         aux->map_ptr_state = (unsigned long)map |
220                              (unpriv ? BPF_MAP_PTR_UNPRIV : 0UL);
221 }
222
223 static bool bpf_map_key_poisoned(const struct bpf_insn_aux_data *aux)
224 {
225         return aux->map_key_state & BPF_MAP_KEY_POISON;
226 }
227
228 static bool bpf_map_key_unseen(const struct bpf_insn_aux_data *aux)
229 {
230         return !(aux->map_key_state & BPF_MAP_KEY_SEEN);
231 }
232
233 static u64 bpf_map_key_immediate(const struct bpf_insn_aux_data *aux)
234 {
235         return aux->map_key_state & ~(BPF_MAP_KEY_SEEN | BPF_MAP_KEY_POISON);
236 }
237
238 static void bpf_map_key_store(struct bpf_insn_aux_data *aux, u64 state)
239 {
240         bool poisoned = bpf_map_key_poisoned(aux);
241
242         aux->map_key_state = state | BPF_MAP_KEY_SEEN |
243                              (poisoned ? BPF_MAP_KEY_POISON : 0ULL);
244 }
245
246 static bool bpf_helper_call(const struct bpf_insn *insn)
247 {
248         return insn->code == (BPF_JMP | BPF_CALL) &&
249                insn->src_reg == 0;
250 }
251
252 static bool bpf_pseudo_call(const struct bpf_insn *insn)
253 {
254         return insn->code == (BPF_JMP | BPF_CALL) &&
255                insn->src_reg == BPF_PSEUDO_CALL;
256 }
257
258 static bool bpf_pseudo_kfunc_call(const struct bpf_insn *insn)
259 {
260         return insn->code == (BPF_JMP | BPF_CALL) &&
261                insn->src_reg == BPF_PSEUDO_KFUNC_CALL;
262 }
263
264 struct bpf_call_arg_meta {
265         struct bpf_map *map_ptr;
266         bool raw_mode;
267         bool pkt_access;
268         u8 release_regno;
269         int regno;
270         int access_size;
271         int mem_size;
272         u64 msize_max_value;
273         int ref_obj_id;
274         int dynptr_id;
275         int map_uid;
276         int func_id;
277         struct btf *btf;
278         u32 btf_id;
279         struct btf *ret_btf;
280         u32 ret_btf_id;
281         u32 subprogno;
282         struct btf_field *kptr_field;
283 };
284
285 struct bpf_kfunc_call_arg_meta {
286         /* In parameters */
287         struct btf *btf;
288         u32 func_id;
289         u32 kfunc_flags;
290         const struct btf_type *func_proto;
291         const char *func_name;
292         /* Out parameters */
293         u32 ref_obj_id;
294         u8 release_regno;
295         bool r0_rdonly;
296         u32 ret_btf_id;
297         u64 r0_size;
298         u32 subprogno;
299         struct {
300                 u64 value;
301                 bool found;
302         } arg_constant;
303
304         /* arg_{btf,btf_id,owning_ref} are used by kfunc-specific handling,
305          * generally to pass info about user-defined local kptr types to later
306          * verification logic
307          *   bpf_obj_drop
308          *     Record the local kptr type to be drop'd
309          *   bpf_refcount_acquire (via KF_ARG_PTR_TO_REFCOUNTED_KPTR arg type)
310          *     Record the local kptr type to be refcount_incr'd and use
311          *     arg_owning_ref to determine whether refcount_acquire should be
312          *     fallible
313          */
314         struct btf *arg_btf;
315         u32 arg_btf_id;
316         bool arg_owning_ref;
317
318         struct {
319                 struct btf_field *field;
320         } arg_list_head;
321         struct {
322                 struct btf_field *field;
323         } arg_rbtree_root;
324         struct {
325                 enum bpf_dynptr_type type;
326                 u32 id;
327                 u32 ref_obj_id;
328         } initialized_dynptr;
329         struct {
330                 u8 spi;
331                 u8 frameno;
332         } iter;
333         u64 mem_size;
334 };
335
336 struct btf *btf_vmlinux;
337
338 static DEFINE_MUTEX(bpf_verifier_lock);
339
340 static const struct bpf_line_info *
341 find_linfo(const struct bpf_verifier_env *env, u32 insn_off)
342 {
343         const struct bpf_line_info *linfo;
344         const struct bpf_prog *prog;
345         u32 i, nr_linfo;
346
347         prog = env->prog;
348         nr_linfo = prog->aux->nr_linfo;
349
350         if (!nr_linfo || insn_off >= prog->len)
351                 return NULL;
352
353         linfo = prog->aux->linfo;
354         for (i = 1; i < nr_linfo; i++)
355                 if (insn_off < linfo[i].insn_off)
356                         break;
357
358         return &linfo[i - 1];
359 }
360
361 __printf(2, 3) static void verbose(void *private_data, const char *fmt, ...)
362 {
363         struct bpf_verifier_env *env = private_data;
364         va_list args;
365
366         if (!bpf_verifier_log_needed(&env->log))
367                 return;
368
369         va_start(args, fmt);
370         bpf_verifier_vlog(&env->log, fmt, args);
371         va_end(args);
372 }
373
374 static const char *ltrim(const char *s)
375 {
376         while (isspace(*s))
377                 s++;
378
379         return s;
380 }
381
382 __printf(3, 4) static void verbose_linfo(struct bpf_verifier_env *env,
383                                          u32 insn_off,
384                                          const char *prefix_fmt, ...)
385 {
386         const struct bpf_line_info *linfo;
387
388         if (!bpf_verifier_log_needed(&env->log))
389                 return;
390
391         linfo = find_linfo(env, insn_off);
392         if (!linfo || linfo == env->prev_linfo)
393                 return;
394
395         if (prefix_fmt) {
396                 va_list args;
397
398                 va_start(args, prefix_fmt);
399                 bpf_verifier_vlog(&env->log, prefix_fmt, args);
400                 va_end(args);
401         }
402
403         verbose(env, "%s\n",
404                 ltrim(btf_name_by_offset(env->prog->aux->btf,
405                                          linfo->line_off)));
406
407         env->prev_linfo = linfo;
408 }
409
410 static void verbose_invalid_scalar(struct bpf_verifier_env *env,
411                                    struct bpf_reg_state *reg,
412                                    struct tnum *range, const char *ctx,
413                                    const char *reg_name)
414 {
415         char tn_buf[48];
416
417         verbose(env, "At %s the register %s ", ctx, reg_name);
418         if (!tnum_is_unknown(reg->var_off)) {
419                 tnum_strn(tn_buf, sizeof(tn_buf), reg->var_off);
420                 verbose(env, "has value %s", tn_buf);
421         } else {
422                 verbose(env, "has unknown scalar value");
423         }
424         tnum_strn(tn_buf, sizeof(tn_buf), *range);
425         verbose(env, " should have been in %s\n", tn_buf);
426 }
427
428 static bool type_is_pkt_pointer(enum bpf_reg_type type)
429 {
430         type = base_type(type);
431         return type == PTR_TO_PACKET ||
432                type == PTR_TO_PACKET_META;
433 }
434
435 static bool type_is_sk_pointer(enum bpf_reg_type type)
436 {
437         return type == PTR_TO_SOCKET ||
438                 type == PTR_TO_SOCK_COMMON ||
439                 type == PTR_TO_TCP_SOCK ||
440                 type == PTR_TO_XDP_SOCK;
441 }
442
443 static bool type_may_be_null(u32 type)
444 {
445         return type & PTR_MAYBE_NULL;
446 }
447
448 static bool reg_not_null(const struct bpf_reg_state *reg)
449 {
450         enum bpf_reg_type type;
451
452         type = reg->type;
453         if (type_may_be_null(type))
454                 return false;
455
456         type = base_type(type);
457         return type == PTR_TO_SOCKET ||
458                 type == PTR_TO_TCP_SOCK ||
459                 type == PTR_TO_MAP_VALUE ||
460                 type == PTR_TO_MAP_KEY ||
461                 type == PTR_TO_SOCK_COMMON ||
462                 (type == PTR_TO_BTF_ID && is_trusted_reg(reg)) ||
463                 type == PTR_TO_MEM;
464 }
465
466 static bool type_is_ptr_alloc_obj(u32 type)
467 {
468         return base_type(type) == PTR_TO_BTF_ID && type_flag(type) & MEM_ALLOC;
469 }
470
471 static bool type_is_non_owning_ref(u32 type)
472 {
473         return type_is_ptr_alloc_obj(type) && type_flag(type) & NON_OWN_REF;
474 }
475
476 static struct btf_record *reg_btf_record(const struct bpf_reg_state *reg)
477 {
478         struct btf_record *rec = NULL;
479         struct btf_struct_meta *meta;
480
481         if (reg->type == PTR_TO_MAP_VALUE) {
482                 rec = reg->map_ptr->record;
483         } else if (type_is_ptr_alloc_obj(reg->type)) {
484                 meta = btf_find_struct_meta(reg->btf, reg->btf_id);
485                 if (meta)
486                         rec = meta->record;
487         }
488         return rec;
489 }
490
491 static bool subprog_is_global(const struct bpf_verifier_env *env, int subprog)
492 {
493         struct bpf_func_info_aux *aux = env->prog->aux->func_info_aux;
494
495         return aux && aux[subprog].linkage == BTF_FUNC_GLOBAL;
496 }
497
498 static bool reg_may_point_to_spin_lock(const struct bpf_reg_state *reg)
499 {
500         return btf_record_has_field(reg_btf_record(reg), BPF_SPIN_LOCK);
501 }
502
503 static bool type_is_rdonly_mem(u32 type)
504 {
505         return type & MEM_RDONLY;
506 }
507
508 static bool is_acquire_function(enum bpf_func_id func_id,
509                                 const struct bpf_map *map)
510 {
511         enum bpf_map_type map_type = map ? map->map_type : BPF_MAP_TYPE_UNSPEC;
512
513         if (func_id == BPF_FUNC_sk_lookup_tcp ||
514             func_id == BPF_FUNC_sk_lookup_udp ||
515             func_id == BPF_FUNC_skc_lookup_tcp ||
516             func_id == BPF_FUNC_ringbuf_reserve ||
517             func_id == BPF_FUNC_kptr_xchg)
518                 return true;
519
520         if (func_id == BPF_FUNC_map_lookup_elem &&
521             (map_type == BPF_MAP_TYPE_SOCKMAP ||
522              map_type == BPF_MAP_TYPE_SOCKHASH))
523                 return true;
524
525         return false;
526 }
527
528 static bool is_ptr_cast_function(enum bpf_func_id func_id)
529 {
530         return func_id == BPF_FUNC_tcp_sock ||
531                 func_id == BPF_FUNC_sk_fullsock ||
532                 func_id == BPF_FUNC_skc_to_tcp_sock ||
533                 func_id == BPF_FUNC_skc_to_tcp6_sock ||
534                 func_id == BPF_FUNC_skc_to_udp6_sock ||
535                 func_id == BPF_FUNC_skc_to_mptcp_sock ||
536                 func_id == BPF_FUNC_skc_to_tcp_timewait_sock ||
537                 func_id == BPF_FUNC_skc_to_tcp_request_sock;
538 }
539
540 static bool is_dynptr_ref_function(enum bpf_func_id func_id)
541 {
542         return func_id == BPF_FUNC_dynptr_data;
543 }
544
545 static bool is_callback_calling_kfunc(u32 btf_id);
546
547 static bool is_callback_calling_function(enum bpf_func_id func_id)
548 {
549         return func_id == BPF_FUNC_for_each_map_elem ||
550                func_id == BPF_FUNC_timer_set_callback ||
551                func_id == BPF_FUNC_find_vma ||
552                func_id == BPF_FUNC_loop ||
553                func_id == BPF_FUNC_user_ringbuf_drain;
554 }
555
556 static bool is_async_callback_calling_function(enum bpf_func_id func_id)
557 {
558         return func_id == BPF_FUNC_timer_set_callback;
559 }
560
561 static bool is_storage_get_function(enum bpf_func_id func_id)
562 {
563         return func_id == BPF_FUNC_sk_storage_get ||
564                func_id == BPF_FUNC_inode_storage_get ||
565                func_id == BPF_FUNC_task_storage_get ||
566                func_id == BPF_FUNC_cgrp_storage_get;
567 }
568
569 static bool helper_multiple_ref_obj_use(enum bpf_func_id func_id,
570                                         const struct bpf_map *map)
571 {
572         int ref_obj_uses = 0;
573
574         if (is_ptr_cast_function(func_id))
575                 ref_obj_uses++;
576         if (is_acquire_function(func_id, map))
577                 ref_obj_uses++;
578         if (is_dynptr_ref_function(func_id))
579                 ref_obj_uses++;
580
581         return ref_obj_uses > 1;
582 }
583
584 static bool is_cmpxchg_insn(const struct bpf_insn *insn)
585 {
586         return BPF_CLASS(insn->code) == BPF_STX &&
587                BPF_MODE(insn->code) == BPF_ATOMIC &&
588                insn->imm == BPF_CMPXCHG;
589 }
590
591 /* string representation of 'enum bpf_reg_type'
592  *
593  * Note that reg_type_str() can not appear more than once in a single verbose()
594  * statement.
595  */
596 static const char *reg_type_str(struct bpf_verifier_env *env,
597                                 enum bpf_reg_type type)
598 {
599         char postfix[16] = {0}, prefix[64] = {0};
600         static const char * const str[] = {
601                 [NOT_INIT]              = "?",
602                 [SCALAR_VALUE]          = "scalar",
603                 [PTR_TO_CTX]            = "ctx",
604                 [CONST_PTR_TO_MAP]      = "map_ptr",
605                 [PTR_TO_MAP_VALUE]      = "map_value",
606                 [PTR_TO_STACK]          = "fp",
607                 [PTR_TO_PACKET]         = "pkt",
608                 [PTR_TO_PACKET_META]    = "pkt_meta",
609                 [PTR_TO_PACKET_END]     = "pkt_end",
610                 [PTR_TO_FLOW_KEYS]      = "flow_keys",
611                 [PTR_TO_SOCKET]         = "sock",
612                 [PTR_TO_SOCK_COMMON]    = "sock_common",
613                 [PTR_TO_TCP_SOCK]       = "tcp_sock",
614                 [PTR_TO_TP_BUFFER]      = "tp_buffer",
615                 [PTR_TO_XDP_SOCK]       = "xdp_sock",
616                 [PTR_TO_BTF_ID]         = "ptr_",
617                 [PTR_TO_MEM]            = "mem",
618                 [PTR_TO_BUF]            = "buf",
619                 [PTR_TO_FUNC]           = "func",
620                 [PTR_TO_MAP_KEY]        = "map_key",
621                 [CONST_PTR_TO_DYNPTR]   = "dynptr_ptr",
622         };
623
624         if (type & PTR_MAYBE_NULL) {
625                 if (base_type(type) == PTR_TO_BTF_ID)
626                         strncpy(postfix, "or_null_", 16);
627                 else
628                         strncpy(postfix, "_or_null", 16);
629         }
630
631         snprintf(prefix, sizeof(prefix), "%s%s%s%s%s%s%s",
632                  type & MEM_RDONLY ? "rdonly_" : "",
633                  type & MEM_RINGBUF ? "ringbuf_" : "",
634                  type & MEM_USER ? "user_" : "",
635                  type & MEM_PERCPU ? "percpu_" : "",
636                  type & MEM_RCU ? "rcu_" : "",
637                  type & PTR_UNTRUSTED ? "untrusted_" : "",
638                  type & PTR_TRUSTED ? "trusted_" : ""
639         );
640
641         snprintf(env->tmp_str_buf, TMP_STR_BUF_LEN, "%s%s%s",
642                  prefix, str[base_type(type)], postfix);
643         return env->tmp_str_buf;
644 }
645
646 static char slot_type_char[] = {
647         [STACK_INVALID] = '?',
648         [STACK_SPILL]   = 'r',
649         [STACK_MISC]    = 'm',
650         [STACK_ZERO]    = '0',
651         [STACK_DYNPTR]  = 'd',
652         [STACK_ITER]    = 'i',
653 };
654
655 static void print_liveness(struct bpf_verifier_env *env,
656                            enum bpf_reg_liveness live)
657 {
658         if (live & (REG_LIVE_READ | REG_LIVE_WRITTEN | REG_LIVE_DONE))
659             verbose(env, "_");
660         if (live & REG_LIVE_READ)
661                 verbose(env, "r");
662         if (live & REG_LIVE_WRITTEN)
663                 verbose(env, "w");
664         if (live & REG_LIVE_DONE)
665                 verbose(env, "D");
666 }
667
668 static int __get_spi(s32 off)
669 {
670         return (-off - 1) / BPF_REG_SIZE;
671 }
672
673 static struct bpf_func_state *func(struct bpf_verifier_env *env,
674                                    const struct bpf_reg_state *reg)
675 {
676         struct bpf_verifier_state *cur = env->cur_state;
677
678         return cur->frame[reg->frameno];
679 }
680
681 static bool is_spi_bounds_valid(struct bpf_func_state *state, int spi, int nr_slots)
682 {
683        int allocated_slots = state->allocated_stack / BPF_REG_SIZE;
684
685        /* We need to check that slots between [spi - nr_slots + 1, spi] are
686         * within [0, allocated_stack).
687         *
688         * Please note that the spi grows downwards. For example, a dynptr
689         * takes the size of two stack slots; the first slot will be at
690         * spi and the second slot will be at spi - 1.
691         */
692        return spi - nr_slots + 1 >= 0 && spi < allocated_slots;
693 }
694
695 static int stack_slot_obj_get_spi(struct bpf_verifier_env *env, struct bpf_reg_state *reg,
696                                   const char *obj_kind, int nr_slots)
697 {
698         int off, spi;
699
700         if (!tnum_is_const(reg->var_off)) {
701                 verbose(env, "%s has to be at a constant offset\n", obj_kind);
702                 return -EINVAL;
703         }
704
705         off = reg->off + reg->var_off.value;
706         if (off % BPF_REG_SIZE) {
707                 verbose(env, "cannot pass in %s at an offset=%d\n", obj_kind, off);
708                 return -EINVAL;
709         }
710
711         spi = __get_spi(off);
712         if (spi + 1 < nr_slots) {
713                 verbose(env, "cannot pass in %s at an offset=%d\n", obj_kind, off);
714                 return -EINVAL;
715         }
716
717         if (!is_spi_bounds_valid(func(env, reg), spi, nr_slots))
718                 return -ERANGE;
719         return spi;
720 }
721
722 static int dynptr_get_spi(struct bpf_verifier_env *env, struct bpf_reg_state *reg)
723 {
724         return stack_slot_obj_get_spi(env, reg, "dynptr", BPF_DYNPTR_NR_SLOTS);
725 }
726
727 static int iter_get_spi(struct bpf_verifier_env *env, struct bpf_reg_state *reg, int nr_slots)
728 {
729         return stack_slot_obj_get_spi(env, reg, "iter", nr_slots);
730 }
731
732 static const char *btf_type_name(const struct btf *btf, u32 id)
733 {
734         return btf_name_by_offset(btf, btf_type_by_id(btf, id)->name_off);
735 }
736
737 static const char *dynptr_type_str(enum bpf_dynptr_type type)
738 {
739         switch (type) {
740         case BPF_DYNPTR_TYPE_LOCAL:
741                 return "local";
742         case BPF_DYNPTR_TYPE_RINGBUF:
743                 return "ringbuf";
744         case BPF_DYNPTR_TYPE_SKB:
745                 return "skb";
746         case BPF_DYNPTR_TYPE_XDP:
747                 return "xdp";
748         case BPF_DYNPTR_TYPE_INVALID:
749                 return "<invalid>";
750         default:
751                 WARN_ONCE(1, "unknown dynptr type %d\n", type);
752                 return "<unknown>";
753         }
754 }
755
756 static const char *iter_type_str(const struct btf *btf, u32 btf_id)
757 {
758         if (!btf || btf_id == 0)
759                 return "<invalid>";
760
761         /* we already validated that type is valid and has conforming name */
762         return btf_type_name(btf, btf_id) + sizeof(ITER_PREFIX) - 1;
763 }
764
765 static const char *iter_state_str(enum bpf_iter_state state)
766 {
767         switch (state) {
768         case BPF_ITER_STATE_ACTIVE:
769                 return "active";
770         case BPF_ITER_STATE_DRAINED:
771                 return "drained";
772         case BPF_ITER_STATE_INVALID:
773                 return "<invalid>";
774         default:
775                 WARN_ONCE(1, "unknown iter state %d\n", state);
776                 return "<unknown>";
777         }
778 }
779
780 static void mark_reg_scratched(struct bpf_verifier_env *env, u32 regno)
781 {
782         env->scratched_regs |= 1U << regno;
783 }
784
785 static void mark_stack_slot_scratched(struct bpf_verifier_env *env, u32 spi)
786 {
787         env->scratched_stack_slots |= 1ULL << spi;
788 }
789
790 static bool reg_scratched(const struct bpf_verifier_env *env, u32 regno)
791 {
792         return (env->scratched_regs >> regno) & 1;
793 }
794
795 static bool stack_slot_scratched(const struct bpf_verifier_env *env, u64 regno)
796 {
797         return (env->scratched_stack_slots >> regno) & 1;
798 }
799
800 static bool verifier_state_scratched(const struct bpf_verifier_env *env)
801 {
802         return env->scratched_regs || env->scratched_stack_slots;
803 }
804
805 static void mark_verifier_state_clean(struct bpf_verifier_env *env)
806 {
807         env->scratched_regs = 0U;
808         env->scratched_stack_slots = 0ULL;
809 }
810
811 /* Used for printing the entire verifier state. */
812 static void mark_verifier_state_scratched(struct bpf_verifier_env *env)
813 {
814         env->scratched_regs = ~0U;
815         env->scratched_stack_slots = ~0ULL;
816 }
817
818 static enum bpf_dynptr_type arg_to_dynptr_type(enum bpf_arg_type arg_type)
819 {
820         switch (arg_type & DYNPTR_TYPE_FLAG_MASK) {
821         case DYNPTR_TYPE_LOCAL:
822                 return BPF_DYNPTR_TYPE_LOCAL;
823         case DYNPTR_TYPE_RINGBUF:
824                 return BPF_DYNPTR_TYPE_RINGBUF;
825         case DYNPTR_TYPE_SKB:
826                 return BPF_DYNPTR_TYPE_SKB;
827         case DYNPTR_TYPE_XDP:
828                 return BPF_DYNPTR_TYPE_XDP;
829         default:
830                 return BPF_DYNPTR_TYPE_INVALID;
831         }
832 }
833
834 static enum bpf_type_flag get_dynptr_type_flag(enum bpf_dynptr_type type)
835 {
836         switch (type) {
837         case BPF_DYNPTR_TYPE_LOCAL:
838                 return DYNPTR_TYPE_LOCAL;
839         case BPF_DYNPTR_TYPE_RINGBUF:
840                 return DYNPTR_TYPE_RINGBUF;
841         case BPF_DYNPTR_TYPE_SKB:
842                 return DYNPTR_TYPE_SKB;
843         case BPF_DYNPTR_TYPE_XDP:
844                 return DYNPTR_TYPE_XDP;
845         default:
846                 return 0;
847         }
848 }
849
850 static bool dynptr_type_refcounted(enum bpf_dynptr_type type)
851 {
852         return type == BPF_DYNPTR_TYPE_RINGBUF;
853 }
854
855 static void __mark_dynptr_reg(struct bpf_reg_state *reg,
856                               enum bpf_dynptr_type type,
857                               bool first_slot, int dynptr_id);
858
859 static void __mark_reg_not_init(const struct bpf_verifier_env *env,
860                                 struct bpf_reg_state *reg);
861
862 static void mark_dynptr_stack_regs(struct bpf_verifier_env *env,
863                                    struct bpf_reg_state *sreg1,
864                                    struct bpf_reg_state *sreg2,
865                                    enum bpf_dynptr_type type)
866 {
867         int id = ++env->id_gen;
868
869         __mark_dynptr_reg(sreg1, type, true, id);
870         __mark_dynptr_reg(sreg2, type, false, id);
871 }
872
873 static void mark_dynptr_cb_reg(struct bpf_verifier_env *env,
874                                struct bpf_reg_state *reg,
875                                enum bpf_dynptr_type type)
876 {
877         __mark_dynptr_reg(reg, type, true, ++env->id_gen);
878 }
879
880 static int destroy_if_dynptr_stack_slot(struct bpf_verifier_env *env,
881                                         struct bpf_func_state *state, int spi);
882
883 static int mark_stack_slots_dynptr(struct bpf_verifier_env *env, struct bpf_reg_state *reg,
884                                    enum bpf_arg_type arg_type, int insn_idx, int clone_ref_obj_id)
885 {
886         struct bpf_func_state *state = func(env, reg);
887         enum bpf_dynptr_type type;
888         int spi, i, err;
889
890         spi = dynptr_get_spi(env, reg);
891         if (spi < 0)
892                 return spi;
893
894         /* We cannot assume both spi and spi - 1 belong to the same dynptr,
895          * hence we need to call destroy_if_dynptr_stack_slot twice for both,
896          * to ensure that for the following example:
897          *      [d1][d1][d2][d2]
898          * spi    3   2   1   0
899          * So marking spi = 2 should lead to destruction of both d1 and d2. In
900          * case they do belong to same dynptr, second call won't see slot_type
901          * as STACK_DYNPTR and will simply skip destruction.
902          */
903         err = destroy_if_dynptr_stack_slot(env, state, spi);
904         if (err)
905                 return err;
906         err = destroy_if_dynptr_stack_slot(env, state, spi - 1);
907         if (err)
908                 return err;
909
910         for (i = 0; i < BPF_REG_SIZE; i++) {
911                 state->stack[spi].slot_type[i] = STACK_DYNPTR;
912                 state->stack[spi - 1].slot_type[i] = STACK_DYNPTR;
913         }
914
915         type = arg_to_dynptr_type(arg_type);
916         if (type == BPF_DYNPTR_TYPE_INVALID)
917                 return -EINVAL;
918
919         mark_dynptr_stack_regs(env, &state->stack[spi].spilled_ptr,
920                                &state->stack[spi - 1].spilled_ptr, type);
921
922         if (dynptr_type_refcounted(type)) {
923                 /* The id is used to track proper releasing */
924                 int id;
925
926                 if (clone_ref_obj_id)
927                         id = clone_ref_obj_id;
928                 else
929                         id = acquire_reference_state(env, insn_idx);
930
931                 if (id < 0)
932                         return id;
933
934                 state->stack[spi].spilled_ptr.ref_obj_id = id;
935                 state->stack[spi - 1].spilled_ptr.ref_obj_id = id;
936         }
937
938         state->stack[spi].spilled_ptr.live |= REG_LIVE_WRITTEN;
939         state->stack[spi - 1].spilled_ptr.live |= REG_LIVE_WRITTEN;
940
941         return 0;
942 }
943
944 static void invalidate_dynptr(struct bpf_verifier_env *env, struct bpf_func_state *state, int spi)
945 {
946         int i;
947
948         for (i = 0; i < BPF_REG_SIZE; i++) {
949                 state->stack[spi].slot_type[i] = STACK_INVALID;
950                 state->stack[spi - 1].slot_type[i] = STACK_INVALID;
951         }
952
953         __mark_reg_not_init(env, &state->stack[spi].spilled_ptr);
954         __mark_reg_not_init(env, &state->stack[spi - 1].spilled_ptr);
955
956         /* Why do we need to set REG_LIVE_WRITTEN for STACK_INVALID slot?
957          *
958          * While we don't allow reading STACK_INVALID, it is still possible to
959          * do <8 byte writes marking some but not all slots as STACK_MISC. Then,
960          * helpers or insns can do partial read of that part without failing,
961          * but check_stack_range_initialized, check_stack_read_var_off, and
962          * check_stack_read_fixed_off will do mark_reg_read for all 8-bytes of
963          * the slot conservatively. Hence we need to prevent those liveness
964          * marking walks.
965          *
966          * This was not a problem before because STACK_INVALID is only set by
967          * default (where the default reg state has its reg->parent as NULL), or
968          * in clean_live_states after REG_LIVE_DONE (at which point
969          * mark_reg_read won't walk reg->parent chain), but not randomly during
970          * verifier state exploration (like we did above). Hence, for our case
971          * parentage chain will still be live (i.e. reg->parent may be
972          * non-NULL), while earlier reg->parent was NULL, so we need
973          * REG_LIVE_WRITTEN to screen off read marker propagation when it is
974          * done later on reads or by mark_dynptr_read as well to unnecessary
975          * mark registers in verifier state.
976          */
977         state->stack[spi].spilled_ptr.live |= REG_LIVE_WRITTEN;
978         state->stack[spi - 1].spilled_ptr.live |= REG_LIVE_WRITTEN;
979 }
980
981 static int unmark_stack_slots_dynptr(struct bpf_verifier_env *env, struct bpf_reg_state *reg)
982 {
983         struct bpf_func_state *state = func(env, reg);
984         int spi, ref_obj_id, i;
985
986         spi = dynptr_get_spi(env, reg);
987         if (spi < 0)
988                 return spi;
989
990         if (!dynptr_type_refcounted(state->stack[spi].spilled_ptr.dynptr.type)) {
991                 invalidate_dynptr(env, state, spi);
992                 return 0;
993         }
994
995         ref_obj_id = state->stack[spi].spilled_ptr.ref_obj_id;
996
997         /* If the dynptr has a ref_obj_id, then we need to invalidate
998          * two things:
999          *
1000          * 1) Any dynptrs with a matching ref_obj_id (clones)
1001          * 2) Any slices derived from this dynptr.
1002          */
1003
1004         /* Invalidate any slices associated with this dynptr */
1005         WARN_ON_ONCE(release_reference(env, ref_obj_id));
1006
1007         /* Invalidate any dynptr clones */
1008         for (i = 1; i < state->allocated_stack / BPF_REG_SIZE; i++) {
1009                 if (state->stack[i].spilled_ptr.ref_obj_id != ref_obj_id)
1010                         continue;
1011
1012                 /* it should always be the case that if the ref obj id
1013                  * matches then the stack slot also belongs to a
1014                  * dynptr
1015                  */
1016                 if (state->stack[i].slot_type[0] != STACK_DYNPTR) {
1017                         verbose(env, "verifier internal error: misconfigured ref_obj_id\n");
1018                         return -EFAULT;
1019                 }
1020                 if (state->stack[i].spilled_ptr.dynptr.first_slot)
1021                         invalidate_dynptr(env, state, i);
1022         }
1023
1024         return 0;
1025 }
1026
1027 static void __mark_reg_unknown(const struct bpf_verifier_env *env,
1028                                struct bpf_reg_state *reg);
1029
1030 static void mark_reg_invalid(const struct bpf_verifier_env *env, struct bpf_reg_state *reg)
1031 {
1032         if (!env->allow_ptr_leaks)
1033                 __mark_reg_not_init(env, reg);
1034         else
1035                 __mark_reg_unknown(env, reg);
1036 }
1037
1038 static int destroy_if_dynptr_stack_slot(struct bpf_verifier_env *env,
1039                                         struct bpf_func_state *state, int spi)
1040 {
1041         struct bpf_func_state *fstate;
1042         struct bpf_reg_state *dreg;
1043         int i, dynptr_id;
1044
1045         /* We always ensure that STACK_DYNPTR is never set partially,
1046          * hence just checking for slot_type[0] is enough. This is
1047          * different for STACK_SPILL, where it may be only set for
1048          * 1 byte, so code has to use is_spilled_reg.
1049          */
1050         if (state->stack[spi].slot_type[0] != STACK_DYNPTR)
1051                 return 0;
1052
1053         /* Reposition spi to first slot */
1054         if (!state->stack[spi].spilled_ptr.dynptr.first_slot)
1055                 spi = spi + 1;
1056
1057         if (dynptr_type_refcounted(state->stack[spi].spilled_ptr.dynptr.type)) {
1058                 verbose(env, "cannot overwrite referenced dynptr\n");
1059                 return -EINVAL;
1060         }
1061
1062         mark_stack_slot_scratched(env, spi);
1063         mark_stack_slot_scratched(env, spi - 1);
1064
1065         /* Writing partially to one dynptr stack slot destroys both. */
1066         for (i = 0; i < BPF_REG_SIZE; i++) {
1067                 state->stack[spi].slot_type[i] = STACK_INVALID;
1068                 state->stack[spi - 1].slot_type[i] = STACK_INVALID;
1069         }
1070
1071         dynptr_id = state->stack[spi].spilled_ptr.id;
1072         /* Invalidate any slices associated with this dynptr */
1073         bpf_for_each_reg_in_vstate(env->cur_state, fstate, dreg, ({
1074                 /* Dynptr slices are only PTR_TO_MEM_OR_NULL and PTR_TO_MEM */
1075                 if (dreg->type != (PTR_TO_MEM | PTR_MAYBE_NULL) && dreg->type != PTR_TO_MEM)
1076                         continue;
1077                 if (dreg->dynptr_id == dynptr_id)
1078                         mark_reg_invalid(env, dreg);
1079         }));
1080
1081         /* Do not release reference state, we are destroying dynptr on stack,
1082          * not using some helper to release it. Just reset register.
1083          */
1084         __mark_reg_not_init(env, &state->stack[spi].spilled_ptr);
1085         __mark_reg_not_init(env, &state->stack[spi - 1].spilled_ptr);
1086
1087         /* Same reason as unmark_stack_slots_dynptr above */
1088         state->stack[spi].spilled_ptr.live |= REG_LIVE_WRITTEN;
1089         state->stack[spi - 1].spilled_ptr.live |= REG_LIVE_WRITTEN;
1090
1091         return 0;
1092 }
1093
1094 static bool is_dynptr_reg_valid_uninit(struct bpf_verifier_env *env, struct bpf_reg_state *reg)
1095 {
1096         int spi;
1097
1098         if (reg->type == CONST_PTR_TO_DYNPTR)
1099                 return false;
1100
1101         spi = dynptr_get_spi(env, reg);
1102
1103         /* -ERANGE (i.e. spi not falling into allocated stack slots) isn't an
1104          * error because this just means the stack state hasn't been updated yet.
1105          * We will do check_mem_access to check and update stack bounds later.
1106          */
1107         if (spi < 0 && spi != -ERANGE)
1108                 return false;
1109
1110         /* We don't need to check if the stack slots are marked by previous
1111          * dynptr initializations because we allow overwriting existing unreferenced
1112          * STACK_DYNPTR slots, see mark_stack_slots_dynptr which calls
1113          * destroy_if_dynptr_stack_slot to ensure dynptr objects at the slots we are
1114          * touching are completely destructed before we reinitialize them for a new
1115          * one. For referenced ones, destroy_if_dynptr_stack_slot returns an error early
1116          * instead of delaying it until the end where the user will get "Unreleased
1117          * reference" error.
1118          */
1119         return true;
1120 }
1121
1122 static bool is_dynptr_reg_valid_init(struct bpf_verifier_env *env, struct bpf_reg_state *reg)
1123 {
1124         struct bpf_func_state *state = func(env, reg);
1125         int i, spi;
1126
1127         /* This already represents first slot of initialized bpf_dynptr.
1128          *
1129          * CONST_PTR_TO_DYNPTR already has fixed and var_off as 0 due to
1130          * check_func_arg_reg_off's logic, so we don't need to check its
1131          * offset and alignment.
1132          */
1133         if (reg->type == CONST_PTR_TO_DYNPTR)
1134                 return true;
1135
1136         spi = dynptr_get_spi(env, reg);
1137         if (spi < 0)
1138                 return false;
1139         if (!state->stack[spi].spilled_ptr.dynptr.first_slot)
1140                 return false;
1141
1142         for (i = 0; i < BPF_REG_SIZE; i++) {
1143                 if (state->stack[spi].slot_type[i] != STACK_DYNPTR ||
1144                     state->stack[spi - 1].slot_type[i] != STACK_DYNPTR)
1145                         return false;
1146         }
1147
1148         return true;
1149 }
1150
1151 static bool is_dynptr_type_expected(struct bpf_verifier_env *env, struct bpf_reg_state *reg,
1152                                     enum bpf_arg_type arg_type)
1153 {
1154         struct bpf_func_state *state = func(env, reg);
1155         enum bpf_dynptr_type dynptr_type;
1156         int spi;
1157
1158         /* ARG_PTR_TO_DYNPTR takes any type of dynptr */
1159         if (arg_type == ARG_PTR_TO_DYNPTR)
1160                 return true;
1161
1162         dynptr_type = arg_to_dynptr_type(arg_type);
1163         if (reg->type == CONST_PTR_TO_DYNPTR) {
1164                 return reg->dynptr.type == dynptr_type;
1165         } else {
1166                 spi = dynptr_get_spi(env, reg);
1167                 if (spi < 0)
1168                         return false;
1169                 return state->stack[spi].spilled_ptr.dynptr.type == dynptr_type;
1170         }
1171 }
1172
1173 static void __mark_reg_known_zero(struct bpf_reg_state *reg);
1174
1175 static int mark_stack_slots_iter(struct bpf_verifier_env *env,
1176                                  struct bpf_reg_state *reg, int insn_idx,
1177                                  struct btf *btf, u32 btf_id, int nr_slots)
1178 {
1179         struct bpf_func_state *state = func(env, reg);
1180         int spi, i, j, id;
1181
1182         spi = iter_get_spi(env, reg, nr_slots);
1183         if (spi < 0)
1184                 return spi;
1185
1186         id = acquire_reference_state(env, insn_idx);
1187         if (id < 0)
1188                 return id;
1189
1190         for (i = 0; i < nr_slots; i++) {
1191                 struct bpf_stack_state *slot = &state->stack[spi - i];
1192                 struct bpf_reg_state *st = &slot->spilled_ptr;
1193
1194                 __mark_reg_known_zero(st);
1195                 st->type = PTR_TO_STACK; /* we don't have dedicated reg type */
1196                 st->live |= REG_LIVE_WRITTEN;
1197                 st->ref_obj_id = i == 0 ? id : 0;
1198                 st->iter.btf = btf;
1199                 st->iter.btf_id = btf_id;
1200                 st->iter.state = BPF_ITER_STATE_ACTIVE;
1201                 st->iter.depth = 0;
1202
1203                 for (j = 0; j < BPF_REG_SIZE; j++)
1204                         slot->slot_type[j] = STACK_ITER;
1205
1206                 mark_stack_slot_scratched(env, spi - i);
1207         }
1208
1209         return 0;
1210 }
1211
1212 static int unmark_stack_slots_iter(struct bpf_verifier_env *env,
1213                                    struct bpf_reg_state *reg, int nr_slots)
1214 {
1215         struct bpf_func_state *state = func(env, reg);
1216         int spi, i, j;
1217
1218         spi = iter_get_spi(env, reg, nr_slots);
1219         if (spi < 0)
1220                 return spi;
1221
1222         for (i = 0; i < nr_slots; i++) {
1223                 struct bpf_stack_state *slot = &state->stack[spi - i];
1224                 struct bpf_reg_state *st = &slot->spilled_ptr;
1225
1226                 if (i == 0)
1227                         WARN_ON_ONCE(release_reference(env, st->ref_obj_id));
1228
1229                 __mark_reg_not_init(env, st);
1230
1231                 /* see unmark_stack_slots_dynptr() for why we need to set REG_LIVE_WRITTEN */
1232                 st->live |= REG_LIVE_WRITTEN;
1233
1234                 for (j = 0; j < BPF_REG_SIZE; j++)
1235                         slot->slot_type[j] = STACK_INVALID;
1236
1237                 mark_stack_slot_scratched(env, spi - i);
1238         }
1239
1240         return 0;
1241 }
1242
1243 static bool is_iter_reg_valid_uninit(struct bpf_verifier_env *env,
1244                                      struct bpf_reg_state *reg, int nr_slots)
1245 {
1246         struct bpf_func_state *state = func(env, reg);
1247         int spi, i, j;
1248
1249         /* For -ERANGE (i.e. spi not falling into allocated stack slots), we
1250          * will do check_mem_access to check and update stack bounds later, so
1251          * return true for that case.
1252          */
1253         spi = iter_get_spi(env, reg, nr_slots);
1254         if (spi == -ERANGE)
1255                 return true;
1256         if (spi < 0)
1257                 return false;
1258
1259         for (i = 0; i < nr_slots; i++) {
1260                 struct bpf_stack_state *slot = &state->stack[spi - i];
1261
1262                 for (j = 0; j < BPF_REG_SIZE; j++)
1263                         if (slot->slot_type[j] == STACK_ITER)
1264                                 return false;
1265         }
1266
1267         return true;
1268 }
1269
1270 static bool is_iter_reg_valid_init(struct bpf_verifier_env *env, struct bpf_reg_state *reg,
1271                                    struct btf *btf, u32 btf_id, int nr_slots)
1272 {
1273         struct bpf_func_state *state = func(env, reg);
1274         int spi, i, j;
1275
1276         spi = iter_get_spi(env, reg, nr_slots);
1277         if (spi < 0)
1278                 return false;
1279
1280         for (i = 0; i < nr_slots; i++) {
1281                 struct bpf_stack_state *slot = &state->stack[spi - i];
1282                 struct bpf_reg_state *st = &slot->spilled_ptr;
1283
1284                 /* only main (first) slot has ref_obj_id set */
1285                 if (i == 0 && !st->ref_obj_id)
1286                         return false;
1287                 if (i != 0 && st->ref_obj_id)
1288                         return false;
1289                 if (st->iter.btf != btf || st->iter.btf_id != btf_id)
1290                         return false;
1291
1292                 for (j = 0; j < BPF_REG_SIZE; j++)
1293                         if (slot->slot_type[j] != STACK_ITER)
1294                                 return false;
1295         }
1296
1297         return true;
1298 }
1299
1300 /* Check if given stack slot is "special":
1301  *   - spilled register state (STACK_SPILL);
1302  *   - dynptr state (STACK_DYNPTR);
1303  *   - iter state (STACK_ITER).
1304  */
1305 static bool is_stack_slot_special(const struct bpf_stack_state *stack)
1306 {
1307         enum bpf_stack_slot_type type = stack->slot_type[BPF_REG_SIZE - 1];
1308
1309         switch (type) {
1310         case STACK_SPILL:
1311         case STACK_DYNPTR:
1312         case STACK_ITER:
1313                 return true;
1314         case STACK_INVALID:
1315         case STACK_MISC:
1316         case STACK_ZERO:
1317                 return false;
1318         default:
1319                 WARN_ONCE(1, "unknown stack slot type %d\n", type);
1320                 return true;
1321         }
1322 }
1323
1324 /* The reg state of a pointer or a bounded scalar was saved when
1325  * it was spilled to the stack.
1326  */
1327 static bool is_spilled_reg(const struct bpf_stack_state *stack)
1328 {
1329         return stack->slot_type[BPF_REG_SIZE - 1] == STACK_SPILL;
1330 }
1331
1332 static bool is_spilled_scalar_reg(const struct bpf_stack_state *stack)
1333 {
1334         return stack->slot_type[BPF_REG_SIZE - 1] == STACK_SPILL &&
1335                stack->spilled_ptr.type == SCALAR_VALUE;
1336 }
1337
1338 static void scrub_spilled_slot(u8 *stype)
1339 {
1340         if (*stype != STACK_INVALID)
1341                 *stype = STACK_MISC;
1342 }
1343
1344 static void print_verifier_state(struct bpf_verifier_env *env,
1345                                  const struct bpf_func_state *state,
1346                                  bool print_all)
1347 {
1348         const struct bpf_reg_state *reg;
1349         enum bpf_reg_type t;
1350         int i;
1351
1352         if (state->frameno)
1353                 verbose(env, " frame%d:", state->frameno);
1354         for (i = 0; i < MAX_BPF_REG; i++) {
1355                 reg = &state->regs[i];
1356                 t = reg->type;
1357                 if (t == NOT_INIT)
1358                         continue;
1359                 if (!print_all && !reg_scratched(env, i))
1360                         continue;
1361                 verbose(env, " R%d", i);
1362                 print_liveness(env, reg->live);
1363                 verbose(env, "=");
1364                 if (t == SCALAR_VALUE && reg->precise)
1365                         verbose(env, "P");
1366                 if ((t == SCALAR_VALUE || t == PTR_TO_STACK) &&
1367                     tnum_is_const(reg->var_off)) {
1368                         /* reg->off should be 0 for SCALAR_VALUE */
1369                         verbose(env, "%s", t == SCALAR_VALUE ? "" : reg_type_str(env, t));
1370                         verbose(env, "%lld", reg->var_off.value + reg->off);
1371                 } else {
1372                         const char *sep = "";
1373
1374                         verbose(env, "%s", reg_type_str(env, t));
1375                         if (base_type(t) == PTR_TO_BTF_ID)
1376                                 verbose(env, "%s", btf_type_name(reg->btf, reg->btf_id));
1377                         verbose(env, "(");
1378 /*
1379  * _a stands for append, was shortened to avoid multiline statements below.
1380  * This macro is used to output a comma separated list of attributes.
1381  */
1382 #define verbose_a(fmt, ...) ({ verbose(env, "%s" fmt, sep, __VA_ARGS__); sep = ","; })
1383
1384                         if (reg->id)
1385                                 verbose_a("id=%d", reg->id);
1386                         if (reg->ref_obj_id)
1387                                 verbose_a("ref_obj_id=%d", reg->ref_obj_id);
1388                         if (type_is_non_owning_ref(reg->type))
1389                                 verbose_a("%s", "non_own_ref");
1390                         if (t != SCALAR_VALUE)
1391                                 verbose_a("off=%d", reg->off);
1392                         if (type_is_pkt_pointer(t))
1393                                 verbose_a("r=%d", reg->range);
1394                         else if (base_type(t) == CONST_PTR_TO_MAP ||
1395                                  base_type(t) == PTR_TO_MAP_KEY ||
1396                                  base_type(t) == PTR_TO_MAP_VALUE)
1397                                 verbose_a("ks=%d,vs=%d",
1398                                           reg->map_ptr->key_size,
1399                                           reg->map_ptr->value_size);
1400                         if (tnum_is_const(reg->var_off)) {
1401                                 /* Typically an immediate SCALAR_VALUE, but
1402                                  * could be a pointer whose offset is too big
1403                                  * for reg->off
1404                                  */
1405                                 verbose_a("imm=%llx", reg->var_off.value);
1406                         } else {
1407                                 if (reg->smin_value != reg->umin_value &&
1408                                     reg->smin_value != S64_MIN)
1409                                         verbose_a("smin=%lld", (long long)reg->smin_value);
1410                                 if (reg->smax_value != reg->umax_value &&
1411                                     reg->smax_value != S64_MAX)
1412                                         verbose_a("smax=%lld", (long long)reg->smax_value);
1413                                 if (reg->umin_value != 0)
1414                                         verbose_a("umin=%llu", (unsigned long long)reg->umin_value);
1415                                 if (reg->umax_value != U64_MAX)
1416                                         verbose_a("umax=%llu", (unsigned long long)reg->umax_value);
1417                                 if (!tnum_is_unknown(reg->var_off)) {
1418                                         char tn_buf[48];
1419
1420                                         tnum_strn(tn_buf, sizeof(tn_buf), reg->var_off);
1421                                         verbose_a("var_off=%s", tn_buf);
1422                                 }
1423                                 if (reg->s32_min_value != reg->smin_value &&
1424                                     reg->s32_min_value != S32_MIN)
1425                                         verbose_a("s32_min=%d", (int)(reg->s32_min_value));
1426                                 if (reg->s32_max_value != reg->smax_value &&
1427                                     reg->s32_max_value != S32_MAX)
1428                                         verbose_a("s32_max=%d", (int)(reg->s32_max_value));
1429                                 if (reg->u32_min_value != reg->umin_value &&
1430                                     reg->u32_min_value != U32_MIN)
1431                                         verbose_a("u32_min=%d", (int)(reg->u32_min_value));
1432                                 if (reg->u32_max_value != reg->umax_value &&
1433                                     reg->u32_max_value != U32_MAX)
1434                                         verbose_a("u32_max=%d", (int)(reg->u32_max_value));
1435                         }
1436 #undef verbose_a
1437
1438                         verbose(env, ")");
1439                 }
1440         }
1441         for (i = 0; i < state->allocated_stack / BPF_REG_SIZE; i++) {
1442                 char types_buf[BPF_REG_SIZE + 1];
1443                 bool valid = false;
1444                 int j;
1445
1446                 for (j = 0; j < BPF_REG_SIZE; j++) {
1447                         if (state->stack[i].slot_type[j] != STACK_INVALID)
1448                                 valid = true;
1449                         types_buf[j] = slot_type_char[state->stack[i].slot_type[j]];
1450                 }
1451                 types_buf[BPF_REG_SIZE] = 0;
1452                 if (!valid)
1453                         continue;
1454                 if (!print_all && !stack_slot_scratched(env, i))
1455                         continue;
1456                 switch (state->stack[i].slot_type[BPF_REG_SIZE - 1]) {
1457                 case STACK_SPILL:
1458                         reg = &state->stack[i].spilled_ptr;
1459                         t = reg->type;
1460
1461                         verbose(env, " fp%d", (-i - 1) * BPF_REG_SIZE);
1462                         print_liveness(env, reg->live);
1463                         verbose(env, "=%s", t == SCALAR_VALUE ? "" : reg_type_str(env, t));
1464                         if (t == SCALAR_VALUE && reg->precise)
1465                                 verbose(env, "P");
1466                         if (t == SCALAR_VALUE && tnum_is_const(reg->var_off))
1467                                 verbose(env, "%lld", reg->var_off.value + reg->off);
1468                         break;
1469                 case STACK_DYNPTR:
1470                         i += BPF_DYNPTR_NR_SLOTS - 1;
1471                         reg = &state->stack[i].spilled_ptr;
1472
1473                         verbose(env, " fp%d", (-i - 1) * BPF_REG_SIZE);
1474                         print_liveness(env, reg->live);
1475                         verbose(env, "=dynptr_%s", dynptr_type_str(reg->dynptr.type));
1476                         if (reg->ref_obj_id)
1477                                 verbose(env, "(ref_id=%d)", reg->ref_obj_id);
1478                         break;
1479                 case STACK_ITER:
1480                         /* only main slot has ref_obj_id set; skip others */
1481                         reg = &state->stack[i].spilled_ptr;
1482                         if (!reg->ref_obj_id)
1483                                 continue;
1484
1485                         verbose(env, " fp%d", (-i - 1) * BPF_REG_SIZE);
1486                         print_liveness(env, reg->live);
1487                         verbose(env, "=iter_%s(ref_id=%d,state=%s,depth=%u)",
1488                                 iter_type_str(reg->iter.btf, reg->iter.btf_id),
1489                                 reg->ref_obj_id, iter_state_str(reg->iter.state),
1490                                 reg->iter.depth);
1491                         break;
1492                 case STACK_MISC:
1493                 case STACK_ZERO:
1494                 default:
1495                         reg = &state->stack[i].spilled_ptr;
1496
1497                         for (j = 0; j < BPF_REG_SIZE; j++)
1498                                 types_buf[j] = slot_type_char[state->stack[i].slot_type[j]];
1499                         types_buf[BPF_REG_SIZE] = 0;
1500
1501                         verbose(env, " fp%d", (-i - 1) * BPF_REG_SIZE);
1502                         print_liveness(env, reg->live);
1503                         verbose(env, "=%s", types_buf);
1504                         break;
1505                 }
1506         }
1507         if (state->acquired_refs && state->refs[0].id) {
1508                 verbose(env, " refs=%d", state->refs[0].id);
1509                 for (i = 1; i < state->acquired_refs; i++)
1510                         if (state->refs[i].id)
1511                                 verbose(env, ",%d", state->refs[i].id);
1512         }
1513         if (state->in_callback_fn)
1514                 verbose(env, " cb");
1515         if (state->in_async_callback_fn)
1516                 verbose(env, " async_cb");
1517         verbose(env, "\n");
1518         if (!print_all)
1519                 mark_verifier_state_clean(env);
1520 }
1521
1522 static inline u32 vlog_alignment(u32 pos)
1523 {
1524         return round_up(max(pos + BPF_LOG_MIN_ALIGNMENT / 2, BPF_LOG_ALIGNMENT),
1525                         BPF_LOG_MIN_ALIGNMENT) - pos - 1;
1526 }
1527
1528 static void print_insn_state(struct bpf_verifier_env *env,
1529                              const struct bpf_func_state *state)
1530 {
1531         if (env->prev_log_pos && env->prev_log_pos == env->log.end_pos) {
1532                 /* remove new line character */
1533                 bpf_vlog_reset(&env->log, env->prev_log_pos - 1);
1534                 verbose(env, "%*c;", vlog_alignment(env->prev_insn_print_pos), ' ');
1535         } else {
1536                 verbose(env, "%d:", env->insn_idx);
1537         }
1538         print_verifier_state(env, state, false);
1539 }
1540
1541 /* copy array src of length n * size bytes to dst. dst is reallocated if it's too
1542  * small to hold src. This is different from krealloc since we don't want to preserve
1543  * the contents of dst.
1544  *
1545  * Leaves dst untouched if src is NULL or length is zero. Returns NULL if memory could
1546  * not be allocated.
1547  */
1548 static void *copy_array(void *dst, const void *src, size_t n, size_t size, gfp_t flags)
1549 {
1550         size_t alloc_bytes;
1551         void *orig = dst;
1552         size_t bytes;
1553
1554         if (ZERO_OR_NULL_PTR(src))
1555                 goto out;
1556
1557         if (unlikely(check_mul_overflow(n, size, &bytes)))
1558                 return NULL;
1559
1560         alloc_bytes = max(ksize(orig), kmalloc_size_roundup(bytes));
1561         dst = krealloc(orig, alloc_bytes, flags);
1562         if (!dst) {
1563                 kfree(orig);
1564                 return NULL;
1565         }
1566
1567         memcpy(dst, src, bytes);
1568 out:
1569         return dst ? dst : ZERO_SIZE_PTR;
1570 }
1571
1572 /* resize an array from old_n items to new_n items. the array is reallocated if it's too
1573  * small to hold new_n items. new items are zeroed out if the array grows.
1574  *
1575  * Contrary to krealloc_array, does not free arr if new_n is zero.
1576  */
1577 static void *realloc_array(void *arr, size_t old_n, size_t new_n, size_t size)
1578 {
1579         size_t alloc_size;
1580         void *new_arr;
1581
1582         if (!new_n || old_n == new_n)
1583                 goto out;
1584
1585         alloc_size = kmalloc_size_roundup(size_mul(new_n, size));
1586         new_arr = krealloc(arr, alloc_size, GFP_KERNEL);
1587         if (!new_arr) {
1588                 kfree(arr);
1589                 return NULL;
1590         }
1591         arr = new_arr;
1592
1593         if (new_n > old_n)
1594                 memset(arr + old_n * size, 0, (new_n - old_n) * size);
1595
1596 out:
1597         return arr ? arr : ZERO_SIZE_PTR;
1598 }
1599
1600 static int copy_reference_state(struct bpf_func_state *dst, const struct bpf_func_state *src)
1601 {
1602         dst->refs = copy_array(dst->refs, src->refs, src->acquired_refs,
1603                                sizeof(struct bpf_reference_state), GFP_KERNEL);
1604         if (!dst->refs)
1605                 return -ENOMEM;
1606
1607         dst->acquired_refs = src->acquired_refs;
1608         return 0;
1609 }
1610
1611 static int copy_stack_state(struct bpf_func_state *dst, const struct bpf_func_state *src)
1612 {
1613         size_t n = src->allocated_stack / BPF_REG_SIZE;
1614
1615         dst->stack = copy_array(dst->stack, src->stack, n, sizeof(struct bpf_stack_state),
1616                                 GFP_KERNEL);
1617         if (!dst->stack)
1618                 return -ENOMEM;
1619
1620         dst->allocated_stack = src->allocated_stack;
1621         return 0;
1622 }
1623
1624 static int resize_reference_state(struct bpf_func_state *state, size_t n)
1625 {
1626         state->refs = realloc_array(state->refs, state->acquired_refs, n,
1627                                     sizeof(struct bpf_reference_state));
1628         if (!state->refs)
1629                 return -ENOMEM;
1630
1631         state->acquired_refs = n;
1632         return 0;
1633 }
1634
1635 static int grow_stack_state(struct bpf_func_state *state, int size)
1636 {
1637         size_t old_n = state->allocated_stack / BPF_REG_SIZE, n = size / BPF_REG_SIZE;
1638
1639         if (old_n >= n)
1640                 return 0;
1641
1642         state->stack = realloc_array(state->stack, old_n, n, sizeof(struct bpf_stack_state));
1643         if (!state->stack)
1644                 return -ENOMEM;
1645
1646         state->allocated_stack = size;
1647         return 0;
1648 }
1649
1650 /* Acquire a pointer id from the env and update the state->refs to include
1651  * this new pointer reference.
1652  * On success, returns a valid pointer id to associate with the register
1653  * On failure, returns a negative errno.
1654  */
1655 static int acquire_reference_state(struct bpf_verifier_env *env, int insn_idx)
1656 {
1657         struct bpf_func_state *state = cur_func(env);
1658         int new_ofs = state->acquired_refs;
1659         int id, err;
1660
1661         err = resize_reference_state(state, state->acquired_refs + 1);
1662         if (err)
1663                 return err;
1664         id = ++env->id_gen;
1665         state->refs[new_ofs].id = id;
1666         state->refs[new_ofs].insn_idx = insn_idx;
1667         state->refs[new_ofs].callback_ref = state->in_callback_fn ? state->frameno : 0;
1668
1669         return id;
1670 }
1671
1672 /* release function corresponding to acquire_reference_state(). Idempotent. */
1673 static int release_reference_state(struct bpf_func_state *state, int ptr_id)
1674 {
1675         int i, last_idx;
1676
1677         last_idx = state->acquired_refs - 1;
1678         for (i = 0; i < state->acquired_refs; i++) {
1679                 if (state->refs[i].id == ptr_id) {
1680                         /* Cannot release caller references in callbacks */
1681                         if (state->in_callback_fn && state->refs[i].callback_ref != state->frameno)
1682                                 return -EINVAL;
1683                         if (last_idx && i != last_idx)
1684                                 memcpy(&state->refs[i], &state->refs[last_idx],
1685                                        sizeof(*state->refs));
1686                         memset(&state->refs[last_idx], 0, sizeof(*state->refs));
1687                         state->acquired_refs--;
1688                         return 0;
1689                 }
1690         }
1691         return -EINVAL;
1692 }
1693
1694 static void free_func_state(struct bpf_func_state *state)
1695 {
1696         if (!state)
1697                 return;
1698         kfree(state->refs);
1699         kfree(state->stack);
1700         kfree(state);
1701 }
1702
1703 static void clear_jmp_history(struct bpf_verifier_state *state)
1704 {
1705         kfree(state->jmp_history);
1706         state->jmp_history = NULL;
1707         state->jmp_history_cnt = 0;
1708 }
1709
1710 static void free_verifier_state(struct bpf_verifier_state *state,
1711                                 bool free_self)
1712 {
1713         int i;
1714
1715         for (i = 0; i <= state->curframe; i++) {
1716                 free_func_state(state->frame[i]);
1717                 state->frame[i] = NULL;
1718         }
1719         clear_jmp_history(state);
1720         if (free_self)
1721                 kfree(state);
1722 }
1723
1724 /* copy verifier state from src to dst growing dst stack space
1725  * when necessary to accommodate larger src stack
1726  */
1727 static int copy_func_state(struct bpf_func_state *dst,
1728                            const struct bpf_func_state *src)
1729 {
1730         int err;
1731
1732         memcpy(dst, src, offsetof(struct bpf_func_state, acquired_refs));
1733         err = copy_reference_state(dst, src);
1734         if (err)
1735                 return err;
1736         return copy_stack_state(dst, src);
1737 }
1738
1739 static int copy_verifier_state(struct bpf_verifier_state *dst_state,
1740                                const struct bpf_verifier_state *src)
1741 {
1742         struct bpf_func_state *dst;
1743         int i, err;
1744
1745         dst_state->jmp_history = copy_array(dst_state->jmp_history, src->jmp_history,
1746                                             src->jmp_history_cnt, sizeof(struct bpf_idx_pair),
1747                                             GFP_USER);
1748         if (!dst_state->jmp_history)
1749                 return -ENOMEM;
1750         dst_state->jmp_history_cnt = src->jmp_history_cnt;
1751
1752         /* if dst has more stack frames then src frame, free them */
1753         for (i = src->curframe + 1; i <= dst_state->curframe; i++) {
1754                 free_func_state(dst_state->frame[i]);
1755                 dst_state->frame[i] = NULL;
1756         }
1757         dst_state->speculative = src->speculative;
1758         dst_state->active_rcu_lock = src->active_rcu_lock;
1759         dst_state->curframe = src->curframe;
1760         dst_state->active_lock.ptr = src->active_lock.ptr;
1761         dst_state->active_lock.id = src->active_lock.id;
1762         dst_state->branches = src->branches;
1763         dst_state->parent = src->parent;
1764         dst_state->first_insn_idx = src->first_insn_idx;
1765         dst_state->last_insn_idx = src->last_insn_idx;
1766         for (i = 0; i <= src->curframe; i++) {
1767                 dst = dst_state->frame[i];
1768                 if (!dst) {
1769                         dst = kzalloc(sizeof(*dst), GFP_KERNEL);
1770                         if (!dst)
1771                                 return -ENOMEM;
1772                         dst_state->frame[i] = dst;
1773                 }
1774                 err = copy_func_state(dst, src->frame[i]);
1775                 if (err)
1776                         return err;
1777         }
1778         return 0;
1779 }
1780
1781 static void update_branch_counts(struct bpf_verifier_env *env, struct bpf_verifier_state *st)
1782 {
1783         while (st) {
1784                 u32 br = --st->branches;
1785
1786                 /* WARN_ON(br > 1) technically makes sense here,
1787                  * but see comment in push_stack(), hence:
1788                  */
1789                 WARN_ONCE((int)br < 0,
1790                           "BUG update_branch_counts:branches_to_explore=%d\n",
1791                           br);
1792                 if (br)
1793                         break;
1794                 st = st->parent;
1795         }
1796 }
1797
1798 static int pop_stack(struct bpf_verifier_env *env, int *prev_insn_idx,
1799                      int *insn_idx, bool pop_log)
1800 {
1801         struct bpf_verifier_state *cur = env->cur_state;
1802         struct bpf_verifier_stack_elem *elem, *head = env->head;
1803         int err;
1804
1805         if (env->head == NULL)
1806                 return -ENOENT;
1807
1808         if (cur) {
1809                 err = copy_verifier_state(cur, &head->st);
1810                 if (err)
1811                         return err;
1812         }
1813         if (pop_log)
1814                 bpf_vlog_reset(&env->log, head->log_pos);
1815         if (insn_idx)
1816                 *insn_idx = head->insn_idx;
1817         if (prev_insn_idx)
1818                 *prev_insn_idx = head->prev_insn_idx;
1819         elem = head->next;
1820         free_verifier_state(&head->st, false);
1821         kfree(head);
1822         env->head = elem;
1823         env->stack_size--;
1824         return 0;
1825 }
1826
1827 static struct bpf_verifier_state *push_stack(struct bpf_verifier_env *env,
1828                                              int insn_idx, int prev_insn_idx,
1829                                              bool speculative)
1830 {
1831         struct bpf_verifier_state *cur = env->cur_state;
1832         struct bpf_verifier_stack_elem *elem;
1833         int err;
1834
1835         elem = kzalloc(sizeof(struct bpf_verifier_stack_elem), GFP_KERNEL);
1836         if (!elem)
1837                 goto err;
1838
1839         elem->insn_idx = insn_idx;
1840         elem->prev_insn_idx = prev_insn_idx;
1841         elem->next = env->head;
1842         elem->log_pos = env->log.end_pos;
1843         env->head = elem;
1844         env->stack_size++;
1845         err = copy_verifier_state(&elem->st, cur);
1846         if (err)
1847                 goto err;
1848         elem->st.speculative |= speculative;
1849         if (env->stack_size > BPF_COMPLEXITY_LIMIT_JMP_SEQ) {
1850                 verbose(env, "The sequence of %d jumps is too complex.\n",
1851                         env->stack_size);
1852                 goto err;
1853         }
1854         if (elem->st.parent) {
1855                 ++elem->st.parent->branches;
1856                 /* WARN_ON(branches > 2) technically makes sense here,
1857                  * but
1858                  * 1. speculative states will bump 'branches' for non-branch
1859                  * instructions
1860                  * 2. is_state_visited() heuristics may decide not to create
1861                  * a new state for a sequence of branches and all such current
1862                  * and cloned states will be pointing to a single parent state
1863                  * which might have large 'branches' count.
1864                  */
1865         }
1866         return &elem->st;
1867 err:
1868         free_verifier_state(env->cur_state, true);
1869         env->cur_state = NULL;
1870         /* pop all elements and return */
1871         while (!pop_stack(env, NULL, NULL, false));
1872         return NULL;
1873 }
1874
1875 #define CALLER_SAVED_REGS 6
1876 static const int caller_saved[CALLER_SAVED_REGS] = {
1877         BPF_REG_0, BPF_REG_1, BPF_REG_2, BPF_REG_3, BPF_REG_4, BPF_REG_5
1878 };
1879
1880 /* This helper doesn't clear reg->id */
1881 static void ___mark_reg_known(struct bpf_reg_state *reg, u64 imm)
1882 {
1883         reg->var_off = tnum_const(imm);
1884         reg->smin_value = (s64)imm;
1885         reg->smax_value = (s64)imm;
1886         reg->umin_value = imm;
1887         reg->umax_value = imm;
1888
1889         reg->s32_min_value = (s32)imm;
1890         reg->s32_max_value = (s32)imm;
1891         reg->u32_min_value = (u32)imm;
1892         reg->u32_max_value = (u32)imm;
1893 }
1894
1895 /* Mark the unknown part of a register (variable offset or scalar value) as
1896  * known to have the value @imm.
1897  */
1898 static void __mark_reg_known(struct bpf_reg_state *reg, u64 imm)
1899 {
1900         /* Clear off and union(map_ptr, range) */
1901         memset(((u8 *)reg) + sizeof(reg->type), 0,
1902                offsetof(struct bpf_reg_state, var_off) - sizeof(reg->type));
1903         reg->id = 0;
1904         reg->ref_obj_id = 0;
1905         ___mark_reg_known(reg, imm);
1906 }
1907
1908 static void __mark_reg32_known(struct bpf_reg_state *reg, u64 imm)
1909 {
1910         reg->var_off = tnum_const_subreg(reg->var_off, imm);
1911         reg->s32_min_value = (s32)imm;
1912         reg->s32_max_value = (s32)imm;
1913         reg->u32_min_value = (u32)imm;
1914         reg->u32_max_value = (u32)imm;
1915 }
1916
1917 /* Mark the 'variable offset' part of a register as zero.  This should be
1918  * used only on registers holding a pointer type.
1919  */
1920 static void __mark_reg_known_zero(struct bpf_reg_state *reg)
1921 {
1922         __mark_reg_known(reg, 0);
1923 }
1924
1925 static void __mark_reg_const_zero(struct bpf_reg_state *reg)
1926 {
1927         __mark_reg_known(reg, 0);
1928         reg->type = SCALAR_VALUE;
1929 }
1930
1931 static void mark_reg_known_zero(struct bpf_verifier_env *env,
1932                                 struct bpf_reg_state *regs, u32 regno)
1933 {
1934         if (WARN_ON(regno >= MAX_BPF_REG)) {
1935                 verbose(env, "mark_reg_known_zero(regs, %u)\n", regno);
1936                 /* Something bad happened, let's kill all regs */
1937                 for (regno = 0; regno < MAX_BPF_REG; regno++)
1938                         __mark_reg_not_init(env, regs + regno);
1939                 return;
1940         }
1941         __mark_reg_known_zero(regs + regno);
1942 }
1943
1944 static void __mark_dynptr_reg(struct bpf_reg_state *reg, enum bpf_dynptr_type type,
1945                               bool first_slot, int dynptr_id)
1946 {
1947         /* reg->type has no meaning for STACK_DYNPTR, but when we set reg for
1948          * callback arguments, it does need to be CONST_PTR_TO_DYNPTR, so simply
1949          * set it unconditionally as it is ignored for STACK_DYNPTR anyway.
1950          */
1951         __mark_reg_known_zero(reg);
1952         reg->type = CONST_PTR_TO_DYNPTR;
1953         /* Give each dynptr a unique id to uniquely associate slices to it. */
1954         reg->id = dynptr_id;
1955         reg->dynptr.type = type;
1956         reg->dynptr.first_slot = first_slot;
1957 }
1958
1959 static void mark_ptr_not_null_reg(struct bpf_reg_state *reg)
1960 {
1961         if (base_type(reg->type) == PTR_TO_MAP_VALUE) {
1962                 const struct bpf_map *map = reg->map_ptr;
1963
1964                 if (map->inner_map_meta) {
1965                         reg->type = CONST_PTR_TO_MAP;
1966                         reg->map_ptr = map->inner_map_meta;
1967                         /* transfer reg's id which is unique for every map_lookup_elem
1968                          * as UID of the inner map.
1969                          */
1970                         if (btf_record_has_field(map->inner_map_meta->record, BPF_TIMER))
1971                                 reg->map_uid = reg->id;
1972                 } else if (map->map_type == BPF_MAP_TYPE_XSKMAP) {
1973                         reg->type = PTR_TO_XDP_SOCK;
1974                 } else if (map->map_type == BPF_MAP_TYPE_SOCKMAP ||
1975                            map->map_type == BPF_MAP_TYPE_SOCKHASH) {
1976                         reg->type = PTR_TO_SOCKET;
1977                 } else {
1978                         reg->type = PTR_TO_MAP_VALUE;
1979                 }
1980                 return;
1981         }
1982
1983         reg->type &= ~PTR_MAYBE_NULL;
1984 }
1985
1986 static void mark_reg_graph_node(struct bpf_reg_state *regs, u32 regno,
1987                                 struct btf_field_graph_root *ds_head)
1988 {
1989         __mark_reg_known_zero(&regs[regno]);
1990         regs[regno].type = PTR_TO_BTF_ID | MEM_ALLOC;
1991         regs[regno].btf = ds_head->btf;
1992         regs[regno].btf_id = ds_head->value_btf_id;
1993         regs[regno].off = ds_head->node_offset;
1994 }
1995
1996 static bool reg_is_pkt_pointer(const struct bpf_reg_state *reg)
1997 {
1998         return type_is_pkt_pointer(reg->type);
1999 }
2000
2001 static bool reg_is_pkt_pointer_any(const struct bpf_reg_state *reg)
2002 {
2003         return reg_is_pkt_pointer(reg) ||
2004                reg->type == PTR_TO_PACKET_END;
2005 }
2006
2007 static bool reg_is_dynptr_slice_pkt(const struct bpf_reg_state *reg)
2008 {
2009         return base_type(reg->type) == PTR_TO_MEM &&
2010                 (reg->type & DYNPTR_TYPE_SKB || reg->type & DYNPTR_TYPE_XDP);
2011 }
2012
2013 /* Unmodified PTR_TO_PACKET[_META,_END] register from ctx access. */
2014 static bool reg_is_init_pkt_pointer(const struct bpf_reg_state *reg,
2015                                     enum bpf_reg_type which)
2016 {
2017         /* The register can already have a range from prior markings.
2018          * This is fine as long as it hasn't been advanced from its
2019          * origin.
2020          */
2021         return reg->type == which &&
2022                reg->id == 0 &&
2023                reg->off == 0 &&
2024                tnum_equals_const(reg->var_off, 0);
2025 }
2026
2027 /* Reset the min/max bounds of a register */
2028 static void __mark_reg_unbounded(struct bpf_reg_state *reg)
2029 {
2030         reg->smin_value = S64_MIN;
2031         reg->smax_value = S64_MAX;
2032         reg->umin_value = 0;
2033         reg->umax_value = U64_MAX;
2034
2035         reg->s32_min_value = S32_MIN;
2036         reg->s32_max_value = S32_MAX;
2037         reg->u32_min_value = 0;
2038         reg->u32_max_value = U32_MAX;
2039 }
2040
2041 static void __mark_reg64_unbounded(struct bpf_reg_state *reg)
2042 {
2043         reg->smin_value = S64_MIN;
2044         reg->smax_value = S64_MAX;
2045         reg->umin_value = 0;
2046         reg->umax_value = U64_MAX;
2047 }
2048
2049 static void __mark_reg32_unbounded(struct bpf_reg_state *reg)
2050 {
2051         reg->s32_min_value = S32_MIN;
2052         reg->s32_max_value = S32_MAX;
2053         reg->u32_min_value = 0;
2054         reg->u32_max_value = U32_MAX;
2055 }
2056
2057 static void __update_reg32_bounds(struct bpf_reg_state *reg)
2058 {
2059         struct tnum var32_off = tnum_subreg(reg->var_off);
2060
2061         /* min signed is max(sign bit) | min(other bits) */
2062         reg->s32_min_value = max_t(s32, reg->s32_min_value,
2063                         var32_off.value | (var32_off.mask & S32_MIN));
2064         /* max signed is min(sign bit) | max(other bits) */
2065         reg->s32_max_value = min_t(s32, reg->s32_max_value,
2066                         var32_off.value | (var32_off.mask & S32_MAX));
2067         reg->u32_min_value = max_t(u32, reg->u32_min_value, (u32)var32_off.value);
2068         reg->u32_max_value = min(reg->u32_max_value,
2069                                  (u32)(var32_off.value | var32_off.mask));
2070 }
2071
2072 static void __update_reg64_bounds(struct bpf_reg_state *reg)
2073 {
2074         /* min signed is max(sign bit) | min(other bits) */
2075         reg->smin_value = max_t(s64, reg->smin_value,
2076                                 reg->var_off.value | (reg->var_off.mask & S64_MIN));
2077         /* max signed is min(sign bit) | max(other bits) */
2078         reg->smax_value = min_t(s64, reg->smax_value,
2079                                 reg->var_off.value | (reg->var_off.mask & S64_MAX));
2080         reg->umin_value = max(reg->umin_value, reg->var_off.value);
2081         reg->umax_value = min(reg->umax_value,
2082                               reg->var_off.value | reg->var_off.mask);
2083 }
2084
2085 static void __update_reg_bounds(struct bpf_reg_state *reg)
2086 {
2087         __update_reg32_bounds(reg);
2088         __update_reg64_bounds(reg);
2089 }
2090
2091 /* Uses signed min/max values to inform unsigned, and vice-versa */
2092 static void __reg32_deduce_bounds(struct bpf_reg_state *reg)
2093 {
2094         /* Learn sign from signed bounds.
2095          * If we cannot cross the sign boundary, then signed and unsigned bounds
2096          * are the same, so combine.  This works even in the negative case, e.g.
2097          * -3 s<= x s<= -1 implies 0xf...fd u<= x u<= 0xf...ff.
2098          */
2099         if (reg->s32_min_value >= 0 || reg->s32_max_value < 0) {
2100                 reg->s32_min_value = reg->u32_min_value =
2101                         max_t(u32, reg->s32_min_value, reg->u32_min_value);
2102                 reg->s32_max_value = reg->u32_max_value =
2103                         min_t(u32, reg->s32_max_value, reg->u32_max_value);
2104                 return;
2105         }
2106         /* Learn sign from unsigned bounds.  Signed bounds cross the sign
2107          * boundary, so we must be careful.
2108          */
2109         if ((s32)reg->u32_max_value >= 0) {
2110                 /* Positive.  We can't learn anything from the smin, but smax
2111                  * is positive, hence safe.
2112                  */
2113                 reg->s32_min_value = reg->u32_min_value;
2114                 reg->s32_max_value = reg->u32_max_value =
2115                         min_t(u32, reg->s32_max_value, reg->u32_max_value);
2116         } else if ((s32)reg->u32_min_value < 0) {
2117                 /* Negative.  We can't learn anything from the smax, but smin
2118                  * is negative, hence safe.
2119                  */
2120                 reg->s32_min_value = reg->u32_min_value =
2121                         max_t(u32, reg->s32_min_value, reg->u32_min_value);
2122                 reg->s32_max_value = reg->u32_max_value;
2123         }
2124 }
2125
2126 static void __reg64_deduce_bounds(struct bpf_reg_state *reg)
2127 {
2128         /* Learn sign from signed bounds.
2129          * If we cannot cross the sign boundary, then signed and unsigned bounds
2130          * are the same, so combine.  This works even in the negative case, e.g.
2131          * -3 s<= x s<= -1 implies 0xf...fd u<= x u<= 0xf...ff.
2132          */
2133         if (reg->smin_value >= 0 || reg->smax_value < 0) {
2134                 reg->smin_value = reg->umin_value = max_t(u64, reg->smin_value,
2135                                                           reg->umin_value);
2136                 reg->smax_value = reg->umax_value = min_t(u64, reg->smax_value,
2137                                                           reg->umax_value);
2138                 return;
2139         }
2140         /* Learn sign from unsigned bounds.  Signed bounds cross the sign
2141          * boundary, so we must be careful.
2142          */
2143         if ((s64)reg->umax_value >= 0) {
2144                 /* Positive.  We can't learn anything from the smin, but smax
2145                  * is positive, hence safe.
2146                  */
2147                 reg->smin_value = reg->umin_value;
2148                 reg->smax_value = reg->umax_value = min_t(u64, reg->smax_value,
2149                                                           reg->umax_value);
2150         } else if ((s64)reg->umin_value < 0) {
2151                 /* Negative.  We can't learn anything from the smax, but smin
2152                  * is negative, hence safe.
2153                  */
2154                 reg->smin_value = reg->umin_value = max_t(u64, reg->smin_value,
2155                                                           reg->umin_value);
2156                 reg->smax_value = reg->umax_value;
2157         }
2158 }
2159
2160 static void __reg_deduce_bounds(struct bpf_reg_state *reg)
2161 {
2162         __reg32_deduce_bounds(reg);
2163         __reg64_deduce_bounds(reg);
2164 }
2165
2166 /* Attempts to improve var_off based on unsigned min/max information */
2167 static void __reg_bound_offset(struct bpf_reg_state *reg)
2168 {
2169         struct tnum var64_off = tnum_intersect(reg->var_off,
2170                                                tnum_range(reg->umin_value,
2171                                                           reg->umax_value));
2172         struct tnum var32_off = tnum_intersect(tnum_subreg(var64_off),
2173                                                tnum_range(reg->u32_min_value,
2174                                                           reg->u32_max_value));
2175
2176         reg->var_off = tnum_or(tnum_clear_subreg(var64_off), var32_off);
2177 }
2178
2179 static void reg_bounds_sync(struct bpf_reg_state *reg)
2180 {
2181         /* We might have learned new bounds from the var_off. */
2182         __update_reg_bounds(reg);
2183         /* We might have learned something about the sign bit. */
2184         __reg_deduce_bounds(reg);
2185         /* We might have learned some bits from the bounds. */
2186         __reg_bound_offset(reg);
2187         /* Intersecting with the old var_off might have improved our bounds
2188          * slightly, e.g. if umax was 0x7f...f and var_off was (0; 0xf...fc),
2189          * then new var_off is (0; 0x7f...fc) which improves our umax.
2190          */
2191         __update_reg_bounds(reg);
2192 }
2193
2194 static bool __reg32_bound_s64(s32 a)
2195 {
2196         return a >= 0 && a <= S32_MAX;
2197 }
2198
2199 static void __reg_assign_32_into_64(struct bpf_reg_state *reg)
2200 {
2201         reg->umin_value = reg->u32_min_value;
2202         reg->umax_value = reg->u32_max_value;
2203
2204         /* Attempt to pull 32-bit signed bounds into 64-bit bounds but must
2205          * be positive otherwise set to worse case bounds and refine later
2206          * from tnum.
2207          */
2208         if (__reg32_bound_s64(reg->s32_min_value) &&
2209             __reg32_bound_s64(reg->s32_max_value)) {
2210                 reg->smin_value = reg->s32_min_value;
2211                 reg->smax_value = reg->s32_max_value;
2212         } else {
2213                 reg->smin_value = 0;
2214                 reg->smax_value = U32_MAX;
2215         }
2216 }
2217
2218 static void __reg_combine_32_into_64(struct bpf_reg_state *reg)
2219 {
2220         /* special case when 64-bit register has upper 32-bit register
2221          * zeroed. Typically happens after zext or <<32, >>32 sequence
2222          * allowing us to use 32-bit bounds directly,
2223          */
2224         if (tnum_equals_const(tnum_clear_subreg(reg->var_off), 0)) {
2225                 __reg_assign_32_into_64(reg);
2226         } else {
2227                 /* Otherwise the best we can do is push lower 32bit known and
2228                  * unknown bits into register (var_off set from jmp logic)
2229                  * then learn as much as possible from the 64-bit tnum
2230                  * known and unknown bits. The previous smin/smax bounds are
2231                  * invalid here because of jmp32 compare so mark them unknown
2232                  * so they do not impact tnum bounds calculation.
2233                  */
2234                 __mark_reg64_unbounded(reg);
2235         }
2236         reg_bounds_sync(reg);
2237 }
2238
2239 static bool __reg64_bound_s32(s64 a)
2240 {
2241         return a >= S32_MIN && a <= S32_MAX;
2242 }
2243
2244 static bool __reg64_bound_u32(u64 a)
2245 {
2246         return a >= U32_MIN && a <= U32_MAX;
2247 }
2248
2249 static void __reg_combine_64_into_32(struct bpf_reg_state *reg)
2250 {
2251         __mark_reg32_unbounded(reg);
2252         if (__reg64_bound_s32(reg->smin_value) && __reg64_bound_s32(reg->smax_value)) {
2253                 reg->s32_min_value = (s32)reg->smin_value;
2254                 reg->s32_max_value = (s32)reg->smax_value;
2255         }
2256         if (__reg64_bound_u32(reg->umin_value) && __reg64_bound_u32(reg->umax_value)) {
2257                 reg->u32_min_value = (u32)reg->umin_value;
2258                 reg->u32_max_value = (u32)reg->umax_value;
2259         }
2260         reg_bounds_sync(reg);
2261 }
2262
2263 /* Mark a register as having a completely unknown (scalar) value. */
2264 static void __mark_reg_unknown(const struct bpf_verifier_env *env,
2265                                struct bpf_reg_state *reg)
2266 {
2267         /*
2268          * Clear type, off, and union(map_ptr, range) and
2269          * padding between 'type' and union
2270          */
2271         memset(reg, 0, offsetof(struct bpf_reg_state, var_off));
2272         reg->type = SCALAR_VALUE;
2273         reg->id = 0;
2274         reg->ref_obj_id = 0;
2275         reg->var_off = tnum_unknown;
2276         reg->frameno = 0;
2277         reg->precise = !env->bpf_capable;
2278         __mark_reg_unbounded(reg);
2279 }
2280
2281 static void mark_reg_unknown(struct bpf_verifier_env *env,
2282                              struct bpf_reg_state *regs, u32 regno)
2283 {
2284         if (WARN_ON(regno >= MAX_BPF_REG)) {
2285                 verbose(env, "mark_reg_unknown(regs, %u)\n", regno);
2286                 /* Something bad happened, let's kill all regs except FP */
2287                 for (regno = 0; regno < BPF_REG_FP; regno++)
2288                         __mark_reg_not_init(env, regs + regno);
2289                 return;
2290         }
2291         __mark_reg_unknown(env, regs + regno);
2292 }
2293
2294 static void __mark_reg_not_init(const struct bpf_verifier_env *env,
2295                                 struct bpf_reg_state *reg)
2296 {
2297         __mark_reg_unknown(env, reg);
2298         reg->type = NOT_INIT;
2299 }
2300
2301 static void mark_reg_not_init(struct bpf_verifier_env *env,
2302                               struct bpf_reg_state *regs, u32 regno)
2303 {
2304         if (WARN_ON(regno >= MAX_BPF_REG)) {
2305                 verbose(env, "mark_reg_not_init(regs, %u)\n", regno);
2306                 /* Something bad happened, let's kill all regs except FP */
2307                 for (regno = 0; regno < BPF_REG_FP; regno++)
2308                         __mark_reg_not_init(env, regs + regno);
2309                 return;
2310         }
2311         __mark_reg_not_init(env, regs + regno);
2312 }
2313
2314 static void mark_btf_ld_reg(struct bpf_verifier_env *env,
2315                             struct bpf_reg_state *regs, u32 regno,
2316                             enum bpf_reg_type reg_type,
2317                             struct btf *btf, u32 btf_id,
2318                             enum bpf_type_flag flag)
2319 {
2320         if (reg_type == SCALAR_VALUE) {
2321                 mark_reg_unknown(env, regs, regno);
2322                 return;
2323         }
2324         mark_reg_known_zero(env, regs, regno);
2325         regs[regno].type = PTR_TO_BTF_ID | flag;
2326         regs[regno].btf = btf;
2327         regs[regno].btf_id = btf_id;
2328 }
2329
2330 #define DEF_NOT_SUBREG  (0)
2331 static void init_reg_state(struct bpf_verifier_env *env,
2332                            struct bpf_func_state *state)
2333 {
2334         struct bpf_reg_state *regs = state->regs;
2335         int i;
2336
2337         for (i = 0; i < MAX_BPF_REG; i++) {
2338                 mark_reg_not_init(env, regs, i);
2339                 regs[i].live = REG_LIVE_NONE;
2340                 regs[i].parent = NULL;
2341                 regs[i].subreg_def = DEF_NOT_SUBREG;
2342         }
2343
2344         /* frame pointer */
2345         regs[BPF_REG_FP].type = PTR_TO_STACK;
2346         mark_reg_known_zero(env, regs, BPF_REG_FP);
2347         regs[BPF_REG_FP].frameno = state->frameno;
2348 }
2349
2350 #define BPF_MAIN_FUNC (-1)
2351 static void init_func_state(struct bpf_verifier_env *env,
2352                             struct bpf_func_state *state,
2353                             int callsite, int frameno, int subprogno)
2354 {
2355         state->callsite = callsite;
2356         state->frameno = frameno;
2357         state->subprogno = subprogno;
2358         state->callback_ret_range = tnum_range(0, 0);
2359         init_reg_state(env, state);
2360         mark_verifier_state_scratched(env);
2361 }
2362
2363 /* Similar to push_stack(), but for async callbacks */
2364 static struct bpf_verifier_state *push_async_cb(struct bpf_verifier_env *env,
2365                                                 int insn_idx, int prev_insn_idx,
2366                                                 int subprog)
2367 {
2368         struct bpf_verifier_stack_elem *elem;
2369         struct bpf_func_state *frame;
2370
2371         elem = kzalloc(sizeof(struct bpf_verifier_stack_elem), GFP_KERNEL);
2372         if (!elem)
2373                 goto err;
2374
2375         elem->insn_idx = insn_idx;
2376         elem->prev_insn_idx = prev_insn_idx;
2377         elem->next = env->head;
2378         elem->log_pos = env->log.end_pos;
2379         env->head = elem;
2380         env->stack_size++;
2381         if (env->stack_size > BPF_COMPLEXITY_LIMIT_JMP_SEQ) {
2382                 verbose(env,
2383                         "The sequence of %d jumps is too complex for async cb.\n",
2384                         env->stack_size);
2385                 goto err;
2386         }
2387         /* Unlike push_stack() do not copy_verifier_state().
2388          * The caller state doesn't matter.
2389          * This is async callback. It starts in a fresh stack.
2390          * Initialize it similar to do_check_common().
2391          */
2392         elem->st.branches = 1;
2393         frame = kzalloc(sizeof(*frame), GFP_KERNEL);
2394         if (!frame)
2395                 goto err;
2396         init_func_state(env, frame,
2397                         BPF_MAIN_FUNC /* callsite */,
2398                         0 /* frameno within this callchain */,
2399                         subprog /* subprog number within this prog */);
2400         elem->st.frame[0] = frame;
2401         return &elem->st;
2402 err:
2403         free_verifier_state(env->cur_state, true);
2404         env->cur_state = NULL;
2405         /* pop all elements and return */
2406         while (!pop_stack(env, NULL, NULL, false));
2407         return NULL;
2408 }
2409
2410
2411 enum reg_arg_type {
2412         SRC_OP,         /* register is used as source operand */
2413         DST_OP,         /* register is used as destination operand */
2414         DST_OP_NO_MARK  /* same as above, check only, don't mark */
2415 };
2416
2417 static int cmp_subprogs(const void *a, const void *b)
2418 {
2419         return ((struct bpf_subprog_info *)a)->start -
2420                ((struct bpf_subprog_info *)b)->start;
2421 }
2422
2423 static int find_subprog(struct bpf_verifier_env *env, int off)
2424 {
2425         struct bpf_subprog_info *p;
2426
2427         p = bsearch(&off, env->subprog_info, env->subprog_cnt,
2428                     sizeof(env->subprog_info[0]), cmp_subprogs);
2429         if (!p)
2430                 return -ENOENT;
2431         return p - env->subprog_info;
2432
2433 }
2434
2435 static int add_subprog(struct bpf_verifier_env *env, int off)
2436 {
2437         int insn_cnt = env->prog->len;
2438         int ret;
2439
2440         if (off >= insn_cnt || off < 0) {
2441                 verbose(env, "call to invalid destination\n");
2442                 return -EINVAL;
2443         }
2444         ret = find_subprog(env, off);
2445         if (ret >= 0)
2446                 return ret;
2447         if (env->subprog_cnt >= BPF_MAX_SUBPROGS) {
2448                 verbose(env, "too many subprograms\n");
2449                 return -E2BIG;
2450         }
2451         /* determine subprog starts. The end is one before the next starts */
2452         env->subprog_info[env->subprog_cnt++].start = off;
2453         sort(env->subprog_info, env->subprog_cnt,
2454              sizeof(env->subprog_info[0]), cmp_subprogs, NULL);
2455         return env->subprog_cnt - 1;
2456 }
2457
2458 #define MAX_KFUNC_DESCS 256
2459 #define MAX_KFUNC_BTFS  256
2460
2461 struct bpf_kfunc_desc {
2462         struct btf_func_model func_model;
2463         u32 func_id;
2464         s32 imm;
2465         u16 offset;
2466         unsigned long addr;
2467 };
2468
2469 struct bpf_kfunc_btf {
2470         struct btf *btf;
2471         struct module *module;
2472         u16 offset;
2473 };
2474
2475 struct bpf_kfunc_desc_tab {
2476         /* Sorted by func_id (BTF ID) and offset (fd_array offset) during
2477          * verification. JITs do lookups by bpf_insn, where func_id may not be
2478          * available, therefore at the end of verification do_misc_fixups()
2479          * sorts this by imm and offset.
2480          */
2481         struct bpf_kfunc_desc descs[MAX_KFUNC_DESCS];
2482         u32 nr_descs;
2483 };
2484
2485 struct bpf_kfunc_btf_tab {
2486         struct bpf_kfunc_btf descs[MAX_KFUNC_BTFS];
2487         u32 nr_descs;
2488 };
2489
2490 static int kfunc_desc_cmp_by_id_off(const void *a, const void *b)
2491 {
2492         const struct bpf_kfunc_desc *d0 = a;
2493         const struct bpf_kfunc_desc *d1 = b;
2494
2495         /* func_id is not greater than BTF_MAX_TYPE */
2496         return d0->func_id - d1->func_id ?: d0->offset - d1->offset;
2497 }
2498
2499 static int kfunc_btf_cmp_by_off(const void *a, const void *b)
2500 {
2501         const struct bpf_kfunc_btf *d0 = a;
2502         const struct bpf_kfunc_btf *d1 = b;
2503
2504         return d0->offset - d1->offset;
2505 }
2506
2507 static const struct bpf_kfunc_desc *
2508 find_kfunc_desc(const struct bpf_prog *prog, u32 func_id, u16 offset)
2509 {
2510         struct bpf_kfunc_desc desc = {
2511                 .func_id = func_id,
2512                 .offset = offset,
2513         };
2514         struct bpf_kfunc_desc_tab *tab;
2515
2516         tab = prog->aux->kfunc_tab;
2517         return bsearch(&desc, tab->descs, tab->nr_descs,
2518                        sizeof(tab->descs[0]), kfunc_desc_cmp_by_id_off);
2519 }
2520
2521 int bpf_get_kfunc_addr(const struct bpf_prog *prog, u32 func_id,
2522                        u16 btf_fd_idx, u8 **func_addr)
2523 {
2524         const struct bpf_kfunc_desc *desc;
2525
2526         desc = find_kfunc_desc(prog, func_id, btf_fd_idx);
2527         if (!desc)
2528                 return -EFAULT;
2529
2530         *func_addr = (u8 *)desc->addr;
2531         return 0;
2532 }
2533
2534 static struct btf *__find_kfunc_desc_btf(struct bpf_verifier_env *env,
2535                                          s16 offset)
2536 {
2537         struct bpf_kfunc_btf kf_btf = { .offset = offset };
2538         struct bpf_kfunc_btf_tab *tab;
2539         struct bpf_kfunc_btf *b;
2540         struct module *mod;
2541         struct btf *btf;
2542         int btf_fd;
2543
2544         tab = env->prog->aux->kfunc_btf_tab;
2545         b = bsearch(&kf_btf, tab->descs, tab->nr_descs,
2546                     sizeof(tab->descs[0]), kfunc_btf_cmp_by_off);
2547         if (!b) {
2548                 if (tab->nr_descs == MAX_KFUNC_BTFS) {
2549                         verbose(env, "too many different module BTFs\n");
2550                         return ERR_PTR(-E2BIG);
2551                 }
2552
2553                 if (bpfptr_is_null(env->fd_array)) {
2554                         verbose(env, "kfunc offset > 0 without fd_array is invalid\n");
2555                         return ERR_PTR(-EPROTO);
2556                 }
2557
2558                 if (copy_from_bpfptr_offset(&btf_fd, env->fd_array,
2559                                             offset * sizeof(btf_fd),
2560                                             sizeof(btf_fd)))
2561                         return ERR_PTR(-EFAULT);
2562
2563                 btf = btf_get_by_fd(btf_fd);
2564                 if (IS_ERR(btf)) {
2565                         verbose(env, "invalid module BTF fd specified\n");
2566                         return btf;
2567                 }
2568
2569                 if (!btf_is_module(btf)) {
2570                         verbose(env, "BTF fd for kfunc is not a module BTF\n");
2571                         btf_put(btf);
2572                         return ERR_PTR(-EINVAL);
2573                 }
2574
2575                 mod = btf_try_get_module(btf);
2576                 if (!mod) {
2577                         btf_put(btf);
2578                         return ERR_PTR(-ENXIO);
2579                 }
2580
2581                 b = &tab->descs[tab->nr_descs++];
2582                 b->btf = btf;
2583                 b->module = mod;
2584                 b->offset = offset;
2585
2586                 sort(tab->descs, tab->nr_descs, sizeof(tab->descs[0]),
2587                      kfunc_btf_cmp_by_off, NULL);
2588         }
2589         return b->btf;
2590 }
2591
2592 void bpf_free_kfunc_btf_tab(struct bpf_kfunc_btf_tab *tab)
2593 {
2594         if (!tab)
2595                 return;
2596
2597         while (tab->nr_descs--) {
2598                 module_put(tab->descs[tab->nr_descs].module);
2599                 btf_put(tab->descs[tab->nr_descs].btf);
2600         }
2601         kfree(tab);
2602 }
2603
2604 static struct btf *find_kfunc_desc_btf(struct bpf_verifier_env *env, s16 offset)
2605 {
2606         if (offset) {
2607                 if (offset < 0) {
2608                         /* In the future, this can be allowed to increase limit
2609                          * of fd index into fd_array, interpreted as u16.
2610                          */
2611                         verbose(env, "negative offset disallowed for kernel module function call\n");
2612                         return ERR_PTR(-EINVAL);
2613                 }
2614
2615                 return __find_kfunc_desc_btf(env, offset);
2616         }
2617         return btf_vmlinux ?: ERR_PTR(-ENOENT);
2618 }
2619
2620 static int add_kfunc_call(struct bpf_verifier_env *env, u32 func_id, s16 offset)
2621 {
2622         const struct btf_type *func, *func_proto;
2623         struct bpf_kfunc_btf_tab *btf_tab;
2624         struct bpf_kfunc_desc_tab *tab;
2625         struct bpf_prog_aux *prog_aux;
2626         struct bpf_kfunc_desc *desc;
2627         const char *func_name;
2628         struct btf *desc_btf;
2629         unsigned long call_imm;
2630         unsigned long addr;
2631         int err;
2632
2633         prog_aux = env->prog->aux;
2634         tab = prog_aux->kfunc_tab;
2635         btf_tab = prog_aux->kfunc_btf_tab;
2636         if (!tab) {
2637                 if (!btf_vmlinux) {
2638                         verbose(env, "calling kernel function is not supported without CONFIG_DEBUG_INFO_BTF\n");
2639                         return -ENOTSUPP;
2640                 }
2641
2642                 if (!env->prog->jit_requested) {
2643                         verbose(env, "JIT is required for calling kernel function\n");
2644                         return -ENOTSUPP;
2645                 }
2646
2647                 if (!bpf_jit_supports_kfunc_call()) {
2648                         verbose(env, "JIT does not support calling kernel function\n");
2649                         return -ENOTSUPP;
2650                 }
2651
2652                 if (!env->prog->gpl_compatible) {
2653                         verbose(env, "cannot call kernel function from non-GPL compatible program\n");
2654                         return -EINVAL;
2655                 }
2656
2657                 tab = kzalloc(sizeof(*tab), GFP_KERNEL);
2658                 if (!tab)
2659                         return -ENOMEM;
2660                 prog_aux->kfunc_tab = tab;
2661         }
2662
2663         /* func_id == 0 is always invalid, but instead of returning an error, be
2664          * conservative and wait until the code elimination pass before returning
2665          * error, so that invalid calls that get pruned out can be in BPF programs
2666          * loaded from userspace.  It is also required that offset be untouched
2667          * for such calls.
2668          */
2669         if (!func_id && !offset)
2670                 return 0;
2671
2672         if (!btf_tab && offset) {
2673                 btf_tab = kzalloc(sizeof(*btf_tab), GFP_KERNEL);
2674                 if (!btf_tab)
2675                         return -ENOMEM;
2676                 prog_aux->kfunc_btf_tab = btf_tab;
2677         }
2678
2679         desc_btf = find_kfunc_desc_btf(env, offset);
2680         if (IS_ERR(desc_btf)) {
2681                 verbose(env, "failed to find BTF for kernel function\n");
2682                 return PTR_ERR(desc_btf);
2683         }
2684
2685         if (find_kfunc_desc(env->prog, func_id, offset))
2686                 return 0;
2687
2688         if (tab->nr_descs == MAX_KFUNC_DESCS) {
2689                 verbose(env, "too many different kernel function calls\n");
2690                 return -E2BIG;
2691         }
2692
2693         func = btf_type_by_id(desc_btf, func_id);
2694         if (!func || !btf_type_is_func(func)) {
2695                 verbose(env, "kernel btf_id %u is not a function\n",
2696                         func_id);
2697                 return -EINVAL;
2698         }
2699         func_proto = btf_type_by_id(desc_btf, func->type);
2700         if (!func_proto || !btf_type_is_func_proto(func_proto)) {
2701                 verbose(env, "kernel function btf_id %u does not have a valid func_proto\n",
2702                         func_id);
2703                 return -EINVAL;
2704         }
2705
2706         func_name = btf_name_by_offset(desc_btf, func->name_off);
2707         addr = kallsyms_lookup_name(func_name);
2708         if (!addr) {
2709                 verbose(env, "cannot find address for kernel function %s\n",
2710                         func_name);
2711                 return -EINVAL;
2712         }
2713         specialize_kfunc(env, func_id, offset, &addr);
2714
2715         if (bpf_jit_supports_far_kfunc_call()) {
2716                 call_imm = func_id;
2717         } else {
2718                 call_imm = BPF_CALL_IMM(addr);
2719                 /* Check whether the relative offset overflows desc->imm */
2720                 if ((unsigned long)(s32)call_imm != call_imm) {
2721                         verbose(env, "address of kernel function %s is out of range\n",
2722                                 func_name);
2723                         return -EINVAL;
2724                 }
2725         }
2726
2727         if (bpf_dev_bound_kfunc_id(func_id)) {
2728                 err = bpf_dev_bound_kfunc_check(&env->log, prog_aux);
2729                 if (err)
2730                         return err;
2731         }
2732
2733         desc = &tab->descs[tab->nr_descs++];
2734         desc->func_id = func_id;
2735         desc->imm = call_imm;
2736         desc->offset = offset;
2737         desc->addr = addr;
2738         err = btf_distill_func_proto(&env->log, desc_btf,
2739                                      func_proto, func_name,
2740                                      &desc->func_model);
2741         if (!err)
2742                 sort(tab->descs, tab->nr_descs, sizeof(tab->descs[0]),
2743                      kfunc_desc_cmp_by_id_off, NULL);
2744         return err;
2745 }
2746
2747 static int kfunc_desc_cmp_by_imm_off(const void *a, const void *b)
2748 {
2749         const struct bpf_kfunc_desc *d0 = a;
2750         const struct bpf_kfunc_desc *d1 = b;
2751
2752         if (d0->imm != d1->imm)
2753                 return d0->imm < d1->imm ? -1 : 1;
2754         if (d0->offset != d1->offset)
2755                 return d0->offset < d1->offset ? -1 : 1;
2756         return 0;
2757 }
2758
2759 static void sort_kfunc_descs_by_imm_off(struct bpf_prog *prog)
2760 {
2761         struct bpf_kfunc_desc_tab *tab;
2762
2763         tab = prog->aux->kfunc_tab;
2764         if (!tab)
2765                 return;
2766
2767         sort(tab->descs, tab->nr_descs, sizeof(tab->descs[0]),
2768              kfunc_desc_cmp_by_imm_off, NULL);
2769 }
2770
2771 bool bpf_prog_has_kfunc_call(const struct bpf_prog *prog)
2772 {
2773         return !!prog->aux->kfunc_tab;
2774 }
2775
2776 const struct btf_func_model *
2777 bpf_jit_find_kfunc_model(const struct bpf_prog *prog,
2778                          const struct bpf_insn *insn)
2779 {
2780         const struct bpf_kfunc_desc desc = {
2781                 .imm = insn->imm,
2782                 .offset = insn->off,
2783         };
2784         const struct bpf_kfunc_desc *res;
2785         struct bpf_kfunc_desc_tab *tab;
2786
2787         tab = prog->aux->kfunc_tab;
2788         res = bsearch(&desc, tab->descs, tab->nr_descs,
2789                       sizeof(tab->descs[0]), kfunc_desc_cmp_by_imm_off);
2790
2791         return res ? &res->func_model : NULL;
2792 }
2793
2794 static int add_subprog_and_kfunc(struct bpf_verifier_env *env)
2795 {
2796         struct bpf_subprog_info *subprog = env->subprog_info;
2797         struct bpf_insn *insn = env->prog->insnsi;
2798         int i, ret, insn_cnt = env->prog->len;
2799
2800         /* Add entry function. */
2801         ret = add_subprog(env, 0);
2802         if (ret)
2803                 return ret;
2804
2805         for (i = 0; i < insn_cnt; i++, insn++) {
2806                 if (!bpf_pseudo_func(insn) && !bpf_pseudo_call(insn) &&
2807                     !bpf_pseudo_kfunc_call(insn))
2808                         continue;
2809
2810                 if (!env->bpf_capable) {
2811                         verbose(env, "loading/calling other bpf or kernel functions are allowed for CAP_BPF and CAP_SYS_ADMIN\n");
2812                         return -EPERM;
2813                 }
2814
2815                 if (bpf_pseudo_func(insn) || bpf_pseudo_call(insn))
2816                         ret = add_subprog(env, i + insn->imm + 1);
2817                 else
2818                         ret = add_kfunc_call(env, insn->imm, insn->off);
2819
2820                 if (ret < 0)
2821                         return ret;
2822         }
2823
2824         /* Add a fake 'exit' subprog which could simplify subprog iteration
2825          * logic. 'subprog_cnt' should not be increased.
2826          */
2827         subprog[env->subprog_cnt].start = insn_cnt;
2828
2829         if (env->log.level & BPF_LOG_LEVEL2)
2830                 for (i = 0; i < env->subprog_cnt; i++)
2831                         verbose(env, "func#%d @%d\n", i, subprog[i].start);
2832
2833         return 0;
2834 }
2835
2836 static int check_subprogs(struct bpf_verifier_env *env)
2837 {
2838         int i, subprog_start, subprog_end, off, cur_subprog = 0;
2839         struct bpf_subprog_info *subprog = env->subprog_info;
2840         struct bpf_insn *insn = env->prog->insnsi;
2841         int insn_cnt = env->prog->len;
2842
2843         /* now check that all jumps are within the same subprog */
2844         subprog_start = subprog[cur_subprog].start;
2845         subprog_end = subprog[cur_subprog + 1].start;
2846         for (i = 0; i < insn_cnt; i++) {
2847                 u8 code = insn[i].code;
2848
2849                 if (code == (BPF_JMP | BPF_CALL) &&
2850                     insn[i].src_reg == 0 &&
2851                     insn[i].imm == BPF_FUNC_tail_call)
2852                         subprog[cur_subprog].has_tail_call = true;
2853                 if (BPF_CLASS(code) == BPF_LD &&
2854                     (BPF_MODE(code) == BPF_ABS || BPF_MODE(code) == BPF_IND))
2855                         subprog[cur_subprog].has_ld_abs = true;
2856                 if (BPF_CLASS(code) != BPF_JMP && BPF_CLASS(code) != BPF_JMP32)
2857                         goto next;
2858                 if (BPF_OP(code) == BPF_EXIT || BPF_OP(code) == BPF_CALL)
2859                         goto next;
2860                 if (code == (BPF_JMP32 | BPF_JA))
2861                         off = i + insn[i].imm + 1;
2862                 else
2863                         off = i + insn[i].off + 1;
2864                 if (off < subprog_start || off >= subprog_end) {
2865                         verbose(env, "jump out of range from insn %d to %d\n", i, off);
2866                         return -EINVAL;
2867                 }
2868 next:
2869                 if (i == subprog_end - 1) {
2870                         /* to avoid fall-through from one subprog into another
2871                          * the last insn of the subprog should be either exit
2872                          * or unconditional jump back
2873                          */
2874                         if (code != (BPF_JMP | BPF_EXIT) &&
2875                             code != (BPF_JMP32 | BPF_JA) &&
2876                             code != (BPF_JMP | BPF_JA)) {
2877                                 verbose(env, "last insn is not an exit or jmp\n");
2878                                 return -EINVAL;
2879                         }
2880                         subprog_start = subprog_end;
2881                         cur_subprog++;
2882                         if (cur_subprog < env->subprog_cnt)
2883                                 subprog_end = subprog[cur_subprog + 1].start;
2884                 }
2885         }
2886         return 0;
2887 }
2888
2889 /* Parentage chain of this register (or stack slot) should take care of all
2890  * issues like callee-saved registers, stack slot allocation time, etc.
2891  */
2892 static int mark_reg_read(struct bpf_verifier_env *env,
2893                          const struct bpf_reg_state *state,
2894                          struct bpf_reg_state *parent, u8 flag)
2895 {
2896         bool writes = parent == state->parent; /* Observe write marks */
2897         int cnt = 0;
2898
2899         while (parent) {
2900                 /* if read wasn't screened by an earlier write ... */
2901                 if (writes && state->live & REG_LIVE_WRITTEN)
2902                         break;
2903                 if (parent->live & REG_LIVE_DONE) {
2904                         verbose(env, "verifier BUG type %s var_off %lld off %d\n",
2905                                 reg_type_str(env, parent->type),
2906                                 parent->var_off.value, parent->off);
2907                         return -EFAULT;
2908                 }
2909                 /* The first condition is more likely to be true than the
2910                  * second, checked it first.
2911                  */
2912                 if ((parent->live & REG_LIVE_READ) == flag ||
2913                     parent->live & REG_LIVE_READ64)
2914                         /* The parentage chain never changes and
2915                          * this parent was already marked as LIVE_READ.
2916                          * There is no need to keep walking the chain again and
2917                          * keep re-marking all parents as LIVE_READ.
2918                          * This case happens when the same register is read
2919                          * multiple times without writes into it in-between.
2920                          * Also, if parent has the stronger REG_LIVE_READ64 set,
2921                          * then no need to set the weak REG_LIVE_READ32.
2922                          */
2923                         break;
2924                 /* ... then we depend on parent's value */
2925                 parent->live |= flag;
2926                 /* REG_LIVE_READ64 overrides REG_LIVE_READ32. */
2927                 if (flag == REG_LIVE_READ64)
2928                         parent->live &= ~REG_LIVE_READ32;
2929                 state = parent;
2930                 parent = state->parent;
2931                 writes = true;
2932                 cnt++;
2933         }
2934
2935         if (env->longest_mark_read_walk < cnt)
2936                 env->longest_mark_read_walk = cnt;
2937         return 0;
2938 }
2939
2940 static int mark_dynptr_read(struct bpf_verifier_env *env, struct bpf_reg_state *reg)
2941 {
2942         struct bpf_func_state *state = func(env, reg);
2943         int spi, ret;
2944
2945         /* For CONST_PTR_TO_DYNPTR, it must have already been done by
2946          * check_reg_arg in check_helper_call and mark_btf_func_reg_size in
2947          * check_kfunc_call.
2948          */
2949         if (reg->type == CONST_PTR_TO_DYNPTR)
2950                 return 0;
2951         spi = dynptr_get_spi(env, reg);
2952         if (spi < 0)
2953                 return spi;
2954         /* Caller ensures dynptr is valid and initialized, which means spi is in
2955          * bounds and spi is the first dynptr slot. Simply mark stack slot as
2956          * read.
2957          */
2958         ret = mark_reg_read(env, &state->stack[spi].spilled_ptr,
2959                             state->stack[spi].spilled_ptr.parent, REG_LIVE_READ64);
2960         if (ret)
2961                 return ret;
2962         return mark_reg_read(env, &state->stack[spi - 1].spilled_ptr,
2963                              state->stack[spi - 1].spilled_ptr.parent, REG_LIVE_READ64);
2964 }
2965
2966 static int mark_iter_read(struct bpf_verifier_env *env, struct bpf_reg_state *reg,
2967                           int spi, int nr_slots)
2968 {
2969         struct bpf_func_state *state = func(env, reg);
2970         int err, i;
2971
2972         for (i = 0; i < nr_slots; i++) {
2973                 struct bpf_reg_state *st = &state->stack[spi - i].spilled_ptr;
2974
2975                 err = mark_reg_read(env, st, st->parent, REG_LIVE_READ64);
2976                 if (err)
2977                         return err;
2978
2979                 mark_stack_slot_scratched(env, spi - i);
2980         }
2981
2982         return 0;
2983 }
2984
2985 /* This function is supposed to be used by the following 32-bit optimization
2986  * code only. It returns TRUE if the source or destination register operates
2987  * on 64-bit, otherwise return FALSE.
2988  */
2989 static bool is_reg64(struct bpf_verifier_env *env, struct bpf_insn *insn,
2990                      u32 regno, struct bpf_reg_state *reg, enum reg_arg_type t)
2991 {
2992         u8 code, class, op;
2993
2994         code = insn->code;
2995         class = BPF_CLASS(code);
2996         op = BPF_OP(code);
2997         if (class == BPF_JMP) {
2998                 /* BPF_EXIT for "main" will reach here. Return TRUE
2999                  * conservatively.
3000                  */
3001                 if (op == BPF_EXIT)
3002                         return true;
3003                 if (op == BPF_CALL) {
3004                         /* BPF to BPF call will reach here because of marking
3005                          * caller saved clobber with DST_OP_NO_MARK for which we
3006                          * don't care the register def because they are anyway
3007                          * marked as NOT_INIT already.
3008                          */
3009                         if (insn->src_reg == BPF_PSEUDO_CALL)
3010                                 return false;
3011                         /* Helper call will reach here because of arg type
3012                          * check, conservatively return TRUE.
3013                          */
3014                         if (t == SRC_OP)
3015                                 return true;
3016
3017                         return false;
3018                 }
3019         }
3020
3021         if (class == BPF_ALU64 && op == BPF_END && (insn->imm == 16 || insn->imm == 32))
3022                 return false;
3023
3024         if (class == BPF_ALU64 || class == BPF_JMP ||
3025             (class == BPF_ALU && op == BPF_END && insn->imm == 64))
3026                 return true;
3027
3028         if (class == BPF_ALU || class == BPF_JMP32)
3029                 return false;
3030
3031         if (class == BPF_LDX) {
3032                 if (t != SRC_OP)
3033                         return BPF_SIZE(code) == BPF_DW;
3034                 /* LDX source must be ptr. */
3035                 return true;
3036         }
3037
3038         if (class == BPF_STX) {
3039                 /* BPF_STX (including atomic variants) has multiple source
3040                  * operands, one of which is a ptr. Check whether the caller is
3041                  * asking about it.
3042                  */
3043                 if (t == SRC_OP && reg->type != SCALAR_VALUE)
3044                         return true;
3045                 return BPF_SIZE(code) == BPF_DW;
3046         }
3047
3048         if (class == BPF_LD) {
3049                 u8 mode = BPF_MODE(code);
3050
3051                 /* LD_IMM64 */
3052                 if (mode == BPF_IMM)
3053                         return true;
3054
3055                 /* Both LD_IND and LD_ABS return 32-bit data. */
3056                 if (t != SRC_OP)
3057                         return  false;
3058
3059                 /* Implicit ctx ptr. */
3060                 if (regno == BPF_REG_6)
3061                         return true;
3062
3063                 /* Explicit source could be any width. */
3064                 return true;
3065         }
3066
3067         if (class == BPF_ST)
3068                 /* The only source register for BPF_ST is a ptr. */
3069                 return true;
3070
3071         /* Conservatively return true at default. */
3072         return true;
3073 }
3074
3075 /* Return the regno defined by the insn, or -1. */
3076 static int insn_def_regno(const struct bpf_insn *insn)
3077 {
3078         switch (BPF_CLASS(insn->code)) {
3079         case BPF_JMP:
3080         case BPF_JMP32:
3081         case BPF_ST:
3082                 return -1;
3083         case BPF_STX:
3084                 if (BPF_MODE(insn->code) == BPF_ATOMIC &&
3085                     (insn->imm & BPF_FETCH)) {
3086                         if (insn->imm == BPF_CMPXCHG)
3087                                 return BPF_REG_0;
3088                         else
3089                                 return insn->src_reg;
3090                 } else {
3091                         return -1;
3092                 }
3093         default:
3094                 return insn->dst_reg;
3095         }
3096 }
3097
3098 /* Return TRUE if INSN has defined any 32-bit value explicitly. */
3099 static bool insn_has_def32(struct bpf_verifier_env *env, struct bpf_insn *insn)
3100 {
3101         int dst_reg = insn_def_regno(insn);
3102
3103         if (dst_reg == -1)
3104                 return false;
3105
3106         return !is_reg64(env, insn, dst_reg, NULL, DST_OP);
3107 }
3108
3109 static void mark_insn_zext(struct bpf_verifier_env *env,
3110                            struct bpf_reg_state *reg)
3111 {
3112         s32 def_idx = reg->subreg_def;
3113
3114         if (def_idx == DEF_NOT_SUBREG)
3115                 return;
3116
3117         env->insn_aux_data[def_idx - 1].zext_dst = true;
3118         /* The dst will be zero extended, so won't be sub-register anymore. */
3119         reg->subreg_def = DEF_NOT_SUBREG;
3120 }
3121
3122 static int check_reg_arg(struct bpf_verifier_env *env, u32 regno,
3123                          enum reg_arg_type t)
3124 {
3125         struct bpf_verifier_state *vstate = env->cur_state;
3126         struct bpf_func_state *state = vstate->frame[vstate->curframe];
3127         struct bpf_insn *insn = env->prog->insnsi + env->insn_idx;
3128         struct bpf_reg_state *reg, *regs = state->regs;
3129         bool rw64;
3130
3131         if (regno >= MAX_BPF_REG) {
3132                 verbose(env, "R%d is invalid\n", regno);
3133                 return -EINVAL;
3134         }
3135
3136         mark_reg_scratched(env, regno);
3137
3138         reg = &regs[regno];
3139         rw64 = is_reg64(env, insn, regno, reg, t);
3140         if (t == SRC_OP) {
3141                 /* check whether register used as source operand can be read */
3142                 if (reg->type == NOT_INIT) {
3143                         verbose(env, "R%d !read_ok\n", regno);
3144                         return -EACCES;
3145                 }
3146                 /* We don't need to worry about FP liveness because it's read-only */
3147                 if (regno == BPF_REG_FP)
3148                         return 0;
3149
3150                 if (rw64)
3151                         mark_insn_zext(env, reg);
3152
3153                 return mark_reg_read(env, reg, reg->parent,
3154                                      rw64 ? REG_LIVE_READ64 : REG_LIVE_READ32);
3155         } else {
3156                 /* check whether register used as dest operand can be written to */
3157                 if (regno == BPF_REG_FP) {
3158                         verbose(env, "frame pointer is read only\n");
3159                         return -EACCES;
3160                 }
3161                 reg->live |= REG_LIVE_WRITTEN;
3162                 reg->subreg_def = rw64 ? DEF_NOT_SUBREG : env->insn_idx + 1;
3163                 if (t == DST_OP)
3164                         mark_reg_unknown(env, regs, regno);
3165         }
3166         return 0;
3167 }
3168
3169 static void mark_jmp_point(struct bpf_verifier_env *env, int idx)
3170 {
3171         env->insn_aux_data[idx].jmp_point = true;
3172 }
3173
3174 static bool is_jmp_point(struct bpf_verifier_env *env, int insn_idx)
3175 {
3176         return env->insn_aux_data[insn_idx].jmp_point;
3177 }
3178
3179 /* for any branch, call, exit record the history of jmps in the given state */
3180 static int push_jmp_history(struct bpf_verifier_env *env,
3181                             struct bpf_verifier_state *cur)
3182 {
3183         u32 cnt = cur->jmp_history_cnt;
3184         struct bpf_idx_pair *p;
3185         size_t alloc_size;
3186
3187         if (!is_jmp_point(env, env->insn_idx))
3188                 return 0;
3189
3190         cnt++;
3191         alloc_size = kmalloc_size_roundup(size_mul(cnt, sizeof(*p)));
3192         p = krealloc(cur->jmp_history, alloc_size, GFP_USER);
3193         if (!p)
3194                 return -ENOMEM;
3195         p[cnt - 1].idx = env->insn_idx;
3196         p[cnt - 1].prev_idx = env->prev_insn_idx;
3197         cur->jmp_history = p;
3198         cur->jmp_history_cnt = cnt;
3199         return 0;
3200 }
3201
3202 /* Backtrack one insn at a time. If idx is not at the top of recorded
3203  * history then previous instruction came from straight line execution.
3204  * Return -ENOENT if we exhausted all instructions within given state.
3205  *
3206  * It's legal to have a bit of a looping with the same starting and ending
3207  * insn index within the same state, e.g.: 3->4->5->3, so just because current
3208  * instruction index is the same as state's first_idx doesn't mean we are
3209  * done. If there is still some jump history left, we should keep going. We
3210  * need to take into account that we might have a jump history between given
3211  * state's parent and itself, due to checkpointing. In this case, we'll have
3212  * history entry recording a jump from last instruction of parent state and
3213  * first instruction of given state.
3214  */
3215 static int get_prev_insn_idx(struct bpf_verifier_state *st, int i,
3216                              u32 *history)
3217 {
3218         u32 cnt = *history;
3219
3220         if (i == st->first_insn_idx) {
3221                 if (cnt == 0)
3222                         return -ENOENT;
3223                 if (cnt == 1 && st->jmp_history[0].idx == i)
3224                         return -ENOENT;
3225         }
3226
3227         if (cnt && st->jmp_history[cnt - 1].idx == i) {
3228                 i = st->jmp_history[cnt - 1].prev_idx;
3229                 (*history)--;
3230         } else {
3231                 i--;
3232         }
3233         return i;
3234 }
3235
3236 static const char *disasm_kfunc_name(void *data, const struct bpf_insn *insn)
3237 {
3238         const struct btf_type *func;
3239         struct btf *desc_btf;
3240
3241         if (insn->src_reg != BPF_PSEUDO_KFUNC_CALL)
3242                 return NULL;
3243
3244         desc_btf = find_kfunc_desc_btf(data, insn->off);
3245         if (IS_ERR(desc_btf))
3246                 return "<error>";
3247
3248         func = btf_type_by_id(desc_btf, insn->imm);
3249         return btf_name_by_offset(desc_btf, func->name_off);
3250 }
3251
3252 static inline void bt_init(struct backtrack_state *bt, u32 frame)
3253 {
3254         bt->frame = frame;
3255 }
3256
3257 static inline void bt_reset(struct backtrack_state *bt)
3258 {
3259         struct bpf_verifier_env *env = bt->env;
3260
3261         memset(bt, 0, sizeof(*bt));
3262         bt->env = env;
3263 }
3264
3265 static inline u32 bt_empty(struct backtrack_state *bt)
3266 {
3267         u64 mask = 0;
3268         int i;
3269
3270         for (i = 0; i <= bt->frame; i++)
3271                 mask |= bt->reg_masks[i] | bt->stack_masks[i];
3272
3273         return mask == 0;
3274 }
3275
3276 static inline int bt_subprog_enter(struct backtrack_state *bt)
3277 {
3278         if (bt->frame == MAX_CALL_FRAMES - 1) {
3279                 verbose(bt->env, "BUG subprog enter from frame %d\n", bt->frame);
3280                 WARN_ONCE(1, "verifier backtracking bug");
3281                 return -EFAULT;
3282         }
3283         bt->frame++;
3284         return 0;
3285 }
3286
3287 static inline int bt_subprog_exit(struct backtrack_state *bt)
3288 {
3289         if (bt->frame == 0) {
3290                 verbose(bt->env, "BUG subprog exit from frame 0\n");
3291                 WARN_ONCE(1, "verifier backtracking bug");
3292                 return -EFAULT;
3293         }
3294         bt->frame--;
3295         return 0;
3296 }
3297
3298 static inline void bt_set_frame_reg(struct backtrack_state *bt, u32 frame, u32 reg)
3299 {
3300         bt->reg_masks[frame] |= 1 << reg;
3301 }
3302
3303 static inline void bt_clear_frame_reg(struct backtrack_state *bt, u32 frame, u32 reg)
3304 {
3305         bt->reg_masks[frame] &= ~(1 << reg);
3306 }
3307
3308 static inline void bt_set_reg(struct backtrack_state *bt, u32 reg)
3309 {
3310         bt_set_frame_reg(bt, bt->frame, reg);
3311 }
3312
3313 static inline void bt_clear_reg(struct backtrack_state *bt, u32 reg)
3314 {
3315         bt_clear_frame_reg(bt, bt->frame, reg);
3316 }
3317
3318 static inline void bt_set_frame_slot(struct backtrack_state *bt, u32 frame, u32 slot)
3319 {
3320         bt->stack_masks[frame] |= 1ull << slot;
3321 }
3322
3323 static inline void bt_clear_frame_slot(struct backtrack_state *bt, u32 frame, u32 slot)
3324 {
3325         bt->stack_masks[frame] &= ~(1ull << slot);
3326 }
3327
3328 static inline void bt_set_slot(struct backtrack_state *bt, u32 slot)
3329 {
3330         bt_set_frame_slot(bt, bt->frame, slot);
3331 }
3332
3333 static inline void bt_clear_slot(struct backtrack_state *bt, u32 slot)
3334 {
3335         bt_clear_frame_slot(bt, bt->frame, slot);
3336 }
3337
3338 static inline u32 bt_frame_reg_mask(struct backtrack_state *bt, u32 frame)
3339 {
3340         return bt->reg_masks[frame];
3341 }
3342
3343 static inline u32 bt_reg_mask(struct backtrack_state *bt)
3344 {
3345         return bt->reg_masks[bt->frame];
3346 }
3347
3348 static inline u64 bt_frame_stack_mask(struct backtrack_state *bt, u32 frame)
3349 {
3350         return bt->stack_masks[frame];
3351 }
3352
3353 static inline u64 bt_stack_mask(struct backtrack_state *bt)
3354 {
3355         return bt->stack_masks[bt->frame];
3356 }
3357
3358 static inline bool bt_is_reg_set(struct backtrack_state *bt, u32 reg)
3359 {
3360         return bt->reg_masks[bt->frame] & (1 << reg);
3361 }
3362
3363 static inline bool bt_is_slot_set(struct backtrack_state *bt, u32 slot)
3364 {
3365         return bt->stack_masks[bt->frame] & (1ull << slot);
3366 }
3367
3368 /* format registers bitmask, e.g., "r0,r2,r4" for 0x15 mask */
3369 static void fmt_reg_mask(char *buf, ssize_t buf_sz, u32 reg_mask)
3370 {
3371         DECLARE_BITMAP(mask, 64);
3372         bool first = true;
3373         int i, n;
3374
3375         buf[0] = '\0';
3376
3377         bitmap_from_u64(mask, reg_mask);
3378         for_each_set_bit(i, mask, 32) {
3379                 n = snprintf(buf, buf_sz, "%sr%d", first ? "" : ",", i);
3380                 first = false;
3381                 buf += n;
3382                 buf_sz -= n;
3383                 if (buf_sz < 0)
3384                         break;
3385         }
3386 }
3387 /* format stack slots bitmask, e.g., "-8,-24,-40" for 0x15 mask */
3388 static void fmt_stack_mask(char *buf, ssize_t buf_sz, u64 stack_mask)
3389 {
3390         DECLARE_BITMAP(mask, 64);
3391         bool first = true;
3392         int i, n;
3393
3394         buf[0] = '\0';
3395
3396         bitmap_from_u64(mask, stack_mask);
3397         for_each_set_bit(i, mask, 64) {
3398                 n = snprintf(buf, buf_sz, "%s%d", first ? "" : ",", -(i + 1) * 8);
3399                 first = false;
3400                 buf += n;
3401                 buf_sz -= n;
3402                 if (buf_sz < 0)
3403                         break;
3404         }
3405 }
3406
3407 /* For given verifier state backtrack_insn() is called from the last insn to
3408  * the first insn. Its purpose is to compute a bitmask of registers and
3409  * stack slots that needs precision in the parent verifier state.
3410  *
3411  * @idx is an index of the instruction we are currently processing;
3412  * @subseq_idx is an index of the subsequent instruction that:
3413  *   - *would be* executed next, if jump history is viewed in forward order;
3414  *   - *was* processed previously during backtracking.
3415  */
3416 static int backtrack_insn(struct bpf_verifier_env *env, int idx, int subseq_idx,
3417                           struct backtrack_state *bt)
3418 {
3419         const struct bpf_insn_cbs cbs = {
3420                 .cb_call        = disasm_kfunc_name,
3421                 .cb_print       = verbose,
3422                 .private_data   = env,
3423         };
3424         struct bpf_insn *insn = env->prog->insnsi + idx;
3425         u8 class = BPF_CLASS(insn->code);
3426         u8 opcode = BPF_OP(insn->code);
3427         u8 mode = BPF_MODE(insn->code);
3428         u32 dreg = insn->dst_reg;
3429         u32 sreg = insn->src_reg;
3430         u32 spi, i;
3431
3432         if (insn->code == 0)
3433                 return 0;
3434         if (env->log.level & BPF_LOG_LEVEL2) {
3435                 fmt_reg_mask(env->tmp_str_buf, TMP_STR_BUF_LEN, bt_reg_mask(bt));
3436                 verbose(env, "mark_precise: frame%d: regs=%s ",
3437                         bt->frame, env->tmp_str_buf);
3438                 fmt_stack_mask(env->tmp_str_buf, TMP_STR_BUF_LEN, bt_stack_mask(bt));
3439                 verbose(env, "stack=%s before ", env->tmp_str_buf);
3440                 verbose(env, "%d: ", idx);
3441                 print_bpf_insn(&cbs, insn, env->allow_ptr_leaks);
3442         }
3443
3444         if (class == BPF_ALU || class == BPF_ALU64) {
3445                 if (!bt_is_reg_set(bt, dreg))
3446                         return 0;
3447                 if (opcode == BPF_END || opcode == BPF_NEG) {
3448                         /* sreg is reserved and unused
3449                          * dreg still need precision before this insn
3450                          */
3451                         return 0;
3452                 } else if (opcode == BPF_MOV) {
3453                         if (BPF_SRC(insn->code) == BPF_X) {
3454                                 /* dreg = sreg or dreg = (s8, s16, s32)sreg
3455                                  * dreg needs precision after this insn
3456                                  * sreg needs precision before this insn
3457                                  */
3458                                 bt_clear_reg(bt, dreg);
3459                                 bt_set_reg(bt, sreg);
3460                         } else {
3461                                 /* dreg = K
3462                                  * dreg needs precision after this insn.
3463                                  * Corresponding register is already marked
3464                                  * as precise=true in this verifier state.
3465                                  * No further markings in parent are necessary
3466                                  */
3467                                 bt_clear_reg(bt, dreg);
3468                         }
3469                 } else {
3470                         if (BPF_SRC(insn->code) == BPF_X) {
3471                                 /* dreg += sreg
3472                                  * both dreg and sreg need precision
3473                                  * before this insn
3474                                  */
3475                                 bt_set_reg(bt, sreg);
3476                         } /* else dreg += K
3477                            * dreg still needs precision before this insn
3478                            */
3479                 }
3480         } else if (class == BPF_LDX) {
3481                 if (!bt_is_reg_set(bt, dreg))
3482                         return 0;
3483                 bt_clear_reg(bt, dreg);
3484
3485                 /* scalars can only be spilled into stack w/o losing precision.
3486                  * Load from any other memory can be zero extended.
3487                  * The desire to keep that precision is already indicated
3488                  * by 'precise' mark in corresponding register of this state.
3489                  * No further tracking necessary.
3490                  */
3491                 if (insn->src_reg != BPF_REG_FP)
3492                         return 0;
3493
3494                 /* dreg = *(u64 *)[fp - off] was a fill from the stack.
3495                  * that [fp - off] slot contains scalar that needs to be
3496                  * tracked with precision
3497                  */
3498                 spi = (-insn->off - 1) / BPF_REG_SIZE;
3499                 if (spi >= 64) {
3500                         verbose(env, "BUG spi %d\n", spi);
3501                         WARN_ONCE(1, "verifier backtracking bug");
3502                         return -EFAULT;
3503                 }
3504                 bt_set_slot(bt, spi);
3505         } else if (class == BPF_STX || class == BPF_ST) {
3506                 if (bt_is_reg_set(bt, dreg))
3507                         /* stx & st shouldn't be using _scalar_ dst_reg
3508                          * to access memory. It means backtracking
3509                          * encountered a case of pointer subtraction.
3510                          */
3511                         return -ENOTSUPP;
3512                 /* scalars can only be spilled into stack */
3513                 if (insn->dst_reg != BPF_REG_FP)
3514                         return 0;
3515                 spi = (-insn->off - 1) / BPF_REG_SIZE;
3516                 if (spi >= 64) {
3517                         verbose(env, "BUG spi %d\n", spi);
3518                         WARN_ONCE(1, "verifier backtracking bug");
3519                         return -EFAULT;
3520                 }
3521                 if (!bt_is_slot_set(bt, spi))
3522                         return 0;
3523                 bt_clear_slot(bt, spi);
3524                 if (class == BPF_STX)
3525                         bt_set_reg(bt, sreg);
3526         } else if (class == BPF_JMP || class == BPF_JMP32) {
3527                 if (bpf_pseudo_call(insn)) {
3528                         int subprog_insn_idx, subprog;
3529
3530                         subprog_insn_idx = idx + insn->imm + 1;
3531                         subprog = find_subprog(env, subprog_insn_idx);
3532                         if (subprog < 0)
3533                                 return -EFAULT;
3534
3535                         if (subprog_is_global(env, subprog)) {
3536                                 /* check that jump history doesn't have any
3537                                  * extra instructions from subprog; the next
3538                                  * instruction after call to global subprog
3539                                  * should be literally next instruction in
3540                                  * caller program
3541                                  */
3542                                 WARN_ONCE(idx + 1 != subseq_idx, "verifier backtracking bug");
3543                                 /* r1-r5 are invalidated after subprog call,
3544                                  * so for global func call it shouldn't be set
3545                                  * anymore
3546                                  */
3547                                 if (bt_reg_mask(bt) & BPF_REGMASK_ARGS) {
3548                                         verbose(env, "BUG regs %x\n", bt_reg_mask(bt));
3549                                         WARN_ONCE(1, "verifier backtracking bug");
3550                                         return -EFAULT;
3551                                 }
3552                                 /* global subprog always sets R0 */
3553                                 bt_clear_reg(bt, BPF_REG_0);
3554                                 return 0;
3555                         } else {
3556                                 /* static subprog call instruction, which
3557                                  * means that we are exiting current subprog,
3558                                  * so only r1-r5 could be still requested as
3559                                  * precise, r0 and r6-r10 or any stack slot in
3560                                  * the current frame should be zero by now
3561                                  */
3562                                 if (bt_reg_mask(bt) & ~BPF_REGMASK_ARGS) {
3563                                         verbose(env, "BUG regs %x\n", bt_reg_mask(bt));
3564                                         WARN_ONCE(1, "verifier backtracking bug");
3565                                         return -EFAULT;
3566                                 }
3567                                 /* we don't track register spills perfectly,
3568                                  * so fallback to force-precise instead of failing */
3569                                 if (bt_stack_mask(bt) != 0)
3570                                         return -ENOTSUPP;
3571                                 /* propagate r1-r5 to the caller */
3572                                 for (i = BPF_REG_1; i <= BPF_REG_5; i++) {
3573                                         if (bt_is_reg_set(bt, i)) {
3574                                                 bt_clear_reg(bt, i);
3575                                                 bt_set_frame_reg(bt, bt->frame - 1, i);
3576                                         }
3577                                 }
3578                                 if (bt_subprog_exit(bt))
3579                                         return -EFAULT;
3580                                 return 0;
3581                         }
3582                 } else if ((bpf_helper_call(insn) &&
3583                             is_callback_calling_function(insn->imm) &&
3584                             !is_async_callback_calling_function(insn->imm)) ||
3585                            (bpf_pseudo_kfunc_call(insn) && is_callback_calling_kfunc(insn->imm))) {
3586                         /* callback-calling helper or kfunc call, which means
3587                          * we are exiting from subprog, but unlike the subprog
3588                          * call handling above, we shouldn't propagate
3589                          * precision of r1-r5 (if any requested), as they are
3590                          * not actually arguments passed directly to callback
3591                          * subprogs
3592                          */
3593                         if (bt_reg_mask(bt) & ~BPF_REGMASK_ARGS) {
3594                                 verbose(env, "BUG regs %x\n", bt_reg_mask(bt));
3595                                 WARN_ONCE(1, "verifier backtracking bug");
3596                                 return -EFAULT;
3597                         }
3598                         if (bt_stack_mask(bt) != 0)
3599                                 return -ENOTSUPP;
3600                         /* clear r1-r5 in callback subprog's mask */
3601                         for (i = BPF_REG_1; i <= BPF_REG_5; i++)
3602                                 bt_clear_reg(bt, i);
3603                         if (bt_subprog_exit(bt))
3604                                 return -EFAULT;
3605                         return 0;
3606                 } else if (opcode == BPF_CALL) {
3607                         /* kfunc with imm==0 is invalid and fixup_kfunc_call will
3608                          * catch this error later. Make backtracking conservative
3609                          * with ENOTSUPP.
3610                          */
3611                         if (insn->src_reg == BPF_PSEUDO_KFUNC_CALL && insn->imm == 0)
3612                                 return -ENOTSUPP;
3613                         /* regular helper call sets R0 */
3614                         bt_clear_reg(bt, BPF_REG_0);
3615                         if (bt_reg_mask(bt) & BPF_REGMASK_ARGS) {
3616                                 /* if backtracing was looking for registers R1-R5
3617                                  * they should have been found already.
3618                                  */
3619                                 verbose(env, "BUG regs %x\n", bt_reg_mask(bt));
3620                                 WARN_ONCE(1, "verifier backtracking bug");
3621                                 return -EFAULT;
3622                         }
3623                 } else if (opcode == BPF_EXIT) {
3624                         bool r0_precise;
3625
3626                         if (bt_reg_mask(bt) & BPF_REGMASK_ARGS) {
3627                                 /* if backtracing was looking for registers R1-R5
3628                                  * they should have been found already.
3629                                  */
3630                                 verbose(env, "BUG regs %x\n", bt_reg_mask(bt));
3631                                 WARN_ONCE(1, "verifier backtracking bug");
3632                                 return -EFAULT;
3633                         }
3634
3635                         /* BPF_EXIT in subprog or callback always returns
3636                          * right after the call instruction, so by checking
3637                          * whether the instruction at subseq_idx-1 is subprog
3638                          * call or not we can distinguish actual exit from
3639                          * *subprog* from exit from *callback*. In the former
3640                          * case, we need to propagate r0 precision, if
3641                          * necessary. In the former we never do that.
3642                          */
3643                         r0_precise = subseq_idx - 1 >= 0 &&
3644                                      bpf_pseudo_call(&env->prog->insnsi[subseq_idx - 1]) &&
3645                                      bt_is_reg_set(bt, BPF_REG_0);
3646
3647                         bt_clear_reg(bt, BPF_REG_0);
3648                         if (bt_subprog_enter(bt))
3649                                 return -EFAULT;
3650
3651                         if (r0_precise)
3652                                 bt_set_reg(bt, BPF_REG_0);
3653                         /* r6-r9 and stack slots will stay set in caller frame
3654                          * bitmasks until we return back from callee(s)
3655                          */
3656                         return 0;
3657                 } else if (BPF_SRC(insn->code) == BPF_X) {
3658                         if (!bt_is_reg_set(bt, dreg) && !bt_is_reg_set(bt, sreg))
3659                                 return 0;
3660                         /* dreg <cond> sreg
3661                          * Both dreg and sreg need precision before
3662                          * this insn. If only sreg was marked precise
3663                          * before it would be equally necessary to
3664                          * propagate it to dreg.
3665                          */
3666                         bt_set_reg(bt, dreg);
3667                         bt_set_reg(bt, sreg);
3668                          /* else dreg <cond> K
3669                           * Only dreg still needs precision before
3670                           * this insn, so for the K-based conditional
3671                           * there is nothing new to be marked.
3672                           */
3673                 }
3674         } else if (class == BPF_LD) {
3675                 if (!bt_is_reg_set(bt, dreg))
3676                         return 0;
3677                 bt_clear_reg(bt, dreg);
3678                 /* It's ld_imm64 or ld_abs or ld_ind.
3679                  * For ld_imm64 no further tracking of precision
3680                  * into parent is necessary
3681                  */
3682                 if (mode == BPF_IND || mode == BPF_ABS)
3683                         /* to be analyzed */
3684                         return -ENOTSUPP;
3685         }
3686         return 0;
3687 }
3688
3689 /* the scalar precision tracking algorithm:
3690  * . at the start all registers have precise=false.
3691  * . scalar ranges are tracked as normal through alu and jmp insns.
3692  * . once precise value of the scalar register is used in:
3693  *   .  ptr + scalar alu
3694  *   . if (scalar cond K|scalar)
3695  *   .  helper_call(.., scalar, ...) where ARG_CONST is expected
3696  *   backtrack through the verifier states and mark all registers and
3697  *   stack slots with spilled constants that these scalar regisers
3698  *   should be precise.
3699  * . during state pruning two registers (or spilled stack slots)
3700  *   are equivalent if both are not precise.
3701  *
3702  * Note the verifier cannot simply walk register parentage chain,
3703  * since many different registers and stack slots could have been
3704  * used to compute single precise scalar.
3705  *
3706  * The approach of starting with precise=true for all registers and then
3707  * backtrack to mark a register as not precise when the verifier detects
3708  * that program doesn't care about specific value (e.g., when helper
3709  * takes register as ARG_ANYTHING parameter) is not safe.
3710  *
3711  * It's ok to walk single parentage chain of the verifier states.
3712  * It's possible that this backtracking will go all the way till 1st insn.
3713  * All other branches will be explored for needing precision later.
3714  *
3715  * The backtracking needs to deal with cases like:
3716  *   R8=map_value(id=0,off=0,ks=4,vs=1952,imm=0) R9_w=map_value(id=0,off=40,ks=4,vs=1952,imm=0)
3717  * r9 -= r8
3718  * r5 = r9
3719  * if r5 > 0x79f goto pc+7
3720  *    R5_w=inv(id=0,umax_value=1951,var_off=(0x0; 0x7ff))
3721  * r5 += 1
3722  * ...
3723  * call bpf_perf_event_output#25
3724  *   where .arg5_type = ARG_CONST_SIZE_OR_ZERO
3725  *
3726  * and this case:
3727  * r6 = 1
3728  * call foo // uses callee's r6 inside to compute r0
3729  * r0 += r6
3730  * if r0 == 0 goto
3731  *
3732  * to track above reg_mask/stack_mask needs to be independent for each frame.
3733  *
3734  * Also if parent's curframe > frame where backtracking started,
3735  * the verifier need to mark registers in both frames, otherwise callees
3736  * may incorrectly prune callers. This is similar to
3737  * commit 7640ead93924 ("bpf: verifier: make sure callees don't prune with caller differences")
3738  *
3739  * For now backtracking falls back into conservative marking.
3740  */
3741 static void mark_all_scalars_precise(struct bpf_verifier_env *env,
3742                                      struct bpf_verifier_state *st)
3743 {
3744         struct bpf_func_state *func;
3745         struct bpf_reg_state *reg;
3746         int i, j;
3747
3748         if (env->log.level & BPF_LOG_LEVEL2) {
3749                 verbose(env, "mark_precise: frame%d: falling back to forcing all scalars precise\n",
3750                         st->curframe);
3751         }
3752
3753         /* big hammer: mark all scalars precise in this path.
3754          * pop_stack may still get !precise scalars.
3755          * We also skip current state and go straight to first parent state,
3756          * because precision markings in current non-checkpointed state are
3757          * not needed. See why in the comment in __mark_chain_precision below.
3758          */
3759         for (st = st->parent; st; st = st->parent) {
3760                 for (i = 0; i <= st->curframe; i++) {
3761                         func = st->frame[i];
3762                         for (j = 0; j < BPF_REG_FP; j++) {
3763                                 reg = &func->regs[j];
3764                                 if (reg->type != SCALAR_VALUE || reg->precise)
3765                                         continue;
3766                                 reg->precise = true;
3767                                 if (env->log.level & BPF_LOG_LEVEL2) {
3768                                         verbose(env, "force_precise: frame%d: forcing r%d to be precise\n",
3769                                                 i, j);
3770                                 }
3771                         }
3772                         for (j = 0; j < func->allocated_stack / BPF_REG_SIZE; j++) {
3773                                 if (!is_spilled_reg(&func->stack[j]))
3774                                         continue;
3775                                 reg = &func->stack[j].spilled_ptr;
3776                                 if (reg->type != SCALAR_VALUE || reg->precise)
3777                                         continue;
3778                                 reg->precise = true;
3779                                 if (env->log.level & BPF_LOG_LEVEL2) {
3780                                         verbose(env, "force_precise: frame%d: forcing fp%d to be precise\n",
3781                                                 i, -(j + 1) * 8);
3782                                 }
3783                         }
3784                 }
3785         }
3786 }
3787
3788 static void mark_all_scalars_imprecise(struct bpf_verifier_env *env, struct bpf_verifier_state *st)
3789 {
3790         struct bpf_func_state *func;
3791         struct bpf_reg_state *reg;
3792         int i, j;
3793
3794         for (i = 0; i <= st->curframe; i++) {
3795                 func = st->frame[i];
3796                 for (j = 0; j < BPF_REG_FP; j++) {
3797                         reg = &func->regs[j];
3798                         if (reg->type != SCALAR_VALUE)
3799                                 continue;
3800                         reg->precise = false;
3801                 }
3802                 for (j = 0; j < func->allocated_stack / BPF_REG_SIZE; j++) {
3803                         if (!is_spilled_reg(&func->stack[j]))
3804                                 continue;
3805                         reg = &func->stack[j].spilled_ptr;
3806                         if (reg->type != SCALAR_VALUE)
3807                                 continue;
3808                         reg->precise = false;
3809                 }
3810         }
3811 }
3812
3813 static bool idset_contains(struct bpf_idset *s, u32 id)
3814 {
3815         u32 i;
3816
3817         for (i = 0; i < s->count; ++i)
3818                 if (s->ids[i] == id)
3819                         return true;
3820
3821         return false;
3822 }
3823
3824 static int idset_push(struct bpf_idset *s, u32 id)
3825 {
3826         if (WARN_ON_ONCE(s->count >= ARRAY_SIZE(s->ids)))
3827                 return -EFAULT;
3828         s->ids[s->count++] = id;
3829         return 0;
3830 }
3831
3832 static void idset_reset(struct bpf_idset *s)
3833 {
3834         s->count = 0;
3835 }
3836
3837 /* Collect a set of IDs for all registers currently marked as precise in env->bt.
3838  * Mark all registers with these IDs as precise.
3839  */
3840 static int mark_precise_scalar_ids(struct bpf_verifier_env *env, struct bpf_verifier_state *st)
3841 {
3842         struct bpf_idset *precise_ids = &env->idset_scratch;
3843         struct backtrack_state *bt = &env->bt;
3844         struct bpf_func_state *func;
3845         struct bpf_reg_state *reg;
3846         DECLARE_BITMAP(mask, 64);
3847         int i, fr;
3848
3849         idset_reset(precise_ids);
3850
3851         for (fr = bt->frame; fr >= 0; fr--) {
3852                 func = st->frame[fr];
3853
3854                 bitmap_from_u64(mask, bt_frame_reg_mask(bt, fr));
3855                 for_each_set_bit(i, mask, 32) {
3856                         reg = &func->regs[i];
3857                         if (!reg->id || reg->type != SCALAR_VALUE)
3858                                 continue;
3859                         if (idset_push(precise_ids, reg->id))
3860                                 return -EFAULT;
3861                 }
3862
3863                 bitmap_from_u64(mask, bt_frame_stack_mask(bt, fr));
3864                 for_each_set_bit(i, mask, 64) {
3865                         if (i >= func->allocated_stack / BPF_REG_SIZE)
3866                                 break;
3867                         if (!is_spilled_scalar_reg(&func->stack[i]))
3868                                 continue;
3869                         reg = &func->stack[i].spilled_ptr;
3870                         if (!reg->id)
3871                                 continue;
3872                         if (idset_push(precise_ids, reg->id))
3873                                 return -EFAULT;
3874                 }
3875         }
3876
3877         for (fr = 0; fr <= st->curframe; ++fr) {
3878                 func = st->frame[fr];
3879
3880                 for (i = BPF_REG_0; i < BPF_REG_10; ++i) {
3881                         reg = &func->regs[i];
3882                         if (!reg->id)
3883                                 continue;
3884                         if (!idset_contains(precise_ids, reg->id))
3885                                 continue;
3886                         bt_set_frame_reg(bt, fr, i);
3887                 }
3888                 for (i = 0; i < func->allocated_stack / BPF_REG_SIZE; ++i) {
3889                         if (!is_spilled_scalar_reg(&func->stack[i]))
3890                                 continue;
3891                         reg = &func->stack[i].spilled_ptr;
3892                         if (!reg->id)
3893                                 continue;
3894                         if (!idset_contains(precise_ids, reg->id))
3895                                 continue;
3896                         bt_set_frame_slot(bt, fr, i);
3897                 }
3898         }
3899
3900         return 0;
3901 }
3902
3903 /*
3904  * __mark_chain_precision() backtracks BPF program instruction sequence and
3905  * chain of verifier states making sure that register *regno* (if regno >= 0)
3906  * and/or stack slot *spi* (if spi >= 0) are marked as precisely tracked
3907  * SCALARS, as well as any other registers and slots that contribute to
3908  * a tracked state of given registers/stack slots, depending on specific BPF
3909  * assembly instructions (see backtrack_insns() for exact instruction handling
3910  * logic). This backtracking relies on recorded jmp_history and is able to
3911  * traverse entire chain of parent states. This process ends only when all the
3912  * necessary registers/slots and their transitive dependencies are marked as
3913  * precise.
3914  *
3915  * One important and subtle aspect is that precise marks *do not matter* in
3916  * the currently verified state (current state). It is important to understand
3917  * why this is the case.
3918  *
3919  * First, note that current state is the state that is not yet "checkpointed",
3920  * i.e., it is not yet put into env->explored_states, and it has no children
3921  * states as well. It's ephemeral, and can end up either a) being discarded if
3922  * compatible explored state is found at some point or BPF_EXIT instruction is
3923  * reached or b) checkpointed and put into env->explored_states, branching out
3924  * into one or more children states.
3925  *
3926  * In the former case, precise markings in current state are completely
3927  * ignored by state comparison code (see regsafe() for details). Only
3928  * checkpointed ("old") state precise markings are important, and if old
3929  * state's register/slot is precise, regsafe() assumes current state's
3930  * register/slot as precise and checks value ranges exactly and precisely. If
3931  * states turn out to be compatible, current state's necessary precise
3932  * markings and any required parent states' precise markings are enforced
3933  * after the fact with propagate_precision() logic, after the fact. But it's
3934  * important to realize that in this case, even after marking current state
3935  * registers/slots as precise, we immediately discard current state. So what
3936  * actually matters is any of the precise markings propagated into current
3937  * state's parent states, which are always checkpointed (due to b) case above).
3938  * As such, for scenario a) it doesn't matter if current state has precise
3939  * markings set or not.
3940  *
3941  * Now, for the scenario b), checkpointing and forking into child(ren)
3942  * state(s). Note that before current state gets to checkpointing step, any
3943  * processed instruction always assumes precise SCALAR register/slot
3944  * knowledge: if precise value or range is useful to prune jump branch, BPF
3945  * verifier takes this opportunity enthusiastically. Similarly, when
3946  * register's value is used to calculate offset or memory address, exact
3947  * knowledge of SCALAR range is assumed, checked, and enforced. So, similar to
3948  * what we mentioned above about state comparison ignoring precise markings
3949  * during state comparison, BPF verifier ignores and also assumes precise
3950  * markings *at will* during instruction verification process. But as verifier
3951  * assumes precision, it also propagates any precision dependencies across
3952  * parent states, which are not yet finalized, so can be further restricted
3953  * based on new knowledge gained from restrictions enforced by their children
3954  * states. This is so that once those parent states are finalized, i.e., when
3955  * they have no more active children state, state comparison logic in
3956  * is_state_visited() would enforce strict and precise SCALAR ranges, if
3957  * required for correctness.
3958  *
3959  * To build a bit more intuition, note also that once a state is checkpointed,
3960  * the path we took to get to that state is not important. This is crucial
3961  * property for state pruning. When state is checkpointed and finalized at
3962  * some instruction index, it can be correctly and safely used to "short
3963  * circuit" any *compatible* state that reaches exactly the same instruction
3964  * index. I.e., if we jumped to that instruction from a completely different
3965  * code path than original finalized state was derived from, it doesn't
3966  * matter, current state can be discarded because from that instruction
3967  * forward having a compatible state will ensure we will safely reach the
3968  * exit. States describe preconditions for further exploration, but completely
3969  * forget the history of how we got here.
3970  *
3971  * This also means that even if we needed precise SCALAR range to get to
3972  * finalized state, but from that point forward *that same* SCALAR register is
3973  * never used in a precise context (i.e., it's precise value is not needed for
3974  * correctness), it's correct and safe to mark such register as "imprecise"
3975  * (i.e., precise marking set to false). This is what we rely on when we do
3976  * not set precise marking in current state. If no child state requires
3977  * precision for any given SCALAR register, it's safe to dictate that it can
3978  * be imprecise. If any child state does require this register to be precise,
3979  * we'll mark it precise later retroactively during precise markings
3980  * propagation from child state to parent states.
3981  *
3982  * Skipping precise marking setting in current state is a mild version of
3983  * relying on the above observation. But we can utilize this property even
3984  * more aggressively by proactively forgetting any precise marking in the
3985  * current state (which we inherited from the parent state), right before we
3986  * checkpoint it and branch off into new child state. This is done by
3987  * mark_all_scalars_imprecise() to hopefully get more permissive and generic
3988  * finalized states which help in short circuiting more future states.
3989  */
3990 static int __mark_chain_precision(struct bpf_verifier_env *env, int regno)
3991 {
3992         struct backtrack_state *bt = &env->bt;
3993         struct bpf_verifier_state *st = env->cur_state;
3994         int first_idx = st->first_insn_idx;
3995         int last_idx = env->insn_idx;
3996         int subseq_idx = -1;
3997         struct bpf_func_state *func;
3998         struct bpf_reg_state *reg;
3999         bool skip_first = true;
4000         int i, fr, err;
4001
4002         if (!env->bpf_capable)
4003                 return 0;
4004
4005         /* set frame number from which we are starting to backtrack */
4006         bt_init(bt, env->cur_state->curframe);
4007
4008         /* Do sanity checks against current state of register and/or stack
4009          * slot, but don't set precise flag in current state, as precision
4010          * tracking in the current state is unnecessary.
4011          */
4012         func = st->frame[bt->frame];
4013         if (regno >= 0) {
4014                 reg = &func->regs[regno];
4015                 if (reg->type != SCALAR_VALUE) {
4016                         WARN_ONCE(1, "backtracing misuse");
4017                         return -EFAULT;
4018                 }
4019                 bt_set_reg(bt, regno);
4020         }
4021
4022         if (bt_empty(bt))
4023                 return 0;
4024
4025         for (;;) {
4026                 DECLARE_BITMAP(mask, 64);
4027                 u32 history = st->jmp_history_cnt;
4028
4029                 if (env->log.level & BPF_LOG_LEVEL2) {
4030                         verbose(env, "mark_precise: frame%d: last_idx %d first_idx %d subseq_idx %d \n",
4031                                 bt->frame, last_idx, first_idx, subseq_idx);
4032                 }
4033
4034                 /* If some register with scalar ID is marked as precise,
4035                  * make sure that all registers sharing this ID are also precise.
4036                  * This is needed to estimate effect of find_equal_scalars().
4037                  * Do this at the last instruction of each state,
4038                  * bpf_reg_state::id fields are valid for these instructions.
4039                  *
4040                  * Allows to track precision in situation like below:
4041                  *
4042                  *     r2 = unknown value
4043                  *     ...
4044                  *   --- state #0 ---
4045                  *     ...
4046                  *     r1 = r2                 // r1 and r2 now share the same ID
4047                  *     ...
4048                  *   --- state #1 {r1.id = A, r2.id = A} ---
4049                  *     ...
4050                  *     if (r2 > 10) goto exit; // find_equal_scalars() assigns range to r1
4051                  *     ...
4052                  *   --- state #2 {r1.id = A, r2.id = A} ---
4053                  *     r3 = r10
4054                  *     r3 += r1                // need to mark both r1 and r2
4055                  */
4056                 if (mark_precise_scalar_ids(env, st))
4057                         return -EFAULT;
4058
4059                 if (last_idx < 0) {
4060                         /* we are at the entry into subprog, which
4061                          * is expected for global funcs, but only if
4062                          * requested precise registers are R1-R5
4063                          * (which are global func's input arguments)
4064                          */
4065                         if (st->curframe == 0 &&
4066                             st->frame[0]->subprogno > 0 &&
4067                             st->frame[0]->callsite == BPF_MAIN_FUNC &&
4068                             bt_stack_mask(bt) == 0 &&
4069                             (bt_reg_mask(bt) & ~BPF_REGMASK_ARGS) == 0) {
4070                                 bitmap_from_u64(mask, bt_reg_mask(bt));
4071                                 for_each_set_bit(i, mask, 32) {
4072                                         reg = &st->frame[0]->regs[i];
4073                                         bt_clear_reg(bt, i);
4074                                         if (reg->type == SCALAR_VALUE)
4075                                                 reg->precise = true;
4076                                 }
4077                                 return 0;
4078                         }
4079
4080                         verbose(env, "BUG backtracking func entry subprog %d reg_mask %x stack_mask %llx\n",
4081                                 st->frame[0]->subprogno, bt_reg_mask(bt), bt_stack_mask(bt));
4082                         WARN_ONCE(1, "verifier backtracking bug");
4083                         return -EFAULT;
4084                 }
4085
4086                 for (i = last_idx;;) {
4087                         if (skip_first) {
4088                                 err = 0;
4089                                 skip_first = false;
4090                         } else {
4091                                 err = backtrack_insn(env, i, subseq_idx, bt);
4092                         }
4093                         if (err == -ENOTSUPP) {
4094                                 mark_all_scalars_precise(env, env->cur_state);
4095                                 bt_reset(bt);
4096                                 return 0;
4097                         } else if (err) {
4098                                 return err;
4099                         }
4100                         if (bt_empty(bt))
4101                                 /* Found assignment(s) into tracked register in this state.
4102                                  * Since this state is already marked, just return.
4103                                  * Nothing to be tracked further in the parent state.
4104                                  */
4105                                 return 0;
4106                         subseq_idx = i;
4107                         i = get_prev_insn_idx(st, i, &history);
4108                         if (i == -ENOENT)
4109                                 break;
4110                         if (i >= env->prog->len) {
4111                                 /* This can happen if backtracking reached insn 0
4112                                  * and there are still reg_mask or stack_mask
4113                                  * to backtrack.
4114                                  * It means the backtracking missed the spot where
4115                                  * particular register was initialized with a constant.
4116                                  */
4117                                 verbose(env, "BUG backtracking idx %d\n", i);
4118                                 WARN_ONCE(1, "verifier backtracking bug");
4119                                 return -EFAULT;
4120                         }
4121                 }
4122                 st = st->parent;
4123                 if (!st)
4124                         break;
4125
4126                 for (fr = bt->frame; fr >= 0; fr--) {
4127                         func = st->frame[fr];
4128                         bitmap_from_u64(mask, bt_frame_reg_mask(bt, fr));
4129                         for_each_set_bit(i, mask, 32) {
4130                                 reg = &func->regs[i];
4131                                 if (reg->type != SCALAR_VALUE) {
4132                                         bt_clear_frame_reg(bt, fr, i);
4133                                         continue;
4134                                 }
4135                                 if (reg->precise)
4136                                         bt_clear_frame_reg(bt, fr, i);
4137                                 else
4138                                         reg->precise = true;
4139                         }
4140
4141                         bitmap_from_u64(mask, bt_frame_stack_mask(bt, fr));
4142                         for_each_set_bit(i, mask, 64) {
4143                                 if (i >= func->allocated_stack / BPF_REG_SIZE) {
4144                                         /* the sequence of instructions:
4145                                          * 2: (bf) r3 = r10
4146                                          * 3: (7b) *(u64 *)(r3 -8) = r0
4147                                          * 4: (79) r4 = *(u64 *)(r10 -8)
4148                                          * doesn't contain jmps. It's backtracked
4149                                          * as a single block.
4150                                          * During backtracking insn 3 is not recognized as
4151                                          * stack access, so at the end of backtracking
4152                                          * stack slot fp-8 is still marked in stack_mask.
4153                                          * However the parent state may not have accessed
4154                                          * fp-8 and it's "unallocated" stack space.
4155                                          * In such case fallback to conservative.
4156                                          */
4157                                         mark_all_scalars_precise(env, env->cur_state);
4158                                         bt_reset(bt);
4159                                         return 0;
4160                                 }
4161
4162                                 if (!is_spilled_scalar_reg(&func->stack[i])) {
4163                                         bt_clear_frame_slot(bt, fr, i);
4164                                         continue;
4165                                 }
4166                                 reg = &func->stack[i].spilled_ptr;
4167                                 if (reg->precise)
4168                                         bt_clear_frame_slot(bt, fr, i);
4169                                 else
4170                                         reg->precise = true;
4171                         }
4172                         if (env->log.level & BPF_LOG_LEVEL2) {
4173                                 fmt_reg_mask(env->tmp_str_buf, TMP_STR_BUF_LEN,
4174                                              bt_frame_reg_mask(bt, fr));
4175                                 verbose(env, "mark_precise: frame%d: parent state regs=%s ",
4176                                         fr, env->tmp_str_buf);
4177                                 fmt_stack_mask(env->tmp_str_buf, TMP_STR_BUF_LEN,
4178                                                bt_frame_stack_mask(bt, fr));
4179                                 verbose(env, "stack=%s: ", env->tmp_str_buf);
4180                                 print_verifier_state(env, func, true);
4181                         }
4182                 }
4183
4184                 if (bt_empty(bt))
4185                         return 0;
4186
4187                 subseq_idx = first_idx;
4188                 last_idx = st->last_insn_idx;
4189                 first_idx = st->first_insn_idx;
4190         }
4191
4192         /* if we still have requested precise regs or slots, we missed
4193          * something (e.g., stack access through non-r10 register), so
4194          * fallback to marking all precise
4195          */
4196         if (!bt_empty(bt)) {
4197                 mark_all_scalars_precise(env, env->cur_state);
4198                 bt_reset(bt);
4199         }
4200
4201         return 0;
4202 }
4203
4204 int mark_chain_precision(struct bpf_verifier_env *env, int regno)
4205 {
4206         return __mark_chain_precision(env, regno);
4207 }
4208
4209 /* mark_chain_precision_batch() assumes that env->bt is set in the caller to
4210  * desired reg and stack masks across all relevant frames
4211  */
4212 static int mark_chain_precision_batch(struct bpf_verifier_env *env)
4213 {
4214         return __mark_chain_precision(env, -1);
4215 }
4216
4217 static bool is_spillable_regtype(enum bpf_reg_type type)
4218 {
4219         switch (base_type(type)) {
4220         case PTR_TO_MAP_VALUE:
4221         case PTR_TO_STACK:
4222         case PTR_TO_CTX:
4223         case PTR_TO_PACKET:
4224         case PTR_TO_PACKET_META:
4225         case PTR_TO_PACKET_END:
4226         case PTR_TO_FLOW_KEYS:
4227         case CONST_PTR_TO_MAP:
4228         case PTR_TO_SOCKET:
4229         case PTR_TO_SOCK_COMMON:
4230         case PTR_TO_TCP_SOCK:
4231         case PTR_TO_XDP_SOCK:
4232         case PTR_TO_BTF_ID:
4233         case PTR_TO_BUF:
4234         case PTR_TO_MEM:
4235         case PTR_TO_FUNC:
4236         case PTR_TO_MAP_KEY:
4237                 return true;
4238         default:
4239                 return false;
4240         }
4241 }
4242
4243 /* Does this register contain a constant zero? */
4244 static bool register_is_null(struct bpf_reg_state *reg)
4245 {
4246         return reg->type == SCALAR_VALUE && tnum_equals_const(reg->var_off, 0);
4247 }
4248
4249 static bool register_is_const(struct bpf_reg_state *reg)
4250 {
4251         return reg->type == SCALAR_VALUE && tnum_is_const(reg->var_off);
4252 }
4253
4254 static bool __is_scalar_unbounded(struct bpf_reg_state *reg)
4255 {
4256         return tnum_is_unknown(reg->var_off) &&
4257                reg->smin_value == S64_MIN && reg->smax_value == S64_MAX &&
4258                reg->umin_value == 0 && reg->umax_value == U64_MAX &&
4259                reg->s32_min_value == S32_MIN && reg->s32_max_value == S32_MAX &&
4260                reg->u32_min_value == 0 && reg->u32_max_value == U32_MAX;
4261 }
4262
4263 static bool register_is_bounded(struct bpf_reg_state *reg)
4264 {
4265         return reg->type == SCALAR_VALUE && !__is_scalar_unbounded(reg);
4266 }
4267
4268 static bool __is_pointer_value(bool allow_ptr_leaks,
4269                                const struct bpf_reg_state *reg)
4270 {
4271         if (allow_ptr_leaks)
4272                 return false;
4273
4274         return reg->type != SCALAR_VALUE;
4275 }
4276
4277 /* Copy src state preserving dst->parent and dst->live fields */
4278 static void copy_register_state(struct bpf_reg_state *dst, const struct bpf_reg_state *src)
4279 {
4280         struct bpf_reg_state *parent = dst->parent;
4281         enum bpf_reg_liveness live = dst->live;
4282
4283         *dst = *src;
4284         dst->parent = parent;
4285         dst->live = live;
4286 }
4287
4288 static void save_register_state(struct bpf_func_state *state,
4289                                 int spi, struct bpf_reg_state *reg,
4290                                 int size)
4291 {
4292         int i;
4293
4294         copy_register_state(&state->stack[spi].spilled_ptr, reg);
4295         if (size == BPF_REG_SIZE)
4296                 state->stack[spi].spilled_ptr.live |= REG_LIVE_WRITTEN;
4297
4298         for (i = BPF_REG_SIZE; i > BPF_REG_SIZE - size; i--)
4299                 state->stack[spi].slot_type[i - 1] = STACK_SPILL;
4300
4301         /* size < 8 bytes spill */
4302         for (; i; i--)
4303                 scrub_spilled_slot(&state->stack[spi].slot_type[i - 1]);
4304 }
4305
4306 static bool is_bpf_st_mem(struct bpf_insn *insn)
4307 {
4308         return BPF_CLASS(insn->code) == BPF_ST && BPF_MODE(insn->code) == BPF_MEM;
4309 }
4310
4311 /* check_stack_{read,write}_fixed_off functions track spill/fill of registers,
4312  * stack boundary and alignment are checked in check_mem_access()
4313  */
4314 static int check_stack_write_fixed_off(struct bpf_verifier_env *env,
4315                                        /* stack frame we're writing to */
4316                                        struct bpf_func_state *state,
4317                                        int off, int size, int value_regno,
4318                                        int insn_idx)
4319 {
4320         struct bpf_func_state *cur; /* state of the current function */
4321         int i, slot = -off - 1, spi = slot / BPF_REG_SIZE, err;
4322         struct bpf_insn *insn = &env->prog->insnsi[insn_idx];
4323         struct bpf_reg_state *reg = NULL;
4324         u32 dst_reg = insn->dst_reg;
4325
4326         err = grow_stack_state(state, round_up(slot + 1, BPF_REG_SIZE));
4327         if (err)
4328                 return err;
4329         /* caller checked that off % size == 0 and -MAX_BPF_STACK <= off < 0,
4330          * so it's aligned access and [off, off + size) are within stack limits
4331          */
4332         if (!env->allow_ptr_leaks &&
4333             is_spilled_reg(&state->stack[spi]) &&
4334             size != BPF_REG_SIZE) {
4335                 verbose(env, "attempt to corrupt spilled pointer on stack\n");
4336                 return -EACCES;
4337         }
4338
4339         cur = env->cur_state->frame[env->cur_state->curframe];
4340         if (value_regno >= 0)
4341                 reg = &cur->regs[value_regno];
4342         if (!env->bypass_spec_v4) {
4343                 bool sanitize = reg && is_spillable_regtype(reg->type);
4344
4345                 for (i = 0; i < size; i++) {
4346                         u8 type = state->stack[spi].slot_type[i];
4347
4348                         if (type != STACK_MISC && type != STACK_ZERO) {
4349                                 sanitize = true;
4350                                 break;
4351                         }
4352                 }
4353
4354                 if (sanitize)
4355                         env->insn_aux_data[insn_idx].sanitize_stack_spill = true;
4356         }
4357
4358         err = destroy_if_dynptr_stack_slot(env, state, spi);
4359         if (err)
4360                 return err;
4361
4362         mark_stack_slot_scratched(env, spi);
4363         if (reg && !(off % BPF_REG_SIZE) && register_is_bounded(reg) &&
4364             !register_is_null(reg) && env->bpf_capable) {
4365                 if (dst_reg != BPF_REG_FP) {
4366                         /* The backtracking logic can only recognize explicit
4367                          * stack slot address like [fp - 8]. Other spill of
4368                          * scalar via different register has to be conservative.
4369                          * Backtrack from here and mark all registers as precise
4370                          * that contributed into 'reg' being a constant.
4371                          */
4372                         err = mark_chain_precision(env, value_regno);
4373                         if (err)
4374                                 return err;
4375                 }
4376                 save_register_state(state, spi, reg, size);
4377                 /* Break the relation on a narrowing spill. */
4378                 if (fls64(reg->umax_value) > BITS_PER_BYTE * size)
4379                         state->stack[spi].spilled_ptr.id = 0;
4380         } else if (!reg && !(off % BPF_REG_SIZE) && is_bpf_st_mem(insn) &&
4381                    insn->imm != 0 && env->bpf_capable) {
4382                 struct bpf_reg_state fake_reg = {};
4383
4384                 __mark_reg_known(&fake_reg, insn->imm);
4385                 fake_reg.type = SCALAR_VALUE;
4386                 save_register_state(state, spi, &fake_reg, size);
4387         } else if (reg && is_spillable_regtype(reg->type)) {
4388                 /* register containing pointer is being spilled into stack */
4389                 if (size != BPF_REG_SIZE) {
4390                         verbose_linfo(env, insn_idx, "; ");
4391                         verbose(env, "invalid size of register spill\n");
4392                         return -EACCES;
4393                 }
4394                 if (state != cur && reg->type == PTR_TO_STACK) {
4395                         verbose(env, "cannot spill pointers to stack into stack frame of the caller\n");
4396                         return -EINVAL;
4397                 }
4398                 save_register_state(state, spi, reg, size);
4399         } else {
4400                 u8 type = STACK_MISC;
4401
4402                 /* regular write of data into stack destroys any spilled ptr */
4403                 state->stack[spi].spilled_ptr.type = NOT_INIT;
4404                 /* Mark slots as STACK_MISC if they belonged to spilled ptr/dynptr/iter. */
4405                 if (is_stack_slot_special(&state->stack[spi]))
4406                         for (i = 0; i < BPF_REG_SIZE; i++)
4407                                 scrub_spilled_slot(&state->stack[spi].slot_type[i]);
4408
4409                 /* only mark the slot as written if all 8 bytes were written
4410                  * otherwise read propagation may incorrectly stop too soon
4411                  * when stack slots are partially written.
4412                  * This heuristic means that read propagation will be
4413                  * conservative, since it will add reg_live_read marks
4414                  * to stack slots all the way to first state when programs
4415                  * writes+reads less than 8 bytes
4416                  */
4417                 if (size == BPF_REG_SIZE)
4418                         state->stack[spi].spilled_ptr.live |= REG_LIVE_WRITTEN;
4419
4420                 /* when we zero initialize stack slots mark them as such */
4421                 if ((reg && register_is_null(reg)) ||
4422                     (!reg && is_bpf_st_mem(insn) && insn->imm == 0)) {
4423                         /* backtracking doesn't work for STACK_ZERO yet. */
4424                         err = mark_chain_precision(env, value_regno);
4425                         if (err)
4426                                 return err;
4427                         type = STACK_ZERO;
4428                 }
4429
4430                 /* Mark slots affected by this stack write. */
4431                 for (i = 0; i < size; i++)
4432                         state->stack[spi].slot_type[(slot - i) % BPF_REG_SIZE] =
4433                                 type;
4434         }
4435         return 0;
4436 }
4437
4438 /* Write the stack: 'stack[ptr_regno + off] = value_regno'. 'ptr_regno' is
4439  * known to contain a variable offset.
4440  * This function checks whether the write is permitted and conservatively
4441  * tracks the effects of the write, considering that each stack slot in the
4442  * dynamic range is potentially written to.
4443  *
4444  * 'off' includes 'regno->off'.
4445  * 'value_regno' can be -1, meaning that an unknown value is being written to
4446  * the stack.
4447  *
4448  * Spilled pointers in range are not marked as written because we don't know
4449  * what's going to be actually written. This means that read propagation for
4450  * future reads cannot be terminated by this write.
4451  *
4452  * For privileged programs, uninitialized stack slots are considered
4453  * initialized by this write (even though we don't know exactly what offsets
4454  * are going to be written to). The idea is that we don't want the verifier to
4455  * reject future reads that access slots written to through variable offsets.
4456  */
4457 static int check_stack_write_var_off(struct bpf_verifier_env *env,
4458                                      /* func where register points to */
4459                                      struct bpf_func_state *state,
4460                                      int ptr_regno, int off, int size,
4461                                      int value_regno, int insn_idx)
4462 {
4463         struct bpf_func_state *cur; /* state of the current function */
4464         int min_off, max_off;
4465         int i, err;
4466         struct bpf_reg_state *ptr_reg = NULL, *value_reg = NULL;
4467         struct bpf_insn *insn = &env->prog->insnsi[insn_idx];
4468         bool writing_zero = false;
4469         /* set if the fact that we're writing a zero is used to let any
4470          * stack slots remain STACK_ZERO
4471          */
4472         bool zero_used = false;
4473
4474         cur = env->cur_state->frame[env->cur_state->curframe];
4475         ptr_reg = &cur->regs[ptr_regno];
4476         min_off = ptr_reg->smin_value + off;
4477         max_off = ptr_reg->smax_value + off + size;
4478         if (value_regno >= 0)
4479                 value_reg = &cur->regs[value_regno];
4480         if ((value_reg && register_is_null(value_reg)) ||
4481             (!value_reg && is_bpf_st_mem(insn) && insn->imm == 0))
4482                 writing_zero = true;
4483
4484         err = grow_stack_state(state, round_up(-min_off, BPF_REG_SIZE));
4485         if (err)
4486                 return err;
4487
4488         for (i = min_off; i < max_off; i++) {
4489                 int spi;
4490
4491                 spi = __get_spi(i);
4492                 err = destroy_if_dynptr_stack_slot(env, state, spi);
4493                 if (err)
4494                         return err;
4495         }
4496
4497         /* Variable offset writes destroy any spilled pointers in range. */
4498         for (i = min_off; i < max_off; i++) {
4499                 u8 new_type, *stype;
4500                 int slot, spi;
4501
4502                 slot = -i - 1;
4503                 spi = slot / BPF_REG_SIZE;
4504                 stype = &state->stack[spi].slot_type[slot % BPF_REG_SIZE];
4505                 mark_stack_slot_scratched(env, spi);
4506
4507                 if (!env->allow_ptr_leaks && *stype != STACK_MISC && *stype != STACK_ZERO) {
4508                         /* Reject the write if range we may write to has not
4509                          * been initialized beforehand. If we didn't reject
4510                          * here, the ptr status would be erased below (even
4511                          * though not all slots are actually overwritten),
4512                          * possibly opening the door to leaks.
4513                          *
4514                          * We do however catch STACK_INVALID case below, and
4515                          * only allow reading possibly uninitialized memory
4516                          * later for CAP_PERFMON, as the write may not happen to
4517                          * that slot.
4518                          */
4519                         verbose(env, "spilled ptr in range of var-offset stack write; insn %d, ptr off: %d",
4520                                 insn_idx, i);
4521                         return -EINVAL;
4522                 }
4523
4524                 /* Erase all spilled pointers. */
4525                 state->stack[spi].spilled_ptr.type = NOT_INIT;
4526
4527                 /* Update the slot type. */
4528                 new_type = STACK_MISC;
4529                 if (writing_zero && *stype == STACK_ZERO) {
4530                         new_type = STACK_ZERO;
4531                         zero_used = true;
4532                 }
4533                 /* If the slot is STACK_INVALID, we check whether it's OK to
4534                  * pretend that it will be initialized by this write. The slot
4535                  * might not actually be written to, and so if we mark it as
4536                  * initialized future reads might leak uninitialized memory.
4537                  * For privileged programs, we will accept such reads to slots
4538                  * that may or may not be written because, if we're reject
4539                  * them, the error would be too confusing.
4540                  */
4541                 if (*stype == STACK_INVALID && !env->allow_uninit_stack) {
4542                         verbose(env, "uninit stack in range of var-offset write prohibited for !root; insn %d, off: %d",
4543                                         insn_idx, i);
4544                         return -EINVAL;
4545                 }
4546                 *stype = new_type;
4547         }
4548         if (zero_used) {
4549                 /* backtracking doesn't work for STACK_ZERO yet. */
4550                 err = mark_chain_precision(env, value_regno);
4551                 if (err)
4552                         return err;
4553         }
4554         return 0;
4555 }
4556
4557 /* When register 'dst_regno' is assigned some values from stack[min_off,
4558  * max_off), we set the register's type according to the types of the
4559  * respective stack slots. If all the stack values are known to be zeros, then
4560  * so is the destination reg. Otherwise, the register is considered to be
4561  * SCALAR. This function does not deal with register filling; the caller must
4562  * ensure that all spilled registers in the stack range have been marked as
4563  * read.
4564  */
4565 static void mark_reg_stack_read(struct bpf_verifier_env *env,
4566                                 /* func where src register points to */
4567                                 struct bpf_func_state *ptr_state,
4568                                 int min_off, int max_off, int dst_regno)
4569 {
4570         struct bpf_verifier_state *vstate = env->cur_state;
4571         struct bpf_func_state *state = vstate->frame[vstate->curframe];
4572         int i, slot, spi;
4573         u8 *stype;
4574         int zeros = 0;
4575
4576         for (i = min_off; i < max_off; i++) {
4577                 slot = -i - 1;
4578                 spi = slot / BPF_REG_SIZE;
4579                 mark_stack_slot_scratched(env, spi);
4580                 stype = ptr_state->stack[spi].slot_type;
4581                 if (stype[slot % BPF_REG_SIZE] != STACK_ZERO)
4582                         break;
4583                 zeros++;
4584         }
4585         if (zeros == max_off - min_off) {
4586                 /* any access_size read into register is zero extended,
4587                  * so the whole register == const_zero
4588                  */
4589                 __mark_reg_const_zero(&state->regs[dst_regno]);
4590                 /* backtracking doesn't support STACK_ZERO yet,
4591                  * so mark it precise here, so that later
4592                  * backtracking can stop here.
4593                  * Backtracking may not need this if this register
4594                  * doesn't participate in pointer adjustment.
4595                  * Forward propagation of precise flag is not
4596                  * necessary either. This mark is only to stop
4597                  * backtracking. Any register that contributed
4598                  * to const 0 was marked precise before spill.
4599                  */
4600                 state->regs[dst_regno].precise = true;
4601         } else {
4602                 /* have read misc data from the stack */
4603                 mark_reg_unknown(env, state->regs, dst_regno);
4604         }
4605         state->regs[dst_regno].live |= REG_LIVE_WRITTEN;
4606 }
4607
4608 /* Read the stack at 'off' and put the results into the register indicated by
4609  * 'dst_regno'. It handles reg filling if the addressed stack slot is a
4610  * spilled reg.
4611  *
4612  * 'dst_regno' can be -1, meaning that the read value is not going to a
4613  * register.
4614  *
4615  * The access is assumed to be within the current stack bounds.
4616  */
4617 static int check_stack_read_fixed_off(struct bpf_verifier_env *env,
4618                                       /* func where src register points to */
4619                                       struct bpf_func_state *reg_state,
4620                                       int off, int size, int dst_regno)
4621 {
4622         struct bpf_verifier_state *vstate = env->cur_state;
4623         struct bpf_func_state *state = vstate->frame[vstate->curframe];
4624         int i, slot = -off - 1, spi = slot / BPF_REG_SIZE;
4625         struct bpf_reg_state *reg;
4626         u8 *stype, type;
4627
4628         stype = reg_state->stack[spi].slot_type;
4629         reg = &reg_state->stack[spi].spilled_ptr;
4630
4631         mark_stack_slot_scratched(env, spi);
4632
4633         if (is_spilled_reg(&reg_state->stack[spi])) {
4634                 u8 spill_size = 1;
4635
4636                 for (i = BPF_REG_SIZE - 1; i > 0 && stype[i - 1] == STACK_SPILL; i--)
4637                         spill_size++;
4638
4639                 if (size != BPF_REG_SIZE || spill_size != BPF_REG_SIZE) {
4640                         if (reg->type != SCALAR_VALUE) {
4641                                 verbose_linfo(env, env->insn_idx, "; ");
4642                                 verbose(env, "invalid size of register fill\n");
4643                                 return -EACCES;
4644                         }
4645
4646                         mark_reg_read(env, reg, reg->parent, REG_LIVE_READ64);
4647                         if (dst_regno < 0)
4648                                 return 0;
4649
4650                         if (!(off % BPF_REG_SIZE) && size == spill_size) {
4651                                 /* The earlier check_reg_arg() has decided the
4652                                  * subreg_def for this insn.  Save it first.
4653                                  */
4654                                 s32 subreg_def = state->regs[dst_regno].subreg_def;
4655
4656                                 copy_register_state(&state->regs[dst_regno], reg);
4657                                 state->regs[dst_regno].subreg_def = subreg_def;
4658                         } else {
4659                                 for (i = 0; i < size; i++) {
4660                                         type = stype[(slot - i) % BPF_REG_SIZE];
4661                                         if (type == STACK_SPILL)
4662                                                 continue;
4663                                         if (type == STACK_MISC)
4664                                                 continue;
4665                                         if (type == STACK_INVALID && env->allow_uninit_stack)
4666                                                 continue;
4667                                         verbose(env, "invalid read from stack off %d+%d size %d\n",
4668                                                 off, i, size);
4669                                         return -EACCES;
4670                                 }
4671                                 mark_reg_unknown(env, state->regs, dst_regno);
4672                         }
4673                         state->regs[dst_regno].live |= REG_LIVE_WRITTEN;
4674                         return 0;
4675                 }
4676
4677                 if (dst_regno >= 0) {
4678                         /* restore register state from stack */
4679                         copy_register_state(&state->regs[dst_regno], reg);
4680                         /* mark reg as written since spilled pointer state likely
4681                          * has its liveness marks cleared by is_state_visited()
4682                          * which resets stack/reg liveness for state transitions
4683                          */
4684                         state->regs[dst_regno].live |= REG_LIVE_WRITTEN;
4685                 } else if (__is_pointer_value(env->allow_ptr_leaks, reg)) {
4686                         /* If dst_regno==-1, the caller is asking us whether
4687                          * it is acceptable to use this value as a SCALAR_VALUE
4688                          * (e.g. for XADD).
4689                          * We must not allow unprivileged callers to do that
4690                          * with spilled pointers.
4691                          */
4692                         verbose(env, "leaking pointer from stack off %d\n",
4693                                 off);
4694                         return -EACCES;
4695                 }
4696                 mark_reg_read(env, reg, reg->parent, REG_LIVE_READ64);
4697         } else {
4698                 for (i = 0; i < size; i++) {
4699                         type = stype[(slot - i) % BPF_REG_SIZE];
4700                         if (type == STACK_MISC)
4701                                 continue;
4702                         if (type == STACK_ZERO)
4703                                 continue;
4704                         if (type == STACK_INVALID && env->allow_uninit_stack)
4705                                 continue;
4706                         verbose(env, "invalid read from stack off %d+%d size %d\n",
4707                                 off, i, size);
4708                         return -EACCES;
4709                 }
4710                 mark_reg_read(env, reg, reg->parent, REG_LIVE_READ64);
4711                 if (dst_regno >= 0)
4712                         mark_reg_stack_read(env, reg_state, off, off + size, dst_regno);
4713         }
4714         return 0;
4715 }
4716
4717 enum bpf_access_src {
4718         ACCESS_DIRECT = 1,  /* the access is performed by an instruction */
4719         ACCESS_HELPER = 2,  /* the access is performed by a helper */
4720 };
4721
4722 static int check_stack_range_initialized(struct bpf_verifier_env *env,
4723                                          int regno, int off, int access_size,
4724                                          bool zero_size_allowed,
4725                                          enum bpf_access_src type,
4726                                          struct bpf_call_arg_meta *meta);
4727
4728 static struct bpf_reg_state *reg_state(struct bpf_verifier_env *env, int regno)
4729 {
4730         return cur_regs(env) + regno;
4731 }
4732
4733 /* Read the stack at 'ptr_regno + off' and put the result into the register
4734  * 'dst_regno'.
4735  * 'off' includes the pointer register's fixed offset(i.e. 'ptr_regno.off'),
4736  * but not its variable offset.
4737  * 'size' is assumed to be <= reg size and the access is assumed to be aligned.
4738  *
4739  * As opposed to check_stack_read_fixed_off, this function doesn't deal with
4740  * filling registers (i.e. reads of spilled register cannot be detected when
4741  * the offset is not fixed). We conservatively mark 'dst_regno' as containing
4742  * SCALAR_VALUE. That's why we assert that the 'ptr_regno' has a variable
4743  * offset; for a fixed offset check_stack_read_fixed_off should be used
4744  * instead.
4745  */
4746 static int check_stack_read_var_off(struct bpf_verifier_env *env,
4747                                     int ptr_regno, int off, int size, int dst_regno)
4748 {
4749         /* The state of the source register. */
4750         struct bpf_reg_state *reg = reg_state(env, ptr_regno);
4751         struct bpf_func_state *ptr_state = func(env, reg);
4752         int err;
4753         int min_off, max_off;
4754
4755         /* Note that we pass a NULL meta, so raw access will not be permitted.
4756          */
4757         err = check_stack_range_initialized(env, ptr_regno, off, size,
4758                                             false, ACCESS_DIRECT, NULL);
4759         if (err)
4760                 return err;
4761
4762         min_off = reg->smin_value + off;
4763         max_off = reg->smax_value + off;
4764         mark_reg_stack_read(env, ptr_state, min_off, max_off + size, dst_regno);
4765         return 0;
4766 }
4767
4768 /* check_stack_read dispatches to check_stack_read_fixed_off or
4769  * check_stack_read_var_off.
4770  *
4771  * The caller must ensure that the offset falls within the allocated stack
4772  * bounds.
4773  *
4774  * 'dst_regno' is a register which will receive the value from the stack. It
4775  * can be -1, meaning that the read value is not going to a register.
4776  */
4777 static int check_stack_read(struct bpf_verifier_env *env,
4778                             int ptr_regno, int off, int size,
4779                             int dst_regno)
4780 {
4781         struct bpf_reg_state *reg = reg_state(env, ptr_regno);
4782         struct bpf_func_state *state = func(env, reg);
4783         int err;
4784         /* Some accesses are only permitted with a static offset. */
4785         bool var_off = !tnum_is_const(reg->var_off);
4786
4787         /* The offset is required to be static when reads don't go to a
4788          * register, in order to not leak pointers (see
4789          * check_stack_read_fixed_off).
4790          */
4791         if (dst_regno < 0 && var_off) {
4792                 char tn_buf[48];
4793
4794                 tnum_strn(tn_buf, sizeof(tn_buf), reg->var_off);
4795                 verbose(env, "variable offset stack pointer cannot be passed into helper function; var_off=%s off=%d size=%d\n",
4796                         tn_buf, off, size);
4797                 return -EACCES;
4798         }
4799         /* Variable offset is prohibited for unprivileged mode for simplicity
4800          * since it requires corresponding support in Spectre masking for stack
4801          * ALU. See also retrieve_ptr_limit(). The check in
4802          * check_stack_access_for_ptr_arithmetic() called by
4803          * adjust_ptr_min_max_vals() prevents users from creating stack pointers
4804          * with variable offsets, therefore no check is required here. Further,
4805          * just checking it here would be insufficient as speculative stack
4806          * writes could still lead to unsafe speculative behaviour.
4807          */
4808         if (!var_off) {
4809                 off += reg->var_off.value;
4810                 err = check_stack_read_fixed_off(env, state, off, size,
4811                                                  dst_regno);
4812         } else {
4813                 /* Variable offset stack reads need more conservative handling
4814                  * than fixed offset ones. Note that dst_regno >= 0 on this
4815                  * branch.
4816                  */
4817                 err = check_stack_read_var_off(env, ptr_regno, off, size,
4818                                                dst_regno);
4819         }
4820         return err;
4821 }
4822
4823
4824 /* check_stack_write dispatches to check_stack_write_fixed_off or
4825  * check_stack_write_var_off.
4826  *
4827  * 'ptr_regno' is the register used as a pointer into the stack.
4828  * 'off' includes 'ptr_regno->off', but not its variable offset (if any).
4829  * 'value_regno' is the register whose value we're writing to the stack. It can
4830  * be -1, meaning that we're not writing from a register.
4831  *
4832  * The caller must ensure that the offset falls within the maximum stack size.
4833  */
4834 static int check_stack_write(struct bpf_verifier_env *env,
4835                              int ptr_regno, int off, int size,
4836                              int value_regno, int insn_idx)
4837 {
4838         struct bpf_reg_state *reg = reg_state(env, ptr_regno);
4839         struct bpf_func_state *state = func(env, reg);
4840         int err;
4841
4842         if (tnum_is_const(reg->var_off)) {
4843                 off += reg->var_off.value;
4844                 err = check_stack_write_fixed_off(env, state, off, size,
4845                                                   value_regno, insn_idx);
4846         } else {
4847                 /* Variable offset stack reads need more conservative handling
4848                  * than fixed offset ones.
4849                  */
4850                 err = check_stack_write_var_off(env, state,
4851                                                 ptr_regno, off, size,
4852                                                 value_regno, insn_idx);
4853         }
4854         return err;
4855 }
4856
4857 static int check_map_access_type(struct bpf_verifier_env *env, u32 regno,
4858                                  int off, int size, enum bpf_access_type type)
4859 {
4860         struct bpf_reg_state *regs = cur_regs(env);
4861         struct bpf_map *map = regs[regno].map_ptr;
4862         u32 cap = bpf_map_flags_to_cap(map);
4863
4864         if (type == BPF_WRITE && !(cap & BPF_MAP_CAN_WRITE)) {
4865                 verbose(env, "write into map forbidden, value_size=%d off=%d size=%d\n",
4866                         map->value_size, off, size);
4867                 return -EACCES;
4868         }
4869
4870         if (type == BPF_READ && !(cap & BPF_MAP_CAN_READ)) {
4871                 verbose(env, "read from map forbidden, value_size=%d off=%d size=%d\n",
4872                         map->value_size, off, size);
4873                 return -EACCES;
4874         }
4875
4876         return 0;
4877 }
4878
4879 /* check read/write into memory region (e.g., map value, ringbuf sample, etc) */
4880 static int __check_mem_access(struct bpf_verifier_env *env, int regno,
4881                               int off, int size, u32 mem_size,
4882                               bool zero_size_allowed)
4883 {
4884         bool size_ok = size > 0 || (size == 0 && zero_size_allowed);
4885         struct bpf_reg_state *reg;
4886
4887         if (off >= 0 && size_ok && (u64)off + size <= mem_size)
4888                 return 0;
4889
4890         reg = &cur_regs(env)[regno];
4891         switch (reg->type) {
4892         case PTR_TO_MAP_KEY:
4893                 verbose(env, "invalid access to map key, key_size=%d off=%d size=%d\n",
4894                         mem_size, off, size);
4895                 break;
4896         case PTR_TO_MAP_VALUE:
4897                 verbose(env, "invalid access to map value, value_size=%d off=%d size=%d\n",
4898                         mem_size, off, size);
4899                 break;
4900         case PTR_TO_PACKET:
4901         case PTR_TO_PACKET_META:
4902         case PTR_TO_PACKET_END:
4903                 verbose(env, "invalid access to packet, off=%d size=%d, R%d(id=%d,off=%d,r=%d)\n",
4904                         off, size, regno, reg->id, off, mem_size);
4905                 break;
4906         case PTR_TO_MEM:
4907         default:
4908                 verbose(env, "invalid access to memory, mem_size=%u off=%d size=%d\n",
4909                         mem_size, off, size);
4910         }
4911
4912         return -EACCES;
4913 }
4914
4915 /* check read/write into a memory region with possible variable offset */
4916 static int check_mem_region_access(struct bpf_verifier_env *env, u32 regno,
4917                                    int off, int size, u32 mem_size,
4918                                    bool zero_size_allowed)
4919 {
4920         struct bpf_verifier_state *vstate = env->cur_state;
4921         struct bpf_func_state *state = vstate->frame[vstate->curframe];
4922         struct bpf_reg_state *reg = &state->regs[regno];
4923         int err;
4924
4925         /* We may have adjusted the register pointing to memory region, so we
4926          * need to try adding each of min_value and max_value to off
4927          * to make sure our theoretical access will be safe.
4928          *
4929          * The minimum value is only important with signed
4930          * comparisons where we can't assume the floor of a
4931          * value is 0.  If we are using signed variables for our
4932          * index'es we need to make sure that whatever we use
4933          * will have a set floor within our range.
4934          */
4935         if (reg->smin_value < 0 &&
4936             (reg->smin_value == S64_MIN ||
4937              (off + reg->smin_value != (s64)(s32)(off + reg->smin_value)) ||
4938               reg->smin_value + off < 0)) {
4939                 verbose(env, "R%d min value is negative, either use unsigned index or do a if (index >=0) check.\n",
4940                         regno);
4941                 return -EACCES;
4942         }
4943         err = __check_mem_access(env, regno, reg->smin_value + off, size,
4944                                  mem_size, zero_size_allowed);
4945         if (err) {
4946                 verbose(env, "R%d min value is outside of the allowed memory range\n",
4947                         regno);
4948                 return err;
4949         }
4950
4951         /* If we haven't set a max value then we need to bail since we can't be
4952          * sure we won't do bad things.
4953          * If reg->umax_value + off could overflow, treat that as unbounded too.
4954          */
4955         if (reg->umax_value >= BPF_MAX_VAR_OFF) {
4956                 verbose(env, "R%d unbounded memory access, make sure to bounds check any such access\n",
4957                         regno);
4958                 return -EACCES;
4959         }
4960         err = __check_mem_access(env, regno, reg->umax_value + off, size,
4961                                  mem_size, zero_size_allowed);
4962         if (err) {
4963                 verbose(env, "R%d max value is outside of the allowed memory range\n",
4964                         regno);
4965                 return err;
4966         }
4967
4968         return 0;
4969 }
4970
4971 static int __check_ptr_off_reg(struct bpf_verifier_env *env,
4972                                const struct bpf_reg_state *reg, int regno,
4973                                bool fixed_off_ok)
4974 {
4975         /* Access to this pointer-typed register or passing it to a helper
4976          * is only allowed in its original, unmodified form.
4977          */
4978
4979         if (reg->off < 0) {
4980                 verbose(env, "negative offset %s ptr R%d off=%d disallowed\n",
4981                         reg_type_str(env, reg->type), regno, reg->off);
4982                 return -EACCES;
4983         }
4984
4985         if (!fixed_off_ok && reg->off) {
4986                 verbose(env, "dereference of modified %s ptr R%d off=%d disallowed\n",
4987                         reg_type_str(env, reg->type), regno, reg->off);
4988                 return -EACCES;
4989         }
4990
4991         if (!tnum_is_const(reg->var_off) || reg->var_off.value) {
4992                 char tn_buf[48];
4993
4994                 tnum_strn(tn_buf, sizeof(tn_buf), reg->var_off);
4995                 verbose(env, "variable %s access var_off=%s disallowed\n",
4996                         reg_type_str(env, reg->type), tn_buf);
4997                 return -EACCES;
4998         }
4999
5000         return 0;
5001 }
5002
5003 int check_ptr_off_reg(struct bpf_verifier_env *env,
5004                       const struct bpf_reg_state *reg, int regno)
5005 {
5006         return __check_ptr_off_reg(env, reg, regno, false);
5007 }
5008
5009 static int map_kptr_match_type(struct bpf_verifier_env *env,
5010                                struct btf_field *kptr_field,
5011                                struct bpf_reg_state *reg, u32 regno)
5012 {
5013         const char *targ_name = btf_type_name(kptr_field->kptr.btf, kptr_field->kptr.btf_id);
5014         int perm_flags;
5015         const char *reg_name = "";
5016
5017         if (btf_is_kernel(reg->btf)) {
5018                 perm_flags = PTR_MAYBE_NULL | PTR_TRUSTED | MEM_RCU;
5019
5020                 /* Only unreferenced case accepts untrusted pointers */
5021                 if (kptr_field->type == BPF_KPTR_UNREF)
5022                         perm_flags |= PTR_UNTRUSTED;
5023         } else {
5024                 perm_flags = PTR_MAYBE_NULL | MEM_ALLOC;
5025         }
5026
5027         if (base_type(reg->type) != PTR_TO_BTF_ID || (type_flag(reg->type) & ~perm_flags))
5028                 goto bad_type;
5029
5030         /* We need to verify reg->type and reg->btf, before accessing reg->btf */
5031         reg_name = btf_type_name(reg->btf, reg->btf_id);
5032
5033         /* For ref_ptr case, release function check should ensure we get one
5034          * referenced PTR_TO_BTF_ID, and that its fixed offset is 0. For the
5035          * normal store of unreferenced kptr, we must ensure var_off is zero.
5036          * Since ref_ptr cannot be accessed directly by BPF insns, checks for
5037          * reg->off and reg->ref_obj_id are not needed here.
5038          */
5039         if (__check_ptr_off_reg(env, reg, regno, true))
5040                 return -EACCES;
5041
5042         /* A full type match is needed, as BTF can be vmlinux, module or prog BTF, and
5043          * we also need to take into account the reg->off.
5044          *
5045          * We want to support cases like:
5046          *
5047          * struct foo {
5048          *         struct bar br;
5049          *         struct baz bz;
5050          * };
5051          *
5052          * struct foo *v;
5053          * v = func();        // PTR_TO_BTF_ID
5054          * val->foo = v;      // reg->off is zero, btf and btf_id match type
5055          * val->bar = &v->br; // reg->off is still zero, but we need to retry with
5056          *                    // first member type of struct after comparison fails
5057          * val->baz = &v->bz; // reg->off is non-zero, so struct needs to be walked
5058          *                    // to match type
5059          *
5060          * In the kptr_ref case, check_func_arg_reg_off already ensures reg->off
5061          * is zero. We must also ensure that btf_struct_ids_match does not walk
5062          * the struct to match type against first member of struct, i.e. reject
5063          * second case from above. Hence, when type is BPF_KPTR_REF, we set
5064          * strict mode to true for type match.
5065          */
5066         if (!btf_struct_ids_match(&env->log, reg->btf, reg->btf_id, reg->off,
5067                                   kptr_field->kptr.btf, kptr_field->kptr.btf_id,
5068                                   kptr_field->type == BPF_KPTR_REF))
5069                 goto bad_type;
5070         return 0;
5071 bad_type:
5072         verbose(env, "invalid kptr access, R%d type=%s%s ", regno,
5073                 reg_type_str(env, reg->type), reg_name);
5074         verbose(env, "expected=%s%s", reg_type_str(env, PTR_TO_BTF_ID), targ_name);
5075         if (kptr_field->type == BPF_KPTR_UNREF)
5076                 verbose(env, " or %s%s\n", reg_type_str(env, PTR_TO_BTF_ID | PTR_UNTRUSTED),
5077                         targ_name);
5078         else
5079                 verbose(env, "\n");
5080         return -EINVAL;
5081 }
5082
5083 /* The non-sleepable programs and sleepable programs with explicit bpf_rcu_read_lock()
5084  * can dereference RCU protected pointers and result is PTR_TRUSTED.
5085  */
5086 static bool in_rcu_cs(struct bpf_verifier_env *env)
5087 {
5088         return env->cur_state->active_rcu_lock ||
5089                env->cur_state->active_lock.ptr ||
5090                !env->prog->aux->sleepable;
5091 }
5092
5093 /* Once GCC supports btf_type_tag the following mechanism will be replaced with tag check */
5094 BTF_SET_START(rcu_protected_types)
5095 BTF_ID(struct, prog_test_ref_kfunc)
5096 BTF_ID(struct, cgroup)
5097 BTF_ID(struct, bpf_cpumask)
5098 BTF_ID(struct, task_struct)
5099 BTF_SET_END(rcu_protected_types)
5100
5101 static bool rcu_protected_object(const struct btf *btf, u32 btf_id)
5102 {
5103         if (!btf_is_kernel(btf))
5104                 return false;
5105         return btf_id_set_contains(&rcu_protected_types, btf_id);
5106 }
5107
5108 static bool rcu_safe_kptr(const struct btf_field *field)
5109 {
5110         const struct btf_field_kptr *kptr = &field->kptr;
5111
5112         return field->type == BPF_KPTR_REF && rcu_protected_object(kptr->btf, kptr->btf_id);
5113 }
5114
5115 static int check_map_kptr_access(struct bpf_verifier_env *env, u32 regno,
5116                                  int value_regno, int insn_idx,
5117                                  struct btf_field *kptr_field)
5118 {
5119         struct bpf_insn *insn = &env->prog->insnsi[insn_idx];
5120         int class = BPF_CLASS(insn->code);
5121         struct bpf_reg_state *val_reg;
5122
5123         /* Things we already checked for in check_map_access and caller:
5124          *  - Reject cases where variable offset may touch kptr
5125          *  - size of access (must be BPF_DW)
5126          *  - tnum_is_const(reg->var_off)
5127          *  - kptr_field->offset == off + reg->var_off.value
5128          */
5129         /* Only BPF_[LDX,STX,ST] | BPF_MEM | BPF_DW is supported */
5130         if (BPF_MODE(insn->code) != BPF_MEM) {
5131                 verbose(env, "kptr in map can only be accessed using BPF_MEM instruction mode\n");
5132                 return -EACCES;
5133         }
5134
5135         /* We only allow loading referenced kptr, since it will be marked as
5136          * untrusted, similar to unreferenced kptr.
5137          */
5138         if (class != BPF_LDX && kptr_field->type == BPF_KPTR_REF) {
5139                 verbose(env, "store to referenced kptr disallowed\n");
5140                 return -EACCES;
5141         }
5142
5143         if (class == BPF_LDX) {
5144                 val_reg = reg_state(env, value_regno);
5145                 /* We can simply mark the value_regno receiving the pointer
5146                  * value from map as PTR_TO_BTF_ID, with the correct type.
5147                  */
5148                 mark_btf_ld_reg(env, cur_regs(env), value_regno, PTR_TO_BTF_ID, kptr_field->kptr.btf,
5149                                 kptr_field->kptr.btf_id,
5150                                 rcu_safe_kptr(kptr_field) && in_rcu_cs(env) ?
5151                                 PTR_MAYBE_NULL | MEM_RCU :
5152                                 PTR_MAYBE_NULL | PTR_UNTRUSTED);
5153                 /* For mark_ptr_or_null_reg */
5154                 val_reg->id = ++env->id_gen;
5155         } else if (class == BPF_STX) {
5156                 val_reg = reg_state(env, value_regno);
5157                 if (!register_is_null(val_reg) &&
5158                     map_kptr_match_type(env, kptr_field, val_reg, value_regno))
5159                         return -EACCES;
5160         } else if (class == BPF_ST) {
5161                 if (insn->imm) {
5162                         verbose(env, "BPF_ST imm must be 0 when storing to kptr at off=%u\n",
5163                                 kptr_field->offset);
5164                         return -EACCES;
5165                 }
5166         } else {
5167                 verbose(env, "kptr in map can only be accessed using BPF_LDX/BPF_STX/BPF_ST\n");
5168                 return -EACCES;
5169         }
5170         return 0;
5171 }
5172
5173 /* check read/write into a map element with possible variable offset */
5174 static int check_map_access(struct bpf_verifier_env *env, u32 regno,
5175                             int off, int size, bool zero_size_allowed,
5176                             enum bpf_access_src src)
5177 {
5178         struct bpf_verifier_state *vstate = env->cur_state;
5179         struct bpf_func_state *state = vstate->frame[vstate->curframe];
5180         struct bpf_reg_state *reg = &state->regs[regno];
5181         struct bpf_map *map = reg->map_ptr;
5182         struct btf_record *rec;
5183         int err, i;
5184
5185         err = check_mem_region_access(env, regno, off, size, map->value_size,
5186                                       zero_size_allowed);
5187         if (err)
5188                 return err;
5189
5190         if (IS_ERR_OR_NULL(map->record))
5191                 return 0;
5192         rec = map->record;
5193         for (i = 0; i < rec->cnt; i++) {
5194                 struct btf_field *field = &rec->fields[i];
5195                 u32 p = field->offset;
5196
5197                 /* If any part of a field  can be touched by load/store, reject
5198                  * this program. To check that [x1, x2) overlaps with [y1, y2),
5199                  * it is sufficient to check x1 < y2 && y1 < x2.
5200                  */
5201                 if (reg->smin_value + off < p + btf_field_type_size(field->type) &&
5202                     p < reg->umax_value + off + size) {
5203                         switch (field->type) {
5204                         case BPF_KPTR_UNREF:
5205                         case BPF_KPTR_REF:
5206                                 if (src != ACCESS_DIRECT) {
5207                                         verbose(env, "kptr cannot be accessed indirectly by helper\n");
5208                                         return -EACCES;
5209                                 }
5210                                 if (!tnum_is_const(reg->var_off)) {
5211                                         verbose(env, "kptr access cannot have variable offset\n");
5212                                         return -EACCES;
5213                                 }
5214                                 if (p != off + reg->var_off.value) {
5215                                         verbose(env, "kptr access misaligned expected=%u off=%llu\n",
5216                                                 p, off + reg->var_off.value);
5217                                         return -EACCES;
5218                                 }
5219                                 if (size != bpf_size_to_bytes(BPF_DW)) {
5220                                         verbose(env, "kptr access size must be BPF_DW\n");
5221                                         return -EACCES;
5222                                 }
5223                                 break;
5224                         default:
5225                                 verbose(env, "%s cannot be accessed directly by load/store\n",
5226                                         btf_field_type_name(field->type));
5227                                 return -EACCES;
5228                         }
5229                 }
5230         }
5231         return 0;
5232 }
5233
5234 #define MAX_PACKET_OFF 0xffff
5235
5236 static bool may_access_direct_pkt_data(struct bpf_verifier_env *env,
5237                                        const struct bpf_call_arg_meta *meta,
5238                                        enum bpf_access_type t)
5239 {
5240         enum bpf_prog_type prog_type = resolve_prog_type(env->prog);
5241
5242         switch (prog_type) {
5243         /* Program types only with direct read access go here! */
5244         case BPF_PROG_TYPE_LWT_IN:
5245         case BPF_PROG_TYPE_LWT_OUT:
5246         case BPF_PROG_TYPE_LWT_SEG6LOCAL:
5247         case BPF_PROG_TYPE_SK_REUSEPORT:
5248         case BPF_PROG_TYPE_FLOW_DISSECTOR:
5249         case BPF_PROG_TYPE_CGROUP_SKB:
5250                 if (t == BPF_WRITE)
5251                         return false;
5252                 fallthrough;
5253
5254         /* Program types with direct read + write access go here! */
5255         case BPF_PROG_TYPE_SCHED_CLS:
5256         case BPF_PROG_TYPE_SCHED_ACT:
5257         case BPF_PROG_TYPE_XDP:
5258         case BPF_PROG_TYPE_LWT_XMIT:
5259         case BPF_PROG_TYPE_SK_SKB:
5260         case BPF_PROG_TYPE_SK_MSG:
5261                 if (meta)
5262                         return meta->pkt_access;
5263
5264                 env->seen_direct_write = true;
5265                 return true;
5266
5267         case BPF_PROG_TYPE_CGROUP_SOCKOPT:
5268                 if (t == BPF_WRITE)
5269                         env->seen_direct_write = true;
5270
5271                 return true;
5272
5273         default:
5274                 return false;
5275         }
5276 }
5277
5278 static int check_packet_access(struct bpf_verifier_env *env, u32 regno, int off,
5279                                int size, bool zero_size_allowed)
5280 {
5281         struct bpf_reg_state *regs = cur_regs(env);
5282         struct bpf_reg_state *reg = &regs[regno];
5283         int err;
5284
5285         /* We may have added a variable offset to the packet pointer; but any
5286          * reg->range we have comes after that.  We are only checking the fixed
5287          * offset.
5288          */
5289
5290         /* We don't allow negative numbers, because we aren't tracking enough
5291          * detail to prove they're safe.
5292          */
5293         if (reg->smin_value < 0) {
5294                 verbose(env, "R%d min value is negative, either use unsigned index or do a if (index >=0) check.\n",
5295                         regno);
5296                 return -EACCES;
5297         }
5298
5299         err = reg->range < 0 ? -EINVAL :
5300               __check_mem_access(env, regno, off, size, reg->range,
5301                                  zero_size_allowed);
5302         if (err) {
5303                 verbose(env, "R%d offset is outside of the packet\n", regno);
5304                 return err;
5305         }
5306
5307         /* __check_mem_access has made sure "off + size - 1" is within u16.
5308          * reg->umax_value can't be bigger than MAX_PACKET_OFF which is 0xffff,
5309          * otherwise find_good_pkt_pointers would have refused to set range info
5310          * that __check_mem_access would have rejected this pkt access.
5311          * Therefore, "off + reg->umax_value + size - 1" won't overflow u32.
5312          */
5313         env->prog->aux->max_pkt_offset =
5314                 max_t(u32, env->prog->aux->max_pkt_offset,
5315                       off + reg->umax_value + size - 1);
5316
5317         return err;
5318 }
5319
5320 /* check access to 'struct bpf_context' fields.  Supports fixed offsets only */
5321 static int check_ctx_access(struct bpf_verifier_env *env, int insn_idx, int off, int size,
5322                             enum bpf_access_type t, enum bpf_reg_type *reg_type,
5323                             struct btf **btf, u32 *btf_id)
5324 {
5325         struct bpf_insn_access_aux info = {
5326                 .reg_type = *reg_type,
5327                 .log = &env->log,
5328         };
5329
5330         if (env->ops->is_valid_access &&
5331             env->ops->is_valid_access(off, size, t, env->prog, &info)) {
5332                 /* A non zero info.ctx_field_size indicates that this field is a
5333                  * candidate for later verifier transformation to load the whole
5334                  * field and then apply a mask when accessed with a narrower
5335                  * access than actual ctx access size. A zero info.ctx_field_size
5336                  * will only allow for whole field access and rejects any other
5337                  * type of narrower access.
5338                  */
5339                 *reg_type = info.reg_type;
5340
5341                 if (base_type(*reg_type) == PTR_TO_BTF_ID) {
5342                         *btf = info.btf;
5343                         *btf_id = info.btf_id;
5344                 } else {
5345                         env->insn_aux_data[insn_idx].ctx_field_size = info.ctx_field_size;
5346                 }
5347                 /* remember the offset of last byte accessed in ctx */
5348                 if (env->prog->aux->max_ctx_offset < off + size)
5349                         env->prog->aux->max_ctx_offset = off + size;
5350                 return 0;
5351         }
5352
5353         verbose(env, "invalid bpf_context access off=%d size=%d\n", off, size);
5354         return -EACCES;
5355 }
5356
5357 static int check_flow_keys_access(struct bpf_verifier_env *env, int off,
5358                                   int size)
5359 {
5360         if (size < 0 || off < 0 ||
5361             (u64)off + size > sizeof(struct bpf_flow_keys)) {
5362                 verbose(env, "invalid access to flow keys off=%d size=%d\n",
5363                         off, size);
5364                 return -EACCES;
5365         }
5366         return 0;
5367 }
5368
5369 static int check_sock_access(struct bpf_verifier_env *env, int insn_idx,
5370                              u32 regno, int off, int size,
5371                              enum bpf_access_type t)
5372 {
5373         struct bpf_reg_state *regs = cur_regs(env);
5374         struct bpf_reg_state *reg = &regs[regno];
5375         struct bpf_insn_access_aux info = {};
5376         bool valid;
5377
5378         if (reg->smin_value < 0) {
5379                 verbose(env, "R%d min value is negative, either use unsigned index or do a if (index >=0) check.\n",
5380                         regno);
5381                 return -EACCES;
5382         }
5383
5384         switch (reg->type) {
5385         case PTR_TO_SOCK_COMMON:
5386                 valid = bpf_sock_common_is_valid_access(off, size, t, &info);
5387                 break;
5388         case PTR_TO_SOCKET:
5389                 valid = bpf_sock_is_valid_access(off, size, t, &info);
5390                 break;
5391         case PTR_TO_TCP_SOCK:
5392                 valid = bpf_tcp_sock_is_valid_access(off, size, t, &info);
5393                 break;
5394         case PTR_TO_XDP_SOCK:
5395                 valid = bpf_xdp_sock_is_valid_access(off, size, t, &info);
5396                 break;
5397         default:
5398                 valid = false;
5399         }
5400
5401
5402         if (valid) {
5403                 env->insn_aux_data[insn_idx].ctx_field_size =
5404                         info.ctx_field_size;
5405                 return 0;
5406         }
5407
5408         verbose(env, "R%d invalid %s access off=%d size=%d\n",
5409                 regno, reg_type_str(env, reg->type), off, size);
5410
5411         return -EACCES;
5412 }
5413
5414 static bool is_pointer_value(struct bpf_verifier_env *env, int regno)
5415 {
5416         return __is_pointer_value(env->allow_ptr_leaks, reg_state(env, regno));
5417 }
5418
5419 static bool is_ctx_reg(struct bpf_verifier_env *env, int regno)
5420 {
5421         const struct bpf_reg_state *reg = reg_state(env, regno);
5422
5423         return reg->type == PTR_TO_CTX;
5424 }
5425
5426 static bool is_sk_reg(struct bpf_verifier_env *env, int regno)
5427 {
5428         const struct bpf_reg_state *reg = reg_state(env, regno);
5429
5430         return type_is_sk_pointer(reg->type);
5431 }
5432
5433 static bool is_pkt_reg(struct bpf_verifier_env *env, int regno)
5434 {
5435         const struct bpf_reg_state *reg = reg_state(env, regno);
5436
5437         return type_is_pkt_pointer(reg->type);
5438 }
5439
5440 static bool is_flow_key_reg(struct bpf_verifier_env *env, int regno)
5441 {
5442         const struct bpf_reg_state *reg = reg_state(env, regno);
5443
5444         /* Separate to is_ctx_reg() since we still want to allow BPF_ST here. */
5445         return reg->type == PTR_TO_FLOW_KEYS;
5446 }
5447
5448 static u32 *reg2btf_ids[__BPF_REG_TYPE_MAX] = {
5449 #ifdef CONFIG_NET
5450         [PTR_TO_SOCKET] = &btf_sock_ids[BTF_SOCK_TYPE_SOCK],
5451         [PTR_TO_SOCK_COMMON] = &btf_sock_ids[BTF_SOCK_TYPE_SOCK_COMMON],
5452         [PTR_TO_TCP_SOCK] = &btf_sock_ids[BTF_SOCK_TYPE_TCP],
5453 #endif
5454         [CONST_PTR_TO_MAP] = btf_bpf_map_id,
5455 };
5456
5457 static bool is_trusted_reg(const struct bpf_reg_state *reg)
5458 {
5459         /* A referenced register is always trusted. */
5460         if (reg->ref_obj_id)
5461                 return true;
5462
5463         /* Types listed in the reg2btf_ids are always trusted */
5464         if (reg2btf_ids[base_type(reg->type)])
5465                 return true;
5466
5467         /* If a register is not referenced, it is trusted if it has the
5468          * MEM_ALLOC or PTR_TRUSTED type modifiers, and no others. Some of the
5469          * other type modifiers may be safe, but we elect to take an opt-in
5470          * approach here as some (e.g. PTR_UNTRUSTED and PTR_MAYBE_NULL) are
5471          * not.
5472          *
5473          * Eventually, we should make PTR_TRUSTED the single source of truth
5474          * for whether a register is trusted.
5475          */
5476         return type_flag(reg->type) & BPF_REG_TRUSTED_MODIFIERS &&
5477                !bpf_type_has_unsafe_modifiers(reg->type);
5478 }
5479
5480 static bool is_rcu_reg(const struct bpf_reg_state *reg)
5481 {
5482         return reg->type & MEM_RCU;
5483 }
5484
5485 static void clear_trusted_flags(enum bpf_type_flag *flag)
5486 {
5487         *flag &= ~(BPF_REG_TRUSTED_MODIFIERS | MEM_RCU);
5488 }
5489
5490 static int check_pkt_ptr_alignment(struct bpf_verifier_env *env,
5491                                    const struct bpf_reg_state *reg,
5492                                    int off, int size, bool strict)
5493 {
5494         struct tnum reg_off;
5495         int ip_align;
5496
5497         /* Byte size accesses are always allowed. */
5498         if (!strict || size == 1)
5499                 return 0;
5500
5501         /* For platforms that do not have a Kconfig enabling
5502          * CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS the value of
5503          * NET_IP_ALIGN is universally set to '2'.  And on platforms
5504          * that do set CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS, we get
5505          * to this code only in strict mode where we want to emulate
5506          * the NET_IP_ALIGN==2 checking.  Therefore use an
5507          * unconditional IP align value of '2'.
5508          */
5509         ip_align = 2;
5510
5511         reg_off = tnum_add(reg->var_off, tnum_const(ip_align + reg->off + off));
5512         if (!tnum_is_aligned(reg_off, size)) {
5513                 char tn_buf[48];
5514
5515                 tnum_strn(tn_buf, sizeof(tn_buf), reg->var_off);
5516                 verbose(env,
5517                         "misaligned packet access off %d+%s+%d+%d size %d\n",
5518                         ip_align, tn_buf, reg->off, off, size);
5519                 return -EACCES;
5520         }
5521
5522         return 0;
5523 }
5524
5525 static int check_generic_ptr_alignment(struct bpf_verifier_env *env,
5526                                        const struct bpf_reg_state *reg,
5527                                        const char *pointer_desc,
5528                                        int off, int size, bool strict)
5529 {
5530         struct tnum reg_off;
5531
5532         /* Byte size accesses are always allowed. */
5533         if (!strict || size == 1)
5534                 return 0;
5535
5536         reg_off = tnum_add(reg->var_off, tnum_const(reg->off + off));
5537         if (!tnum_is_aligned(reg_off, size)) {
5538                 char tn_buf[48];
5539
5540                 tnum_strn(tn_buf, sizeof(tn_buf), reg->var_off);
5541                 verbose(env, "misaligned %saccess off %s+%d+%d size %d\n",
5542                         pointer_desc, tn_buf, reg->off, off, size);
5543                 return -EACCES;
5544         }
5545
5546         return 0;
5547 }
5548
5549 static int check_ptr_alignment(struct bpf_verifier_env *env,
5550                                const struct bpf_reg_state *reg, int off,
5551                                int size, bool strict_alignment_once)
5552 {
5553         bool strict = env->strict_alignment || strict_alignment_once;
5554         const char *pointer_desc = "";
5555
5556         switch (reg->type) {
5557         case PTR_TO_PACKET:
5558         case PTR_TO_PACKET_META:
5559                 /* Special case, because of NET_IP_ALIGN. Given metadata sits
5560                  * right in front, treat it the very same way.
5561                  */
5562                 return check_pkt_ptr_alignment(env, reg, off, size, strict);
5563         case PTR_TO_FLOW_KEYS:
5564                 pointer_desc = "flow keys ";
5565                 break;
5566         case PTR_TO_MAP_KEY:
5567                 pointer_desc = "key ";
5568                 break;
5569         case PTR_TO_MAP_VALUE:
5570                 pointer_desc = "value ";
5571                 break;
5572         case PTR_TO_CTX:
5573                 pointer_desc = "context ";
5574                 break;
5575         case PTR_TO_STACK:
5576                 pointer_desc = "stack ";
5577                 /* The stack spill tracking logic in check_stack_write_fixed_off()
5578                  * and check_stack_read_fixed_off() relies on stack accesses being
5579                  * aligned.
5580                  */
5581                 strict = true;
5582                 break;
5583         case PTR_TO_SOCKET:
5584                 pointer_desc = "sock ";
5585                 break;
5586         case PTR_TO_SOCK_COMMON:
5587                 pointer_desc = "sock_common ";
5588                 break;
5589         case PTR_TO_TCP_SOCK:
5590                 pointer_desc = "tcp_sock ";
5591                 break;
5592         case PTR_TO_XDP_SOCK:
5593                 pointer_desc = "xdp_sock ";
5594                 break;
5595         default:
5596                 break;
5597         }
5598         return check_generic_ptr_alignment(env, reg, pointer_desc, off, size,
5599                                            strict);
5600 }
5601
5602 static int update_stack_depth(struct bpf_verifier_env *env,
5603                               const struct bpf_func_state *func,
5604                               int off)
5605 {
5606         u16 stack = env->subprog_info[func->subprogno].stack_depth;
5607
5608         if (stack >= -off)
5609                 return 0;
5610
5611         /* update known max for given subprogram */
5612         env->subprog_info[func->subprogno].stack_depth = -off;
5613         return 0;
5614 }
5615
5616 /* starting from main bpf function walk all instructions of the function
5617  * and recursively walk all callees that given function can call.
5618  * Ignore jump and exit insns.
5619  * Since recursion is prevented by check_cfg() this algorithm
5620  * only needs a local stack of MAX_CALL_FRAMES to remember callsites
5621  */
5622 static int check_max_stack_depth_subprog(struct bpf_verifier_env *env, int idx)
5623 {
5624         struct bpf_subprog_info *subprog = env->subprog_info;
5625         struct bpf_insn *insn = env->prog->insnsi;
5626         int depth = 0, frame = 0, i, subprog_end;
5627         bool tail_call_reachable = false;
5628         int ret_insn[MAX_CALL_FRAMES];
5629         int ret_prog[MAX_CALL_FRAMES];
5630         int j;
5631
5632         i = subprog[idx].start;
5633 process_func:
5634         /* protect against potential stack overflow that might happen when
5635          * bpf2bpf calls get combined with tailcalls. Limit the caller's stack
5636          * depth for such case down to 256 so that the worst case scenario
5637          * would result in 8k stack size (32 which is tailcall limit * 256 =
5638          * 8k).
5639          *
5640          * To get the idea what might happen, see an example:
5641          * func1 -> sub rsp, 128
5642          *  subfunc1 -> sub rsp, 256
5643          *  tailcall1 -> add rsp, 256
5644          *   func2 -> sub rsp, 192 (total stack size = 128 + 192 = 320)
5645          *   subfunc2 -> sub rsp, 64
5646          *   subfunc22 -> sub rsp, 128
5647          *   tailcall2 -> add rsp, 128
5648          *    func3 -> sub rsp, 32 (total stack size 128 + 192 + 64 + 32 = 416)
5649          *
5650          * tailcall will unwind the current stack frame but it will not get rid
5651          * of caller's stack as shown on the example above.
5652          */
5653         if (idx && subprog[idx].has_tail_call && depth >= 256) {
5654                 verbose(env,
5655                         "tail_calls are not allowed when call stack of previous frames is %d bytes. Too large\n",
5656                         depth);
5657                 return -EACCES;
5658         }
5659         /* round up to 32-bytes, since this is granularity
5660          * of interpreter stack size
5661          */
5662         depth += round_up(max_t(u32, subprog[idx].stack_depth, 1), 32);
5663         if (depth > MAX_BPF_STACK) {
5664                 verbose(env, "combined stack size of %d calls is %d. Too large\n",
5665                         frame + 1, depth);
5666                 return -EACCES;
5667         }
5668 continue_func:
5669         subprog_end = subprog[idx + 1].start;
5670         for (; i < subprog_end; i++) {
5671                 int next_insn, sidx;
5672
5673                 if (!bpf_pseudo_call(insn + i) && !bpf_pseudo_func(insn + i))
5674                         continue;
5675                 /* remember insn and function to return to */
5676                 ret_insn[frame] = i + 1;
5677                 ret_prog[frame] = idx;
5678
5679                 /* find the callee */
5680                 next_insn = i + insn[i].imm + 1;
5681                 sidx = find_subprog(env, next_insn);
5682                 if (sidx < 0) {
5683                         WARN_ONCE(1, "verifier bug. No program starts at insn %d\n",
5684                                   next_insn);
5685                         return -EFAULT;
5686                 }
5687                 if (subprog[sidx].is_async_cb) {
5688                         if (subprog[sidx].has_tail_call) {
5689                                 verbose(env, "verifier bug. subprog has tail_call and async cb\n");
5690                                 return -EFAULT;
5691                         }
5692                         /* async callbacks don't increase bpf prog stack size unless called directly */
5693                         if (!bpf_pseudo_call(insn + i))
5694                                 continue;
5695                 }
5696                 i = next_insn;
5697                 idx = sidx;
5698
5699                 if (subprog[idx].has_tail_call)
5700                         tail_call_reachable = true;
5701
5702                 frame++;
5703                 if (frame >= MAX_CALL_FRAMES) {
5704                         verbose(env, "the call stack of %d frames is too deep !\n",
5705                                 frame);
5706                         return -E2BIG;
5707                 }
5708                 goto process_func;
5709         }
5710         /* if tail call got detected across bpf2bpf calls then mark each of the
5711          * currently present subprog frames as tail call reachable subprogs;
5712          * this info will be utilized by JIT so that we will be preserving the
5713          * tail call counter throughout bpf2bpf calls combined with tailcalls
5714          */
5715         if (tail_call_reachable)
5716                 for (j = 0; j < frame; j++)
5717                         subprog[ret_prog[j]].tail_call_reachable = true;
5718         if (subprog[0].tail_call_reachable)
5719                 env->prog->aux->tail_call_reachable = true;
5720
5721         /* end of for() loop means the last insn of the 'subprog'
5722          * was reached. Doesn't matter whether it was JA or EXIT
5723          */
5724         if (frame == 0)
5725                 return 0;
5726         depth -= round_up(max_t(u32, subprog[idx].stack_depth, 1), 32);
5727         frame--;
5728         i = ret_insn[frame];
5729         idx = ret_prog[frame];
5730         goto continue_func;
5731 }
5732
5733 static int check_max_stack_depth(struct bpf_verifier_env *env)
5734 {
5735         struct bpf_subprog_info *si = env->subprog_info;
5736         int ret;
5737
5738         for (int i = 0; i < env->subprog_cnt; i++) {
5739                 if (!i || si[i].is_async_cb) {
5740                         ret = check_max_stack_depth_subprog(env, i);
5741                         if (ret < 0)
5742                                 return ret;
5743                 }
5744                 continue;
5745         }
5746         return 0;
5747 }
5748
5749 #ifndef CONFIG_BPF_JIT_ALWAYS_ON
5750 static int get_callee_stack_depth(struct bpf_verifier_env *env,
5751                                   const struct bpf_insn *insn, int idx)
5752 {
5753         int start = idx + insn->imm + 1, subprog;
5754
5755         subprog = find_subprog(env, start);
5756         if (subprog < 0) {
5757                 WARN_ONCE(1, "verifier bug. No program starts at insn %d\n",
5758                           start);
5759                 return -EFAULT;
5760         }
5761         return env->subprog_info[subprog].stack_depth;
5762 }
5763 #endif
5764
5765 static int __check_buffer_access(struct bpf_verifier_env *env,
5766                                  const char *buf_info,
5767                                  const struct bpf_reg_state *reg,
5768                                  int regno, int off, int size)
5769 {
5770         if (off < 0) {
5771                 verbose(env,
5772                         "R%d invalid %s buffer access: off=%d, size=%d\n",
5773                         regno, buf_info, off, size);
5774                 return -EACCES;
5775         }
5776         if (!tnum_is_const(reg->var_off) || reg->var_off.value) {
5777                 char tn_buf[48];
5778
5779                 tnum_strn(tn_buf, sizeof(tn_buf), reg->var_off);
5780                 verbose(env,
5781                         "R%d invalid variable buffer offset: off=%d, var_off=%s\n",
5782                         regno, off, tn_buf);
5783                 return -EACCES;
5784         }
5785
5786         return 0;
5787 }
5788
5789 static int check_tp_buffer_access(struct bpf_verifier_env *env,
5790                                   const struct bpf_reg_state *reg,
5791                                   int regno, int off, int size)
5792 {
5793         int err;
5794
5795         err = __check_buffer_access(env, "tracepoint", reg, regno, off, size);
5796         if (err)
5797                 return err;
5798
5799         if (off + size > env->prog->aux->max_tp_access)
5800                 env->prog->aux->max_tp_access = off + size;
5801
5802         return 0;
5803 }
5804
5805 static int check_buffer_access(struct bpf_verifier_env *env,
5806                                const struct bpf_reg_state *reg,
5807                                int regno, int off, int size,
5808                                bool zero_size_allowed,
5809                                u32 *max_access)
5810 {
5811         const char *buf_info = type_is_rdonly_mem(reg->type) ? "rdonly" : "rdwr";
5812         int err;
5813
5814         err = __check_buffer_access(env, buf_info, reg, regno, off, size);
5815         if (err)
5816                 return err;
5817
5818         if (off + size > *max_access)
5819                 *max_access = off + size;
5820
5821         return 0;
5822 }
5823
5824 /* BPF architecture zero extends alu32 ops into 64-bit registesr */
5825 static void zext_32_to_64(struct bpf_reg_state *reg)
5826 {
5827         reg->var_off = tnum_subreg(reg->var_off);
5828         __reg_assign_32_into_64(reg);
5829 }
5830
5831 /* truncate register to smaller size (in bytes)
5832  * must be called with size < BPF_REG_SIZE
5833  */
5834 static void coerce_reg_to_size(struct bpf_reg_state *reg, int size)
5835 {
5836         u64 mask;
5837
5838         /* clear high bits in bit representation */
5839         reg->var_off = tnum_cast(reg->var_off, size);
5840
5841         /* fix arithmetic bounds */
5842         mask = ((u64)1 << (size * 8)) - 1;
5843         if ((reg->umin_value & ~mask) == (reg->umax_value & ~mask)) {
5844                 reg->umin_value &= mask;
5845                 reg->umax_value &= mask;
5846         } else {
5847                 reg->umin_value = 0;
5848                 reg->umax_value = mask;
5849         }
5850         reg->smin_value = reg->umin_value;
5851         reg->smax_value = reg->umax_value;
5852
5853         /* If size is smaller than 32bit register the 32bit register
5854          * values are also truncated so we push 64-bit bounds into
5855          * 32-bit bounds. Above were truncated < 32-bits already.
5856          */
5857         if (size >= 4)
5858                 return;
5859         __reg_combine_64_into_32(reg);
5860 }
5861
5862 static void set_sext64_default_val(struct bpf_reg_state *reg, int size)
5863 {
5864         if (size == 1) {
5865                 reg->smin_value = reg->s32_min_value = S8_MIN;
5866                 reg->smax_value = reg->s32_max_value = S8_MAX;
5867         } else if (size == 2) {
5868                 reg->smin_value = reg->s32_min_value = S16_MIN;
5869                 reg->smax_value = reg->s32_max_value = S16_MAX;
5870         } else {
5871                 /* size == 4 */
5872                 reg->smin_value = reg->s32_min_value = S32_MIN;
5873                 reg->smax_value = reg->s32_max_value = S32_MAX;
5874         }
5875         reg->umin_value = reg->u32_min_value = 0;
5876         reg->umax_value = U64_MAX;
5877         reg->u32_max_value = U32_MAX;
5878         reg->var_off = tnum_unknown;
5879 }
5880
5881 static void coerce_reg_to_size_sx(struct bpf_reg_state *reg, int size)
5882 {
5883         s64 init_s64_max, init_s64_min, s64_max, s64_min, u64_cval;
5884         u64 top_smax_value, top_smin_value;
5885         u64 num_bits = size * 8;
5886
5887         if (tnum_is_const(reg->var_off)) {
5888                 u64_cval = reg->var_off.value;
5889                 if (size == 1)
5890                         reg->var_off = tnum_const((s8)u64_cval);
5891                 else if (size == 2)
5892                         reg->var_off = tnum_const((s16)u64_cval);
5893                 else
5894                         /* size == 4 */
5895                         reg->var_off = tnum_const((s32)u64_cval);
5896
5897                 u64_cval = reg->var_off.value;
5898                 reg->smax_value = reg->smin_value = u64_cval;
5899                 reg->umax_value = reg->umin_value = u64_cval;
5900                 reg->s32_max_value = reg->s32_min_value = u64_cval;
5901                 reg->u32_max_value = reg->u32_min_value = u64_cval;
5902                 return;
5903         }
5904
5905         top_smax_value = ((u64)reg->smax_value >> num_bits) << num_bits;
5906         top_smin_value = ((u64)reg->smin_value >> num_bits) << num_bits;
5907
5908         if (top_smax_value != top_smin_value)
5909                 goto out;
5910
5911         /* find the s64_min and s64_min after sign extension */
5912         if (size == 1) {
5913                 init_s64_max = (s8)reg->smax_value;
5914                 init_s64_min = (s8)reg->smin_value;
5915         } else if (size == 2) {
5916                 init_s64_max = (s16)reg->smax_value;
5917                 init_s64_min = (s16)reg->smin_value;
5918         } else {
5919                 init_s64_max = (s32)reg->smax_value;
5920                 init_s64_min = (s32)reg->smin_value;
5921         }
5922
5923         s64_max = max(init_s64_max, init_s64_min);
5924         s64_min = min(init_s64_max, init_s64_min);
5925
5926         /* both of s64_max/s64_min positive or negative */
5927         if ((s64_max >= 0) == (s64_min >= 0)) {
5928                 reg->smin_value = reg->s32_min_value = s64_min;
5929                 reg->smax_value = reg->s32_max_value = s64_max;
5930                 reg->umin_value = reg->u32_min_value = s64_min;
5931                 reg->umax_value = reg->u32_max_value = s64_max;
5932                 reg->var_off = tnum_range(s64_min, s64_max);
5933                 return;
5934         }
5935
5936 out:
5937         set_sext64_default_val(reg, size);
5938 }
5939
5940 static void set_sext32_default_val(struct bpf_reg_state *reg, int size)
5941 {
5942         if (size == 1) {
5943                 reg->s32_min_value = S8_MIN;
5944                 reg->s32_max_value = S8_MAX;
5945         } else {
5946                 /* size == 2 */
5947                 reg->s32_min_value = S16_MIN;
5948                 reg->s32_max_value = S16_MAX;
5949         }
5950         reg->u32_min_value = 0;
5951         reg->u32_max_value = U32_MAX;
5952 }
5953
5954 static void coerce_subreg_to_size_sx(struct bpf_reg_state *reg, int size)
5955 {
5956         s32 init_s32_max, init_s32_min, s32_max, s32_min, u32_val;
5957         u32 top_smax_value, top_smin_value;
5958         u32 num_bits = size * 8;
5959
5960         if (tnum_is_const(reg->var_off)) {
5961                 u32_val = reg->var_off.value;
5962                 if (size == 1)
5963                         reg->var_off = tnum_const((s8)u32_val);
5964                 else
5965                         reg->var_off = tnum_const((s16)u32_val);
5966
5967                 u32_val = reg->var_off.value;
5968                 reg->s32_min_value = reg->s32_max_value = u32_val;
5969                 reg->u32_min_value = reg->u32_max_value = u32_val;
5970                 return;
5971         }
5972
5973         top_smax_value = ((u32)reg->s32_max_value >> num_bits) << num_bits;
5974         top_smin_value = ((u32)reg->s32_min_value >> num_bits) << num_bits;
5975
5976         if (top_smax_value != top_smin_value)
5977                 goto out;
5978
5979         /* find the s32_min and s32_min after sign extension */
5980         if (size == 1) {
5981                 init_s32_max = (s8)reg->s32_max_value;
5982                 init_s32_min = (s8)reg->s32_min_value;
5983         } else {
5984                 /* size == 2 */
5985                 init_s32_max = (s16)reg->s32_max_value;
5986                 init_s32_min = (s16)reg->s32_min_value;
5987         }
5988         s32_max = max(init_s32_max, init_s32_min);
5989         s32_min = min(init_s32_max, init_s32_min);
5990
5991         if ((s32_min >= 0) == (s32_max >= 0)) {
5992                 reg->s32_min_value = s32_min;
5993                 reg->s32_max_value = s32_max;
5994                 reg->u32_min_value = (u32)s32_min;
5995                 reg->u32_max_value = (u32)s32_max;
5996                 return;
5997         }
5998
5999 out:
6000         set_sext32_default_val(reg, size);
6001 }
6002
6003 static bool bpf_map_is_rdonly(const struct bpf_map *map)
6004 {
6005         /* A map is considered read-only if the following condition are true:
6006          *
6007          * 1) BPF program side cannot change any of the map content. The
6008          *    BPF_F_RDONLY_PROG flag is throughout the lifetime of a map
6009          *    and was set at map creation time.
6010          * 2) The map value(s) have been initialized from user space by a
6011          *    loader and then "frozen", such that no new map update/delete
6012          *    operations from syscall side are possible for the rest of
6013          *    the map's lifetime from that point onwards.
6014          * 3) Any parallel/pending map update/delete operations from syscall
6015          *    side have been completed. Only after that point, it's safe to
6016          *    assume that map value(s) are immutable.
6017          */
6018         return (map->map_flags & BPF_F_RDONLY_PROG) &&
6019                READ_ONCE(map->frozen) &&
6020                !bpf_map_write_active(map);
6021 }
6022
6023 static int bpf_map_direct_read(struct bpf_map *map, int off, int size, u64 *val,
6024                                bool is_ldsx)
6025 {
6026         void *ptr;
6027         u64 addr;
6028         int err;
6029
6030         err = map->ops->map_direct_value_addr(map, &addr, off);
6031         if (err)
6032                 return err;
6033         ptr = (void *)(long)addr + off;
6034
6035         switch (size) {
6036         case sizeof(u8):
6037                 *val = is_ldsx ? (s64)*(s8 *)ptr : (u64)*(u8 *)ptr;
6038                 break;
6039         case sizeof(u16):
6040                 *val = is_ldsx ? (s64)*(s16 *)ptr : (u64)*(u16 *)ptr;
6041                 break;
6042         case sizeof(u32):
6043                 *val = is_ldsx ? (s64)*(s32 *)ptr : (u64)*(u32 *)ptr;
6044                 break;
6045         case sizeof(u64):
6046                 *val = *(u64 *)ptr;
6047                 break;
6048         default:
6049                 return -EINVAL;
6050         }
6051         return 0;
6052 }
6053
6054 #define BTF_TYPE_SAFE_RCU(__type)  __PASTE(__type, __safe_rcu)
6055 #define BTF_TYPE_SAFE_RCU_OR_NULL(__type)  __PASTE(__type, __safe_rcu_or_null)
6056 #define BTF_TYPE_SAFE_TRUSTED(__type)  __PASTE(__type, __safe_trusted)
6057
6058 /*
6059  * Allow list few fields as RCU trusted or full trusted.
6060  * This logic doesn't allow mix tagging and will be removed once GCC supports
6061  * btf_type_tag.
6062  */
6063
6064 /* RCU trusted: these fields are trusted in RCU CS and never NULL */
6065 BTF_TYPE_SAFE_RCU(struct task_struct) {
6066         const cpumask_t *cpus_ptr;
6067         struct css_set __rcu *cgroups;
6068         struct task_struct __rcu *real_parent;
6069         struct task_struct *group_leader;
6070 };
6071
6072 BTF_TYPE_SAFE_RCU(struct cgroup) {
6073         /* cgrp->kn is always accessible as documented in kernel/cgroup/cgroup.c */
6074         struct kernfs_node *kn;
6075 };
6076
6077 BTF_TYPE_SAFE_RCU(struct css_set) {
6078         struct cgroup *dfl_cgrp;
6079 };
6080
6081 /* RCU trusted: these fields are trusted in RCU CS and can be NULL */
6082 BTF_TYPE_SAFE_RCU_OR_NULL(struct mm_struct) {
6083         struct file __rcu *exe_file;
6084 };
6085
6086 /* skb->sk, req->sk are not RCU protected, but we mark them as such
6087  * because bpf prog accessible sockets are SOCK_RCU_FREE.
6088  */
6089 BTF_TYPE_SAFE_RCU_OR_NULL(struct sk_buff) {
6090         struct sock *sk;
6091 };
6092
6093 BTF_TYPE_SAFE_RCU_OR_NULL(struct request_sock) {
6094         struct sock *sk;
6095 };
6096
6097 /* full trusted: these fields are trusted even outside of RCU CS and never NULL */
6098 BTF_TYPE_SAFE_TRUSTED(struct bpf_iter_meta) {
6099         struct seq_file *seq;
6100 };
6101
6102 BTF_TYPE_SAFE_TRUSTED(struct bpf_iter__task) {
6103         struct bpf_iter_meta *meta;
6104         struct task_struct *task;
6105 };
6106
6107 BTF_TYPE_SAFE_TRUSTED(struct linux_binprm) {
6108         struct file *file;
6109 };
6110
6111 BTF_TYPE_SAFE_TRUSTED(struct file) {
6112         struct inode *f_inode;
6113 };
6114
6115 BTF_TYPE_SAFE_TRUSTED(struct dentry) {
6116         /* no negative dentry-s in places where bpf can see it */
6117         struct inode *d_inode;
6118 };
6119
6120 BTF_TYPE_SAFE_TRUSTED(struct socket) {
6121         struct sock *sk;
6122 };
6123
6124 static bool type_is_rcu(struct bpf_verifier_env *env,
6125                         struct bpf_reg_state *reg,
6126                         const char *field_name, u32 btf_id)
6127 {
6128         BTF_TYPE_EMIT(BTF_TYPE_SAFE_RCU(struct task_struct));
6129         BTF_TYPE_EMIT(BTF_TYPE_SAFE_RCU(struct cgroup));
6130         BTF_TYPE_EMIT(BTF_TYPE_SAFE_RCU(struct css_set));
6131
6132         return btf_nested_type_is_trusted(&env->log, reg, field_name, btf_id, "__safe_rcu");
6133 }
6134
6135 static bool type_is_rcu_or_null(struct bpf_verifier_env *env,
6136                                 struct bpf_reg_state *reg,
6137                                 const char *field_name, u32 btf_id)
6138 {
6139         BTF_TYPE_EMIT(BTF_TYPE_SAFE_RCU_OR_NULL(struct mm_struct));
6140         BTF_TYPE_EMIT(BTF_TYPE_SAFE_RCU_OR_NULL(struct sk_buff));
6141         BTF_TYPE_EMIT(BTF_TYPE_SAFE_RCU_OR_NULL(struct request_sock));
6142
6143         return btf_nested_type_is_trusted(&env->log, reg, field_name, btf_id, "__safe_rcu_or_null");
6144 }
6145
6146 static bool type_is_trusted(struct bpf_verifier_env *env,
6147                             struct bpf_reg_state *reg,
6148                             const char *field_name, u32 btf_id)
6149 {
6150         BTF_TYPE_EMIT(BTF_TYPE_SAFE_TRUSTED(struct bpf_iter_meta));
6151         BTF_TYPE_EMIT(BTF_TYPE_SAFE_TRUSTED(struct bpf_iter__task));
6152         BTF_TYPE_EMIT(BTF_TYPE_SAFE_TRUSTED(struct linux_binprm));
6153         BTF_TYPE_EMIT(BTF_TYPE_SAFE_TRUSTED(struct file));
6154         BTF_TYPE_EMIT(BTF_TYPE_SAFE_TRUSTED(struct dentry));
6155         BTF_TYPE_EMIT(BTF_TYPE_SAFE_TRUSTED(struct socket));
6156
6157         return btf_nested_type_is_trusted(&env->log, reg, field_name, btf_id, "__safe_trusted");
6158 }
6159
6160 static int check_ptr_to_btf_access(struct bpf_verifier_env *env,
6161                                    struct bpf_reg_state *regs,
6162                                    int regno, int off, int size,
6163                                    enum bpf_access_type atype,
6164                                    int value_regno)
6165 {
6166         struct bpf_reg_state *reg = regs + regno;
6167         const struct btf_type *t = btf_type_by_id(reg->btf, reg->btf_id);
6168         const char *tname = btf_name_by_offset(reg->btf, t->name_off);
6169         const char *field_name = NULL;
6170         enum bpf_type_flag flag = 0;
6171         u32 btf_id = 0;
6172         int ret;
6173
6174         if (!env->allow_ptr_leaks) {
6175                 verbose(env,
6176                         "'struct %s' access is allowed only to CAP_PERFMON and CAP_SYS_ADMIN\n",
6177                         tname);
6178                 return -EPERM;
6179         }
6180         if (!env->prog->gpl_compatible && btf_is_kernel(reg->btf)) {
6181                 verbose(env,
6182                         "Cannot access kernel 'struct %s' from non-GPL compatible program\n",
6183                         tname);
6184                 return -EINVAL;
6185         }
6186         if (off < 0) {
6187                 verbose(env,
6188                         "R%d is ptr_%s invalid negative access: off=%d\n",
6189                         regno, tname, off);
6190                 return -EACCES;
6191         }
6192         if (!tnum_is_const(reg->var_off) || reg->var_off.value) {
6193                 char tn_buf[48];
6194
6195                 tnum_strn(tn_buf, sizeof(tn_buf), reg->var_off);
6196                 verbose(env,
6197                         "R%d is ptr_%s invalid variable offset: off=%d, var_off=%s\n",
6198                         regno, tname, off, tn_buf);
6199                 return -EACCES;
6200         }
6201
6202         if (reg->type & MEM_USER) {
6203                 verbose(env,
6204                         "R%d is ptr_%s access user memory: off=%d\n",
6205                         regno, tname, off);
6206                 return -EACCES;
6207         }
6208
6209         if (reg->type & MEM_PERCPU) {
6210                 verbose(env,
6211                         "R%d is ptr_%s access percpu memory: off=%d\n",
6212                         regno, tname, off);
6213                 return -EACCES;
6214         }
6215
6216         if (env->ops->btf_struct_access && !type_is_alloc(reg->type) && atype == BPF_WRITE) {
6217                 if (!btf_is_kernel(reg->btf)) {
6218                         verbose(env, "verifier internal error: reg->btf must be kernel btf\n");
6219                         return -EFAULT;
6220                 }
6221                 ret = env->ops->btf_struct_access(&env->log, reg, off, size);
6222         } else {
6223                 /* Writes are permitted with default btf_struct_access for
6224                  * program allocated objects (which always have ref_obj_id > 0),
6225                  * but not for untrusted PTR_TO_BTF_ID | MEM_ALLOC.
6226                  */
6227                 if (atype != BPF_READ && !type_is_ptr_alloc_obj(reg->type)) {
6228                         verbose(env, "only read is supported\n");
6229                         return -EACCES;
6230                 }
6231
6232                 if (type_is_alloc(reg->type) && !type_is_non_owning_ref(reg->type) &&
6233                     !reg->ref_obj_id) {
6234                         verbose(env, "verifier internal error: ref_obj_id for allocated object must be non-zero\n");
6235                         return -EFAULT;
6236                 }
6237
6238                 ret = btf_struct_access(&env->log, reg, off, size, atype, &btf_id, &flag, &field_name);
6239         }
6240
6241         if (ret < 0)
6242                 return ret;
6243
6244         if (ret != PTR_TO_BTF_ID) {
6245                 /* just mark; */
6246
6247         } else if (type_flag(reg->type) & PTR_UNTRUSTED) {
6248                 /* If this is an untrusted pointer, all pointers formed by walking it
6249                  * also inherit the untrusted flag.
6250                  */
6251                 flag = PTR_UNTRUSTED;
6252
6253         } else if (is_trusted_reg(reg) || is_rcu_reg(reg)) {
6254                 /* By default any pointer obtained from walking a trusted pointer is no
6255                  * longer trusted, unless the field being accessed has explicitly been
6256                  * marked as inheriting its parent's state of trust (either full or RCU).
6257                  * For example:
6258                  * 'cgroups' pointer is untrusted if task->cgroups dereference
6259                  * happened in a sleepable program outside of bpf_rcu_read_lock()
6260                  * section. In a non-sleepable program it's trusted while in RCU CS (aka MEM_RCU).
6261                  * Note bpf_rcu_read_unlock() converts MEM_RCU pointers to PTR_UNTRUSTED.
6262                  *
6263                  * A regular RCU-protected pointer with __rcu tag can also be deemed
6264                  * trusted if we are in an RCU CS. Such pointer can be NULL.
6265                  */
6266                 if (type_is_trusted(env, reg, field_name, btf_id)) {
6267                         flag |= PTR_TRUSTED;
6268                 } else if (in_rcu_cs(env) && !type_may_be_null(reg->type)) {
6269                         if (type_is_rcu(env, reg, field_name, btf_id)) {
6270                                 /* ignore __rcu tag and mark it MEM_RCU */
6271                                 flag |= MEM_RCU;
6272                         } else if (flag & MEM_RCU ||
6273                                    type_is_rcu_or_null(env, reg, field_name, btf_id)) {
6274                                 /* __rcu tagged pointers can be NULL */
6275                                 flag |= MEM_RCU | PTR_MAYBE_NULL;
6276
6277                                 /* We always trust them */
6278                                 if (type_is_rcu_or_null(env, reg, field_name, btf_id) &&
6279                                     flag & PTR_UNTRUSTED)
6280                                         flag &= ~PTR_UNTRUSTED;
6281                         } else if (flag & (MEM_PERCPU | MEM_USER)) {
6282                                 /* keep as-is */
6283                         } else {
6284                                 /* walking unknown pointers yields old deprecated PTR_TO_BTF_ID */
6285                                 clear_trusted_flags(&flag);
6286                         }
6287                 } else {
6288                         /*
6289                          * If not in RCU CS or MEM_RCU pointer can be NULL then
6290                          * aggressively mark as untrusted otherwise such
6291                          * pointers will be plain PTR_TO_BTF_ID without flags
6292                          * and will be allowed to be passed into helpers for
6293                          * compat reasons.
6294                          */
6295                         flag = PTR_UNTRUSTED;
6296                 }
6297         } else {
6298                 /* Old compat. Deprecated */
6299                 clear_trusted_flags(&flag);
6300         }
6301
6302         if (atype == BPF_READ && value_regno >= 0)
6303                 mark_btf_ld_reg(env, regs, value_regno, ret, reg->btf, btf_id, flag);
6304
6305         return 0;
6306 }
6307
6308 static int check_ptr_to_map_access(struct bpf_verifier_env *env,
6309                                    struct bpf_reg_state *regs,
6310                                    int regno, int off, int size,
6311                                    enum bpf_access_type atype,
6312                                    int value_regno)
6313 {
6314         struct bpf_reg_state *reg = regs + regno;
6315         struct bpf_map *map = reg->map_ptr;
6316         struct bpf_reg_state map_reg;
6317         enum bpf_type_flag flag = 0;
6318         const struct btf_type *t;
6319         const char *tname;
6320         u32 btf_id;
6321         int ret;
6322
6323         if (!btf_vmlinux) {
6324                 verbose(env, "map_ptr access not supported without CONFIG_DEBUG_INFO_BTF\n");
6325                 return -ENOTSUPP;
6326         }
6327
6328         if (!map->ops->map_btf_id || !*map->ops->map_btf_id) {
6329                 verbose(env, "map_ptr access not supported for map type %d\n",
6330                         map->map_type);
6331                 return -ENOTSUPP;
6332         }
6333
6334         t = btf_type_by_id(btf_vmlinux, *map->ops->map_btf_id);
6335         tname = btf_name_by_offset(btf_vmlinux, t->name_off);
6336
6337         if (!env->allow_ptr_leaks) {
6338                 verbose(env,
6339                         "'struct %s' access is allowed only to CAP_PERFMON and CAP_SYS_ADMIN\n",
6340                         tname);
6341                 return -EPERM;
6342         }
6343
6344         if (off < 0) {
6345                 verbose(env, "R%d is %s invalid negative access: off=%d\n",
6346                         regno, tname, off);
6347                 return -EACCES;
6348         }
6349
6350         if (atype != BPF_READ) {
6351                 verbose(env, "only read from %s is supported\n", tname);
6352                 return -EACCES;
6353         }
6354
6355         /* Simulate access to a PTR_TO_BTF_ID */
6356         memset(&map_reg, 0, sizeof(map_reg));
6357         mark_btf_ld_reg(env, &map_reg, 0, PTR_TO_BTF_ID, btf_vmlinux, *map->ops->map_btf_id, 0);
6358         ret = btf_struct_access(&env->log, &map_reg, off, size, atype, &btf_id, &flag, NULL);
6359         if (ret < 0)
6360                 return ret;
6361
6362         if (value_regno >= 0)
6363                 mark_btf_ld_reg(env, regs, value_regno, ret, btf_vmlinux, btf_id, flag);
6364
6365         return 0;
6366 }
6367
6368 /* Check that the stack access at the given offset is within bounds. The
6369  * maximum valid offset is -1.
6370  *
6371  * The minimum valid offset is -MAX_BPF_STACK for writes, and
6372  * -state->allocated_stack for reads.
6373  */
6374 static int check_stack_slot_within_bounds(s64 off,
6375                                           struct bpf_func_state *state,
6376                                           enum bpf_access_type t)
6377 {
6378         int min_valid_off;
6379
6380         if (t == BPF_WRITE)
6381                 min_valid_off = -MAX_BPF_STACK;
6382         else
6383                 min_valid_off = -state->allocated_stack;
6384
6385         if (off < min_valid_off || off > -1)
6386                 return -EACCES;
6387         return 0;
6388 }
6389
6390 /* Check that the stack access at 'regno + off' falls within the maximum stack
6391  * bounds.
6392  *
6393  * 'off' includes `regno->offset`, but not its dynamic part (if any).
6394  */
6395 static int check_stack_access_within_bounds(
6396                 struct bpf_verifier_env *env,
6397                 int regno, int off, int access_size,
6398                 enum bpf_access_src src, enum bpf_access_type type)
6399 {
6400         struct bpf_reg_state *regs = cur_regs(env);
6401         struct bpf_reg_state *reg = regs + regno;
6402         struct bpf_func_state *state = func(env, reg);
6403         s64 min_off, max_off;
6404         int err;
6405         char *err_extra;
6406
6407         if (src == ACCESS_HELPER)
6408                 /* We don't know if helpers are reading or writing (or both). */
6409                 err_extra = " indirect access to";
6410         else if (type == BPF_READ)
6411                 err_extra = " read from";
6412         else
6413                 err_extra = " write to";
6414
6415         if (tnum_is_const(reg->var_off)) {
6416                 min_off = (s64)reg->var_off.value + off;
6417                 max_off = min_off + access_size;
6418         } else {
6419                 if (reg->smax_value >= BPF_MAX_VAR_OFF ||
6420                     reg->smin_value <= -BPF_MAX_VAR_OFF) {
6421                         verbose(env, "invalid unbounded variable-offset%s stack R%d\n",
6422                                 err_extra, regno);
6423                         return -EACCES;
6424                 }
6425                 min_off = reg->smin_value + off;
6426                 max_off = reg->smax_value + off + access_size;
6427         }
6428
6429         err = check_stack_slot_within_bounds(min_off, state, type);
6430         if (!err && max_off > 0)
6431                 err = -EINVAL; /* out of stack access into non-negative offsets */
6432
6433         if (err) {
6434                 if (tnum_is_const(reg->var_off)) {
6435                         verbose(env, "invalid%s stack R%d off=%d size=%d\n",
6436                                 err_extra, regno, off, access_size);
6437                 } else {
6438                         char tn_buf[48];
6439
6440                         tnum_strn(tn_buf, sizeof(tn_buf), reg->var_off);
6441                         verbose(env, "invalid variable-offset%s stack R%d var_off=%s size=%d\n",
6442                                 err_extra, regno, tn_buf, access_size);
6443                 }
6444         }
6445         return err;
6446 }
6447
6448 /* check whether memory at (regno + off) is accessible for t = (read | write)
6449  * if t==write, value_regno is a register which value is stored into memory
6450  * if t==read, value_regno is a register which will receive the value from memory
6451  * if t==write && value_regno==-1, some unknown value is stored into memory
6452  * if t==read && value_regno==-1, don't care what we read from memory
6453  */
6454 static int check_mem_access(struct bpf_verifier_env *env, int insn_idx, u32 regno,
6455                             int off, int bpf_size, enum bpf_access_type t,
6456                             int value_regno, bool strict_alignment_once, bool is_ldsx)
6457 {
6458         struct bpf_reg_state *regs = cur_regs(env);
6459         struct bpf_reg_state *reg = regs + regno;
6460         struct bpf_func_state *state;
6461         int size, err = 0;
6462
6463         size = bpf_size_to_bytes(bpf_size);
6464         if (size < 0)
6465                 return size;
6466
6467         /* alignment checks will add in reg->off themselves */
6468         err = check_ptr_alignment(env, reg, off, size, strict_alignment_once);
6469         if (err)
6470                 return err;
6471
6472         /* for access checks, reg->off is just part of off */
6473         off += reg->off;
6474
6475         if (reg->type == PTR_TO_MAP_KEY) {
6476                 if (t == BPF_WRITE) {
6477                         verbose(env, "write to change key R%d not allowed\n", regno);
6478                         return -EACCES;
6479                 }
6480
6481                 err = check_mem_region_access(env, regno, off, size,
6482                                               reg->map_ptr->key_size, false);
6483                 if (err)
6484                         return err;
6485                 if (value_regno >= 0)
6486                         mark_reg_unknown(env, regs, value_regno);
6487         } else if (reg->type == PTR_TO_MAP_VALUE) {
6488                 struct btf_field *kptr_field = NULL;
6489
6490                 if (t == BPF_WRITE && value_regno >= 0 &&
6491                     is_pointer_value(env, value_regno)) {
6492                         verbose(env, "R%d leaks addr into map\n", value_regno);
6493                         return -EACCES;
6494                 }
6495                 err = check_map_access_type(env, regno, off, size, t);
6496                 if (err)
6497                         return err;
6498                 err = check_map_access(env, regno, off, size, false, ACCESS_DIRECT);
6499                 if (err)
6500                         return err;
6501                 if (tnum_is_const(reg->var_off))
6502                         kptr_field = btf_record_find(reg->map_ptr->record,
6503                                                      off + reg->var_off.value, BPF_KPTR);
6504                 if (kptr_field) {
6505                         err = check_map_kptr_access(env, regno, value_regno, insn_idx, kptr_field);
6506                 } else if (t == BPF_READ && value_regno >= 0) {
6507                         struct bpf_map *map = reg->map_ptr;
6508
6509                         /* if map is read-only, track its contents as scalars */
6510                         if (tnum_is_const(reg->var_off) &&
6511                             bpf_map_is_rdonly(map) &&
6512                             map->ops->map_direct_value_addr) {
6513                                 int map_off = off + reg->var_off.value;
6514                                 u64 val = 0;
6515
6516                                 err = bpf_map_direct_read(map, map_off, size,
6517                                                           &val, is_ldsx);
6518                                 if (err)
6519                                         return err;
6520
6521                                 regs[value_regno].type = SCALAR_VALUE;
6522                                 __mark_reg_known(&regs[value_regno], val);
6523                         } else {
6524                                 mark_reg_unknown(env, regs, value_regno);
6525                         }
6526                 }
6527         } else if (base_type(reg->type) == PTR_TO_MEM) {
6528                 bool rdonly_mem = type_is_rdonly_mem(reg->type);
6529
6530                 if (type_may_be_null(reg->type)) {
6531                         verbose(env, "R%d invalid mem access '%s'\n", regno,
6532                                 reg_type_str(env, reg->type));
6533                         return -EACCES;
6534                 }
6535
6536                 if (t == BPF_WRITE && rdonly_mem) {
6537                         verbose(env, "R%d cannot write into %s\n",
6538                                 regno, reg_type_str(env, reg->type));
6539                         return -EACCES;
6540                 }
6541
6542                 if (t == BPF_WRITE && value_regno >= 0 &&
6543                     is_pointer_value(env, value_regno)) {
6544                         verbose(env, "R%d leaks addr into mem\n", value_regno);
6545                         return -EACCES;
6546                 }
6547
6548                 err = check_mem_region_access(env, regno, off, size,
6549                                               reg->mem_size, false);
6550                 if (!err && value_regno >= 0 && (t == BPF_READ || rdonly_mem))
6551                         mark_reg_unknown(env, regs, value_regno);
6552         } else if (reg->type == PTR_TO_CTX) {
6553                 enum bpf_reg_type reg_type = SCALAR_VALUE;
6554                 struct btf *btf = NULL;
6555                 u32 btf_id = 0;
6556
6557                 if (t == BPF_WRITE && value_regno >= 0 &&
6558                     is_pointer_value(env, value_regno)) {
6559                         verbose(env, "R%d leaks addr into ctx\n", value_regno);
6560                         return -EACCES;
6561                 }
6562
6563                 err = check_ptr_off_reg(env, reg, regno);
6564                 if (err < 0)
6565                         return err;
6566
6567                 err = check_ctx_access(env, insn_idx, off, size, t, &reg_type, &btf,
6568                                        &btf_id);
6569                 if (err)
6570                         verbose_linfo(env, insn_idx, "; ");
6571                 if (!err && t == BPF_READ && value_regno >= 0) {
6572                         /* ctx access returns either a scalar, or a
6573                          * PTR_TO_PACKET[_META,_END]. In the latter
6574                          * case, we know the offset is zero.
6575                          */
6576                         if (reg_type == SCALAR_VALUE) {
6577                                 mark_reg_unknown(env, regs, value_regno);
6578                         } else {
6579                                 mark_reg_known_zero(env, regs,
6580                                                     value_regno);
6581                                 if (type_may_be_null(reg_type))
6582                                         regs[value_regno].id = ++env->id_gen;
6583                                 /* A load of ctx field could have different
6584                                  * actual load size with the one encoded in the
6585                                  * insn. When the dst is PTR, it is for sure not
6586                                  * a sub-register.
6587                                  */
6588                                 regs[value_regno].subreg_def = DEF_NOT_SUBREG;
6589                                 if (base_type(reg_type) == PTR_TO_BTF_ID) {
6590                                         regs[value_regno].btf = btf;
6591                                         regs[value_regno].btf_id = btf_id;
6592                                 }
6593                         }
6594                         regs[value_regno].type = reg_type;
6595                 }
6596
6597         } else if (reg->type == PTR_TO_STACK) {
6598                 /* Basic bounds checks. */
6599                 err = check_stack_access_within_bounds(env, regno, off, size, ACCESS_DIRECT, t);
6600                 if (err)
6601                         return err;
6602
6603                 state = func(env, reg);
6604                 err = update_stack_depth(env, state, off);
6605                 if (err)
6606                         return err;
6607
6608                 if (t == BPF_READ)
6609                         err = check_stack_read(env, regno, off, size,
6610                                                value_regno);
6611                 else
6612                         err = check_stack_write(env, regno, off, size,
6613                                                 value_regno, insn_idx);
6614         } else if (reg_is_pkt_pointer(reg)) {
6615                 if (t == BPF_WRITE && !may_access_direct_pkt_data(env, NULL, t)) {
6616                         verbose(env, "cannot write into packet\n");
6617                         return -EACCES;
6618                 }
6619                 if (t == BPF_WRITE && value_regno >= 0 &&
6620                     is_pointer_value(env, value_regno)) {
6621                         verbose(env, "R%d leaks addr into packet\n",
6622                                 value_regno);
6623                         return -EACCES;
6624                 }
6625                 err = check_packet_access(env, regno, off, size, false);
6626                 if (!err && t == BPF_READ && value_regno >= 0)
6627                         mark_reg_unknown(env, regs, value_regno);
6628         } else if (reg->type == PTR_TO_FLOW_KEYS) {
6629                 if (t == BPF_WRITE && value_regno >= 0 &&
6630                     is_pointer_value(env, value_regno)) {
6631                         verbose(env, "R%d leaks addr into flow keys\n",
6632                                 value_regno);
6633                         return -EACCES;
6634                 }
6635
6636                 err = check_flow_keys_access(env, off, size);
6637                 if (!err && t == BPF_READ && value_regno >= 0)
6638                         mark_reg_unknown(env, regs, value_regno);
6639         } else if (type_is_sk_pointer(reg->type)) {
6640                 if (t == BPF_WRITE) {
6641                         verbose(env, "R%d cannot write into %s\n",
6642                                 regno, reg_type_str(env, reg->type));
6643                         return -EACCES;
6644                 }
6645                 err = check_sock_access(env, insn_idx, regno, off, size, t);
6646                 if (!err && value_regno >= 0)
6647                         mark_reg_unknown(env, regs, value_regno);
6648         } else if (reg->type == PTR_TO_TP_BUFFER) {
6649                 err = check_tp_buffer_access(env, reg, regno, off, size);
6650                 if (!err && t == BPF_READ && value_regno >= 0)
6651                         mark_reg_unknown(env, regs, value_regno);
6652         } else if (base_type(reg->type) == PTR_TO_BTF_ID &&
6653                    !type_may_be_null(reg->type)) {
6654                 err = check_ptr_to_btf_access(env, regs, regno, off, size, t,
6655                                               value_regno);
6656         } else if (reg->type == CONST_PTR_TO_MAP) {
6657                 err = check_ptr_to_map_access(env, regs, regno, off, size, t,
6658                                               value_regno);
6659         } else if (base_type(reg->type) == PTR_TO_BUF) {
6660                 bool rdonly_mem = type_is_rdonly_mem(reg->type);
6661                 u32 *max_access;
6662
6663                 if (rdonly_mem) {
6664                         if (t == BPF_WRITE) {
6665                                 verbose(env, "R%d cannot write into %s\n",
6666                                         regno, reg_type_str(env, reg->type));
6667                                 return -EACCES;
6668                         }
6669                         max_access = &env->prog->aux->max_rdonly_access;
6670                 } else {
6671                         max_access = &env->prog->aux->max_rdwr_access;
6672                 }
6673
6674                 err = check_buffer_access(env, reg, regno, off, size, false,
6675                                           max_access);
6676
6677                 if (!err && value_regno >= 0 && (rdonly_mem || t == BPF_READ))
6678                         mark_reg_unknown(env, regs, value_regno);
6679         } else {
6680                 verbose(env, "R%d invalid mem access '%s'\n", regno,
6681                         reg_type_str(env, reg->type));
6682                 return -EACCES;
6683         }
6684
6685         if (!err && size < BPF_REG_SIZE && value_regno >= 0 && t == BPF_READ &&
6686             regs[value_regno].type == SCALAR_VALUE) {
6687                 if (!is_ldsx)
6688                         /* b/h/w load zero-extends, mark upper bits as known 0 */
6689                         coerce_reg_to_size(&regs[value_regno], size);
6690                 else
6691                         coerce_reg_to_size_sx(&regs[value_regno], size);
6692         }
6693         return err;
6694 }
6695
6696 static int check_atomic(struct bpf_verifier_env *env, int insn_idx, struct bpf_insn *insn)
6697 {
6698         int load_reg;
6699         int err;
6700
6701         switch (insn->imm) {
6702         case BPF_ADD:
6703         case BPF_ADD | BPF_FETCH:
6704         case BPF_AND:
6705         case BPF_AND | BPF_FETCH:
6706         case BPF_OR:
6707         case BPF_OR | BPF_FETCH:
6708         case BPF_XOR:
6709         case BPF_XOR | BPF_FETCH:
6710         case BPF_XCHG:
6711         case BPF_CMPXCHG:
6712                 break;
6713         default:
6714                 verbose(env, "BPF_ATOMIC uses invalid atomic opcode %02x\n", insn->imm);
6715                 return -EINVAL;
6716         }
6717
6718         if (BPF_SIZE(insn->code) != BPF_W && BPF_SIZE(insn->code) != BPF_DW) {
6719                 verbose(env, "invalid atomic operand size\n");
6720                 return -EINVAL;
6721         }
6722
6723         /* check src1 operand */
6724         err = check_reg_arg(env, insn->src_reg, SRC_OP);
6725         if (err)
6726                 return err;
6727
6728         /* check src2 operand */
6729         err = check_reg_arg(env, insn->dst_reg, SRC_OP);
6730         if (err)
6731                 return err;
6732
6733         if (insn->imm == BPF_CMPXCHG) {
6734                 /* Check comparison of R0 with memory location */
6735                 const u32 aux_reg = BPF_REG_0;
6736
6737                 err = check_reg_arg(env, aux_reg, SRC_OP);
6738                 if (err)
6739                         return err;
6740
6741                 if (is_pointer_value(env, aux_reg)) {
6742                         verbose(env, "R%d leaks addr into mem\n", aux_reg);
6743                         return -EACCES;
6744                 }
6745         }
6746
6747         if (is_pointer_value(env, insn->src_reg)) {
6748                 verbose(env, "R%d leaks addr into mem\n", insn->src_reg);
6749                 return -EACCES;
6750         }
6751
6752         if (is_ctx_reg(env, insn->dst_reg) ||
6753             is_pkt_reg(env, insn->dst_reg) ||
6754             is_flow_key_reg(env, insn->dst_reg) ||
6755             is_sk_reg(env, insn->dst_reg)) {
6756                 verbose(env, "BPF_ATOMIC stores into R%d %s is not allowed\n",
6757                         insn->dst_reg,
6758                         reg_type_str(env, reg_state(env, insn->dst_reg)->type));
6759                 return -EACCES;
6760         }
6761
6762         if (insn->imm & BPF_FETCH) {
6763                 if (insn->imm == BPF_CMPXCHG)
6764                         load_reg = BPF_REG_0;
6765                 else
6766                         load_reg = insn->src_reg;
6767
6768                 /* check and record load of old value */
6769                 err = check_reg_arg(env, load_reg, DST_OP);
6770                 if (err)
6771                         return err;
6772         } else {
6773                 /* This instruction accesses a memory location but doesn't
6774                  * actually load it into a register.
6775                  */
6776                 load_reg = -1;
6777         }
6778
6779         /* Check whether we can read the memory, with second call for fetch
6780          * case to simulate the register fill.
6781          */
6782         err = check_mem_access(env, insn_idx, insn->dst_reg, insn->off,
6783                                BPF_SIZE(insn->code), BPF_READ, -1, true, false);
6784         if (!err && load_reg >= 0)
6785                 err = check_mem_access(env, insn_idx, insn->dst_reg, insn->off,
6786                                        BPF_SIZE(insn->code), BPF_READ, load_reg,
6787                                        true, false);
6788         if (err)
6789                 return err;
6790
6791         /* Check whether we can write into the same memory. */
6792         err = check_mem_access(env, insn_idx, insn->dst_reg, insn->off,
6793                                BPF_SIZE(insn->code), BPF_WRITE, -1, true, false);
6794         if (err)
6795                 return err;
6796
6797         return 0;
6798 }
6799
6800 /* When register 'regno' is used to read the stack (either directly or through
6801  * a helper function) make sure that it's within stack boundary and, depending
6802  * on the access type, that all elements of the stack are initialized.
6803  *
6804  * 'off' includes 'regno->off', but not its dynamic part (if any).
6805  *
6806  * All registers that have been spilled on the stack in the slots within the
6807  * read offsets are marked as read.
6808  */
6809 static int check_stack_range_initialized(
6810                 struct bpf_verifier_env *env, int regno, int off,
6811                 int access_size, bool zero_size_allowed,
6812                 enum bpf_access_src type, struct bpf_call_arg_meta *meta)
6813 {
6814         struct bpf_reg_state *reg = reg_state(env, regno);
6815         struct bpf_func_state *state = func(env, reg);
6816         int err, min_off, max_off, i, j, slot, spi;
6817         char *err_extra = type == ACCESS_HELPER ? " indirect" : "";
6818         enum bpf_access_type bounds_check_type;
6819         /* Some accesses can write anything into the stack, others are
6820          * read-only.
6821          */
6822         bool clobber = false;
6823
6824         if (access_size == 0 && !zero_size_allowed) {
6825                 verbose(env, "invalid zero-sized read\n");
6826                 return -EACCES;
6827         }
6828
6829         if (type == ACCESS_HELPER) {
6830                 /* The bounds checks for writes are more permissive than for
6831                  * reads. However, if raw_mode is not set, we'll do extra
6832                  * checks below.
6833                  */
6834                 bounds_check_type = BPF_WRITE;
6835                 clobber = true;
6836         } else {
6837                 bounds_check_type = BPF_READ;
6838         }
6839         err = check_stack_access_within_bounds(env, regno, off, access_size,
6840                                                type, bounds_check_type);
6841         if (err)
6842                 return err;
6843
6844
6845         if (tnum_is_const(reg->var_off)) {
6846                 min_off = max_off = reg->var_off.value + off;
6847         } else {
6848                 /* Variable offset is prohibited for unprivileged mode for
6849                  * simplicity since it requires corresponding support in
6850                  * Spectre masking for stack ALU.
6851                  * See also retrieve_ptr_limit().
6852                  */
6853                 if (!env->bypass_spec_v1) {
6854                         char tn_buf[48];
6855
6856                         tnum_strn(tn_buf, sizeof(tn_buf), reg->var_off);
6857                         verbose(env, "R%d%s variable offset stack access prohibited for !root, var_off=%s\n",
6858                                 regno, err_extra, tn_buf);
6859                         return -EACCES;
6860                 }
6861                 /* Only initialized buffer on stack is allowed to be accessed
6862                  * with variable offset. With uninitialized buffer it's hard to
6863                  * guarantee that whole memory is marked as initialized on
6864                  * helper return since specific bounds are unknown what may
6865                  * cause uninitialized stack leaking.
6866                  */
6867                 if (meta && meta->raw_mode)
6868                         meta = NULL;
6869
6870                 min_off = reg->smin_value + off;
6871                 max_off = reg->smax_value + off;
6872         }
6873
6874         if (meta && meta->raw_mode) {
6875                 /* Ensure we won't be overwriting dynptrs when simulating byte
6876                  * by byte access in check_helper_call using meta.access_size.
6877                  * This would be a problem if we have a helper in the future
6878                  * which takes:
6879                  *
6880                  *      helper(uninit_mem, len, dynptr)
6881                  *
6882                  * Now, uninint_mem may overlap with dynptr pointer. Hence, it
6883                  * may end up writing to dynptr itself when touching memory from
6884                  * arg 1. This can be relaxed on a case by case basis for known
6885                  * safe cases, but reject due to the possibilitiy of aliasing by
6886                  * default.
6887                  */
6888                 for (i = min_off; i < max_off + access_size; i++) {
6889                         int stack_off = -i - 1;
6890
6891                         spi = __get_spi(i);
6892                         /* raw_mode may write past allocated_stack */
6893                         if (state->allocated_stack <= stack_off)
6894                                 continue;
6895                         if (state->stack[spi].slot_type[stack_off % BPF_REG_SIZE] == STACK_DYNPTR) {
6896                                 verbose(env, "potential write to dynptr at off=%d disallowed\n", i);
6897                                 return -EACCES;
6898                         }
6899                 }
6900                 meta->access_size = access_size;
6901                 meta->regno = regno;
6902                 return 0;
6903         }
6904
6905         for (i = min_off; i < max_off + access_size; i++) {
6906                 u8 *stype;
6907
6908                 slot = -i - 1;
6909                 spi = slot / BPF_REG_SIZE;
6910                 if (state->allocated_stack <= slot)
6911                         goto err;
6912                 stype = &state->stack[spi].slot_type[slot % BPF_REG_SIZE];
6913                 if (*stype == STACK_MISC)
6914                         goto mark;
6915                 if ((*stype == STACK_ZERO) ||
6916                     (*stype == STACK_INVALID && env->allow_uninit_stack)) {
6917                         if (clobber) {
6918                                 /* helper can write anything into the stack */
6919                                 *stype = STACK_MISC;
6920                         }
6921                         goto mark;
6922                 }
6923
6924                 if (is_spilled_reg(&state->stack[spi]) &&
6925                     (state->stack[spi].spilled_ptr.type == SCALAR_VALUE ||
6926                      env->allow_ptr_leaks)) {
6927                         if (clobber) {
6928                                 __mark_reg_unknown(env, &state->stack[spi].spilled_ptr);
6929                                 for (j = 0; j < BPF_REG_SIZE; j++)
6930                                         scrub_spilled_slot(&state->stack[spi].slot_type[j]);
6931                         }
6932                         goto mark;
6933                 }
6934
6935 err:
6936                 if (tnum_is_const(reg->var_off)) {
6937                         verbose(env, "invalid%s read from stack R%d off %d+%d size %d\n",
6938                                 err_extra, regno, min_off, i - min_off, access_size);
6939                 } else {
6940                         char tn_buf[48];
6941
6942                         tnum_strn(tn_buf, sizeof(tn_buf), reg->var_off);
6943                         verbose(env, "invalid%s read from stack R%d var_off %s+%d size %d\n",
6944                                 err_extra, regno, tn_buf, i - min_off, access_size);
6945                 }
6946                 return -EACCES;
6947 mark:
6948                 /* reading any byte out of 8-byte 'spill_slot' will cause
6949                  * the whole slot to be marked as 'read'
6950                  */
6951                 mark_reg_read(env, &state->stack[spi].spilled_ptr,
6952                               state->stack[spi].spilled_ptr.parent,
6953                               REG_LIVE_READ64);
6954                 /* We do not set REG_LIVE_WRITTEN for stack slot, as we can not
6955                  * be sure that whether stack slot is written to or not. Hence,
6956                  * we must still conservatively propagate reads upwards even if
6957                  * helper may write to the entire memory range.
6958                  */
6959         }
6960         return update_stack_depth(env, state, min_off);
6961 }
6962
6963 static int check_helper_mem_access(struct bpf_verifier_env *env, int regno,
6964                                    int access_size, bool zero_size_allowed,
6965                                    struct bpf_call_arg_meta *meta)
6966 {
6967         struct bpf_reg_state *regs = cur_regs(env), *reg = &regs[regno];
6968         u32 *max_access;
6969
6970         switch (base_type(reg->type)) {
6971         case PTR_TO_PACKET:
6972         case PTR_TO_PACKET_META:
6973                 return check_packet_access(env, regno, reg->off, access_size,
6974                                            zero_size_allowed);
6975         case PTR_TO_MAP_KEY:
6976                 if (meta && meta->raw_mode) {
6977                         verbose(env, "R%d cannot write into %s\n", regno,
6978                                 reg_type_str(env, reg->type));
6979                         return -EACCES;
6980                 }
6981                 return check_mem_region_access(env, regno, reg->off, access_size,
6982                                                reg->map_ptr->key_size, false);
6983         case PTR_TO_MAP_VALUE:
6984                 if (check_map_access_type(env, regno, reg->off, access_size,
6985                                           meta && meta->raw_mode ? BPF_WRITE :
6986                                           BPF_READ))
6987                         return -EACCES;
6988                 return check_map_access(env, regno, reg->off, access_size,
6989                                         zero_size_allowed, ACCESS_HELPER);
6990         case PTR_TO_MEM:
6991                 if (type_is_rdonly_mem(reg->type)) {
6992                         if (meta && meta->raw_mode) {
6993                                 verbose(env, "R%d cannot write into %s\n", regno,
6994                                         reg_type_str(env, reg->type));
6995                                 return -EACCES;
6996                         }
6997                 }
6998                 return check_mem_region_access(env, regno, reg->off,
6999                                                access_size, reg->mem_size,
7000                                                zero_size_allowed);
7001         case PTR_TO_BUF:
7002                 if (type_is_rdonly_mem(reg->type)) {
7003                         if (meta && meta->raw_mode) {
7004                                 verbose(env, "R%d cannot write into %s\n", regno,
7005                                         reg_type_str(env, reg->type));
7006                                 return -EACCES;
7007                         }
7008
7009                         max_access = &env->prog->aux->max_rdonly_access;
7010                 } else {
7011                         max_access = &env->prog->aux->max_rdwr_access;
7012                 }
7013                 return check_buffer_access(env, reg, regno, reg->off,
7014                                            access_size, zero_size_allowed,
7015                                            max_access);
7016         case PTR_TO_STACK:
7017                 return check_stack_range_initialized(
7018                                 env,
7019                                 regno, reg->off, access_size,
7020                                 zero_size_allowed, ACCESS_HELPER, meta);
7021         case PTR_TO_BTF_ID:
7022                 return check_ptr_to_btf_access(env, regs, regno, reg->off,
7023                                                access_size, BPF_READ, -1);
7024         case PTR_TO_CTX:
7025                 /* in case the function doesn't know how to access the context,
7026                  * (because we are in a program of type SYSCALL for example), we
7027                  * can not statically check its size.
7028                  * Dynamically check it now.
7029                  */
7030                 if (!env->ops->convert_ctx_access) {
7031                         enum bpf_access_type atype = meta && meta->raw_mode ? BPF_WRITE : BPF_READ;
7032                         int offset = access_size - 1;
7033
7034                         /* Allow zero-byte read from PTR_TO_CTX */
7035                         if (access_size == 0)
7036                                 return zero_size_allowed ? 0 : -EACCES;
7037
7038                         return check_mem_access(env, env->insn_idx, regno, offset, BPF_B,
7039                                                 atype, -1, false, false);
7040                 }
7041
7042                 fallthrough;
7043         default: /* scalar_value or invalid ptr */
7044                 /* Allow zero-byte read from NULL, regardless of pointer type */
7045                 if (zero_size_allowed && access_size == 0 &&
7046                     register_is_null(reg))
7047                         return 0;
7048
7049                 verbose(env, "R%d type=%s ", regno,
7050                         reg_type_str(env, reg->type));
7051                 verbose(env, "expected=%s\n", reg_type_str(env, PTR_TO_STACK));
7052                 return -EACCES;
7053         }
7054 }
7055
7056 static int check_mem_size_reg(struct bpf_verifier_env *env,
7057                               struct bpf_reg_state *reg, u32 regno,
7058                               bool zero_size_allowed,
7059                               struct bpf_call_arg_meta *meta)
7060 {
7061         int err;
7062
7063         /* This is used to refine r0 return value bounds for helpers
7064          * that enforce this value as an upper bound on return values.
7065          * See do_refine_retval_range() for helpers that can refine
7066          * the return value. C type of helper is u32 so we pull register
7067          * bound from umax_value however, if negative verifier errors
7068          * out. Only upper bounds can be learned because retval is an
7069          * int type and negative retvals are allowed.
7070          */
7071         meta->msize_max_value = reg->umax_value;
7072
7073         /* The register is SCALAR_VALUE; the access check
7074          * happens using its boundaries.
7075          */
7076         if (!tnum_is_const(reg->var_off))
7077                 /* For unprivileged variable accesses, disable raw
7078                  * mode so that the program is required to
7079                  * initialize all the memory that the helper could
7080                  * just partially fill up.
7081                  */
7082                 meta = NULL;
7083
7084         if (reg->smin_value < 0) {
7085                 verbose(env, "R%d min value is negative, either use unsigned or 'var &= const'\n",
7086                         regno);
7087                 return -EACCES;
7088         }
7089
7090         if (reg->umin_value == 0) {
7091                 err = check_helper_mem_access(env, regno - 1, 0,
7092                                               zero_size_allowed,
7093                                               meta);
7094                 if (err)
7095                         return err;
7096         }
7097
7098         if (reg->umax_value >= BPF_MAX_VAR_SIZ) {
7099                 verbose(env, "R%d unbounded memory access, use 'var &= const' or 'if (var < const)'\n",
7100                         regno);
7101                 return -EACCES;
7102         }
7103         err = check_helper_mem_access(env, regno - 1,
7104                                       reg->umax_value,
7105                                       zero_size_allowed, meta);
7106         if (!err)
7107                 err = mark_chain_precision(env, regno);
7108         return err;
7109 }
7110
7111 int check_mem_reg(struct bpf_verifier_env *env, struct bpf_reg_state *reg,
7112                    u32 regno, u32 mem_size)
7113 {
7114         bool may_be_null = type_may_be_null(reg->type);
7115         struct bpf_reg_state saved_reg;
7116         struct bpf_call_arg_meta meta;
7117         int err;
7118
7119         if (register_is_null(reg))
7120                 return 0;
7121
7122         memset(&meta, 0, sizeof(meta));
7123         /* Assuming that the register contains a value check if the memory
7124          * access is safe. Temporarily save and restore the register's state as
7125          * the conversion shouldn't be visible to a caller.
7126          */
7127         if (may_be_null) {
7128                 saved_reg = *reg;
7129                 mark_ptr_not_null_reg(reg);
7130         }
7131
7132         err = check_helper_mem_access(env, regno, mem_size, true, &meta);
7133         /* Check access for BPF_WRITE */
7134         meta.raw_mode = true;
7135         err = err ?: check_helper_mem_access(env, regno, mem_size, true, &meta);
7136
7137         if (may_be_null)
7138                 *reg = saved_reg;
7139
7140         return err;
7141 }
7142
7143 static int check_kfunc_mem_size_reg(struct bpf_verifier_env *env, struct bpf_reg_state *reg,
7144                                     u32 regno)
7145 {
7146         struct bpf_reg_state *mem_reg = &cur_regs(env)[regno - 1];
7147         bool may_be_null = type_may_be_null(mem_reg->type);
7148         struct bpf_reg_state saved_reg;
7149         struct bpf_call_arg_meta meta;
7150         int err;
7151
7152         WARN_ON_ONCE(regno < BPF_REG_2 || regno > BPF_REG_5);
7153
7154         memset(&meta, 0, sizeof(meta));
7155
7156         if (may_be_null) {
7157                 saved_reg = *mem_reg;
7158                 mark_ptr_not_null_reg(mem_reg);
7159         }
7160
7161         err = check_mem_size_reg(env, reg, regno, true, &meta);
7162         /* Check access for BPF_WRITE */
7163         meta.raw_mode = true;
7164         err = err ?: check_mem_size_reg(env, reg, regno, true, &meta);
7165
7166         if (may_be_null)
7167                 *mem_reg = saved_reg;
7168         return err;
7169 }
7170
7171 /* Implementation details:
7172  * bpf_map_lookup returns PTR_TO_MAP_VALUE_OR_NULL.
7173  * bpf_obj_new returns PTR_TO_BTF_ID | MEM_ALLOC | PTR_MAYBE_NULL.
7174  * Two bpf_map_lookups (even with the same key) will have different reg->id.
7175  * Two separate bpf_obj_new will also have different reg->id.
7176  * For traditional PTR_TO_MAP_VALUE or PTR_TO_BTF_ID | MEM_ALLOC, the verifier
7177  * clears reg->id after value_or_null->value transition, since the verifier only
7178  * cares about the range of access to valid map value pointer and doesn't care
7179  * about actual address of the map element.
7180  * For maps with 'struct bpf_spin_lock' inside map value the verifier keeps
7181  * reg->id > 0 after value_or_null->value transition. By doing so
7182  * two bpf_map_lookups will be considered two different pointers that
7183  * point to different bpf_spin_locks. Likewise for pointers to allocated objects
7184  * returned from bpf_obj_new.
7185  * The verifier allows taking only one bpf_spin_lock at a time to avoid
7186  * dead-locks.
7187  * Since only one bpf_spin_lock is allowed the checks are simpler than
7188  * reg_is_refcounted() logic. The verifier needs to remember only
7189  * one spin_lock instead of array of acquired_refs.
7190  * cur_state->active_lock remembers which map value element or allocated
7191  * object got locked and clears it after bpf_spin_unlock.
7192  */
7193 static int process_spin_lock(struct bpf_verifier_env *env, int regno,
7194                              bool is_lock)
7195 {
7196         struct bpf_reg_state *regs = cur_regs(env), *reg = &regs[regno];
7197         struct bpf_verifier_state *cur = env->cur_state;
7198         bool is_const = tnum_is_const(reg->var_off);
7199         u64 val = reg->var_off.value;
7200         struct bpf_map *map = NULL;
7201         struct btf *btf = NULL;
7202         struct btf_record *rec;
7203
7204         if (!is_const) {
7205                 verbose(env,
7206                         "R%d doesn't have constant offset. bpf_spin_lock has to be at the constant offset\n",
7207                         regno);
7208                 return -EINVAL;
7209         }
7210         if (reg->type == PTR_TO_MAP_VALUE) {
7211                 map = reg->map_ptr;
7212                 if (!map->btf) {
7213                         verbose(env,
7214                                 "map '%s' has to have BTF in order to use bpf_spin_lock\n",
7215                                 map->name);
7216                         return -EINVAL;
7217                 }
7218         } else {
7219                 btf = reg->btf;
7220         }
7221
7222         rec = reg_btf_record(reg);
7223         if (!btf_record_has_field(rec, BPF_SPIN_LOCK)) {
7224                 verbose(env, "%s '%s' has no valid bpf_spin_lock\n", map ? "map" : "local",
7225                         map ? map->name : "kptr");
7226                 return -EINVAL;
7227         }
7228         if (rec->spin_lock_off != val + reg->off) {
7229                 verbose(env, "off %lld doesn't point to 'struct bpf_spin_lock' that is at %d\n",
7230                         val + reg->off, rec->spin_lock_off);
7231                 return -EINVAL;
7232         }
7233         if (is_lock) {
7234                 if (cur->active_lock.ptr) {
7235                         verbose(env,
7236                                 "Locking two bpf_spin_locks are not allowed\n");
7237                         return -EINVAL;
7238                 }
7239                 if (map)
7240                         cur->active_lock.ptr = map;
7241                 else
7242                         cur->active_lock.ptr = btf;
7243                 cur->active_lock.id = reg->id;
7244         } else {
7245                 void *ptr;
7246
7247                 if (map)
7248                         ptr = map;
7249                 else
7250                         ptr = btf;
7251
7252                 if (!cur->active_lock.ptr) {
7253                         verbose(env, "bpf_spin_unlock without taking a lock\n");
7254                         return -EINVAL;
7255                 }
7256                 if (cur->active_lock.ptr != ptr ||
7257                     cur->active_lock.id != reg->id) {
7258                         verbose(env, "bpf_spin_unlock of different lock\n");
7259                         return -EINVAL;
7260                 }
7261
7262                 invalidate_non_owning_refs(env);
7263
7264                 cur->active_lock.ptr = NULL;
7265                 cur->active_lock.id = 0;
7266         }
7267         return 0;
7268 }
7269
7270 static int process_timer_func(struct bpf_verifier_env *env, int regno,
7271                               struct bpf_call_arg_meta *meta)
7272 {
7273         struct bpf_reg_state *regs = cur_regs(env), *reg = &regs[regno];
7274         bool is_const = tnum_is_const(reg->var_off);
7275         struct bpf_map *map = reg->map_ptr;
7276         u64 val = reg->var_off.value;
7277
7278         if (!is_const) {
7279                 verbose(env,
7280                         "R%d doesn't have constant offset. bpf_timer has to be at the constant offset\n",
7281                         regno);
7282                 return -EINVAL;
7283         }
7284         if (!map->btf) {
7285                 verbose(env, "map '%s' has to have BTF in order to use bpf_timer\n",
7286                         map->name);
7287                 return -EINVAL;
7288         }
7289         if (!btf_record_has_field(map->record, BPF_TIMER)) {
7290                 verbose(env, "map '%s' has no valid bpf_timer\n", map->name);
7291                 return -EINVAL;
7292         }
7293         if (map->record->timer_off != val + reg->off) {
7294                 verbose(env, "off %lld doesn't point to 'struct bpf_timer' that is at %d\n",
7295                         val + reg->off, map->record->timer_off);
7296                 return -EINVAL;
7297         }
7298         if (meta->map_ptr) {
7299                 verbose(env, "verifier bug. Two map pointers in a timer helper\n");
7300                 return -EFAULT;
7301         }
7302         meta->map_uid = reg->map_uid;
7303         meta->map_ptr = map;
7304         return 0;
7305 }
7306
7307 static int process_kptr_func(struct bpf_verifier_env *env, int regno,
7308                              struct bpf_call_arg_meta *meta)
7309 {
7310         struct bpf_reg_state *regs = cur_regs(env), *reg = &regs[regno];
7311         struct bpf_map *map_ptr = reg->map_ptr;
7312         struct btf_field *kptr_field;
7313         u32 kptr_off;
7314
7315         if (!tnum_is_const(reg->var_off)) {
7316                 verbose(env,
7317                         "R%d doesn't have constant offset. kptr has to be at the constant offset\n",
7318                         regno);
7319                 return -EINVAL;
7320         }
7321         if (!map_ptr->btf) {
7322                 verbose(env, "map '%s' has to have BTF in order to use bpf_kptr_xchg\n",
7323                         map_ptr->name);
7324                 return -EINVAL;
7325         }
7326         if (!btf_record_has_field(map_ptr->record, BPF_KPTR)) {
7327                 verbose(env, "map '%s' has no valid kptr\n", map_ptr->name);
7328                 return -EINVAL;
7329         }
7330
7331         meta->map_ptr = map_ptr;
7332         kptr_off = reg->off + reg->var_off.value;
7333         kptr_field = btf_record_find(map_ptr->record, kptr_off, BPF_KPTR);
7334         if (!kptr_field) {
7335                 verbose(env, "off=%d doesn't point to kptr\n", kptr_off);
7336                 return -EACCES;
7337         }
7338         if (kptr_field->type != BPF_KPTR_REF) {
7339                 verbose(env, "off=%d kptr isn't referenced kptr\n", kptr_off);
7340                 return -EACCES;
7341         }
7342         meta->kptr_field = kptr_field;
7343         return 0;
7344 }
7345
7346 /* There are two register types representing a bpf_dynptr, one is PTR_TO_STACK
7347  * which points to a stack slot, and the other is CONST_PTR_TO_DYNPTR.
7348  *
7349  * In both cases we deal with the first 8 bytes, but need to mark the next 8
7350  * bytes as STACK_DYNPTR in case of PTR_TO_STACK. In case of
7351  * CONST_PTR_TO_DYNPTR, we are guaranteed to get the beginning of the object.
7352  *
7353  * Mutability of bpf_dynptr is at two levels, one is at the level of struct
7354  * bpf_dynptr itself, i.e. whether the helper is receiving a pointer to struct
7355  * bpf_dynptr or pointer to const struct bpf_dynptr. In the former case, it can
7356  * mutate the view of the dynptr and also possibly destroy it. In the latter
7357  * case, it cannot mutate the bpf_dynptr itself but it can still mutate the
7358  * memory that dynptr points to.
7359  *
7360  * The verifier will keep track both levels of mutation (bpf_dynptr's in
7361  * reg->type and the memory's in reg->dynptr.type), but there is no support for
7362  * readonly dynptr view yet, hence only the first case is tracked and checked.
7363  *
7364  * This is consistent with how C applies the const modifier to a struct object,
7365  * where the pointer itself inside bpf_dynptr becomes const but not what it
7366  * points to.
7367  *
7368  * Helpers which do not mutate the bpf_dynptr set MEM_RDONLY in their argument
7369  * type, and declare it as 'const struct bpf_dynptr *' in their prototype.
7370  */
7371 static int process_dynptr_func(struct bpf_verifier_env *env, int regno, int insn_idx,
7372                                enum bpf_arg_type arg_type, int clone_ref_obj_id)
7373 {
7374         struct bpf_reg_state *regs = cur_regs(env), *reg = &regs[regno];
7375         int err;
7376
7377         /* MEM_UNINIT and MEM_RDONLY are exclusive, when applied to an
7378          * ARG_PTR_TO_DYNPTR (or ARG_PTR_TO_DYNPTR | DYNPTR_TYPE_*):
7379          */
7380         if ((arg_type & (MEM_UNINIT | MEM_RDONLY)) == (MEM_UNINIT | MEM_RDONLY)) {
7381                 verbose(env, "verifier internal error: misconfigured dynptr helper type flags\n");
7382                 return -EFAULT;
7383         }
7384
7385         /*  MEM_UNINIT - Points to memory that is an appropriate candidate for
7386          *               constructing a mutable bpf_dynptr object.
7387          *
7388          *               Currently, this is only possible with PTR_TO_STACK
7389          *               pointing to a region of at least 16 bytes which doesn't
7390          *               contain an existing bpf_dynptr.
7391          *
7392          *  MEM_RDONLY - Points to a initialized bpf_dynptr that will not be
7393          *               mutated or destroyed. However, the memory it points to
7394          *               may be mutated.
7395          *
7396          *  None       - Points to a initialized dynptr that can be mutated and
7397          *               destroyed, including mutation of the memory it points
7398          *               to.
7399          */
7400         if (arg_type & MEM_UNINIT) {
7401                 int i;
7402
7403                 if (!is_dynptr_reg_valid_uninit(env, reg)) {
7404                         verbose(env, "Dynptr has to be an uninitialized dynptr\n");
7405                         return -EINVAL;
7406                 }
7407
7408                 /* we write BPF_DW bits (8 bytes) at a time */
7409                 for (i = 0; i < BPF_DYNPTR_SIZE; i += 8) {
7410                         err = check_mem_access(env, insn_idx, regno,
7411                                                i, BPF_DW, BPF_WRITE, -1, false, false);
7412                         if (err)
7413                                 return err;
7414                 }
7415
7416                 err = mark_stack_slots_dynptr(env, reg, arg_type, insn_idx, clone_ref_obj_id);
7417         } else /* MEM_RDONLY and None case from above */ {
7418                 /* For the reg->type == PTR_TO_STACK case, bpf_dynptr is never const */
7419                 if (reg->type == CONST_PTR_TO_DYNPTR && !(arg_type & MEM_RDONLY)) {
7420                         verbose(env, "cannot pass pointer to const bpf_dynptr, the helper mutates it\n");
7421                         return -EINVAL;
7422                 }
7423
7424                 if (!is_dynptr_reg_valid_init(env, reg)) {
7425                         verbose(env,
7426                                 "Expected an initialized dynptr as arg #%d\n",
7427                                 regno);
7428                         return -EINVAL;
7429                 }
7430
7431                 /* Fold modifiers (in this case, MEM_RDONLY) when checking expected type */
7432                 if (!is_dynptr_type_expected(env, reg, arg_type & ~MEM_RDONLY)) {
7433                         verbose(env,
7434                                 "Expected a dynptr of type %s as arg #%d\n",
7435                                 dynptr_type_str(arg_to_dynptr_type(arg_type)), regno);
7436                         return -EINVAL;
7437                 }
7438
7439                 err = mark_dynptr_read(env, reg);
7440         }
7441         return err;
7442 }
7443
7444 static u32 iter_ref_obj_id(struct bpf_verifier_env *env, struct bpf_reg_state *reg, int spi)
7445 {
7446         struct bpf_func_state *state = func(env, reg);
7447
7448         return state->stack[spi].spilled_ptr.ref_obj_id;
7449 }
7450
7451 static bool is_iter_kfunc(struct bpf_kfunc_call_arg_meta *meta)
7452 {
7453         return meta->kfunc_flags & (KF_ITER_NEW | KF_ITER_NEXT | KF_ITER_DESTROY);
7454 }
7455
7456 static bool is_iter_new_kfunc(struct bpf_kfunc_call_arg_meta *meta)
7457 {
7458         return meta->kfunc_flags & KF_ITER_NEW;
7459 }
7460
7461 static bool is_iter_next_kfunc(struct bpf_kfunc_call_arg_meta *meta)
7462 {
7463         return meta->kfunc_flags & KF_ITER_NEXT;
7464 }
7465
7466 static bool is_iter_destroy_kfunc(struct bpf_kfunc_call_arg_meta *meta)
7467 {
7468         return meta->kfunc_flags & KF_ITER_DESTROY;
7469 }
7470
7471 static bool is_kfunc_arg_iter(struct bpf_kfunc_call_arg_meta *meta, int arg)
7472 {
7473         /* btf_check_iter_kfuncs() guarantees that first argument of any iter
7474          * kfunc is iter state pointer
7475          */
7476         return arg == 0 && is_iter_kfunc(meta);
7477 }
7478
7479 static int process_iter_arg(struct bpf_verifier_env *env, int regno, int insn_idx,
7480                             struct bpf_kfunc_call_arg_meta *meta)
7481 {
7482         struct bpf_reg_state *regs = cur_regs(env), *reg = &regs[regno];
7483         const struct btf_type *t;
7484         const struct btf_param *arg;
7485         int spi, err, i, nr_slots;
7486         u32 btf_id;
7487
7488         /* btf_check_iter_kfuncs() ensures we don't need to validate anything here */
7489         arg = &btf_params(meta->func_proto)[0];
7490         t = btf_type_skip_modifiers(meta->btf, arg->type, NULL);        /* PTR */
7491         t = btf_type_skip_modifiers(meta->btf, t->type, &btf_id);       /* STRUCT */
7492         nr_slots = t->size / BPF_REG_SIZE;
7493
7494         if (is_iter_new_kfunc(meta)) {
7495                 /* bpf_iter_<type>_new() expects pointer to uninit iter state */
7496                 if (!is_iter_reg_valid_uninit(env, reg, nr_slots)) {
7497                         verbose(env, "expected uninitialized iter_%s as arg #%d\n",
7498                                 iter_type_str(meta->btf, btf_id), regno);
7499                         return -EINVAL;
7500                 }
7501
7502                 for (i = 0; i < nr_slots * 8; i += BPF_REG_SIZE) {
7503                         err = check_mem_access(env, insn_idx, regno,
7504                                                i, BPF_DW, BPF_WRITE, -1, false, false);
7505                         if (err)
7506                                 return err;
7507                 }
7508
7509                 err = mark_stack_slots_iter(env, reg, insn_idx, meta->btf, btf_id, nr_slots);
7510                 if (err)
7511                         return err;
7512         } else {
7513                 /* iter_next() or iter_destroy() expect initialized iter state*/
7514                 if (!is_iter_reg_valid_init(env, reg, meta->btf, btf_id, nr_slots)) {
7515                         verbose(env, "expected an initialized iter_%s as arg #%d\n",
7516                                 iter_type_str(meta->btf, btf_id), regno);
7517                         return -EINVAL;
7518                 }
7519
7520                 spi = iter_get_spi(env, reg, nr_slots);
7521                 if (spi < 0)
7522                         return spi;
7523
7524                 err = mark_iter_read(env, reg, spi, nr_slots);
7525                 if (err)
7526                         return err;
7527
7528                 /* remember meta->iter info for process_iter_next_call() */
7529                 meta->iter.spi = spi;
7530                 meta->iter.frameno = reg->frameno;
7531                 meta->ref_obj_id = iter_ref_obj_id(env, reg, spi);
7532
7533                 if (is_iter_destroy_kfunc(meta)) {
7534                         err = unmark_stack_slots_iter(env, reg, nr_slots);
7535                         if (err)
7536                                 return err;
7537                 }
7538         }
7539
7540         return 0;
7541 }
7542
7543 /* process_iter_next_call() is called when verifier gets to iterator's next
7544  * "method" (e.g., bpf_iter_num_next() for numbers iterator) call. We'll refer
7545  * to it as just "iter_next()" in comments below.
7546  *
7547  * BPF verifier relies on a crucial contract for any iter_next()
7548  * implementation: it should *eventually* return NULL, and once that happens
7549  * it should keep returning NULL. That is, once iterator exhausts elements to
7550  * iterate, it should never reset or spuriously return new elements.
7551  *
7552  * With the assumption of such contract, process_iter_next_call() simulates
7553  * a fork in the verifier state to validate loop logic correctness and safety
7554  * without having to simulate infinite amount of iterations.
7555  *
7556  * In current state, we first assume that iter_next() returned NULL and
7557  * iterator state is set to DRAINED (BPF_ITER_STATE_DRAINED). In such
7558  * conditions we should not form an infinite loop and should eventually reach
7559  * exit.
7560  *
7561  * Besides that, we also fork current state and enqueue it for later
7562  * verification. In a forked state we keep iterator state as ACTIVE
7563  * (BPF_ITER_STATE_ACTIVE) and assume non-NULL return from iter_next(). We
7564  * also bump iteration depth to prevent erroneous infinite loop detection
7565  * later on (see iter_active_depths_differ() comment for details). In this
7566  * state we assume that we'll eventually loop back to another iter_next()
7567  * calls (it could be in exactly same location or in some other instruction,
7568  * it doesn't matter, we don't make any unnecessary assumptions about this,
7569  * everything revolves around iterator state in a stack slot, not which
7570  * instruction is calling iter_next()). When that happens, we either will come
7571  * to iter_next() with equivalent state and can conclude that next iteration
7572  * will proceed in exactly the same way as we just verified, so it's safe to
7573  * assume that loop converges. If not, we'll go on another iteration
7574  * simulation with a different input state, until all possible starting states
7575  * are validated or we reach maximum number of instructions limit.
7576  *
7577  * This way, we will either exhaustively discover all possible input states
7578  * that iterator loop can start with and eventually will converge, or we'll
7579  * effectively regress into bounded loop simulation logic and either reach
7580  * maximum number of instructions if loop is not provably convergent, or there
7581  * is some statically known limit on number of iterations (e.g., if there is
7582  * an explicit `if n > 100 then break;` statement somewhere in the loop).
7583  *
7584  * One very subtle but very important aspect is that we *always* simulate NULL
7585  * condition first (as the current state) before we simulate non-NULL case.
7586  * This has to do with intricacies of scalar precision tracking. By simulating
7587  * "exit condition" of iter_next() returning NULL first, we make sure all the
7588  * relevant precision marks *that will be set **after** we exit iterator loop*
7589  * are propagated backwards to common parent state of NULL and non-NULL
7590  * branches. Thanks to that, state equivalence checks done later in forked
7591  * state, when reaching iter_next() for ACTIVE iterator, can assume that
7592  * precision marks are finalized and won't change. Because simulating another
7593  * ACTIVE iterator iteration won't change them (because given same input
7594  * states we'll end up with exactly same output states which we are currently
7595  * comparing; and verification after the loop already propagated back what
7596  * needs to be **additionally** tracked as precise). It's subtle, grok
7597  * precision tracking for more intuitive understanding.
7598  */
7599 static int process_iter_next_call(struct bpf_verifier_env *env, int insn_idx,
7600                                   struct bpf_kfunc_call_arg_meta *meta)
7601 {
7602         struct bpf_verifier_state *cur_st = env->cur_state, *queued_st;
7603         struct bpf_func_state *cur_fr = cur_st->frame[cur_st->curframe], *queued_fr;
7604         struct bpf_reg_state *cur_iter, *queued_iter;
7605         int iter_frameno = meta->iter.frameno;
7606         int iter_spi = meta->iter.spi;
7607
7608         BTF_TYPE_EMIT(struct bpf_iter);
7609
7610         cur_iter = &env->cur_state->frame[iter_frameno]->stack[iter_spi].spilled_ptr;
7611
7612         if (cur_iter->iter.state != BPF_ITER_STATE_ACTIVE &&
7613             cur_iter->iter.state != BPF_ITER_STATE_DRAINED) {
7614                 verbose(env, "verifier internal error: unexpected iterator state %d (%s)\n",
7615                         cur_iter->iter.state, iter_state_str(cur_iter->iter.state));
7616                 return -EFAULT;
7617         }
7618
7619         if (cur_iter->iter.state == BPF_ITER_STATE_ACTIVE) {
7620                 /* branch out active iter state */
7621                 queued_st = push_stack(env, insn_idx + 1, insn_idx, false);
7622                 if (!queued_st)
7623                         return -ENOMEM;
7624
7625                 queued_iter = &queued_st->frame[iter_frameno]->stack[iter_spi].spilled_ptr;
7626                 queued_iter->iter.state = BPF_ITER_STATE_ACTIVE;
7627                 queued_iter->iter.depth++;
7628
7629                 queued_fr = queued_st->frame[queued_st->curframe];
7630                 mark_ptr_not_null_reg(&queued_fr->regs[BPF_REG_0]);
7631         }
7632
7633         /* switch to DRAINED state, but keep the depth unchanged */
7634         /* mark current iter state as drained and assume returned NULL */
7635         cur_iter->iter.state = BPF_ITER_STATE_DRAINED;
7636         __mark_reg_const_zero(&cur_fr->regs[BPF_REG_0]);
7637
7638         return 0;
7639 }
7640
7641 static bool arg_type_is_mem_size(enum bpf_arg_type type)
7642 {
7643         return type == ARG_CONST_SIZE ||
7644                type == ARG_CONST_SIZE_OR_ZERO;
7645 }
7646
7647 static bool arg_type_is_release(enum bpf_arg_type type)
7648 {
7649         return type & OBJ_RELEASE;
7650 }
7651
7652 static bool arg_type_is_dynptr(enum bpf_arg_type type)
7653 {
7654         return base_type(type) == ARG_PTR_TO_DYNPTR;
7655 }
7656
7657 static int int_ptr_type_to_size(enum bpf_arg_type type)
7658 {
7659         if (type == ARG_PTR_TO_INT)
7660                 return sizeof(u32);
7661         else if (type == ARG_PTR_TO_LONG)
7662                 return sizeof(u64);
7663
7664         return -EINVAL;
7665 }
7666
7667 static int resolve_map_arg_type(struct bpf_verifier_env *env,
7668                                  const struct bpf_call_arg_meta *meta,
7669                                  enum bpf_arg_type *arg_type)
7670 {
7671         if (!meta->map_ptr) {
7672                 /* kernel subsystem misconfigured verifier */
7673                 verbose(env, "invalid map_ptr to access map->type\n");
7674                 return -EACCES;
7675         }
7676
7677         switch (meta->map_ptr->map_type) {
7678         case BPF_MAP_TYPE_SOCKMAP:
7679         case BPF_MAP_TYPE_SOCKHASH:
7680                 if (*arg_type == ARG_PTR_TO_MAP_VALUE) {
7681                         *arg_type = ARG_PTR_TO_BTF_ID_SOCK_COMMON;
7682                 } else {
7683                         verbose(env, "invalid arg_type for sockmap/sockhash\n");
7684                         return -EINVAL;
7685                 }
7686                 break;
7687         case BPF_MAP_TYPE_BLOOM_FILTER:
7688                 if (meta->func_id == BPF_FUNC_map_peek_elem)
7689                         *arg_type = ARG_PTR_TO_MAP_VALUE;
7690                 break;
7691         default:
7692                 break;
7693         }
7694         return 0;
7695 }
7696
7697 struct bpf_reg_types {
7698         const enum bpf_reg_type types[10];
7699         u32 *btf_id;
7700 };
7701
7702 static const struct bpf_reg_types sock_types = {
7703         .types = {
7704                 PTR_TO_SOCK_COMMON,
7705                 PTR_TO_SOCKET,
7706                 PTR_TO_TCP_SOCK,
7707                 PTR_TO_XDP_SOCK,
7708         },
7709 };
7710
7711 #ifdef CONFIG_NET
7712 static const struct bpf_reg_types btf_id_sock_common_types = {
7713         .types = {
7714                 PTR_TO_SOCK_COMMON,
7715                 PTR_TO_SOCKET,
7716                 PTR_TO_TCP_SOCK,
7717                 PTR_TO_XDP_SOCK,
7718                 PTR_TO_BTF_ID,
7719                 PTR_TO_BTF_ID | PTR_TRUSTED,
7720         },
7721         .btf_id = &btf_sock_ids[BTF_SOCK_TYPE_SOCK_COMMON],
7722 };
7723 #endif
7724
7725 static const struct bpf_reg_types mem_types = {
7726         .types = {
7727                 PTR_TO_STACK,
7728                 PTR_TO_PACKET,
7729                 PTR_TO_PACKET_META,
7730                 PTR_TO_MAP_KEY,
7731                 PTR_TO_MAP_VALUE,
7732                 PTR_TO_MEM,
7733                 PTR_TO_MEM | MEM_RINGBUF,
7734                 PTR_TO_BUF,
7735                 PTR_TO_BTF_ID | PTR_TRUSTED,
7736         },
7737 };
7738
7739 static const struct bpf_reg_types int_ptr_types = {
7740         .types = {
7741                 PTR_TO_STACK,
7742                 PTR_TO_PACKET,
7743                 PTR_TO_PACKET_META,
7744                 PTR_TO_MAP_KEY,
7745                 PTR_TO_MAP_VALUE,
7746         },
7747 };
7748
7749 static const struct bpf_reg_types spin_lock_types = {
7750         .types = {
7751                 PTR_TO_MAP_VALUE,
7752                 PTR_TO_BTF_ID | MEM_ALLOC,
7753         }
7754 };
7755
7756 static const struct bpf_reg_types fullsock_types = { .types = { PTR_TO_SOCKET } };
7757 static const struct bpf_reg_types scalar_types = { .types = { SCALAR_VALUE } };
7758 static const struct bpf_reg_types context_types = { .types = { PTR_TO_CTX } };
7759 static const struct bpf_reg_types ringbuf_mem_types = { .types = { PTR_TO_MEM | MEM_RINGBUF } };
7760 static const struct bpf_reg_types const_map_ptr_types = { .types = { CONST_PTR_TO_MAP } };
7761 static const struct bpf_reg_types btf_ptr_types = {
7762         .types = {
7763                 PTR_TO_BTF_ID,
7764                 PTR_TO_BTF_ID | PTR_TRUSTED,
7765                 PTR_TO_BTF_ID | MEM_RCU,
7766         },
7767 };
7768 static const struct bpf_reg_types percpu_btf_ptr_types = {
7769         .types = {
7770                 PTR_TO_BTF_ID | MEM_PERCPU,
7771                 PTR_TO_BTF_ID | MEM_PERCPU | PTR_TRUSTED,
7772         }
7773 };
7774 static const struct bpf_reg_types func_ptr_types = { .types = { PTR_TO_FUNC } };
7775 static const struct bpf_reg_types stack_ptr_types = { .types = { PTR_TO_STACK } };
7776 static const struct bpf_reg_types const_str_ptr_types = { .types = { PTR_TO_MAP_VALUE } };
7777 static const struct bpf_reg_types timer_types = { .types = { PTR_TO_MAP_VALUE } };
7778 static const struct bpf_reg_types kptr_types = { .types = { PTR_TO_MAP_VALUE } };
7779 static const struct bpf_reg_types dynptr_types = {
7780         .types = {
7781                 PTR_TO_STACK,
7782                 CONST_PTR_TO_DYNPTR,
7783         }
7784 };
7785
7786 static const struct bpf_reg_types *compatible_reg_types[__BPF_ARG_TYPE_MAX] = {
7787         [ARG_PTR_TO_MAP_KEY]            = &mem_types,
7788         [ARG_PTR_TO_MAP_VALUE]          = &mem_types,
7789         [ARG_CONST_SIZE]                = &scalar_types,
7790         [ARG_CONST_SIZE_OR_ZERO]        = &scalar_types,
7791         [ARG_CONST_ALLOC_SIZE_OR_ZERO]  = &scalar_types,
7792         [ARG_CONST_MAP_PTR]             = &const_map_ptr_types,
7793         [ARG_PTR_TO_CTX]                = &context_types,
7794         [ARG_PTR_TO_SOCK_COMMON]        = &sock_types,
7795 #ifdef CONFIG_NET
7796         [ARG_PTR_TO_BTF_ID_SOCK_COMMON] = &btf_id_sock_common_types,
7797 #endif
7798         [ARG_PTR_TO_SOCKET]             = &fullsock_types,
7799         [ARG_PTR_TO_BTF_ID]             = &btf_ptr_types,
7800         [ARG_PTR_TO_SPIN_LOCK]          = &spin_lock_types,
7801         [ARG_PTR_TO_MEM]                = &mem_types,
7802         [ARG_PTR_TO_RINGBUF_MEM]        = &ringbuf_mem_types,
7803         [ARG_PTR_TO_INT]                = &int_ptr_types,
7804         [ARG_PTR_TO_LONG]               = &int_ptr_types,
7805         [ARG_PTR_TO_PERCPU_BTF_ID]      = &percpu_btf_ptr_types,
7806         [ARG_PTR_TO_FUNC]               = &func_ptr_types,
7807         [ARG_PTR_TO_STACK]              = &stack_ptr_types,
7808         [ARG_PTR_TO_CONST_STR]          = &const_str_ptr_types,
7809         [ARG_PTR_TO_TIMER]              = &timer_types,
7810         [ARG_PTR_TO_KPTR]               = &kptr_types,
7811         [ARG_PTR_TO_DYNPTR]             = &dynptr_types,
7812 };
7813
7814 static int check_reg_type(struct bpf_verifier_env *env, u32 regno,
7815                           enum bpf_arg_type arg_type,
7816                           const u32 *arg_btf_id,
7817                           struct bpf_call_arg_meta *meta)
7818 {
7819         struct bpf_reg_state *regs = cur_regs(env), *reg = &regs[regno];
7820         enum bpf_reg_type expected, type = reg->type;
7821         const struct bpf_reg_types *compatible;
7822         int i, j;
7823
7824         compatible = compatible_reg_types[base_type(arg_type)];
7825         if (!compatible) {
7826                 verbose(env, "verifier internal error: unsupported arg type %d\n", arg_type);
7827                 return -EFAULT;
7828         }
7829
7830         /* ARG_PTR_TO_MEM + RDONLY is compatible with PTR_TO_MEM and PTR_TO_MEM + RDONLY,
7831          * but ARG_PTR_TO_MEM is compatible only with PTR_TO_MEM and NOT with PTR_TO_MEM + RDONLY
7832          *
7833          * Same for MAYBE_NULL:
7834          *
7835          * ARG_PTR_TO_MEM + MAYBE_NULL is compatible with PTR_TO_MEM and PTR_TO_MEM + MAYBE_NULL,
7836          * but ARG_PTR_TO_MEM is compatible only with PTR_TO_MEM but NOT with PTR_TO_MEM + MAYBE_NULL
7837          *
7838          * ARG_PTR_TO_MEM is compatible with PTR_TO_MEM that is tagged with a dynptr type.
7839          *
7840          * Therefore we fold these flags depending on the arg_type before comparison.
7841          */
7842         if (arg_type & MEM_RDONLY)
7843                 type &= ~MEM_RDONLY;
7844         if (arg_type & PTR_MAYBE_NULL)
7845                 type &= ~PTR_MAYBE_NULL;
7846         if (base_type(arg_type) == ARG_PTR_TO_MEM)
7847                 type &= ~DYNPTR_TYPE_FLAG_MASK;
7848
7849         if (meta->func_id == BPF_FUNC_kptr_xchg && type_is_alloc(type))
7850                 type &= ~MEM_ALLOC;
7851
7852         for (i = 0; i < ARRAY_SIZE(compatible->types); i++) {
7853                 expected = compatible->types[i];
7854                 if (expected == NOT_INIT)
7855                         break;
7856
7857                 if (type == expected)
7858                         goto found;
7859         }
7860
7861         verbose(env, "R%d type=%s expected=", regno, reg_type_str(env, reg->type));
7862         for (j = 0; j + 1 < i; j++)
7863                 verbose(env, "%s, ", reg_type_str(env, compatible->types[j]));
7864         verbose(env, "%s\n", reg_type_str(env, compatible->types[j]));
7865         return -EACCES;
7866
7867 found:
7868         if (base_type(reg->type) != PTR_TO_BTF_ID)
7869                 return 0;
7870
7871         if (compatible == &mem_types) {
7872                 if (!(arg_type & MEM_RDONLY)) {
7873                         verbose(env,
7874                                 "%s() may write into memory pointed by R%d type=%s\n",
7875                                 func_id_name(meta->func_id),
7876                                 regno, reg_type_str(env, reg->type));
7877                         return -EACCES;
7878                 }
7879                 return 0;
7880         }
7881
7882         switch ((int)reg->type) {
7883         case PTR_TO_BTF_ID:
7884         case PTR_TO_BTF_ID | PTR_TRUSTED:
7885         case PTR_TO_BTF_ID | MEM_RCU:
7886         case PTR_TO_BTF_ID | PTR_MAYBE_NULL:
7887         case PTR_TO_BTF_ID | PTR_MAYBE_NULL | MEM_RCU:
7888         {
7889                 /* For bpf_sk_release, it needs to match against first member
7890                  * 'struct sock_common', hence make an exception for it. This
7891                  * allows bpf_sk_release to work for multiple socket types.
7892                  */
7893                 bool strict_type_match = arg_type_is_release(arg_type) &&
7894                                          meta->func_id != BPF_FUNC_sk_release;
7895
7896                 if (type_may_be_null(reg->type) &&
7897                     (!type_may_be_null(arg_type) || arg_type_is_release(arg_type))) {
7898                         verbose(env, "Possibly NULL pointer passed to helper arg%d\n", regno);
7899                         return -EACCES;
7900                 }
7901
7902                 if (!arg_btf_id) {
7903                         if (!compatible->btf_id) {
7904                                 verbose(env, "verifier internal error: missing arg compatible BTF ID\n");
7905                                 return -EFAULT;
7906                         }
7907                         arg_btf_id = compatible->btf_id;
7908                 }
7909
7910                 if (meta->func_id == BPF_FUNC_kptr_xchg) {
7911                         if (map_kptr_match_type(env, meta->kptr_field, reg, regno))
7912                                 return -EACCES;
7913                 } else {
7914                         if (arg_btf_id == BPF_PTR_POISON) {
7915                                 verbose(env, "verifier internal error:");
7916                                 verbose(env, "R%d has non-overwritten BPF_PTR_POISON type\n",
7917                                         regno);
7918                                 return -EACCES;
7919                         }
7920
7921                         if (!btf_struct_ids_match(&env->log, reg->btf, reg->btf_id, reg->off,
7922                                                   btf_vmlinux, *arg_btf_id,
7923                                                   strict_type_match)) {
7924                                 verbose(env, "R%d is of type %s but %s is expected\n",
7925                                         regno, btf_type_name(reg->btf, reg->btf_id),
7926                                         btf_type_name(btf_vmlinux, *arg_btf_id));
7927                                 return -EACCES;
7928                         }
7929                 }
7930                 break;
7931         }
7932         case PTR_TO_BTF_ID | MEM_ALLOC:
7933                 if (meta->func_id != BPF_FUNC_spin_lock && meta->func_id != BPF_FUNC_spin_unlock &&
7934                     meta->func_id != BPF_FUNC_kptr_xchg) {
7935                         verbose(env, "verifier internal error: unimplemented handling of MEM_ALLOC\n");
7936                         return -EFAULT;
7937                 }
7938                 if (meta->func_id == BPF_FUNC_kptr_xchg) {
7939                         if (map_kptr_match_type(env, meta->kptr_field, reg, regno))
7940                                 return -EACCES;
7941                 }
7942                 break;
7943         case PTR_TO_BTF_ID | MEM_PERCPU:
7944         case PTR_TO_BTF_ID | MEM_PERCPU | PTR_TRUSTED:
7945                 /* Handled by helper specific checks */
7946                 break;
7947         default:
7948                 verbose(env, "verifier internal error: invalid PTR_TO_BTF_ID register for type match\n");
7949                 return -EFAULT;
7950         }
7951         return 0;
7952 }
7953
7954 static struct btf_field *
7955 reg_find_field_offset(const struct bpf_reg_state *reg, s32 off, u32 fields)
7956 {
7957         struct btf_field *field;
7958         struct btf_record *rec;
7959
7960         rec = reg_btf_record(reg);
7961         if (!rec)
7962                 return NULL;
7963
7964         field = btf_record_find(rec, off, fields);
7965         if (!field)
7966                 return NULL;
7967
7968         return field;
7969 }
7970
7971 int check_func_arg_reg_off(struct bpf_verifier_env *env,
7972                            const struct bpf_reg_state *reg, int regno,
7973                            enum bpf_arg_type arg_type)
7974 {
7975         u32 type = reg->type;
7976
7977         /* When referenced register is passed to release function, its fixed
7978          * offset must be 0.
7979          *
7980          * We will check arg_type_is_release reg has ref_obj_id when storing
7981          * meta->release_regno.
7982          */
7983         if (arg_type_is_release(arg_type)) {
7984                 /* ARG_PTR_TO_DYNPTR with OBJ_RELEASE is a bit special, as it
7985                  * may not directly point to the object being released, but to
7986                  * dynptr pointing to such object, which might be at some offset
7987                  * on the stack. In that case, we simply to fallback to the
7988                  * default handling.
7989                  */
7990                 if (arg_type_is_dynptr(arg_type) && type == PTR_TO_STACK)
7991                         return 0;
7992
7993                 /* Doing check_ptr_off_reg check for the offset will catch this
7994                  * because fixed_off_ok is false, but checking here allows us
7995                  * to give the user a better error message.
7996                  */
7997                 if (reg->off) {
7998                         verbose(env, "R%d must have zero offset when passed to release func or trusted arg to kfunc\n",
7999                                 regno);
8000                         return -EINVAL;
8001                 }
8002                 return __check_ptr_off_reg(env, reg, regno, false);
8003         }
8004
8005         switch (type) {
8006         /* Pointer types where both fixed and variable offset is explicitly allowed: */
8007         case PTR_TO_STACK:
8008         case PTR_TO_PACKET:
8009         case PTR_TO_PACKET_META:
8010         case PTR_TO_MAP_KEY:
8011         case PTR_TO_MAP_VALUE:
8012         case PTR_TO_MEM:
8013         case PTR_TO_MEM | MEM_RDONLY:
8014         case PTR_TO_MEM | MEM_RINGBUF:
8015         case PTR_TO_BUF:
8016         case PTR_TO_BUF | MEM_RDONLY:
8017         case SCALAR_VALUE:
8018                 return 0;
8019         /* All the rest must be rejected, except PTR_TO_BTF_ID which allows
8020          * fixed offset.
8021          */
8022         case PTR_TO_BTF_ID:
8023         case PTR_TO_BTF_ID | MEM_ALLOC:
8024         case PTR_TO_BTF_ID | PTR_TRUSTED:
8025         case PTR_TO_BTF_ID | MEM_RCU:
8026         case PTR_TO_BTF_ID | MEM_ALLOC | NON_OWN_REF:
8027         case PTR_TO_BTF_ID | MEM_ALLOC | NON_OWN_REF | MEM_RCU:
8028                 /* When referenced PTR_TO_BTF_ID is passed to release function,
8029                  * its fixed offset must be 0. In the other cases, fixed offset
8030                  * can be non-zero. This was already checked above. So pass
8031                  * fixed_off_ok as true to allow fixed offset for all other
8032                  * cases. var_off always must be 0 for PTR_TO_BTF_ID, hence we
8033                  * still need to do checks instead of returning.
8034                  */
8035                 return __check_ptr_off_reg(env, reg, regno, true);
8036         default:
8037                 return __check_ptr_off_reg(env, reg, regno, false);
8038         }
8039 }
8040
8041 static struct bpf_reg_state *get_dynptr_arg_reg(struct bpf_verifier_env *env,
8042                                                 const struct bpf_func_proto *fn,
8043                                                 struct bpf_reg_state *regs)
8044 {
8045         struct bpf_reg_state *state = NULL;
8046         int i;
8047
8048         for (i = 0; i < MAX_BPF_FUNC_REG_ARGS; i++)
8049                 if (arg_type_is_dynptr(fn->arg_type[i])) {
8050                         if (state) {
8051                                 verbose(env, "verifier internal error: multiple dynptr args\n");
8052                                 return NULL;
8053                         }
8054                         state = &regs[BPF_REG_1 + i];
8055                 }
8056
8057         if (!state)
8058                 verbose(env, "verifier internal error: no dynptr arg found\n");
8059
8060         return state;
8061 }
8062
8063 static int dynptr_id(struct bpf_verifier_env *env, struct bpf_reg_state *reg)
8064 {
8065         struct bpf_func_state *state = func(env, reg);
8066         int spi;
8067
8068         if (reg->type == CONST_PTR_TO_DYNPTR)
8069                 return reg->id;
8070         spi = dynptr_get_spi(env, reg);
8071         if (spi < 0)
8072                 return spi;
8073         return state->stack[spi].spilled_ptr.id;
8074 }
8075
8076 static int dynptr_ref_obj_id(struct bpf_verifier_env *env, struct bpf_reg_state *reg)
8077 {
8078         struct bpf_func_state *state = func(env, reg);
8079         int spi;
8080
8081         if (reg->type == CONST_PTR_TO_DYNPTR)
8082                 return reg->ref_obj_id;
8083         spi = dynptr_get_spi(env, reg);
8084         if (spi < 0)
8085                 return spi;
8086         return state->stack[spi].spilled_ptr.ref_obj_id;
8087 }
8088
8089 static enum bpf_dynptr_type dynptr_get_type(struct bpf_verifier_env *env,
8090                                             struct bpf_reg_state *reg)
8091 {
8092         struct bpf_func_state *state = func(env, reg);
8093         int spi;
8094
8095         if (reg->type == CONST_PTR_TO_DYNPTR)
8096                 return reg->dynptr.type;
8097
8098         spi = __get_spi(reg->off);
8099         if (spi < 0) {
8100                 verbose(env, "verifier internal error: invalid spi when querying dynptr type\n");
8101                 return BPF_DYNPTR_TYPE_INVALID;
8102         }
8103
8104         return state->stack[spi].spilled_ptr.dynptr.type;
8105 }
8106
8107 static int check_func_arg(struct bpf_verifier_env *env, u32 arg,
8108                           struct bpf_call_arg_meta *meta,
8109                           const struct bpf_func_proto *fn,
8110                           int insn_idx)
8111 {
8112         u32 regno = BPF_REG_1 + arg;
8113         struct bpf_reg_state *regs = cur_regs(env), *reg = &regs[regno];
8114         enum bpf_arg_type arg_type = fn->arg_type[arg];
8115         enum bpf_reg_type type = reg->type;
8116         u32 *arg_btf_id = NULL;
8117         int err = 0;
8118
8119         if (arg_type == ARG_DONTCARE)
8120                 return 0;
8121
8122         err = check_reg_arg(env, regno, SRC_OP);
8123         if (err)
8124                 return err;
8125
8126         if (arg_type == ARG_ANYTHING) {
8127                 if (is_pointer_value(env, regno)) {
8128                         verbose(env, "R%d leaks addr into helper function\n",
8129                                 regno);
8130                         return -EACCES;
8131                 }
8132                 return 0;
8133         }
8134
8135         if (type_is_pkt_pointer(type) &&
8136             !may_access_direct_pkt_data(env, meta, BPF_READ)) {
8137                 verbose(env, "helper access to the packet is not allowed\n");
8138                 return -EACCES;
8139         }
8140
8141         if (base_type(arg_type) == ARG_PTR_TO_MAP_VALUE) {
8142                 err = resolve_map_arg_type(env, meta, &arg_type);
8143                 if (err)
8144                         return err;
8145         }
8146
8147         if (register_is_null(reg) && type_may_be_null(arg_type))
8148                 /* A NULL register has a SCALAR_VALUE type, so skip
8149                  * type checking.
8150                  */
8151                 goto skip_type_check;
8152
8153         /* arg_btf_id and arg_size are in a union. */
8154         if (base_type(arg_type) == ARG_PTR_TO_BTF_ID ||
8155             base_type(arg_type) == ARG_PTR_TO_SPIN_LOCK)
8156                 arg_btf_id = fn->arg_btf_id[arg];
8157
8158         err = check_reg_type(env, regno, arg_type, arg_btf_id, meta);
8159         if (err)
8160                 return err;
8161
8162         err = check_func_arg_reg_off(env, reg, regno, arg_type);
8163         if (err)
8164                 return err;
8165
8166 skip_type_check:
8167         if (arg_type_is_release(arg_type)) {
8168                 if (arg_type_is_dynptr(arg_type)) {
8169                         struct bpf_func_state *state = func(env, reg);
8170                         int spi;
8171
8172                         /* Only dynptr created on stack can be released, thus
8173                          * the get_spi and stack state checks for spilled_ptr
8174                          * should only be done before process_dynptr_func for
8175                          * PTR_TO_STACK.
8176                          */
8177                         if (reg->type == PTR_TO_STACK) {
8178                                 spi = dynptr_get_spi(env, reg);
8179                                 if (spi < 0 || !state->stack[spi].spilled_ptr.ref_obj_id) {
8180                                         verbose(env, "arg %d is an unacquired reference\n", regno);
8181                                         return -EINVAL;
8182                                 }
8183                         } else {
8184                                 verbose(env, "cannot release unowned const bpf_dynptr\n");
8185                                 return -EINVAL;
8186                         }
8187                 } else if (!reg->ref_obj_id && !register_is_null(reg)) {
8188                         verbose(env, "R%d must be referenced when passed to release function\n",
8189                                 regno);
8190                         return -EINVAL;
8191                 }
8192                 if (meta->release_regno) {
8193                         verbose(env, "verifier internal error: more than one release argument\n");
8194                         return -EFAULT;
8195                 }
8196                 meta->release_regno = regno;
8197         }
8198
8199         if (reg->ref_obj_id) {
8200                 if (meta->ref_obj_id) {
8201                         verbose(env, "verifier internal error: more than one arg with ref_obj_id R%d %u %u\n",
8202                                 regno, reg->ref_obj_id,
8203                                 meta->ref_obj_id);
8204                         return -EFAULT;
8205                 }
8206                 meta->ref_obj_id = reg->ref_obj_id;
8207         }
8208
8209         switch (base_type(arg_type)) {
8210         case ARG_CONST_MAP_PTR:
8211                 /* bpf_map_xxx(map_ptr) call: remember that map_ptr */
8212                 if (meta->map_ptr) {
8213                         /* Use map_uid (which is unique id of inner map) to reject:
8214                          * inner_map1 = bpf_map_lookup_elem(outer_map, key1)
8215                          * inner_map2 = bpf_map_lookup_elem(outer_map, key2)
8216                          * if (inner_map1 && inner_map2) {
8217                          *     timer = bpf_map_lookup_elem(inner_map1);
8218                          *     if (timer)
8219                          *         // mismatch would have been allowed
8220                          *         bpf_timer_init(timer, inner_map2);
8221                          * }
8222                          *
8223                          * Comparing map_ptr is enough to distinguish normal and outer maps.
8224                          */
8225                         if (meta->map_ptr != reg->map_ptr ||
8226                             meta->map_uid != reg->map_uid) {
8227                                 verbose(env,
8228                                         "timer pointer in R1 map_uid=%d doesn't match map pointer in R2 map_uid=%d\n",
8229                                         meta->map_uid, reg->map_uid);
8230                                 return -EINVAL;
8231                         }
8232                 }
8233                 meta->map_ptr = reg->map_ptr;
8234                 meta->map_uid = reg->map_uid;
8235                 break;
8236         case ARG_PTR_TO_MAP_KEY:
8237                 /* bpf_map_xxx(..., map_ptr, ..., key) call:
8238                  * check that [key, key + map->key_size) are within
8239                  * stack limits and initialized
8240                  */
8241                 if (!meta->map_ptr) {
8242                         /* in function declaration map_ptr must come before
8243                          * map_key, so that it's verified and known before
8244                          * we have to check map_key here. Otherwise it means
8245                          * that kernel subsystem misconfigured verifier
8246                          */
8247                         verbose(env, "invalid map_ptr to access map->key\n");
8248                         return -EACCES;
8249                 }
8250                 err = check_helper_mem_access(env, regno,
8251                                               meta->map_ptr->key_size, false,
8252                                               NULL);
8253                 break;
8254         case ARG_PTR_TO_MAP_VALUE:
8255                 if (type_may_be_null(arg_type) && register_is_null(reg))
8256                         return 0;
8257
8258                 /* bpf_map_xxx(..., map_ptr, ..., value) call:
8259                  * check [value, value + map->value_size) validity
8260                  */
8261                 if (!meta->map_ptr) {
8262                         /* kernel subsystem misconfigured verifier */
8263                         verbose(env, "invalid map_ptr to access map->value\n");
8264                         return -EACCES;
8265                 }
8266                 meta->raw_mode = arg_type & MEM_UNINIT;
8267                 err = check_helper_mem_access(env, regno,
8268                                               meta->map_ptr->value_size, false,
8269                                               meta);
8270                 break;
8271         case ARG_PTR_TO_PERCPU_BTF_ID:
8272                 if (!reg->btf_id) {
8273                         verbose(env, "Helper has invalid btf_id in R%d\n", regno);
8274                         return -EACCES;
8275                 }
8276                 meta->ret_btf = reg->btf;
8277                 meta->ret_btf_id = reg->btf_id;
8278                 break;
8279         case ARG_PTR_TO_SPIN_LOCK:
8280                 if (in_rbtree_lock_required_cb(env)) {
8281                         verbose(env, "can't spin_{lock,unlock} in rbtree cb\n");
8282                         return -EACCES;
8283                 }
8284                 if (meta->func_id == BPF_FUNC_spin_lock) {
8285                         err = process_spin_lock(env, regno, true);
8286                         if (err)
8287                                 return err;
8288                 } else if (meta->func_id == BPF_FUNC_spin_unlock) {
8289                         err = process_spin_lock(env, regno, false);
8290                         if (err)
8291                                 return err;
8292                 } else {
8293                         verbose(env, "verifier internal error\n");
8294                         return -EFAULT;
8295                 }
8296                 break;
8297         case ARG_PTR_TO_TIMER:
8298                 err = process_timer_func(env, regno, meta);
8299                 if (err)
8300                         return err;
8301                 break;
8302         case ARG_PTR_TO_FUNC:
8303                 meta->subprogno = reg->subprogno;
8304                 break;
8305         case ARG_PTR_TO_MEM:
8306                 /* The access to this pointer is only checked when we hit the
8307                  * next is_mem_size argument below.
8308                  */
8309                 meta->raw_mode = arg_type & MEM_UNINIT;
8310                 if (arg_type & MEM_FIXED_SIZE) {
8311                         err = check_helper_mem_access(env, regno,
8312                                                       fn->arg_size[arg], false,
8313                                                       meta);
8314                 }
8315                 break;
8316         case ARG_CONST_SIZE:
8317                 err = check_mem_size_reg(env, reg, regno, false, meta);
8318                 break;
8319         case ARG_CONST_SIZE_OR_ZERO:
8320                 err = check_mem_size_reg(env, reg, regno, true, meta);
8321                 break;
8322         case ARG_PTR_TO_DYNPTR:
8323                 err = process_dynptr_func(env, regno, insn_idx, arg_type, 0);
8324                 if (err)
8325                         return err;
8326                 break;
8327         case ARG_CONST_ALLOC_SIZE_OR_ZERO:
8328                 if (!tnum_is_const(reg->var_off)) {
8329                         verbose(env, "R%d is not a known constant'\n",
8330                                 regno);
8331                         return -EACCES;
8332                 }
8333                 meta->mem_size = reg->var_off.value;
8334                 err = mark_chain_precision(env, regno);
8335                 if (err)
8336                         return err;
8337                 break;
8338         case ARG_PTR_TO_INT:
8339         case ARG_PTR_TO_LONG:
8340         {
8341                 int size = int_ptr_type_to_size(arg_type);
8342
8343                 err = check_helper_mem_access(env, regno, size, false, meta);
8344                 if (err)
8345                         return err;
8346                 err = check_ptr_alignment(env, reg, 0, size, true);
8347                 break;
8348         }
8349         case ARG_PTR_TO_CONST_STR:
8350         {
8351                 struct bpf_map *map = reg->map_ptr;
8352                 int map_off;
8353                 u64 map_addr;
8354                 char *str_ptr;
8355
8356                 if (!bpf_map_is_rdonly(map)) {
8357                         verbose(env, "R%d does not point to a readonly map'\n", regno);
8358                         return -EACCES;
8359                 }
8360
8361                 if (!tnum_is_const(reg->var_off)) {
8362                         verbose(env, "R%d is not a constant address'\n", regno);
8363                         return -EACCES;
8364                 }
8365
8366                 if (!map->ops->map_direct_value_addr) {
8367                         verbose(env, "no direct value access support for this map type\n");
8368                         return -EACCES;
8369                 }
8370
8371                 err = check_map_access(env, regno, reg->off,
8372                                        map->value_size - reg->off, false,
8373                                        ACCESS_HELPER);
8374                 if (err)
8375                         return err;
8376
8377                 map_off = reg->off + reg->var_off.value;
8378                 err = map->ops->map_direct_value_addr(map, &map_addr, map_off);
8379                 if (err) {
8380                         verbose(env, "direct value access on string failed\n");
8381                         return err;
8382                 }
8383
8384                 str_ptr = (char *)(long)(map_addr);
8385                 if (!strnchr(str_ptr + map_off, map->value_size - map_off, 0)) {
8386                         verbose(env, "string is not zero-terminated\n");
8387                         return -EINVAL;
8388                 }
8389                 break;
8390         }
8391         case ARG_PTR_TO_KPTR:
8392                 err = process_kptr_func(env, regno, meta);
8393                 if (err)
8394                         return err;
8395                 break;
8396         }
8397
8398         return err;
8399 }
8400
8401 static bool may_update_sockmap(struct bpf_verifier_env *env, int func_id)
8402 {
8403         enum bpf_attach_type eatype = env->prog->expected_attach_type;
8404         enum bpf_prog_type type = resolve_prog_type(env->prog);
8405
8406         if (func_id != BPF_FUNC_map_update_elem)
8407                 return false;
8408
8409         /* It's not possible to get access to a locked struct sock in these
8410          * contexts, so updating is safe.
8411          */
8412         switch (type) {
8413         case BPF_PROG_TYPE_TRACING:
8414                 if (eatype == BPF_TRACE_ITER)
8415                         return true;
8416                 break;
8417         case BPF_PROG_TYPE_SOCKET_FILTER:
8418         case BPF_PROG_TYPE_SCHED_CLS:
8419         case BPF_PROG_TYPE_SCHED_ACT:
8420         case BPF_PROG_TYPE_XDP:
8421         case BPF_PROG_TYPE_SK_REUSEPORT:
8422         case BPF_PROG_TYPE_FLOW_DISSECTOR:
8423         case BPF_PROG_TYPE_SK_LOOKUP:
8424                 return true;
8425         default:
8426                 break;
8427         }
8428
8429         verbose(env, "cannot update sockmap in this context\n");
8430         return false;
8431 }
8432
8433 static bool allow_tail_call_in_subprogs(struct bpf_verifier_env *env)
8434 {
8435         return env->prog->jit_requested &&
8436                bpf_jit_supports_subprog_tailcalls();
8437 }
8438
8439 static int check_map_func_compatibility(struct bpf_verifier_env *env,
8440                                         struct bpf_map *map, int func_id)
8441 {
8442         if (!map)
8443                 return 0;
8444
8445         /* We need a two way check, first is from map perspective ... */
8446         switch (map->map_type) {
8447         case BPF_MAP_TYPE_PROG_ARRAY:
8448                 if (func_id != BPF_FUNC_tail_call)
8449                         goto error;
8450                 break;
8451         case BPF_MAP_TYPE_PERF_EVENT_ARRAY:
8452                 if (func_id != BPF_FUNC_perf_event_read &&
8453                     func_id != BPF_FUNC_perf_event_output &&
8454                     func_id != BPF_FUNC_skb_output &&
8455                     func_id != BPF_FUNC_perf_event_read_value &&
8456                     func_id != BPF_FUNC_xdp_output)
8457                         goto error;
8458                 break;
8459         case BPF_MAP_TYPE_RINGBUF:
8460                 if (func_id != BPF_FUNC_ringbuf_output &&
8461                     func_id != BPF_FUNC_ringbuf_reserve &&
8462                     func_id != BPF_FUNC_ringbuf_query &&
8463                     func_id != BPF_FUNC_ringbuf_reserve_dynptr &&
8464                     func_id != BPF_FUNC_ringbuf_submit_dynptr &&
8465                     func_id != BPF_FUNC_ringbuf_discard_dynptr)
8466                         goto error;
8467                 break;
8468         case BPF_MAP_TYPE_USER_RINGBUF:
8469                 if (func_id != BPF_FUNC_user_ringbuf_drain)
8470                         goto error;
8471                 break;
8472         case BPF_MAP_TYPE_STACK_TRACE:
8473                 if (func_id != BPF_FUNC_get_stackid)
8474                         goto error;
8475                 break;
8476         case BPF_MAP_TYPE_CGROUP_ARRAY:
8477                 if (func_id != BPF_FUNC_skb_under_cgroup &&
8478                     func_id != BPF_FUNC_current_task_under_cgroup)
8479                         goto error;
8480                 break;
8481         case BPF_MAP_TYPE_CGROUP_STORAGE:
8482         case BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE:
8483                 if (func_id != BPF_FUNC_get_local_storage)
8484                         goto error;
8485                 break;
8486         case BPF_MAP_TYPE_DEVMAP:
8487         case BPF_MAP_TYPE_DEVMAP_HASH:
8488                 if (func_id != BPF_FUNC_redirect_map &&
8489                     func_id != BPF_FUNC_map_lookup_elem)
8490                         goto error;
8491                 break;
8492         /* Restrict bpf side of cpumap and xskmap, open when use-cases
8493          * appear.
8494          */
8495         case BPF_MAP_TYPE_CPUMAP:
8496                 if (func_id != BPF_FUNC_redirect_map)
8497                         goto error;
8498                 break;
8499         case BPF_MAP_TYPE_XSKMAP:
8500                 if (func_id != BPF_FUNC_redirect_map &&
8501                     func_id != BPF_FUNC_map_lookup_elem)
8502                         goto error;
8503                 break;
8504         case BPF_MAP_TYPE_ARRAY_OF_MAPS:
8505         case BPF_MAP_TYPE_HASH_OF_MAPS:
8506                 if (func_id != BPF_FUNC_map_lookup_elem)
8507                         goto error;
8508                 break;
8509         case BPF_MAP_TYPE_SOCKMAP:
8510                 if (func_id != BPF_FUNC_sk_redirect_map &&
8511                     func_id != BPF_FUNC_sock_map_update &&
8512                     func_id != BPF_FUNC_map_delete_elem &&
8513                     func_id != BPF_FUNC_msg_redirect_map &&
8514                     func_id != BPF_FUNC_sk_select_reuseport &&
8515                     func_id != BPF_FUNC_map_lookup_elem &&
8516                     !may_update_sockmap(env, func_id))
8517                         goto error;
8518                 break;
8519         case BPF_MAP_TYPE_SOCKHASH:
8520                 if (func_id != BPF_FUNC_sk_redirect_hash &&
8521                     func_id != BPF_FUNC_sock_hash_update &&
8522                     func_id != BPF_FUNC_map_delete_elem &&
8523                     func_id != BPF_FUNC_msg_redirect_hash &&
8524                     func_id != BPF_FUNC_sk_select_reuseport &&
8525                     func_id != BPF_FUNC_map_lookup_elem &&
8526                     !may_update_sockmap(env, func_id))
8527                         goto error;
8528                 break;
8529         case BPF_MAP_TYPE_REUSEPORT_SOCKARRAY:
8530                 if (func_id != BPF_FUNC_sk_select_reuseport)
8531                         goto error;
8532                 break;
8533         case BPF_MAP_TYPE_QUEUE:
8534         case BPF_MAP_TYPE_STACK:
8535                 if (func_id != BPF_FUNC_map_peek_elem &&
8536                     func_id != BPF_FUNC_map_pop_elem &&
8537                     func_id != BPF_FUNC_map_push_elem)
8538                         goto error;
8539                 break;
8540         case BPF_MAP_TYPE_SK_STORAGE:
8541                 if (func_id != BPF_FUNC_sk_storage_get &&
8542                     func_id != BPF_FUNC_sk_storage_delete &&
8543                     func_id != BPF_FUNC_kptr_xchg)
8544                         goto error;
8545                 break;
8546         case BPF_MAP_TYPE_INODE_STORAGE:
8547                 if (func_id != BPF_FUNC_inode_storage_get &&
8548                     func_id != BPF_FUNC_inode_storage_delete &&
8549                     func_id != BPF_FUNC_kptr_xchg)
8550                         goto error;
8551                 break;
8552         case BPF_MAP_TYPE_TASK_STORAGE:
8553                 if (func_id != BPF_FUNC_task_storage_get &&
8554                     func_id != BPF_FUNC_task_storage_delete &&
8555                     func_id != BPF_FUNC_kptr_xchg)
8556                         goto error;
8557                 break;
8558         case BPF_MAP_TYPE_CGRP_STORAGE:
8559                 if (func_id != BPF_FUNC_cgrp_storage_get &&
8560                     func_id != BPF_FUNC_cgrp_storage_delete &&
8561                     func_id != BPF_FUNC_kptr_xchg)
8562                         goto error;
8563                 break;
8564         case BPF_MAP_TYPE_BLOOM_FILTER:
8565                 if (func_id != BPF_FUNC_map_peek_elem &&
8566                     func_id != BPF_FUNC_map_push_elem)
8567                         goto error;
8568                 break;
8569         default:
8570                 break;
8571         }
8572
8573         /* ... and second from the function itself. */
8574         switch (func_id) {
8575         case BPF_FUNC_tail_call:
8576                 if (map->map_type != BPF_MAP_TYPE_PROG_ARRAY)
8577                         goto error;
8578                 if (env->subprog_cnt > 1 && !allow_tail_call_in_subprogs(env)) {
8579                         verbose(env, "tail_calls are not allowed in non-JITed programs with bpf-to-bpf calls\n");
8580                         return -EINVAL;
8581                 }
8582                 break;
8583         case BPF_FUNC_perf_event_read:
8584         case BPF_FUNC_perf_event_output:
8585         case BPF_FUNC_perf_event_read_value:
8586         case BPF_FUNC_skb_output:
8587         case BPF_FUNC_xdp_output:
8588                 if (map->map_type != BPF_MAP_TYPE_PERF_EVENT_ARRAY)
8589                         goto error;
8590                 break;
8591         case BPF_FUNC_ringbuf_output:
8592         case BPF_FUNC_ringbuf_reserve:
8593         case BPF_FUNC_ringbuf_query:
8594         case BPF_FUNC_ringbuf_reserve_dynptr:
8595         case BPF_FUNC_ringbuf_submit_dynptr:
8596         case BPF_FUNC_ringbuf_discard_dynptr:
8597                 if (map->map_type != BPF_MAP_TYPE_RINGBUF)
8598                         goto error;
8599                 break;
8600         case BPF_FUNC_user_ringbuf_drain:
8601                 if (map->map_type != BPF_MAP_TYPE_USER_RINGBUF)
8602                         goto error;
8603                 break;
8604         case BPF_FUNC_get_stackid:
8605                 if (map->map_type != BPF_MAP_TYPE_STACK_TRACE)
8606                         goto error;
8607                 break;
8608         case BPF_FUNC_current_task_under_cgroup:
8609         case BPF_FUNC_skb_under_cgroup:
8610                 if (map->map_type != BPF_MAP_TYPE_CGROUP_ARRAY)
8611                         goto error;
8612                 break;
8613         case BPF_FUNC_redirect_map:
8614                 if (map->map_type != BPF_MAP_TYPE_DEVMAP &&
8615                     map->map_type != BPF_MAP_TYPE_DEVMAP_HASH &&
8616                     map->map_type != BPF_MAP_TYPE_CPUMAP &&
8617                     map->map_type != BPF_MAP_TYPE_XSKMAP)
8618                         goto error;
8619                 break;
8620         case BPF_FUNC_sk_redirect_map:
8621         case BPF_FUNC_msg_redirect_map:
8622         case BPF_FUNC_sock_map_update:
8623                 if (map->map_type != BPF_MAP_TYPE_SOCKMAP)
8624                         goto error;
8625                 break;
8626         case BPF_FUNC_sk_redirect_hash:
8627         case BPF_FUNC_msg_redirect_hash:
8628         case BPF_FUNC_sock_hash_update:
8629                 if (map->map_type != BPF_MAP_TYPE_SOCKHASH)
8630                         goto error;
8631                 break;
8632         case BPF_FUNC_get_local_storage:
8633                 if (map->map_type != BPF_MAP_TYPE_CGROUP_STORAGE &&
8634                     map->map_type != BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE)
8635                         goto error;
8636                 break;
8637         case BPF_FUNC_sk_select_reuseport:
8638                 if (map->map_type != BPF_MAP_TYPE_REUSEPORT_SOCKARRAY &&
8639                     map->map_type != BPF_MAP_TYPE_SOCKMAP &&
8640                     map->map_type != BPF_MAP_TYPE_SOCKHASH)
8641                         goto error;
8642                 break;
8643         case BPF_FUNC_map_pop_elem:
8644                 if (map->map_type != BPF_MAP_TYPE_QUEUE &&
8645                     map->map_type != BPF_MAP_TYPE_STACK)
8646                         goto error;
8647                 break;
8648         case BPF_FUNC_map_peek_elem:
8649         case BPF_FUNC_map_push_elem:
8650                 if (map->map_type != BPF_MAP_TYPE_QUEUE &&
8651                     map->map_type != BPF_MAP_TYPE_STACK &&
8652                     map->map_type != BPF_MAP_TYPE_BLOOM_FILTER)
8653                         goto error;
8654                 break;
8655         case BPF_FUNC_map_lookup_percpu_elem:
8656                 if (map->map_type != BPF_MAP_TYPE_PERCPU_ARRAY &&
8657                     map->map_type != BPF_MAP_TYPE_PERCPU_HASH &&
8658                     map->map_type != BPF_MAP_TYPE_LRU_PERCPU_HASH)
8659                         goto error;
8660                 break;
8661         case BPF_FUNC_sk_storage_get:
8662         case BPF_FUNC_sk_storage_delete:
8663                 if (map->map_type != BPF_MAP_TYPE_SK_STORAGE)
8664                         goto error;
8665                 break;
8666         case BPF_FUNC_inode_storage_get:
8667         case BPF_FUNC_inode_storage_delete:
8668                 if (map->map_type != BPF_MAP_TYPE_INODE_STORAGE)
8669                         goto error;
8670                 break;
8671         case BPF_FUNC_task_storage_get:
8672         case BPF_FUNC_task_storage_delete:
8673                 if (map->map_type != BPF_MAP_TYPE_TASK_STORAGE)
8674                         goto error;
8675                 break;
8676         case BPF_FUNC_cgrp_storage_get:
8677         case BPF_FUNC_cgrp_storage_delete:
8678                 if (map->map_type != BPF_MAP_TYPE_CGRP_STORAGE)
8679                         goto error;
8680                 break;
8681         default:
8682                 break;
8683         }
8684
8685         return 0;
8686 error:
8687         verbose(env, "cannot pass map_type %d into func %s#%d\n",
8688                 map->map_type, func_id_name(func_id), func_id);
8689         return -EINVAL;
8690 }
8691
8692 static bool check_raw_mode_ok(const struct bpf_func_proto *fn)
8693 {
8694         int count = 0;
8695
8696         if (fn->arg1_type == ARG_PTR_TO_UNINIT_MEM)
8697                 count++;
8698         if (fn->arg2_type == ARG_PTR_TO_UNINIT_MEM)
8699                 count++;
8700         if (fn->arg3_type == ARG_PTR_TO_UNINIT_MEM)
8701                 count++;
8702         if (fn->arg4_type == ARG_PTR_TO_UNINIT_MEM)
8703                 count++;
8704         if (fn->arg5_type == ARG_PTR_TO_UNINIT_MEM)
8705                 count++;
8706
8707         /* We only support one arg being in raw mode at the moment,
8708          * which is sufficient for the helper functions we have
8709          * right now.
8710          */
8711         return count <= 1;
8712 }
8713
8714 static bool check_args_pair_invalid(const struct bpf_func_proto *fn, int arg)
8715 {
8716         bool is_fixed = fn->arg_type[arg] & MEM_FIXED_SIZE;
8717         bool has_size = fn->arg_size[arg] != 0;
8718         bool is_next_size = false;
8719
8720         if (arg + 1 < ARRAY_SIZE(fn->arg_type))
8721                 is_next_size = arg_type_is_mem_size(fn->arg_type[arg + 1]);
8722
8723         if (base_type(fn->arg_type[arg]) != ARG_PTR_TO_MEM)
8724                 return is_next_size;
8725
8726         return has_size == is_next_size || is_next_size == is_fixed;
8727 }
8728
8729 static bool check_arg_pair_ok(const struct bpf_func_proto *fn)
8730 {
8731         /* bpf_xxx(..., buf, len) call will access 'len'
8732          * bytes from memory 'buf'. Both arg types need
8733          * to be paired, so make sure there's no buggy
8734          * helper function specification.
8735          */
8736         if (arg_type_is_mem_size(fn->arg1_type) ||
8737             check_args_pair_invalid(fn, 0) ||
8738             check_args_pair_invalid(fn, 1) ||
8739             check_args_pair_invalid(fn, 2) ||
8740             check_args_pair_invalid(fn, 3) ||
8741             check_args_pair_invalid(fn, 4))
8742                 return false;
8743
8744         return true;
8745 }
8746
8747 static bool check_btf_id_ok(const struct bpf_func_proto *fn)
8748 {
8749         int i;
8750
8751         for (i = 0; i < ARRAY_SIZE(fn->arg_type); i++) {
8752                 if (base_type(fn->arg_type[i]) == ARG_PTR_TO_BTF_ID)
8753                         return !!fn->arg_btf_id[i];
8754                 if (base_type(fn->arg_type[i]) == ARG_PTR_TO_SPIN_LOCK)
8755                         return fn->arg_btf_id[i] == BPF_PTR_POISON;
8756                 if (base_type(fn->arg_type[i]) != ARG_PTR_TO_BTF_ID && fn->arg_btf_id[i] &&
8757                     /* arg_btf_id and arg_size are in a union. */
8758                     (base_type(fn->arg_type[i]) != ARG_PTR_TO_MEM ||
8759                      !(fn->arg_type[i] & MEM_FIXED_SIZE)))
8760                         return false;
8761         }
8762
8763         return true;
8764 }
8765
8766 static int check_func_proto(const struct bpf_func_proto *fn, int func_id)
8767 {
8768         return check_raw_mode_ok(fn) &&
8769                check_arg_pair_ok(fn) &&
8770                check_btf_id_ok(fn) ? 0 : -EINVAL;
8771 }
8772
8773 /* Packet data might have moved, any old PTR_TO_PACKET[_META,_END]
8774  * are now invalid, so turn them into unknown SCALAR_VALUE.
8775  *
8776  * This also applies to dynptr slices belonging to skb and xdp dynptrs,
8777  * since these slices point to packet data.
8778  */
8779 static void clear_all_pkt_pointers(struct bpf_verifier_env *env)
8780 {
8781         struct bpf_func_state *state;
8782         struct bpf_reg_state *reg;
8783
8784         bpf_for_each_reg_in_vstate(env->cur_state, state, reg, ({
8785                 if (reg_is_pkt_pointer_any(reg) || reg_is_dynptr_slice_pkt(reg))
8786                         mark_reg_invalid(env, reg);
8787         }));
8788 }
8789
8790 enum {
8791         AT_PKT_END = -1,
8792         BEYOND_PKT_END = -2,
8793 };
8794
8795 static void mark_pkt_end(struct bpf_verifier_state *vstate, int regn, bool range_open)
8796 {
8797         struct bpf_func_state *state = vstate->frame[vstate->curframe];
8798         struct bpf_reg_state *reg = &state->regs[regn];
8799
8800         if (reg->type != PTR_TO_PACKET)
8801                 /* PTR_TO_PACKET_META is not supported yet */
8802                 return;
8803
8804         /* The 'reg' is pkt > pkt_end or pkt >= pkt_end.
8805          * How far beyond pkt_end it goes is unknown.
8806          * if (!range_open) it's the case of pkt >= pkt_end
8807          * if (range_open) it's the case of pkt > pkt_end
8808          * hence this pointer is at least 1 byte bigger than pkt_end
8809          */
8810         if (range_open)
8811                 reg->range = BEYOND_PKT_END;
8812         else
8813                 reg->range = AT_PKT_END;
8814 }
8815
8816 /* The pointer with the specified id has released its reference to kernel
8817  * resources. Identify all copies of the same pointer and clear the reference.
8818  */
8819 static int release_reference(struct bpf_verifier_env *env,
8820                              int ref_obj_id)
8821 {
8822         struct bpf_func_state *state;
8823         struct bpf_reg_state *reg;
8824         int err;
8825
8826         err = release_reference_state(cur_func(env), ref_obj_id);
8827         if (err)
8828                 return err;
8829
8830         bpf_for_each_reg_in_vstate(env->cur_state, state, reg, ({
8831                 if (reg->ref_obj_id == ref_obj_id)
8832                         mark_reg_invalid(env, reg);
8833         }));
8834
8835         return 0;
8836 }
8837
8838 static void invalidate_non_owning_refs(struct bpf_verifier_env *env)
8839 {
8840         struct bpf_func_state *unused;
8841         struct bpf_reg_state *reg;
8842
8843         bpf_for_each_reg_in_vstate(env->cur_state, unused, reg, ({
8844                 if (type_is_non_owning_ref(reg->type))
8845                         mark_reg_invalid(env, reg);
8846         }));
8847 }
8848
8849 static void clear_caller_saved_regs(struct bpf_verifier_env *env,
8850                                     struct bpf_reg_state *regs)
8851 {
8852         int i;
8853
8854         /* after the call registers r0 - r5 were scratched */
8855         for (i = 0; i < CALLER_SAVED_REGS; i++) {
8856                 mark_reg_not_init(env, regs, caller_saved[i]);
8857                 check_reg_arg(env, caller_saved[i], DST_OP_NO_MARK);
8858         }
8859 }
8860
8861 typedef int (*set_callee_state_fn)(struct bpf_verifier_env *env,
8862                                    struct bpf_func_state *caller,
8863                                    struct bpf_func_state *callee,
8864                                    int insn_idx);
8865
8866 static int set_callee_state(struct bpf_verifier_env *env,
8867                             struct bpf_func_state *caller,
8868                             struct bpf_func_state *callee, int insn_idx);
8869
8870 static int __check_func_call(struct bpf_verifier_env *env, struct bpf_insn *insn,
8871                              int *insn_idx, int subprog,
8872                              set_callee_state_fn set_callee_state_cb)
8873 {
8874         struct bpf_verifier_state *state = env->cur_state;
8875         struct bpf_func_state *caller, *callee;
8876         int err;
8877
8878         if (state->curframe + 1 >= MAX_CALL_FRAMES) {
8879                 verbose(env, "the call stack of %d frames is too deep\n",
8880                         state->curframe + 2);
8881                 return -E2BIG;
8882         }
8883
8884         caller = state->frame[state->curframe];
8885         if (state->frame[state->curframe + 1]) {
8886                 verbose(env, "verifier bug. Frame %d already allocated\n",
8887                         state->curframe + 1);
8888                 return -EFAULT;
8889         }
8890
8891         err = btf_check_subprog_call(env, subprog, caller->regs);
8892         if (err == -EFAULT)
8893                 return err;
8894         if (subprog_is_global(env, subprog)) {
8895                 if (err) {
8896                         verbose(env, "Caller passes invalid args into func#%d\n",
8897                                 subprog);
8898                         return err;
8899                 } else {
8900                         if (env->log.level & BPF_LOG_LEVEL)
8901                                 verbose(env,
8902                                         "Func#%d is global and valid. Skipping.\n",
8903                                         subprog);
8904                         clear_caller_saved_regs(env, caller->regs);
8905
8906                         /* All global functions return a 64-bit SCALAR_VALUE */
8907                         mark_reg_unknown(env, caller->regs, BPF_REG_0);
8908                         caller->regs[BPF_REG_0].subreg_def = DEF_NOT_SUBREG;
8909
8910                         /* continue with next insn after call */
8911                         return 0;
8912                 }
8913         }
8914
8915         /* set_callee_state is used for direct subprog calls, but we are
8916          * interested in validating only BPF helpers that can call subprogs as
8917          * callbacks
8918          */
8919         if (set_callee_state_cb != set_callee_state) {
8920                 if (bpf_pseudo_kfunc_call(insn) &&
8921                     !is_callback_calling_kfunc(insn->imm)) {
8922                         verbose(env, "verifier bug: kfunc %s#%d not marked as callback-calling\n",
8923                                 func_id_name(insn->imm), insn->imm);
8924                         return -EFAULT;
8925                 } else if (!bpf_pseudo_kfunc_call(insn) &&
8926                            !is_callback_calling_function(insn->imm)) { /* helper */
8927                         verbose(env, "verifier bug: helper %s#%d not marked as callback-calling\n",
8928                                 func_id_name(insn->imm), insn->imm);
8929                         return -EFAULT;
8930                 }
8931         }
8932
8933         if (insn->code == (BPF_JMP | BPF_CALL) &&
8934             insn->src_reg == 0 &&
8935             insn->imm == BPF_FUNC_timer_set_callback) {
8936                 struct bpf_verifier_state *async_cb;
8937
8938                 /* there is no real recursion here. timer callbacks are async */
8939                 env->subprog_info[subprog].is_async_cb = true;
8940                 async_cb = push_async_cb(env, env->subprog_info[subprog].start,
8941                                          *insn_idx, subprog);
8942                 if (!async_cb)
8943                         return -EFAULT;
8944                 callee = async_cb->frame[0];
8945                 callee->async_entry_cnt = caller->async_entry_cnt + 1;
8946
8947                 /* Convert bpf_timer_set_callback() args into timer callback args */
8948                 err = set_callee_state_cb(env, caller, callee, *insn_idx);
8949                 if (err)
8950                         return err;
8951
8952                 clear_caller_saved_regs(env, caller->regs);
8953                 mark_reg_unknown(env, caller->regs, BPF_REG_0);
8954                 caller->regs[BPF_REG_0].subreg_def = DEF_NOT_SUBREG;
8955                 /* continue with next insn after call */
8956                 return 0;
8957         }
8958
8959         callee = kzalloc(sizeof(*callee), GFP_KERNEL);
8960         if (!callee)
8961                 return -ENOMEM;
8962         state->frame[state->curframe + 1] = callee;
8963
8964         /* callee cannot access r0, r6 - r9 for reading and has to write
8965          * into its own stack before reading from it.
8966          * callee can read/write into caller's stack
8967          */
8968         init_func_state(env, callee,
8969                         /* remember the callsite, it will be used by bpf_exit */
8970                         *insn_idx /* callsite */,
8971                         state->curframe + 1 /* frameno within this callchain */,
8972                         subprog /* subprog number within this prog */);
8973
8974         /* Transfer references to the callee */
8975         err = copy_reference_state(callee, caller);
8976         if (err)
8977                 goto err_out;
8978
8979         err = set_callee_state_cb(env, caller, callee, *insn_idx);
8980         if (err)
8981                 goto err_out;
8982
8983         clear_caller_saved_regs(env, caller->regs);
8984
8985         /* only increment it after check_reg_arg() finished */
8986         state->curframe++;
8987
8988         /* and go analyze first insn of the callee */
8989         *insn_idx = env->subprog_info[subprog].start - 1;
8990
8991         if (env->log.level & BPF_LOG_LEVEL) {
8992                 verbose(env, "caller:\n");
8993                 print_verifier_state(env, caller, true);
8994                 verbose(env, "callee:\n");
8995                 print_verifier_state(env, callee, true);
8996         }
8997         return 0;
8998
8999 err_out:
9000         free_func_state(callee);
9001         state->frame[state->curframe + 1] = NULL;
9002         return err;
9003 }
9004
9005 int map_set_for_each_callback_args(struct bpf_verifier_env *env,
9006                                    struct bpf_func_state *caller,
9007                                    struct bpf_func_state *callee)
9008 {
9009         /* bpf_for_each_map_elem(struct bpf_map *map, void *callback_fn,
9010          *      void *callback_ctx, u64 flags);
9011          * callback_fn(struct bpf_map *map, void *key, void *value,
9012          *      void *callback_ctx);
9013          */
9014         callee->regs[BPF_REG_1] = caller->regs[BPF_REG_1];
9015
9016         callee->regs[BPF_REG_2].type = PTR_TO_MAP_KEY;
9017         __mark_reg_known_zero(&callee->regs[BPF_REG_2]);
9018         callee->regs[BPF_REG_2].map_ptr = caller->regs[BPF_REG_1].map_ptr;
9019
9020         callee->regs[BPF_REG_3].type = PTR_TO_MAP_VALUE;
9021         __mark_reg_known_zero(&callee->regs[BPF_REG_3]);
9022         callee->regs[BPF_REG_3].map_ptr = caller->regs[BPF_REG_1].map_ptr;
9023
9024         /* pointer to stack or null */
9025         callee->regs[BPF_REG_4] = caller->regs[BPF_REG_3];
9026
9027         /* unused */
9028         __mark_reg_not_init(env, &callee->regs[BPF_REG_5]);
9029         return 0;
9030 }
9031
9032 static int set_callee_state(struct bpf_verifier_env *env,
9033                             struct bpf_func_state *caller,
9034                             struct bpf_func_state *callee, int insn_idx)
9035 {
9036         int i;
9037
9038         /* copy r1 - r5 args that callee can access.  The copy includes parent
9039          * pointers, which connects us up to the liveness chain
9040          */
9041         for (i = BPF_REG_1; i <= BPF_REG_5; i++)
9042                 callee->regs[i] = caller->regs[i];
9043         return 0;
9044 }
9045
9046 static int check_func_call(struct bpf_verifier_env *env, struct bpf_insn *insn,
9047                            int *insn_idx)
9048 {
9049         int subprog, target_insn;
9050
9051         target_insn = *insn_idx + insn->imm + 1;
9052         subprog = find_subprog(env, target_insn);
9053         if (subprog < 0) {
9054                 verbose(env, "verifier bug. No program starts at insn %d\n",
9055                         target_insn);
9056                 return -EFAULT;
9057         }
9058
9059         return __check_func_call(env, insn, insn_idx, subprog, set_callee_state);
9060 }
9061
9062 static int set_map_elem_callback_state(struct bpf_verifier_env *env,
9063                                        struct bpf_func_state *caller,
9064                                        struct bpf_func_state *callee,
9065                                        int insn_idx)
9066 {
9067         struct bpf_insn_aux_data *insn_aux = &env->insn_aux_data[insn_idx];
9068         struct bpf_map *map;
9069         int err;
9070
9071         if (bpf_map_ptr_poisoned(insn_aux)) {
9072                 verbose(env, "tail_call abusing map_ptr\n");
9073                 return -EINVAL;
9074         }
9075
9076         map = BPF_MAP_PTR(insn_aux->map_ptr_state);
9077         if (!map->ops->map_set_for_each_callback_args ||
9078             !map->ops->map_for_each_callback) {
9079                 verbose(env, "callback function not allowed for map\n");
9080                 return -ENOTSUPP;
9081         }
9082
9083         err = map->ops->map_set_for_each_callback_args(env, caller, callee);
9084         if (err)
9085                 return err;
9086
9087         callee->in_callback_fn = true;
9088         callee->callback_ret_range = tnum_range(0, 1);
9089         return 0;
9090 }
9091
9092 static int set_loop_callback_state(struct bpf_verifier_env *env,
9093                                    struct bpf_func_state *caller,
9094                                    struct bpf_func_state *callee,
9095                                    int insn_idx)
9096 {
9097         /* bpf_loop(u32 nr_loops, void *callback_fn, void *callback_ctx,
9098          *          u64 flags);
9099          * callback_fn(u32 index, void *callback_ctx);
9100          */
9101         callee->regs[BPF_REG_1].type = SCALAR_VALUE;
9102         callee->regs[BPF_REG_2] = caller->regs[BPF_REG_3];
9103
9104         /* unused */
9105         __mark_reg_not_init(env, &callee->regs[BPF_REG_3]);
9106         __mark_reg_not_init(env, &callee->regs[BPF_REG_4]);
9107         __mark_reg_not_init(env, &callee->regs[BPF_REG_5]);
9108
9109         callee->in_callback_fn = true;
9110         callee->callback_ret_range = tnum_range(0, 1);
9111         return 0;
9112 }
9113
9114 static int set_timer_callback_state(struct bpf_verifier_env *env,
9115                                     struct bpf_func_state *caller,
9116                                     struct bpf_func_state *callee,
9117                                     int insn_idx)
9118 {
9119         struct bpf_map *map_ptr = caller->regs[BPF_REG_1].map_ptr;
9120
9121         /* bpf_timer_set_callback(struct bpf_timer *timer, void *callback_fn);
9122          * callback_fn(struct bpf_map *map, void *key, void *value);
9123          */
9124         callee->regs[BPF_REG_1].type = CONST_PTR_TO_MAP;
9125         __mark_reg_known_zero(&callee->regs[BPF_REG_1]);
9126         callee->regs[BPF_REG_1].map_ptr = map_ptr;
9127
9128         callee->regs[BPF_REG_2].type = PTR_TO_MAP_KEY;
9129         __mark_reg_known_zero(&callee->regs[BPF_REG_2]);
9130         callee->regs[BPF_REG_2].map_ptr = map_ptr;
9131
9132         callee->regs[BPF_REG_3].type = PTR_TO_MAP_VALUE;
9133         __mark_reg_known_zero(&callee->regs[BPF_REG_3]);
9134         callee->regs[BPF_REG_3].map_ptr = map_ptr;
9135
9136         /* unused */
9137         __mark_reg_not_init(env, &callee->regs[BPF_REG_4]);
9138         __mark_reg_not_init(env, &callee->regs[BPF_REG_5]);
9139         callee->in_async_callback_fn = true;
9140         callee->callback_ret_range = tnum_range(0, 1);
9141         return 0;
9142 }
9143
9144 static int set_find_vma_callback_state(struct bpf_verifier_env *env,
9145                                        struct bpf_func_state *caller,
9146                                        struct bpf_func_state *callee,
9147                                        int insn_idx)
9148 {
9149         /* bpf_find_vma(struct task_struct *task, u64 addr,
9150          *               void *callback_fn, void *callback_ctx, u64 flags)
9151          * (callback_fn)(struct task_struct *task,
9152          *               struct vm_area_struct *vma, void *callback_ctx);
9153          */
9154         callee->regs[BPF_REG_1] = caller->regs[BPF_REG_1];
9155
9156         callee->regs[BPF_REG_2].type = PTR_TO_BTF_ID;
9157         __mark_reg_known_zero(&callee->regs[BPF_REG_2]);
9158         callee->regs[BPF_REG_2].btf =  btf_vmlinux;
9159         callee->regs[BPF_REG_2].btf_id = btf_tracing_ids[BTF_TRACING_TYPE_VMA],
9160
9161         /* pointer to stack or null */
9162         callee->regs[BPF_REG_3] = caller->regs[BPF_REG_4];
9163
9164         /* unused */
9165         __mark_reg_not_init(env, &callee->regs[BPF_REG_4]);
9166         __mark_reg_not_init(env, &callee->regs[BPF_REG_5]);
9167         callee->in_callback_fn = true;
9168         callee->callback_ret_range = tnum_range(0, 1);
9169         return 0;
9170 }
9171
9172 static int set_user_ringbuf_callback_state(struct bpf_verifier_env *env,
9173                                            struct bpf_func_state *caller,
9174                                            struct bpf_func_state *callee,
9175                                            int insn_idx)
9176 {
9177         /* bpf_user_ringbuf_drain(struct bpf_map *map, void *callback_fn, void
9178          *                        callback_ctx, u64 flags);
9179          * callback_fn(const struct bpf_dynptr_t* dynptr, void *callback_ctx);
9180          */
9181         __mark_reg_not_init(env, &callee->regs[BPF_REG_0]);
9182         mark_dynptr_cb_reg(env, &callee->regs[BPF_REG_1], BPF_DYNPTR_TYPE_LOCAL);
9183         callee->regs[BPF_REG_2] = caller->regs[BPF_REG_3];
9184
9185         /* unused */
9186         __mark_reg_not_init(env, &callee->regs[BPF_REG_3]);
9187         __mark_reg_not_init(env, &callee->regs[BPF_REG_4]);
9188         __mark_reg_not_init(env, &callee->regs[BPF_REG_5]);
9189
9190         callee->in_callback_fn = true;
9191         callee->callback_ret_range = tnum_range(0, 1);
9192         return 0;
9193 }
9194
9195 static int set_rbtree_add_callback_state(struct bpf_verifier_env *env,
9196                                          struct bpf_func_state *caller,
9197                                          struct bpf_func_state *callee,
9198                                          int insn_idx)
9199 {
9200         /* void bpf_rbtree_add_impl(struct bpf_rb_root *root, struct bpf_rb_node *node,
9201          *                     bool (less)(struct bpf_rb_node *a, const struct bpf_rb_node *b));
9202          *
9203          * 'struct bpf_rb_node *node' arg to bpf_rbtree_add_impl is the same PTR_TO_BTF_ID w/ offset
9204          * that 'less' callback args will be receiving. However, 'node' arg was release_reference'd
9205          * by this point, so look at 'root'
9206          */
9207         struct btf_field *field;
9208
9209         field = reg_find_field_offset(&caller->regs[BPF_REG_1], caller->regs[BPF_REG_1].off,
9210                                       BPF_RB_ROOT);
9211         if (!field || !field->graph_root.value_btf_id)
9212                 return -EFAULT;
9213
9214         mark_reg_graph_node(callee->regs, BPF_REG_1, &field->graph_root);
9215         ref_set_non_owning(env, &callee->regs[BPF_REG_1]);
9216         mark_reg_graph_node(callee->regs, BPF_REG_2, &field->graph_root);
9217         ref_set_non_owning(env, &callee->regs[BPF_REG_2]);
9218
9219         __mark_reg_not_init(env, &callee->regs[BPF_REG_3]);
9220         __mark_reg_not_init(env, &callee->regs[BPF_REG_4]);
9221         __mark_reg_not_init(env, &callee->regs[BPF_REG_5]);
9222         callee->in_callback_fn = true;
9223         callee->callback_ret_range = tnum_range(0, 1);
9224         return 0;
9225 }
9226
9227 static bool is_rbtree_lock_required_kfunc(u32 btf_id);
9228
9229 /* Are we currently verifying the callback for a rbtree helper that must
9230  * be called with lock held? If so, no need to complain about unreleased
9231  * lock
9232  */
9233 static bool in_rbtree_lock_required_cb(struct bpf_verifier_env *env)
9234 {
9235         struct bpf_verifier_state *state = env->cur_state;
9236         struct bpf_insn *insn = env->prog->insnsi;
9237         struct bpf_func_state *callee;
9238         int kfunc_btf_id;
9239
9240         if (!state->curframe)
9241                 return false;
9242
9243         callee = state->frame[state->curframe];
9244
9245         if (!callee->in_callback_fn)
9246                 return false;
9247
9248         kfunc_btf_id = insn[callee->callsite].imm;
9249         return is_rbtree_lock_required_kfunc(kfunc_btf_id);
9250 }
9251
9252 static int prepare_func_exit(struct bpf_verifier_env *env, int *insn_idx)
9253 {
9254         struct bpf_verifier_state *state = env->cur_state;
9255         struct bpf_func_state *caller, *callee;
9256         struct bpf_reg_state *r0;
9257         int err;
9258
9259         callee = state->frame[state->curframe];
9260         r0 = &callee->regs[BPF_REG_0];
9261         if (r0->type == PTR_TO_STACK) {
9262                 /* technically it's ok to return caller's stack pointer
9263                  * (or caller's caller's pointer) back to the caller,
9264                  * since these pointers are valid. Only current stack
9265                  * pointer will be invalid as soon as function exits,
9266                  * but let's be conservative
9267                  */
9268                 verbose(env, "cannot return stack pointer to the caller\n");
9269                 return -EINVAL;
9270         }
9271
9272         caller = state->frame[state->curframe - 1];
9273         if (callee->in_callback_fn) {
9274                 /* enforce R0 return value range [0, 1]. */
9275                 struct tnum range = callee->callback_ret_range;
9276
9277                 if (r0->type != SCALAR_VALUE) {
9278                         verbose(env, "R0 not a scalar value\n");
9279                         return -EACCES;
9280                 }
9281
9282                 /* we are going to rely on register's precise value */
9283                 err = mark_reg_read(env, r0, r0->parent, REG_LIVE_READ64);
9284                 err = err ?: mark_chain_precision(env, BPF_REG_0);
9285                 if (err)
9286                         return err;
9287
9288                 if (!tnum_in(range, r0->var_off)) {
9289                         verbose_invalid_scalar(env, r0, &range, "callback return", "R0");
9290                         return -EINVAL;
9291                 }
9292         } else {
9293                 /* return to the caller whatever r0 had in the callee */
9294                 caller->regs[BPF_REG_0] = *r0;
9295         }
9296
9297         /* callback_fn frame should have released its own additions to parent's
9298          * reference state at this point, or check_reference_leak would
9299          * complain, hence it must be the same as the caller. There is no need
9300          * to copy it back.
9301          */
9302         if (!callee->in_callback_fn) {
9303                 /* Transfer references to the caller */
9304                 err = copy_reference_state(caller, callee);
9305                 if (err)
9306                         return err;
9307         }
9308
9309         *insn_idx = callee->callsite + 1;
9310         if (env->log.level & BPF_LOG_LEVEL) {
9311                 verbose(env, "returning from callee:\n");
9312                 print_verifier_state(env, callee, true);
9313                 verbose(env, "to caller at %d:\n", *insn_idx);
9314                 print_verifier_state(env, caller, true);
9315         }
9316         /* clear everything in the callee */
9317         free_func_state(callee);
9318         state->frame[state->curframe--] = NULL;
9319         return 0;
9320 }
9321
9322 static void do_refine_retval_range(struct bpf_reg_state *regs, int ret_type,
9323                                    int func_id,
9324                                    struct bpf_call_arg_meta *meta)
9325 {
9326         struct bpf_reg_state *ret_reg = &regs[BPF_REG_0];
9327
9328         if (ret_type != RET_INTEGER)
9329                 return;
9330
9331         switch (func_id) {
9332         case BPF_FUNC_get_stack:
9333         case BPF_FUNC_get_task_stack:
9334         case BPF_FUNC_probe_read_str:
9335         case BPF_FUNC_probe_read_kernel_str:
9336         case BPF_FUNC_probe_read_user_str:
9337                 ret_reg->smax_value = meta->msize_max_value;
9338                 ret_reg->s32_max_value = meta->msize_max_value;
9339                 ret_reg->smin_value = -MAX_ERRNO;
9340                 ret_reg->s32_min_value = -MAX_ERRNO;
9341                 reg_bounds_sync(ret_reg);
9342                 break;
9343         case BPF_FUNC_get_smp_processor_id:
9344                 ret_reg->umax_value = nr_cpu_ids - 1;
9345                 ret_reg->u32_max_value = nr_cpu_ids - 1;
9346                 ret_reg->smax_value = nr_cpu_ids - 1;
9347                 ret_reg->s32_max_value = nr_cpu_ids - 1;
9348                 ret_reg->umin_value = 0;
9349                 ret_reg->u32_min_value = 0;
9350                 ret_reg->smin_value = 0;
9351                 ret_reg->s32_min_value = 0;
9352                 reg_bounds_sync(ret_reg);
9353                 break;
9354         }
9355 }
9356
9357 static int
9358 record_func_map(struct bpf_verifier_env *env, struct bpf_call_arg_meta *meta,
9359                 int func_id, int insn_idx)
9360 {
9361         struct bpf_insn_aux_data *aux = &env->insn_aux_data[insn_idx];
9362         struct bpf_map *map = meta->map_ptr;
9363
9364         if (func_id != BPF_FUNC_tail_call &&
9365             func_id != BPF_FUNC_map_lookup_elem &&
9366             func_id != BPF_FUNC_map_update_elem &&
9367             func_id != BPF_FUNC_map_delete_elem &&
9368             func_id != BPF_FUNC_map_push_elem &&
9369             func_id != BPF_FUNC_map_pop_elem &&
9370             func_id != BPF_FUNC_map_peek_elem &&
9371             func_id != BPF_FUNC_for_each_map_elem &&
9372             func_id != BPF_FUNC_redirect_map &&
9373             func_id != BPF_FUNC_map_lookup_percpu_elem)
9374                 return 0;
9375
9376         if (map == NULL) {
9377                 verbose(env, "kernel subsystem misconfigured verifier\n");
9378                 return -EINVAL;
9379         }
9380
9381         /* In case of read-only, some additional restrictions
9382          * need to be applied in order to prevent altering the
9383          * state of the map from program side.
9384          */
9385         if ((map->map_flags & BPF_F_RDONLY_PROG) &&
9386             (func_id == BPF_FUNC_map_delete_elem ||
9387              func_id == BPF_FUNC_map_update_elem ||
9388              func_id == BPF_FUNC_map_push_elem ||
9389              func_id == BPF_FUNC_map_pop_elem)) {
9390                 verbose(env, "write into map forbidden\n");
9391                 return -EACCES;
9392         }
9393
9394         if (!BPF_MAP_PTR(aux->map_ptr_state))
9395                 bpf_map_ptr_store(aux, meta->map_ptr,
9396                                   !meta->map_ptr->bypass_spec_v1);
9397         else if (BPF_MAP_PTR(aux->map_ptr_state) != meta->map_ptr)
9398                 bpf_map_ptr_store(aux, BPF_MAP_PTR_POISON,
9399                                   !meta->map_ptr->bypass_spec_v1);
9400         return 0;
9401 }
9402
9403 static int
9404 record_func_key(struct bpf_verifier_env *env, struct bpf_call_arg_meta *meta,
9405                 int func_id, int insn_idx)
9406 {
9407         struct bpf_insn_aux_data *aux = &env->insn_aux_data[insn_idx];
9408         struct bpf_reg_state *regs = cur_regs(env), *reg;
9409         struct bpf_map *map = meta->map_ptr;
9410         u64 val, max;
9411         int err;
9412
9413         if (func_id != BPF_FUNC_tail_call)
9414                 return 0;
9415         if (!map || map->map_type != BPF_MAP_TYPE_PROG_ARRAY) {
9416                 verbose(env, "kernel subsystem misconfigured verifier\n");
9417                 return -EINVAL;
9418         }
9419
9420         reg = &regs[BPF_REG_3];
9421         val = reg->var_off.value;
9422         max = map->max_entries;
9423
9424         if (!(register_is_const(reg) && val < max)) {
9425                 bpf_map_key_store(aux, BPF_MAP_KEY_POISON);
9426                 return 0;
9427         }
9428
9429         err = mark_chain_precision(env, BPF_REG_3);
9430         if (err)
9431                 return err;
9432         if (bpf_map_key_unseen(aux))
9433                 bpf_map_key_store(aux, val);
9434         else if (!bpf_map_key_poisoned(aux) &&
9435                   bpf_map_key_immediate(aux) != val)
9436                 bpf_map_key_store(aux, BPF_MAP_KEY_POISON);
9437         return 0;
9438 }
9439
9440 static int check_reference_leak(struct bpf_verifier_env *env)
9441 {
9442         struct bpf_func_state *state = cur_func(env);
9443         bool refs_lingering = false;
9444         int i;
9445
9446         if (state->frameno && !state->in_callback_fn)
9447                 return 0;
9448
9449         for (i = 0; i < state->acquired_refs; i++) {
9450                 if (state->in_callback_fn && state->refs[i].callback_ref != state->frameno)
9451                         continue;
9452                 verbose(env, "Unreleased reference id=%d alloc_insn=%d\n",
9453                         state->refs[i].id, state->refs[i].insn_idx);
9454                 refs_lingering = true;
9455         }
9456         return refs_lingering ? -EINVAL : 0;
9457 }
9458
9459 static int check_bpf_snprintf_call(struct bpf_verifier_env *env,
9460                                    struct bpf_reg_state *regs)
9461 {
9462         struct bpf_reg_state *fmt_reg = &regs[BPF_REG_3];
9463         struct bpf_reg_state *data_len_reg = &regs[BPF_REG_5];
9464         struct bpf_map *fmt_map = fmt_reg->map_ptr;
9465         struct bpf_bprintf_data data = {};
9466         int err, fmt_map_off, num_args;
9467         u64 fmt_addr;
9468         char *fmt;
9469
9470         /* data must be an array of u64 */
9471         if (data_len_reg->var_off.value % 8)
9472                 return -EINVAL;
9473         num_args = data_len_reg->var_off.value / 8;
9474
9475         /* fmt being ARG_PTR_TO_CONST_STR guarantees that var_off is const
9476          * and map_direct_value_addr is set.
9477          */
9478         fmt_map_off = fmt_reg->off + fmt_reg->var_off.value;
9479         err = fmt_map->ops->map_direct_value_addr(fmt_map, &fmt_addr,
9480                                                   fmt_map_off);
9481         if (err) {
9482                 verbose(env, "verifier bug\n");
9483                 return -EFAULT;
9484         }
9485         fmt = (char *)(long)fmt_addr + fmt_map_off;
9486
9487         /* We are also guaranteed that fmt+fmt_map_off is NULL terminated, we
9488          * can focus on validating the format specifiers.
9489          */
9490         err = bpf_bprintf_prepare(fmt, UINT_MAX, NULL, num_args, &data);
9491         if (err < 0)
9492                 verbose(env, "Invalid format string\n");
9493
9494         return err;
9495 }
9496
9497 static int check_get_func_ip(struct bpf_verifier_env *env)
9498 {
9499         enum bpf_prog_type type = resolve_prog_type(env->prog);
9500         int func_id = BPF_FUNC_get_func_ip;
9501
9502         if (type == BPF_PROG_TYPE_TRACING) {
9503                 if (!bpf_prog_has_trampoline(env->prog)) {
9504                         verbose(env, "func %s#%d supported only for fentry/fexit/fmod_ret programs\n",
9505                                 func_id_name(func_id), func_id);
9506                         return -ENOTSUPP;
9507                 }
9508                 return 0;
9509         } else if (type == BPF_PROG_TYPE_KPROBE) {
9510                 return 0;
9511         }
9512
9513         verbose(env, "func %s#%d not supported for program type %d\n",
9514                 func_id_name(func_id), func_id, type);
9515         return -ENOTSUPP;
9516 }
9517
9518 static struct bpf_insn_aux_data *cur_aux(struct bpf_verifier_env *env)
9519 {
9520         return &env->insn_aux_data[env->insn_idx];
9521 }
9522
9523 static bool loop_flag_is_zero(struct bpf_verifier_env *env)
9524 {
9525         struct bpf_reg_state *regs = cur_regs(env);
9526         struct bpf_reg_state *reg = &regs[BPF_REG_4];
9527         bool reg_is_null = register_is_null(reg);
9528
9529         if (reg_is_null)
9530                 mark_chain_precision(env, BPF_REG_4);
9531
9532         return reg_is_null;
9533 }
9534
9535 static void update_loop_inline_state(struct bpf_verifier_env *env, u32 subprogno)
9536 {
9537         struct bpf_loop_inline_state *state = &cur_aux(env)->loop_inline_state;
9538
9539         if (!state->initialized) {
9540                 state->initialized = 1;
9541                 state->fit_for_inline = loop_flag_is_zero(env);
9542                 state->callback_subprogno = subprogno;
9543                 return;
9544         }
9545
9546         if (!state->fit_for_inline)
9547                 return;
9548
9549         state->fit_for_inline = (loop_flag_is_zero(env) &&
9550                                  state->callback_subprogno == subprogno);
9551 }
9552
9553 static int check_helper_call(struct bpf_verifier_env *env, struct bpf_insn *insn,
9554                              int *insn_idx_p)
9555 {
9556         enum bpf_prog_type prog_type = resolve_prog_type(env->prog);
9557         const struct bpf_func_proto *fn = NULL;
9558         enum bpf_return_type ret_type;
9559         enum bpf_type_flag ret_flag;
9560         struct bpf_reg_state *regs;
9561         struct bpf_call_arg_meta meta;
9562         int insn_idx = *insn_idx_p;
9563         bool changes_data;
9564         int i, err, func_id;
9565
9566         /* find function prototype */
9567         func_id = insn->imm;
9568         if (func_id < 0 || func_id >= __BPF_FUNC_MAX_ID) {
9569                 verbose(env, "invalid func %s#%d\n", func_id_name(func_id),
9570                         func_id);
9571                 return -EINVAL;
9572         }
9573
9574         if (env->ops->get_func_proto)
9575                 fn = env->ops->get_func_proto(func_id, env->prog);
9576         if (!fn) {
9577                 verbose(env, "unknown func %s#%d\n", func_id_name(func_id),
9578                         func_id);
9579                 return -EINVAL;
9580         }
9581
9582         /* eBPF programs must be GPL compatible to use GPL-ed functions */
9583         if (!env->prog->gpl_compatible && fn->gpl_only) {
9584                 verbose(env, "cannot call GPL-restricted function from non-GPL compatible program\n");
9585                 return -EINVAL;
9586         }
9587
9588         if (fn->allowed && !fn->allowed(env->prog)) {
9589                 verbose(env, "helper call is not allowed in probe\n");
9590                 return -EINVAL;
9591         }
9592
9593         if (!env->prog->aux->sleepable && fn->might_sleep) {
9594                 verbose(env, "helper call might sleep in a non-sleepable prog\n");
9595                 return -EINVAL;
9596         }
9597
9598         /* With LD_ABS/IND some JITs save/restore skb from r1. */
9599         changes_data = bpf_helper_changes_pkt_data(fn->func);
9600         if (changes_data && fn->arg1_type != ARG_PTR_TO_CTX) {
9601                 verbose(env, "kernel subsystem misconfigured func %s#%d: r1 != ctx\n",
9602                         func_id_name(func_id), func_id);
9603                 return -EINVAL;
9604         }
9605
9606         memset(&meta, 0, sizeof(meta));
9607         meta.pkt_access = fn->pkt_access;
9608
9609         err = check_func_proto(fn, func_id);
9610         if (err) {
9611                 verbose(env, "kernel subsystem misconfigured func %s#%d\n",
9612                         func_id_name(func_id), func_id);
9613                 return err;
9614         }
9615
9616         if (env->cur_state->active_rcu_lock) {
9617                 if (fn->might_sleep) {
9618                         verbose(env, "sleepable helper %s#%d in rcu_read_lock region\n",
9619                                 func_id_name(func_id), func_id);
9620                         return -EINVAL;
9621                 }
9622
9623                 if (env->prog->aux->sleepable && is_storage_get_function(func_id))
9624                         env->insn_aux_data[insn_idx].storage_get_func_atomic = true;
9625         }
9626
9627         meta.func_id = func_id;
9628         /* check args */
9629         for (i = 0; i < MAX_BPF_FUNC_REG_ARGS; i++) {
9630                 err = check_func_arg(env, i, &meta, fn, insn_idx);
9631                 if (err)
9632                         return err;
9633         }
9634
9635         err = record_func_map(env, &meta, func_id, insn_idx);
9636         if (err)
9637                 return err;
9638
9639         err = record_func_key(env, &meta, func_id, insn_idx);
9640         if (err)
9641                 return err;
9642
9643         /* Mark slots with STACK_MISC in case of raw mode, stack offset
9644          * is inferred from register state.
9645          */
9646         for (i = 0; i < meta.access_size; i++) {
9647                 err = check_mem_access(env, insn_idx, meta.regno, i, BPF_B,
9648                                        BPF_WRITE, -1, false, false);
9649                 if (err)
9650                         return err;
9651         }
9652
9653         regs = cur_regs(env);
9654
9655         if (meta.release_regno) {
9656                 err = -EINVAL;
9657                 /* This can only be set for PTR_TO_STACK, as CONST_PTR_TO_DYNPTR cannot
9658                  * be released by any dynptr helper. Hence, unmark_stack_slots_dynptr
9659                  * is safe to do directly.
9660                  */
9661                 if (arg_type_is_dynptr(fn->arg_type[meta.release_regno - BPF_REG_1])) {
9662                         if (regs[meta.release_regno].type == CONST_PTR_TO_DYNPTR) {
9663                                 verbose(env, "verifier internal error: CONST_PTR_TO_DYNPTR cannot be released\n");
9664                                 return -EFAULT;
9665                         }
9666                         err = unmark_stack_slots_dynptr(env, &regs[meta.release_regno]);
9667                 } else if (meta.ref_obj_id) {
9668                         err = release_reference(env, meta.ref_obj_id);
9669                 } else if (register_is_null(&regs[meta.release_regno])) {
9670                         /* meta.ref_obj_id can only be 0 if register that is meant to be
9671                          * released is NULL, which must be > R0.
9672                          */
9673                         err = 0;
9674                 }
9675                 if (err) {
9676                         verbose(env, "func %s#%d reference has not been acquired before\n",
9677                                 func_id_name(func_id), func_id);
9678                         return err;
9679                 }
9680         }
9681
9682         switch (func_id) {
9683         case BPF_FUNC_tail_call:
9684                 err = check_reference_leak(env);
9685                 if (err) {
9686                         verbose(env, "tail_call would lead to reference leak\n");
9687                         return err;
9688                 }
9689                 break;
9690         case BPF_FUNC_get_local_storage:
9691                 /* check that flags argument in get_local_storage(map, flags) is 0,
9692                  * this is required because get_local_storage() can't return an error.
9693                  */
9694                 if (!register_is_null(&regs[BPF_REG_2])) {
9695                         verbose(env, "get_local_storage() doesn't support non-zero flags\n");
9696                         return -EINVAL;
9697                 }
9698                 break;
9699         case BPF_FUNC_for_each_map_elem:
9700                 err = __check_func_call(env, insn, insn_idx_p, meta.subprogno,
9701                                         set_map_elem_callback_state);
9702                 break;
9703         case BPF_FUNC_timer_set_callback:
9704                 err = __check_func_call(env, insn, insn_idx_p, meta.subprogno,
9705                                         set_timer_callback_state);
9706                 break;
9707         case BPF_FUNC_find_vma:
9708                 err = __check_func_call(env, insn, insn_idx_p, meta.subprogno,
9709                                         set_find_vma_callback_state);
9710                 break;
9711         case BPF_FUNC_snprintf:
9712                 err = check_bpf_snprintf_call(env, regs);
9713                 break;
9714         case BPF_FUNC_loop:
9715                 update_loop_inline_state(env, meta.subprogno);
9716                 err = __check_func_call(env, insn, insn_idx_p, meta.subprogno,
9717                                         set_loop_callback_state);
9718                 break;
9719         case BPF_FUNC_dynptr_from_mem:
9720                 if (regs[BPF_REG_1].type != PTR_TO_MAP_VALUE) {
9721                         verbose(env, "Unsupported reg type %s for bpf_dynptr_from_mem data\n",
9722                                 reg_type_str(env, regs[BPF_REG_1].type));
9723                         return -EACCES;
9724                 }
9725                 break;
9726         case BPF_FUNC_set_retval:
9727                 if (prog_type == BPF_PROG_TYPE_LSM &&
9728                     env->prog->expected_attach_type == BPF_LSM_CGROUP) {
9729                         if (!env->prog->aux->attach_func_proto->type) {
9730                                 /* Make sure programs that attach to void
9731                                  * hooks don't try to modify return value.
9732                                  */
9733                                 verbose(env, "BPF_LSM_CGROUP that attach to void LSM hooks can't modify return value!\n");
9734                                 return -EINVAL;
9735                         }
9736                 }
9737                 break;
9738         case BPF_FUNC_dynptr_data:
9739         {
9740                 struct bpf_reg_state *reg;
9741                 int id, ref_obj_id;
9742
9743                 reg = get_dynptr_arg_reg(env, fn, regs);
9744                 if (!reg)
9745                         return -EFAULT;
9746
9747
9748                 if (meta.dynptr_id) {
9749                         verbose(env, "verifier internal error: meta.dynptr_id already set\n");
9750                         return -EFAULT;
9751                 }
9752                 if (meta.ref_obj_id) {
9753                         verbose(env, "verifier internal error: meta.ref_obj_id already set\n");
9754                         return -EFAULT;
9755                 }
9756
9757                 id = dynptr_id(env, reg);
9758                 if (id < 0) {
9759                         verbose(env, "verifier internal error: failed to obtain dynptr id\n");
9760                         return id;
9761                 }
9762
9763                 ref_obj_id = dynptr_ref_obj_id(env, reg);
9764                 if (ref_obj_id < 0) {
9765                         verbose(env, "verifier internal error: failed to obtain dynptr ref_obj_id\n");
9766                         return ref_obj_id;
9767                 }
9768
9769                 meta.dynptr_id = id;
9770                 meta.ref_obj_id = ref_obj_id;
9771
9772                 break;
9773         }
9774         case BPF_FUNC_dynptr_write:
9775         {
9776                 enum bpf_dynptr_type dynptr_type;
9777                 struct bpf_reg_state *reg;
9778
9779                 reg = get_dynptr_arg_reg(env, fn, regs);
9780                 if (!reg)
9781                         return -EFAULT;
9782
9783                 dynptr_type = dynptr_get_type(env, reg);
9784                 if (dynptr_type == BPF_DYNPTR_TYPE_INVALID)
9785                         return -EFAULT;
9786
9787                 if (dynptr_type == BPF_DYNPTR_TYPE_SKB)
9788                         /* this will trigger clear_all_pkt_pointers(), which will
9789                          * invalidate all dynptr slices associated with the skb
9790                          */
9791                         changes_data = true;
9792
9793                 break;
9794         }
9795         case BPF_FUNC_user_ringbuf_drain:
9796                 err = __check_func_call(env, insn, insn_idx_p, meta.subprogno,
9797                                         set_user_ringbuf_callback_state);
9798                 break;
9799         }
9800
9801         if (err)
9802                 return err;
9803
9804         /* reset caller saved regs */
9805         for (i = 0; i < CALLER_SAVED_REGS; i++) {
9806                 mark_reg_not_init(env, regs, caller_saved[i]);
9807                 check_reg_arg(env, caller_saved[i], DST_OP_NO_MARK);
9808         }
9809
9810         /* helper call returns 64-bit value. */
9811         regs[BPF_REG_0].subreg_def = DEF_NOT_SUBREG;
9812
9813         /* update return register (already marked as written above) */
9814         ret_type = fn->ret_type;
9815         ret_flag = type_flag(ret_type);
9816
9817         switch (base_type(ret_type)) {
9818         case RET_INTEGER:
9819                 /* sets type to SCALAR_VALUE */
9820                 mark_reg_unknown(env, regs, BPF_REG_0);
9821                 break;
9822         case RET_VOID:
9823                 regs[BPF_REG_0].type = NOT_INIT;
9824                 break;
9825         case RET_PTR_TO_MAP_VALUE:
9826                 /* There is no offset yet applied, variable or fixed */
9827                 mark_reg_known_zero(env, regs, BPF_REG_0);
9828                 /* remember map_ptr, so that check_map_access()
9829                  * can check 'value_size' boundary of memory access
9830                  * to map element returned from bpf_map_lookup_elem()
9831                  */
9832                 if (meta.map_ptr == NULL) {
9833                         verbose(env,
9834                                 "kernel subsystem misconfigured verifier\n");
9835                         return -EINVAL;
9836                 }
9837                 regs[BPF_REG_0].map_ptr = meta.map_ptr;
9838                 regs[BPF_REG_0].map_uid = meta.map_uid;
9839                 regs[BPF_REG_0].type = PTR_TO_MAP_VALUE | ret_flag;
9840                 if (!type_may_be_null(ret_type) &&
9841                     btf_record_has_field(meta.map_ptr->record, BPF_SPIN_LOCK)) {
9842                         regs[BPF_REG_0].id = ++env->id_gen;
9843                 }
9844                 break;
9845         case RET_PTR_TO_SOCKET:
9846                 mark_reg_known_zero(env, regs, BPF_REG_0);
9847                 regs[BPF_REG_0].type = PTR_TO_SOCKET | ret_flag;
9848                 break;
9849         case RET_PTR_TO_SOCK_COMMON:
9850                 mark_reg_known_zero(env, regs, BPF_REG_0);
9851                 regs[BPF_REG_0].type = PTR_TO_SOCK_COMMON | ret_flag;
9852                 break;
9853         case RET_PTR_TO_TCP_SOCK:
9854                 mark_reg_known_zero(env, regs, BPF_REG_0);
9855                 regs[BPF_REG_0].type = PTR_TO_TCP_SOCK | ret_flag;
9856                 break;
9857         case RET_PTR_TO_MEM:
9858                 mark_reg_known_zero(env, regs, BPF_REG_0);
9859                 regs[BPF_REG_0].type = PTR_TO_MEM | ret_flag;
9860                 regs[BPF_REG_0].mem_size = meta.mem_size;
9861                 break;
9862         case RET_PTR_TO_MEM_OR_BTF_ID:
9863         {
9864                 const struct btf_type *t;
9865
9866                 mark_reg_known_zero(env, regs, BPF_REG_0);
9867                 t = btf_type_skip_modifiers(meta.ret_btf, meta.ret_btf_id, NULL);
9868                 if (!btf_type_is_struct(t)) {
9869                         u32 tsize;
9870                         const struct btf_type *ret;
9871                         const char *tname;
9872
9873                         /* resolve the type size of ksym. */
9874                         ret = btf_resolve_size(meta.ret_btf, t, &tsize);
9875                         if (IS_ERR(ret)) {
9876                                 tname = btf_name_by_offset(meta.ret_btf, t->name_off);
9877                                 verbose(env, "unable to resolve the size of type '%s': %ld\n",
9878                                         tname, PTR_ERR(ret));
9879                                 return -EINVAL;
9880                         }
9881                         regs[BPF_REG_0].type = PTR_TO_MEM | ret_flag;
9882                         regs[BPF_REG_0].mem_size = tsize;
9883                 } else {
9884                         /* MEM_RDONLY may be carried from ret_flag, but it
9885                          * doesn't apply on PTR_TO_BTF_ID. Fold it, otherwise
9886                          * it will confuse the check of PTR_TO_BTF_ID in
9887                          * check_mem_access().
9888                          */
9889                         ret_flag &= ~MEM_RDONLY;
9890
9891                         regs[BPF_REG_0].type = PTR_TO_BTF_ID | ret_flag;
9892                         regs[BPF_REG_0].btf = meta.ret_btf;
9893                         regs[BPF_REG_0].btf_id = meta.ret_btf_id;
9894                 }
9895                 break;
9896         }
9897         case RET_PTR_TO_BTF_ID:
9898         {
9899                 struct btf *ret_btf;
9900                 int ret_btf_id;
9901
9902                 mark_reg_known_zero(env, regs, BPF_REG_0);
9903                 regs[BPF_REG_0].type = PTR_TO_BTF_ID | ret_flag;
9904                 if (func_id == BPF_FUNC_kptr_xchg) {
9905                         ret_btf = meta.kptr_field->kptr.btf;
9906                         ret_btf_id = meta.kptr_field->kptr.btf_id;
9907                         if (!btf_is_kernel(ret_btf))
9908                                 regs[BPF_REG_0].type |= MEM_ALLOC;
9909                 } else {
9910                         if (fn->ret_btf_id == BPF_PTR_POISON) {
9911                                 verbose(env, "verifier internal error:");
9912                                 verbose(env, "func %s has non-overwritten BPF_PTR_POISON return type\n",
9913                                         func_id_name(func_id));
9914                                 return -EINVAL;
9915                         }
9916                         ret_btf = btf_vmlinux;
9917                         ret_btf_id = *fn->ret_btf_id;
9918                 }
9919                 if (ret_btf_id == 0) {
9920                         verbose(env, "invalid return type %u of func %s#%d\n",
9921                                 base_type(ret_type), func_id_name(func_id),
9922                                 func_id);
9923                         return -EINVAL;
9924                 }
9925                 regs[BPF_REG_0].btf = ret_btf;
9926                 regs[BPF_REG_0].btf_id = ret_btf_id;
9927                 break;
9928         }
9929         default:
9930                 verbose(env, "unknown return type %u of func %s#%d\n",
9931                         base_type(ret_type), func_id_name(func_id), func_id);
9932                 return -EINVAL;
9933         }
9934
9935         if (type_may_be_null(regs[BPF_REG_0].type))
9936                 regs[BPF_REG_0].id = ++env->id_gen;
9937
9938         if (helper_multiple_ref_obj_use(func_id, meta.map_ptr)) {
9939                 verbose(env, "verifier internal error: func %s#%d sets ref_obj_id more than once\n",
9940                         func_id_name(func_id), func_id);
9941                 return -EFAULT;
9942         }
9943
9944         if (is_dynptr_ref_function(func_id))
9945                 regs[BPF_REG_0].dynptr_id = meta.dynptr_id;
9946
9947         if (is_ptr_cast_function(func_id) || is_dynptr_ref_function(func_id)) {
9948                 /* For release_reference() */
9949                 regs[BPF_REG_0].ref_obj_id = meta.ref_obj_id;
9950         } else if (is_acquire_function(func_id, meta.map_ptr)) {
9951                 int id = acquire_reference_state(env, insn_idx);
9952
9953                 if (id < 0)
9954                         return id;
9955                 /* For mark_ptr_or_null_reg() */
9956                 regs[BPF_REG_0].id = id;
9957                 /* For release_reference() */
9958                 regs[BPF_REG_0].ref_obj_id = id;
9959         }
9960
9961         do_refine_retval_range(regs, fn->ret_type, func_id, &meta);
9962
9963         err = check_map_func_compatibility(env, meta.map_ptr, func_id);
9964         if (err)
9965                 return err;
9966
9967         if ((func_id == BPF_FUNC_get_stack ||
9968              func_id == BPF_FUNC_get_task_stack) &&
9969             !env->prog->has_callchain_buf) {
9970                 const char *err_str;
9971
9972 #ifdef CONFIG_PERF_EVENTS
9973                 err = get_callchain_buffers(sysctl_perf_event_max_stack);
9974                 err_str = "cannot get callchain buffer for func %s#%d\n";
9975 #else
9976                 err = -ENOTSUPP;
9977                 err_str = "func %s#%d not supported without CONFIG_PERF_EVENTS\n";
9978 #endif
9979                 if (err) {
9980                         verbose(env, err_str, func_id_name(func_id), func_id);
9981                         return err;
9982                 }
9983
9984                 env->prog->has_callchain_buf = true;
9985         }
9986
9987         if (func_id == BPF_FUNC_get_stackid || func_id == BPF_FUNC_get_stack)
9988                 env->prog->call_get_stack = true;
9989
9990         if (func_id == BPF_FUNC_get_func_ip) {
9991                 if (check_get_func_ip(env))
9992                         return -ENOTSUPP;
9993                 env->prog->call_get_func_ip = true;
9994         }
9995
9996         if (changes_data)
9997                 clear_all_pkt_pointers(env);
9998         return 0;
9999 }
10000
10001 /* mark_btf_func_reg_size() is used when the reg size is determined by
10002  * the BTF func_proto's return value size and argument.
10003  */
10004 static void mark_btf_func_reg_size(struct bpf_verifier_env *env, u32 regno,
10005                                    size_t reg_size)
10006 {
10007         struct bpf_reg_state *reg = &cur_regs(env)[regno];
10008
10009         if (regno == BPF_REG_0) {
10010                 /* Function return value */
10011                 reg->live |= REG_LIVE_WRITTEN;
10012                 reg->subreg_def = reg_size == sizeof(u64) ?
10013                         DEF_NOT_SUBREG : env->insn_idx + 1;
10014         } else {
10015                 /* Function argument */
10016                 if (reg_size == sizeof(u64)) {
10017                         mark_insn_zext(env, reg);
10018                         mark_reg_read(env, reg, reg->parent, REG_LIVE_READ64);
10019                 } else {
10020                         mark_reg_read(env, reg, reg->parent, REG_LIVE_READ32);
10021                 }
10022         }
10023 }
10024
10025 static bool is_kfunc_acquire(struct bpf_kfunc_call_arg_meta *meta)
10026 {
10027         return meta->kfunc_flags & KF_ACQUIRE;
10028 }
10029
10030 static bool is_kfunc_release(struct bpf_kfunc_call_arg_meta *meta)
10031 {
10032         return meta->kfunc_flags & KF_RELEASE;
10033 }
10034
10035 static bool is_kfunc_trusted_args(struct bpf_kfunc_call_arg_meta *meta)
10036 {
10037         return (meta->kfunc_flags & KF_TRUSTED_ARGS) || is_kfunc_release(meta);
10038 }
10039
10040 static bool is_kfunc_sleepable(struct bpf_kfunc_call_arg_meta *meta)
10041 {
10042         return meta->kfunc_flags & KF_SLEEPABLE;
10043 }
10044
10045 static bool is_kfunc_destructive(struct bpf_kfunc_call_arg_meta *meta)
10046 {
10047         return meta->kfunc_flags & KF_DESTRUCTIVE;
10048 }
10049
10050 static bool is_kfunc_rcu(struct bpf_kfunc_call_arg_meta *meta)
10051 {
10052         return meta->kfunc_flags & KF_RCU;
10053 }
10054
10055 static bool __kfunc_param_match_suffix(const struct btf *btf,
10056                                        const struct btf_param *arg,
10057                                        const char *suffix)
10058 {
10059         int suffix_len = strlen(suffix), len;
10060         const char *param_name;
10061
10062         /* In the future, this can be ported to use BTF tagging */
10063         param_name = btf_name_by_offset(btf, arg->name_off);
10064         if (str_is_empty(param_name))
10065                 return false;
10066         len = strlen(param_name);
10067         if (len < suffix_len)
10068                 return false;
10069         param_name += len - suffix_len;
10070         return !strncmp(param_name, suffix, suffix_len);
10071 }
10072
10073 static bool is_kfunc_arg_mem_size(const struct btf *btf,
10074                                   const struct btf_param *arg,
10075                                   const struct bpf_reg_state *reg)
10076 {
10077         const struct btf_type *t;
10078
10079         t = btf_type_skip_modifiers(btf, arg->type, NULL);
10080         if (!btf_type_is_scalar(t) || reg->type != SCALAR_VALUE)
10081                 return false;
10082
10083         return __kfunc_param_match_suffix(btf, arg, "__sz");
10084 }
10085
10086 static bool is_kfunc_arg_const_mem_size(const struct btf *btf,
10087                                         const struct btf_param *arg,
10088                                         const struct bpf_reg_state *reg)
10089 {
10090         const struct btf_type *t;
10091
10092         t = btf_type_skip_modifiers(btf, arg->type, NULL);
10093         if (!btf_type_is_scalar(t) || reg->type != SCALAR_VALUE)
10094                 return false;
10095
10096         return __kfunc_param_match_suffix(btf, arg, "__szk");
10097 }
10098
10099 static bool is_kfunc_arg_optional(const struct btf *btf, const struct btf_param *arg)
10100 {
10101         return __kfunc_param_match_suffix(btf, arg, "__opt");
10102 }
10103
10104 static bool is_kfunc_arg_constant(const struct btf *btf, const struct btf_param *arg)
10105 {
10106         return __kfunc_param_match_suffix(btf, arg, "__k");
10107 }
10108
10109 static bool is_kfunc_arg_ignore(const struct btf *btf, const struct btf_param *arg)
10110 {
10111         return __kfunc_param_match_suffix(btf, arg, "__ign");
10112 }
10113
10114 static bool is_kfunc_arg_alloc_obj(const struct btf *btf, const struct btf_param *arg)
10115 {
10116         return __kfunc_param_match_suffix(btf, arg, "__alloc");
10117 }
10118
10119 static bool is_kfunc_arg_uninit(const struct btf *btf, const struct btf_param *arg)
10120 {
10121         return __kfunc_param_match_suffix(btf, arg, "__uninit");
10122 }
10123
10124 static bool is_kfunc_arg_refcounted_kptr(const struct btf *btf, const struct btf_param *arg)
10125 {
10126         return __kfunc_param_match_suffix(btf, arg, "__refcounted_kptr");
10127 }
10128
10129 static bool is_kfunc_arg_scalar_with_name(const struct btf *btf,
10130                                           const struct btf_param *arg,
10131                                           const char *name)
10132 {
10133         int len, target_len = strlen(name);
10134         const char *param_name;
10135
10136         param_name = btf_name_by_offset(btf, arg->name_off);
10137         if (str_is_empty(param_name))
10138                 return false;
10139         len = strlen(param_name);
10140         if (len != target_len)
10141                 return false;
10142         if (strcmp(param_name, name))
10143                 return false;
10144
10145         return true;
10146 }
10147
10148 enum {
10149         KF_ARG_DYNPTR_ID,
10150         KF_ARG_LIST_HEAD_ID,
10151         KF_ARG_LIST_NODE_ID,
10152         KF_ARG_RB_ROOT_ID,
10153         KF_ARG_RB_NODE_ID,
10154 };
10155
10156 BTF_ID_LIST(kf_arg_btf_ids)
10157 BTF_ID(struct, bpf_dynptr_kern)
10158 BTF_ID(struct, bpf_list_head)
10159 BTF_ID(struct, bpf_list_node)
10160 BTF_ID(struct, bpf_rb_root)
10161 BTF_ID(struct, bpf_rb_node)
10162
10163 static bool __is_kfunc_ptr_arg_type(const struct btf *btf,
10164                                     const struct btf_param *arg, int type)
10165 {
10166         const struct btf_type *t;
10167         u32 res_id;
10168
10169         t = btf_type_skip_modifiers(btf, arg->type, NULL);
10170         if (!t)
10171                 return false;
10172         if (!btf_type_is_ptr(t))
10173                 return false;
10174         t = btf_type_skip_modifiers(btf, t->type, &res_id);
10175         if (!t)
10176                 return false;
10177         return btf_types_are_same(btf, res_id, btf_vmlinux, kf_arg_btf_ids[type]);
10178 }
10179
10180 static bool is_kfunc_arg_dynptr(const struct btf *btf, const struct btf_param *arg)
10181 {
10182         return __is_kfunc_ptr_arg_type(btf, arg, KF_ARG_DYNPTR_ID);
10183 }
10184
10185 static bool is_kfunc_arg_list_head(const struct btf *btf, const struct btf_param *arg)
10186 {
10187         return __is_kfunc_ptr_arg_type(btf, arg, KF_ARG_LIST_HEAD_ID);
10188 }
10189
10190 static bool is_kfunc_arg_list_node(const struct btf *btf, const struct btf_param *arg)
10191 {
10192         return __is_kfunc_ptr_arg_type(btf, arg, KF_ARG_LIST_NODE_ID);
10193 }
10194
10195 static bool is_kfunc_arg_rbtree_root(const struct btf *btf, const struct btf_param *arg)
10196 {
10197         return __is_kfunc_ptr_arg_type(btf, arg, KF_ARG_RB_ROOT_ID);
10198 }
10199
10200 static bool is_kfunc_arg_rbtree_node(const struct btf *btf, const struct btf_param *arg)
10201 {
10202         return __is_kfunc_ptr_arg_type(btf, arg, KF_ARG_RB_NODE_ID);
10203 }
10204
10205 static bool is_kfunc_arg_callback(struct bpf_verifier_env *env, const struct btf *btf,
10206                                   const struct btf_param *arg)
10207 {
10208         const struct btf_type *t;
10209
10210         t = btf_type_resolve_func_ptr(btf, arg->type, NULL);
10211         if (!t)
10212                 return false;
10213
10214         return true;
10215 }
10216
10217 /* Returns true if struct is composed of scalars, 4 levels of nesting allowed */
10218 static bool __btf_type_is_scalar_struct(struct bpf_verifier_env *env,
10219                                         const struct btf *btf,
10220                                         const struct btf_type *t, int rec)
10221 {
10222         const struct btf_type *member_type;
10223         const struct btf_member *member;
10224         u32 i;
10225
10226         if (!btf_type_is_struct(t))
10227                 return false;
10228
10229         for_each_member(i, t, member) {
10230                 const struct btf_array *array;
10231
10232                 member_type = btf_type_skip_modifiers(btf, member->type, NULL);
10233                 if (btf_type_is_struct(member_type)) {
10234                         if (rec >= 3) {
10235                                 verbose(env, "max struct nesting depth exceeded\n");
10236                                 return false;
10237                         }
10238                         if (!__btf_type_is_scalar_struct(env, btf, member_type, rec + 1))
10239                                 return false;
10240                         continue;
10241                 }
10242                 if (btf_type_is_array(member_type)) {
10243                         array = btf_array(member_type);
10244                         if (!array->nelems)
10245                                 return false;
10246                         member_type = btf_type_skip_modifiers(btf, array->type, NULL);
10247                         if (!btf_type_is_scalar(member_type))
10248                                 return false;
10249                         continue;
10250                 }
10251                 if (!btf_type_is_scalar(member_type))
10252                         return false;
10253         }
10254         return true;
10255 }
10256
10257 enum kfunc_ptr_arg_type {
10258         KF_ARG_PTR_TO_CTX,
10259         KF_ARG_PTR_TO_ALLOC_BTF_ID,    /* Allocated object */
10260         KF_ARG_PTR_TO_REFCOUNTED_KPTR, /* Refcounted local kptr */
10261         KF_ARG_PTR_TO_DYNPTR,
10262         KF_ARG_PTR_TO_ITER,
10263         KF_ARG_PTR_TO_LIST_HEAD,
10264         KF_ARG_PTR_TO_LIST_NODE,
10265         KF_ARG_PTR_TO_BTF_ID,          /* Also covers reg2btf_ids conversions */
10266         KF_ARG_PTR_TO_MEM,
10267         KF_ARG_PTR_TO_MEM_SIZE,        /* Size derived from next argument, skip it */
10268         KF_ARG_PTR_TO_CALLBACK,
10269         KF_ARG_PTR_TO_RB_ROOT,
10270         KF_ARG_PTR_TO_RB_NODE,
10271 };
10272
10273 enum special_kfunc_type {
10274         KF_bpf_obj_new_impl,
10275         KF_bpf_obj_drop_impl,
10276         KF_bpf_refcount_acquire_impl,
10277         KF_bpf_list_push_front_impl,
10278         KF_bpf_list_push_back_impl,
10279         KF_bpf_list_pop_front,
10280         KF_bpf_list_pop_back,
10281         KF_bpf_cast_to_kern_ctx,
10282         KF_bpf_rdonly_cast,
10283         KF_bpf_rcu_read_lock,
10284         KF_bpf_rcu_read_unlock,
10285         KF_bpf_rbtree_remove,
10286         KF_bpf_rbtree_add_impl,
10287         KF_bpf_rbtree_first,
10288         KF_bpf_dynptr_from_skb,
10289         KF_bpf_dynptr_from_xdp,
10290         KF_bpf_dynptr_slice,
10291         KF_bpf_dynptr_slice_rdwr,
10292         KF_bpf_dynptr_clone,
10293 };
10294
10295 BTF_SET_START(special_kfunc_set)
10296 BTF_ID(func, bpf_obj_new_impl)
10297 BTF_ID(func, bpf_obj_drop_impl)
10298 BTF_ID(func, bpf_refcount_acquire_impl)
10299 BTF_ID(func, bpf_list_push_front_impl)
10300 BTF_ID(func, bpf_list_push_back_impl)
10301 BTF_ID(func, bpf_list_pop_front)
10302 BTF_ID(func, bpf_list_pop_back)
10303 BTF_ID(func, bpf_cast_to_kern_ctx)
10304 BTF_ID(func, bpf_rdonly_cast)
10305 BTF_ID(func, bpf_rbtree_remove)
10306 BTF_ID(func, bpf_rbtree_add_impl)
10307 BTF_ID(func, bpf_rbtree_first)
10308 BTF_ID(func, bpf_dynptr_from_skb)
10309 BTF_ID(func, bpf_dynptr_from_xdp)
10310 BTF_ID(func, bpf_dynptr_slice)
10311 BTF_ID(func, bpf_dynptr_slice_rdwr)
10312 BTF_ID(func, bpf_dynptr_clone)
10313 BTF_SET_END(special_kfunc_set)
10314
10315 BTF_ID_LIST(special_kfunc_list)
10316 BTF_ID(func, bpf_obj_new_impl)
10317 BTF_ID(func, bpf_obj_drop_impl)
10318 BTF_ID(func, bpf_refcount_acquire_impl)
10319 BTF_ID(func, bpf_list_push_front_impl)
10320 BTF_ID(func, bpf_list_push_back_impl)
10321 BTF_ID(func, bpf_list_pop_front)
10322 BTF_ID(func, bpf_list_pop_back)
10323 BTF_ID(func, bpf_cast_to_kern_ctx)
10324 BTF_ID(func, bpf_rdonly_cast)
10325 BTF_ID(func, bpf_rcu_read_lock)
10326 BTF_ID(func, bpf_rcu_read_unlock)
10327 BTF_ID(func, bpf_rbtree_remove)
10328 BTF_ID(func, bpf_rbtree_add_impl)
10329 BTF_ID(func, bpf_rbtree_first)
10330 BTF_ID(func, bpf_dynptr_from_skb)
10331 BTF_ID(func, bpf_dynptr_from_xdp)
10332 BTF_ID(func, bpf_dynptr_slice)
10333 BTF_ID(func, bpf_dynptr_slice_rdwr)
10334 BTF_ID(func, bpf_dynptr_clone)
10335
10336 static bool is_kfunc_ret_null(struct bpf_kfunc_call_arg_meta *meta)
10337 {
10338         if (meta->func_id == special_kfunc_list[KF_bpf_refcount_acquire_impl] &&
10339             meta->arg_owning_ref) {
10340                 return false;
10341         }
10342
10343         return meta->kfunc_flags & KF_RET_NULL;
10344 }
10345
10346 static bool is_kfunc_bpf_rcu_read_lock(struct bpf_kfunc_call_arg_meta *meta)
10347 {
10348         return meta->func_id == special_kfunc_list[KF_bpf_rcu_read_lock];
10349 }
10350
10351 static bool is_kfunc_bpf_rcu_read_unlock(struct bpf_kfunc_call_arg_meta *meta)
10352 {
10353         return meta->func_id == special_kfunc_list[KF_bpf_rcu_read_unlock];
10354 }
10355
10356 static enum kfunc_ptr_arg_type
10357 get_kfunc_ptr_arg_type(struct bpf_verifier_env *env,
10358                        struct bpf_kfunc_call_arg_meta *meta,
10359                        const struct btf_type *t, const struct btf_type *ref_t,
10360                        const char *ref_tname, const struct btf_param *args,
10361                        int argno, int nargs)
10362 {
10363         u32 regno = argno + 1;
10364         struct bpf_reg_state *regs = cur_regs(env);
10365         struct bpf_reg_state *reg = &regs[regno];
10366         bool arg_mem_size = false;
10367
10368         if (meta->func_id == special_kfunc_list[KF_bpf_cast_to_kern_ctx])
10369                 return KF_ARG_PTR_TO_CTX;
10370
10371         /* In this function, we verify the kfunc's BTF as per the argument type,
10372          * leaving the rest of the verification with respect to the register
10373          * type to our caller. When a set of conditions hold in the BTF type of
10374          * arguments, we resolve it to a known kfunc_ptr_arg_type.
10375          */
10376         if (btf_get_prog_ctx_type(&env->log, meta->btf, t, resolve_prog_type(env->prog), argno))
10377                 return KF_ARG_PTR_TO_CTX;
10378
10379         if (is_kfunc_arg_alloc_obj(meta->btf, &args[argno]))
10380                 return KF_ARG_PTR_TO_ALLOC_BTF_ID;
10381
10382         if (is_kfunc_arg_refcounted_kptr(meta->btf, &args[argno]))
10383                 return KF_ARG_PTR_TO_REFCOUNTED_KPTR;
10384
10385         if (is_kfunc_arg_dynptr(meta->btf, &args[argno]))
10386                 return KF_ARG_PTR_TO_DYNPTR;
10387
10388         if (is_kfunc_arg_iter(meta, argno))
10389                 return KF_ARG_PTR_TO_ITER;
10390
10391         if (is_kfunc_arg_list_head(meta->btf, &args[argno]))
10392                 return KF_ARG_PTR_TO_LIST_HEAD;
10393
10394         if (is_kfunc_arg_list_node(meta->btf, &args[argno]))
10395                 return KF_ARG_PTR_TO_LIST_NODE;
10396
10397         if (is_kfunc_arg_rbtree_root(meta->btf, &args[argno]))
10398                 return KF_ARG_PTR_TO_RB_ROOT;
10399
10400         if (is_kfunc_arg_rbtree_node(meta->btf, &args[argno]))
10401                 return KF_ARG_PTR_TO_RB_NODE;
10402
10403         if ((base_type(reg->type) == PTR_TO_BTF_ID || reg2btf_ids[base_type(reg->type)])) {
10404                 if (!btf_type_is_struct(ref_t)) {
10405                         verbose(env, "kernel function %s args#%d pointer type %s %s is not supported\n",
10406                                 meta->func_name, argno, btf_type_str(ref_t), ref_tname);
10407                         return -EINVAL;
10408                 }
10409                 return KF_ARG_PTR_TO_BTF_ID;
10410         }
10411
10412         if (is_kfunc_arg_callback(env, meta->btf, &args[argno]))
10413                 return KF_ARG_PTR_TO_CALLBACK;
10414
10415
10416         if (argno + 1 < nargs &&
10417             (is_kfunc_arg_mem_size(meta->btf, &args[argno + 1], &regs[regno + 1]) ||
10418              is_kfunc_arg_const_mem_size(meta->btf, &args[argno + 1], &regs[regno + 1])))
10419                 arg_mem_size = true;
10420
10421         /* This is the catch all argument type of register types supported by
10422          * check_helper_mem_access. However, we only allow when argument type is
10423          * pointer to scalar, or struct composed (recursively) of scalars. When
10424          * arg_mem_size is true, the pointer can be void *.
10425          */
10426         if (!btf_type_is_scalar(ref_t) && !__btf_type_is_scalar_struct(env, meta->btf, ref_t, 0) &&
10427             (arg_mem_size ? !btf_type_is_void(ref_t) : 1)) {
10428                 verbose(env, "arg#%d pointer type %s %s must point to %sscalar, or struct with scalar\n",
10429                         argno, btf_type_str(ref_t), ref_tname, arg_mem_size ? "void, " : "");
10430                 return -EINVAL;
10431         }
10432         return arg_mem_size ? KF_ARG_PTR_TO_MEM_SIZE : KF_ARG_PTR_TO_MEM;
10433 }
10434
10435 static int process_kf_arg_ptr_to_btf_id(struct bpf_verifier_env *env,
10436                                         struct bpf_reg_state *reg,
10437                                         const struct btf_type *ref_t,
10438                                         const char *ref_tname, u32 ref_id,
10439                                         struct bpf_kfunc_call_arg_meta *meta,
10440                                         int argno)
10441 {
10442         const struct btf_type *reg_ref_t;
10443         bool strict_type_match = false;
10444         const struct btf *reg_btf;
10445         const char *reg_ref_tname;
10446         u32 reg_ref_id;
10447
10448         if (base_type(reg->type) == PTR_TO_BTF_ID) {
10449                 reg_btf = reg->btf;
10450                 reg_ref_id = reg->btf_id;
10451         } else {
10452                 reg_btf = btf_vmlinux;
10453                 reg_ref_id = *reg2btf_ids[base_type(reg->type)];
10454         }
10455
10456         /* Enforce strict type matching for calls to kfuncs that are acquiring
10457          * or releasing a reference, or are no-cast aliases. We do _not_
10458          * enforce strict matching for plain KF_TRUSTED_ARGS kfuncs by default,
10459          * as we want to enable BPF programs to pass types that are bitwise
10460          * equivalent without forcing them to explicitly cast with something
10461          * like bpf_cast_to_kern_ctx().
10462          *
10463          * For example, say we had a type like the following:
10464          *
10465          * struct bpf_cpumask {
10466          *      cpumask_t cpumask;
10467          *      refcount_t usage;
10468          * };
10469          *
10470          * Note that as specified in <linux/cpumask.h>, cpumask_t is typedef'ed
10471          * to a struct cpumask, so it would be safe to pass a struct
10472          * bpf_cpumask * to a kfunc expecting a struct cpumask *.
10473          *
10474          * The philosophy here is similar to how we allow scalars of different
10475          * types to be passed to kfuncs as long as the size is the same. The
10476          * only difference here is that we're simply allowing
10477          * btf_struct_ids_match() to walk the struct at the 0th offset, and
10478          * resolve types.
10479          */
10480         if (is_kfunc_acquire(meta) ||
10481             (is_kfunc_release(meta) && reg->ref_obj_id) ||
10482             btf_type_ids_nocast_alias(&env->log, reg_btf, reg_ref_id, meta->btf, ref_id))
10483                 strict_type_match = true;
10484
10485         WARN_ON_ONCE(is_kfunc_trusted_args(meta) && reg->off);
10486
10487         reg_ref_t = btf_type_skip_modifiers(reg_btf, reg_ref_id, &reg_ref_id);
10488         reg_ref_tname = btf_name_by_offset(reg_btf, reg_ref_t->name_off);
10489         if (!btf_struct_ids_match(&env->log, reg_btf, reg_ref_id, reg->off, meta->btf, ref_id, strict_type_match)) {
10490                 verbose(env, "kernel function %s args#%d expected pointer to %s %s but R%d has a pointer to %s %s\n",
10491                         meta->func_name, argno, btf_type_str(ref_t), ref_tname, argno + 1,
10492                         btf_type_str(reg_ref_t), reg_ref_tname);
10493                 return -EINVAL;
10494         }
10495         return 0;
10496 }
10497
10498 static int ref_set_non_owning(struct bpf_verifier_env *env, struct bpf_reg_state *reg)
10499 {
10500         struct bpf_verifier_state *state = env->cur_state;
10501         struct btf_record *rec = reg_btf_record(reg);
10502
10503         if (!state->active_lock.ptr) {
10504                 verbose(env, "verifier internal error: ref_set_non_owning w/o active lock\n");
10505                 return -EFAULT;
10506         }
10507
10508         if (type_flag(reg->type) & NON_OWN_REF) {
10509                 verbose(env, "verifier internal error: NON_OWN_REF already set\n");
10510                 return -EFAULT;
10511         }
10512
10513         reg->type |= NON_OWN_REF;
10514         if (rec->refcount_off >= 0)
10515                 reg->type |= MEM_RCU;
10516
10517         return 0;
10518 }
10519
10520 static int ref_convert_owning_non_owning(struct bpf_verifier_env *env, u32 ref_obj_id)
10521 {
10522         struct bpf_func_state *state, *unused;
10523         struct bpf_reg_state *reg;
10524         int i;
10525
10526         state = cur_func(env);
10527
10528         if (!ref_obj_id) {
10529                 verbose(env, "verifier internal error: ref_obj_id is zero for "
10530                              "owning -> non-owning conversion\n");
10531                 return -EFAULT;
10532         }
10533
10534         for (i = 0; i < state->acquired_refs; i++) {
10535                 if (state->refs[i].id != ref_obj_id)
10536                         continue;
10537
10538                 /* Clear ref_obj_id here so release_reference doesn't clobber
10539                  * the whole reg
10540                  */
10541                 bpf_for_each_reg_in_vstate(env->cur_state, unused, reg, ({
10542                         if (reg->ref_obj_id == ref_obj_id) {
10543                                 reg->ref_obj_id = 0;
10544                                 ref_set_non_owning(env, reg);
10545                         }
10546                 }));
10547                 return 0;
10548         }
10549
10550         verbose(env, "verifier internal error: ref state missing for ref_obj_id\n");
10551         return -EFAULT;
10552 }
10553
10554 /* Implementation details:
10555  *
10556  * Each register points to some region of memory, which we define as an
10557  * allocation. Each allocation may embed a bpf_spin_lock which protects any
10558  * special BPF objects (bpf_list_head, bpf_rb_root, etc.) part of the same
10559  * allocation. The lock and the data it protects are colocated in the same
10560  * memory region.
10561  *
10562  * Hence, everytime a register holds a pointer value pointing to such
10563  * allocation, the verifier preserves a unique reg->id for it.
10564  *
10565  * The verifier remembers the lock 'ptr' and the lock 'id' whenever
10566  * bpf_spin_lock is called.
10567  *
10568  * To enable this, lock state in the verifier captures two values:
10569  *      active_lock.ptr = Register's type specific pointer
10570  *      active_lock.id  = A unique ID for each register pointer value
10571  *
10572  * Currently, PTR_TO_MAP_VALUE and PTR_TO_BTF_ID | MEM_ALLOC are the two
10573  * supported register types.
10574  *
10575  * The active_lock.ptr in case of map values is the reg->map_ptr, and in case of
10576  * allocated objects is the reg->btf pointer.
10577  *
10578  * The active_lock.id is non-unique for maps supporting direct_value_addr, as we
10579  * can establish the provenance of the map value statically for each distinct
10580  * lookup into such maps. They always contain a single map value hence unique
10581  * IDs for each pseudo load pessimizes the algorithm and rejects valid programs.
10582  *
10583  * So, in case of global variables, they use array maps with max_entries = 1,
10584  * hence their active_lock.ptr becomes map_ptr and id = 0 (since they all point
10585  * into the same map value as max_entries is 1, as described above).
10586  *
10587  * In case of inner map lookups, the inner map pointer has same map_ptr as the
10588  * outer map pointer (in verifier context), but each lookup into an inner map
10589  * assigns a fresh reg->id to the lookup, so while lookups into distinct inner
10590  * maps from the same outer map share the same map_ptr as active_lock.ptr, they
10591  * will get different reg->id assigned to each lookup, hence different
10592  * active_lock.id.
10593  *
10594  * In case of allocated objects, active_lock.ptr is the reg->btf, and the
10595  * reg->id is a unique ID preserved after the NULL pointer check on the pointer
10596  * returned from bpf_obj_new. Each allocation receives a new reg->id.
10597  */
10598 static int check_reg_allocation_locked(struct bpf_verifier_env *env, struct bpf_reg_state *reg)
10599 {
10600         void *ptr;
10601         u32 id;
10602
10603         switch ((int)reg->type) {
10604         case PTR_TO_MAP_VALUE:
10605                 ptr = reg->map_ptr;
10606                 break;
10607         case PTR_TO_BTF_ID | MEM_ALLOC:
10608                 ptr = reg->btf;
10609                 break;
10610         default:
10611                 verbose(env, "verifier internal error: unknown reg type for lock check\n");
10612                 return -EFAULT;
10613         }
10614         id = reg->id;
10615
10616         if (!env->cur_state->active_lock.ptr)
10617                 return -EINVAL;
10618         if (env->cur_state->active_lock.ptr != ptr ||
10619             env->cur_state->active_lock.id != id) {
10620                 verbose(env, "held lock and object are not in the same allocation\n");
10621                 return -EINVAL;
10622         }
10623         return 0;
10624 }
10625
10626 static bool is_bpf_list_api_kfunc(u32 btf_id)
10627 {
10628         return btf_id == special_kfunc_list[KF_bpf_list_push_front_impl] ||
10629                btf_id == special_kfunc_list[KF_bpf_list_push_back_impl] ||
10630                btf_id == special_kfunc_list[KF_bpf_list_pop_front] ||
10631                btf_id == special_kfunc_list[KF_bpf_list_pop_back];
10632 }
10633
10634 static bool is_bpf_rbtree_api_kfunc(u32 btf_id)
10635 {
10636         return btf_id == special_kfunc_list[KF_bpf_rbtree_add_impl] ||
10637                btf_id == special_kfunc_list[KF_bpf_rbtree_remove] ||
10638                btf_id == special_kfunc_list[KF_bpf_rbtree_first];
10639 }
10640
10641 static bool is_bpf_graph_api_kfunc(u32 btf_id)
10642 {
10643         return is_bpf_list_api_kfunc(btf_id) || is_bpf_rbtree_api_kfunc(btf_id) ||
10644                btf_id == special_kfunc_list[KF_bpf_refcount_acquire_impl];
10645 }
10646
10647 static bool is_callback_calling_kfunc(u32 btf_id)
10648 {
10649         return btf_id == special_kfunc_list[KF_bpf_rbtree_add_impl];
10650 }
10651
10652 static bool is_rbtree_lock_required_kfunc(u32 btf_id)
10653 {
10654         return is_bpf_rbtree_api_kfunc(btf_id);
10655 }
10656
10657 static bool check_kfunc_is_graph_root_api(struct bpf_verifier_env *env,
10658                                           enum btf_field_type head_field_type,
10659                                           u32 kfunc_btf_id)
10660 {
10661         bool ret;
10662
10663         switch (head_field_type) {
10664         case BPF_LIST_HEAD:
10665                 ret = is_bpf_list_api_kfunc(kfunc_btf_id);
10666                 break;
10667         case BPF_RB_ROOT:
10668                 ret = is_bpf_rbtree_api_kfunc(kfunc_btf_id);
10669                 break;
10670         default:
10671                 verbose(env, "verifier internal error: unexpected graph root argument type %s\n",
10672                         btf_field_type_name(head_field_type));
10673                 return false;
10674         }
10675
10676         if (!ret)
10677                 verbose(env, "verifier internal error: %s head arg for unknown kfunc\n",
10678                         btf_field_type_name(head_field_type));
10679         return ret;
10680 }
10681
10682 static bool check_kfunc_is_graph_node_api(struct bpf_verifier_env *env,
10683                                           enum btf_field_type node_field_type,
10684                                           u32 kfunc_btf_id)
10685 {
10686         bool ret;
10687
10688         switch (node_field_type) {
10689         case BPF_LIST_NODE:
10690                 ret = (kfunc_btf_id == special_kfunc_list[KF_bpf_list_push_front_impl] ||
10691                        kfunc_btf_id == special_kfunc_list[KF_bpf_list_push_back_impl]);
10692                 break;
10693         case BPF_RB_NODE:
10694                 ret = (kfunc_btf_id == special_kfunc_list[KF_bpf_rbtree_remove] ||
10695                        kfunc_btf_id == special_kfunc_list[KF_bpf_rbtree_add_impl]);
10696                 break;
10697         default:
10698                 verbose(env, "verifier internal error: unexpected graph node argument type %s\n",
10699                         btf_field_type_name(node_field_type));
10700                 return false;
10701         }
10702
10703         if (!ret)
10704                 verbose(env, "verifier internal error: %s node arg for unknown kfunc\n",
10705                         btf_field_type_name(node_field_type));
10706         return ret;
10707 }
10708
10709 static int
10710 __process_kf_arg_ptr_to_graph_root(struct bpf_verifier_env *env,
10711                                    struct bpf_reg_state *reg, u32 regno,
10712                                    struct bpf_kfunc_call_arg_meta *meta,
10713                                    enum btf_field_type head_field_type,
10714                                    struct btf_field **head_field)
10715 {
10716         const char *head_type_name;
10717         struct btf_field *field;
10718         struct btf_record *rec;
10719         u32 head_off;
10720
10721         if (meta->btf != btf_vmlinux) {
10722                 verbose(env, "verifier internal error: unexpected btf mismatch in kfunc call\n");
10723                 return -EFAULT;
10724         }
10725
10726         if (!check_kfunc_is_graph_root_api(env, head_field_type, meta->func_id))
10727                 return -EFAULT;
10728
10729         head_type_name = btf_field_type_name(head_field_type);
10730         if (!tnum_is_const(reg->var_off)) {
10731                 verbose(env,
10732                         "R%d doesn't have constant offset. %s has to be at the constant offset\n",
10733                         regno, head_type_name);
10734                 return -EINVAL;
10735         }
10736
10737         rec = reg_btf_record(reg);
10738         head_off = reg->off + reg->var_off.value;
10739         field = btf_record_find(rec, head_off, head_field_type);
10740         if (!field) {
10741                 verbose(env, "%s not found at offset=%u\n", head_type_name, head_off);
10742                 return -EINVAL;
10743         }
10744
10745         /* All functions require bpf_list_head to be protected using a bpf_spin_lock */
10746         if (check_reg_allocation_locked(env, reg)) {
10747                 verbose(env, "bpf_spin_lock at off=%d must be held for %s\n",
10748                         rec->spin_lock_off, head_type_name);
10749                 return -EINVAL;
10750         }
10751
10752         if (*head_field) {
10753                 verbose(env, "verifier internal error: repeating %s arg\n", head_type_name);
10754                 return -EFAULT;
10755         }
10756         *head_field = field;
10757         return 0;
10758 }
10759
10760 static int process_kf_arg_ptr_to_list_head(struct bpf_verifier_env *env,
10761                                            struct bpf_reg_state *reg, u32 regno,
10762                                            struct bpf_kfunc_call_arg_meta *meta)
10763 {
10764         return __process_kf_arg_ptr_to_graph_root(env, reg, regno, meta, BPF_LIST_HEAD,
10765                                                           &meta->arg_list_head.field);
10766 }
10767
10768 static int process_kf_arg_ptr_to_rbtree_root(struct bpf_verifier_env *env,
10769                                              struct bpf_reg_state *reg, u32 regno,
10770                                              struct bpf_kfunc_call_arg_meta *meta)
10771 {
10772         return __process_kf_arg_ptr_to_graph_root(env, reg, regno, meta, BPF_RB_ROOT,
10773                                                           &meta->arg_rbtree_root.field);
10774 }
10775
10776 static int
10777 __process_kf_arg_ptr_to_graph_node(struct bpf_verifier_env *env,
10778                                    struct bpf_reg_state *reg, u32 regno,
10779                                    struct bpf_kfunc_call_arg_meta *meta,
10780                                    enum btf_field_type head_field_type,
10781                                    enum btf_field_type node_field_type,
10782                                    struct btf_field **node_field)
10783 {
10784         const char *node_type_name;
10785         const struct btf_type *et, *t;
10786         struct btf_field *field;
10787         u32 node_off;
10788
10789         if (meta->btf != btf_vmlinux) {
10790                 verbose(env, "verifier internal error: unexpected btf mismatch in kfunc call\n");
10791                 return -EFAULT;
10792         }
10793
10794         if (!check_kfunc_is_graph_node_api(env, node_field_type, meta->func_id))
10795                 return -EFAULT;
10796
10797         node_type_name = btf_field_type_name(node_field_type);
10798         if (!tnum_is_const(reg->var_off)) {
10799                 verbose(env,
10800                         "R%d doesn't have constant offset. %s has to be at the constant offset\n",
10801                         regno, node_type_name);
10802                 return -EINVAL;
10803         }
10804
10805         node_off = reg->off + reg->var_off.value;
10806         field = reg_find_field_offset(reg, node_off, node_field_type);
10807         if (!field || field->offset != node_off) {
10808                 verbose(env, "%s not found at offset=%u\n", node_type_name, node_off);
10809                 return -EINVAL;
10810         }
10811
10812         field = *node_field;
10813
10814         et = btf_type_by_id(field->graph_root.btf, field->graph_root.value_btf_id);
10815         t = btf_type_by_id(reg->btf, reg->btf_id);
10816         if (!btf_struct_ids_match(&env->log, reg->btf, reg->btf_id, 0, field->graph_root.btf,
10817                                   field->graph_root.value_btf_id, true)) {
10818                 verbose(env, "operation on %s expects arg#1 %s at offset=%d "
10819                         "in struct %s, but arg is at offset=%d in struct %s\n",
10820                         btf_field_type_name(head_field_type),
10821                         btf_field_type_name(node_field_type),
10822                         field->graph_root.node_offset,
10823                         btf_name_by_offset(field->graph_root.btf, et->name_off),
10824                         node_off, btf_name_by_offset(reg->btf, t->name_off));
10825                 return -EINVAL;
10826         }
10827         meta->arg_btf = reg->btf;
10828         meta->arg_btf_id = reg->btf_id;
10829
10830         if (node_off != field->graph_root.node_offset) {
10831                 verbose(env, "arg#1 offset=%d, but expected %s at offset=%d in struct %s\n",
10832                         node_off, btf_field_type_name(node_field_type),
10833                         field->graph_root.node_offset,
10834                         btf_name_by_offset(field->graph_root.btf, et->name_off));
10835                 return -EINVAL;
10836         }
10837
10838         return 0;
10839 }
10840
10841 static int process_kf_arg_ptr_to_list_node(struct bpf_verifier_env *env,
10842                                            struct bpf_reg_state *reg, u32 regno,
10843                                            struct bpf_kfunc_call_arg_meta *meta)
10844 {
10845         return __process_kf_arg_ptr_to_graph_node(env, reg, regno, meta,
10846                                                   BPF_LIST_HEAD, BPF_LIST_NODE,
10847                                                   &meta->arg_list_head.field);
10848 }
10849
10850 static int process_kf_arg_ptr_to_rbtree_node(struct bpf_verifier_env *env,
10851                                              struct bpf_reg_state *reg, u32 regno,
10852                                              struct bpf_kfunc_call_arg_meta *meta)
10853 {
10854         return __process_kf_arg_ptr_to_graph_node(env, reg, regno, meta,
10855                                                   BPF_RB_ROOT, BPF_RB_NODE,
10856                                                   &meta->arg_rbtree_root.field);
10857 }
10858
10859 static int check_kfunc_args(struct bpf_verifier_env *env, struct bpf_kfunc_call_arg_meta *meta,
10860                             int insn_idx)
10861 {
10862         const char *func_name = meta->func_name, *ref_tname;
10863         const struct btf *btf = meta->btf;
10864         const struct btf_param *args;
10865         struct btf_record *rec;
10866         u32 i, nargs;
10867         int ret;
10868
10869         args = (const struct btf_param *)(meta->func_proto + 1);
10870         nargs = btf_type_vlen(meta->func_proto);
10871         if (nargs > MAX_BPF_FUNC_REG_ARGS) {
10872                 verbose(env, "Function %s has %d > %d args\n", func_name, nargs,
10873                         MAX_BPF_FUNC_REG_ARGS);
10874                 return -EINVAL;
10875         }
10876
10877         /* Check that BTF function arguments match actual types that the
10878          * verifier sees.
10879          */
10880         for (i = 0; i < nargs; i++) {
10881                 struct bpf_reg_state *regs = cur_regs(env), *reg = &regs[i + 1];
10882                 const struct btf_type *t, *ref_t, *resolve_ret;
10883                 enum bpf_arg_type arg_type = ARG_DONTCARE;
10884                 u32 regno = i + 1, ref_id, type_size;
10885                 bool is_ret_buf_sz = false;
10886                 int kf_arg_type;
10887
10888                 t = btf_type_skip_modifiers(btf, args[i].type, NULL);
10889
10890                 if (is_kfunc_arg_ignore(btf, &args[i]))
10891                         continue;
10892
10893                 if (btf_type_is_scalar(t)) {
10894                         if (reg->type != SCALAR_VALUE) {
10895                                 verbose(env, "R%d is not a scalar\n", regno);
10896                                 return -EINVAL;
10897                         }
10898
10899                         if (is_kfunc_arg_constant(meta->btf, &args[i])) {
10900                                 if (meta->arg_constant.found) {
10901                                         verbose(env, "verifier internal error: only one constant argument permitted\n");
10902                                         return -EFAULT;
10903                                 }
10904                                 if (!tnum_is_const(reg->var_off)) {
10905                                         verbose(env, "R%d must be a known constant\n", regno);
10906                                         return -EINVAL;
10907                                 }
10908                                 ret = mark_chain_precision(env, regno);
10909                                 if (ret < 0)
10910                                         return ret;
10911                                 meta->arg_constant.found = true;
10912                                 meta->arg_constant.value = reg->var_off.value;
10913                         } else if (is_kfunc_arg_scalar_with_name(btf, &args[i], "rdonly_buf_size")) {
10914                                 meta->r0_rdonly = true;
10915                                 is_ret_buf_sz = true;
10916                         } else if (is_kfunc_arg_scalar_with_name(btf, &args[i], "rdwr_buf_size")) {
10917                                 is_ret_buf_sz = true;
10918                         }
10919
10920                         if (is_ret_buf_sz) {
10921                                 if (meta->r0_size) {
10922                                         verbose(env, "2 or more rdonly/rdwr_buf_size parameters for kfunc");
10923                                         return -EINVAL;
10924                                 }
10925
10926                                 if (!tnum_is_const(reg->var_off)) {
10927                                         verbose(env, "R%d is not a const\n", regno);
10928                                         return -EINVAL;
10929                                 }
10930
10931                                 meta->r0_size = reg->var_off.value;
10932                                 ret = mark_chain_precision(env, regno);
10933                                 if (ret)
10934                                         return ret;
10935                         }
10936                         continue;
10937                 }
10938
10939                 if (!btf_type_is_ptr(t)) {
10940                         verbose(env, "Unrecognized arg#%d type %s\n", i, btf_type_str(t));
10941                         return -EINVAL;
10942                 }
10943
10944                 if ((is_kfunc_trusted_args(meta) || is_kfunc_rcu(meta)) &&
10945                     (register_is_null(reg) || type_may_be_null(reg->type))) {
10946                         verbose(env, "Possibly NULL pointer passed to trusted arg%d\n", i);
10947                         return -EACCES;
10948                 }
10949
10950                 if (reg->ref_obj_id) {
10951                         if (is_kfunc_release(meta) && meta->ref_obj_id) {
10952                                 verbose(env, "verifier internal error: more than one arg with ref_obj_id R%d %u %u\n",
10953                                         regno, reg->ref_obj_id,
10954                                         meta->ref_obj_id);
10955                                 return -EFAULT;
10956                         }
10957                         meta->ref_obj_id = reg->ref_obj_id;
10958                         if (is_kfunc_release(meta))
10959                                 meta->release_regno = regno;
10960                 }
10961
10962                 ref_t = btf_type_skip_modifiers(btf, t->type, &ref_id);
10963                 ref_tname = btf_name_by_offset(btf, ref_t->name_off);
10964
10965                 kf_arg_type = get_kfunc_ptr_arg_type(env, meta, t, ref_t, ref_tname, args, i, nargs);
10966                 if (kf_arg_type < 0)
10967                         return kf_arg_type;
10968
10969                 switch (kf_arg_type) {
10970                 case KF_ARG_PTR_TO_ALLOC_BTF_ID:
10971                 case KF_ARG_PTR_TO_BTF_ID:
10972                         if (!is_kfunc_trusted_args(meta) && !is_kfunc_rcu(meta))
10973                                 break;
10974
10975                         if (!is_trusted_reg(reg)) {
10976                                 if (!is_kfunc_rcu(meta)) {
10977                                         verbose(env, "R%d must be referenced or trusted\n", regno);
10978                                         return -EINVAL;
10979                                 }
10980                                 if (!is_rcu_reg(reg)) {
10981                                         verbose(env, "R%d must be a rcu pointer\n", regno);
10982                                         return -EINVAL;
10983                                 }
10984                         }
10985
10986                         fallthrough;
10987                 case KF_ARG_PTR_TO_CTX:
10988                         /* Trusted arguments have the same offset checks as release arguments */
10989                         arg_type |= OBJ_RELEASE;
10990                         break;
10991                 case KF_ARG_PTR_TO_DYNPTR:
10992                 case KF_ARG_PTR_TO_ITER:
10993                 case KF_ARG_PTR_TO_LIST_HEAD:
10994                 case KF_ARG_PTR_TO_LIST_NODE:
10995                 case KF_ARG_PTR_TO_RB_ROOT:
10996                 case KF_ARG_PTR_TO_RB_NODE:
10997                 case KF_ARG_PTR_TO_MEM:
10998                 case KF_ARG_PTR_TO_MEM_SIZE:
10999                 case KF_ARG_PTR_TO_CALLBACK:
11000                 case KF_ARG_PTR_TO_REFCOUNTED_KPTR:
11001                         /* Trusted by default */
11002                         break;
11003                 default:
11004                         WARN_ON_ONCE(1);
11005                         return -EFAULT;
11006                 }
11007
11008                 if (is_kfunc_release(meta) && reg->ref_obj_id)
11009                         arg_type |= OBJ_RELEASE;
11010                 ret = check_func_arg_reg_off(env, reg, regno, arg_type);
11011                 if (ret < 0)
11012                         return ret;
11013
11014                 switch (kf_arg_type) {
11015                 case KF_ARG_PTR_TO_CTX:
11016                         if (reg->type != PTR_TO_CTX) {
11017                                 verbose(env, "arg#%d expected pointer to ctx, but got %s\n", i, btf_type_str(t));
11018                                 return -EINVAL;
11019                         }
11020
11021                         if (meta->func_id == special_kfunc_list[KF_bpf_cast_to_kern_ctx]) {
11022                                 ret = get_kern_ctx_btf_id(&env->log, resolve_prog_type(env->prog));
11023                                 if (ret < 0)
11024                                         return -EINVAL;
11025                                 meta->ret_btf_id  = ret;
11026                         }
11027                         break;
11028                 case KF_ARG_PTR_TO_ALLOC_BTF_ID:
11029                         if (reg->type != (PTR_TO_BTF_ID | MEM_ALLOC)) {
11030                                 verbose(env, "arg#%d expected pointer to allocated object\n", i);
11031                                 return -EINVAL;
11032                         }
11033                         if (!reg->ref_obj_id) {
11034                                 verbose(env, "allocated object must be referenced\n");
11035                                 return -EINVAL;
11036                         }
11037                         if (meta->btf == btf_vmlinux &&
11038                             meta->func_id == special_kfunc_list[KF_bpf_obj_drop_impl]) {
11039                                 meta->arg_btf = reg->btf;
11040                                 meta->arg_btf_id = reg->btf_id;
11041                         }
11042                         break;
11043                 case KF_ARG_PTR_TO_DYNPTR:
11044                 {
11045                         enum bpf_arg_type dynptr_arg_type = ARG_PTR_TO_DYNPTR;
11046                         int clone_ref_obj_id = 0;
11047
11048                         if (reg->type != PTR_TO_STACK &&
11049                             reg->type != CONST_PTR_TO_DYNPTR) {
11050                                 verbose(env, "arg#%d expected pointer to stack or dynptr_ptr\n", i);
11051                                 return -EINVAL;
11052                         }
11053
11054                         if (reg->type == CONST_PTR_TO_DYNPTR)
11055                                 dynptr_arg_type |= MEM_RDONLY;
11056
11057                         if (is_kfunc_arg_uninit(btf, &args[i]))
11058                                 dynptr_arg_type |= MEM_UNINIT;
11059
11060                         if (meta->func_id == special_kfunc_list[KF_bpf_dynptr_from_skb]) {
11061                                 dynptr_arg_type |= DYNPTR_TYPE_SKB;
11062                         } else if (meta->func_id == special_kfunc_list[KF_bpf_dynptr_from_xdp]) {
11063                                 dynptr_arg_type |= DYNPTR_TYPE_XDP;
11064                         } else if (meta->func_id == special_kfunc_list[KF_bpf_dynptr_clone] &&
11065                                    (dynptr_arg_type & MEM_UNINIT)) {
11066                                 enum bpf_dynptr_type parent_type = meta->initialized_dynptr.type;
11067
11068                                 if (parent_type == BPF_DYNPTR_TYPE_INVALID) {
11069                                         verbose(env, "verifier internal error: no dynptr type for parent of clone\n");
11070                                         return -EFAULT;
11071                                 }
11072
11073                                 dynptr_arg_type |= (unsigned int)get_dynptr_type_flag(parent_type);
11074                                 clone_ref_obj_id = meta->initialized_dynptr.ref_obj_id;
11075                                 if (dynptr_type_refcounted(parent_type) && !clone_ref_obj_id) {
11076                                         verbose(env, "verifier internal error: missing ref obj id for parent of clone\n");
11077                                         return -EFAULT;
11078                                 }
11079                         }
11080
11081                         ret = process_dynptr_func(env, regno, insn_idx, dynptr_arg_type, clone_ref_obj_id);
11082                         if (ret < 0)
11083                                 return ret;
11084
11085                         if (!(dynptr_arg_type & MEM_UNINIT)) {
11086                                 int id = dynptr_id(env, reg);
11087
11088                                 if (id < 0) {
11089                                         verbose(env, "verifier internal error: failed to obtain dynptr id\n");
11090                                         return id;
11091                                 }
11092                                 meta->initialized_dynptr.id = id;
11093                                 meta->initialized_dynptr.type = dynptr_get_type(env, reg);
11094                                 meta->initialized_dynptr.ref_obj_id = dynptr_ref_obj_id(env, reg);
11095                         }
11096
11097                         break;
11098                 }
11099                 case KF_ARG_PTR_TO_ITER:
11100                         ret = process_iter_arg(env, regno, insn_idx, meta);
11101                         if (ret < 0)
11102                                 return ret;
11103                         break;
11104                 case KF_ARG_PTR_TO_LIST_HEAD:
11105                         if (reg->type != PTR_TO_MAP_VALUE &&
11106                             reg->type != (PTR_TO_BTF_ID | MEM_ALLOC)) {
11107                                 verbose(env, "arg#%d expected pointer to map value or allocated object\n", i);
11108                                 return -EINVAL;
11109                         }
11110                         if (reg->type == (PTR_TO_BTF_ID | MEM_ALLOC) && !reg->ref_obj_id) {
11111                                 verbose(env, "allocated object must be referenced\n");
11112                                 return -EINVAL;
11113                         }
11114                         ret = process_kf_arg_ptr_to_list_head(env, reg, regno, meta);
11115                         if (ret < 0)
11116                                 return ret;
11117                         break;
11118                 case KF_ARG_PTR_TO_RB_ROOT:
11119                         if (reg->type != PTR_TO_MAP_VALUE &&
11120                             reg->type != (PTR_TO_BTF_ID | MEM_ALLOC)) {
11121                                 verbose(env, "arg#%d expected pointer to map value or allocated object\n", i);
11122                                 return -EINVAL;
11123                         }
11124                         if (reg->type == (PTR_TO_BTF_ID | MEM_ALLOC) && !reg->ref_obj_id) {
11125                                 verbose(env, "allocated object must be referenced\n");
11126                                 return -EINVAL;
11127                         }
11128                         ret = process_kf_arg_ptr_to_rbtree_root(env, reg, regno, meta);
11129                         if (ret < 0)
11130                                 return ret;
11131                         break;
11132                 case KF_ARG_PTR_TO_LIST_NODE:
11133                         if (reg->type != (PTR_TO_BTF_ID | MEM_ALLOC)) {
11134                                 verbose(env, "arg#%d expected pointer to allocated object\n", i);
11135                                 return -EINVAL;
11136                         }
11137                         if (!reg->ref_obj_id) {
11138                                 verbose(env, "allocated object must be referenced\n");
11139                                 return -EINVAL;
11140                         }
11141                         ret = process_kf_arg_ptr_to_list_node(env, reg, regno, meta);
11142                         if (ret < 0)
11143                                 return ret;
11144                         break;
11145                 case KF_ARG_PTR_TO_RB_NODE:
11146                         if (meta->func_id == special_kfunc_list[KF_bpf_rbtree_remove]) {
11147                                 if (!type_is_non_owning_ref(reg->type) || reg->ref_obj_id) {
11148                                         verbose(env, "rbtree_remove node input must be non-owning ref\n");
11149                                         return -EINVAL;
11150                                 }
11151                                 if (in_rbtree_lock_required_cb(env)) {
11152                                         verbose(env, "rbtree_remove not allowed in rbtree cb\n");
11153                                         return -EINVAL;
11154                                 }
11155                         } else {
11156                                 if (reg->type != (PTR_TO_BTF_ID | MEM_ALLOC)) {
11157                                         verbose(env, "arg#%d expected pointer to allocated object\n", i);
11158                                         return -EINVAL;
11159                                 }
11160                                 if (!reg->ref_obj_id) {
11161                                         verbose(env, "allocated object must be referenced\n");
11162                                         return -EINVAL;
11163                                 }
11164                         }
11165
11166                         ret = process_kf_arg_ptr_to_rbtree_node(env, reg, regno, meta);
11167                         if (ret < 0)
11168                                 return ret;
11169                         break;
11170                 case KF_ARG_PTR_TO_BTF_ID:
11171                         /* Only base_type is checked, further checks are done here */
11172                         if ((base_type(reg->type) != PTR_TO_BTF_ID ||
11173                              (bpf_type_has_unsafe_modifiers(reg->type) && !is_rcu_reg(reg))) &&
11174                             !reg2btf_ids[base_type(reg->type)]) {
11175                                 verbose(env, "arg#%d is %s ", i, reg_type_str(env, reg->type));
11176                                 verbose(env, "expected %s or socket\n",
11177                                         reg_type_str(env, base_type(reg->type) |
11178                                                           (type_flag(reg->type) & BPF_REG_TRUSTED_MODIFIERS)));
11179                                 return -EINVAL;
11180                         }
11181                         ret = process_kf_arg_ptr_to_btf_id(env, reg, ref_t, ref_tname, ref_id, meta, i);
11182                         if (ret < 0)
11183                                 return ret;
11184                         break;
11185                 case KF_ARG_PTR_TO_MEM:
11186                         resolve_ret = btf_resolve_size(btf, ref_t, &type_size);
11187                         if (IS_ERR(resolve_ret)) {
11188                                 verbose(env, "arg#%d reference type('%s %s') size cannot be determined: %ld\n",
11189                                         i, btf_type_str(ref_t), ref_tname, PTR_ERR(resolve_ret));
11190                                 return -EINVAL;
11191                         }
11192                         ret = check_mem_reg(env, reg, regno, type_size);
11193                         if (ret < 0)
11194                                 return ret;
11195                         break;
11196                 case KF_ARG_PTR_TO_MEM_SIZE:
11197                 {
11198                         struct bpf_reg_state *buff_reg = &regs[regno];
11199                         const struct btf_param *buff_arg = &args[i];
11200                         struct bpf_reg_state *size_reg = &regs[regno + 1];
11201                         const struct btf_param *size_arg = &args[i + 1];
11202
11203                         if (!register_is_null(buff_reg) || !is_kfunc_arg_optional(meta->btf, buff_arg)) {
11204                                 ret = check_kfunc_mem_size_reg(env, size_reg, regno + 1);
11205                                 if (ret < 0) {
11206                                         verbose(env, "arg#%d arg#%d memory, len pair leads to invalid memory access\n", i, i + 1);
11207                                         return ret;
11208                                 }
11209                         }
11210
11211                         if (is_kfunc_arg_const_mem_size(meta->btf, size_arg, size_reg)) {
11212                                 if (meta->arg_constant.found) {
11213                                         verbose(env, "verifier internal error: only one constant argument permitted\n");
11214                                         return -EFAULT;
11215                                 }
11216                                 if (!tnum_is_const(size_reg->var_off)) {
11217                                         verbose(env, "R%d must be a known constant\n", regno + 1);
11218                                         return -EINVAL;
11219                                 }
11220                                 meta->arg_constant.found = true;
11221                                 meta->arg_constant.value = size_reg->var_off.value;
11222                         }
11223
11224                         /* Skip next '__sz' or '__szk' argument */
11225                         i++;
11226                         break;
11227                 }
11228                 case KF_ARG_PTR_TO_CALLBACK:
11229                         if (reg->type != PTR_TO_FUNC) {
11230                                 verbose(env, "arg%d expected pointer to func\n", i);
11231                                 return -EINVAL;
11232                         }
11233                         meta->subprogno = reg->subprogno;
11234                         break;
11235                 case KF_ARG_PTR_TO_REFCOUNTED_KPTR:
11236                         if (!type_is_ptr_alloc_obj(reg->type)) {
11237                                 verbose(env, "arg#%d is neither owning or non-owning ref\n", i);
11238                                 return -EINVAL;
11239                         }
11240                         if (!type_is_non_owning_ref(reg->type))
11241                                 meta->arg_owning_ref = true;
11242
11243                         rec = reg_btf_record(reg);
11244                         if (!rec) {
11245                                 verbose(env, "verifier internal error: Couldn't find btf_record\n");
11246                                 return -EFAULT;
11247                         }
11248
11249                         if (rec->refcount_off < 0) {
11250                                 verbose(env, "arg#%d doesn't point to a type with bpf_refcount field\n", i);
11251                                 return -EINVAL;
11252                         }
11253
11254                         meta->arg_btf = reg->btf;
11255                         meta->arg_btf_id = reg->btf_id;
11256                         break;
11257                 }
11258         }
11259
11260         if (is_kfunc_release(meta) && !meta->release_regno) {
11261                 verbose(env, "release kernel function %s expects refcounted PTR_TO_BTF_ID\n",
11262                         func_name);
11263                 return -EINVAL;
11264         }
11265
11266         return 0;
11267 }
11268
11269 static int fetch_kfunc_meta(struct bpf_verifier_env *env,
11270                             struct bpf_insn *insn,
11271                             struct bpf_kfunc_call_arg_meta *meta,
11272                             const char **kfunc_name)
11273 {
11274         const struct btf_type *func, *func_proto;
11275         u32 func_id, *kfunc_flags;
11276         const char *func_name;
11277         struct btf *desc_btf;
11278
11279         if (kfunc_name)
11280                 *kfunc_name = NULL;
11281
11282         if (!insn->imm)
11283                 return -EINVAL;
11284
11285         desc_btf = find_kfunc_desc_btf(env, insn->off);
11286         if (IS_ERR(desc_btf))
11287                 return PTR_ERR(desc_btf);
11288
11289         func_id = insn->imm;
11290         func = btf_type_by_id(desc_btf, func_id);
11291         func_name = btf_name_by_offset(desc_btf, func->name_off);
11292         if (kfunc_name)
11293                 *kfunc_name = func_name;
11294         func_proto = btf_type_by_id(desc_btf, func->type);
11295
11296         kfunc_flags = btf_kfunc_id_set_contains(desc_btf, func_id, env->prog);
11297         if (!kfunc_flags) {
11298                 return -EACCES;
11299         }
11300
11301         memset(meta, 0, sizeof(*meta));
11302         meta->btf = desc_btf;
11303         meta->func_id = func_id;
11304         meta->kfunc_flags = *kfunc_flags;
11305         meta->func_proto = func_proto;
11306         meta->func_name = func_name;
11307
11308         return 0;
11309 }
11310
11311 static int check_kfunc_call(struct bpf_verifier_env *env, struct bpf_insn *insn,
11312                             int *insn_idx_p)
11313 {
11314         const struct btf_type *t, *ptr_type;
11315         u32 i, nargs, ptr_type_id, release_ref_obj_id;
11316         struct bpf_reg_state *regs = cur_regs(env);
11317         const char *func_name, *ptr_type_name;
11318         bool sleepable, rcu_lock, rcu_unlock;
11319         struct bpf_kfunc_call_arg_meta meta;
11320         struct bpf_insn_aux_data *insn_aux;
11321         int err, insn_idx = *insn_idx_p;
11322         const struct btf_param *args;
11323         const struct btf_type *ret_t;
11324         struct btf *desc_btf;
11325
11326         /* skip for now, but return error when we find this in fixup_kfunc_call */
11327         if (!insn->imm)
11328                 return 0;
11329
11330         err = fetch_kfunc_meta(env, insn, &meta, &func_name);
11331         if (err == -EACCES && func_name)
11332                 verbose(env, "calling kernel function %s is not allowed\n", func_name);
11333         if (err)
11334                 return err;
11335         desc_btf = meta.btf;
11336         insn_aux = &env->insn_aux_data[insn_idx];
11337
11338         insn_aux->is_iter_next = is_iter_next_kfunc(&meta);
11339
11340         if (is_kfunc_destructive(&meta) && !capable(CAP_SYS_BOOT)) {
11341                 verbose(env, "destructive kfunc calls require CAP_SYS_BOOT capability\n");
11342                 return -EACCES;
11343         }
11344
11345         sleepable = is_kfunc_sleepable(&meta);
11346         if (sleepable && !env->prog->aux->sleepable) {
11347                 verbose(env, "program must be sleepable to call sleepable kfunc %s\n", func_name);
11348                 return -EACCES;
11349         }
11350
11351         rcu_lock = is_kfunc_bpf_rcu_read_lock(&meta);
11352         rcu_unlock = is_kfunc_bpf_rcu_read_unlock(&meta);
11353
11354         if (env->cur_state->active_rcu_lock) {
11355                 struct bpf_func_state *state;
11356                 struct bpf_reg_state *reg;
11357
11358                 if (in_rbtree_lock_required_cb(env) && (rcu_lock || rcu_unlock)) {
11359                         verbose(env, "Calling bpf_rcu_read_{lock,unlock} in unnecessary rbtree callback\n");
11360                         return -EACCES;
11361                 }
11362
11363                 if (rcu_lock) {
11364                         verbose(env, "nested rcu read lock (kernel function %s)\n", func_name);
11365                         return -EINVAL;
11366                 } else if (rcu_unlock) {
11367                         bpf_for_each_reg_in_vstate(env->cur_state, state, reg, ({
11368                                 if (reg->type & MEM_RCU) {
11369                                         reg->type &= ~(MEM_RCU | PTR_MAYBE_NULL);
11370                                         reg->type |= PTR_UNTRUSTED;
11371                                 }
11372                         }));
11373                         env->cur_state->active_rcu_lock = false;
11374                 } else if (sleepable) {
11375                         verbose(env, "kernel func %s is sleepable within rcu_read_lock region\n", func_name);
11376                         return -EACCES;
11377                 }
11378         } else if (rcu_lock) {
11379                 env->cur_state->active_rcu_lock = true;
11380         } else if (rcu_unlock) {
11381                 verbose(env, "unmatched rcu read unlock (kernel function %s)\n", func_name);
11382                 return -EINVAL;
11383         }
11384
11385         /* Check the arguments */
11386         err = check_kfunc_args(env, &meta, insn_idx);
11387         if (err < 0)
11388                 return err;
11389         /* In case of release function, we get register number of refcounted
11390          * PTR_TO_BTF_ID in bpf_kfunc_arg_meta, do the release now.
11391          */
11392         if (meta.release_regno) {
11393                 err = release_reference(env, regs[meta.release_regno].ref_obj_id);
11394                 if (err) {
11395                         verbose(env, "kfunc %s#%d reference has not been acquired before\n",
11396                                 func_name, meta.func_id);
11397                         return err;
11398                 }
11399         }
11400
11401         if (meta.func_id == special_kfunc_list[KF_bpf_list_push_front_impl] ||
11402             meta.func_id == special_kfunc_list[KF_bpf_list_push_back_impl] ||
11403             meta.func_id == special_kfunc_list[KF_bpf_rbtree_add_impl]) {
11404                 release_ref_obj_id = regs[BPF_REG_2].ref_obj_id;
11405                 insn_aux->insert_off = regs[BPF_REG_2].off;
11406                 insn_aux->kptr_struct_meta = btf_find_struct_meta(meta.arg_btf, meta.arg_btf_id);
11407                 err = ref_convert_owning_non_owning(env, release_ref_obj_id);
11408                 if (err) {
11409                         verbose(env, "kfunc %s#%d conversion of owning ref to non-owning failed\n",
11410                                 func_name, meta.func_id);
11411                         return err;
11412                 }
11413
11414                 err = release_reference(env, release_ref_obj_id);
11415                 if (err) {
11416                         verbose(env, "kfunc %s#%d reference has not been acquired before\n",
11417                                 func_name, meta.func_id);
11418                         return err;
11419                 }
11420         }
11421
11422         if (meta.func_id == special_kfunc_list[KF_bpf_rbtree_add_impl]) {
11423                 err = __check_func_call(env, insn, insn_idx_p, meta.subprogno,
11424                                         set_rbtree_add_callback_state);
11425                 if (err) {
11426                         verbose(env, "kfunc %s#%d failed callback verification\n",
11427                                 func_name, meta.func_id);
11428                         return err;
11429                 }
11430         }
11431
11432         for (i = 0; i < CALLER_SAVED_REGS; i++)
11433                 mark_reg_not_init(env, regs, caller_saved[i]);
11434
11435         /* Check return type */
11436         t = btf_type_skip_modifiers(desc_btf, meta.func_proto->type, NULL);
11437
11438         if (is_kfunc_acquire(&meta) && !btf_type_is_struct_ptr(meta.btf, t)) {
11439                 /* Only exception is bpf_obj_new_impl */
11440                 if (meta.btf != btf_vmlinux ||
11441                     (meta.func_id != special_kfunc_list[KF_bpf_obj_new_impl] &&
11442                      meta.func_id != special_kfunc_list[KF_bpf_refcount_acquire_impl])) {
11443                         verbose(env, "acquire kernel function does not return PTR_TO_BTF_ID\n");
11444                         return -EINVAL;
11445                 }
11446         }
11447
11448         if (btf_type_is_scalar(t)) {
11449                 mark_reg_unknown(env, regs, BPF_REG_0);
11450                 mark_btf_func_reg_size(env, BPF_REG_0, t->size);
11451         } else if (btf_type_is_ptr(t)) {
11452                 ptr_type = btf_type_skip_modifiers(desc_btf, t->type, &ptr_type_id);
11453
11454                 if (meta.btf == btf_vmlinux && btf_id_set_contains(&special_kfunc_set, meta.func_id)) {
11455                         if (meta.func_id == special_kfunc_list[KF_bpf_obj_new_impl]) {
11456                                 struct btf *ret_btf;
11457                                 u32 ret_btf_id;
11458
11459                                 if (unlikely(!bpf_global_ma_set))
11460                                         return -ENOMEM;
11461
11462                                 if (((u64)(u32)meta.arg_constant.value) != meta.arg_constant.value) {
11463                                         verbose(env, "local type ID argument must be in range [0, U32_MAX]\n");
11464                                         return -EINVAL;
11465                                 }
11466
11467                                 ret_btf = env->prog->aux->btf;
11468                                 ret_btf_id = meta.arg_constant.value;
11469
11470                                 /* This may be NULL due to user not supplying a BTF */
11471                                 if (!ret_btf) {
11472                                         verbose(env, "bpf_obj_new requires prog BTF\n");
11473                                         return -EINVAL;
11474                                 }
11475
11476                                 ret_t = btf_type_by_id(ret_btf, ret_btf_id);
11477                                 if (!ret_t || !__btf_type_is_struct(ret_t)) {
11478                                         verbose(env, "bpf_obj_new type ID argument must be of a struct\n");
11479                                         return -EINVAL;
11480                                 }
11481
11482                                 mark_reg_known_zero(env, regs, BPF_REG_0);
11483                                 regs[BPF_REG_0].type = PTR_TO_BTF_ID | MEM_ALLOC;
11484                                 regs[BPF_REG_0].btf = ret_btf;
11485                                 regs[BPF_REG_0].btf_id = ret_btf_id;
11486
11487                                 insn_aux->obj_new_size = ret_t->size;
11488                                 insn_aux->kptr_struct_meta =
11489                                         btf_find_struct_meta(ret_btf, ret_btf_id);
11490                         } else if (meta.func_id == special_kfunc_list[KF_bpf_refcount_acquire_impl]) {
11491                                 mark_reg_known_zero(env, regs, BPF_REG_0);
11492                                 regs[BPF_REG_0].type = PTR_TO_BTF_ID | MEM_ALLOC;
11493                                 regs[BPF_REG_0].btf = meta.arg_btf;
11494                                 regs[BPF_REG_0].btf_id = meta.arg_btf_id;
11495
11496                                 insn_aux->kptr_struct_meta =
11497                                         btf_find_struct_meta(meta.arg_btf,
11498                                                              meta.arg_btf_id);
11499                         } else if (meta.func_id == special_kfunc_list[KF_bpf_list_pop_front] ||
11500                                    meta.func_id == special_kfunc_list[KF_bpf_list_pop_back]) {
11501                                 struct btf_field *field = meta.arg_list_head.field;
11502
11503                                 mark_reg_graph_node(regs, BPF_REG_0, &field->graph_root);
11504                         } else if (meta.func_id == special_kfunc_list[KF_bpf_rbtree_remove] ||
11505                                    meta.func_id == special_kfunc_list[KF_bpf_rbtree_first]) {
11506                                 struct btf_field *field = meta.arg_rbtree_root.field;
11507
11508                                 mark_reg_graph_node(regs, BPF_REG_0, &field->graph_root);
11509                         } else if (meta.func_id == special_kfunc_list[KF_bpf_cast_to_kern_ctx]) {
11510                                 mark_reg_known_zero(env, regs, BPF_REG_0);
11511                                 regs[BPF_REG_0].type = PTR_TO_BTF_ID | PTR_TRUSTED;
11512                                 regs[BPF_REG_0].btf = desc_btf;
11513                                 regs[BPF_REG_0].btf_id = meta.ret_btf_id;
11514                         } else if (meta.func_id == special_kfunc_list[KF_bpf_rdonly_cast]) {
11515                                 ret_t = btf_type_by_id(desc_btf, meta.arg_constant.value);
11516                                 if (!ret_t || !btf_type_is_struct(ret_t)) {
11517                                         verbose(env,
11518                                                 "kfunc bpf_rdonly_cast type ID argument must be of a struct\n");
11519                                         return -EINVAL;
11520                                 }
11521
11522                                 mark_reg_known_zero(env, regs, BPF_REG_0);
11523                                 regs[BPF_REG_0].type = PTR_TO_BTF_ID | PTR_UNTRUSTED;
11524                                 regs[BPF_REG_0].btf = desc_btf;
11525                                 regs[BPF_REG_0].btf_id = meta.arg_constant.value;
11526                         } else if (meta.func_id == special_kfunc_list[KF_bpf_dynptr_slice] ||
11527                                    meta.func_id == special_kfunc_list[KF_bpf_dynptr_slice_rdwr]) {
11528                                 enum bpf_type_flag type_flag = get_dynptr_type_flag(meta.initialized_dynptr.type);
11529
11530                                 mark_reg_known_zero(env, regs, BPF_REG_0);
11531
11532                                 if (!meta.arg_constant.found) {
11533                                         verbose(env, "verifier internal error: bpf_dynptr_slice(_rdwr) no constant size\n");
11534                                         return -EFAULT;
11535                                 }
11536
11537                                 regs[BPF_REG_0].mem_size = meta.arg_constant.value;
11538
11539                                 /* PTR_MAYBE_NULL will be added when is_kfunc_ret_null is checked */
11540                                 regs[BPF_REG_0].type = PTR_TO_MEM | type_flag;
11541
11542                                 if (meta.func_id == special_kfunc_list[KF_bpf_dynptr_slice]) {
11543                                         regs[BPF_REG_0].type |= MEM_RDONLY;
11544                                 } else {
11545                                         /* this will set env->seen_direct_write to true */
11546                                         if (!may_access_direct_pkt_data(env, NULL, BPF_WRITE)) {
11547                                                 verbose(env, "the prog does not allow writes to packet data\n");
11548                                                 return -EINVAL;
11549                                         }
11550                                 }
11551
11552                                 if (!meta.initialized_dynptr.id) {
11553                                         verbose(env, "verifier internal error: no dynptr id\n");
11554                                         return -EFAULT;
11555                                 }
11556                                 regs[BPF_REG_0].dynptr_id = meta.initialized_dynptr.id;
11557
11558                                 /* we don't need to set BPF_REG_0's ref obj id
11559                                  * because packet slices are not refcounted (see
11560                                  * dynptr_type_refcounted)
11561                                  */
11562                         } else {
11563                                 verbose(env, "kernel function %s unhandled dynamic return type\n",
11564                                         meta.func_name);
11565                                 return -EFAULT;
11566                         }
11567                 } else if (!__btf_type_is_struct(ptr_type)) {
11568                         if (!meta.r0_size) {
11569                                 __u32 sz;
11570
11571                                 if (!IS_ERR(btf_resolve_size(desc_btf, ptr_type, &sz))) {
11572                                         meta.r0_size = sz;
11573                                         meta.r0_rdonly = true;
11574                                 }
11575                         }
11576                         if (!meta.r0_size) {
11577                                 ptr_type_name = btf_name_by_offset(desc_btf,
11578                                                                    ptr_type->name_off);
11579                                 verbose(env,
11580                                         "kernel function %s returns pointer type %s %s is not supported\n",
11581                                         func_name,
11582                                         btf_type_str(ptr_type),
11583                                         ptr_type_name);
11584                                 return -EINVAL;
11585                         }
11586
11587                         mark_reg_known_zero(env, regs, BPF_REG_0);
11588                         regs[BPF_REG_0].type = PTR_TO_MEM;
11589                         regs[BPF_REG_0].mem_size = meta.r0_size;
11590
11591                         if (meta.r0_rdonly)
11592                                 regs[BPF_REG_0].type |= MEM_RDONLY;
11593
11594                         /* Ensures we don't access the memory after a release_reference() */
11595                         if (meta.ref_obj_id)
11596                                 regs[BPF_REG_0].ref_obj_id = meta.ref_obj_id;
11597                 } else {
11598                         mark_reg_known_zero(env, regs, BPF_REG_0);
11599                         regs[BPF_REG_0].btf = desc_btf;
11600                         regs[BPF_REG_0].type = PTR_TO_BTF_ID;
11601                         regs[BPF_REG_0].btf_id = ptr_type_id;
11602                 }
11603
11604                 if (is_kfunc_ret_null(&meta)) {
11605                         regs[BPF_REG_0].type |= PTR_MAYBE_NULL;
11606                         /* For mark_ptr_or_null_reg, see 93c230e3f5bd6 */
11607                         regs[BPF_REG_0].id = ++env->id_gen;
11608                 }
11609                 mark_btf_func_reg_size(env, BPF_REG_0, sizeof(void *));
11610                 if (is_kfunc_acquire(&meta)) {
11611                         int id = acquire_reference_state(env, insn_idx);
11612
11613                         if (id < 0)
11614                                 return id;
11615                         if (is_kfunc_ret_null(&meta))
11616                                 regs[BPF_REG_0].id = id;
11617                         regs[BPF_REG_0].ref_obj_id = id;
11618                 } else if (meta.func_id == special_kfunc_list[KF_bpf_rbtree_first]) {
11619                         ref_set_non_owning(env, &regs[BPF_REG_0]);
11620                 }
11621
11622                 if (reg_may_point_to_spin_lock(&regs[BPF_REG_0]) && !regs[BPF_REG_0].id)
11623                         regs[BPF_REG_0].id = ++env->id_gen;
11624         } else if (btf_type_is_void(t)) {
11625                 if (meta.btf == btf_vmlinux && btf_id_set_contains(&special_kfunc_set, meta.func_id)) {
11626                         if (meta.func_id == special_kfunc_list[KF_bpf_obj_drop_impl]) {
11627                                 insn_aux->kptr_struct_meta =
11628                                         btf_find_struct_meta(meta.arg_btf,
11629                                                              meta.arg_btf_id);
11630                         }
11631                 }
11632         }
11633
11634         nargs = btf_type_vlen(meta.func_proto);
11635         args = (const struct btf_param *)(meta.func_proto + 1);
11636         for (i = 0; i < nargs; i++) {
11637                 u32 regno = i + 1;
11638
11639                 t = btf_type_skip_modifiers(desc_btf, args[i].type, NULL);
11640                 if (btf_type_is_ptr(t))
11641                         mark_btf_func_reg_size(env, regno, sizeof(void *));
11642                 else
11643                         /* scalar. ensured by btf_check_kfunc_arg_match() */
11644                         mark_btf_func_reg_size(env, regno, t->size);
11645         }
11646
11647         if (is_iter_next_kfunc(&meta)) {
11648                 err = process_iter_next_call(env, insn_idx, &meta);
11649                 if (err)
11650                         return err;
11651         }
11652
11653         return 0;
11654 }
11655
11656 static bool signed_add_overflows(s64 a, s64 b)
11657 {
11658         /* Do the add in u64, where overflow is well-defined */
11659         s64 res = (s64)((u64)a + (u64)b);
11660
11661         if (b < 0)
11662                 return res > a;
11663         return res < a;
11664 }
11665
11666 static bool signed_add32_overflows(s32 a, s32 b)
11667 {
11668         /* Do the add in u32, where overflow is well-defined */
11669         s32 res = (s32)((u32)a + (u32)b);
11670
11671         if (b < 0)
11672                 return res > a;
11673         return res < a;
11674 }
11675
11676 static bool signed_sub_overflows(s64 a, s64 b)
11677 {
11678         /* Do the sub in u64, where overflow is well-defined */
11679         s64 res = (s64)((u64)a - (u64)b);
11680
11681         if (b < 0)
11682                 return res < a;
11683         return res > a;
11684 }
11685
11686 static bool signed_sub32_overflows(s32 a, s32 b)
11687 {
11688         /* Do the sub in u32, where overflow is well-defined */
11689         s32 res = (s32)((u32)a - (u32)b);
11690
11691         if (b < 0)
11692                 return res < a;
11693         return res > a;
11694 }
11695
11696 static bool check_reg_sane_offset(struct bpf_verifier_env *env,
11697                                   const struct bpf_reg_state *reg,
11698                                   enum bpf_reg_type type)
11699 {
11700         bool known = tnum_is_const(reg->var_off);
11701         s64 val = reg->var_off.value;
11702         s64 smin = reg->smin_value;
11703
11704         if (known && (val >= BPF_MAX_VAR_OFF || val <= -BPF_MAX_VAR_OFF)) {
11705                 verbose(env, "math between %s pointer and %lld is not allowed\n",
11706                         reg_type_str(env, type), val);
11707                 return false;
11708         }
11709
11710         if (reg->off >= BPF_MAX_VAR_OFF || reg->off <= -BPF_MAX_VAR_OFF) {
11711                 verbose(env, "%s pointer offset %d is not allowed\n",
11712                         reg_type_str(env, type), reg->off);
11713                 return false;
11714         }
11715
11716         if (smin == S64_MIN) {
11717                 verbose(env, "math between %s pointer and register with unbounded min value is not allowed\n",
11718                         reg_type_str(env, type));
11719                 return false;
11720         }
11721
11722         if (smin >= BPF_MAX_VAR_OFF || smin <= -BPF_MAX_VAR_OFF) {
11723                 verbose(env, "value %lld makes %s pointer be out of bounds\n",
11724                         smin, reg_type_str(env, type));
11725                 return false;
11726         }
11727
11728         return true;
11729 }
11730
11731 enum {
11732         REASON_BOUNDS   = -1,
11733         REASON_TYPE     = -2,
11734         REASON_PATHS    = -3,
11735         REASON_LIMIT    = -4,
11736         REASON_STACK    = -5,
11737 };
11738
11739 static int retrieve_ptr_limit(const struct bpf_reg_state *ptr_reg,
11740                               u32 *alu_limit, bool mask_to_left)
11741 {
11742         u32 max = 0, ptr_limit = 0;
11743
11744         switch (ptr_reg->type) {
11745         case PTR_TO_STACK:
11746                 /* Offset 0 is out-of-bounds, but acceptable start for the
11747                  * left direction, see BPF_REG_FP. Also, unknown scalar
11748                  * offset where we would need to deal with min/max bounds is
11749                  * currently prohibited for unprivileged.
11750                  */
11751                 max = MAX_BPF_STACK + mask_to_left;
11752                 ptr_limit = -(ptr_reg->var_off.value + ptr_reg->off);
11753                 break;
11754         case PTR_TO_MAP_VALUE:
11755                 max = ptr_reg->map_ptr->value_size;
11756                 ptr_limit = (mask_to_left ?
11757                              ptr_reg->smin_value :
11758                              ptr_reg->umax_value) + ptr_reg->off;
11759                 break;
11760         default:
11761                 return REASON_TYPE;
11762         }
11763
11764         if (ptr_limit >= max)
11765                 return REASON_LIMIT;
11766         *alu_limit = ptr_limit;
11767         return 0;
11768 }
11769
11770 static bool can_skip_alu_sanitation(const struct bpf_verifier_env *env,
11771                                     const struct bpf_insn *insn)
11772 {
11773         return env->bypass_spec_v1 || BPF_SRC(insn->code) == BPF_K;
11774 }
11775
11776 static int update_alu_sanitation_state(struct bpf_insn_aux_data *aux,
11777                                        u32 alu_state, u32 alu_limit)
11778 {
11779         /* If we arrived here from different branches with different
11780          * state or limits to sanitize, then this won't work.
11781          */
11782         if (aux->alu_state &&
11783             (aux->alu_state != alu_state ||
11784              aux->alu_limit != alu_limit))
11785                 return REASON_PATHS;
11786
11787         /* Corresponding fixup done in do_misc_fixups(). */
11788         aux->alu_state = alu_state;
11789         aux->alu_limit = alu_limit;
11790         return 0;
11791 }
11792
11793 static int sanitize_val_alu(struct bpf_verifier_env *env,
11794                             struct bpf_insn *insn)
11795 {
11796         struct bpf_insn_aux_data *aux = cur_aux(env);
11797
11798         if (can_skip_alu_sanitation(env, insn))
11799                 return 0;
11800
11801         return update_alu_sanitation_state(aux, BPF_ALU_NON_POINTER, 0);
11802 }
11803
11804 static bool sanitize_needed(u8 opcode)
11805 {
11806         return opcode == BPF_ADD || opcode == BPF_SUB;
11807 }
11808
11809 struct bpf_sanitize_info {
11810         struct bpf_insn_aux_data aux;
11811         bool mask_to_left;
11812 };
11813
11814 static struct bpf_verifier_state *
11815 sanitize_speculative_path(struct bpf_verifier_env *env,
11816                           const struct bpf_insn *insn,
11817                           u32 next_idx, u32 curr_idx)
11818 {
11819         struct bpf_verifier_state *branch;
11820         struct bpf_reg_state *regs;
11821
11822         branch = push_stack(env, next_idx, curr_idx, true);
11823         if (branch && insn) {
11824                 regs = branch->frame[branch->curframe]->regs;
11825                 if (BPF_SRC(insn->code) == BPF_K) {
11826                         mark_reg_unknown(env, regs, insn->dst_reg);
11827                 } else if (BPF_SRC(insn->code) == BPF_X) {
11828                         mark_reg_unknown(env, regs, insn->dst_reg);
11829                         mark_reg_unknown(env, regs, insn->src_reg);
11830                 }
11831         }
11832         return branch;
11833 }
11834
11835 static int sanitize_ptr_alu(struct bpf_verifier_env *env,
11836                             struct bpf_insn *insn,
11837                             const struct bpf_reg_state *ptr_reg,
11838                             const struct bpf_reg_state *off_reg,
11839                             struct bpf_reg_state *dst_reg,
11840                             struct bpf_sanitize_info *info,
11841                             const bool commit_window)
11842 {
11843         struct bpf_insn_aux_data *aux = commit_window ? cur_aux(env) : &info->aux;
11844         struct bpf_verifier_state *vstate = env->cur_state;
11845         bool off_is_imm = tnum_is_const(off_reg->var_off);
11846         bool off_is_neg = off_reg->smin_value < 0;
11847         bool ptr_is_dst_reg = ptr_reg == dst_reg;
11848         u8 opcode = BPF_OP(insn->code);
11849         u32 alu_state, alu_limit;
11850         struct bpf_reg_state tmp;
11851         bool ret;
11852         int err;
11853
11854         if (can_skip_alu_sanitation(env, insn))
11855                 return 0;
11856
11857         /* We already marked aux for masking from non-speculative
11858          * paths, thus we got here in the first place. We only care
11859          * to explore bad access from here.
11860          */
11861         if (vstate->speculative)
11862                 goto do_sim;
11863
11864         if (!commit_window) {
11865                 if (!tnum_is_const(off_reg->var_off) &&
11866                     (off_reg->smin_value < 0) != (off_reg->smax_value < 0))
11867                         return REASON_BOUNDS;
11868
11869                 info->mask_to_left = (opcode == BPF_ADD &&  off_is_neg) ||
11870                                      (opcode == BPF_SUB && !off_is_neg);
11871         }
11872
11873         err = retrieve_ptr_limit(ptr_reg, &alu_limit, info->mask_to_left);
11874         if (err < 0)
11875                 return err;
11876
11877         if (commit_window) {
11878                 /* In commit phase we narrow the masking window based on
11879                  * the observed pointer move after the simulated operation.
11880                  */
11881                 alu_state = info->aux.alu_state;
11882                 alu_limit = abs(info->aux.alu_limit - alu_limit);
11883         } else {
11884                 alu_state  = off_is_neg ? BPF_ALU_NEG_VALUE : 0;
11885                 alu_state |= off_is_imm ? BPF_ALU_IMMEDIATE : 0;
11886                 alu_state |= ptr_is_dst_reg ?
11887                              BPF_ALU_SANITIZE_SRC : BPF_ALU_SANITIZE_DST;
11888
11889                 /* Limit pruning on unknown scalars to enable deep search for
11890                  * potential masking differences from other program paths.
11891                  */
11892                 if (!off_is_imm)
11893                         env->explore_alu_limits = true;
11894         }
11895
11896         err = update_alu_sanitation_state(aux, alu_state, alu_limit);
11897         if (err < 0)
11898                 return err;
11899 do_sim:
11900         /* If we're in commit phase, we're done here given we already
11901          * pushed the truncated dst_reg into the speculative verification
11902          * stack.
11903          *
11904          * Also, when register is a known constant, we rewrite register-based
11905          * operation to immediate-based, and thus do not need masking (and as
11906          * a consequence, do not need to simulate the zero-truncation either).
11907          */
11908         if (commit_window || off_is_imm)
11909                 return 0;
11910
11911         /* Simulate and find potential out-of-bounds access under
11912          * speculative execution from truncation as a result of
11913          * masking when off was not within expected range. If off
11914          * sits in dst, then we temporarily need to move ptr there
11915          * to simulate dst (== 0) +/-= ptr. Needed, for example,
11916          * for cases where we use K-based arithmetic in one direction
11917          * and truncated reg-based in the other in order to explore
11918          * bad access.
11919          */
11920         if (!ptr_is_dst_reg) {
11921                 tmp = *dst_reg;
11922                 copy_register_state(dst_reg, ptr_reg);
11923         }
11924         ret = sanitize_speculative_path(env, NULL, env->insn_idx + 1,
11925                                         env->insn_idx);
11926         if (!ptr_is_dst_reg && ret)
11927                 *dst_reg = tmp;
11928         return !ret ? REASON_STACK : 0;
11929 }
11930
11931 static void sanitize_mark_insn_seen(struct bpf_verifier_env *env)
11932 {
11933         struct bpf_verifier_state *vstate = env->cur_state;
11934
11935         /* If we simulate paths under speculation, we don't update the
11936          * insn as 'seen' such that when we verify unreachable paths in
11937          * the non-speculative domain, sanitize_dead_code() can still
11938          * rewrite/sanitize them.
11939          */
11940         if (!vstate->speculative)
11941                 env->insn_aux_data[env->insn_idx].seen = env->pass_cnt;
11942 }
11943
11944 static int sanitize_err(struct bpf_verifier_env *env,
11945                         const struct bpf_insn *insn, int reason,
11946                         const struct bpf_reg_state *off_reg,
11947                         const struct bpf_reg_state *dst_reg)
11948 {
11949         static const char *err = "pointer arithmetic with it prohibited for !root";
11950         const char *op = BPF_OP(insn->code) == BPF_ADD ? "add" : "sub";
11951         u32 dst = insn->dst_reg, src = insn->src_reg;
11952
11953         switch (reason) {
11954         case REASON_BOUNDS:
11955                 verbose(env, "R%d has unknown scalar with mixed signed bounds, %s\n",
11956                         off_reg == dst_reg ? dst : src, err);
11957                 break;
11958         case REASON_TYPE:
11959                 verbose(env, "R%d has pointer with unsupported alu operation, %s\n",
11960                         off_reg == dst_reg ? src : dst, err);
11961                 break;
11962         case REASON_PATHS:
11963                 verbose(env, "R%d tried to %s from different maps, paths or scalars, %s\n",
11964                         dst, op, err);
11965                 break;
11966         case REASON_LIMIT:
11967                 verbose(env, "R%d tried to %s beyond pointer bounds, %s\n",
11968                         dst, op, err);
11969                 break;
11970         case REASON_STACK:
11971                 verbose(env, "R%d could not be pushed for speculative verification, %s\n",
11972                         dst, err);
11973                 break;
11974         default:
11975                 verbose(env, "verifier internal error: unknown reason (%d)\n",
11976                         reason);
11977                 break;
11978         }
11979
11980         return -EACCES;
11981 }
11982
11983 /* check that stack access falls within stack limits and that 'reg' doesn't
11984  * have a variable offset.
11985  *
11986  * Variable offset is prohibited for unprivileged mode for simplicity since it
11987  * requires corresponding support in Spectre masking for stack ALU.  See also
11988  * retrieve_ptr_limit().
11989  *
11990  *
11991  * 'off' includes 'reg->off'.
11992  */
11993 static int check_stack_access_for_ptr_arithmetic(
11994                                 struct bpf_verifier_env *env,
11995                                 int regno,
11996                                 const struct bpf_reg_state *reg,
11997                                 int off)
11998 {
11999         if (!tnum_is_const(reg->var_off)) {
12000                 char tn_buf[48];
12001
12002                 tnum_strn(tn_buf, sizeof(tn_buf), reg->var_off);
12003                 verbose(env, "R%d variable stack access prohibited for !root, var_off=%s off=%d\n",
12004                         regno, tn_buf, off);
12005                 return -EACCES;
12006         }
12007
12008         if (off >= 0 || off < -MAX_BPF_STACK) {
12009                 verbose(env, "R%d stack pointer arithmetic goes out of range, "
12010                         "prohibited for !root; off=%d\n", regno, off);
12011                 return -EACCES;
12012         }
12013
12014         return 0;
12015 }
12016
12017 static int sanitize_check_bounds(struct bpf_verifier_env *env,
12018                                  const struct bpf_insn *insn,
12019                                  const struct bpf_reg_state *dst_reg)
12020 {
12021         u32 dst = insn->dst_reg;
12022
12023         /* For unprivileged we require that resulting offset must be in bounds
12024          * in order to be able to sanitize access later on.
12025          */
12026         if (env->bypass_spec_v1)
12027                 return 0;
12028
12029         switch (dst_reg->type) {
12030         case PTR_TO_STACK:
12031                 if (check_stack_access_for_ptr_arithmetic(env, dst, dst_reg,
12032                                         dst_reg->off + dst_reg->var_off.value))
12033                         return -EACCES;
12034                 break;
12035         case PTR_TO_MAP_VALUE:
12036                 if (check_map_access(env, dst, dst_reg->off, 1, false, ACCESS_HELPER)) {
12037                         verbose(env, "R%d pointer arithmetic of map value goes out of range, "
12038                                 "prohibited for !root\n", dst);
12039                         return -EACCES;
12040                 }
12041                 break;
12042         default:
12043                 break;
12044         }
12045
12046         return 0;
12047 }
12048
12049 /* Handles arithmetic on a pointer and a scalar: computes new min/max and var_off.
12050  * Caller should also handle BPF_MOV case separately.
12051  * If we return -EACCES, caller may want to try again treating pointer as a
12052  * scalar.  So we only emit a diagnostic if !env->allow_ptr_leaks.
12053  */
12054 static int adjust_ptr_min_max_vals(struct bpf_verifier_env *env,
12055                                    struct bpf_insn *insn,
12056                                    const struct bpf_reg_state *ptr_reg,
12057                                    const struct bpf_reg_state *off_reg)
12058 {
12059         struct bpf_verifier_state *vstate = env->cur_state;
12060         struct bpf_func_state *state = vstate->frame[vstate->curframe];
12061         struct bpf_reg_state *regs = state->regs, *dst_reg;
12062         bool known = tnum_is_const(off_reg->var_off);
12063         s64 smin_val = off_reg->smin_value, smax_val = off_reg->smax_value,
12064             smin_ptr = ptr_reg->smin_value, smax_ptr = ptr_reg->smax_value;
12065         u64 umin_val = off_reg->umin_value, umax_val = off_reg->umax_value,
12066             umin_ptr = ptr_reg->umin_value, umax_ptr = ptr_reg->umax_value;
12067         struct bpf_sanitize_info info = {};
12068         u8 opcode = BPF_OP(insn->code);
12069         u32 dst = insn->dst_reg;
12070         int ret;
12071
12072         dst_reg = &regs[dst];
12073
12074         if ((known && (smin_val != smax_val || umin_val != umax_val)) ||
12075             smin_val > smax_val || umin_val > umax_val) {
12076                 /* Taint dst register if offset had invalid bounds derived from
12077                  * e.g. dead branches.
12078                  */
12079                 __mark_reg_unknown(env, dst_reg);
12080                 return 0;
12081         }
12082
12083         if (BPF_CLASS(insn->code) != BPF_ALU64) {
12084                 /* 32-bit ALU ops on pointers produce (meaningless) scalars */
12085                 if (opcode == BPF_SUB && env->allow_ptr_leaks) {
12086                         __mark_reg_unknown(env, dst_reg);
12087                         return 0;
12088                 }
12089
12090                 verbose(env,
12091                         "R%d 32-bit pointer arithmetic prohibited\n",
12092                         dst);
12093                 return -EACCES;
12094         }
12095
12096         if (ptr_reg->type & PTR_MAYBE_NULL) {
12097                 verbose(env, "R%d pointer arithmetic on %s prohibited, null-check it first\n",
12098                         dst, reg_type_str(env, ptr_reg->type));
12099                 return -EACCES;
12100         }
12101
12102         switch (base_type(ptr_reg->type)) {
12103         case CONST_PTR_TO_MAP:
12104                 /* smin_val represents the known value */
12105                 if (known && smin_val == 0 && opcode == BPF_ADD)
12106                         break;
12107                 fallthrough;
12108         case PTR_TO_PACKET_END:
12109         case PTR_TO_SOCKET:
12110         case PTR_TO_SOCK_COMMON:
12111         case PTR_TO_TCP_SOCK:
12112         case PTR_TO_XDP_SOCK:
12113                 verbose(env, "R%d pointer arithmetic on %s prohibited\n",
12114                         dst, reg_type_str(env, ptr_reg->type));
12115                 return -EACCES;
12116         default:
12117                 break;
12118         }
12119
12120         /* In case of 'scalar += pointer', dst_reg inherits pointer type and id.
12121          * The id may be overwritten later if we create a new variable offset.
12122          */
12123         dst_reg->type = ptr_reg->type;
12124         dst_reg->id = ptr_reg->id;
12125
12126         if (!check_reg_sane_offset(env, off_reg, ptr_reg->type) ||
12127             !check_reg_sane_offset(env, ptr_reg, ptr_reg->type))
12128                 return -EINVAL;
12129
12130         /* pointer types do not carry 32-bit bounds at the moment. */
12131         __mark_reg32_unbounded(dst_reg);
12132
12133         if (sanitize_needed(opcode)) {
12134                 ret = sanitize_ptr_alu(env, insn, ptr_reg, off_reg, dst_reg,
12135                                        &info, false);
12136                 if (ret < 0)
12137                         return sanitize_err(env, insn, ret, off_reg, dst_reg);
12138         }
12139
12140         switch (opcode) {
12141         case BPF_ADD:
12142                 /* We can take a fixed offset as long as it doesn't overflow
12143                  * the s32 'off' field
12144                  */
12145                 if (known && (ptr_reg->off + smin_val ==
12146                               (s64)(s32)(ptr_reg->off + smin_val))) {
12147                         /* pointer += K.  Accumulate it into fixed offset */
12148                         dst_reg->smin_value = smin_ptr;
12149                         dst_reg->smax_value = smax_ptr;
12150                         dst_reg->umin_value = umin_ptr;
12151                         dst_reg->umax_value = umax_ptr;
12152                         dst_reg->var_off = ptr_reg->var_off;
12153                         dst_reg->off = ptr_reg->off + smin_val;
12154                         dst_reg->raw = ptr_reg->raw;
12155                         break;
12156                 }
12157                 /* A new variable offset is created.  Note that off_reg->off
12158                  * == 0, since it's a scalar.
12159                  * dst_reg gets the pointer type and since some positive
12160                  * integer value was added to the pointer, give it a new 'id'
12161                  * if it's a PTR_TO_PACKET.
12162                  * this creates a new 'base' pointer, off_reg (variable) gets
12163                  * added into the variable offset, and we copy the fixed offset
12164                  * from ptr_reg.
12165                  */
12166                 if (signed_add_overflows(smin_ptr, smin_val) ||
12167                     signed_add_overflows(smax_ptr, smax_val)) {
12168                         dst_reg->smin_value = S64_MIN;
12169                         dst_reg->smax_value = S64_MAX;
12170                 } else {
12171                         dst_reg->smin_value = smin_ptr + smin_val;
12172                         dst_reg->smax_value = smax_ptr + smax_val;
12173                 }
12174                 if (umin_ptr + umin_val < umin_ptr ||
12175                     umax_ptr + umax_val < umax_ptr) {
12176                         dst_reg->umin_value = 0;
12177                         dst_reg->umax_value = U64_MAX;
12178                 } else {
12179                         dst_reg->umin_value = umin_ptr + umin_val;
12180                         dst_reg->umax_value = umax_ptr + umax_val;
12181                 }
12182                 dst_reg->var_off = tnum_add(ptr_reg->var_off, off_reg->var_off);
12183                 dst_reg->off = ptr_reg->off;
12184                 dst_reg->raw = ptr_reg->raw;
12185                 if (reg_is_pkt_pointer(ptr_reg)) {
12186                         dst_reg->id = ++env->id_gen;
12187                         /* something was added to pkt_ptr, set range to zero */
12188                         memset(&dst_reg->raw, 0, sizeof(dst_reg->raw));
12189                 }
12190                 break;
12191         case BPF_SUB:
12192                 if (dst_reg == off_reg) {
12193                         /* scalar -= pointer.  Creates an unknown scalar */
12194                         verbose(env, "R%d tried to subtract pointer from scalar\n",
12195                                 dst);
12196                         return -EACCES;
12197                 }
12198                 /* We don't allow subtraction from FP, because (according to
12199                  * test_verifier.c test "invalid fp arithmetic", JITs might not
12200                  * be able to deal with it.
12201                  */
12202                 if (ptr_reg->type == PTR_TO_STACK) {
12203                         verbose(env, "R%d subtraction from stack pointer prohibited\n",
12204                                 dst);
12205                         return -EACCES;
12206                 }
12207                 if (known && (ptr_reg->off - smin_val ==
12208                               (s64)(s32)(ptr_reg->off - smin_val))) {
12209                         /* pointer -= K.  Subtract it from fixed offset */
12210                         dst_reg->smin_value = smin_ptr;
12211                         dst_reg->smax_value = smax_ptr;
12212                         dst_reg->umin_value = umin_ptr;
12213                         dst_reg->umax_value = umax_ptr;
12214                         dst_reg->var_off = ptr_reg->var_off;
12215                         dst_reg->id = ptr_reg->id;
12216                         dst_reg->off = ptr_reg->off - smin_val;
12217                         dst_reg->raw = ptr_reg->raw;
12218                         break;
12219                 }
12220                 /* A new variable offset is created.  If the subtrahend is known
12221                  * nonnegative, then any reg->range we had before is still good.
12222                  */
12223                 if (signed_sub_overflows(smin_ptr, smax_val) ||
12224                     signed_sub_overflows(smax_ptr, smin_val)) {
12225                         /* Overflow possible, we know nothing */
12226                         dst_reg->smin_value = S64_MIN;
12227                         dst_reg->smax_value = S64_MAX;
12228                 } else {
12229                         dst_reg->smin_value = smin_ptr - smax_val;
12230                         dst_reg->smax_value = smax_ptr - smin_val;
12231                 }
12232                 if (umin_ptr < umax_val) {
12233                         /* Overflow possible, we know nothing */
12234                         dst_reg->umin_value = 0;
12235                         dst_reg->umax_value = U64_MAX;
12236                 } else {
12237                         /* Cannot overflow (as long as bounds are consistent) */
12238                         dst_reg->umin_value = umin_ptr - umax_val;
12239                         dst_reg->umax_value = umax_ptr - umin_val;
12240                 }
12241                 dst_reg->var_off = tnum_sub(ptr_reg->var_off, off_reg->var_off);
12242                 dst_reg->off = ptr_reg->off;
12243                 dst_reg->raw = ptr_reg->raw;
12244                 if (reg_is_pkt_pointer(ptr_reg)) {
12245                         dst_reg->id = ++env->id_gen;
12246                         /* something was added to pkt_ptr, set range to zero */
12247                         if (smin_val < 0)
12248                                 memset(&dst_reg->raw, 0, sizeof(dst_reg->raw));
12249                 }
12250                 break;
12251         case BPF_AND:
12252         case BPF_OR:
12253         case BPF_XOR:
12254                 /* bitwise ops on pointers are troublesome, prohibit. */
12255                 verbose(env, "R%d bitwise operator %s on pointer prohibited\n",
12256                         dst, bpf_alu_string[opcode >> 4]);
12257                 return -EACCES;
12258         default:
12259                 /* other operators (e.g. MUL,LSH) produce non-pointer results */
12260                 verbose(env, "R%d pointer arithmetic with %s operator prohibited\n",
12261                         dst, bpf_alu_string[opcode >> 4]);
12262                 return -EACCES;
12263         }
12264
12265         if (!check_reg_sane_offset(env, dst_reg, ptr_reg->type))
12266                 return -EINVAL;
12267         reg_bounds_sync(dst_reg);
12268         if (sanitize_check_bounds(env, insn, dst_reg) < 0)
12269                 return -EACCES;
12270         if (sanitize_needed(opcode)) {
12271                 ret = sanitize_ptr_alu(env, insn, dst_reg, off_reg, dst_reg,
12272                                        &info, true);
12273                 if (ret < 0)
12274                         return sanitize_err(env, insn, ret, off_reg, dst_reg);
12275         }
12276
12277         return 0;
12278 }
12279
12280 static void scalar32_min_max_add(struct bpf_reg_state *dst_reg,
12281                                  struct bpf_reg_state *src_reg)
12282 {
12283         s32 smin_val = src_reg->s32_min_value;
12284         s32 smax_val = src_reg->s32_max_value;
12285         u32 umin_val = src_reg->u32_min_value;
12286         u32 umax_val = src_reg->u32_max_value;
12287
12288         if (signed_add32_overflows(dst_reg->s32_min_value, smin_val) ||
12289             signed_add32_overflows(dst_reg->s32_max_value, smax_val)) {
12290                 dst_reg->s32_min_value = S32_MIN;
12291                 dst_reg->s32_max_value = S32_MAX;
12292         } else {
12293                 dst_reg->s32_min_value += smin_val;
12294                 dst_reg->s32_max_value += smax_val;
12295         }
12296         if (dst_reg->u32_min_value + umin_val < umin_val ||
12297             dst_reg->u32_max_value + umax_val < umax_val) {
12298                 dst_reg->u32_min_value = 0;
12299                 dst_reg->u32_max_value = U32_MAX;
12300         } else {
12301                 dst_reg->u32_min_value += umin_val;
12302                 dst_reg->u32_max_value += umax_val;
12303         }
12304 }
12305
12306 static void scalar_min_max_add(struct bpf_reg_state *dst_reg,
12307                                struct bpf_reg_state *src_reg)
12308 {
12309         s64 smin_val = src_reg->smin_value;
12310         s64 smax_val = src_reg->smax_value;
12311         u64 umin_val = src_reg->umin_value;
12312         u64 umax_val = src_reg->umax_value;
12313
12314         if (signed_add_overflows(dst_reg->smin_value, smin_val) ||
12315             signed_add_overflows(dst_reg->smax_value, smax_val)) {
12316                 dst_reg->smin_value = S64_MIN;
12317                 dst_reg->smax_value = S64_MAX;
12318         } else {
12319                 dst_reg->smin_value += smin_val;
12320                 dst_reg->smax_value += smax_val;
12321         }
12322         if (dst_reg->umin_value + umin_val < umin_val ||
12323             dst_reg->umax_value + umax_val < umax_val) {
12324                 dst_reg->umin_value = 0;
12325                 dst_reg->umax_value = U64_MAX;
12326         } else {
12327                 dst_reg->umin_value += umin_val;
12328                 dst_reg->umax_value += umax_val;
12329         }
12330 }
12331
12332 static void scalar32_min_max_sub(struct bpf_reg_state *dst_reg,
12333                                  struct bpf_reg_state *src_reg)
12334 {
12335         s32 smin_val = src_reg->s32_min_value;
12336         s32 smax_val = src_reg->s32_max_value;
12337         u32 umin_val = src_reg->u32_min_value;
12338         u32 umax_val = src_reg->u32_max_value;
12339
12340         if (signed_sub32_overflows(dst_reg->s32_min_value, smax_val) ||
12341             signed_sub32_overflows(dst_reg->s32_max_value, smin_val)) {
12342                 /* Overflow possible, we know nothing */
12343                 dst_reg->s32_min_value = S32_MIN;
12344                 dst_reg->s32_max_value = S32_MAX;
12345         } else {
12346                 dst_reg->s32_min_value -= smax_val;
12347                 dst_reg->s32_max_value -= smin_val;
12348         }
12349         if (dst_reg->u32_min_value < umax_val) {
12350                 /* Overflow possible, we know nothing */
12351                 dst_reg->u32_min_value = 0;
12352                 dst_reg->u32_max_value = U32_MAX;
12353         } else {
12354                 /* Cannot overflow (as long as bounds are consistent) */
12355                 dst_reg->u32_min_value -= umax_val;
12356                 dst_reg->u32_max_value -= umin_val;
12357         }
12358 }
12359
12360 static void scalar_min_max_sub(struct bpf_reg_state *dst_reg,
12361                                struct bpf_reg_state *src_reg)
12362 {
12363         s64 smin_val = src_reg->smin_value;
12364         s64 smax_val = src_reg->smax_value;
12365         u64 umin_val = src_reg->umin_value;
12366         u64 umax_val = src_reg->umax_value;
12367
12368         if (signed_sub_overflows(dst_reg->smin_value, smax_val) ||
12369             signed_sub_overflows(dst_reg->smax_value, smin_val)) {
12370                 /* Overflow possible, we know nothing */
12371                 dst_reg->smin_value = S64_MIN;
12372                 dst_reg->smax_value = S64_MAX;
12373         } else {
12374                 dst_reg->smin_value -= smax_val;
12375                 dst_reg->smax_value -= smin_val;
12376         }
12377         if (dst_reg->umin_value < umax_val) {
12378                 /* Overflow possible, we know nothing */
12379                 dst_reg->umin_value = 0;
12380                 dst_reg->umax_value = U64_MAX;
12381         } else {
12382                 /* Cannot overflow (as long as bounds are consistent) */
12383                 dst_reg->umin_value -= umax_val;
12384                 dst_reg->umax_value -= umin_val;
12385         }
12386 }
12387
12388 static void scalar32_min_max_mul(struct bpf_reg_state *dst_reg,
12389                                  struct bpf_reg_state *src_reg)
12390 {
12391         s32 smin_val = src_reg->s32_min_value;
12392         u32 umin_val = src_reg->u32_min_value;
12393         u32 umax_val = src_reg->u32_max_value;
12394
12395         if (smin_val < 0 || dst_reg->s32_min_value < 0) {
12396                 /* Ain't nobody got time to multiply that sign */
12397                 __mark_reg32_unbounded(dst_reg);
12398                 return;
12399         }
12400         /* Both values are positive, so we can work with unsigned and
12401          * copy the result to signed (unless it exceeds S32_MAX).
12402          */
12403         if (umax_val > U16_MAX || dst_reg->u32_max_value > U16_MAX) {
12404                 /* Potential overflow, we know nothing */
12405                 __mark_reg32_unbounded(dst_reg);
12406                 return;
12407         }
12408         dst_reg->u32_min_value *= umin_val;
12409         dst_reg->u32_max_value *= umax_val;
12410         if (dst_reg->u32_max_value > S32_MAX) {
12411                 /* Overflow possible, we know nothing */
12412                 dst_reg->s32_min_value = S32_MIN;
12413                 dst_reg->s32_max_value = S32_MAX;
12414         } else {
12415                 dst_reg->s32_min_value = dst_reg->u32_min_value;
12416                 dst_reg->s32_max_value = dst_reg->u32_max_value;
12417         }
12418 }
12419
12420 static void scalar_min_max_mul(struct bpf_reg_state *dst_reg,
12421                                struct bpf_reg_state *src_reg)
12422 {
12423         s64 smin_val = src_reg->smin_value;
12424         u64 umin_val = src_reg->umin_value;
12425         u64 umax_val = src_reg->umax_value;
12426
12427         if (smin_val < 0 || dst_reg->smin_value < 0) {
12428                 /* Ain't nobody got time to multiply that sign */
12429                 __mark_reg64_unbounded(dst_reg);
12430                 return;
12431         }
12432         /* Both values are positive, so we can work with unsigned and
12433          * copy the result to signed (unless it exceeds S64_MAX).
12434          */
12435         if (umax_val > U32_MAX || dst_reg->umax_value > U32_MAX) {
12436                 /* Potential overflow, we know nothing */
12437                 __mark_reg64_unbounded(dst_reg);
12438                 return;
12439         }
12440         dst_reg->umin_value *= umin_val;
12441         dst_reg->umax_value *= umax_val;
12442         if (dst_reg->umax_value > S64_MAX) {
12443                 /* Overflow possible, we know nothing */
12444                 dst_reg->smin_value = S64_MIN;
12445                 dst_reg->smax_value = S64_MAX;
12446         } else {
12447                 dst_reg->smin_value = dst_reg->umin_value;
12448                 dst_reg->smax_value = dst_reg->umax_value;
12449         }
12450 }
12451
12452 static void scalar32_min_max_and(struct bpf_reg_state *dst_reg,
12453                                  struct bpf_reg_state *src_reg)
12454 {
12455         bool src_known = tnum_subreg_is_const(src_reg->var_off);
12456         bool dst_known = tnum_subreg_is_const(dst_reg->var_off);
12457         struct tnum var32_off = tnum_subreg(dst_reg->var_off);
12458         s32 smin_val = src_reg->s32_min_value;
12459         u32 umax_val = src_reg->u32_max_value;
12460
12461         if (src_known && dst_known) {
12462                 __mark_reg32_known(dst_reg, var32_off.value);
12463                 return;
12464         }
12465
12466         /* We get our minimum from the var_off, since that's inherently
12467          * bitwise.  Our maximum is the minimum of the operands' maxima.
12468          */
12469         dst_reg->u32_min_value = var32_off.value;
12470         dst_reg->u32_max_value = min(dst_reg->u32_max_value, umax_val);
12471         if (dst_reg->s32_min_value < 0 || smin_val < 0) {
12472                 /* Lose signed bounds when ANDing negative numbers,
12473                  * ain't nobody got time for that.
12474                  */
12475                 dst_reg->s32_min_value = S32_MIN;
12476                 dst_reg->s32_max_value = S32_MAX;
12477         } else {
12478                 /* ANDing two positives gives a positive, so safe to
12479                  * cast result into s64.
12480                  */
12481                 dst_reg->s32_min_value = dst_reg->u32_min_value;
12482                 dst_reg->s32_max_value = dst_reg->u32_max_value;
12483         }
12484 }
12485
12486 static void scalar_min_max_and(struct bpf_reg_state *dst_reg,
12487                                struct bpf_reg_state *src_reg)
12488 {
12489         bool src_known = tnum_is_const(src_reg->var_off);
12490         bool dst_known = tnum_is_const(dst_reg->var_off);
12491         s64 smin_val = src_reg->smin_value;
12492         u64 umax_val = src_reg->umax_value;
12493
12494         if (src_known && dst_known) {
12495                 __mark_reg_known(dst_reg, dst_reg->var_off.value);
12496                 return;
12497         }
12498
12499         /* We get our minimum from the var_off, since that's inherently
12500          * bitwise.  Our maximum is the minimum of the operands' maxima.
12501          */
12502         dst_reg->umin_value = dst_reg->var_off.value;
12503         dst_reg->umax_value = min(dst_reg->umax_value, umax_val);
12504         if (dst_reg->smin_value < 0 || smin_val < 0) {
12505                 /* Lose signed bounds when ANDing negative numbers,
12506                  * ain't nobody got time for that.
12507                  */
12508                 dst_reg->smin_value = S64_MIN;
12509                 dst_reg->smax_value = S64_MAX;
12510         } else {
12511                 /* ANDing two positives gives a positive, so safe to
12512                  * cast result into s64.
12513                  */
12514                 dst_reg->smin_value = dst_reg->umin_value;
12515                 dst_reg->smax_value = dst_reg->umax_value;
12516         }
12517         /* We may learn something more from the var_off */
12518         __update_reg_bounds(dst_reg);
12519 }
12520
12521 static void scalar32_min_max_or(struct bpf_reg_state *dst_reg,
12522                                 struct bpf_reg_state *src_reg)
12523 {
12524         bool src_known = tnum_subreg_is_const(src_reg->var_off);
12525         bool dst_known = tnum_subreg_is_const(dst_reg->var_off);
12526         struct tnum var32_off = tnum_subreg(dst_reg->var_off);
12527         s32 smin_val = src_reg->s32_min_value;
12528         u32 umin_val = src_reg->u32_min_value;
12529
12530         if (src_known && dst_known) {
12531                 __mark_reg32_known(dst_reg, var32_off.value);
12532                 return;
12533         }
12534
12535         /* We get our maximum from the var_off, and our minimum is the
12536          * maximum of the operands' minima
12537          */
12538         dst_reg->u32_min_value = max(dst_reg->u32_min_value, umin_val);
12539         dst_reg->u32_max_value = var32_off.value | var32_off.mask;
12540         if (dst_reg->s32_min_value < 0 || smin_val < 0) {
12541                 /* Lose signed bounds when ORing negative numbers,
12542                  * ain't nobody got time for that.
12543                  */
12544                 dst_reg->s32_min_value = S32_MIN;
12545                 dst_reg->s32_max_value = S32_MAX;
12546         } else {
12547                 /* ORing two positives gives a positive, so safe to
12548                  * cast result into s64.
12549                  */
12550                 dst_reg->s32_min_value = dst_reg->u32_min_value;
12551                 dst_reg->s32_max_value = dst_reg->u32_max_value;
12552         }
12553 }
12554
12555 static void scalar_min_max_or(struct bpf_reg_state *dst_reg,
12556                               struct bpf_reg_state *src_reg)
12557 {
12558         bool src_known = tnum_is_const(src_reg->var_off);
12559         bool dst_known = tnum_is_const(dst_reg->var_off);
12560         s64 smin_val = src_reg->smin_value;
12561         u64 umin_val = src_reg->umin_value;
12562
12563         if (src_known && dst_known) {
12564                 __mark_reg_known(dst_reg, dst_reg->var_off.value);
12565                 return;
12566         }
12567
12568         /* We get our maximum from the var_off, and our minimum is the
12569          * maximum of the operands' minima
12570          */
12571         dst_reg->umin_value = max(dst_reg->umin_value, umin_val);
12572         dst_reg->umax_value = dst_reg->var_off.value | dst_reg->var_off.mask;
12573         if (dst_reg->smin_value < 0 || smin_val < 0) {
12574                 /* Lose signed bounds when ORing negative numbers,
12575                  * ain't nobody got time for that.
12576                  */
12577                 dst_reg->smin_value = S64_MIN;
12578                 dst_reg->smax_value = S64_MAX;
12579         } else {
12580                 /* ORing two positives gives a positive, so safe to
12581                  * cast result into s64.
12582                  */
12583                 dst_reg->smin_value = dst_reg->umin_value;
12584                 dst_reg->smax_value = dst_reg->umax_value;
12585         }
12586         /* We may learn something more from the var_off */
12587         __update_reg_bounds(dst_reg);
12588 }
12589
12590 static void scalar32_min_max_xor(struct bpf_reg_state *dst_reg,
12591                                  struct bpf_reg_state *src_reg)
12592 {
12593         bool src_known = tnum_subreg_is_const(src_reg->var_off);
12594         bool dst_known = tnum_subreg_is_const(dst_reg->var_off);
12595         struct tnum var32_off = tnum_subreg(dst_reg->var_off);
12596         s32 smin_val = src_reg->s32_min_value;
12597
12598         if (src_known && dst_known) {
12599                 __mark_reg32_known(dst_reg, var32_off.value);
12600                 return;
12601         }
12602
12603         /* We get both minimum and maximum from the var32_off. */
12604         dst_reg->u32_min_value = var32_off.value;
12605         dst_reg->u32_max_value = var32_off.value | var32_off.mask;
12606
12607         if (dst_reg->s32_min_value >= 0 && smin_val >= 0) {
12608                 /* XORing two positive sign numbers gives a positive,
12609                  * so safe to cast u32 result into s32.
12610                  */
12611                 dst_reg->s32_min_value = dst_reg->u32_min_value;
12612                 dst_reg->s32_max_value = dst_reg->u32_max_value;
12613         } else {
12614                 dst_reg->s32_min_value = S32_MIN;
12615                 dst_reg->s32_max_value = S32_MAX;
12616         }
12617 }
12618
12619 static void scalar_min_max_xor(struct bpf_reg_state *dst_reg,
12620                                struct bpf_reg_state *src_reg)
12621 {
12622         bool src_known = tnum_is_const(src_reg->var_off);
12623         bool dst_known = tnum_is_const(dst_reg->var_off);
12624         s64 smin_val = src_reg->smin_value;
12625
12626         if (src_known && dst_known) {
12627                 /* dst_reg->var_off.value has been updated earlier */
12628                 __mark_reg_known(dst_reg, dst_reg->var_off.value);
12629                 return;
12630         }
12631
12632         /* We get both minimum and maximum from the var_off. */
12633         dst_reg->umin_value = dst_reg->var_off.value;
12634         dst_reg->umax_value = dst_reg->var_off.value | dst_reg->var_off.mask;
12635
12636         if (dst_reg->smin_value >= 0 && smin_val >= 0) {
12637                 /* XORing two positive sign numbers gives a positive,
12638                  * so safe to cast u64 result into s64.
12639                  */
12640                 dst_reg->smin_value = dst_reg->umin_value;
12641                 dst_reg->smax_value = dst_reg->umax_value;
12642         } else {
12643                 dst_reg->smin_value = S64_MIN;
12644                 dst_reg->smax_value = S64_MAX;
12645         }
12646
12647         __update_reg_bounds(dst_reg);
12648 }
12649
12650 static void __scalar32_min_max_lsh(struct bpf_reg_state *dst_reg,
12651                                    u64 umin_val, u64 umax_val)
12652 {
12653         /* We lose all sign bit information (except what we can pick
12654          * up from var_off)
12655          */
12656         dst_reg->s32_min_value = S32_MIN;
12657         dst_reg->s32_max_value = S32_MAX;
12658         /* If we might shift our top bit out, then we know nothing */
12659         if (umax_val > 31 || dst_reg->u32_max_value > 1ULL << (31 - umax_val)) {
12660                 dst_reg->u32_min_value = 0;
12661                 dst_reg->u32_max_value = U32_MAX;
12662         } else {
12663                 dst_reg->u32_min_value <<= umin_val;
12664                 dst_reg->u32_max_value <<= umax_val;
12665         }
12666 }
12667
12668 static void scalar32_min_max_lsh(struct bpf_reg_state *dst_reg,
12669                                  struct bpf_reg_state *src_reg)
12670 {
12671         u32 umax_val = src_reg->u32_max_value;
12672         u32 umin_val = src_reg->u32_min_value;
12673         /* u32 alu operation will zext upper bits */
12674         struct tnum subreg = tnum_subreg(dst_reg->var_off);
12675
12676         __scalar32_min_max_lsh(dst_reg, umin_val, umax_val);
12677         dst_reg->var_off = tnum_subreg(tnum_lshift(subreg, umin_val));
12678         /* Not required but being careful mark reg64 bounds as unknown so
12679          * that we are forced to pick them up from tnum and zext later and
12680          * if some path skips this step we are still safe.
12681          */
12682         __mark_reg64_unbounded(dst_reg);
12683         __update_reg32_bounds(dst_reg);
12684 }
12685
12686 static void __scalar64_min_max_lsh(struct bpf_reg_state *dst_reg,
12687                                    u64 umin_val, u64 umax_val)
12688 {
12689         /* Special case <<32 because it is a common compiler pattern to sign
12690          * extend subreg by doing <<32 s>>32. In this case if 32bit bounds are
12691          * positive we know this shift will also be positive so we can track
12692          * bounds correctly. Otherwise we lose all sign bit information except
12693          * what we can pick up from var_off. Perhaps we can generalize this
12694          * later to shifts of any length.
12695          */
12696         if (umin_val == 32 && umax_val == 32 && dst_reg->s32_max_value >= 0)
12697                 dst_reg->smax_value = (s64)dst_reg->s32_max_value << 32;
12698         else
12699                 dst_reg->smax_value = S64_MAX;
12700
12701         if (umin_val == 32 && umax_val == 32 && dst_reg->s32_min_value >= 0)
12702                 dst_reg->smin_value = (s64)dst_reg->s32_min_value << 32;
12703         else
12704                 dst_reg->smin_value = S64_MIN;
12705
12706         /* If we might shift our top bit out, then we know nothing */
12707         if (dst_reg->umax_value > 1ULL << (63 - umax_val)) {
12708                 dst_reg->umin_value = 0;
12709                 dst_reg->umax_value = U64_MAX;
12710         } else {
12711                 dst_reg->umin_value <<= umin_val;
12712                 dst_reg->umax_value <<= umax_val;
12713         }
12714 }
12715
12716 static void scalar_min_max_lsh(struct bpf_reg_state *dst_reg,
12717                                struct bpf_reg_state *src_reg)
12718 {
12719         u64 umax_val = src_reg->umax_value;
12720         u64 umin_val = src_reg->umin_value;
12721
12722         /* scalar64 calc uses 32bit unshifted bounds so must be called first */
12723         __scalar64_min_max_lsh(dst_reg, umin_val, umax_val);
12724         __scalar32_min_max_lsh(dst_reg, umin_val, umax_val);
12725
12726         dst_reg->var_off = tnum_lshift(dst_reg->var_off, umin_val);
12727         /* We may learn something more from the var_off */
12728         __update_reg_bounds(dst_reg);
12729 }
12730
12731 static void scalar32_min_max_rsh(struct bpf_reg_state *dst_reg,
12732                                  struct bpf_reg_state *src_reg)
12733 {
12734         struct tnum subreg = tnum_subreg(dst_reg->var_off);
12735         u32 umax_val = src_reg->u32_max_value;
12736         u32 umin_val = src_reg->u32_min_value;
12737
12738         /* BPF_RSH is an unsigned shift.  If the value in dst_reg might
12739          * be negative, then either:
12740          * 1) src_reg might be zero, so the sign bit of the result is
12741          *    unknown, so we lose our signed bounds
12742          * 2) it's known negative, thus the unsigned bounds capture the
12743          *    signed bounds
12744          * 3) the signed bounds cross zero, so they tell us nothing
12745          *    about the result
12746          * If the value in dst_reg is known nonnegative, then again the
12747          * unsigned bounds capture the signed bounds.
12748          * Thus, in all cases it suffices to blow away our signed bounds
12749          * and rely on inferring new ones from the unsigned bounds and
12750          * var_off of the result.
12751          */
12752         dst_reg->s32_min_value = S32_MIN;
12753         dst_reg->s32_max_value = S32_MAX;
12754
12755         dst_reg->var_off = tnum_rshift(subreg, umin_val);
12756         dst_reg->u32_min_value >>= umax_val;
12757         dst_reg->u32_max_value >>= umin_val;
12758
12759         __mark_reg64_unbounded(dst_reg);
12760         __update_reg32_bounds(dst_reg);
12761 }
12762
12763 static void scalar_min_max_rsh(struct bpf_reg_state *dst_reg,
12764                                struct bpf_reg_state *src_reg)
12765 {
12766         u64 umax_val = src_reg->umax_value;
12767         u64 umin_val = src_reg->umin_value;
12768
12769         /* BPF_RSH is an unsigned shift.  If the value in dst_reg might
12770          * be negative, then either:
12771          * 1) src_reg might be zero, so the sign bit of the result is
12772          *    unknown, so we lose our signed bounds
12773          * 2) it's known negative, thus the unsigned bounds capture the
12774          *    signed bounds
12775          * 3) the signed bounds cross zero, so they tell us nothing
12776          *    about the result
12777          * If the value in dst_reg is known nonnegative, then again the
12778          * unsigned bounds capture the signed bounds.
12779          * Thus, in all cases it suffices to blow away our signed bounds
12780          * and rely on inferring new ones from the unsigned bounds and
12781          * var_off of the result.
12782          */
12783         dst_reg->smin_value = S64_MIN;
12784         dst_reg->smax_value = S64_MAX;
12785         dst_reg->var_off = tnum_rshift(dst_reg->var_off, umin_val);
12786         dst_reg->umin_value >>= umax_val;
12787         dst_reg->umax_value >>= umin_val;
12788
12789         /* Its not easy to operate on alu32 bounds here because it depends
12790          * on bits being shifted in. Take easy way out and mark unbounded
12791          * so we can recalculate later from tnum.
12792          */
12793         __mark_reg32_unbounded(dst_reg);
12794         __update_reg_bounds(dst_reg);
12795 }
12796
12797 static void scalar32_min_max_arsh(struct bpf_reg_state *dst_reg,
12798                                   struct bpf_reg_state *src_reg)
12799 {
12800         u64 umin_val = src_reg->u32_min_value;
12801
12802         /* Upon reaching here, src_known is true and
12803          * umax_val is equal to umin_val.
12804          */
12805         dst_reg->s32_min_value = (u32)(((s32)dst_reg->s32_min_value) >> umin_val);
12806         dst_reg->s32_max_value = (u32)(((s32)dst_reg->s32_max_value) >> umin_val);
12807
12808         dst_reg->var_off = tnum_arshift(tnum_subreg(dst_reg->var_off), umin_val, 32);
12809
12810         /* blow away the dst_reg umin_value/umax_value and rely on
12811          * dst_reg var_off to refine the result.
12812          */
12813         dst_reg->u32_min_value = 0;
12814         dst_reg->u32_max_value = U32_MAX;
12815
12816         __mark_reg64_unbounded(dst_reg);
12817         __update_reg32_bounds(dst_reg);
12818 }
12819
12820 static void scalar_min_max_arsh(struct bpf_reg_state *dst_reg,
12821                                 struct bpf_reg_state *src_reg)
12822 {
12823         u64 umin_val = src_reg->umin_value;
12824
12825         /* Upon reaching here, src_known is true and umax_val is equal
12826          * to umin_val.
12827          */
12828         dst_reg->smin_value >>= umin_val;
12829         dst_reg->smax_value >>= umin_val;
12830
12831         dst_reg->var_off = tnum_arshift(dst_reg->var_off, umin_val, 64);
12832
12833         /* blow away the dst_reg umin_value/umax_value and rely on
12834          * dst_reg var_off to refine the result.
12835          */
12836         dst_reg->umin_value = 0;
12837         dst_reg->umax_value = U64_MAX;
12838
12839         /* Its not easy to operate on alu32 bounds here because it depends
12840          * on bits being shifted in from upper 32-bits. Take easy way out
12841          * and mark unbounded so we can recalculate later from tnum.
12842          */
12843         __mark_reg32_unbounded(dst_reg);
12844         __update_reg_bounds(dst_reg);
12845 }
12846
12847 /* WARNING: This function does calculations on 64-bit values, but the actual
12848  * execution may occur on 32-bit values. Therefore, things like bitshifts
12849  * need extra checks in the 32-bit case.
12850  */
12851 static int adjust_scalar_min_max_vals(struct bpf_verifier_env *env,
12852                                       struct bpf_insn *insn,
12853                                       struct bpf_reg_state *dst_reg,
12854                                       struct bpf_reg_state src_reg)
12855 {
12856         struct bpf_reg_state *regs = cur_regs(env);
12857         u8 opcode = BPF_OP(insn->code);
12858         bool src_known;
12859         s64 smin_val, smax_val;
12860         u64 umin_val, umax_val;
12861         s32 s32_min_val, s32_max_val;
12862         u32 u32_min_val, u32_max_val;
12863         u64 insn_bitness = (BPF_CLASS(insn->code) == BPF_ALU64) ? 64 : 32;
12864         bool alu32 = (BPF_CLASS(insn->code) != BPF_ALU64);
12865         int ret;
12866
12867         smin_val = src_reg.smin_value;
12868         smax_val = src_reg.smax_value;
12869         umin_val = src_reg.umin_value;
12870         umax_val = src_reg.umax_value;
12871
12872         s32_min_val = src_reg.s32_min_value;
12873         s32_max_val = src_reg.s32_max_value;
12874         u32_min_val = src_reg.u32_min_value;
12875         u32_max_val = src_reg.u32_max_value;
12876
12877         if (alu32) {
12878                 src_known = tnum_subreg_is_const(src_reg.var_off);
12879                 if ((src_known &&
12880                      (s32_min_val != s32_max_val || u32_min_val != u32_max_val)) ||
12881                     s32_min_val > s32_max_val || u32_min_val > u32_max_val) {
12882                         /* Taint dst register if offset had invalid bounds
12883                          * derived from e.g. dead branches.
12884                          */
12885                         __mark_reg_unknown(env, dst_reg);
12886                         return 0;
12887                 }
12888         } else {
12889                 src_known = tnum_is_const(src_reg.var_off);
12890                 if ((src_known &&
12891                      (smin_val != smax_val || umin_val != umax_val)) ||
12892                     smin_val > smax_val || umin_val > umax_val) {
12893                         /* Taint dst register if offset had invalid bounds
12894                          * derived from e.g. dead branches.
12895                          */
12896                         __mark_reg_unknown(env, dst_reg);
12897                         return 0;
12898                 }
12899         }
12900
12901         if (!src_known &&
12902             opcode != BPF_ADD && opcode != BPF_SUB && opcode != BPF_AND) {
12903                 __mark_reg_unknown(env, dst_reg);
12904                 return 0;
12905         }
12906
12907         if (sanitize_needed(opcode)) {
12908                 ret = sanitize_val_alu(env, insn);
12909                 if (ret < 0)
12910                         return sanitize_err(env, insn, ret, NULL, NULL);
12911         }
12912
12913         /* Calculate sign/unsigned bounds and tnum for alu32 and alu64 bit ops.
12914          * There are two classes of instructions: The first class we track both
12915          * alu32 and alu64 sign/unsigned bounds independently this provides the
12916          * greatest amount of precision when alu operations are mixed with jmp32
12917          * operations. These operations are BPF_ADD, BPF_SUB, BPF_MUL, BPF_ADD,
12918          * and BPF_OR. This is possible because these ops have fairly easy to
12919          * understand and calculate behavior in both 32-bit and 64-bit alu ops.
12920          * See alu32 verifier tests for examples. The second class of
12921          * operations, BPF_LSH, BPF_RSH, and BPF_ARSH, however are not so easy
12922          * with regards to tracking sign/unsigned bounds because the bits may
12923          * cross subreg boundaries in the alu64 case. When this happens we mark
12924          * the reg unbounded in the subreg bound space and use the resulting
12925          * tnum to calculate an approximation of the sign/unsigned bounds.
12926          */
12927         switch (opcode) {
12928         case BPF_ADD:
12929                 scalar32_min_max_add(dst_reg, &src_reg);
12930                 scalar_min_max_add(dst_reg, &src_reg);
12931                 dst_reg->var_off = tnum_add(dst_reg->var_off, src_reg.var_off);
12932                 break;
12933         case BPF_SUB:
12934                 scalar32_min_max_sub(dst_reg, &src_reg);
12935                 scalar_min_max_sub(dst_reg, &src_reg);
12936                 dst_reg->var_off = tnum_sub(dst_reg->var_off, src_reg.var_off);
12937                 break;
12938         case BPF_MUL:
12939                 dst_reg->var_off = tnum_mul(dst_reg->var_off, src_reg.var_off);
12940                 scalar32_min_max_mul(dst_reg, &src_reg);
12941                 scalar_min_max_mul(dst_reg, &src_reg);
12942                 break;
12943         case BPF_AND:
12944                 dst_reg->var_off = tnum_and(dst_reg->var_off, src_reg.var_off);
12945                 scalar32_min_max_and(dst_reg, &src_reg);
12946                 scalar_min_max_and(dst_reg, &src_reg);
12947                 break;
12948         case BPF_OR:
12949                 dst_reg->var_off = tnum_or(dst_reg->var_off, src_reg.var_off);
12950                 scalar32_min_max_or(dst_reg, &src_reg);
12951                 scalar_min_max_or(dst_reg, &src_reg);
12952                 break;
12953         case BPF_XOR:
12954                 dst_reg->var_off = tnum_xor(dst_reg->var_off, src_reg.var_off);
12955                 scalar32_min_max_xor(dst_reg, &src_reg);
12956                 scalar_min_max_xor(dst_reg, &src_reg);
12957                 break;
12958         case BPF_LSH:
12959                 if (umax_val >= insn_bitness) {
12960                         /* Shifts greater than 31 or 63 are undefined.
12961                          * This includes shifts by a negative number.
12962                          */
12963                         mark_reg_unknown(env, regs, insn->dst_reg);
12964                         break;
12965                 }
12966                 if (alu32)
12967                         scalar32_min_max_lsh(dst_reg, &src_reg);
12968                 else
12969                         scalar_min_max_lsh(dst_reg, &src_reg);
12970                 break;
12971         case BPF_RSH:
12972                 if (umax_val >= insn_bitness) {
12973                         /* Shifts greater than 31 or 63 are undefined.
12974                          * This includes shifts by a negative number.
12975                          */
12976                         mark_reg_unknown(env, regs, insn->dst_reg);
12977                         break;
12978                 }
12979                 if (alu32)
12980                         scalar32_min_max_rsh(dst_reg, &src_reg);
12981                 else
12982                         scalar_min_max_rsh(dst_reg, &src_reg);
12983                 break;
12984         case BPF_ARSH:
12985                 if (umax_val >= insn_bitness) {
12986                         /* Shifts greater than 31 or 63 are undefined.
12987                          * This includes shifts by a negative number.
12988                          */
12989                         mark_reg_unknown(env, regs, insn->dst_reg);
12990                         break;
12991                 }
12992                 if (alu32)
12993                         scalar32_min_max_arsh(dst_reg, &src_reg);
12994                 else
12995                         scalar_min_max_arsh(dst_reg, &src_reg);
12996                 break;
12997         default:
12998                 mark_reg_unknown(env, regs, insn->dst_reg);
12999                 break;
13000         }
13001
13002         /* ALU32 ops are zero extended into 64bit register */
13003         if (alu32)
13004                 zext_32_to_64(dst_reg);
13005         reg_bounds_sync(dst_reg);
13006         return 0;
13007 }
13008
13009 /* Handles ALU ops other than BPF_END, BPF_NEG and BPF_MOV: computes new min/max
13010  * and var_off.
13011  */
13012 static int adjust_reg_min_max_vals(struct bpf_verifier_env *env,
13013                                    struct bpf_insn *insn)
13014 {
13015         struct bpf_verifier_state *vstate = env->cur_state;
13016         struct bpf_func_state *state = vstate->frame[vstate->curframe];
13017         struct bpf_reg_state *regs = state->regs, *dst_reg, *src_reg;
13018         struct bpf_reg_state *ptr_reg = NULL, off_reg = {0};
13019         u8 opcode = BPF_OP(insn->code);
13020         int err;
13021
13022         dst_reg = &regs[insn->dst_reg];
13023         src_reg = NULL;
13024         if (dst_reg->type != SCALAR_VALUE)
13025                 ptr_reg = dst_reg;
13026         else
13027                 /* Make sure ID is cleared otherwise dst_reg min/max could be
13028                  * incorrectly propagated into other registers by find_equal_scalars()
13029                  */
13030                 dst_reg->id = 0;
13031         if (BPF_SRC(insn->code) == BPF_X) {
13032                 src_reg = &regs[insn->src_reg];
13033                 if (src_reg->type != SCALAR_VALUE) {
13034                         if (dst_reg->type != SCALAR_VALUE) {
13035                                 /* Combining two pointers by any ALU op yields
13036                                  * an arbitrary scalar. Disallow all math except
13037                                  * pointer subtraction
13038                                  */
13039                                 if (opcode == BPF_SUB && env->allow_ptr_leaks) {
13040                                         mark_reg_unknown(env, regs, insn->dst_reg);
13041                                         return 0;
13042                                 }
13043                                 verbose(env, "R%d pointer %s pointer prohibited\n",
13044                                         insn->dst_reg,
13045                                         bpf_alu_string[opcode >> 4]);
13046                                 return -EACCES;
13047                         } else {
13048                                 /* scalar += pointer
13049                                  * This is legal, but we have to reverse our
13050                                  * src/dest handling in computing the range
13051                                  */
13052                                 err = mark_chain_precision(env, insn->dst_reg);
13053                                 if (err)
13054                                         return err;
13055                                 return adjust_ptr_min_max_vals(env, insn,
13056                                                                src_reg, dst_reg);
13057                         }
13058                 } else if (ptr_reg) {
13059                         /* pointer += scalar */
13060                         err = mark_chain_precision(env, insn->src_reg);
13061                         if (err)
13062                                 return err;
13063                         return adjust_ptr_min_max_vals(env, insn,
13064                                                        dst_reg, src_reg);
13065                 } else if (dst_reg->precise) {
13066                         /* if dst_reg is precise, src_reg should be precise as well */
13067                         err = mark_chain_precision(env, insn->src_reg);
13068                         if (err)
13069                                 return err;
13070                 }
13071         } else {
13072                 /* Pretend the src is a reg with a known value, since we only
13073                  * need to be able to read from this state.
13074                  */
13075                 off_reg.type = SCALAR_VALUE;
13076                 __mark_reg_known(&off_reg, insn->imm);
13077                 src_reg = &off_reg;
13078                 if (ptr_reg) /* pointer += K */
13079                         return adjust_ptr_min_max_vals(env, insn,
13080                                                        ptr_reg, src_reg);
13081         }
13082
13083         /* Got here implies adding two SCALAR_VALUEs */
13084         if (WARN_ON_ONCE(ptr_reg)) {
13085                 print_verifier_state(env, state, true);
13086                 verbose(env, "verifier internal error: unexpected ptr_reg\n");
13087                 return -EINVAL;
13088         }
13089         if (WARN_ON(!src_reg)) {
13090                 print_verifier_state(env, state, true);
13091                 verbose(env, "verifier internal error: no src_reg\n");
13092                 return -EINVAL;
13093         }
13094         return adjust_scalar_min_max_vals(env, insn, dst_reg, *src_reg);
13095 }
13096
13097 /* check validity of 32-bit and 64-bit arithmetic operations */
13098 static int check_alu_op(struct bpf_verifier_env *env, struct bpf_insn *insn)
13099 {
13100         struct bpf_reg_state *regs = cur_regs(env);
13101         u8 opcode = BPF_OP(insn->code);
13102         int err;
13103
13104         if (opcode == BPF_END || opcode == BPF_NEG) {
13105                 if (opcode == BPF_NEG) {
13106                         if (BPF_SRC(insn->code) != BPF_K ||
13107                             insn->src_reg != BPF_REG_0 ||
13108                             insn->off != 0 || insn->imm != 0) {
13109                                 verbose(env, "BPF_NEG uses reserved fields\n");
13110                                 return -EINVAL;
13111                         }
13112                 } else {
13113                         if (insn->src_reg != BPF_REG_0 || insn->off != 0 ||
13114                             (insn->imm != 16 && insn->imm != 32 && insn->imm != 64) ||
13115                             (BPF_CLASS(insn->code) == BPF_ALU64 &&
13116                              BPF_SRC(insn->code) != BPF_TO_LE)) {
13117                                 verbose(env, "BPF_END uses reserved fields\n");
13118                                 return -EINVAL;
13119                         }
13120                 }
13121
13122                 /* check src operand */
13123                 err = check_reg_arg(env, insn->dst_reg, SRC_OP);
13124                 if (err)
13125                         return err;
13126
13127                 if (is_pointer_value(env, insn->dst_reg)) {
13128                         verbose(env, "R%d pointer arithmetic prohibited\n",
13129                                 insn->dst_reg);
13130                         return -EACCES;
13131                 }
13132
13133                 /* check dest operand */
13134                 err = check_reg_arg(env, insn->dst_reg, DST_OP);
13135                 if (err)
13136                         return err;
13137
13138         } else if (opcode == BPF_MOV) {
13139
13140                 if (BPF_SRC(insn->code) == BPF_X) {
13141                         if (insn->imm != 0) {
13142                                 verbose(env, "BPF_MOV uses reserved fields\n");
13143                                 return -EINVAL;
13144                         }
13145
13146                         if (BPF_CLASS(insn->code) == BPF_ALU) {
13147                                 if (insn->off != 0 && insn->off != 8 && insn->off != 16) {
13148                                         verbose(env, "BPF_MOV uses reserved fields\n");
13149                                         return -EINVAL;
13150                                 }
13151                         } else {
13152                                 if (insn->off != 0 && insn->off != 8 && insn->off != 16 &&
13153                                     insn->off != 32) {
13154                                         verbose(env, "BPF_MOV uses reserved fields\n");
13155                                         return -EINVAL;
13156                                 }
13157                         }
13158
13159                         /* check src operand */
13160                         err = check_reg_arg(env, insn->src_reg, SRC_OP);
13161                         if (err)
13162                                 return err;
13163                 } else {
13164                         if (insn->src_reg != BPF_REG_0 || insn->off != 0) {
13165                                 verbose(env, "BPF_MOV uses reserved fields\n");
13166                                 return -EINVAL;
13167                         }
13168                 }
13169
13170                 /* check dest operand, mark as required later */
13171                 err = check_reg_arg(env, insn->dst_reg, DST_OP_NO_MARK);
13172                 if (err)
13173                         return err;
13174
13175                 if (BPF_SRC(insn->code) == BPF_X) {
13176                         struct bpf_reg_state *src_reg = regs + insn->src_reg;
13177                         struct bpf_reg_state *dst_reg = regs + insn->dst_reg;
13178                         bool need_id = src_reg->type == SCALAR_VALUE && !src_reg->id &&
13179                                        !tnum_is_const(src_reg->var_off);
13180
13181                         if (BPF_CLASS(insn->code) == BPF_ALU64) {
13182                                 if (insn->off == 0) {
13183                                         /* case: R1 = R2
13184                                          * copy register state to dest reg
13185                                          */
13186                                         if (need_id)
13187                                                 /* Assign src and dst registers the same ID
13188                                                  * that will be used by find_equal_scalars()
13189                                                  * to propagate min/max range.
13190                                                  */
13191                                                 src_reg->id = ++env->id_gen;
13192                                         copy_register_state(dst_reg, src_reg);
13193                                         dst_reg->live |= REG_LIVE_WRITTEN;
13194                                         dst_reg->subreg_def = DEF_NOT_SUBREG;
13195                                 } else {
13196                                         /* case: R1 = (s8, s16 s32)R2 */
13197                                         if (is_pointer_value(env, insn->src_reg)) {
13198                                                 verbose(env,
13199                                                         "R%d sign-extension part of pointer\n",
13200                                                         insn->src_reg);
13201                                                 return -EACCES;
13202                                         } else if (src_reg->type == SCALAR_VALUE) {
13203                                                 bool no_sext;
13204
13205                                                 no_sext = src_reg->umax_value < (1ULL << (insn->off - 1));
13206                                                 if (no_sext && need_id)
13207                                                         src_reg->id = ++env->id_gen;
13208                                                 copy_register_state(dst_reg, src_reg);
13209                                                 if (!no_sext)
13210                                                         dst_reg->id = 0;
13211                                                 coerce_reg_to_size_sx(dst_reg, insn->off >> 3);
13212                                                 dst_reg->live |= REG_LIVE_WRITTEN;
13213                                                 dst_reg->subreg_def = DEF_NOT_SUBREG;
13214                                         } else {
13215                                                 mark_reg_unknown(env, regs, insn->dst_reg);
13216                                         }
13217                                 }
13218                         } else {
13219                                 /* R1 = (u32) R2 */
13220                                 if (is_pointer_value(env, insn->src_reg)) {
13221                                         verbose(env,
13222                                                 "R%d partial copy of pointer\n",
13223                                                 insn->src_reg);
13224                                         return -EACCES;
13225                                 } else if (src_reg->type == SCALAR_VALUE) {
13226                                         if (insn->off == 0) {
13227                                                 bool is_src_reg_u32 = src_reg->umax_value <= U32_MAX;
13228
13229                                                 if (is_src_reg_u32 && need_id)
13230                                                         src_reg->id = ++env->id_gen;
13231                                                 copy_register_state(dst_reg, src_reg);
13232                                                 /* Make sure ID is cleared if src_reg is not in u32
13233                                                  * range otherwise dst_reg min/max could be incorrectly
13234                                                  * propagated into src_reg by find_equal_scalars()
13235                                                  */
13236                                                 if (!is_src_reg_u32)
13237                                                         dst_reg->id = 0;
13238                                                 dst_reg->live |= REG_LIVE_WRITTEN;
13239                                                 dst_reg->subreg_def = env->insn_idx + 1;
13240                                         } else {
13241                                                 /* case: W1 = (s8, s16)W2 */
13242                                                 bool no_sext = src_reg->umax_value < (1ULL << (insn->off - 1));
13243
13244                                                 if (no_sext && need_id)
13245                                                         src_reg->id = ++env->id_gen;
13246                                                 copy_register_state(dst_reg, src_reg);
13247                                                 if (!no_sext)
13248                                                         dst_reg->id = 0;
13249                                                 dst_reg->live |= REG_LIVE_WRITTEN;
13250                                                 dst_reg->subreg_def = env->insn_idx + 1;
13251                                                 coerce_subreg_to_size_sx(dst_reg, insn->off >> 3);
13252                                         }
13253                                 } else {
13254                                         mark_reg_unknown(env, regs,
13255                                                          insn->dst_reg);
13256                                 }
13257                                 zext_32_to_64(dst_reg);
13258                                 reg_bounds_sync(dst_reg);
13259                         }
13260                 } else {
13261                         /* case: R = imm
13262                          * remember the value we stored into this reg
13263                          */
13264                         /* clear any state __mark_reg_known doesn't set */
13265                         mark_reg_unknown(env, regs, insn->dst_reg);
13266                         regs[insn->dst_reg].type = SCALAR_VALUE;
13267                         if (BPF_CLASS(insn->code) == BPF_ALU64) {
13268                                 __mark_reg_known(regs + insn->dst_reg,
13269                                                  insn->imm);
13270                         } else {
13271                                 __mark_reg_known(regs + insn->dst_reg,
13272                                                  (u32)insn->imm);
13273                         }
13274                 }
13275
13276         } else if (opcode > BPF_END) {
13277                 verbose(env, "invalid BPF_ALU opcode %x\n", opcode);
13278                 return -EINVAL;
13279
13280         } else {        /* all other ALU ops: and, sub, xor, add, ... */
13281
13282                 if (BPF_SRC(insn->code) == BPF_X) {
13283                         if (insn->imm != 0 || insn->off > 1 ||
13284                             (insn->off == 1 && opcode != BPF_MOD && opcode != BPF_DIV)) {
13285                                 verbose(env, "BPF_ALU uses reserved fields\n");
13286                                 return -EINVAL;
13287                         }
13288                         /* check src1 operand */
13289                         err = check_reg_arg(env, insn->src_reg, SRC_OP);
13290                         if (err)
13291                                 return err;
13292                 } else {
13293                         if (insn->src_reg != BPF_REG_0 || insn->off > 1 ||
13294                             (insn->off == 1 && opcode != BPF_MOD && opcode != BPF_DIV)) {
13295                                 verbose(env, "BPF_ALU uses reserved fields\n");
13296                                 return -EINVAL;
13297                         }
13298                 }
13299
13300                 /* check src2 operand */
13301                 err = check_reg_arg(env, insn->dst_reg, SRC_OP);
13302                 if (err)
13303                         return err;
13304
13305                 if ((opcode == BPF_MOD || opcode == BPF_DIV) &&
13306                     BPF_SRC(insn->code) == BPF_K && insn->imm == 0) {
13307                         verbose(env, "div by zero\n");
13308                         return -EINVAL;
13309                 }
13310
13311                 if ((opcode == BPF_LSH || opcode == BPF_RSH ||
13312                      opcode == BPF_ARSH) && BPF_SRC(insn->code) == BPF_K) {
13313                         int size = BPF_CLASS(insn->code) == BPF_ALU64 ? 64 : 32;
13314
13315                         if (insn->imm < 0 || insn->imm >= size) {
13316                                 verbose(env, "invalid shift %d\n", insn->imm);
13317                                 return -EINVAL;
13318                         }
13319                 }
13320
13321                 /* check dest operand */
13322                 err = check_reg_arg(env, insn->dst_reg, DST_OP_NO_MARK);
13323                 if (err)
13324                         return err;
13325
13326                 return adjust_reg_min_max_vals(env, insn);
13327         }
13328
13329         return 0;
13330 }
13331
13332 static void find_good_pkt_pointers(struct bpf_verifier_state *vstate,
13333                                    struct bpf_reg_state *dst_reg,
13334                                    enum bpf_reg_type type,
13335                                    bool range_right_open)
13336 {
13337         struct bpf_func_state *state;
13338         struct bpf_reg_state *reg;
13339         int new_range;
13340
13341         if (dst_reg->off < 0 ||
13342             (dst_reg->off == 0 && range_right_open))
13343                 /* This doesn't give us any range */
13344                 return;
13345
13346         if (dst_reg->umax_value > MAX_PACKET_OFF ||
13347             dst_reg->umax_value + dst_reg->off > MAX_PACKET_OFF)
13348                 /* Risk of overflow.  For instance, ptr + (1<<63) may be less
13349                  * than pkt_end, but that's because it's also less than pkt.
13350                  */
13351                 return;
13352
13353         new_range = dst_reg->off;
13354         if (range_right_open)
13355                 new_range++;
13356
13357         /* Examples for register markings:
13358          *
13359          * pkt_data in dst register:
13360          *
13361          *   r2 = r3;
13362          *   r2 += 8;
13363          *   if (r2 > pkt_end) goto <handle exception>
13364          *   <access okay>
13365          *
13366          *   r2 = r3;
13367          *   r2 += 8;
13368          *   if (r2 < pkt_end) goto <access okay>
13369          *   <handle exception>
13370          *
13371          *   Where:
13372          *     r2 == dst_reg, pkt_end == src_reg
13373          *     r2=pkt(id=n,off=8,r=0)
13374          *     r3=pkt(id=n,off=0,r=0)
13375          *
13376          * pkt_data in src register:
13377          *
13378          *   r2 = r3;
13379          *   r2 += 8;
13380          *   if (pkt_end >= r2) goto <access okay>
13381          *   <handle exception>
13382          *
13383          *   r2 = r3;
13384          *   r2 += 8;
13385          *   if (pkt_end <= r2) goto <handle exception>
13386          *   <access okay>
13387          *
13388          *   Where:
13389          *     pkt_end == dst_reg, r2 == src_reg
13390          *     r2=pkt(id=n,off=8,r=0)
13391          *     r3=pkt(id=n,off=0,r=0)
13392          *
13393          * Find register r3 and mark its range as r3=pkt(id=n,off=0,r=8)
13394          * or r3=pkt(id=n,off=0,r=8-1), so that range of bytes [r3, r3 + 8)
13395          * and [r3, r3 + 8-1) respectively is safe to access depending on
13396          * the check.
13397          */
13398
13399         /* If our ids match, then we must have the same max_value.  And we
13400          * don't care about the other reg's fixed offset, since if it's too big
13401          * the range won't allow anything.
13402          * dst_reg->off is known < MAX_PACKET_OFF, therefore it fits in a u16.
13403          */
13404         bpf_for_each_reg_in_vstate(vstate, state, reg, ({
13405                 if (reg->type == type && reg->id == dst_reg->id)
13406                         /* keep the maximum range already checked */
13407                         reg->range = max(reg->range, new_range);
13408         }));
13409 }
13410
13411 static int is_branch32_taken(struct bpf_reg_state *reg, u32 val, u8 opcode)
13412 {
13413         struct tnum subreg = tnum_subreg(reg->var_off);
13414         s32 sval = (s32)val;
13415
13416         switch (opcode) {
13417         case BPF_JEQ:
13418                 if (tnum_is_const(subreg))
13419                         return !!tnum_equals_const(subreg, val);
13420                 else if (val < reg->u32_min_value || val > reg->u32_max_value)
13421                         return 0;
13422                 break;
13423         case BPF_JNE:
13424                 if (tnum_is_const(subreg))
13425                         return !tnum_equals_const(subreg, val);
13426                 else if (val < reg->u32_min_value || val > reg->u32_max_value)
13427                         return 1;
13428                 break;
13429         case BPF_JSET:
13430                 if ((~subreg.mask & subreg.value) & val)
13431                         return 1;
13432                 if (!((subreg.mask | subreg.value) & val))
13433                         return 0;
13434                 break;
13435         case BPF_JGT:
13436                 if (reg->u32_min_value > val)
13437                         return 1;
13438                 else if (reg->u32_max_value <= val)
13439                         return 0;
13440                 break;
13441         case BPF_JSGT:
13442                 if (reg->s32_min_value > sval)
13443                         return 1;
13444                 else if (reg->s32_max_value <= sval)
13445                         return 0;
13446                 break;
13447         case BPF_JLT:
13448                 if (reg->u32_max_value < val)
13449                         return 1;
13450                 else if (reg->u32_min_value >= val)
13451                         return 0;
13452                 break;
13453         case BPF_JSLT:
13454                 if (reg->s32_max_value < sval)
13455                         return 1;
13456                 else if (reg->s32_min_value >= sval)
13457                         return 0;
13458                 break;
13459         case BPF_JGE:
13460                 if (reg->u32_min_value >= val)
13461                         return 1;
13462                 else if (reg->u32_max_value < val)
13463                         return 0;
13464                 break;
13465         case BPF_JSGE:
13466                 if (reg->s32_min_value >= sval)
13467                         return 1;
13468                 else if (reg->s32_max_value < sval)
13469                         return 0;
13470                 break;
13471         case BPF_JLE:
13472                 if (reg->u32_max_value <= val)
13473                         return 1;
13474                 else if (reg->u32_min_value > val)
13475                         return 0;
13476                 break;
13477         case BPF_JSLE:
13478                 if (reg->s32_max_value <= sval)
13479                         return 1;
13480                 else if (reg->s32_min_value > sval)
13481                         return 0;
13482                 break;
13483         }
13484
13485         return -1;
13486 }
13487
13488
13489 static int is_branch64_taken(struct bpf_reg_state *reg, u64 val, u8 opcode)
13490 {
13491         s64 sval = (s64)val;
13492
13493         switch (opcode) {
13494         case BPF_JEQ:
13495                 if (tnum_is_const(reg->var_off))
13496                         return !!tnum_equals_const(reg->var_off, val);
13497                 else if (val < reg->umin_value || val > reg->umax_value)
13498                         return 0;
13499                 break;
13500         case BPF_JNE:
13501                 if (tnum_is_const(reg->var_off))
13502                         return !tnum_equals_const(reg->var_off, val);
13503                 else if (val < reg->umin_value || val > reg->umax_value)
13504                         return 1;
13505                 break;
13506         case BPF_JSET:
13507                 if ((~reg->var_off.mask & reg->var_off.value) & val)
13508                         return 1;
13509                 if (!((reg->var_off.mask | reg->var_off.value) & val))
13510                         return 0;
13511                 break;
13512         case BPF_JGT:
13513                 if (reg->umin_value > val)
13514                         return 1;
13515                 else if (reg->umax_value <= val)
13516                         return 0;
13517                 break;
13518         case BPF_JSGT:
13519                 if (reg->smin_value > sval)
13520                         return 1;
13521                 else if (reg->smax_value <= sval)
13522                         return 0;
13523                 break;
13524         case BPF_JLT:
13525                 if (reg->umax_value < val)
13526                         return 1;
13527                 else if (reg->umin_value >= val)
13528                         return 0;
13529                 break;
13530         case BPF_JSLT:
13531                 if (reg->smax_value < sval)
13532                         return 1;
13533                 else if (reg->smin_value >= sval)
13534                         return 0;
13535                 break;
13536         case BPF_JGE:
13537                 if (reg->umin_value >= val)
13538                         return 1;
13539                 else if (reg->umax_value < val)
13540                         return 0;
13541                 break;
13542         case BPF_JSGE:
13543                 if (reg->smin_value >= sval)
13544                         return 1;
13545                 else if (reg->smax_value < sval)
13546                         return 0;
13547                 break;
13548         case BPF_JLE:
13549                 if (reg->umax_value <= val)
13550                         return 1;
13551                 else if (reg->umin_value > val)
13552                         return 0;
13553                 break;
13554         case BPF_JSLE:
13555                 if (reg->smax_value <= sval)
13556                         return 1;
13557                 else if (reg->smin_value > sval)
13558                         return 0;
13559                 break;
13560         }
13561
13562         return -1;
13563 }
13564
13565 /* compute branch direction of the expression "if (reg opcode val) goto target;"
13566  * and return:
13567  *  1 - branch will be taken and "goto target" will be executed
13568  *  0 - branch will not be taken and fall-through to next insn
13569  * -1 - unknown. Example: "if (reg < 5)" is unknown when register value
13570  *      range [0,10]
13571  */
13572 static int is_branch_taken(struct bpf_reg_state *reg, u64 val, u8 opcode,
13573                            bool is_jmp32)
13574 {
13575         if (__is_pointer_value(false, reg)) {
13576                 if (!reg_not_null(reg))
13577                         return -1;
13578
13579                 /* If pointer is valid tests against zero will fail so we can
13580                  * use this to direct branch taken.
13581                  */
13582                 if (val != 0)
13583                         return -1;
13584
13585                 switch (opcode) {
13586                 case BPF_JEQ:
13587                         return 0;
13588                 case BPF_JNE:
13589                         return 1;
13590                 default:
13591                         return -1;
13592                 }
13593         }
13594
13595         if (is_jmp32)
13596                 return is_branch32_taken(reg, val, opcode);
13597         return is_branch64_taken(reg, val, opcode);
13598 }
13599
13600 static int flip_opcode(u32 opcode)
13601 {
13602         /* How can we transform "a <op> b" into "b <op> a"? */
13603         static const u8 opcode_flip[16] = {
13604                 /* these stay the same */
13605                 [BPF_JEQ  >> 4] = BPF_JEQ,
13606                 [BPF_JNE  >> 4] = BPF_JNE,
13607                 [BPF_JSET >> 4] = BPF_JSET,
13608                 /* these swap "lesser" and "greater" (L and G in the opcodes) */
13609                 [BPF_JGE  >> 4] = BPF_JLE,
13610                 [BPF_JGT  >> 4] = BPF_JLT,
13611                 [BPF_JLE  >> 4] = BPF_JGE,
13612                 [BPF_JLT  >> 4] = BPF_JGT,
13613                 [BPF_JSGE >> 4] = BPF_JSLE,
13614                 [BPF_JSGT >> 4] = BPF_JSLT,
13615                 [BPF_JSLE >> 4] = BPF_JSGE,
13616                 [BPF_JSLT >> 4] = BPF_JSGT
13617         };
13618         return opcode_flip[opcode >> 4];
13619 }
13620
13621 static int is_pkt_ptr_branch_taken(struct bpf_reg_state *dst_reg,
13622                                    struct bpf_reg_state *src_reg,
13623                                    u8 opcode)
13624 {
13625         struct bpf_reg_state *pkt;
13626
13627         if (src_reg->type == PTR_TO_PACKET_END) {
13628                 pkt = dst_reg;
13629         } else if (dst_reg->type == PTR_TO_PACKET_END) {
13630                 pkt = src_reg;
13631                 opcode = flip_opcode(opcode);
13632         } else {
13633                 return -1;
13634         }
13635
13636         if (pkt->range >= 0)
13637                 return -1;
13638
13639         switch (opcode) {
13640         case BPF_JLE:
13641                 /* pkt <= pkt_end */
13642                 fallthrough;
13643         case BPF_JGT:
13644                 /* pkt > pkt_end */
13645                 if (pkt->range == BEYOND_PKT_END)
13646                         /* pkt has at last one extra byte beyond pkt_end */
13647                         return opcode == BPF_JGT;
13648                 break;
13649         case BPF_JLT:
13650                 /* pkt < pkt_end */
13651                 fallthrough;
13652         case BPF_JGE:
13653                 /* pkt >= pkt_end */
13654                 if (pkt->range == BEYOND_PKT_END || pkt->range == AT_PKT_END)
13655                         return opcode == BPF_JGE;
13656                 break;
13657         }
13658         return -1;
13659 }
13660
13661 /* Adjusts the register min/max values in the case that the dst_reg is the
13662  * variable register that we are working on, and src_reg is a constant or we're
13663  * simply doing a BPF_K check.
13664  * In JEQ/JNE cases we also adjust the var_off values.
13665  */
13666 static void reg_set_min_max(struct bpf_reg_state *true_reg,
13667                             struct bpf_reg_state *false_reg,
13668                             u64 val, u32 val32,
13669                             u8 opcode, bool is_jmp32)
13670 {
13671         struct tnum false_32off = tnum_subreg(false_reg->var_off);
13672         struct tnum false_64off = false_reg->var_off;
13673         struct tnum true_32off = tnum_subreg(true_reg->var_off);
13674         struct tnum true_64off = true_reg->var_off;
13675         s64 sval = (s64)val;
13676         s32 sval32 = (s32)val32;
13677
13678         /* If the dst_reg is a pointer, we can't learn anything about its
13679          * variable offset from the compare (unless src_reg were a pointer into
13680          * the same object, but we don't bother with that.
13681          * Since false_reg and true_reg have the same type by construction, we
13682          * only need to check one of them for pointerness.
13683          */
13684         if (__is_pointer_value(false, false_reg))
13685                 return;
13686
13687         switch (opcode) {
13688         /* JEQ/JNE comparison doesn't change the register equivalence.
13689          *
13690          * r1 = r2;
13691          * if (r1 == 42) goto label;
13692          * ...
13693          * label: // here both r1 and r2 are known to be 42.
13694          *
13695          * Hence when marking register as known preserve it's ID.
13696          */
13697         case BPF_JEQ:
13698                 if (is_jmp32) {
13699                         __mark_reg32_known(true_reg, val32);
13700                         true_32off = tnum_subreg(true_reg->var_off);
13701                 } else {
13702                         ___mark_reg_known(true_reg, val);
13703                         true_64off = true_reg->var_off;
13704                 }
13705                 break;
13706         case BPF_JNE:
13707                 if (is_jmp32) {
13708                         __mark_reg32_known(false_reg, val32);
13709                         false_32off = tnum_subreg(false_reg->var_off);
13710                 } else {
13711                         ___mark_reg_known(false_reg, val);
13712                         false_64off = false_reg->var_off;
13713                 }
13714                 break;
13715         case BPF_JSET:
13716                 if (is_jmp32) {
13717                         false_32off = tnum_and(false_32off, tnum_const(~val32));
13718                         if (is_power_of_2(val32))
13719                                 true_32off = tnum_or(true_32off,
13720                                                      tnum_const(val32));
13721                 } else {
13722                         false_64off = tnum_and(false_64off, tnum_const(~val));
13723                         if (is_power_of_2(val))
13724                                 true_64off = tnum_or(true_64off,
13725                                                      tnum_const(val));
13726                 }
13727                 break;
13728         case BPF_JGE:
13729         case BPF_JGT:
13730         {
13731                 if (is_jmp32) {
13732                         u32 false_umax = opcode == BPF_JGT ? val32  : val32 - 1;
13733                         u32 true_umin = opcode == BPF_JGT ? val32 + 1 : val32;
13734
13735                         false_reg->u32_max_value = min(false_reg->u32_max_value,
13736                                                        false_umax);
13737                         true_reg->u32_min_value = max(true_reg->u32_min_value,
13738                                                       true_umin);
13739                 } else {
13740                         u64 false_umax = opcode == BPF_JGT ? val    : val - 1;
13741                         u64 true_umin = opcode == BPF_JGT ? val + 1 : val;
13742
13743                         false_reg->umax_value = min(false_reg->umax_value, false_umax);
13744                         true_reg->umin_value = max(true_reg->umin_value, true_umin);
13745                 }
13746                 break;
13747         }
13748         case BPF_JSGE:
13749         case BPF_JSGT:
13750         {
13751                 if (is_jmp32) {
13752                         s32 false_smax = opcode == BPF_JSGT ? sval32    : sval32 - 1;
13753                         s32 true_smin = opcode == BPF_JSGT ? sval32 + 1 : sval32;
13754
13755                         false_reg->s32_max_value = min(false_reg->s32_max_value, false_smax);
13756                         true_reg->s32_min_value = max(true_reg->s32_min_value, true_smin);
13757                 } else {
13758                         s64 false_smax = opcode == BPF_JSGT ? sval    : sval - 1;
13759                         s64 true_smin = opcode == BPF_JSGT ? sval + 1 : sval;
13760
13761                         false_reg->smax_value = min(false_reg->smax_value, false_smax);
13762                         true_reg->smin_value = max(true_reg->smin_value, true_smin);
13763                 }
13764                 break;
13765         }
13766         case BPF_JLE:
13767         case BPF_JLT:
13768         {
13769                 if (is_jmp32) {
13770                         u32 false_umin = opcode == BPF_JLT ? val32  : val32 + 1;
13771                         u32 true_umax = opcode == BPF_JLT ? val32 - 1 : val32;
13772
13773                         false_reg->u32_min_value = max(false_reg->u32_min_value,
13774                                                        false_umin);
13775                         true_reg->u32_max_value = min(true_reg->u32_max_value,
13776                                                       true_umax);
13777                 } else {
13778                         u64 false_umin = opcode == BPF_JLT ? val    : val + 1;
13779                         u64 true_umax = opcode == BPF_JLT ? val - 1 : val;
13780
13781                         false_reg->umin_value = max(false_reg->umin_value, false_umin);
13782                         true_reg->umax_value = min(true_reg->umax_value, true_umax);
13783                 }
13784                 break;
13785         }
13786         case BPF_JSLE:
13787         case BPF_JSLT:
13788         {
13789                 if (is_jmp32) {
13790                         s32 false_smin = opcode == BPF_JSLT ? sval32    : sval32 + 1;
13791                         s32 true_smax = opcode == BPF_JSLT ? sval32 - 1 : sval32;
13792
13793                         false_reg->s32_min_value = max(false_reg->s32_min_value, false_smin);
13794                         true_reg->s32_max_value = min(true_reg->s32_max_value, true_smax);
13795                 } else {
13796                         s64 false_smin = opcode == BPF_JSLT ? sval    : sval + 1;
13797                         s64 true_smax = opcode == BPF_JSLT ? sval - 1 : sval;
13798
13799                         false_reg->smin_value = max(false_reg->smin_value, false_smin);
13800                         true_reg->smax_value = min(true_reg->smax_value, true_smax);
13801                 }
13802                 break;
13803         }
13804         default:
13805                 return;
13806         }
13807
13808         if (is_jmp32) {
13809                 false_reg->var_off = tnum_or(tnum_clear_subreg(false_64off),
13810                                              tnum_subreg(false_32off));
13811                 true_reg->var_off = tnum_or(tnum_clear_subreg(true_64off),
13812                                             tnum_subreg(true_32off));
13813                 __reg_combine_32_into_64(false_reg);
13814                 __reg_combine_32_into_64(true_reg);
13815         } else {
13816                 false_reg->var_off = false_64off;
13817                 true_reg->var_off = true_64off;
13818                 __reg_combine_64_into_32(false_reg);
13819                 __reg_combine_64_into_32(true_reg);
13820         }
13821 }
13822
13823 /* Same as above, but for the case that dst_reg holds a constant and src_reg is
13824  * the variable reg.
13825  */
13826 static void reg_set_min_max_inv(struct bpf_reg_state *true_reg,
13827                                 struct bpf_reg_state *false_reg,
13828                                 u64 val, u32 val32,
13829                                 u8 opcode, bool is_jmp32)
13830 {
13831         opcode = flip_opcode(opcode);
13832         /* This uses zero as "not present in table"; luckily the zero opcode,
13833          * BPF_JA, can't get here.
13834          */
13835         if (opcode)
13836                 reg_set_min_max(true_reg, false_reg, val, val32, opcode, is_jmp32);
13837 }
13838
13839 /* Regs are known to be equal, so intersect their min/max/var_off */
13840 static void __reg_combine_min_max(struct bpf_reg_state *src_reg,
13841                                   struct bpf_reg_state *dst_reg)
13842 {
13843         src_reg->umin_value = dst_reg->umin_value = max(src_reg->umin_value,
13844                                                         dst_reg->umin_value);
13845         src_reg->umax_value = dst_reg->umax_value = min(src_reg->umax_value,
13846                                                         dst_reg->umax_value);
13847         src_reg->smin_value = dst_reg->smin_value = max(src_reg->smin_value,
13848                                                         dst_reg->smin_value);
13849         src_reg->smax_value = dst_reg->smax_value = min(src_reg->smax_value,
13850                                                         dst_reg->smax_value);
13851         src_reg->var_off = dst_reg->var_off = tnum_intersect(src_reg->var_off,
13852                                                              dst_reg->var_off);
13853         reg_bounds_sync(src_reg);
13854         reg_bounds_sync(dst_reg);
13855 }
13856
13857 static void reg_combine_min_max(struct bpf_reg_state *true_src,
13858                                 struct bpf_reg_state *true_dst,
13859                                 struct bpf_reg_state *false_src,
13860                                 struct bpf_reg_state *false_dst,
13861                                 u8 opcode)
13862 {
13863         switch (opcode) {
13864         case BPF_JEQ:
13865                 __reg_combine_min_max(true_src, true_dst);
13866                 break;
13867         case BPF_JNE:
13868                 __reg_combine_min_max(false_src, false_dst);
13869                 break;
13870         }
13871 }
13872
13873 static void mark_ptr_or_null_reg(struct bpf_func_state *state,
13874                                  struct bpf_reg_state *reg, u32 id,
13875                                  bool is_null)
13876 {
13877         if (type_may_be_null(reg->type) && reg->id == id &&
13878             (is_rcu_reg(reg) || !WARN_ON_ONCE(!reg->id))) {
13879                 /* Old offset (both fixed and variable parts) should have been
13880                  * known-zero, because we don't allow pointer arithmetic on
13881                  * pointers that might be NULL. If we see this happening, don't
13882                  * convert the register.
13883                  *
13884                  * But in some cases, some helpers that return local kptrs
13885                  * advance offset for the returned pointer. In those cases, it
13886                  * is fine to expect to see reg->off.
13887                  */
13888                 if (WARN_ON_ONCE(reg->smin_value || reg->smax_value || !tnum_equals_const(reg->var_off, 0)))
13889                         return;
13890                 if (!(type_is_ptr_alloc_obj(reg->type) || type_is_non_owning_ref(reg->type)) &&
13891                     WARN_ON_ONCE(reg->off))
13892                         return;
13893
13894                 if (is_null) {
13895                         reg->type = SCALAR_VALUE;
13896                         /* We don't need id and ref_obj_id from this point
13897                          * onwards anymore, thus we should better reset it,
13898                          * so that state pruning has chances to take effect.
13899                          */
13900                         reg->id = 0;
13901                         reg->ref_obj_id = 0;
13902
13903                         return;
13904                 }
13905
13906                 mark_ptr_not_null_reg(reg);
13907
13908                 if (!reg_may_point_to_spin_lock(reg)) {
13909                         /* For not-NULL ptr, reg->ref_obj_id will be reset
13910                          * in release_reference().
13911                          *
13912                          * reg->id is still used by spin_lock ptr. Other
13913                          * than spin_lock ptr type, reg->id can be reset.
13914                          */
13915                         reg->id = 0;
13916                 }
13917         }
13918 }
13919
13920 /* The logic is similar to find_good_pkt_pointers(), both could eventually
13921  * be folded together at some point.
13922  */
13923 static void mark_ptr_or_null_regs(struct bpf_verifier_state *vstate, u32 regno,
13924                                   bool is_null)
13925 {
13926         struct bpf_func_state *state = vstate->frame[vstate->curframe];
13927         struct bpf_reg_state *regs = state->regs, *reg;
13928         u32 ref_obj_id = regs[regno].ref_obj_id;
13929         u32 id = regs[regno].id;
13930
13931         if (ref_obj_id && ref_obj_id == id && is_null)
13932                 /* regs[regno] is in the " == NULL" branch.
13933                  * No one could have freed the reference state before
13934                  * doing the NULL check.
13935                  */
13936                 WARN_ON_ONCE(release_reference_state(state, id));
13937
13938         bpf_for_each_reg_in_vstate(vstate, state, reg, ({
13939                 mark_ptr_or_null_reg(state, reg, id, is_null);
13940         }));
13941 }
13942
13943 static bool try_match_pkt_pointers(const struct bpf_insn *insn,
13944                                    struct bpf_reg_state *dst_reg,
13945                                    struct bpf_reg_state *src_reg,
13946                                    struct bpf_verifier_state *this_branch,
13947                                    struct bpf_verifier_state *other_branch)
13948 {
13949         if (BPF_SRC(insn->code) != BPF_X)
13950                 return false;
13951
13952         /* Pointers are always 64-bit. */
13953         if (BPF_CLASS(insn->code) == BPF_JMP32)
13954                 return false;
13955
13956         switch (BPF_OP(insn->code)) {
13957         case BPF_JGT:
13958                 if ((dst_reg->type == PTR_TO_PACKET &&
13959                      src_reg->type == PTR_TO_PACKET_END) ||
13960                     (dst_reg->type == PTR_TO_PACKET_META &&
13961                      reg_is_init_pkt_pointer(src_reg, PTR_TO_PACKET))) {
13962                         /* pkt_data' > pkt_end, pkt_meta' > pkt_data */
13963                         find_good_pkt_pointers(this_branch, dst_reg,
13964                                                dst_reg->type, false);
13965                         mark_pkt_end(other_branch, insn->dst_reg, true);
13966                 } else if ((dst_reg->type == PTR_TO_PACKET_END &&
13967                             src_reg->type == PTR_TO_PACKET) ||
13968                            (reg_is_init_pkt_pointer(dst_reg, PTR_TO_PACKET) &&
13969                             src_reg->type == PTR_TO_PACKET_META)) {
13970                         /* pkt_end > pkt_data', pkt_data > pkt_meta' */
13971                         find_good_pkt_pointers(other_branch, src_reg,
13972                                                src_reg->type, true);
13973                         mark_pkt_end(this_branch, insn->src_reg, false);
13974                 } else {
13975                         return false;
13976                 }
13977                 break;
13978         case BPF_JLT:
13979                 if ((dst_reg->type == PTR_TO_PACKET &&
13980                      src_reg->type == PTR_TO_PACKET_END) ||
13981                     (dst_reg->type == PTR_TO_PACKET_META &&
13982                      reg_is_init_pkt_pointer(src_reg, PTR_TO_PACKET))) {
13983                         /* pkt_data' < pkt_end, pkt_meta' < pkt_data */
13984                         find_good_pkt_pointers(other_branch, dst_reg,
13985                                                dst_reg->type, true);
13986                         mark_pkt_end(this_branch, insn->dst_reg, false);
13987                 } else if ((dst_reg->type == PTR_TO_PACKET_END &&
13988                             src_reg->type == PTR_TO_PACKET) ||
13989                            (reg_is_init_pkt_pointer(dst_reg, PTR_TO_PACKET) &&
13990                             src_reg->type == PTR_TO_PACKET_META)) {
13991                         /* pkt_end < pkt_data', pkt_data > pkt_meta' */
13992                         find_good_pkt_pointers(this_branch, src_reg,
13993                                                src_reg->type, false);
13994                         mark_pkt_end(other_branch, insn->src_reg, true);
13995                 } else {
13996                         return false;
13997                 }
13998                 break;
13999         case BPF_JGE:
14000                 if ((dst_reg->type == PTR_TO_PACKET &&
14001                      src_reg->type == PTR_TO_PACKET_END) ||
14002                     (dst_reg->type == PTR_TO_PACKET_META &&
14003                      reg_is_init_pkt_pointer(src_reg, PTR_TO_PACKET))) {
14004                         /* pkt_data' >= pkt_end, pkt_meta' >= pkt_data */
14005                         find_good_pkt_pointers(this_branch, dst_reg,
14006                                                dst_reg->type, true);
14007                         mark_pkt_end(other_branch, insn->dst_reg, false);
14008                 } else if ((dst_reg->type == PTR_TO_PACKET_END &&
14009                             src_reg->type == PTR_TO_PACKET) ||
14010                            (reg_is_init_pkt_pointer(dst_reg, PTR_TO_PACKET) &&
14011                             src_reg->type == PTR_TO_PACKET_META)) {
14012                         /* pkt_end >= pkt_data', pkt_data >= pkt_meta' */
14013                         find_good_pkt_pointers(other_branch, src_reg,
14014                                                src_reg->type, false);
14015                         mark_pkt_end(this_branch, insn->src_reg, true);
14016                 } else {
14017                         return false;
14018                 }
14019                 break;
14020         case BPF_JLE:
14021                 if ((dst_reg->type == PTR_TO_PACKET &&
14022                      src_reg->type == PTR_TO_PACKET_END) ||
14023                     (dst_reg->type == PTR_TO_PACKET_META &&
14024                      reg_is_init_pkt_pointer(src_reg, PTR_TO_PACKET))) {
14025                         /* pkt_data' <= pkt_end, pkt_meta' <= pkt_data */
14026                         find_good_pkt_pointers(other_branch, dst_reg,
14027                                                dst_reg->type, false);
14028                         mark_pkt_end(this_branch, insn->dst_reg, true);
14029                 } else if ((dst_reg->type == PTR_TO_PACKET_END &&
14030                             src_reg->type == PTR_TO_PACKET) ||
14031                            (reg_is_init_pkt_pointer(dst_reg, PTR_TO_PACKET) &&
14032                             src_reg->type == PTR_TO_PACKET_META)) {
14033                         /* pkt_end <= pkt_data', pkt_data <= pkt_meta' */
14034                         find_good_pkt_pointers(this_branch, src_reg,
14035                                                src_reg->type, true);
14036                         mark_pkt_end(other_branch, insn->src_reg, false);
14037                 } else {
14038                         return false;
14039                 }
14040                 break;
14041         default:
14042                 return false;
14043         }
14044
14045         return true;
14046 }
14047
14048 static void find_equal_scalars(struct bpf_verifier_state *vstate,
14049                                struct bpf_reg_state *known_reg)
14050 {
14051         struct bpf_func_state *state;
14052         struct bpf_reg_state *reg;
14053
14054         bpf_for_each_reg_in_vstate(vstate, state, reg, ({
14055                 if (reg->type == SCALAR_VALUE && reg->id == known_reg->id)
14056                         copy_register_state(reg, known_reg);
14057         }));
14058 }
14059
14060 static int check_cond_jmp_op(struct bpf_verifier_env *env,
14061                              struct bpf_insn *insn, int *insn_idx)
14062 {
14063         struct bpf_verifier_state *this_branch = env->cur_state;
14064         struct bpf_verifier_state *other_branch;
14065         struct bpf_reg_state *regs = this_branch->frame[this_branch->curframe]->regs;
14066         struct bpf_reg_state *dst_reg, *other_branch_regs, *src_reg = NULL;
14067         struct bpf_reg_state *eq_branch_regs;
14068         u8 opcode = BPF_OP(insn->code);
14069         bool is_jmp32;
14070         int pred = -1;
14071         int err;
14072
14073         /* Only conditional jumps are expected to reach here. */
14074         if (opcode == BPF_JA || opcode > BPF_JSLE) {
14075                 verbose(env, "invalid BPF_JMP/JMP32 opcode %x\n", opcode);
14076                 return -EINVAL;
14077         }
14078
14079         /* check src2 operand */
14080         err = check_reg_arg(env, insn->dst_reg, SRC_OP);
14081         if (err)
14082                 return err;
14083
14084         dst_reg = &regs[insn->dst_reg];
14085         if (BPF_SRC(insn->code) == BPF_X) {
14086                 if (insn->imm != 0) {
14087                         verbose(env, "BPF_JMP/JMP32 uses reserved fields\n");
14088                         return -EINVAL;
14089                 }
14090
14091                 /* check src1 operand */
14092                 err = check_reg_arg(env, insn->src_reg, SRC_OP);
14093                 if (err)
14094                         return err;
14095
14096                 src_reg = &regs[insn->src_reg];
14097                 if (!(reg_is_pkt_pointer_any(dst_reg) && reg_is_pkt_pointer_any(src_reg)) &&
14098                     is_pointer_value(env, insn->src_reg)) {
14099                         verbose(env, "R%d pointer comparison prohibited\n",
14100                                 insn->src_reg);
14101                         return -EACCES;
14102                 }
14103         } else {
14104                 if (insn->src_reg != BPF_REG_0) {
14105                         verbose(env, "BPF_JMP/JMP32 uses reserved fields\n");
14106                         return -EINVAL;
14107                 }
14108         }
14109
14110         is_jmp32 = BPF_CLASS(insn->code) == BPF_JMP32;
14111
14112         if (BPF_SRC(insn->code) == BPF_K) {
14113                 pred = is_branch_taken(dst_reg, insn->imm, opcode, is_jmp32);
14114         } else if (src_reg->type == SCALAR_VALUE &&
14115                    is_jmp32 && tnum_is_const(tnum_subreg(src_reg->var_off))) {
14116                 pred = is_branch_taken(dst_reg,
14117                                        tnum_subreg(src_reg->var_off).value,
14118                                        opcode,
14119                                        is_jmp32);
14120         } else if (src_reg->type == SCALAR_VALUE &&
14121                    !is_jmp32 && tnum_is_const(src_reg->var_off)) {
14122                 pred = is_branch_taken(dst_reg,
14123                                        src_reg->var_off.value,
14124                                        opcode,
14125                                        is_jmp32);
14126         } else if (dst_reg->type == SCALAR_VALUE &&
14127                    is_jmp32 && tnum_is_const(tnum_subreg(dst_reg->var_off))) {
14128                 pred = is_branch_taken(src_reg,
14129                                        tnum_subreg(dst_reg->var_off).value,
14130                                        flip_opcode(opcode),
14131                                        is_jmp32);
14132         } else if (dst_reg->type == SCALAR_VALUE &&
14133                    !is_jmp32 && tnum_is_const(dst_reg->var_off)) {
14134                 pred = is_branch_taken(src_reg,
14135                                        dst_reg->var_off.value,
14136                                        flip_opcode(opcode),
14137                                        is_jmp32);
14138         } else if (reg_is_pkt_pointer_any(dst_reg) &&
14139                    reg_is_pkt_pointer_any(src_reg) &&
14140                    !is_jmp32) {
14141                 pred = is_pkt_ptr_branch_taken(dst_reg, src_reg, opcode);
14142         }
14143
14144         if (pred >= 0) {
14145                 /* If we get here with a dst_reg pointer type it is because
14146                  * above is_branch_taken() special cased the 0 comparison.
14147                  */
14148                 if (!__is_pointer_value(false, dst_reg))
14149                         err = mark_chain_precision(env, insn->dst_reg);
14150                 if (BPF_SRC(insn->code) == BPF_X && !err &&
14151                     !__is_pointer_value(false, src_reg))
14152                         err = mark_chain_precision(env, insn->src_reg);
14153                 if (err)
14154                         return err;
14155         }
14156
14157         if (pred == 1) {
14158                 /* Only follow the goto, ignore fall-through. If needed, push
14159                  * the fall-through branch for simulation under speculative
14160                  * execution.
14161                  */
14162                 if (!env->bypass_spec_v1 &&
14163                     !sanitize_speculative_path(env, insn, *insn_idx + 1,
14164                                                *insn_idx))
14165                         return -EFAULT;
14166                 if (env->log.level & BPF_LOG_LEVEL)
14167                         print_insn_state(env, this_branch->frame[this_branch->curframe]);
14168                 *insn_idx += insn->off;
14169                 return 0;
14170         } else if (pred == 0) {
14171                 /* Only follow the fall-through branch, since that's where the
14172                  * program will go. If needed, push the goto branch for
14173                  * simulation under speculative execution.
14174                  */
14175                 if (!env->bypass_spec_v1 &&
14176                     !sanitize_speculative_path(env, insn,
14177                                                *insn_idx + insn->off + 1,
14178                                                *insn_idx))
14179                         return -EFAULT;
14180                 if (env->log.level & BPF_LOG_LEVEL)
14181                         print_insn_state(env, this_branch->frame[this_branch->curframe]);
14182                 return 0;
14183         }
14184
14185         other_branch = push_stack(env, *insn_idx + insn->off + 1, *insn_idx,
14186                                   false);
14187         if (!other_branch)
14188                 return -EFAULT;
14189         other_branch_regs = other_branch->frame[other_branch->curframe]->regs;
14190
14191         /* detect if we are comparing against a constant value so we can adjust
14192          * our min/max values for our dst register.
14193          * this is only legit if both are scalars (or pointers to the same
14194          * object, I suppose, see the PTR_MAYBE_NULL related if block below),
14195          * because otherwise the different base pointers mean the offsets aren't
14196          * comparable.
14197          */
14198         if (BPF_SRC(insn->code) == BPF_X) {
14199                 struct bpf_reg_state *src_reg = &regs[insn->src_reg];
14200
14201                 if (dst_reg->type == SCALAR_VALUE &&
14202                     src_reg->type == SCALAR_VALUE) {
14203                         if (tnum_is_const(src_reg->var_off) ||
14204                             (is_jmp32 &&
14205                              tnum_is_const(tnum_subreg(src_reg->var_off))))
14206                                 reg_set_min_max(&other_branch_regs[insn->dst_reg],
14207                                                 dst_reg,
14208                                                 src_reg->var_off.value,
14209                                                 tnum_subreg(src_reg->var_off).value,
14210                                                 opcode, is_jmp32);
14211                         else if (tnum_is_const(dst_reg->var_off) ||
14212                                  (is_jmp32 &&
14213                                   tnum_is_const(tnum_subreg(dst_reg->var_off))))
14214                                 reg_set_min_max_inv(&other_branch_regs[insn->src_reg],
14215                                                     src_reg,
14216                                                     dst_reg->var_off.value,
14217                                                     tnum_subreg(dst_reg->var_off).value,
14218                                                     opcode, is_jmp32);
14219                         else if (!is_jmp32 &&
14220                                  (opcode == BPF_JEQ || opcode == BPF_JNE))
14221                                 /* Comparing for equality, we can combine knowledge */
14222                                 reg_combine_min_max(&other_branch_regs[insn->src_reg],
14223                                                     &other_branch_regs[insn->dst_reg],
14224                                                     src_reg, dst_reg, opcode);
14225                         if (src_reg->id &&
14226                             !WARN_ON_ONCE(src_reg->id != other_branch_regs[insn->src_reg].id)) {
14227                                 find_equal_scalars(this_branch, src_reg);
14228                                 find_equal_scalars(other_branch, &other_branch_regs[insn->src_reg]);
14229                         }
14230
14231                 }
14232         } else if (dst_reg->type == SCALAR_VALUE) {
14233                 reg_set_min_max(&other_branch_regs[insn->dst_reg],
14234                                         dst_reg, insn->imm, (u32)insn->imm,
14235                                         opcode, is_jmp32);
14236         }
14237
14238         if (dst_reg->type == SCALAR_VALUE && dst_reg->id &&
14239             !WARN_ON_ONCE(dst_reg->id != other_branch_regs[insn->dst_reg].id)) {
14240                 find_equal_scalars(this_branch, dst_reg);
14241                 find_equal_scalars(other_branch, &other_branch_regs[insn->dst_reg]);
14242         }
14243
14244         /* if one pointer register is compared to another pointer
14245          * register check if PTR_MAYBE_NULL could be lifted.
14246          * E.g. register A - maybe null
14247          *      register B - not null
14248          * for JNE A, B, ... - A is not null in the false branch;
14249          * for JEQ A, B, ... - A is not null in the true branch.
14250          *
14251          * Since PTR_TO_BTF_ID points to a kernel struct that does
14252          * not need to be null checked by the BPF program, i.e.,
14253          * could be null even without PTR_MAYBE_NULL marking, so
14254          * only propagate nullness when neither reg is that type.
14255          */
14256         if (!is_jmp32 && BPF_SRC(insn->code) == BPF_X &&
14257             __is_pointer_value(false, src_reg) && __is_pointer_value(false, dst_reg) &&
14258             type_may_be_null(src_reg->type) != type_may_be_null(dst_reg->type) &&
14259             base_type(src_reg->type) != PTR_TO_BTF_ID &&
14260             base_type(dst_reg->type) != PTR_TO_BTF_ID) {
14261                 eq_branch_regs = NULL;
14262                 switch (opcode) {
14263                 case BPF_JEQ:
14264                         eq_branch_regs = other_branch_regs;
14265                         break;
14266                 case BPF_JNE:
14267                         eq_branch_regs = regs;
14268                         break;
14269                 default:
14270                         /* do nothing */
14271                         break;
14272                 }
14273                 if (eq_branch_regs) {
14274                         if (type_may_be_null(src_reg->type))
14275                                 mark_ptr_not_null_reg(&eq_branch_regs[insn->src_reg]);
14276                         else
14277                                 mark_ptr_not_null_reg(&eq_branch_regs[insn->dst_reg]);
14278                 }
14279         }
14280
14281         /* detect if R == 0 where R is returned from bpf_map_lookup_elem().
14282          * NOTE: these optimizations below are related with pointer comparison
14283          *       which will never be JMP32.
14284          */
14285         if (!is_jmp32 && BPF_SRC(insn->code) == BPF_K &&
14286             insn->imm == 0 && (opcode == BPF_JEQ || opcode == BPF_JNE) &&
14287             type_may_be_null(dst_reg->type)) {
14288                 /* Mark all identical registers in each branch as either
14289                  * safe or unknown depending R == 0 or R != 0 conditional.
14290                  */
14291                 mark_ptr_or_null_regs(this_branch, insn->dst_reg,
14292                                       opcode == BPF_JNE);
14293                 mark_ptr_or_null_regs(other_branch, insn->dst_reg,
14294                                       opcode == BPF_JEQ);
14295         } else if (!try_match_pkt_pointers(insn, dst_reg, &regs[insn->src_reg],
14296                                            this_branch, other_branch) &&
14297                    is_pointer_value(env, insn->dst_reg)) {
14298                 verbose(env, "R%d pointer comparison prohibited\n",
14299                         insn->dst_reg);
14300                 return -EACCES;
14301         }
14302         if (env->log.level & BPF_LOG_LEVEL)
14303                 print_insn_state(env, this_branch->frame[this_branch->curframe]);
14304         return 0;
14305 }
14306
14307 /* verify BPF_LD_IMM64 instruction */
14308 static int check_ld_imm(struct bpf_verifier_env *env, struct bpf_insn *insn)
14309 {
14310         struct bpf_insn_aux_data *aux = cur_aux(env);
14311         struct bpf_reg_state *regs = cur_regs(env);
14312         struct bpf_reg_state *dst_reg;
14313         struct bpf_map *map;
14314         int err;
14315
14316         if (BPF_SIZE(insn->code) != BPF_DW) {
14317                 verbose(env, "invalid BPF_LD_IMM insn\n");
14318                 return -EINVAL;
14319         }
14320         if (insn->off != 0) {
14321                 verbose(env, "BPF_LD_IMM64 uses reserved fields\n");
14322                 return -EINVAL;
14323         }
14324
14325         err = check_reg_arg(env, insn->dst_reg, DST_OP);
14326         if (err)
14327                 return err;
14328
14329         dst_reg = &regs[insn->dst_reg];
14330         if (insn->src_reg == 0) {
14331                 u64 imm = ((u64)(insn + 1)->imm << 32) | (u32)insn->imm;
14332
14333                 dst_reg->type = SCALAR_VALUE;
14334                 __mark_reg_known(&regs[insn->dst_reg], imm);
14335                 return 0;
14336         }
14337
14338         /* All special src_reg cases are listed below. From this point onwards
14339          * we either succeed and assign a corresponding dst_reg->type after
14340          * zeroing the offset, or fail and reject the program.
14341          */
14342         mark_reg_known_zero(env, regs, insn->dst_reg);
14343
14344         if (insn->src_reg == BPF_PSEUDO_BTF_ID) {
14345                 dst_reg->type = aux->btf_var.reg_type;
14346                 switch (base_type(dst_reg->type)) {
14347                 case PTR_TO_MEM:
14348                         dst_reg->mem_size = aux->btf_var.mem_size;
14349                         break;
14350                 case PTR_TO_BTF_ID:
14351                         dst_reg->btf = aux->btf_var.btf;
14352                         dst_reg->btf_id = aux->btf_var.btf_id;
14353                         break;
14354                 default:
14355                         verbose(env, "bpf verifier is misconfigured\n");
14356                         return -EFAULT;
14357                 }
14358                 return 0;
14359         }
14360
14361         if (insn->src_reg == BPF_PSEUDO_FUNC) {
14362                 struct bpf_prog_aux *aux = env->prog->aux;
14363                 u32 subprogno = find_subprog(env,
14364                                              env->insn_idx + insn->imm + 1);
14365
14366                 if (!aux->func_info) {
14367                         verbose(env, "missing btf func_info\n");
14368                         return -EINVAL;
14369                 }
14370                 if (aux->func_info_aux[subprogno].linkage != BTF_FUNC_STATIC) {
14371                         verbose(env, "callback function not static\n");
14372                         return -EINVAL;
14373                 }
14374
14375                 dst_reg->type = PTR_TO_FUNC;
14376                 dst_reg->subprogno = subprogno;
14377                 return 0;
14378         }
14379
14380         map = env->used_maps[aux->map_index];
14381         dst_reg->map_ptr = map;
14382
14383         if (insn->src_reg == BPF_PSEUDO_MAP_VALUE ||
14384             insn->src_reg == BPF_PSEUDO_MAP_IDX_VALUE) {
14385                 dst_reg->type = PTR_TO_MAP_VALUE;
14386                 dst_reg->off = aux->map_off;
14387                 WARN_ON_ONCE(map->max_entries != 1);
14388                 /* We want reg->id to be same (0) as map_value is not distinct */
14389         } else if (insn->src_reg == BPF_PSEUDO_MAP_FD ||
14390                    insn->src_reg == BPF_PSEUDO_MAP_IDX) {
14391                 dst_reg->type = CONST_PTR_TO_MAP;
14392         } else {
14393                 verbose(env, "bpf verifier is misconfigured\n");
14394                 return -EINVAL;
14395         }
14396
14397         return 0;
14398 }
14399
14400 static bool may_access_skb(enum bpf_prog_type type)
14401 {
14402         switch (type) {
14403         case BPF_PROG_TYPE_SOCKET_FILTER:
14404         case BPF_PROG_TYPE_SCHED_CLS:
14405         case BPF_PROG_TYPE_SCHED_ACT:
14406                 return true;
14407         default:
14408                 return false;
14409         }
14410 }
14411
14412 /* verify safety of LD_ABS|LD_IND instructions:
14413  * - they can only appear in the programs where ctx == skb
14414  * - since they are wrappers of function calls, they scratch R1-R5 registers,
14415  *   preserve R6-R9, and store return value into R0
14416  *
14417  * Implicit input:
14418  *   ctx == skb == R6 == CTX
14419  *
14420  * Explicit input:
14421  *   SRC == any register
14422  *   IMM == 32-bit immediate
14423  *
14424  * Output:
14425  *   R0 - 8/16/32-bit skb data converted to cpu endianness
14426  */
14427 static int check_ld_abs(struct bpf_verifier_env *env, struct bpf_insn *insn)
14428 {
14429         struct bpf_reg_state *regs = cur_regs(env);
14430         static const int ctx_reg = BPF_REG_6;
14431         u8 mode = BPF_MODE(insn->code);
14432         int i, err;
14433
14434         if (!may_access_skb(resolve_prog_type(env->prog))) {
14435                 verbose(env, "BPF_LD_[ABS|IND] instructions not allowed for this program type\n");
14436                 return -EINVAL;
14437         }
14438
14439         if (!env->ops->gen_ld_abs) {
14440                 verbose(env, "bpf verifier is misconfigured\n");
14441                 return -EINVAL;
14442         }
14443
14444         if (insn->dst_reg != BPF_REG_0 || insn->off != 0 ||
14445             BPF_SIZE(insn->code) == BPF_DW ||
14446             (mode == BPF_ABS && insn->src_reg != BPF_REG_0)) {
14447                 verbose(env, "BPF_LD_[ABS|IND] uses reserved fields\n");
14448                 return -EINVAL;
14449         }
14450
14451         /* check whether implicit source operand (register R6) is readable */
14452         err = check_reg_arg(env, ctx_reg, SRC_OP);
14453         if (err)
14454                 return err;
14455
14456         /* Disallow usage of BPF_LD_[ABS|IND] with reference tracking, as
14457          * gen_ld_abs() may terminate the program at runtime, leading to
14458          * reference leak.
14459          */
14460         err = check_reference_leak(env);
14461         if (err) {
14462                 verbose(env, "BPF_LD_[ABS|IND] cannot be mixed with socket references\n");
14463                 return err;
14464         }
14465
14466         if (env->cur_state->active_lock.ptr) {
14467                 verbose(env, "BPF_LD_[ABS|IND] cannot be used inside bpf_spin_lock-ed region\n");
14468                 return -EINVAL;
14469         }
14470
14471         if (env->cur_state->active_rcu_lock) {
14472                 verbose(env, "BPF_LD_[ABS|IND] cannot be used inside bpf_rcu_read_lock-ed region\n");
14473                 return -EINVAL;
14474         }
14475
14476         if (regs[ctx_reg].type != PTR_TO_CTX) {
14477                 verbose(env,
14478                         "at the time of BPF_LD_ABS|IND R6 != pointer to skb\n");
14479                 return -EINVAL;
14480         }
14481
14482         if (mode == BPF_IND) {
14483                 /* check explicit source operand */
14484                 err = check_reg_arg(env, insn->src_reg, SRC_OP);
14485                 if (err)
14486                         return err;
14487         }
14488
14489         err = check_ptr_off_reg(env, &regs[ctx_reg], ctx_reg);
14490         if (err < 0)
14491                 return err;
14492
14493         /* reset caller saved regs to unreadable */
14494         for (i = 0; i < CALLER_SAVED_REGS; i++) {
14495                 mark_reg_not_init(env, regs, caller_saved[i]);
14496                 check_reg_arg(env, caller_saved[i], DST_OP_NO_MARK);
14497         }
14498
14499         /* mark destination R0 register as readable, since it contains
14500          * the value fetched from the packet.
14501          * Already marked as written above.
14502          */
14503         mark_reg_unknown(env, regs, BPF_REG_0);
14504         /* ld_abs load up to 32-bit skb data. */
14505         regs[BPF_REG_0].subreg_def = env->insn_idx + 1;
14506         return 0;
14507 }
14508
14509 static int check_return_code(struct bpf_verifier_env *env)
14510 {
14511         struct tnum enforce_attach_type_range = tnum_unknown;
14512         const struct bpf_prog *prog = env->prog;
14513         struct bpf_reg_state *reg;
14514         struct tnum range = tnum_range(0, 1), const_0 = tnum_const(0);
14515         enum bpf_prog_type prog_type = resolve_prog_type(env->prog);
14516         int err;
14517         struct bpf_func_state *frame = env->cur_state->frame[0];
14518         const bool is_subprog = frame->subprogno;
14519
14520         /* LSM and struct_ops func-ptr's return type could be "void" */
14521         if (!is_subprog) {
14522                 switch (prog_type) {
14523                 case BPF_PROG_TYPE_LSM:
14524                         if (prog->expected_attach_type == BPF_LSM_CGROUP)
14525                                 /* See below, can be 0 or 0-1 depending on hook. */
14526                                 break;
14527                         fallthrough;
14528                 case BPF_PROG_TYPE_STRUCT_OPS:
14529                         if (!prog->aux->attach_func_proto->type)
14530                                 return 0;
14531                         break;
14532                 default:
14533                         break;
14534                 }
14535         }
14536
14537         /* eBPF calling convention is such that R0 is used
14538          * to return the value from eBPF program.
14539          * Make sure that it's readable at this time
14540          * of bpf_exit, which means that program wrote
14541          * something into it earlier
14542          */
14543         err = check_reg_arg(env, BPF_REG_0, SRC_OP);
14544         if (err)
14545                 return err;
14546
14547         if (is_pointer_value(env, BPF_REG_0)) {
14548                 verbose(env, "R0 leaks addr as return value\n");
14549                 return -EACCES;
14550         }
14551
14552         reg = cur_regs(env) + BPF_REG_0;
14553
14554         if (frame->in_async_callback_fn) {
14555                 /* enforce return zero from async callbacks like timer */
14556                 if (reg->type != SCALAR_VALUE) {
14557                         verbose(env, "In async callback the register R0 is not a known value (%s)\n",
14558                                 reg_type_str(env, reg->type));
14559                         return -EINVAL;
14560                 }
14561
14562                 if (!tnum_in(const_0, reg->var_off)) {
14563                         verbose_invalid_scalar(env, reg, &const_0, "async callback", "R0");
14564                         return -EINVAL;
14565                 }
14566                 return 0;
14567         }
14568
14569         if (is_subprog) {
14570                 if (reg->type != SCALAR_VALUE) {
14571                         verbose(env, "At subprogram exit the register R0 is not a scalar value (%s)\n",
14572                                 reg_type_str(env, reg->type));
14573                         return -EINVAL;
14574                 }
14575                 return 0;
14576         }
14577
14578         switch (prog_type) {
14579         case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
14580                 if (env->prog->expected_attach_type == BPF_CGROUP_UDP4_RECVMSG ||
14581                     env->prog->expected_attach_type == BPF_CGROUP_UDP6_RECVMSG ||
14582                     env->prog->expected_attach_type == BPF_CGROUP_INET4_GETPEERNAME ||
14583                     env->prog->expected_attach_type == BPF_CGROUP_INET6_GETPEERNAME ||
14584                     env->prog->expected_attach_type == BPF_CGROUP_INET4_GETSOCKNAME ||
14585                     env->prog->expected_attach_type == BPF_CGROUP_INET6_GETSOCKNAME)
14586                         range = tnum_range(1, 1);
14587                 if (env->prog->expected_attach_type == BPF_CGROUP_INET4_BIND ||
14588                     env->prog->expected_attach_type == BPF_CGROUP_INET6_BIND)
14589                         range = tnum_range(0, 3);
14590                 break;
14591         case BPF_PROG_TYPE_CGROUP_SKB:
14592                 if (env->prog->expected_attach_type == BPF_CGROUP_INET_EGRESS) {
14593                         range = tnum_range(0, 3);
14594                         enforce_attach_type_range = tnum_range(2, 3);
14595                 }
14596                 break;
14597         case BPF_PROG_TYPE_CGROUP_SOCK:
14598         case BPF_PROG_TYPE_SOCK_OPS:
14599         case BPF_PROG_TYPE_CGROUP_DEVICE:
14600         case BPF_PROG_TYPE_CGROUP_SYSCTL:
14601         case BPF_PROG_TYPE_CGROUP_SOCKOPT:
14602                 break;
14603         case BPF_PROG_TYPE_RAW_TRACEPOINT:
14604                 if (!env->prog->aux->attach_btf_id)
14605                         return 0;
14606                 range = tnum_const(0);
14607                 break;
14608         case BPF_PROG_TYPE_TRACING:
14609                 switch (env->prog->expected_attach_type) {
14610                 case BPF_TRACE_FENTRY:
14611                 case BPF_TRACE_FEXIT:
14612                         range = tnum_const(0);
14613                         break;
14614                 case BPF_TRACE_RAW_TP:
14615                 case BPF_MODIFY_RETURN:
14616                         return 0;
14617                 case BPF_TRACE_ITER:
14618                         break;
14619                 default:
14620                         return -ENOTSUPP;
14621                 }
14622                 break;
14623         case BPF_PROG_TYPE_SK_LOOKUP:
14624                 range = tnum_range(SK_DROP, SK_PASS);
14625                 break;
14626
14627         case BPF_PROG_TYPE_LSM:
14628                 if (env->prog->expected_attach_type != BPF_LSM_CGROUP) {
14629                         /* Regular BPF_PROG_TYPE_LSM programs can return
14630                          * any value.
14631                          */
14632                         return 0;
14633                 }
14634                 if (!env->prog->aux->attach_func_proto->type) {
14635                         /* Make sure programs that attach to void
14636                          * hooks don't try to modify return value.
14637                          */
14638                         range = tnum_range(1, 1);
14639                 }
14640                 break;
14641
14642         case BPF_PROG_TYPE_NETFILTER:
14643                 range = tnum_range(NF_DROP, NF_ACCEPT);
14644                 break;
14645         case BPF_PROG_TYPE_EXT:
14646                 /* freplace program can return anything as its return value
14647                  * depends on the to-be-replaced kernel func or bpf program.
14648                  */
14649         default:
14650                 return 0;
14651         }
14652
14653         if (reg->type != SCALAR_VALUE) {
14654                 verbose(env, "At program exit the register R0 is not a known value (%s)\n",
14655                         reg_type_str(env, reg->type));
14656                 return -EINVAL;
14657         }
14658
14659         if (!tnum_in(range, reg->var_off)) {
14660                 verbose_invalid_scalar(env, reg, &range, "program exit", "R0");
14661                 if (prog->expected_attach_type == BPF_LSM_CGROUP &&
14662                     prog_type == BPF_PROG_TYPE_LSM &&
14663                     !prog->aux->attach_func_proto->type)
14664                         verbose(env, "Note, BPF_LSM_CGROUP that attach to void LSM hooks can't modify return value!\n");
14665                 return -EINVAL;
14666         }
14667
14668         if (!tnum_is_unknown(enforce_attach_type_range) &&
14669             tnum_in(enforce_attach_type_range, reg->var_off))
14670                 env->prog->enforce_expected_attach_type = 1;
14671         return 0;
14672 }
14673
14674 /* non-recursive DFS pseudo code
14675  * 1  procedure DFS-iterative(G,v):
14676  * 2      label v as discovered
14677  * 3      let S be a stack
14678  * 4      S.push(v)
14679  * 5      while S is not empty
14680  * 6            t <- S.peek()
14681  * 7            if t is what we're looking for:
14682  * 8                return t
14683  * 9            for all edges e in G.adjacentEdges(t) do
14684  * 10               if edge e is already labelled
14685  * 11                   continue with the next edge
14686  * 12               w <- G.adjacentVertex(t,e)
14687  * 13               if vertex w is not discovered and not explored
14688  * 14                   label e as tree-edge
14689  * 15                   label w as discovered
14690  * 16                   S.push(w)
14691  * 17                   continue at 5
14692  * 18               else if vertex w is discovered
14693  * 19                   label e as back-edge
14694  * 20               else
14695  * 21                   // vertex w is explored
14696  * 22                   label e as forward- or cross-edge
14697  * 23           label t as explored
14698  * 24           S.pop()
14699  *
14700  * convention:
14701  * 0x10 - discovered
14702  * 0x11 - discovered and fall-through edge labelled
14703  * 0x12 - discovered and fall-through and branch edges labelled
14704  * 0x20 - explored
14705  */
14706
14707 enum {
14708         DISCOVERED = 0x10,
14709         EXPLORED = 0x20,
14710         FALLTHROUGH = 1,
14711         BRANCH = 2,
14712 };
14713
14714 static u32 state_htab_size(struct bpf_verifier_env *env)
14715 {
14716         return env->prog->len;
14717 }
14718
14719 static struct bpf_verifier_state_list **explored_state(
14720                                         struct bpf_verifier_env *env,
14721                                         int idx)
14722 {
14723         struct bpf_verifier_state *cur = env->cur_state;
14724         struct bpf_func_state *state = cur->frame[cur->curframe];
14725
14726         return &env->explored_states[(idx ^ state->callsite) % state_htab_size(env)];
14727 }
14728
14729 static void mark_prune_point(struct bpf_verifier_env *env, int idx)
14730 {
14731         env->insn_aux_data[idx].prune_point = true;
14732 }
14733
14734 static bool is_prune_point(struct bpf_verifier_env *env, int insn_idx)
14735 {
14736         return env->insn_aux_data[insn_idx].prune_point;
14737 }
14738
14739 static void mark_force_checkpoint(struct bpf_verifier_env *env, int idx)
14740 {
14741         env->insn_aux_data[idx].force_checkpoint = true;
14742 }
14743
14744 static bool is_force_checkpoint(struct bpf_verifier_env *env, int insn_idx)
14745 {
14746         return env->insn_aux_data[insn_idx].force_checkpoint;
14747 }
14748
14749
14750 enum {
14751         DONE_EXPLORING = 0,
14752         KEEP_EXPLORING = 1,
14753 };
14754
14755 /* t, w, e - match pseudo-code above:
14756  * t - index of current instruction
14757  * w - next instruction
14758  * e - edge
14759  */
14760 static int push_insn(int t, int w, int e, struct bpf_verifier_env *env)
14761 {
14762         int *insn_stack = env->cfg.insn_stack;
14763         int *insn_state = env->cfg.insn_state;
14764
14765         if (e == FALLTHROUGH && insn_state[t] >= (DISCOVERED | FALLTHROUGH))
14766                 return DONE_EXPLORING;
14767
14768         if (e == BRANCH && insn_state[t] >= (DISCOVERED | BRANCH))
14769                 return DONE_EXPLORING;
14770
14771         if (w < 0 || w >= env->prog->len) {
14772                 verbose_linfo(env, t, "%d: ", t);
14773                 verbose(env, "jump out of range from insn %d to %d\n", t, w);
14774                 return -EINVAL;
14775         }
14776
14777         if (e == BRANCH) {
14778                 /* mark branch target for state pruning */
14779                 mark_prune_point(env, w);
14780                 mark_jmp_point(env, w);
14781         }
14782
14783         if (insn_state[w] == 0) {
14784                 /* tree-edge */
14785                 insn_state[t] = DISCOVERED | e;
14786                 insn_state[w] = DISCOVERED;
14787                 if (env->cfg.cur_stack >= env->prog->len)
14788                         return -E2BIG;
14789                 insn_stack[env->cfg.cur_stack++] = w;
14790                 return KEEP_EXPLORING;
14791         } else if ((insn_state[w] & 0xF0) == DISCOVERED) {
14792                 if (env->bpf_capable)
14793                         return DONE_EXPLORING;
14794                 verbose_linfo(env, t, "%d: ", t);
14795                 verbose_linfo(env, w, "%d: ", w);
14796                 verbose(env, "back-edge from insn %d to %d\n", t, w);
14797                 return -EINVAL;
14798         } else if (insn_state[w] == EXPLORED) {
14799                 /* forward- or cross-edge */
14800                 insn_state[t] = DISCOVERED | e;
14801         } else {
14802                 verbose(env, "insn state internal bug\n");
14803                 return -EFAULT;
14804         }
14805         return DONE_EXPLORING;
14806 }
14807
14808 static int visit_func_call_insn(int t, struct bpf_insn *insns,
14809                                 struct bpf_verifier_env *env,
14810                                 bool visit_callee)
14811 {
14812         int ret, insn_sz;
14813
14814         insn_sz = bpf_is_ldimm64(&insns[t]) ? 2 : 1;
14815         ret = push_insn(t, t + insn_sz, FALLTHROUGH, env);
14816         if (ret)
14817                 return ret;
14818
14819         mark_prune_point(env, t + insn_sz);
14820         /* when we exit from subprog, we need to record non-linear history */
14821         mark_jmp_point(env, t + insn_sz);
14822
14823         if (visit_callee) {
14824                 mark_prune_point(env, t);
14825                 ret = push_insn(t, t + insns[t].imm + 1, BRANCH, env);
14826         }
14827         return ret;
14828 }
14829
14830 /* Visits the instruction at index t and returns one of the following:
14831  *  < 0 - an error occurred
14832  *  DONE_EXPLORING - the instruction was fully explored
14833  *  KEEP_EXPLORING - there is still work to be done before it is fully explored
14834  */
14835 static int visit_insn(int t, struct bpf_verifier_env *env)
14836 {
14837         struct bpf_insn *insns = env->prog->insnsi, *insn = &insns[t];
14838         int ret, off, insn_sz;
14839
14840         if (bpf_pseudo_func(insn))
14841                 return visit_func_call_insn(t, insns, env, true);
14842
14843         /* All non-branch instructions have a single fall-through edge. */
14844         if (BPF_CLASS(insn->code) != BPF_JMP &&
14845             BPF_CLASS(insn->code) != BPF_JMP32) {
14846                 insn_sz = bpf_is_ldimm64(insn) ? 2 : 1;
14847                 return push_insn(t, t + insn_sz, FALLTHROUGH, env);
14848         }
14849
14850         switch (BPF_OP(insn->code)) {
14851         case BPF_EXIT:
14852                 return DONE_EXPLORING;
14853
14854         case BPF_CALL:
14855                 if (insn->src_reg == 0 && insn->imm == BPF_FUNC_timer_set_callback)
14856                         /* Mark this call insn as a prune point to trigger
14857                          * is_state_visited() check before call itself is
14858                          * processed by __check_func_call(). Otherwise new
14859                          * async state will be pushed for further exploration.
14860                          */
14861                         mark_prune_point(env, t);
14862                 if (insn->src_reg == BPF_PSEUDO_KFUNC_CALL) {
14863                         struct bpf_kfunc_call_arg_meta meta;
14864
14865                         ret = fetch_kfunc_meta(env, insn, &meta, NULL);
14866                         if (ret == 0 && is_iter_next_kfunc(&meta)) {
14867                                 mark_prune_point(env, t);
14868                                 /* Checking and saving state checkpoints at iter_next() call
14869                                  * is crucial for fast convergence of open-coded iterator loop
14870                                  * logic, so we need to force it. If we don't do that,
14871                                  * is_state_visited() might skip saving a checkpoint, causing
14872                                  * unnecessarily long sequence of not checkpointed
14873                                  * instructions and jumps, leading to exhaustion of jump
14874                                  * history buffer, and potentially other undesired outcomes.
14875                                  * It is expected that with correct open-coded iterators
14876                                  * convergence will happen quickly, so we don't run a risk of
14877                                  * exhausting memory.
14878                                  */
14879                                 mark_force_checkpoint(env, t);
14880                         }
14881                 }
14882                 return visit_func_call_insn(t, insns, env, insn->src_reg == BPF_PSEUDO_CALL);
14883
14884         case BPF_JA:
14885                 if (BPF_SRC(insn->code) != BPF_K)
14886                         return -EINVAL;
14887
14888                 if (BPF_CLASS(insn->code) == BPF_JMP)
14889                         off = insn->off;
14890                 else
14891                         off = insn->imm;
14892
14893                 /* unconditional jump with single edge */
14894                 ret = push_insn(t, t + off + 1, FALLTHROUGH, env);
14895                 if (ret)
14896                         return ret;
14897
14898                 mark_prune_point(env, t + off + 1);
14899                 mark_jmp_point(env, t + off + 1);
14900
14901                 return ret;
14902
14903         default:
14904                 /* conditional jump with two edges */
14905                 mark_prune_point(env, t);
14906
14907                 ret = push_insn(t, t + 1, FALLTHROUGH, env);
14908                 if (ret)
14909                         return ret;
14910
14911                 return push_insn(t, t + insn->off + 1, BRANCH, env);
14912         }
14913 }
14914
14915 /* non-recursive depth-first-search to detect loops in BPF program
14916  * loop == back-edge in directed graph
14917  */
14918 static int check_cfg(struct bpf_verifier_env *env)
14919 {
14920         int insn_cnt = env->prog->len;
14921         int *insn_stack, *insn_state;
14922         int ret = 0;
14923         int i;
14924
14925         insn_state = env->cfg.insn_state = kvcalloc(insn_cnt, sizeof(int), GFP_KERNEL);
14926         if (!insn_state)
14927                 return -ENOMEM;
14928
14929         insn_stack = env->cfg.insn_stack = kvcalloc(insn_cnt, sizeof(int), GFP_KERNEL);
14930         if (!insn_stack) {
14931                 kvfree(insn_state);
14932                 return -ENOMEM;
14933         }
14934
14935         insn_state[0] = DISCOVERED; /* mark 1st insn as discovered */
14936         insn_stack[0] = 0; /* 0 is the first instruction */
14937         env->cfg.cur_stack = 1;
14938
14939         while (env->cfg.cur_stack > 0) {
14940                 int t = insn_stack[env->cfg.cur_stack - 1];
14941
14942                 ret = visit_insn(t, env);
14943                 switch (ret) {
14944                 case DONE_EXPLORING:
14945                         insn_state[t] = EXPLORED;
14946                         env->cfg.cur_stack--;
14947                         break;
14948                 case KEEP_EXPLORING:
14949                         break;
14950                 default:
14951                         if (ret > 0) {
14952                                 verbose(env, "visit_insn internal bug\n");
14953                                 ret = -EFAULT;
14954                         }
14955                         goto err_free;
14956                 }
14957         }
14958
14959         if (env->cfg.cur_stack < 0) {
14960                 verbose(env, "pop stack internal bug\n");
14961                 ret = -EFAULT;
14962                 goto err_free;
14963         }
14964
14965         for (i = 0; i < insn_cnt; i++) {
14966                 struct bpf_insn *insn = &env->prog->insnsi[i];
14967
14968                 if (insn_state[i] != EXPLORED) {
14969                         verbose(env, "unreachable insn %d\n", i);
14970                         ret = -EINVAL;
14971                         goto err_free;
14972                 }
14973                 if (bpf_is_ldimm64(insn)) {
14974                         if (insn_state[i + 1] != 0) {
14975                                 verbose(env, "jump into the middle of ldimm64 insn %d\n", i);
14976                                 ret = -EINVAL;
14977                                 goto err_free;
14978                         }
14979                         i++; /* skip second half of ldimm64 */
14980                 }
14981         }
14982         ret = 0; /* cfg looks good */
14983
14984 err_free:
14985         kvfree(insn_state);
14986         kvfree(insn_stack);
14987         env->cfg.insn_state = env->cfg.insn_stack = NULL;
14988         return ret;
14989 }
14990
14991 static int check_abnormal_return(struct bpf_verifier_env *env)
14992 {
14993         int i;
14994
14995         for (i = 1; i < env->subprog_cnt; i++) {
14996                 if (env->subprog_info[i].has_ld_abs) {
14997                         verbose(env, "LD_ABS is not allowed in subprogs without BTF\n");
14998                         return -EINVAL;
14999                 }
15000                 if (env->subprog_info[i].has_tail_call) {
15001                         verbose(env, "tail_call is not allowed in subprogs without BTF\n");
15002                         return -EINVAL;
15003                 }
15004         }
15005         return 0;
15006 }
15007
15008 /* The minimum supported BTF func info size */
15009 #define MIN_BPF_FUNCINFO_SIZE   8
15010 #define MAX_FUNCINFO_REC_SIZE   252
15011
15012 static int check_btf_func(struct bpf_verifier_env *env,
15013                           const union bpf_attr *attr,
15014                           bpfptr_t uattr)
15015 {
15016         const struct btf_type *type, *func_proto, *ret_type;
15017         u32 i, nfuncs, urec_size, min_size;
15018         u32 krec_size = sizeof(struct bpf_func_info);
15019         struct bpf_func_info *krecord;
15020         struct bpf_func_info_aux *info_aux = NULL;
15021         struct bpf_prog *prog;
15022         const struct btf *btf;
15023         bpfptr_t urecord;
15024         u32 prev_offset = 0;
15025         bool scalar_return;
15026         int ret = -ENOMEM;
15027
15028         nfuncs = attr->func_info_cnt;
15029         if (!nfuncs) {
15030                 if (check_abnormal_return(env))
15031                         return -EINVAL;
15032                 return 0;
15033         }
15034
15035         if (nfuncs != env->subprog_cnt) {
15036                 verbose(env, "number of funcs in func_info doesn't match number of subprogs\n");
15037                 return -EINVAL;
15038         }
15039
15040         urec_size = attr->func_info_rec_size;
15041         if (urec_size < MIN_BPF_FUNCINFO_SIZE ||
15042             urec_size > MAX_FUNCINFO_REC_SIZE ||
15043             urec_size % sizeof(u32)) {
15044                 verbose(env, "invalid func info rec size %u\n", urec_size);
15045                 return -EINVAL;
15046         }
15047
15048         prog = env->prog;
15049         btf = prog->aux->btf;
15050
15051         urecord = make_bpfptr(attr->func_info, uattr.is_kernel);
15052         min_size = min_t(u32, krec_size, urec_size);
15053
15054         krecord = kvcalloc(nfuncs, krec_size, GFP_KERNEL | __GFP_NOWARN);
15055         if (!krecord)
15056                 return -ENOMEM;
15057         info_aux = kcalloc(nfuncs, sizeof(*info_aux), GFP_KERNEL | __GFP_NOWARN);
15058         if (!info_aux)
15059                 goto err_free;
15060
15061         for (i = 0; i < nfuncs; i++) {
15062                 ret = bpf_check_uarg_tail_zero(urecord, krec_size, urec_size);
15063                 if (ret) {
15064                         if (ret == -E2BIG) {
15065                                 verbose(env, "nonzero tailing record in func info");
15066                                 /* set the size kernel expects so loader can zero
15067                                  * out the rest of the record.
15068                                  */
15069                                 if (copy_to_bpfptr_offset(uattr,
15070                                                           offsetof(union bpf_attr, func_info_rec_size),
15071                                                           &min_size, sizeof(min_size)))
15072                                         ret = -EFAULT;
15073                         }
15074                         goto err_free;
15075                 }
15076
15077                 if (copy_from_bpfptr(&krecord[i], urecord, min_size)) {
15078                         ret = -EFAULT;
15079                         goto err_free;
15080                 }
15081
15082                 /* check insn_off */
15083                 ret = -EINVAL;
15084                 if (i == 0) {
15085                         if (krecord[i].insn_off) {
15086                                 verbose(env,
15087                                         "nonzero insn_off %u for the first func info record",
15088                                         krecord[i].insn_off);
15089                                 goto err_free;
15090                         }
15091                 } else if (krecord[i].insn_off <= prev_offset) {
15092                         verbose(env,
15093                                 "same or smaller insn offset (%u) than previous func info record (%u)",
15094                                 krecord[i].insn_off, prev_offset);
15095                         goto err_free;
15096                 }
15097
15098                 if (env->subprog_info[i].start != krecord[i].insn_off) {
15099                         verbose(env, "func_info BTF section doesn't match subprog layout in BPF program\n");
15100                         goto err_free;
15101                 }
15102
15103                 /* check type_id */
15104                 type = btf_type_by_id(btf, krecord[i].type_id);
15105                 if (!type || !btf_type_is_func(type)) {
15106                         verbose(env, "invalid type id %d in func info",
15107                                 krecord[i].type_id);
15108                         goto err_free;
15109                 }
15110                 info_aux[i].linkage = BTF_INFO_VLEN(type->info);
15111
15112                 func_proto = btf_type_by_id(btf, type->type);
15113                 if (unlikely(!func_proto || !btf_type_is_func_proto(func_proto)))
15114                         /* btf_func_check() already verified it during BTF load */
15115                         goto err_free;
15116                 ret_type = btf_type_skip_modifiers(btf, func_proto->type, NULL);
15117                 scalar_return =
15118                         btf_type_is_small_int(ret_type) || btf_is_any_enum(ret_type);
15119                 if (i && !scalar_return && env->subprog_info[i].has_ld_abs) {
15120                         verbose(env, "LD_ABS is only allowed in functions that return 'int'.\n");
15121                         goto err_free;
15122                 }
15123                 if (i && !scalar_return && env->subprog_info[i].has_tail_call) {
15124                         verbose(env, "tail_call is only allowed in functions that return 'int'.\n");
15125                         goto err_free;
15126                 }
15127
15128                 prev_offset = krecord[i].insn_off;
15129                 bpfptr_add(&urecord, urec_size);
15130         }
15131
15132         prog->aux->func_info = krecord;
15133         prog->aux->func_info_cnt = nfuncs;
15134         prog->aux->func_info_aux = info_aux;
15135         return 0;
15136
15137 err_free:
15138         kvfree(krecord);
15139         kfree(info_aux);
15140         return ret;
15141 }
15142
15143 static void adjust_btf_func(struct bpf_verifier_env *env)
15144 {
15145         struct bpf_prog_aux *aux = env->prog->aux;
15146         int i;
15147
15148         if (!aux->func_info)
15149                 return;
15150
15151         for (i = 0; i < env->subprog_cnt; i++)
15152                 aux->func_info[i].insn_off = env->subprog_info[i].start;
15153 }
15154
15155 #define MIN_BPF_LINEINFO_SIZE   offsetofend(struct bpf_line_info, line_col)
15156 #define MAX_LINEINFO_REC_SIZE   MAX_FUNCINFO_REC_SIZE
15157
15158 static int check_btf_line(struct bpf_verifier_env *env,
15159                           const union bpf_attr *attr,
15160                           bpfptr_t uattr)
15161 {
15162         u32 i, s, nr_linfo, ncopy, expected_size, rec_size, prev_offset = 0;
15163         struct bpf_subprog_info *sub;
15164         struct bpf_line_info *linfo;
15165         struct bpf_prog *prog;
15166         const struct btf *btf;
15167         bpfptr_t ulinfo;
15168         int err;
15169
15170         nr_linfo = attr->line_info_cnt;
15171         if (!nr_linfo)
15172                 return 0;
15173         if (nr_linfo > INT_MAX / sizeof(struct bpf_line_info))
15174                 return -EINVAL;
15175
15176         rec_size = attr->line_info_rec_size;
15177         if (rec_size < MIN_BPF_LINEINFO_SIZE ||
15178             rec_size > MAX_LINEINFO_REC_SIZE ||
15179             rec_size & (sizeof(u32) - 1))
15180                 return -EINVAL;
15181
15182         /* Need to zero it in case the userspace may
15183          * pass in a smaller bpf_line_info object.
15184          */
15185         linfo = kvcalloc(nr_linfo, sizeof(struct bpf_line_info),
15186                          GFP_KERNEL | __GFP_NOWARN);
15187         if (!linfo)
15188                 return -ENOMEM;
15189
15190         prog = env->prog;
15191         btf = prog->aux->btf;
15192
15193         s = 0;
15194         sub = env->subprog_info;
15195         ulinfo = make_bpfptr(attr->line_info, uattr.is_kernel);
15196         expected_size = sizeof(struct bpf_line_info);
15197         ncopy = min_t(u32, expected_size, rec_size);
15198         for (i = 0; i < nr_linfo; i++) {
15199                 err = bpf_check_uarg_tail_zero(ulinfo, expected_size, rec_size);
15200                 if (err) {
15201                         if (err == -E2BIG) {
15202                                 verbose(env, "nonzero tailing record in line_info");
15203                                 if (copy_to_bpfptr_offset(uattr,
15204                                                           offsetof(union bpf_attr, line_info_rec_size),
15205                                                           &expected_size, sizeof(expected_size)))
15206                                         err = -EFAULT;
15207                         }
15208                         goto err_free;
15209                 }
15210
15211                 if (copy_from_bpfptr(&linfo[i], ulinfo, ncopy)) {
15212                         err = -EFAULT;
15213                         goto err_free;
15214                 }
15215
15216                 /*
15217                  * Check insn_off to ensure
15218                  * 1) strictly increasing AND
15219                  * 2) bounded by prog->len
15220                  *
15221                  * The linfo[0].insn_off == 0 check logically falls into
15222                  * the later "missing bpf_line_info for func..." case
15223                  * because the first linfo[0].insn_off must be the
15224                  * first sub also and the first sub must have
15225                  * subprog_info[0].start == 0.
15226                  */
15227                 if ((i && linfo[i].insn_off <= prev_offset) ||
15228                     linfo[i].insn_off >= prog->len) {
15229                         verbose(env, "Invalid line_info[%u].insn_off:%u (prev_offset:%u prog->len:%u)\n",
15230                                 i, linfo[i].insn_off, prev_offset,
15231                                 prog->len);
15232                         err = -EINVAL;
15233                         goto err_free;
15234                 }
15235
15236                 if (!prog->insnsi[linfo[i].insn_off].code) {
15237                         verbose(env,
15238                                 "Invalid insn code at line_info[%u].insn_off\n",
15239                                 i);
15240                         err = -EINVAL;
15241                         goto err_free;
15242                 }
15243
15244                 if (!btf_name_by_offset(btf, linfo[i].line_off) ||
15245                     !btf_name_by_offset(btf, linfo[i].file_name_off)) {
15246                         verbose(env, "Invalid line_info[%u].line_off or .file_name_off\n", i);
15247                         err = -EINVAL;
15248                         goto err_free;
15249                 }
15250
15251                 if (s != env->subprog_cnt) {
15252                         if (linfo[i].insn_off == sub[s].start) {
15253                                 sub[s].linfo_idx = i;
15254                                 s++;
15255                         } else if (sub[s].start < linfo[i].insn_off) {
15256                                 verbose(env, "missing bpf_line_info for func#%u\n", s);
15257                                 err = -EINVAL;
15258                                 goto err_free;
15259                         }
15260                 }
15261
15262                 prev_offset = linfo[i].insn_off;
15263                 bpfptr_add(&ulinfo, rec_size);
15264         }
15265
15266         if (s != env->subprog_cnt) {
15267                 verbose(env, "missing bpf_line_info for %u funcs starting from func#%u\n",
15268                         env->subprog_cnt - s, s);
15269                 err = -EINVAL;
15270                 goto err_free;
15271         }
15272
15273         prog->aux->linfo = linfo;
15274         prog->aux->nr_linfo = nr_linfo;
15275
15276         return 0;
15277
15278 err_free:
15279         kvfree(linfo);
15280         return err;
15281 }
15282
15283 #define MIN_CORE_RELO_SIZE      sizeof(struct bpf_core_relo)
15284 #define MAX_CORE_RELO_SIZE      MAX_FUNCINFO_REC_SIZE
15285
15286 static int check_core_relo(struct bpf_verifier_env *env,
15287                            const union bpf_attr *attr,
15288                            bpfptr_t uattr)
15289 {
15290         u32 i, nr_core_relo, ncopy, expected_size, rec_size;
15291         struct bpf_core_relo core_relo = {};
15292         struct bpf_prog *prog = env->prog;
15293         const struct btf *btf = prog->aux->btf;
15294         struct bpf_core_ctx ctx = {
15295                 .log = &env->log,
15296                 .btf = btf,
15297         };
15298         bpfptr_t u_core_relo;
15299         int err;
15300
15301         nr_core_relo = attr->core_relo_cnt;
15302         if (!nr_core_relo)
15303                 return 0;
15304         if (nr_core_relo > INT_MAX / sizeof(struct bpf_core_relo))
15305                 return -EINVAL;
15306
15307         rec_size = attr->core_relo_rec_size;
15308         if (rec_size < MIN_CORE_RELO_SIZE ||
15309             rec_size > MAX_CORE_RELO_SIZE ||
15310             rec_size % sizeof(u32))
15311                 return -EINVAL;
15312
15313         u_core_relo = make_bpfptr(attr->core_relos, uattr.is_kernel);
15314         expected_size = sizeof(struct bpf_core_relo);
15315         ncopy = min_t(u32, expected_size, rec_size);
15316
15317         /* Unlike func_info and line_info, copy and apply each CO-RE
15318          * relocation record one at a time.
15319          */
15320         for (i = 0; i < nr_core_relo; i++) {
15321                 /* future proofing when sizeof(bpf_core_relo) changes */
15322                 err = bpf_check_uarg_tail_zero(u_core_relo, expected_size, rec_size);
15323                 if (err) {
15324                         if (err == -E2BIG) {
15325                                 verbose(env, "nonzero tailing record in core_relo");
15326                                 if (copy_to_bpfptr_offset(uattr,
15327                                                           offsetof(union bpf_attr, core_relo_rec_size),
15328                                                           &expected_size, sizeof(expected_size)))
15329                                         err = -EFAULT;
15330                         }
15331                         break;
15332                 }
15333
15334                 if (copy_from_bpfptr(&core_relo, u_core_relo, ncopy)) {
15335                         err = -EFAULT;
15336                         break;
15337                 }
15338
15339                 if (core_relo.insn_off % 8 || core_relo.insn_off / 8 >= prog->len) {
15340                         verbose(env, "Invalid core_relo[%u].insn_off:%u prog->len:%u\n",
15341                                 i, core_relo.insn_off, prog->len);
15342                         err = -EINVAL;
15343                         break;
15344                 }
15345
15346                 err = bpf_core_apply(&ctx, &core_relo, i,
15347                                      &prog->insnsi[core_relo.insn_off / 8]);
15348                 if (err)
15349                         break;
15350                 bpfptr_add(&u_core_relo, rec_size);
15351         }
15352         return err;
15353 }
15354
15355 static int check_btf_info(struct bpf_verifier_env *env,
15356                           const union bpf_attr *attr,
15357                           bpfptr_t uattr)
15358 {
15359         struct btf *btf;
15360         int err;
15361
15362         if (!attr->func_info_cnt && !attr->line_info_cnt) {
15363                 if (check_abnormal_return(env))
15364                         return -EINVAL;
15365                 return 0;
15366         }
15367
15368         btf = btf_get_by_fd(attr->prog_btf_fd);
15369         if (IS_ERR(btf))
15370                 return PTR_ERR(btf);
15371         if (btf_is_kernel(btf)) {
15372                 btf_put(btf);
15373                 return -EACCES;
15374         }
15375         env->prog->aux->btf = btf;
15376
15377         err = check_btf_func(env, attr, uattr);
15378         if (err)
15379                 return err;
15380
15381         err = check_btf_line(env, attr, uattr);
15382         if (err)
15383                 return err;
15384
15385         err = check_core_relo(env, attr, uattr);
15386         if (err)
15387                 return err;
15388
15389         return 0;
15390 }
15391
15392 /* check %cur's range satisfies %old's */
15393 static bool range_within(struct bpf_reg_state *old,
15394                          struct bpf_reg_state *cur)
15395 {
15396         return old->umin_value <= cur->umin_value &&
15397                old->umax_value >= cur->umax_value &&
15398                old->smin_value <= cur->smin_value &&
15399                old->smax_value >= cur->smax_value &&
15400                old->u32_min_value <= cur->u32_min_value &&
15401                old->u32_max_value >= cur->u32_max_value &&
15402                old->s32_min_value <= cur->s32_min_value &&
15403                old->s32_max_value >= cur->s32_max_value;
15404 }
15405
15406 /* If in the old state two registers had the same id, then they need to have
15407  * the same id in the new state as well.  But that id could be different from
15408  * the old state, so we need to track the mapping from old to new ids.
15409  * Once we have seen that, say, a reg with old id 5 had new id 9, any subsequent
15410  * regs with old id 5 must also have new id 9 for the new state to be safe.  But
15411  * regs with a different old id could still have new id 9, we don't care about
15412  * that.
15413  * So we look through our idmap to see if this old id has been seen before.  If
15414  * so, we require the new id to match; otherwise, we add the id pair to the map.
15415  */
15416 static bool check_ids(u32 old_id, u32 cur_id, struct bpf_idmap *idmap)
15417 {
15418         struct bpf_id_pair *map = idmap->map;
15419         unsigned int i;
15420
15421         /* either both IDs should be set or both should be zero */
15422         if (!!old_id != !!cur_id)
15423                 return false;
15424
15425         if (old_id == 0) /* cur_id == 0 as well */
15426                 return true;
15427
15428         for (i = 0; i < BPF_ID_MAP_SIZE; i++) {
15429                 if (!map[i].old) {
15430                         /* Reached an empty slot; haven't seen this id before */
15431                         map[i].old = old_id;
15432                         map[i].cur = cur_id;
15433                         return true;
15434                 }
15435                 if (map[i].old == old_id)
15436                         return map[i].cur == cur_id;
15437                 if (map[i].cur == cur_id)
15438                         return false;
15439         }
15440         /* We ran out of idmap slots, which should be impossible */
15441         WARN_ON_ONCE(1);
15442         return false;
15443 }
15444
15445 /* Similar to check_ids(), but allocate a unique temporary ID
15446  * for 'old_id' or 'cur_id' of zero.
15447  * This makes pairs like '0 vs unique ID', 'unique ID vs 0' valid.
15448  */
15449 static bool check_scalar_ids(u32 old_id, u32 cur_id, struct bpf_idmap *idmap)
15450 {
15451         old_id = old_id ? old_id : ++idmap->tmp_id_gen;
15452         cur_id = cur_id ? cur_id : ++idmap->tmp_id_gen;
15453
15454         return check_ids(old_id, cur_id, idmap);
15455 }
15456
15457 static void clean_func_state(struct bpf_verifier_env *env,
15458                              struct bpf_func_state *st)
15459 {
15460         enum bpf_reg_liveness live;
15461         int i, j;
15462
15463         for (i = 0; i < BPF_REG_FP; i++) {
15464                 live = st->regs[i].live;
15465                 /* liveness must not touch this register anymore */
15466                 st->regs[i].live |= REG_LIVE_DONE;
15467                 if (!(live & REG_LIVE_READ))
15468                         /* since the register is unused, clear its state
15469                          * to make further comparison simpler
15470                          */
15471                         __mark_reg_not_init(env, &st->regs[i]);
15472         }
15473
15474         for (i = 0; i < st->allocated_stack / BPF_REG_SIZE; i++) {
15475                 live = st->stack[i].spilled_ptr.live;
15476                 /* liveness must not touch this stack slot anymore */
15477                 st->stack[i].spilled_ptr.live |= REG_LIVE_DONE;
15478                 if (!(live & REG_LIVE_READ)) {
15479                         __mark_reg_not_init(env, &st->stack[i].spilled_ptr);
15480                         for (j = 0; j < BPF_REG_SIZE; j++)
15481                                 st->stack[i].slot_type[j] = STACK_INVALID;
15482                 }
15483         }
15484 }
15485
15486 static void clean_verifier_state(struct bpf_verifier_env *env,
15487                                  struct bpf_verifier_state *st)
15488 {
15489         int i;
15490
15491         if (st->frame[0]->regs[0].live & REG_LIVE_DONE)
15492                 /* all regs in this state in all frames were already marked */
15493                 return;
15494
15495         for (i = 0; i <= st->curframe; i++)
15496                 clean_func_state(env, st->frame[i]);
15497 }
15498
15499 /* the parentage chains form a tree.
15500  * the verifier states are added to state lists at given insn and
15501  * pushed into state stack for future exploration.
15502  * when the verifier reaches bpf_exit insn some of the verifer states
15503  * stored in the state lists have their final liveness state already,
15504  * but a lot of states will get revised from liveness point of view when
15505  * the verifier explores other branches.
15506  * Example:
15507  * 1: r0 = 1
15508  * 2: if r1 == 100 goto pc+1
15509  * 3: r0 = 2
15510  * 4: exit
15511  * when the verifier reaches exit insn the register r0 in the state list of
15512  * insn 2 will be seen as !REG_LIVE_READ. Then the verifier pops the other_branch
15513  * of insn 2 and goes exploring further. At the insn 4 it will walk the
15514  * parentage chain from insn 4 into insn 2 and will mark r0 as REG_LIVE_READ.
15515  *
15516  * Since the verifier pushes the branch states as it sees them while exploring
15517  * the program the condition of walking the branch instruction for the second
15518  * time means that all states below this branch were already explored and
15519  * their final liveness marks are already propagated.
15520  * Hence when the verifier completes the search of state list in is_state_visited()
15521  * we can call this clean_live_states() function to mark all liveness states
15522  * as REG_LIVE_DONE to indicate that 'parent' pointers of 'struct bpf_reg_state'
15523  * will not be used.
15524  * This function also clears the registers and stack for states that !READ
15525  * to simplify state merging.
15526  *
15527  * Important note here that walking the same branch instruction in the callee
15528  * doesn't meant that the states are DONE. The verifier has to compare
15529  * the callsites
15530  */
15531 static void clean_live_states(struct bpf_verifier_env *env, int insn,
15532                               struct bpf_verifier_state *cur)
15533 {
15534         struct bpf_verifier_state_list *sl;
15535         int i;
15536
15537         sl = *explored_state(env, insn);
15538         while (sl) {
15539                 if (sl->state.branches)
15540                         goto next;
15541                 if (sl->state.insn_idx != insn ||
15542                     sl->state.curframe != cur->curframe)
15543                         goto next;
15544                 for (i = 0; i <= cur->curframe; i++)
15545                         if (sl->state.frame[i]->callsite != cur->frame[i]->callsite)
15546                                 goto next;
15547                 clean_verifier_state(env, &sl->state);
15548 next:
15549                 sl = sl->next;
15550         }
15551 }
15552
15553 static bool regs_exact(const struct bpf_reg_state *rold,
15554                        const struct bpf_reg_state *rcur,
15555                        struct bpf_idmap *idmap)
15556 {
15557         return memcmp(rold, rcur, offsetof(struct bpf_reg_state, id)) == 0 &&
15558                check_ids(rold->id, rcur->id, idmap) &&
15559                check_ids(rold->ref_obj_id, rcur->ref_obj_id, idmap);
15560 }
15561
15562 /* Returns true if (rold safe implies rcur safe) */
15563 static bool regsafe(struct bpf_verifier_env *env, struct bpf_reg_state *rold,
15564                     struct bpf_reg_state *rcur, struct bpf_idmap *idmap)
15565 {
15566         if (!(rold->live & REG_LIVE_READ))
15567                 /* explored state didn't use this */
15568                 return true;
15569         if (rold->type == NOT_INIT)
15570                 /* explored state can't have used this */
15571                 return true;
15572         if (rcur->type == NOT_INIT)
15573                 return false;
15574
15575         /* Enforce that register types have to match exactly, including their
15576          * modifiers (like PTR_MAYBE_NULL, MEM_RDONLY, etc), as a general
15577          * rule.
15578          *
15579          * One can make a point that using a pointer register as unbounded
15580          * SCALAR would be technically acceptable, but this could lead to
15581          * pointer leaks because scalars are allowed to leak while pointers
15582          * are not. We could make this safe in special cases if root is
15583          * calling us, but it's probably not worth the hassle.
15584          *
15585          * Also, register types that are *not* MAYBE_NULL could technically be
15586          * safe to use as their MAYBE_NULL variants (e.g., PTR_TO_MAP_VALUE
15587          * is safe to be used as PTR_TO_MAP_VALUE_OR_NULL, provided both point
15588          * to the same map).
15589          * However, if the old MAYBE_NULL register then got NULL checked,
15590          * doing so could have affected others with the same id, and we can't
15591          * check for that because we lost the id when we converted to
15592          * a non-MAYBE_NULL variant.
15593          * So, as a general rule we don't allow mixing MAYBE_NULL and
15594          * non-MAYBE_NULL registers as well.
15595          */
15596         if (rold->type != rcur->type)
15597                 return false;
15598
15599         switch (base_type(rold->type)) {
15600         case SCALAR_VALUE:
15601                 if (env->explore_alu_limits) {
15602                         /* explore_alu_limits disables tnum_in() and range_within()
15603                          * logic and requires everything to be strict
15604                          */
15605                         return memcmp(rold, rcur, offsetof(struct bpf_reg_state, id)) == 0 &&
15606                                check_scalar_ids(rold->id, rcur->id, idmap);
15607                 }
15608                 if (!rold->precise)
15609                         return true;
15610                 /* Why check_ids() for scalar registers?
15611                  *
15612                  * Consider the following BPF code:
15613                  *   1: r6 = ... unbound scalar, ID=a ...
15614                  *   2: r7 = ... unbound scalar, ID=b ...
15615                  *   3: if (r6 > r7) goto +1
15616                  *   4: r6 = r7
15617                  *   5: if (r6 > X) goto ...
15618                  *   6: ... memory operation using r7 ...
15619                  *
15620                  * First verification path is [1-6]:
15621                  * - at (4) same bpf_reg_state::id (b) would be assigned to r6 and r7;
15622                  * - at (5) r6 would be marked <= X, find_equal_scalars() would also mark
15623                  *   r7 <= X, because r6 and r7 share same id.
15624                  * Next verification path is [1-4, 6].
15625                  *
15626                  * Instruction (6) would be reached in two states:
15627                  *   I.  r6{.id=b}, r7{.id=b} via path 1-6;
15628                  *   II. r6{.id=a}, r7{.id=b} via path 1-4, 6.
15629                  *
15630                  * Use check_ids() to distinguish these states.
15631                  * ---
15632                  * Also verify that new value satisfies old value range knowledge.
15633                  */
15634                 return range_within(rold, rcur) &&
15635                        tnum_in(rold->var_off, rcur->var_off) &&
15636                        check_scalar_ids(rold->id, rcur->id, idmap);
15637         case PTR_TO_MAP_KEY:
15638         case PTR_TO_MAP_VALUE:
15639         case PTR_TO_MEM:
15640         case PTR_TO_BUF:
15641         case PTR_TO_TP_BUFFER:
15642                 /* If the new min/max/var_off satisfy the old ones and
15643                  * everything else matches, we are OK.
15644                  */
15645                 return memcmp(rold, rcur, offsetof(struct bpf_reg_state, var_off)) == 0 &&
15646                        range_within(rold, rcur) &&
15647                        tnum_in(rold->var_off, rcur->var_off) &&
15648                        check_ids(rold->id, rcur->id, idmap) &&
15649                        check_ids(rold->ref_obj_id, rcur->ref_obj_id, idmap);
15650         case PTR_TO_PACKET_META:
15651         case PTR_TO_PACKET:
15652                 /* We must have at least as much range as the old ptr
15653                  * did, so that any accesses which were safe before are
15654                  * still safe.  This is true even if old range < old off,
15655                  * since someone could have accessed through (ptr - k), or
15656                  * even done ptr -= k in a register, to get a safe access.
15657                  */
15658                 if (rold->range > rcur->range)
15659                         return false;
15660                 /* If the offsets don't match, we can't trust our alignment;
15661                  * nor can we be sure that we won't fall out of range.
15662                  */
15663                 if (rold->off != rcur->off)
15664                         return false;
15665                 /* id relations must be preserved */
15666                 if (!check_ids(rold->id, rcur->id, idmap))
15667                         return false;
15668                 /* new val must satisfy old val knowledge */
15669                 return range_within(rold, rcur) &&
15670                        tnum_in(rold->var_off, rcur->var_off);
15671         case PTR_TO_STACK:
15672                 /* two stack pointers are equal only if they're pointing to
15673                  * the same stack frame, since fp-8 in foo != fp-8 in bar
15674                  */
15675                 return regs_exact(rold, rcur, idmap) && rold->frameno == rcur->frameno;
15676         default:
15677                 return regs_exact(rold, rcur, idmap);
15678         }
15679 }
15680
15681 static bool stacksafe(struct bpf_verifier_env *env, struct bpf_func_state *old,
15682                       struct bpf_func_state *cur, struct bpf_idmap *idmap)
15683 {
15684         int i, spi;
15685
15686         /* walk slots of the explored stack and ignore any additional
15687          * slots in the current stack, since explored(safe) state
15688          * didn't use them
15689          */
15690         for (i = 0; i < old->allocated_stack; i++) {
15691                 struct bpf_reg_state *old_reg, *cur_reg;
15692
15693                 spi = i / BPF_REG_SIZE;
15694
15695                 if (!(old->stack[spi].spilled_ptr.live & REG_LIVE_READ)) {
15696                         i += BPF_REG_SIZE - 1;
15697                         /* explored state didn't use this */
15698                         continue;
15699                 }
15700
15701                 if (old->stack[spi].slot_type[i % BPF_REG_SIZE] == STACK_INVALID)
15702                         continue;
15703
15704                 if (env->allow_uninit_stack &&
15705                     old->stack[spi].slot_type[i % BPF_REG_SIZE] == STACK_MISC)
15706                         continue;
15707
15708                 /* explored stack has more populated slots than current stack
15709                  * and these slots were used
15710                  */
15711                 if (i >= cur->allocated_stack)
15712                         return false;
15713
15714                 /* if old state was safe with misc data in the stack
15715                  * it will be safe with zero-initialized stack.
15716                  * The opposite is not true
15717                  */
15718                 if (old->stack[spi].slot_type[i % BPF_REG_SIZE] == STACK_MISC &&
15719                     cur->stack[spi].slot_type[i % BPF_REG_SIZE] == STACK_ZERO)
15720                         continue;
15721                 if (old->stack[spi].slot_type[i % BPF_REG_SIZE] !=
15722                     cur->stack[spi].slot_type[i % BPF_REG_SIZE])
15723                         /* Ex: old explored (safe) state has STACK_SPILL in
15724                          * this stack slot, but current has STACK_MISC ->
15725                          * this verifier states are not equivalent,
15726                          * return false to continue verification of this path
15727                          */
15728                         return false;
15729                 if (i % BPF_REG_SIZE != BPF_REG_SIZE - 1)
15730                         continue;
15731                 /* Both old and cur are having same slot_type */
15732                 switch (old->stack[spi].slot_type[BPF_REG_SIZE - 1]) {
15733                 case STACK_SPILL:
15734                         /* when explored and current stack slot are both storing
15735                          * spilled registers, check that stored pointers types
15736                          * are the same as well.
15737                          * Ex: explored safe path could have stored
15738                          * (bpf_reg_state) {.type = PTR_TO_STACK, .off = -8}
15739                          * but current path has stored:
15740                          * (bpf_reg_state) {.type = PTR_TO_STACK, .off = -16}
15741                          * such verifier states are not equivalent.
15742                          * return false to continue verification of this path
15743                          */
15744                         if (!regsafe(env, &old->stack[spi].spilled_ptr,
15745                                      &cur->stack[spi].spilled_ptr, idmap))
15746                                 return false;
15747                         break;
15748                 case STACK_DYNPTR:
15749                         old_reg = &old->stack[spi].spilled_ptr;
15750                         cur_reg = &cur->stack[spi].spilled_ptr;
15751                         if (old_reg->dynptr.type != cur_reg->dynptr.type ||
15752                             old_reg->dynptr.first_slot != cur_reg->dynptr.first_slot ||
15753                             !check_ids(old_reg->ref_obj_id, cur_reg->ref_obj_id, idmap))
15754                                 return false;
15755                         break;
15756                 case STACK_ITER:
15757                         old_reg = &old->stack[spi].spilled_ptr;
15758                         cur_reg = &cur->stack[spi].spilled_ptr;
15759                         /* iter.depth is not compared between states as it
15760                          * doesn't matter for correctness and would otherwise
15761                          * prevent convergence; we maintain it only to prevent
15762                          * infinite loop check triggering, see
15763                          * iter_active_depths_differ()
15764                          */
15765                         if (old_reg->iter.btf != cur_reg->iter.btf ||
15766                             old_reg->iter.btf_id != cur_reg->iter.btf_id ||
15767                             old_reg->iter.state != cur_reg->iter.state ||
15768                             /* ignore {old_reg,cur_reg}->iter.depth, see above */
15769                             !check_ids(old_reg->ref_obj_id, cur_reg->ref_obj_id, idmap))
15770                                 return false;
15771                         break;
15772                 case STACK_MISC:
15773                 case STACK_ZERO:
15774                 case STACK_INVALID:
15775                         continue;
15776                 /* Ensure that new unhandled slot types return false by default */
15777                 default:
15778                         return false;
15779                 }
15780         }
15781         return true;
15782 }
15783
15784 static bool refsafe(struct bpf_func_state *old, struct bpf_func_state *cur,
15785                     struct bpf_idmap *idmap)
15786 {
15787         int i;
15788
15789         if (old->acquired_refs != cur->acquired_refs)
15790                 return false;
15791
15792         for (i = 0; i < old->acquired_refs; i++) {
15793                 if (!check_ids(old->refs[i].id, cur->refs[i].id, idmap))
15794                         return false;
15795         }
15796
15797         return true;
15798 }
15799
15800 /* compare two verifier states
15801  *
15802  * all states stored in state_list are known to be valid, since
15803  * verifier reached 'bpf_exit' instruction through them
15804  *
15805  * this function is called when verifier exploring different branches of
15806  * execution popped from the state stack. If it sees an old state that has
15807  * more strict register state and more strict stack state then this execution
15808  * branch doesn't need to be explored further, since verifier already
15809  * concluded that more strict state leads to valid finish.
15810  *
15811  * Therefore two states are equivalent if register state is more conservative
15812  * and explored stack state is more conservative than the current one.
15813  * Example:
15814  *       explored                   current
15815  * (slot1=INV slot2=MISC) == (slot1=MISC slot2=MISC)
15816  * (slot1=MISC slot2=MISC) != (slot1=INV slot2=MISC)
15817  *
15818  * In other words if current stack state (one being explored) has more
15819  * valid slots than old one that already passed validation, it means
15820  * the verifier can stop exploring and conclude that current state is valid too
15821  *
15822  * Similarly with registers. If explored state has register type as invalid
15823  * whereas register type in current state is meaningful, it means that
15824  * the current state will reach 'bpf_exit' instruction safely
15825  */
15826 static bool func_states_equal(struct bpf_verifier_env *env, struct bpf_func_state *old,
15827                               struct bpf_func_state *cur)
15828 {
15829         int i;
15830
15831         for (i = 0; i < MAX_BPF_REG; i++)
15832                 if (!regsafe(env, &old->regs[i], &cur->regs[i],
15833                              &env->idmap_scratch))
15834                         return false;
15835
15836         if (!stacksafe(env, old, cur, &env->idmap_scratch))
15837                 return false;
15838
15839         if (!refsafe(old, cur, &env->idmap_scratch))
15840                 return false;
15841
15842         return true;
15843 }
15844
15845 static bool states_equal(struct bpf_verifier_env *env,
15846                          struct bpf_verifier_state *old,
15847                          struct bpf_verifier_state *cur)
15848 {
15849         int i;
15850
15851         if (old->curframe != cur->curframe)
15852                 return false;
15853
15854         env->idmap_scratch.tmp_id_gen = env->id_gen;
15855         memset(&env->idmap_scratch.map, 0, sizeof(env->idmap_scratch.map));
15856
15857         /* Verification state from speculative execution simulation
15858          * must never prune a non-speculative execution one.
15859          */
15860         if (old->speculative && !cur->speculative)
15861                 return false;
15862
15863         if (old->active_lock.ptr != cur->active_lock.ptr)
15864                 return false;
15865
15866         /* Old and cur active_lock's have to be either both present
15867          * or both absent.
15868          */
15869         if (!!old->active_lock.id != !!cur->active_lock.id)
15870                 return false;
15871
15872         if (old->active_lock.id &&
15873             !check_ids(old->active_lock.id, cur->active_lock.id, &env->idmap_scratch))
15874                 return false;
15875
15876         if (old->active_rcu_lock != cur->active_rcu_lock)
15877                 return false;
15878
15879         /* for states to be equal callsites have to be the same
15880          * and all frame states need to be equivalent
15881          */
15882         for (i = 0; i <= old->curframe; i++) {
15883                 if (old->frame[i]->callsite != cur->frame[i]->callsite)
15884                         return false;
15885                 if (!func_states_equal(env, old->frame[i], cur->frame[i]))
15886                         return false;
15887         }
15888         return true;
15889 }
15890
15891 /* Return 0 if no propagation happened. Return negative error code if error
15892  * happened. Otherwise, return the propagated bit.
15893  */
15894 static int propagate_liveness_reg(struct bpf_verifier_env *env,
15895                                   struct bpf_reg_state *reg,
15896                                   struct bpf_reg_state *parent_reg)
15897 {
15898         u8 parent_flag = parent_reg->live & REG_LIVE_READ;
15899         u8 flag = reg->live & REG_LIVE_READ;
15900         int err;
15901
15902         /* When comes here, read flags of PARENT_REG or REG could be any of
15903          * REG_LIVE_READ64, REG_LIVE_READ32, REG_LIVE_NONE. There is no need
15904          * of propagation if PARENT_REG has strongest REG_LIVE_READ64.
15905          */
15906         if (parent_flag == REG_LIVE_READ64 ||
15907             /* Or if there is no read flag from REG. */
15908             !flag ||
15909             /* Or if the read flag from REG is the same as PARENT_REG. */
15910             parent_flag == flag)
15911                 return 0;
15912
15913         err = mark_reg_read(env, reg, parent_reg, flag);
15914         if (err)
15915                 return err;
15916
15917         return flag;
15918 }
15919
15920 /* A write screens off any subsequent reads; but write marks come from the
15921  * straight-line code between a state and its parent.  When we arrive at an
15922  * equivalent state (jump target or such) we didn't arrive by the straight-line
15923  * code, so read marks in the state must propagate to the parent regardless
15924  * of the state's write marks. That's what 'parent == state->parent' comparison
15925  * in mark_reg_read() is for.
15926  */
15927 static int propagate_liveness(struct bpf_verifier_env *env,
15928                               const struct bpf_verifier_state *vstate,
15929                               struct bpf_verifier_state *vparent)
15930 {
15931         struct bpf_reg_state *state_reg, *parent_reg;
15932         struct bpf_func_state *state, *parent;
15933         int i, frame, err = 0;
15934
15935         if (vparent->curframe != vstate->curframe) {
15936                 WARN(1, "propagate_live: parent frame %d current frame %d\n",
15937                      vparent->curframe, vstate->curframe);
15938                 return -EFAULT;
15939         }
15940         /* Propagate read liveness of registers... */
15941         BUILD_BUG_ON(BPF_REG_FP + 1 != MAX_BPF_REG);
15942         for (frame = 0; frame <= vstate->curframe; frame++) {
15943                 parent = vparent->frame[frame];
15944                 state = vstate->frame[frame];
15945                 parent_reg = parent->regs;
15946                 state_reg = state->regs;
15947                 /* We don't need to worry about FP liveness, it's read-only */
15948                 for (i = frame < vstate->curframe ? BPF_REG_6 : 0; i < BPF_REG_FP; i++) {
15949                         err = propagate_liveness_reg(env, &state_reg[i],
15950                                                      &parent_reg[i]);
15951                         if (err < 0)
15952                                 return err;
15953                         if (err == REG_LIVE_READ64)
15954                                 mark_insn_zext(env, &parent_reg[i]);
15955                 }
15956
15957                 /* Propagate stack slots. */
15958                 for (i = 0; i < state->allocated_stack / BPF_REG_SIZE &&
15959                             i < parent->allocated_stack / BPF_REG_SIZE; i++) {
15960                         parent_reg = &parent->stack[i].spilled_ptr;
15961                         state_reg = &state->stack[i].spilled_ptr;
15962                         err = propagate_liveness_reg(env, state_reg,
15963                                                      parent_reg);
15964                         if (err < 0)
15965                                 return err;
15966                 }
15967         }
15968         return 0;
15969 }
15970
15971 /* find precise scalars in the previous equivalent state and
15972  * propagate them into the current state
15973  */
15974 static int propagate_precision(struct bpf_verifier_env *env,
15975                                const struct bpf_verifier_state *old)
15976 {
15977         struct bpf_reg_state *state_reg;
15978         struct bpf_func_state *state;
15979         int i, err = 0, fr;
15980         bool first;
15981
15982         for (fr = old->curframe; fr >= 0; fr--) {
15983                 state = old->frame[fr];
15984                 state_reg = state->regs;
15985                 first = true;
15986                 for (i = 0; i < BPF_REG_FP; i++, state_reg++) {
15987                         if (state_reg->type != SCALAR_VALUE ||
15988                             !state_reg->precise ||
15989                             !(state_reg->live & REG_LIVE_READ))
15990                                 continue;
15991                         if (env->log.level & BPF_LOG_LEVEL2) {
15992                                 if (first)
15993                                         verbose(env, "frame %d: propagating r%d", fr, i);
15994                                 else
15995                                         verbose(env, ",r%d", i);
15996                         }
15997                         bt_set_frame_reg(&env->bt, fr, i);
15998                         first = false;
15999                 }
16000
16001                 for (i = 0; i < state->allocated_stack / BPF_REG_SIZE; i++) {
16002                         if (!is_spilled_reg(&state->stack[i]))
16003                                 continue;
16004                         state_reg = &state->stack[i].spilled_ptr;
16005                         if (state_reg->type != SCALAR_VALUE ||
16006                             !state_reg->precise ||
16007                             !(state_reg->live & REG_LIVE_READ))
16008                                 continue;
16009                         if (env->log.level & BPF_LOG_LEVEL2) {
16010                                 if (first)
16011                                         verbose(env, "frame %d: propagating fp%d",
16012                                                 fr, (-i - 1) * BPF_REG_SIZE);
16013                                 else
16014                                         verbose(env, ",fp%d", (-i - 1) * BPF_REG_SIZE);
16015                         }
16016                         bt_set_frame_slot(&env->bt, fr, i);
16017                         first = false;
16018                 }
16019                 if (!first)
16020                         verbose(env, "\n");
16021         }
16022
16023         err = mark_chain_precision_batch(env);
16024         if (err < 0)
16025                 return err;
16026
16027         return 0;
16028 }
16029
16030 static bool states_maybe_looping(struct bpf_verifier_state *old,
16031                                  struct bpf_verifier_state *cur)
16032 {
16033         struct bpf_func_state *fold, *fcur;
16034         int i, fr = cur->curframe;
16035
16036         if (old->curframe != fr)
16037                 return false;
16038
16039         fold = old->frame[fr];
16040         fcur = cur->frame[fr];
16041         for (i = 0; i < MAX_BPF_REG; i++)
16042                 if (memcmp(&fold->regs[i], &fcur->regs[i],
16043                            offsetof(struct bpf_reg_state, parent)))
16044                         return false;
16045         return true;
16046 }
16047
16048 static bool is_iter_next_insn(struct bpf_verifier_env *env, int insn_idx)
16049 {
16050         return env->insn_aux_data[insn_idx].is_iter_next;
16051 }
16052
16053 /* is_state_visited() handles iter_next() (see process_iter_next_call() for
16054  * terminology) calls specially: as opposed to bounded BPF loops, it *expects*
16055  * states to match, which otherwise would look like an infinite loop. So while
16056  * iter_next() calls are taken care of, we still need to be careful and
16057  * prevent erroneous and too eager declaration of "ininite loop", when
16058  * iterators are involved.
16059  *
16060  * Here's a situation in pseudo-BPF assembly form:
16061  *
16062  *   0: again:                          ; set up iter_next() call args
16063  *   1:   r1 = &it                      ; <CHECKPOINT HERE>
16064  *   2:   call bpf_iter_num_next        ; this is iter_next() call
16065  *   3:   if r0 == 0 goto done
16066  *   4:   ... something useful here ...
16067  *   5:   goto again                    ; another iteration
16068  *   6: done:
16069  *   7:   r1 = &it
16070  *   8:   call bpf_iter_num_destroy     ; clean up iter state
16071  *   9:   exit
16072  *
16073  * This is a typical loop. Let's assume that we have a prune point at 1:,
16074  * before we get to `call bpf_iter_num_next` (e.g., because of that `goto
16075  * again`, assuming other heuristics don't get in a way).
16076  *
16077  * When we first time come to 1:, let's say we have some state X. We proceed
16078  * to 2:, fork states, enqueue ACTIVE, validate NULL case successfully, exit.
16079  * Now we come back to validate that forked ACTIVE state. We proceed through
16080  * 3-5, come to goto, jump to 1:. Let's assume our state didn't change, so we
16081  * are converging. But the problem is that we don't know that yet, as this
16082  * convergence has to happen at iter_next() call site only. So if nothing is
16083  * done, at 1: verifier will use bounded loop logic and declare infinite
16084  * looping (and would be *technically* correct, if not for iterator's
16085  * "eventual sticky NULL" contract, see process_iter_next_call()). But we
16086  * don't want that. So what we do in process_iter_next_call() when we go on
16087  * another ACTIVE iteration, we bump slot->iter.depth, to mark that it's
16088  * a different iteration. So when we suspect an infinite loop, we additionally
16089  * check if any of the *ACTIVE* iterator states depths differ. If yes, we
16090  * pretend we are not looping and wait for next iter_next() call.
16091  *
16092  * This only applies to ACTIVE state. In DRAINED state we don't expect to
16093  * loop, because that would actually mean infinite loop, as DRAINED state is
16094  * "sticky", and so we'll keep returning into the same instruction with the
16095  * same state (at least in one of possible code paths).
16096  *
16097  * This approach allows to keep infinite loop heuristic even in the face of
16098  * active iterator. E.g., C snippet below is and will be detected as
16099  * inifintely looping:
16100  *
16101  *   struct bpf_iter_num it;
16102  *   int *p, x;
16103  *
16104  *   bpf_iter_num_new(&it, 0, 10);
16105  *   while ((p = bpf_iter_num_next(&t))) {
16106  *       x = p;
16107  *       while (x--) {} // <<-- infinite loop here
16108  *   }
16109  *
16110  */
16111 static bool iter_active_depths_differ(struct bpf_verifier_state *old, struct bpf_verifier_state *cur)
16112 {
16113         struct bpf_reg_state *slot, *cur_slot;
16114         struct bpf_func_state *state;
16115         int i, fr;
16116
16117         for (fr = old->curframe; fr >= 0; fr--) {
16118                 state = old->frame[fr];
16119                 for (i = 0; i < state->allocated_stack / BPF_REG_SIZE; i++) {
16120                         if (state->stack[i].slot_type[0] != STACK_ITER)
16121                                 continue;
16122
16123                         slot = &state->stack[i].spilled_ptr;
16124                         if (slot->iter.state != BPF_ITER_STATE_ACTIVE)
16125                                 continue;
16126
16127                         cur_slot = &cur->frame[fr]->stack[i].spilled_ptr;
16128                         if (cur_slot->iter.depth != slot->iter.depth)
16129                                 return true;
16130                 }
16131         }
16132         return false;
16133 }
16134
16135 static int is_state_visited(struct bpf_verifier_env *env, int insn_idx)
16136 {
16137         struct bpf_verifier_state_list *new_sl;
16138         struct bpf_verifier_state_list *sl, **pprev;
16139         struct bpf_verifier_state *cur = env->cur_state, *new;
16140         int i, j, err, states_cnt = 0;
16141         bool force_new_state = env->test_state_freq || is_force_checkpoint(env, insn_idx);
16142         bool add_new_state = force_new_state;
16143
16144         /* bpf progs typically have pruning point every 4 instructions
16145          * http://vger.kernel.org/bpfconf2019.html#session-1
16146          * Do not add new state for future pruning if the verifier hasn't seen
16147          * at least 2 jumps and at least 8 instructions.
16148          * This heuristics helps decrease 'total_states' and 'peak_states' metric.
16149          * In tests that amounts to up to 50% reduction into total verifier
16150          * memory consumption and 20% verifier time speedup.
16151          */
16152         if (env->jmps_processed - env->prev_jmps_processed >= 2 &&
16153             env->insn_processed - env->prev_insn_processed >= 8)
16154                 add_new_state = true;
16155
16156         pprev = explored_state(env, insn_idx);
16157         sl = *pprev;
16158
16159         clean_live_states(env, insn_idx, cur);
16160
16161         while (sl) {
16162                 states_cnt++;
16163                 if (sl->state.insn_idx != insn_idx)
16164                         goto next;
16165
16166                 if (sl->state.branches) {
16167                         struct bpf_func_state *frame = sl->state.frame[sl->state.curframe];
16168
16169                         if (frame->in_async_callback_fn &&
16170                             frame->async_entry_cnt != cur->frame[cur->curframe]->async_entry_cnt) {
16171                                 /* Different async_entry_cnt means that the verifier is
16172                                  * processing another entry into async callback.
16173                                  * Seeing the same state is not an indication of infinite
16174                                  * loop or infinite recursion.
16175                                  * But finding the same state doesn't mean that it's safe
16176                                  * to stop processing the current state. The previous state
16177                                  * hasn't yet reached bpf_exit, since state.branches > 0.
16178                                  * Checking in_async_callback_fn alone is not enough either.
16179                                  * Since the verifier still needs to catch infinite loops
16180                                  * inside async callbacks.
16181                                  */
16182                                 goto skip_inf_loop_check;
16183                         }
16184                         /* BPF open-coded iterators loop detection is special.
16185                          * states_maybe_looping() logic is too simplistic in detecting
16186                          * states that *might* be equivalent, because it doesn't know
16187                          * about ID remapping, so don't even perform it.
16188                          * See process_iter_next_call() and iter_active_depths_differ()
16189                          * for overview of the logic. When current and one of parent
16190                          * states are detected as equivalent, it's a good thing: we prove
16191                          * convergence and can stop simulating further iterations.
16192                          * It's safe to assume that iterator loop will finish, taking into
16193                          * account iter_next() contract of eventually returning
16194                          * sticky NULL result.
16195                          */
16196                         if (is_iter_next_insn(env, insn_idx)) {
16197                                 if (states_equal(env, &sl->state, cur)) {
16198                                         struct bpf_func_state *cur_frame;
16199                                         struct bpf_reg_state *iter_state, *iter_reg;
16200                                         int spi;
16201
16202                                         cur_frame = cur->frame[cur->curframe];
16203                                         /* btf_check_iter_kfuncs() enforces that
16204                                          * iter state pointer is always the first arg
16205                                          */
16206                                         iter_reg = &cur_frame->regs[BPF_REG_1];
16207                                         /* current state is valid due to states_equal(),
16208                                          * so we can assume valid iter and reg state,
16209                                          * no need for extra (re-)validations
16210                                          */
16211                                         spi = __get_spi(iter_reg->off + iter_reg->var_off.value);
16212                                         iter_state = &func(env, iter_reg)->stack[spi].spilled_ptr;
16213                                         if (iter_state->iter.state == BPF_ITER_STATE_ACTIVE)
16214                                                 goto hit;
16215                                 }
16216                                 goto skip_inf_loop_check;
16217                         }
16218                         /* attempt to detect infinite loop to avoid unnecessary doomed work */
16219                         if (states_maybe_looping(&sl->state, cur) &&
16220                             states_equal(env, &sl->state, cur) &&
16221                             !iter_active_depths_differ(&sl->state, cur)) {
16222                                 verbose_linfo(env, insn_idx, "; ");
16223                                 verbose(env, "infinite loop detected at insn %d\n", insn_idx);
16224                                 return -EINVAL;
16225                         }
16226                         /* if the verifier is processing a loop, avoid adding new state
16227                          * too often, since different loop iterations have distinct
16228                          * states and may not help future pruning.
16229                          * This threshold shouldn't be too low to make sure that
16230                          * a loop with large bound will be rejected quickly.
16231                          * The most abusive loop will be:
16232                          * r1 += 1
16233                          * if r1 < 1000000 goto pc-2
16234                          * 1M insn_procssed limit / 100 == 10k peak states.
16235                          * This threshold shouldn't be too high either, since states
16236                          * at the end of the loop are likely to be useful in pruning.
16237                          */
16238 skip_inf_loop_check:
16239                         if (!force_new_state &&
16240                             env->jmps_processed - env->prev_jmps_processed < 20 &&
16241                             env->insn_processed - env->prev_insn_processed < 100)
16242                                 add_new_state = false;
16243                         goto miss;
16244                 }
16245                 if (states_equal(env, &sl->state, cur)) {
16246 hit:
16247                         sl->hit_cnt++;
16248                         /* reached equivalent register/stack state,
16249                          * prune the search.
16250                          * Registers read by the continuation are read by us.
16251                          * If we have any write marks in env->cur_state, they
16252                          * will prevent corresponding reads in the continuation
16253                          * from reaching our parent (an explored_state).  Our
16254                          * own state will get the read marks recorded, but
16255                          * they'll be immediately forgotten as we're pruning
16256                          * this state and will pop a new one.
16257                          */
16258                         err = propagate_liveness(env, &sl->state, cur);
16259
16260                         /* if previous state reached the exit with precision and
16261                          * current state is equivalent to it (except precsion marks)
16262                          * the precision needs to be propagated back in
16263                          * the current state.
16264                          */
16265                         err = err ? : push_jmp_history(env, cur);
16266                         err = err ? : propagate_precision(env, &sl->state);
16267                         if (err)
16268                                 return err;
16269                         return 1;
16270                 }
16271 miss:
16272                 /* when new state is not going to be added do not increase miss count.
16273                  * Otherwise several loop iterations will remove the state
16274                  * recorded earlier. The goal of these heuristics is to have
16275                  * states from some iterations of the loop (some in the beginning
16276                  * and some at the end) to help pruning.
16277                  */
16278                 if (add_new_state)
16279                         sl->miss_cnt++;
16280                 /* heuristic to determine whether this state is beneficial
16281                  * to keep checking from state equivalence point of view.
16282                  * Higher numbers increase max_states_per_insn and verification time,
16283                  * but do not meaningfully decrease insn_processed.
16284                  */
16285                 if (sl->miss_cnt > sl->hit_cnt * 3 + 3) {
16286                         /* the state is unlikely to be useful. Remove it to
16287                          * speed up verification
16288                          */
16289                         *pprev = sl->next;
16290                         if (sl->state.frame[0]->regs[0].live & REG_LIVE_DONE) {
16291                                 u32 br = sl->state.branches;
16292
16293                                 WARN_ONCE(br,
16294                                           "BUG live_done but branches_to_explore %d\n",
16295                                           br);
16296                                 free_verifier_state(&sl->state, false);
16297                                 kfree(sl);
16298                                 env->peak_states--;
16299                         } else {
16300                                 /* cannot free this state, since parentage chain may
16301                                  * walk it later. Add it for free_list instead to
16302                                  * be freed at the end of verification
16303                                  */
16304                                 sl->next = env->free_list;
16305                                 env->free_list = sl;
16306                         }
16307                         sl = *pprev;
16308                         continue;
16309                 }
16310 next:
16311                 pprev = &sl->next;
16312                 sl = *pprev;
16313         }
16314
16315         if (env->max_states_per_insn < states_cnt)
16316                 env->max_states_per_insn = states_cnt;
16317
16318         if (!env->bpf_capable && states_cnt > BPF_COMPLEXITY_LIMIT_STATES)
16319                 return 0;
16320
16321         if (!add_new_state)
16322                 return 0;
16323
16324         /* There were no equivalent states, remember the current one.
16325          * Technically the current state is not proven to be safe yet,
16326          * but it will either reach outer most bpf_exit (which means it's safe)
16327          * or it will be rejected. When there are no loops the verifier won't be
16328          * seeing this tuple (frame[0].callsite, frame[1].callsite, .. insn_idx)
16329          * again on the way to bpf_exit.
16330          * When looping the sl->state.branches will be > 0 and this state
16331          * will not be considered for equivalence until branches == 0.
16332          */
16333         new_sl = kzalloc(sizeof(struct bpf_verifier_state_list), GFP_KERNEL);
16334         if (!new_sl)
16335                 return -ENOMEM;
16336         env->total_states++;
16337         env->peak_states++;
16338         env->prev_jmps_processed = env->jmps_processed;
16339         env->prev_insn_processed = env->insn_processed;
16340
16341         /* forget precise markings we inherited, see __mark_chain_precision */
16342         if (env->bpf_capable)
16343                 mark_all_scalars_imprecise(env, cur);
16344
16345         /* add new state to the head of linked list */
16346         new = &new_sl->state;
16347         err = copy_verifier_state(new, cur);
16348         if (err) {
16349                 free_verifier_state(new, false);
16350                 kfree(new_sl);
16351                 return err;
16352         }
16353         new->insn_idx = insn_idx;
16354         WARN_ONCE(new->branches != 1,
16355                   "BUG is_state_visited:branches_to_explore=%d insn %d\n", new->branches, insn_idx);
16356
16357         cur->parent = new;
16358         cur->first_insn_idx = insn_idx;
16359         clear_jmp_history(cur);
16360         new_sl->next = *explored_state(env, insn_idx);
16361         *explored_state(env, insn_idx) = new_sl;
16362         /* connect new state to parentage chain. Current frame needs all
16363          * registers connected. Only r6 - r9 of the callers are alive (pushed
16364          * to the stack implicitly by JITs) so in callers' frames connect just
16365          * r6 - r9 as an optimization. Callers will have r1 - r5 connected to
16366          * the state of the call instruction (with WRITTEN set), and r0 comes
16367          * from callee with its full parentage chain, anyway.
16368          */
16369         /* clear write marks in current state: the writes we did are not writes
16370          * our child did, so they don't screen off its reads from us.
16371          * (There are no read marks in current state, because reads always mark
16372          * their parent and current state never has children yet.  Only
16373          * explored_states can get read marks.)
16374          */
16375         for (j = 0; j <= cur->curframe; j++) {
16376                 for (i = j < cur->curframe ? BPF_REG_6 : 0; i < BPF_REG_FP; i++)
16377                         cur->frame[j]->regs[i].parent = &new->frame[j]->regs[i];
16378                 for (i = 0; i < BPF_REG_FP; i++)
16379                         cur->frame[j]->regs[i].live = REG_LIVE_NONE;
16380         }
16381
16382         /* all stack frames are accessible from callee, clear them all */
16383         for (j = 0; j <= cur->curframe; j++) {
16384                 struct bpf_func_state *frame = cur->frame[j];
16385                 struct bpf_func_state *newframe = new->frame[j];
16386
16387                 for (i = 0; i < frame->allocated_stack / BPF_REG_SIZE; i++) {
16388                         frame->stack[i].spilled_ptr.live = REG_LIVE_NONE;
16389                         frame->stack[i].spilled_ptr.parent =
16390                                                 &newframe->stack[i].spilled_ptr;
16391                 }
16392         }
16393         return 0;
16394 }
16395
16396 /* Return true if it's OK to have the same insn return a different type. */
16397 static bool reg_type_mismatch_ok(enum bpf_reg_type type)
16398 {
16399         switch (base_type(type)) {
16400         case PTR_TO_CTX:
16401         case PTR_TO_SOCKET:
16402         case PTR_TO_SOCK_COMMON:
16403         case PTR_TO_TCP_SOCK:
16404         case PTR_TO_XDP_SOCK:
16405         case PTR_TO_BTF_ID:
16406                 return false;
16407         default:
16408                 return true;
16409         }
16410 }
16411
16412 /* If an instruction was previously used with particular pointer types, then we
16413  * need to be careful to avoid cases such as the below, where it may be ok
16414  * for one branch accessing the pointer, but not ok for the other branch:
16415  *
16416  * R1 = sock_ptr
16417  * goto X;
16418  * ...
16419  * R1 = some_other_valid_ptr;
16420  * goto X;
16421  * ...
16422  * R2 = *(u32 *)(R1 + 0);
16423  */
16424 static bool reg_type_mismatch(enum bpf_reg_type src, enum bpf_reg_type prev)
16425 {
16426         return src != prev && (!reg_type_mismatch_ok(src) ||
16427                                !reg_type_mismatch_ok(prev));
16428 }
16429
16430 static int save_aux_ptr_type(struct bpf_verifier_env *env, enum bpf_reg_type type,
16431                              bool allow_trust_missmatch)
16432 {
16433         enum bpf_reg_type *prev_type = &env->insn_aux_data[env->insn_idx].ptr_type;
16434
16435         if (*prev_type == NOT_INIT) {
16436                 /* Saw a valid insn
16437                  * dst_reg = *(u32 *)(src_reg + off)
16438                  * save type to validate intersecting paths
16439                  */
16440                 *prev_type = type;
16441         } else if (reg_type_mismatch(type, *prev_type)) {
16442                 /* Abuser program is trying to use the same insn
16443                  * dst_reg = *(u32*) (src_reg + off)
16444                  * with different pointer types:
16445                  * src_reg == ctx in one branch and
16446                  * src_reg == stack|map in some other branch.
16447                  * Reject it.
16448                  */
16449                 if (allow_trust_missmatch &&
16450                     base_type(type) == PTR_TO_BTF_ID &&
16451                     base_type(*prev_type) == PTR_TO_BTF_ID) {
16452                         /*
16453                          * Have to support a use case when one path through
16454                          * the program yields TRUSTED pointer while another
16455                          * is UNTRUSTED. Fallback to UNTRUSTED to generate
16456                          * BPF_PROBE_MEM/BPF_PROBE_MEMSX.
16457                          */
16458                         *prev_type = PTR_TO_BTF_ID | PTR_UNTRUSTED;
16459                 } else {
16460                         verbose(env, "same insn cannot be used with different pointers\n");
16461                         return -EINVAL;
16462                 }
16463         }
16464
16465         return 0;
16466 }
16467
16468 static int do_check(struct bpf_verifier_env *env)
16469 {
16470         bool pop_log = !(env->log.level & BPF_LOG_LEVEL2);
16471         struct bpf_verifier_state *state = env->cur_state;
16472         struct bpf_insn *insns = env->prog->insnsi;
16473         struct bpf_reg_state *regs;
16474         int insn_cnt = env->prog->len;
16475         bool do_print_state = false;
16476         int prev_insn_idx = -1;
16477
16478         for (;;) {
16479                 struct bpf_insn *insn;
16480                 u8 class;
16481                 int err;
16482
16483                 env->prev_insn_idx = prev_insn_idx;
16484                 if (env->insn_idx >= insn_cnt) {
16485                         verbose(env, "invalid insn idx %d insn_cnt %d\n",
16486                                 env->insn_idx, insn_cnt);
16487                         return -EFAULT;
16488                 }
16489
16490                 insn = &insns[env->insn_idx];
16491                 class = BPF_CLASS(insn->code);
16492
16493                 if (++env->insn_processed > BPF_COMPLEXITY_LIMIT_INSNS) {
16494                         verbose(env,
16495                                 "BPF program is too large. Processed %d insn\n",
16496                                 env->insn_processed);
16497                         return -E2BIG;
16498                 }
16499
16500                 state->last_insn_idx = env->prev_insn_idx;
16501
16502                 if (is_prune_point(env, env->insn_idx)) {
16503                         err = is_state_visited(env, env->insn_idx);
16504                         if (err < 0)
16505                                 return err;
16506                         if (err == 1) {
16507                                 /* found equivalent state, can prune the search */
16508                                 if (env->log.level & BPF_LOG_LEVEL) {
16509                                         if (do_print_state)
16510                                                 verbose(env, "\nfrom %d to %d%s: safe\n",
16511                                                         env->prev_insn_idx, env->insn_idx,
16512                                                         env->cur_state->speculative ?
16513                                                         " (speculative execution)" : "");
16514                                         else
16515                                                 verbose(env, "%d: safe\n", env->insn_idx);
16516                                 }
16517                                 goto process_bpf_exit;
16518                         }
16519                 }
16520
16521                 if (is_jmp_point(env, env->insn_idx)) {
16522                         err = push_jmp_history(env, state);
16523                         if (err)
16524                                 return err;
16525                 }
16526
16527                 if (signal_pending(current))
16528                         return -EAGAIN;
16529
16530                 if (need_resched())
16531                         cond_resched();
16532
16533                 if (env->log.level & BPF_LOG_LEVEL2 && do_print_state) {
16534                         verbose(env, "\nfrom %d to %d%s:",
16535                                 env->prev_insn_idx, env->insn_idx,
16536                                 env->cur_state->speculative ?
16537                                 " (speculative execution)" : "");
16538                         print_verifier_state(env, state->frame[state->curframe], true);
16539                         do_print_state = false;
16540                 }
16541
16542                 if (env->log.level & BPF_LOG_LEVEL) {
16543                         const struct bpf_insn_cbs cbs = {
16544                                 .cb_call        = disasm_kfunc_name,
16545                                 .cb_print       = verbose,
16546                                 .private_data   = env,
16547                         };
16548
16549                         if (verifier_state_scratched(env))
16550                                 print_insn_state(env, state->frame[state->curframe]);
16551
16552                         verbose_linfo(env, env->insn_idx, "; ");
16553                         env->prev_log_pos = env->log.end_pos;
16554                         verbose(env, "%d: ", env->insn_idx);
16555                         print_bpf_insn(&cbs, insn, env->allow_ptr_leaks);
16556                         env->prev_insn_print_pos = env->log.end_pos - env->prev_log_pos;
16557                         env->prev_log_pos = env->log.end_pos;
16558                 }
16559
16560                 if (bpf_prog_is_offloaded(env->prog->aux)) {
16561                         err = bpf_prog_offload_verify_insn(env, env->insn_idx,
16562                                                            env->prev_insn_idx);
16563                         if (err)
16564                                 return err;
16565                 }
16566
16567                 regs = cur_regs(env);
16568                 sanitize_mark_insn_seen(env);
16569                 prev_insn_idx = env->insn_idx;
16570
16571                 if (class == BPF_ALU || class == BPF_ALU64) {
16572                         err = check_alu_op(env, insn);
16573                         if (err)
16574                                 return err;
16575
16576                 } else if (class == BPF_LDX) {
16577                         enum bpf_reg_type src_reg_type;
16578
16579                         /* check for reserved fields is already done */
16580
16581                         /* check src operand */
16582                         err = check_reg_arg(env, insn->src_reg, SRC_OP);
16583                         if (err)
16584                                 return err;
16585
16586                         err = check_reg_arg(env, insn->dst_reg, DST_OP_NO_MARK);
16587                         if (err)
16588                                 return err;
16589
16590                         src_reg_type = regs[insn->src_reg].type;
16591
16592                         /* check that memory (src_reg + off) is readable,
16593                          * the state of dst_reg will be updated by this func
16594                          */
16595                         err = check_mem_access(env, env->insn_idx, insn->src_reg,
16596                                                insn->off, BPF_SIZE(insn->code),
16597                                                BPF_READ, insn->dst_reg, false,
16598                                                BPF_MODE(insn->code) == BPF_MEMSX);
16599                         if (err)
16600                                 return err;
16601
16602                         err = save_aux_ptr_type(env, src_reg_type, true);
16603                         if (err)
16604                                 return err;
16605                 } else if (class == BPF_STX) {
16606                         enum bpf_reg_type dst_reg_type;
16607
16608                         if (BPF_MODE(insn->code) == BPF_ATOMIC) {
16609                                 err = check_atomic(env, env->insn_idx, insn);
16610                                 if (err)
16611                                         return err;
16612                                 env->insn_idx++;
16613                                 continue;
16614                         }
16615
16616                         if (BPF_MODE(insn->code) != BPF_MEM || insn->imm != 0) {
16617                                 verbose(env, "BPF_STX uses reserved fields\n");
16618                                 return -EINVAL;
16619                         }
16620
16621                         /* check src1 operand */
16622                         err = check_reg_arg(env, insn->src_reg, SRC_OP);
16623                         if (err)
16624                                 return err;
16625                         /* check src2 operand */
16626                         err = check_reg_arg(env, insn->dst_reg, SRC_OP);
16627                         if (err)
16628                                 return err;
16629
16630                         dst_reg_type = regs[insn->dst_reg].type;
16631
16632                         /* check that memory (dst_reg + off) is writeable */
16633                         err = check_mem_access(env, env->insn_idx, insn->dst_reg,
16634                                                insn->off, BPF_SIZE(insn->code),
16635                                                BPF_WRITE, insn->src_reg, false, false);
16636                         if (err)
16637                                 return err;
16638
16639                         err = save_aux_ptr_type(env, dst_reg_type, false);
16640                         if (err)
16641                                 return err;
16642                 } else if (class == BPF_ST) {
16643                         enum bpf_reg_type dst_reg_type;
16644
16645                         if (BPF_MODE(insn->code) != BPF_MEM ||
16646                             insn->src_reg != BPF_REG_0) {
16647                                 verbose(env, "BPF_ST uses reserved fields\n");
16648                                 return -EINVAL;
16649                         }
16650                         /* check src operand */
16651                         err = check_reg_arg(env, insn->dst_reg, SRC_OP);
16652                         if (err)
16653                                 return err;
16654
16655                         dst_reg_type = regs[insn->dst_reg].type;
16656
16657                         /* check that memory (dst_reg + off) is writeable */
16658                         err = check_mem_access(env, env->insn_idx, insn->dst_reg,
16659                                                insn->off, BPF_SIZE(insn->code),
16660                                                BPF_WRITE, -1, false, false);
16661                         if (err)
16662                                 return err;
16663
16664                         err = save_aux_ptr_type(env, dst_reg_type, false);
16665                         if (err)
16666                                 return err;
16667                 } else if (class == BPF_JMP || class == BPF_JMP32) {
16668                         u8 opcode = BPF_OP(insn->code);
16669
16670                         env->jmps_processed++;
16671                         if (opcode == BPF_CALL) {
16672                                 if (BPF_SRC(insn->code) != BPF_K ||
16673                                     (insn->src_reg != BPF_PSEUDO_KFUNC_CALL
16674                                      && insn->off != 0) ||
16675                                     (insn->src_reg != BPF_REG_0 &&
16676                                      insn->src_reg != BPF_PSEUDO_CALL &&
16677                                      insn->src_reg != BPF_PSEUDO_KFUNC_CALL) ||
16678                                     insn->dst_reg != BPF_REG_0 ||
16679                                     class == BPF_JMP32) {
16680                                         verbose(env, "BPF_CALL uses reserved fields\n");
16681                                         return -EINVAL;
16682                                 }
16683
16684                                 if (env->cur_state->active_lock.ptr) {
16685                                         if ((insn->src_reg == BPF_REG_0 && insn->imm != BPF_FUNC_spin_unlock) ||
16686                                             (insn->src_reg == BPF_PSEUDO_CALL) ||
16687                                             (insn->src_reg == BPF_PSEUDO_KFUNC_CALL &&
16688                                              (insn->off != 0 || !is_bpf_graph_api_kfunc(insn->imm)))) {
16689                                                 verbose(env, "function calls are not allowed while holding a lock\n");
16690                                                 return -EINVAL;
16691                                         }
16692                                 }
16693                                 if (insn->src_reg == BPF_PSEUDO_CALL)
16694                                         err = check_func_call(env, insn, &env->insn_idx);
16695                                 else if (insn->src_reg == BPF_PSEUDO_KFUNC_CALL)
16696                                         err = check_kfunc_call(env, insn, &env->insn_idx);
16697                                 else
16698                                         err = check_helper_call(env, insn, &env->insn_idx);
16699                                 if (err)
16700                                         return err;
16701
16702                                 mark_reg_scratched(env, BPF_REG_0);
16703                         } else if (opcode == BPF_JA) {
16704                                 if (BPF_SRC(insn->code) != BPF_K ||
16705                                     insn->src_reg != BPF_REG_0 ||
16706                                     insn->dst_reg != BPF_REG_0 ||
16707                                     (class == BPF_JMP && insn->imm != 0) ||
16708                                     (class == BPF_JMP32 && insn->off != 0)) {
16709                                         verbose(env, "BPF_JA uses reserved fields\n");
16710                                         return -EINVAL;
16711                                 }
16712
16713                                 if (class == BPF_JMP)
16714                                         env->insn_idx += insn->off + 1;
16715                                 else
16716                                         env->insn_idx += insn->imm + 1;
16717                                 continue;
16718
16719                         } else if (opcode == BPF_EXIT) {
16720                                 if (BPF_SRC(insn->code) != BPF_K ||
16721                                     insn->imm != 0 ||
16722                                     insn->src_reg != BPF_REG_0 ||
16723                                     insn->dst_reg != BPF_REG_0 ||
16724                                     class == BPF_JMP32) {
16725                                         verbose(env, "BPF_EXIT uses reserved fields\n");
16726                                         return -EINVAL;
16727                                 }
16728
16729                                 if (env->cur_state->active_lock.ptr &&
16730                                     !in_rbtree_lock_required_cb(env)) {
16731                                         verbose(env, "bpf_spin_unlock is missing\n");
16732                                         return -EINVAL;
16733                                 }
16734
16735                                 if (env->cur_state->active_rcu_lock &&
16736                                     !in_rbtree_lock_required_cb(env)) {
16737                                         verbose(env, "bpf_rcu_read_unlock is missing\n");
16738                                         return -EINVAL;
16739                                 }
16740
16741                                 /* We must do check_reference_leak here before
16742                                  * prepare_func_exit to handle the case when
16743                                  * state->curframe > 0, it may be a callback
16744                                  * function, for which reference_state must
16745                                  * match caller reference state when it exits.
16746                                  */
16747                                 err = check_reference_leak(env);
16748                                 if (err)
16749                                         return err;
16750
16751                                 if (state->curframe) {
16752                                         /* exit from nested function */
16753                                         err = prepare_func_exit(env, &env->insn_idx);
16754                                         if (err)
16755                                                 return err;
16756                                         do_print_state = true;
16757                                         continue;
16758                                 }
16759
16760                                 err = check_return_code(env);
16761                                 if (err)
16762                                         return err;
16763 process_bpf_exit:
16764                                 mark_verifier_state_scratched(env);
16765                                 update_branch_counts(env, env->cur_state);
16766                                 err = pop_stack(env, &prev_insn_idx,
16767                                                 &env->insn_idx, pop_log);
16768                                 if (err < 0) {
16769                                         if (err != -ENOENT)
16770                                                 return err;
16771                                         break;
16772                                 } else {
16773                                         do_print_state = true;
16774                                         continue;
16775                                 }
16776                         } else {
16777                                 err = check_cond_jmp_op(env, insn, &env->insn_idx);
16778                                 if (err)
16779                                         return err;
16780                         }
16781                 } else if (class == BPF_LD) {
16782                         u8 mode = BPF_MODE(insn->code);
16783
16784                         if (mode == BPF_ABS || mode == BPF_IND) {
16785                                 err = check_ld_abs(env, insn);
16786                                 if (err)
16787                                         return err;
16788
16789                         } else if (mode == BPF_IMM) {
16790                                 err = check_ld_imm(env, insn);
16791                                 if (err)
16792                                         return err;
16793
16794                                 env->insn_idx++;
16795                                 sanitize_mark_insn_seen(env);
16796                         } else {
16797                                 verbose(env, "invalid BPF_LD mode\n");
16798                                 return -EINVAL;
16799                         }
16800                 } else {
16801                         verbose(env, "unknown insn class %d\n", class);
16802                         return -EINVAL;
16803                 }
16804
16805                 env->insn_idx++;
16806         }
16807
16808         return 0;
16809 }
16810
16811 static int find_btf_percpu_datasec(struct btf *btf)
16812 {
16813         const struct btf_type *t;
16814         const char *tname;
16815         int i, n;
16816
16817         /*
16818          * Both vmlinux and module each have their own ".data..percpu"
16819          * DATASECs in BTF. So for module's case, we need to skip vmlinux BTF
16820          * types to look at only module's own BTF types.
16821          */
16822         n = btf_nr_types(btf);
16823         if (btf_is_module(btf))
16824                 i = btf_nr_types(btf_vmlinux);
16825         else
16826                 i = 1;
16827
16828         for(; i < n; i++) {
16829                 t = btf_type_by_id(btf, i);
16830                 if (BTF_INFO_KIND(t->info) != BTF_KIND_DATASEC)
16831                         continue;
16832
16833                 tname = btf_name_by_offset(btf, t->name_off);
16834                 if (!strcmp(tname, ".data..percpu"))
16835                         return i;
16836         }
16837
16838         return -ENOENT;
16839 }
16840
16841 /* replace pseudo btf_id with kernel symbol address */
16842 static int check_pseudo_btf_id(struct bpf_verifier_env *env,
16843                                struct bpf_insn *insn,
16844                                struct bpf_insn_aux_data *aux)
16845 {
16846         const struct btf_var_secinfo *vsi;
16847         const struct btf_type *datasec;
16848         struct btf_mod_pair *btf_mod;
16849         const struct btf_type *t;
16850         const char *sym_name;
16851         bool percpu = false;
16852         u32 type, id = insn->imm;
16853         struct btf *btf;
16854         s32 datasec_id;
16855         u64 addr;
16856         int i, btf_fd, err;
16857
16858         btf_fd = insn[1].imm;
16859         if (btf_fd) {
16860                 btf = btf_get_by_fd(btf_fd);
16861                 if (IS_ERR(btf)) {
16862                         verbose(env, "invalid module BTF object FD specified.\n");
16863                         return -EINVAL;
16864                 }
16865         } else {
16866                 if (!btf_vmlinux) {
16867                         verbose(env, "kernel is missing BTF, make sure CONFIG_DEBUG_INFO_BTF=y is specified in Kconfig.\n");
16868                         return -EINVAL;
16869                 }
16870                 btf = btf_vmlinux;
16871                 btf_get(btf);
16872         }
16873
16874         t = btf_type_by_id(btf, id);
16875         if (!t) {
16876                 verbose(env, "ldimm64 insn specifies invalid btf_id %d.\n", id);
16877                 err = -ENOENT;
16878                 goto err_put;
16879         }
16880
16881         if (!btf_type_is_var(t) && !btf_type_is_func(t)) {
16882                 verbose(env, "pseudo btf_id %d in ldimm64 isn't KIND_VAR or KIND_FUNC\n", id);
16883                 err = -EINVAL;
16884                 goto err_put;
16885         }
16886
16887         sym_name = btf_name_by_offset(btf, t->name_off);
16888         addr = kallsyms_lookup_name(sym_name);
16889         if (!addr) {
16890                 verbose(env, "ldimm64 failed to find the address for kernel symbol '%s'.\n",
16891                         sym_name);
16892                 err = -ENOENT;
16893                 goto err_put;
16894         }
16895         insn[0].imm = (u32)addr;
16896         insn[1].imm = addr >> 32;
16897
16898         if (btf_type_is_func(t)) {
16899                 aux->btf_var.reg_type = PTR_TO_MEM | MEM_RDONLY;
16900                 aux->btf_var.mem_size = 0;
16901                 goto check_btf;
16902         }
16903
16904         datasec_id = find_btf_percpu_datasec(btf);
16905         if (datasec_id > 0) {
16906                 datasec = btf_type_by_id(btf, datasec_id);
16907                 for_each_vsi(i, datasec, vsi) {
16908                         if (vsi->type == id) {
16909                                 percpu = true;
16910                                 break;
16911                         }
16912                 }
16913         }
16914
16915         type = t->type;
16916         t = btf_type_skip_modifiers(btf, type, NULL);
16917         if (percpu) {
16918                 aux->btf_var.reg_type = PTR_TO_BTF_ID | MEM_PERCPU;
16919                 aux->btf_var.btf = btf;
16920                 aux->btf_var.btf_id = type;
16921         } else if (!btf_type_is_struct(t)) {
16922                 const struct btf_type *ret;
16923                 const char *tname;
16924                 u32 tsize;
16925
16926                 /* resolve the type size of ksym. */
16927                 ret = btf_resolve_size(btf, t, &tsize);
16928                 if (IS_ERR(ret)) {
16929                         tname = btf_name_by_offset(btf, t->name_off);
16930                         verbose(env, "ldimm64 unable to resolve the size of type '%s': %ld\n",
16931                                 tname, PTR_ERR(ret));
16932                         err = -EINVAL;
16933                         goto err_put;
16934                 }
16935                 aux->btf_var.reg_type = PTR_TO_MEM | MEM_RDONLY;
16936                 aux->btf_var.mem_size = tsize;
16937         } else {
16938                 aux->btf_var.reg_type = PTR_TO_BTF_ID;
16939                 aux->btf_var.btf = btf;
16940                 aux->btf_var.btf_id = type;
16941         }
16942 check_btf:
16943         /* check whether we recorded this BTF (and maybe module) already */
16944         for (i = 0; i < env->used_btf_cnt; i++) {
16945                 if (env->used_btfs[i].btf == btf) {
16946                         btf_put(btf);
16947                         return 0;
16948                 }
16949         }
16950
16951         if (env->used_btf_cnt >= MAX_USED_BTFS) {
16952                 err = -E2BIG;
16953                 goto err_put;
16954         }
16955
16956         btf_mod = &env->used_btfs[env->used_btf_cnt];
16957         btf_mod->btf = btf;
16958         btf_mod->module = NULL;
16959
16960         /* if we reference variables from kernel module, bump its refcount */
16961         if (btf_is_module(btf)) {
16962                 btf_mod->module = btf_try_get_module(btf);
16963                 if (!btf_mod->module) {
16964                         err = -ENXIO;
16965                         goto err_put;
16966                 }
16967         }
16968
16969         env->used_btf_cnt++;
16970
16971         return 0;
16972 err_put:
16973         btf_put(btf);
16974         return err;
16975 }
16976
16977 static bool is_tracing_prog_type(enum bpf_prog_type type)
16978 {
16979         switch (type) {
16980         case BPF_PROG_TYPE_KPROBE:
16981         case BPF_PROG_TYPE_TRACEPOINT:
16982         case BPF_PROG_TYPE_PERF_EVENT:
16983         case BPF_PROG_TYPE_RAW_TRACEPOINT:
16984         case BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE:
16985                 return true;
16986         default:
16987                 return false;
16988         }
16989 }
16990
16991 static int check_map_prog_compatibility(struct bpf_verifier_env *env,
16992                                         struct bpf_map *map,
16993                                         struct bpf_prog *prog)
16994
16995 {
16996         enum bpf_prog_type prog_type = resolve_prog_type(prog);
16997
16998         if (btf_record_has_field(map->record, BPF_LIST_HEAD) ||
16999             btf_record_has_field(map->record, BPF_RB_ROOT)) {
17000                 if (is_tracing_prog_type(prog_type)) {
17001                         verbose(env, "tracing progs cannot use bpf_{list_head,rb_root} yet\n");
17002                         return -EINVAL;
17003                 }
17004         }
17005
17006         if (btf_record_has_field(map->record, BPF_SPIN_LOCK)) {
17007                 if (prog_type == BPF_PROG_TYPE_SOCKET_FILTER) {
17008                         verbose(env, "socket filter progs cannot use bpf_spin_lock yet\n");
17009                         return -EINVAL;
17010                 }
17011
17012                 if (is_tracing_prog_type(prog_type)) {
17013                         verbose(env, "tracing progs cannot use bpf_spin_lock yet\n");
17014                         return -EINVAL;
17015                 }
17016         }
17017
17018         if (btf_record_has_field(map->record, BPF_TIMER)) {
17019                 if (is_tracing_prog_type(prog_type)) {
17020                         verbose(env, "tracing progs cannot use bpf_timer yet\n");
17021                         return -EINVAL;
17022                 }
17023         }
17024
17025         if ((bpf_prog_is_offloaded(prog->aux) || bpf_map_is_offloaded(map)) &&
17026             !bpf_offload_prog_map_match(prog, map)) {
17027                 verbose(env, "offload device mismatch between prog and map\n");
17028                 return -EINVAL;
17029         }
17030
17031         if (map->map_type == BPF_MAP_TYPE_STRUCT_OPS) {
17032                 verbose(env, "bpf_struct_ops map cannot be used in prog\n");
17033                 return -EINVAL;
17034         }
17035
17036         if (prog->aux->sleepable)
17037                 switch (map->map_type) {
17038                 case BPF_MAP_TYPE_HASH:
17039                 case BPF_MAP_TYPE_LRU_HASH:
17040                 case BPF_MAP_TYPE_ARRAY:
17041                 case BPF_MAP_TYPE_PERCPU_HASH:
17042                 case BPF_MAP_TYPE_PERCPU_ARRAY:
17043                 case BPF_MAP_TYPE_LRU_PERCPU_HASH:
17044                 case BPF_MAP_TYPE_ARRAY_OF_MAPS:
17045                 case BPF_MAP_TYPE_HASH_OF_MAPS:
17046                 case BPF_MAP_TYPE_RINGBUF:
17047                 case BPF_MAP_TYPE_USER_RINGBUF:
17048                 case BPF_MAP_TYPE_INODE_STORAGE:
17049                 case BPF_MAP_TYPE_SK_STORAGE:
17050                 case BPF_MAP_TYPE_TASK_STORAGE:
17051                 case BPF_MAP_TYPE_CGRP_STORAGE:
17052                         break;
17053                 default:
17054                         verbose(env,
17055                                 "Sleepable programs can only use array, hash, ringbuf and local storage maps\n");
17056                         return -EINVAL;
17057                 }
17058
17059         return 0;
17060 }
17061
17062 static bool bpf_map_is_cgroup_storage(struct bpf_map *map)
17063 {
17064         return (map->map_type == BPF_MAP_TYPE_CGROUP_STORAGE ||
17065                 map->map_type == BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE);
17066 }
17067
17068 /* find and rewrite pseudo imm in ld_imm64 instructions:
17069  *
17070  * 1. if it accesses map FD, replace it with actual map pointer.
17071  * 2. if it accesses btf_id of a VAR, replace it with pointer to the var.
17072  *
17073  * NOTE: btf_vmlinux is required for converting pseudo btf_id.
17074  */
17075 static int resolve_pseudo_ldimm64(struct bpf_verifier_env *env)
17076 {
17077         struct bpf_insn *insn = env->prog->insnsi;
17078         int insn_cnt = env->prog->len;
17079         int i, j, err;
17080
17081         err = bpf_prog_calc_tag(env->prog);
17082         if (err)
17083                 return err;
17084
17085         for (i = 0; i < insn_cnt; i++, insn++) {
17086                 if (BPF_CLASS(insn->code) == BPF_LDX &&
17087                     ((BPF_MODE(insn->code) != BPF_MEM && BPF_MODE(insn->code) != BPF_MEMSX) ||
17088                     insn->imm != 0)) {
17089                         verbose(env, "BPF_LDX uses reserved fields\n");
17090                         return -EINVAL;
17091                 }
17092
17093                 if (insn[0].code == (BPF_LD | BPF_IMM | BPF_DW)) {
17094                         struct bpf_insn_aux_data *aux;
17095                         struct bpf_map *map;
17096                         struct fd f;
17097                         u64 addr;
17098                         u32 fd;
17099
17100                         if (i == insn_cnt - 1 || insn[1].code != 0 ||
17101                             insn[1].dst_reg != 0 || insn[1].src_reg != 0 ||
17102                             insn[1].off != 0) {
17103                                 verbose(env, "invalid bpf_ld_imm64 insn\n");
17104                                 return -EINVAL;
17105                         }
17106
17107                         if (insn[0].src_reg == 0)
17108                                 /* valid generic load 64-bit imm */
17109                                 goto next_insn;
17110
17111                         if (insn[0].src_reg == BPF_PSEUDO_BTF_ID) {
17112                                 aux = &env->insn_aux_data[i];
17113                                 err = check_pseudo_btf_id(env, insn, aux);
17114                                 if (err)
17115                                         return err;
17116                                 goto next_insn;
17117                         }
17118
17119                         if (insn[0].src_reg == BPF_PSEUDO_FUNC) {
17120                                 aux = &env->insn_aux_data[i];
17121                                 aux->ptr_type = PTR_TO_FUNC;
17122                                 goto next_insn;
17123                         }
17124
17125                         /* In final convert_pseudo_ld_imm64() step, this is
17126                          * converted into regular 64-bit imm load insn.
17127                          */
17128                         switch (insn[0].src_reg) {
17129                         case BPF_PSEUDO_MAP_VALUE:
17130                         case BPF_PSEUDO_MAP_IDX_VALUE:
17131                                 break;
17132                         case BPF_PSEUDO_MAP_FD:
17133                         case BPF_PSEUDO_MAP_IDX:
17134                                 if (insn[1].imm == 0)
17135                                         break;
17136                                 fallthrough;
17137                         default:
17138                                 verbose(env, "unrecognized bpf_ld_imm64 insn\n");
17139                                 return -EINVAL;
17140                         }
17141
17142                         switch (insn[0].src_reg) {
17143                         case BPF_PSEUDO_MAP_IDX_VALUE:
17144                         case BPF_PSEUDO_MAP_IDX:
17145                                 if (bpfptr_is_null(env->fd_array)) {
17146                                         verbose(env, "fd_idx without fd_array is invalid\n");
17147                                         return -EPROTO;
17148                                 }
17149                                 if (copy_from_bpfptr_offset(&fd, env->fd_array,
17150                                                             insn[0].imm * sizeof(fd),
17151                                                             sizeof(fd)))
17152                                         return -EFAULT;
17153                                 break;
17154                         default:
17155                                 fd = insn[0].imm;
17156                                 break;
17157                         }
17158
17159                         f = fdget(fd);
17160                         map = __bpf_map_get(f);
17161                         if (IS_ERR(map)) {
17162                                 verbose(env, "fd %d is not pointing to valid bpf_map\n",
17163                                         insn[0].imm);
17164                                 return PTR_ERR(map);
17165                         }
17166
17167                         err = check_map_prog_compatibility(env, map, env->prog);
17168                         if (err) {
17169                                 fdput(f);
17170                                 return err;
17171                         }
17172
17173                         aux = &env->insn_aux_data[i];
17174                         if (insn[0].src_reg == BPF_PSEUDO_MAP_FD ||
17175                             insn[0].src_reg == BPF_PSEUDO_MAP_IDX) {
17176                                 addr = (unsigned long)map;
17177                         } else {
17178                                 u32 off = insn[1].imm;
17179
17180                                 if (off >= BPF_MAX_VAR_OFF) {
17181                                         verbose(env, "direct value offset of %u is not allowed\n", off);
17182                                         fdput(f);
17183                                         return -EINVAL;
17184                                 }
17185
17186                                 if (!map->ops->map_direct_value_addr) {
17187                                         verbose(env, "no direct value access support for this map type\n");
17188                                         fdput(f);
17189                                         return -EINVAL;
17190                                 }
17191
17192                                 err = map->ops->map_direct_value_addr(map, &addr, off);
17193                                 if (err) {
17194                                         verbose(env, "invalid access to map value pointer, value_size=%u off=%u\n",
17195                                                 map->value_size, off);
17196                                         fdput(f);
17197                                         return err;
17198                                 }
17199
17200                                 aux->map_off = off;
17201                                 addr += off;
17202                         }
17203
17204                         insn[0].imm = (u32)addr;
17205                         insn[1].imm = addr >> 32;
17206
17207                         /* check whether we recorded this map already */
17208                         for (j = 0; j < env->used_map_cnt; j++) {
17209                                 if (env->used_maps[j] == map) {
17210                                         aux->map_index = j;
17211                                         fdput(f);
17212                                         goto next_insn;
17213                                 }
17214                         }
17215
17216                         if (env->used_map_cnt >= MAX_USED_MAPS) {
17217                                 fdput(f);
17218                                 return -E2BIG;
17219                         }
17220
17221                         /* hold the map. If the program is rejected by verifier,
17222                          * the map will be released by release_maps() or it
17223                          * will be used by the valid program until it's unloaded
17224                          * and all maps are released in free_used_maps()
17225                          */
17226                         bpf_map_inc(map);
17227
17228                         aux->map_index = env->used_map_cnt;
17229                         env->used_maps[env->used_map_cnt++] = map;
17230
17231                         if (bpf_map_is_cgroup_storage(map) &&
17232                             bpf_cgroup_storage_assign(env->prog->aux, map)) {
17233                                 verbose(env, "only one cgroup storage of each type is allowed\n");
17234                                 fdput(f);
17235                                 return -EBUSY;
17236                         }
17237
17238                         fdput(f);
17239 next_insn:
17240                         insn++;
17241                         i++;
17242                         continue;
17243                 }
17244
17245                 /* Basic sanity check before we invest more work here. */
17246                 if (!bpf_opcode_in_insntable(insn->code)) {
17247                         verbose(env, "unknown opcode %02x\n", insn->code);
17248                         return -EINVAL;
17249                 }
17250         }
17251
17252         /* now all pseudo BPF_LD_IMM64 instructions load valid
17253          * 'struct bpf_map *' into a register instead of user map_fd.
17254          * These pointers will be used later by verifier to validate map access.
17255          */
17256         return 0;
17257 }
17258
17259 /* drop refcnt of maps used by the rejected program */
17260 static void release_maps(struct bpf_verifier_env *env)
17261 {
17262         __bpf_free_used_maps(env->prog->aux, env->used_maps,
17263                              env->used_map_cnt);
17264 }
17265
17266 /* drop refcnt of maps used by the rejected program */
17267 static void release_btfs(struct bpf_verifier_env *env)
17268 {
17269         __bpf_free_used_btfs(env->prog->aux, env->used_btfs,
17270                              env->used_btf_cnt);
17271 }
17272
17273 /* convert pseudo BPF_LD_IMM64 into generic BPF_LD_IMM64 */
17274 static void convert_pseudo_ld_imm64(struct bpf_verifier_env *env)
17275 {
17276         struct bpf_insn *insn = env->prog->insnsi;
17277         int insn_cnt = env->prog->len;
17278         int i;
17279
17280         for (i = 0; i < insn_cnt; i++, insn++) {
17281                 if (insn->code != (BPF_LD | BPF_IMM | BPF_DW))
17282                         continue;
17283                 if (insn->src_reg == BPF_PSEUDO_FUNC)
17284                         continue;
17285                 insn->src_reg = 0;
17286         }
17287 }
17288
17289 /* single env->prog->insni[off] instruction was replaced with the range
17290  * insni[off, off + cnt).  Adjust corresponding insn_aux_data by copying
17291  * [0, off) and [off, end) to new locations, so the patched range stays zero
17292  */
17293 static void adjust_insn_aux_data(struct bpf_verifier_env *env,
17294                                  struct bpf_insn_aux_data *new_data,
17295                                  struct bpf_prog *new_prog, u32 off, u32 cnt)
17296 {
17297         struct bpf_insn_aux_data *old_data = env->insn_aux_data;
17298         struct bpf_insn *insn = new_prog->insnsi;
17299         u32 old_seen = old_data[off].seen;
17300         u32 prog_len;
17301         int i;
17302
17303         /* aux info at OFF always needs adjustment, no matter fast path
17304          * (cnt == 1) is taken or not. There is no guarantee INSN at OFF is the
17305          * original insn at old prog.
17306          */
17307         old_data[off].zext_dst = insn_has_def32(env, insn + off + cnt - 1);
17308
17309         if (cnt == 1)
17310                 return;
17311         prog_len = new_prog->len;
17312
17313         memcpy(new_data, old_data, sizeof(struct bpf_insn_aux_data) * off);
17314         memcpy(new_data + off + cnt - 1, old_data + off,
17315                sizeof(struct bpf_insn_aux_data) * (prog_len - off - cnt + 1));
17316         for (i = off; i < off + cnt - 1; i++) {
17317                 /* Expand insni[off]'s seen count to the patched range. */
17318                 new_data[i].seen = old_seen;
17319                 new_data[i].zext_dst = insn_has_def32(env, insn + i);
17320         }
17321         env->insn_aux_data = new_data;
17322         vfree(old_data);
17323 }
17324
17325 static void adjust_subprog_starts(struct bpf_verifier_env *env, u32 off, u32 len)
17326 {
17327         int i;
17328
17329         if (len == 1)
17330                 return;
17331         /* NOTE: fake 'exit' subprog should be updated as well. */
17332         for (i = 0; i <= env->subprog_cnt; i++) {
17333                 if (env->subprog_info[i].start <= off)
17334                         continue;
17335                 env->subprog_info[i].start += len - 1;
17336         }
17337 }
17338
17339 static void adjust_poke_descs(struct bpf_prog *prog, u32 off, u32 len)
17340 {
17341         struct bpf_jit_poke_descriptor *tab = prog->aux->poke_tab;
17342         int i, sz = prog->aux->size_poke_tab;
17343         struct bpf_jit_poke_descriptor *desc;
17344
17345         for (i = 0; i < sz; i++) {
17346                 desc = &tab[i];
17347                 if (desc->insn_idx <= off)
17348                         continue;
17349                 desc->insn_idx += len - 1;
17350         }
17351 }
17352
17353 static struct bpf_prog *bpf_patch_insn_data(struct bpf_verifier_env *env, u32 off,
17354                                             const struct bpf_insn *patch, u32 len)
17355 {
17356         struct bpf_prog *new_prog;
17357         struct bpf_insn_aux_data *new_data = NULL;
17358
17359         if (len > 1) {
17360                 new_data = vzalloc(array_size(env->prog->len + len - 1,
17361                                               sizeof(struct bpf_insn_aux_data)));
17362                 if (!new_data)
17363                         return NULL;
17364         }
17365
17366         new_prog = bpf_patch_insn_single(env->prog, off, patch, len);
17367         if (IS_ERR(new_prog)) {
17368                 if (PTR_ERR(new_prog) == -ERANGE)
17369                         verbose(env,
17370                                 "insn %d cannot be patched due to 16-bit range\n",
17371                                 env->insn_aux_data[off].orig_idx);
17372                 vfree(new_data);
17373                 return NULL;
17374         }
17375         adjust_insn_aux_data(env, new_data, new_prog, off, len);
17376         adjust_subprog_starts(env, off, len);
17377         adjust_poke_descs(new_prog, off, len);
17378         return new_prog;
17379 }
17380
17381 static int adjust_subprog_starts_after_remove(struct bpf_verifier_env *env,
17382                                               u32 off, u32 cnt)
17383 {
17384         int i, j;
17385
17386         /* find first prog starting at or after off (first to remove) */
17387         for (i = 0; i < env->subprog_cnt; i++)
17388                 if (env->subprog_info[i].start >= off)
17389                         break;
17390         /* find first prog starting at or after off + cnt (first to stay) */
17391         for (j = i; j < env->subprog_cnt; j++)
17392                 if (env->subprog_info[j].start >= off + cnt)
17393                         break;
17394         /* if j doesn't start exactly at off + cnt, we are just removing
17395          * the front of previous prog
17396          */
17397         if (env->subprog_info[j].start != off + cnt)
17398                 j--;
17399
17400         if (j > i) {
17401                 struct bpf_prog_aux *aux = env->prog->aux;
17402                 int move;
17403
17404                 /* move fake 'exit' subprog as well */
17405                 move = env->subprog_cnt + 1 - j;
17406
17407                 memmove(env->subprog_info + i,
17408                         env->subprog_info + j,
17409                         sizeof(*env->subprog_info) * move);
17410                 env->subprog_cnt -= j - i;
17411
17412                 /* remove func_info */
17413                 if (aux->func_info) {
17414                         move = aux->func_info_cnt - j;
17415
17416                         memmove(aux->func_info + i,
17417                                 aux->func_info + j,
17418                                 sizeof(*aux->func_info) * move);
17419                         aux->func_info_cnt -= j - i;
17420                         /* func_info->insn_off is set after all code rewrites,
17421                          * in adjust_btf_func() - no need to adjust
17422                          */
17423                 }
17424         } else {
17425                 /* convert i from "first prog to remove" to "first to adjust" */
17426                 if (env->subprog_info[i].start == off)
17427                         i++;
17428         }
17429
17430         /* update fake 'exit' subprog as well */
17431         for (; i <= env->subprog_cnt; i++)
17432                 env->subprog_info[i].start -= cnt;
17433
17434         return 0;
17435 }
17436
17437 static int bpf_adj_linfo_after_remove(struct bpf_verifier_env *env, u32 off,
17438                                       u32 cnt)
17439 {
17440         struct bpf_prog *prog = env->prog;
17441         u32 i, l_off, l_cnt, nr_linfo;
17442         struct bpf_line_info *linfo;
17443
17444         nr_linfo = prog->aux->nr_linfo;
17445         if (!nr_linfo)
17446                 return 0;
17447
17448         linfo = prog->aux->linfo;
17449
17450         /* find first line info to remove, count lines to be removed */
17451         for (i = 0; i < nr_linfo; i++)
17452                 if (linfo[i].insn_off >= off)
17453                         break;
17454
17455         l_off = i;
17456         l_cnt = 0;
17457         for (; i < nr_linfo; i++)
17458                 if (linfo[i].insn_off < off + cnt)
17459                         l_cnt++;
17460                 else
17461                         break;
17462
17463         /* First live insn doesn't match first live linfo, it needs to "inherit"
17464          * last removed linfo.  prog is already modified, so prog->len == off
17465          * means no live instructions after (tail of the program was removed).
17466          */
17467         if (prog->len != off && l_cnt &&
17468             (i == nr_linfo || linfo[i].insn_off != off + cnt)) {
17469                 l_cnt--;
17470                 linfo[--i].insn_off = off + cnt;
17471         }
17472
17473         /* remove the line info which refer to the removed instructions */
17474         if (l_cnt) {
17475                 memmove(linfo + l_off, linfo + i,
17476                         sizeof(*linfo) * (nr_linfo - i));
17477
17478                 prog->aux->nr_linfo -= l_cnt;
17479                 nr_linfo = prog->aux->nr_linfo;
17480         }
17481
17482         /* pull all linfo[i].insn_off >= off + cnt in by cnt */
17483         for (i = l_off; i < nr_linfo; i++)
17484                 linfo[i].insn_off -= cnt;
17485
17486         /* fix up all subprogs (incl. 'exit') which start >= off */
17487         for (i = 0; i <= env->subprog_cnt; i++)
17488                 if (env->subprog_info[i].linfo_idx > l_off) {
17489                         /* program may have started in the removed region but
17490                          * may not be fully removed
17491                          */
17492                         if (env->subprog_info[i].linfo_idx >= l_off + l_cnt)
17493                                 env->subprog_info[i].linfo_idx -= l_cnt;
17494                         else
17495                                 env->subprog_info[i].linfo_idx = l_off;
17496                 }
17497
17498         return 0;
17499 }
17500
17501 static int verifier_remove_insns(struct bpf_verifier_env *env, u32 off, u32 cnt)
17502 {
17503         struct bpf_insn_aux_data *aux_data = env->insn_aux_data;
17504         unsigned int orig_prog_len = env->prog->len;
17505         int err;
17506
17507         if (bpf_prog_is_offloaded(env->prog->aux))
17508                 bpf_prog_offload_remove_insns(env, off, cnt);
17509
17510         err = bpf_remove_insns(env->prog, off, cnt);
17511         if (err)
17512                 return err;
17513
17514         err = adjust_subprog_starts_after_remove(env, off, cnt);
17515         if (err)
17516                 return err;
17517
17518         err = bpf_adj_linfo_after_remove(env, off, cnt);
17519         if (err)
17520                 return err;
17521
17522         memmove(aux_data + off, aux_data + off + cnt,
17523                 sizeof(*aux_data) * (orig_prog_len - off - cnt));
17524
17525         return 0;
17526 }
17527
17528 /* The verifier does more data flow analysis than llvm and will not
17529  * explore branches that are dead at run time. Malicious programs can
17530  * have dead code too. Therefore replace all dead at-run-time code
17531  * with 'ja -1'.
17532  *
17533  * Just nops are not optimal, e.g. if they would sit at the end of the
17534  * program and through another bug we would manage to jump there, then
17535  * we'd execute beyond program memory otherwise. Returning exception
17536  * code also wouldn't work since we can have subprogs where the dead
17537  * code could be located.
17538  */
17539 static void sanitize_dead_code(struct bpf_verifier_env *env)
17540 {
17541         struct bpf_insn_aux_data *aux_data = env->insn_aux_data;
17542         struct bpf_insn trap = BPF_JMP_IMM(BPF_JA, 0, 0, -1);
17543         struct bpf_insn *insn = env->prog->insnsi;
17544         const int insn_cnt = env->prog->len;
17545         int i;
17546
17547         for (i = 0; i < insn_cnt; i++) {
17548                 if (aux_data[i].seen)
17549                         continue;
17550                 memcpy(insn + i, &trap, sizeof(trap));
17551                 aux_data[i].zext_dst = false;
17552         }
17553 }
17554
17555 static bool insn_is_cond_jump(u8 code)
17556 {
17557         u8 op;
17558
17559         op = BPF_OP(code);
17560         if (BPF_CLASS(code) == BPF_JMP32)
17561                 return op != BPF_JA;
17562
17563         if (BPF_CLASS(code) != BPF_JMP)
17564                 return false;
17565
17566         return op != BPF_JA && op != BPF_EXIT && op != BPF_CALL;
17567 }
17568
17569 static void opt_hard_wire_dead_code_branches(struct bpf_verifier_env *env)
17570 {
17571         struct bpf_insn_aux_data *aux_data = env->insn_aux_data;
17572         struct bpf_insn ja = BPF_JMP_IMM(BPF_JA, 0, 0, 0);
17573         struct bpf_insn *insn = env->prog->insnsi;
17574         const int insn_cnt = env->prog->len;
17575         int i;
17576
17577         for (i = 0; i < insn_cnt; i++, insn++) {
17578                 if (!insn_is_cond_jump(insn->code))
17579                         continue;
17580
17581                 if (!aux_data[i + 1].seen)
17582                         ja.off = insn->off;
17583                 else if (!aux_data[i + 1 + insn->off].seen)
17584                         ja.off = 0;
17585                 else
17586                         continue;
17587
17588                 if (bpf_prog_is_offloaded(env->prog->aux))
17589                         bpf_prog_offload_replace_insn(env, i, &ja);
17590
17591                 memcpy(insn, &ja, sizeof(ja));
17592         }
17593 }
17594
17595 static int opt_remove_dead_code(struct bpf_verifier_env *env)
17596 {
17597         struct bpf_insn_aux_data *aux_data = env->insn_aux_data;
17598         int insn_cnt = env->prog->len;
17599         int i, err;
17600
17601         for (i = 0; i < insn_cnt; i++) {
17602                 int j;
17603
17604                 j = 0;
17605                 while (i + j < insn_cnt && !aux_data[i + j].seen)
17606                         j++;
17607                 if (!j)
17608                         continue;
17609
17610                 err = verifier_remove_insns(env, i, j);
17611                 if (err)
17612                         return err;
17613                 insn_cnt = env->prog->len;
17614         }
17615
17616         return 0;
17617 }
17618
17619 static int opt_remove_nops(struct bpf_verifier_env *env)
17620 {
17621         const struct bpf_insn ja = BPF_JMP_IMM(BPF_JA, 0, 0, 0);
17622         struct bpf_insn *insn = env->prog->insnsi;
17623         int insn_cnt = env->prog->len;
17624         int i, err;
17625
17626         for (i = 0; i < insn_cnt; i++) {
17627                 if (memcmp(&insn[i], &ja, sizeof(ja)))
17628                         continue;
17629
17630                 err = verifier_remove_insns(env, i, 1);
17631                 if (err)
17632                         return err;
17633                 insn_cnt--;
17634                 i--;
17635         }
17636
17637         return 0;
17638 }
17639
17640 static int opt_subreg_zext_lo32_rnd_hi32(struct bpf_verifier_env *env,
17641                                          const union bpf_attr *attr)
17642 {
17643         struct bpf_insn *patch, zext_patch[2], rnd_hi32_patch[4];
17644         struct bpf_insn_aux_data *aux = env->insn_aux_data;
17645         int i, patch_len, delta = 0, len = env->prog->len;
17646         struct bpf_insn *insns = env->prog->insnsi;
17647         struct bpf_prog *new_prog;
17648         bool rnd_hi32;
17649
17650         rnd_hi32 = attr->prog_flags & BPF_F_TEST_RND_HI32;
17651         zext_patch[1] = BPF_ZEXT_REG(0);
17652         rnd_hi32_patch[1] = BPF_ALU64_IMM(BPF_MOV, BPF_REG_AX, 0);
17653         rnd_hi32_patch[2] = BPF_ALU64_IMM(BPF_LSH, BPF_REG_AX, 32);
17654         rnd_hi32_patch[3] = BPF_ALU64_REG(BPF_OR, 0, BPF_REG_AX);
17655         for (i = 0; i < len; i++) {
17656                 int adj_idx = i + delta;
17657                 struct bpf_insn insn;
17658                 int load_reg;
17659
17660                 insn = insns[adj_idx];
17661                 load_reg = insn_def_regno(&insn);
17662                 if (!aux[adj_idx].zext_dst) {
17663                         u8 code, class;
17664                         u32 imm_rnd;
17665
17666                         if (!rnd_hi32)
17667                                 continue;
17668
17669                         code = insn.code;
17670                         class = BPF_CLASS(code);
17671                         if (load_reg == -1)
17672                                 continue;
17673
17674                         /* NOTE: arg "reg" (the fourth one) is only used for
17675                          *       BPF_STX + SRC_OP, so it is safe to pass NULL
17676                          *       here.
17677                          */
17678                         if (is_reg64(env, &insn, load_reg, NULL, DST_OP)) {
17679                                 if (class == BPF_LD &&
17680                                     BPF_MODE(code) == BPF_IMM)
17681                                         i++;
17682                                 continue;
17683                         }
17684
17685                         /* ctx load could be transformed into wider load. */
17686                         if (class == BPF_LDX &&
17687                             aux[adj_idx].ptr_type == PTR_TO_CTX)
17688                                 continue;
17689
17690                         imm_rnd = get_random_u32();
17691                         rnd_hi32_patch[0] = insn;
17692                         rnd_hi32_patch[1].imm = imm_rnd;
17693                         rnd_hi32_patch[3].dst_reg = load_reg;
17694                         patch = rnd_hi32_patch;
17695                         patch_len = 4;
17696                         goto apply_patch_buffer;
17697                 }
17698
17699                 /* Add in an zero-extend instruction if a) the JIT has requested
17700                  * it or b) it's a CMPXCHG.
17701                  *
17702                  * The latter is because: BPF_CMPXCHG always loads a value into
17703                  * R0, therefore always zero-extends. However some archs'
17704                  * equivalent instruction only does this load when the
17705                  * comparison is successful. This detail of CMPXCHG is
17706                  * orthogonal to the general zero-extension behaviour of the
17707                  * CPU, so it's treated independently of bpf_jit_needs_zext.
17708                  */
17709                 if (!bpf_jit_needs_zext() && !is_cmpxchg_insn(&insn))
17710                         continue;
17711
17712                 /* Zero-extension is done by the caller. */
17713                 if (bpf_pseudo_kfunc_call(&insn))
17714                         continue;
17715
17716                 if (WARN_ON(load_reg == -1)) {
17717                         verbose(env, "verifier bug. zext_dst is set, but no reg is defined\n");
17718                         return -EFAULT;
17719                 }
17720
17721                 zext_patch[0] = insn;
17722                 zext_patch[1].dst_reg = load_reg;
17723                 zext_patch[1].src_reg = load_reg;
17724                 patch = zext_patch;
17725                 patch_len = 2;
17726 apply_patch_buffer:
17727                 new_prog = bpf_patch_insn_data(env, adj_idx, patch, patch_len);
17728                 if (!new_prog)
17729                         return -ENOMEM;
17730                 env->prog = new_prog;
17731                 insns = new_prog->insnsi;
17732                 aux = env->insn_aux_data;
17733                 delta += patch_len - 1;
17734         }
17735
17736         return 0;
17737 }
17738
17739 /* convert load instructions that access fields of a context type into a
17740  * sequence of instructions that access fields of the underlying structure:
17741  *     struct __sk_buff    -> struct sk_buff
17742  *     struct bpf_sock_ops -> struct sock
17743  */
17744 static int convert_ctx_accesses(struct bpf_verifier_env *env)
17745 {
17746         const struct bpf_verifier_ops *ops = env->ops;
17747         int i, cnt, size, ctx_field_size, delta = 0;
17748         const int insn_cnt = env->prog->len;
17749         struct bpf_insn insn_buf[16], *insn;
17750         u32 target_size, size_default, off;
17751         struct bpf_prog *new_prog;
17752         enum bpf_access_type type;
17753         bool is_narrower_load;
17754
17755         if (ops->gen_prologue || env->seen_direct_write) {
17756                 if (!ops->gen_prologue) {
17757                         verbose(env, "bpf verifier is misconfigured\n");
17758                         return -EINVAL;
17759                 }
17760                 cnt = ops->gen_prologue(insn_buf, env->seen_direct_write,
17761                                         env->prog);
17762                 if (cnt >= ARRAY_SIZE(insn_buf)) {
17763                         verbose(env, "bpf verifier is misconfigured\n");
17764                         return -EINVAL;
17765                 } else if (cnt) {
17766                         new_prog = bpf_patch_insn_data(env, 0, insn_buf, cnt);
17767                         if (!new_prog)
17768                                 return -ENOMEM;
17769
17770                         env->prog = new_prog;
17771                         delta += cnt - 1;
17772                 }
17773         }
17774
17775         if (bpf_prog_is_offloaded(env->prog->aux))
17776                 return 0;
17777
17778         insn = env->prog->insnsi + delta;
17779
17780         for (i = 0; i < insn_cnt; i++, insn++) {
17781                 bpf_convert_ctx_access_t convert_ctx_access;
17782                 u8 mode;
17783
17784                 if (insn->code == (BPF_LDX | BPF_MEM | BPF_B) ||
17785                     insn->code == (BPF_LDX | BPF_MEM | BPF_H) ||
17786                     insn->code == (BPF_LDX | BPF_MEM | BPF_W) ||
17787                     insn->code == (BPF_LDX | BPF_MEM | BPF_DW) ||
17788                     insn->code == (BPF_LDX | BPF_MEMSX | BPF_B) ||
17789                     insn->code == (BPF_LDX | BPF_MEMSX | BPF_H) ||
17790                     insn->code == (BPF_LDX | BPF_MEMSX | BPF_W)) {
17791                         type = BPF_READ;
17792                 } else if (insn->code == (BPF_STX | BPF_MEM | BPF_B) ||
17793                            insn->code == (BPF_STX | BPF_MEM | BPF_H) ||
17794                            insn->code == (BPF_STX | BPF_MEM | BPF_W) ||
17795                            insn->code == (BPF_STX | BPF_MEM | BPF_DW) ||
17796                            insn->code == (BPF_ST | BPF_MEM | BPF_B) ||
17797                            insn->code == (BPF_ST | BPF_MEM | BPF_H) ||
17798                            insn->code == (BPF_ST | BPF_MEM | BPF_W) ||
17799                            insn->code == (BPF_ST | BPF_MEM | BPF_DW)) {
17800                         type = BPF_WRITE;
17801                 } else {
17802                         continue;
17803                 }
17804
17805                 if (type == BPF_WRITE &&
17806                     env->insn_aux_data[i + delta].sanitize_stack_spill) {
17807                         struct bpf_insn patch[] = {
17808                                 *insn,
17809                                 BPF_ST_NOSPEC(),
17810                         };
17811
17812                         cnt = ARRAY_SIZE(patch);
17813                         new_prog = bpf_patch_insn_data(env, i + delta, patch, cnt);
17814                         if (!new_prog)
17815                                 return -ENOMEM;
17816
17817                         delta    += cnt - 1;
17818                         env->prog = new_prog;
17819                         insn      = new_prog->insnsi + i + delta;
17820                         continue;
17821                 }
17822
17823                 switch ((int)env->insn_aux_data[i + delta].ptr_type) {
17824                 case PTR_TO_CTX:
17825                         if (!ops->convert_ctx_access)
17826                                 continue;
17827                         convert_ctx_access = ops->convert_ctx_access;
17828                         break;
17829                 case PTR_TO_SOCKET:
17830                 case PTR_TO_SOCK_COMMON:
17831                         convert_ctx_access = bpf_sock_convert_ctx_access;
17832                         break;
17833                 case PTR_TO_TCP_SOCK:
17834                         convert_ctx_access = bpf_tcp_sock_convert_ctx_access;
17835                         break;
17836                 case PTR_TO_XDP_SOCK:
17837                         convert_ctx_access = bpf_xdp_sock_convert_ctx_access;
17838                         break;
17839                 case PTR_TO_BTF_ID:
17840                 case PTR_TO_BTF_ID | PTR_UNTRUSTED:
17841                 /* PTR_TO_BTF_ID | MEM_ALLOC always has a valid lifetime, unlike
17842                  * PTR_TO_BTF_ID, and an active ref_obj_id, but the same cannot
17843                  * be said once it is marked PTR_UNTRUSTED, hence we must handle
17844                  * any faults for loads into such types. BPF_WRITE is disallowed
17845                  * for this case.
17846                  */
17847                 case PTR_TO_BTF_ID | MEM_ALLOC | PTR_UNTRUSTED:
17848                         if (type == BPF_READ) {
17849                                 if (BPF_MODE(insn->code) == BPF_MEM)
17850                                         insn->code = BPF_LDX | BPF_PROBE_MEM |
17851                                                      BPF_SIZE((insn)->code);
17852                                 else
17853                                         insn->code = BPF_LDX | BPF_PROBE_MEMSX |
17854                                                      BPF_SIZE((insn)->code);
17855                                 env->prog->aux->num_exentries++;
17856                         }
17857                         continue;
17858                 default:
17859                         continue;
17860                 }
17861
17862                 ctx_field_size = env->insn_aux_data[i + delta].ctx_field_size;
17863                 size = BPF_LDST_BYTES(insn);
17864                 mode = BPF_MODE(insn->code);
17865
17866                 /* If the read access is a narrower load of the field,
17867                  * convert to a 4/8-byte load, to minimum program type specific
17868                  * convert_ctx_access changes. If conversion is successful,
17869                  * we will apply proper mask to the result.
17870                  */
17871                 is_narrower_load = size < ctx_field_size;
17872                 size_default = bpf_ctx_off_adjust_machine(ctx_field_size);
17873                 off = insn->off;
17874                 if (is_narrower_load) {
17875                         u8 size_code;
17876
17877                         if (type == BPF_WRITE) {
17878                                 verbose(env, "bpf verifier narrow ctx access misconfigured\n");
17879                                 return -EINVAL;
17880                         }
17881
17882                         size_code = BPF_H;
17883                         if (ctx_field_size == 4)
17884                                 size_code = BPF_W;
17885                         else if (ctx_field_size == 8)
17886                                 size_code = BPF_DW;
17887
17888                         insn->off = off & ~(size_default - 1);
17889                         insn->code = BPF_LDX | BPF_MEM | size_code;
17890                 }
17891
17892                 target_size = 0;
17893                 cnt = convert_ctx_access(type, insn, insn_buf, env->prog,
17894                                          &target_size);
17895                 if (cnt == 0 || cnt >= ARRAY_SIZE(insn_buf) ||
17896                     (ctx_field_size && !target_size)) {
17897                         verbose(env, "bpf verifier is misconfigured\n");
17898                         return -EINVAL;
17899                 }
17900
17901                 if (is_narrower_load && size < target_size) {
17902                         u8 shift = bpf_ctx_narrow_access_offset(
17903                                 off, size, size_default) * 8;
17904                         if (shift && cnt + 1 >= ARRAY_SIZE(insn_buf)) {
17905                                 verbose(env, "bpf verifier narrow ctx load misconfigured\n");
17906                                 return -EINVAL;
17907                         }
17908                         if (ctx_field_size <= 4) {
17909                                 if (shift)
17910                                         insn_buf[cnt++] = BPF_ALU32_IMM(BPF_RSH,
17911                                                                         insn->dst_reg,
17912                                                                         shift);
17913                                 insn_buf[cnt++] = BPF_ALU32_IMM(BPF_AND, insn->dst_reg,
17914                                                                 (1 << size * 8) - 1);
17915                         } else {
17916                                 if (shift)
17917                                         insn_buf[cnt++] = BPF_ALU64_IMM(BPF_RSH,
17918                                                                         insn->dst_reg,
17919                                                                         shift);
17920                                 insn_buf[cnt++] = BPF_ALU32_IMM(BPF_AND, insn->dst_reg,
17921                                                                 (1ULL << size * 8) - 1);
17922                         }
17923                 }
17924                 if (mode == BPF_MEMSX)
17925                         insn_buf[cnt++] = BPF_RAW_INSN(BPF_ALU64 | BPF_MOV | BPF_X,
17926                                                        insn->dst_reg, insn->dst_reg,
17927                                                        size * 8, 0);
17928
17929                 new_prog = bpf_patch_insn_data(env, i + delta, insn_buf, cnt);
17930                 if (!new_prog)
17931                         return -ENOMEM;
17932
17933                 delta += cnt - 1;
17934
17935                 /* keep walking new program and skip insns we just inserted */
17936                 env->prog = new_prog;
17937                 insn      = new_prog->insnsi + i + delta;
17938         }
17939
17940         return 0;
17941 }
17942
17943 static int jit_subprogs(struct bpf_verifier_env *env)
17944 {
17945         struct bpf_prog *prog = env->prog, **func, *tmp;
17946         int i, j, subprog_start, subprog_end = 0, len, subprog;
17947         struct bpf_map *map_ptr;
17948         struct bpf_insn *insn;
17949         void *old_bpf_func;
17950         int err, num_exentries;
17951
17952         if (env->subprog_cnt <= 1)
17953                 return 0;
17954
17955         for (i = 0, insn = prog->insnsi; i < prog->len; i++, insn++) {
17956                 if (!bpf_pseudo_func(insn) && !bpf_pseudo_call(insn))
17957                         continue;
17958
17959                 /* Upon error here we cannot fall back to interpreter but
17960                  * need a hard reject of the program. Thus -EFAULT is
17961                  * propagated in any case.
17962                  */
17963                 subprog = find_subprog(env, i + insn->imm + 1);
17964                 if (subprog < 0) {
17965                         WARN_ONCE(1, "verifier bug. No program starts at insn %d\n",
17966                                   i + insn->imm + 1);
17967                         return -EFAULT;
17968                 }
17969                 /* temporarily remember subprog id inside insn instead of
17970                  * aux_data, since next loop will split up all insns into funcs
17971                  */
17972                 insn->off = subprog;
17973                 /* remember original imm in case JIT fails and fallback
17974                  * to interpreter will be needed
17975                  */
17976                 env->insn_aux_data[i].call_imm = insn->imm;
17977                 /* point imm to __bpf_call_base+1 from JITs point of view */
17978                 insn->imm = 1;
17979                 if (bpf_pseudo_func(insn))
17980                         /* jit (e.g. x86_64) may emit fewer instructions
17981                          * if it learns a u32 imm is the same as a u64 imm.
17982                          * Force a non zero here.
17983                          */
17984                         insn[1].imm = 1;
17985         }
17986
17987         err = bpf_prog_alloc_jited_linfo(prog);
17988         if (err)
17989                 goto out_undo_insn;
17990
17991         err = -ENOMEM;
17992         func = kcalloc(env->subprog_cnt, sizeof(prog), GFP_KERNEL);
17993         if (!func)
17994                 goto out_undo_insn;
17995
17996         for (i = 0; i < env->subprog_cnt; i++) {
17997                 subprog_start = subprog_end;
17998                 subprog_end = env->subprog_info[i + 1].start;
17999
18000                 len = subprog_end - subprog_start;
18001                 /* bpf_prog_run() doesn't call subprogs directly,
18002                  * hence main prog stats include the runtime of subprogs.
18003                  * subprogs don't have IDs and not reachable via prog_get_next_id
18004                  * func[i]->stats will never be accessed and stays NULL
18005                  */
18006                 func[i] = bpf_prog_alloc_no_stats(bpf_prog_size(len), GFP_USER);
18007                 if (!func[i])
18008                         goto out_free;
18009                 memcpy(func[i]->insnsi, &prog->insnsi[subprog_start],
18010                        len * sizeof(struct bpf_insn));
18011                 func[i]->type = prog->type;
18012                 func[i]->len = len;
18013                 if (bpf_prog_calc_tag(func[i]))
18014                         goto out_free;
18015                 func[i]->is_func = 1;
18016                 func[i]->aux->func_idx = i;
18017                 /* Below members will be freed only at prog->aux */
18018                 func[i]->aux->btf = prog->aux->btf;
18019                 func[i]->aux->func_info = prog->aux->func_info;
18020                 func[i]->aux->func_info_cnt = prog->aux->func_info_cnt;
18021                 func[i]->aux->poke_tab = prog->aux->poke_tab;
18022                 func[i]->aux->size_poke_tab = prog->aux->size_poke_tab;
18023
18024                 for (j = 0; j < prog->aux->size_poke_tab; j++) {
18025                         struct bpf_jit_poke_descriptor *poke;
18026
18027                         poke = &prog->aux->poke_tab[j];
18028                         if (poke->insn_idx < subprog_end &&
18029                             poke->insn_idx >= subprog_start)
18030                                 poke->aux = func[i]->aux;
18031                 }
18032
18033                 func[i]->aux->name[0] = 'F';
18034                 func[i]->aux->stack_depth = env->subprog_info[i].stack_depth;
18035                 func[i]->jit_requested = 1;
18036                 func[i]->blinding_requested = prog->blinding_requested;
18037                 func[i]->aux->kfunc_tab = prog->aux->kfunc_tab;
18038                 func[i]->aux->kfunc_btf_tab = prog->aux->kfunc_btf_tab;
18039                 func[i]->aux->linfo = prog->aux->linfo;
18040                 func[i]->aux->nr_linfo = prog->aux->nr_linfo;
18041                 func[i]->aux->jited_linfo = prog->aux->jited_linfo;
18042                 func[i]->aux->linfo_idx = env->subprog_info[i].linfo_idx;
18043                 num_exentries = 0;
18044                 insn = func[i]->insnsi;
18045                 for (j = 0; j < func[i]->len; j++, insn++) {
18046                         if (BPF_CLASS(insn->code) == BPF_LDX &&
18047                             (BPF_MODE(insn->code) == BPF_PROBE_MEM ||
18048                              BPF_MODE(insn->code) == BPF_PROBE_MEMSX))
18049                                 num_exentries++;
18050                 }
18051                 func[i]->aux->num_exentries = num_exentries;
18052                 func[i]->aux->tail_call_reachable = env->subprog_info[i].tail_call_reachable;
18053                 func[i] = bpf_int_jit_compile(func[i]);
18054                 if (!func[i]->jited) {
18055                         err = -ENOTSUPP;
18056                         goto out_free;
18057                 }
18058                 cond_resched();
18059         }
18060
18061         /* at this point all bpf functions were successfully JITed
18062          * now populate all bpf_calls with correct addresses and
18063          * run last pass of JIT
18064          */
18065         for (i = 0; i < env->subprog_cnt; i++) {
18066                 insn = func[i]->insnsi;
18067                 for (j = 0; j < func[i]->len; j++, insn++) {
18068                         if (bpf_pseudo_func(insn)) {
18069                                 subprog = insn->off;
18070                                 insn[0].imm = (u32)(long)func[subprog]->bpf_func;
18071                                 insn[1].imm = ((u64)(long)func[subprog]->bpf_func) >> 32;
18072                                 continue;
18073                         }
18074                         if (!bpf_pseudo_call(insn))
18075                                 continue;
18076                         subprog = insn->off;
18077                         insn->imm = BPF_CALL_IMM(func[subprog]->bpf_func);
18078                 }
18079
18080                 /* we use the aux data to keep a list of the start addresses
18081                  * of the JITed images for each function in the program
18082                  *
18083                  * for some architectures, such as powerpc64, the imm field
18084                  * might not be large enough to hold the offset of the start
18085                  * address of the callee's JITed image from __bpf_call_base
18086                  *
18087                  * in such cases, we can lookup the start address of a callee
18088                  * by using its subprog id, available from the off field of
18089                  * the call instruction, as an index for this list
18090                  */
18091                 func[i]->aux->func = func;
18092                 func[i]->aux->func_cnt = env->subprog_cnt;
18093         }
18094         for (i = 0; i < env->subprog_cnt; i++) {
18095                 old_bpf_func = func[i]->bpf_func;
18096                 tmp = bpf_int_jit_compile(func[i]);
18097                 if (tmp != func[i] || func[i]->bpf_func != old_bpf_func) {
18098                         verbose(env, "JIT doesn't support bpf-to-bpf calls\n");
18099                         err = -ENOTSUPP;
18100                         goto out_free;
18101                 }
18102                 cond_resched();
18103         }
18104
18105         /* finally lock prog and jit images for all functions and
18106          * populate kallsysm. Begin at the first subprogram, since
18107          * bpf_prog_load will add the kallsyms for the main program.
18108          */
18109         for (i = 1; i < env->subprog_cnt; i++) {
18110                 bpf_prog_lock_ro(func[i]);
18111                 bpf_prog_kallsyms_add(func[i]);
18112         }
18113
18114         /* Last step: make now unused interpreter insns from main
18115          * prog consistent for later dump requests, so they can
18116          * later look the same as if they were interpreted only.
18117          */
18118         for (i = 0, insn = prog->insnsi; i < prog->len; i++, insn++) {
18119                 if (bpf_pseudo_func(insn)) {
18120                         insn[0].imm = env->insn_aux_data[i].call_imm;
18121                         insn[1].imm = insn->off;
18122                         insn->off = 0;
18123                         continue;
18124                 }
18125                 if (!bpf_pseudo_call(insn))
18126                         continue;
18127                 insn->off = env->insn_aux_data[i].call_imm;
18128                 subprog = find_subprog(env, i + insn->off + 1);
18129                 insn->imm = subprog;
18130         }
18131
18132         prog->jited = 1;
18133         prog->bpf_func = func[0]->bpf_func;
18134         prog->jited_len = func[0]->jited_len;
18135         prog->aux->extable = func[0]->aux->extable;
18136         prog->aux->num_exentries = func[0]->aux->num_exentries;
18137         prog->aux->func = func;
18138         prog->aux->func_cnt = env->subprog_cnt;
18139         bpf_prog_jit_attempt_done(prog);
18140         return 0;
18141 out_free:
18142         /* We failed JIT'ing, so at this point we need to unregister poke
18143          * descriptors from subprogs, so that kernel is not attempting to
18144          * patch it anymore as we're freeing the subprog JIT memory.
18145          */
18146         for (i = 0; i < prog->aux->size_poke_tab; i++) {
18147                 map_ptr = prog->aux->poke_tab[i].tail_call.map;
18148                 map_ptr->ops->map_poke_untrack(map_ptr, prog->aux);
18149         }
18150         /* At this point we're guaranteed that poke descriptors are not
18151          * live anymore. We can just unlink its descriptor table as it's
18152          * released with the main prog.
18153          */
18154         for (i = 0; i < env->subprog_cnt; i++) {
18155                 if (!func[i])
18156                         continue;
18157                 func[i]->aux->poke_tab = NULL;
18158                 bpf_jit_free(func[i]);
18159         }
18160         kfree(func);
18161 out_undo_insn:
18162         /* cleanup main prog to be interpreted */
18163         prog->jit_requested = 0;
18164         prog->blinding_requested = 0;
18165         for (i = 0, insn = prog->insnsi; i < prog->len; i++, insn++) {
18166                 if (!bpf_pseudo_call(insn))
18167                         continue;
18168                 insn->off = 0;
18169                 insn->imm = env->insn_aux_data[i].call_imm;
18170         }
18171         bpf_prog_jit_attempt_done(prog);
18172         return err;
18173 }
18174
18175 static int fixup_call_args(struct bpf_verifier_env *env)
18176 {
18177 #ifndef CONFIG_BPF_JIT_ALWAYS_ON
18178         struct bpf_prog *prog = env->prog;
18179         struct bpf_insn *insn = prog->insnsi;
18180         bool has_kfunc_call = bpf_prog_has_kfunc_call(prog);
18181         int i, depth;
18182 #endif
18183         int err = 0;
18184
18185         if (env->prog->jit_requested &&
18186             !bpf_prog_is_offloaded(env->prog->aux)) {
18187                 err = jit_subprogs(env);
18188                 if (err == 0)
18189                         return 0;
18190                 if (err == -EFAULT)
18191                         return err;
18192         }
18193 #ifndef CONFIG_BPF_JIT_ALWAYS_ON
18194         if (has_kfunc_call) {
18195                 verbose(env, "calling kernel functions are not allowed in non-JITed programs\n");
18196                 return -EINVAL;
18197         }
18198         if (env->subprog_cnt > 1 && env->prog->aux->tail_call_reachable) {
18199                 /* When JIT fails the progs with bpf2bpf calls and tail_calls
18200                  * have to be rejected, since interpreter doesn't support them yet.
18201                  */
18202                 verbose(env, "tail_calls are not allowed in non-JITed programs with bpf-to-bpf calls\n");
18203                 return -EINVAL;
18204         }
18205         for (i = 0; i < prog->len; i++, insn++) {
18206                 if (bpf_pseudo_func(insn)) {
18207                         /* When JIT fails the progs with callback calls
18208                          * have to be rejected, since interpreter doesn't support them yet.
18209                          */
18210                         verbose(env, "callbacks are not allowed in non-JITed programs\n");
18211                         return -EINVAL;
18212                 }
18213
18214                 if (!bpf_pseudo_call(insn))
18215                         continue;
18216                 depth = get_callee_stack_depth(env, insn, i);
18217                 if (depth < 0)
18218                         return depth;
18219                 bpf_patch_call_args(insn, depth);
18220         }
18221         err = 0;
18222 #endif
18223         return err;
18224 }
18225
18226 /* replace a generic kfunc with a specialized version if necessary */
18227 static void specialize_kfunc(struct bpf_verifier_env *env,
18228                              u32 func_id, u16 offset, unsigned long *addr)
18229 {
18230         struct bpf_prog *prog = env->prog;
18231         bool seen_direct_write;
18232         void *xdp_kfunc;
18233         bool is_rdonly;
18234
18235         if (bpf_dev_bound_kfunc_id(func_id)) {
18236                 xdp_kfunc = bpf_dev_bound_resolve_kfunc(prog, func_id);
18237                 if (xdp_kfunc) {
18238                         *addr = (unsigned long)xdp_kfunc;
18239                         return;
18240                 }
18241                 /* fallback to default kfunc when not supported by netdev */
18242         }
18243
18244         if (offset)
18245                 return;
18246
18247         if (func_id == special_kfunc_list[KF_bpf_dynptr_from_skb]) {
18248                 seen_direct_write = env->seen_direct_write;
18249                 is_rdonly = !may_access_direct_pkt_data(env, NULL, BPF_WRITE);
18250
18251                 if (is_rdonly)
18252                         *addr = (unsigned long)bpf_dynptr_from_skb_rdonly;
18253
18254                 /* restore env->seen_direct_write to its original value, since
18255                  * may_access_direct_pkt_data mutates it
18256                  */
18257                 env->seen_direct_write = seen_direct_write;
18258         }
18259 }
18260
18261 static void __fixup_collection_insert_kfunc(struct bpf_insn_aux_data *insn_aux,
18262                                             u16 struct_meta_reg,
18263                                             u16 node_offset_reg,
18264                                             struct bpf_insn *insn,
18265                                             struct bpf_insn *insn_buf,
18266                                             int *cnt)
18267 {
18268         struct btf_struct_meta *kptr_struct_meta = insn_aux->kptr_struct_meta;
18269         struct bpf_insn addr[2] = { BPF_LD_IMM64(struct_meta_reg, (long)kptr_struct_meta) };
18270
18271         insn_buf[0] = addr[0];
18272         insn_buf[1] = addr[1];
18273         insn_buf[2] = BPF_MOV64_IMM(node_offset_reg, insn_aux->insert_off);
18274         insn_buf[3] = *insn;
18275         *cnt = 4;
18276 }
18277
18278 static int fixup_kfunc_call(struct bpf_verifier_env *env, struct bpf_insn *insn,
18279                             struct bpf_insn *insn_buf, int insn_idx, int *cnt)
18280 {
18281         const struct bpf_kfunc_desc *desc;
18282
18283         if (!insn->imm) {
18284                 verbose(env, "invalid kernel function call not eliminated in verifier pass\n");
18285                 return -EINVAL;
18286         }
18287
18288         *cnt = 0;
18289
18290         /* insn->imm has the btf func_id. Replace it with an offset relative to
18291          * __bpf_call_base, unless the JIT needs to call functions that are
18292          * further than 32 bits away (bpf_jit_supports_far_kfunc_call()).
18293          */
18294         desc = find_kfunc_desc(env->prog, insn->imm, insn->off);
18295         if (!desc) {
18296                 verbose(env, "verifier internal error: kernel function descriptor not found for func_id %u\n",
18297                         insn->imm);
18298                 return -EFAULT;
18299         }
18300
18301         if (!bpf_jit_supports_far_kfunc_call())
18302                 insn->imm = BPF_CALL_IMM(desc->addr);
18303         if (insn->off)
18304                 return 0;
18305         if (desc->func_id == special_kfunc_list[KF_bpf_obj_new_impl]) {
18306                 struct btf_struct_meta *kptr_struct_meta = env->insn_aux_data[insn_idx].kptr_struct_meta;
18307                 struct bpf_insn addr[2] = { BPF_LD_IMM64(BPF_REG_2, (long)kptr_struct_meta) };
18308                 u64 obj_new_size = env->insn_aux_data[insn_idx].obj_new_size;
18309
18310                 insn_buf[0] = BPF_MOV64_IMM(BPF_REG_1, obj_new_size);
18311                 insn_buf[1] = addr[0];
18312                 insn_buf[2] = addr[1];
18313                 insn_buf[3] = *insn;
18314                 *cnt = 4;
18315         } else if (desc->func_id == special_kfunc_list[KF_bpf_obj_drop_impl] ||
18316                    desc->func_id == special_kfunc_list[KF_bpf_refcount_acquire_impl]) {
18317                 struct btf_struct_meta *kptr_struct_meta = env->insn_aux_data[insn_idx].kptr_struct_meta;
18318                 struct bpf_insn addr[2] = { BPF_LD_IMM64(BPF_REG_2, (long)kptr_struct_meta) };
18319
18320                 if (desc->func_id == special_kfunc_list[KF_bpf_refcount_acquire_impl] &&
18321                     !kptr_struct_meta) {
18322                         verbose(env, "verifier internal error: kptr_struct_meta expected at insn_idx %d\n",
18323                                 insn_idx);
18324                         return -EFAULT;
18325                 }
18326
18327                 insn_buf[0] = addr[0];
18328                 insn_buf[1] = addr[1];
18329                 insn_buf[2] = *insn;
18330                 *cnt = 3;
18331         } else if (desc->func_id == special_kfunc_list[KF_bpf_list_push_back_impl] ||
18332                    desc->func_id == special_kfunc_list[KF_bpf_list_push_front_impl] ||
18333                    desc->func_id == special_kfunc_list[KF_bpf_rbtree_add_impl]) {
18334                 struct btf_struct_meta *kptr_struct_meta = env->insn_aux_data[insn_idx].kptr_struct_meta;
18335                 int struct_meta_reg = BPF_REG_3;
18336                 int node_offset_reg = BPF_REG_4;
18337
18338                 /* rbtree_add has extra 'less' arg, so args-to-fixup are in diff regs */
18339                 if (desc->func_id == special_kfunc_list[KF_bpf_rbtree_add_impl]) {
18340                         struct_meta_reg = BPF_REG_4;
18341                         node_offset_reg = BPF_REG_5;
18342                 }
18343
18344                 if (!kptr_struct_meta) {
18345                         verbose(env, "verifier internal error: kptr_struct_meta expected at insn_idx %d\n",
18346                                 insn_idx);
18347                         return -EFAULT;
18348                 }
18349
18350                 __fixup_collection_insert_kfunc(&env->insn_aux_data[insn_idx], struct_meta_reg,
18351                                                 node_offset_reg, insn, insn_buf, cnt);
18352         } else if (desc->func_id == special_kfunc_list[KF_bpf_cast_to_kern_ctx] ||
18353                    desc->func_id == special_kfunc_list[KF_bpf_rdonly_cast]) {
18354                 insn_buf[0] = BPF_MOV64_REG(BPF_REG_0, BPF_REG_1);
18355                 *cnt = 1;
18356         }
18357         return 0;
18358 }
18359
18360 /* Do various post-verification rewrites in a single program pass.
18361  * These rewrites simplify JIT and interpreter implementations.
18362  */
18363 static int do_misc_fixups(struct bpf_verifier_env *env)
18364 {
18365         struct bpf_prog *prog = env->prog;
18366         enum bpf_attach_type eatype = prog->expected_attach_type;
18367         enum bpf_prog_type prog_type = resolve_prog_type(prog);
18368         struct bpf_insn *insn = prog->insnsi;
18369         const struct bpf_func_proto *fn;
18370         const int insn_cnt = prog->len;
18371         const struct bpf_map_ops *ops;
18372         struct bpf_insn_aux_data *aux;
18373         struct bpf_insn insn_buf[16];
18374         struct bpf_prog *new_prog;
18375         struct bpf_map *map_ptr;
18376         int i, ret, cnt, delta = 0;
18377
18378         for (i = 0; i < insn_cnt; i++, insn++) {
18379                 /* Make divide-by-zero exceptions impossible. */
18380                 if (insn->code == (BPF_ALU64 | BPF_MOD | BPF_X) ||
18381                     insn->code == (BPF_ALU64 | BPF_DIV | BPF_X) ||
18382                     insn->code == (BPF_ALU | BPF_MOD | BPF_X) ||
18383                     insn->code == (BPF_ALU | BPF_DIV | BPF_X)) {
18384                         bool is64 = BPF_CLASS(insn->code) == BPF_ALU64;
18385                         bool isdiv = BPF_OP(insn->code) == BPF_DIV;
18386                         struct bpf_insn *patchlet;
18387                         struct bpf_insn chk_and_div[] = {
18388                                 /* [R,W]x div 0 -> 0 */
18389                                 BPF_RAW_INSN((is64 ? BPF_JMP : BPF_JMP32) |
18390                                              BPF_JNE | BPF_K, insn->src_reg,
18391                                              0, 2, 0),
18392                                 BPF_ALU32_REG(BPF_XOR, insn->dst_reg, insn->dst_reg),
18393                                 BPF_JMP_IMM(BPF_JA, 0, 0, 1),
18394                                 *insn,
18395                         };
18396                         struct bpf_insn chk_and_mod[] = {
18397                                 /* [R,W]x mod 0 -> [R,W]x */
18398                                 BPF_RAW_INSN((is64 ? BPF_JMP : BPF_JMP32) |
18399                                              BPF_JEQ | BPF_K, insn->src_reg,
18400                                              0, 1 + (is64 ? 0 : 1), 0),
18401                                 *insn,
18402                                 BPF_JMP_IMM(BPF_JA, 0, 0, 1),
18403                                 BPF_MOV32_REG(insn->dst_reg, insn->dst_reg),
18404                         };
18405
18406                         patchlet = isdiv ? chk_and_div : chk_and_mod;
18407                         cnt = isdiv ? ARRAY_SIZE(chk_and_div) :
18408                                       ARRAY_SIZE(chk_and_mod) - (is64 ? 2 : 0);
18409
18410                         new_prog = bpf_patch_insn_data(env, i + delta, patchlet, cnt);
18411                         if (!new_prog)
18412                                 return -ENOMEM;
18413
18414                         delta    += cnt - 1;
18415                         env->prog = prog = new_prog;
18416                         insn      = new_prog->insnsi + i + delta;
18417                         continue;
18418                 }
18419
18420                 /* Implement LD_ABS and LD_IND with a rewrite, if supported by the program type. */
18421                 if (BPF_CLASS(insn->code) == BPF_LD &&
18422                     (BPF_MODE(insn->code) == BPF_ABS ||
18423                      BPF_MODE(insn->code) == BPF_IND)) {
18424                         cnt = env->ops->gen_ld_abs(insn, insn_buf);
18425                         if (cnt == 0 || cnt >= ARRAY_SIZE(insn_buf)) {
18426                                 verbose(env, "bpf verifier is misconfigured\n");
18427                                 return -EINVAL;
18428                         }
18429
18430                         new_prog = bpf_patch_insn_data(env, i + delta, insn_buf, cnt);
18431                         if (!new_prog)
18432                                 return -ENOMEM;
18433
18434                         delta    += cnt - 1;
18435                         env->prog = prog = new_prog;
18436                         insn      = new_prog->insnsi + i + delta;
18437                         continue;
18438                 }
18439
18440                 /* Rewrite pointer arithmetic to mitigate speculation attacks. */
18441                 if (insn->code == (BPF_ALU64 | BPF_ADD | BPF_X) ||
18442                     insn->code == (BPF_ALU64 | BPF_SUB | BPF_X)) {
18443                         const u8 code_add = BPF_ALU64 | BPF_ADD | BPF_X;
18444                         const u8 code_sub = BPF_ALU64 | BPF_SUB | BPF_X;
18445                         struct bpf_insn *patch = &insn_buf[0];
18446                         bool issrc, isneg, isimm;
18447                         u32 off_reg;
18448
18449                         aux = &env->insn_aux_data[i + delta];
18450                         if (!aux->alu_state ||
18451                             aux->alu_state == BPF_ALU_NON_POINTER)
18452                                 continue;
18453
18454                         isneg = aux->alu_state & BPF_ALU_NEG_VALUE;
18455                         issrc = (aux->alu_state & BPF_ALU_SANITIZE) ==
18456                                 BPF_ALU_SANITIZE_SRC;
18457                         isimm = aux->alu_state & BPF_ALU_IMMEDIATE;
18458
18459                         off_reg = issrc ? insn->src_reg : insn->dst_reg;
18460                         if (isimm) {
18461                                 *patch++ = BPF_MOV32_IMM(BPF_REG_AX, aux->alu_limit);
18462                         } else {
18463                                 if (isneg)
18464                                         *patch++ = BPF_ALU64_IMM(BPF_MUL, off_reg, -1);
18465                                 *patch++ = BPF_MOV32_IMM(BPF_REG_AX, aux->alu_limit);
18466                                 *patch++ = BPF_ALU64_REG(BPF_SUB, BPF_REG_AX, off_reg);
18467                                 *patch++ = BPF_ALU64_REG(BPF_OR, BPF_REG_AX, off_reg);
18468                                 *patch++ = BPF_ALU64_IMM(BPF_NEG, BPF_REG_AX, 0);
18469                                 *patch++ = BPF_ALU64_IMM(BPF_ARSH, BPF_REG_AX, 63);
18470                                 *patch++ = BPF_ALU64_REG(BPF_AND, BPF_REG_AX, off_reg);
18471                         }
18472                         if (!issrc)
18473                                 *patch++ = BPF_MOV64_REG(insn->dst_reg, insn->src_reg);
18474                         insn->src_reg = BPF_REG_AX;
18475                         if (isneg)
18476                                 insn->code = insn->code == code_add ?
18477                                              code_sub : code_add;
18478                         *patch++ = *insn;
18479                         if (issrc && isneg && !isimm)
18480                                 *patch++ = BPF_ALU64_IMM(BPF_MUL, off_reg, -1);
18481                         cnt = patch - insn_buf;
18482
18483                         new_prog = bpf_patch_insn_data(env, i + delta, insn_buf, cnt);
18484                         if (!new_prog)
18485                                 return -ENOMEM;
18486
18487                         delta    += cnt - 1;
18488                         env->prog = prog = new_prog;
18489                         insn      = new_prog->insnsi + i + delta;
18490                         continue;
18491                 }
18492
18493                 if (insn->code != (BPF_JMP | BPF_CALL))
18494                         continue;
18495                 if (insn->src_reg == BPF_PSEUDO_CALL)
18496                         continue;
18497                 if (insn->src_reg == BPF_PSEUDO_KFUNC_CALL) {
18498                         ret = fixup_kfunc_call(env, insn, insn_buf, i + delta, &cnt);
18499                         if (ret)
18500                                 return ret;
18501                         if (cnt == 0)
18502                                 continue;
18503
18504                         new_prog = bpf_patch_insn_data(env, i + delta, insn_buf, cnt);
18505                         if (!new_prog)
18506                                 return -ENOMEM;
18507
18508                         delta    += cnt - 1;
18509                         env->prog = prog = new_prog;
18510                         insn      = new_prog->insnsi + i + delta;
18511                         continue;
18512                 }
18513
18514                 if (insn->imm == BPF_FUNC_get_route_realm)
18515                         prog->dst_needed = 1;
18516                 if (insn->imm == BPF_FUNC_get_prandom_u32)
18517                         bpf_user_rnd_init_once();
18518                 if (insn->imm == BPF_FUNC_override_return)
18519                         prog->kprobe_override = 1;
18520                 if (insn->imm == BPF_FUNC_tail_call) {
18521                         /* If we tail call into other programs, we
18522                          * cannot make any assumptions since they can
18523                          * be replaced dynamically during runtime in
18524                          * the program array.
18525                          */
18526                         prog->cb_access = 1;
18527                         if (!allow_tail_call_in_subprogs(env))
18528                                 prog->aux->stack_depth = MAX_BPF_STACK;
18529                         prog->aux->max_pkt_offset = MAX_PACKET_OFF;
18530
18531                         /* mark bpf_tail_call as different opcode to avoid
18532                          * conditional branch in the interpreter for every normal
18533                          * call and to prevent accidental JITing by JIT compiler
18534                          * that doesn't support bpf_tail_call yet
18535                          */
18536                         insn->imm = 0;
18537                         insn->code = BPF_JMP | BPF_TAIL_CALL;
18538
18539                         aux = &env->insn_aux_data[i + delta];
18540                         if (env->bpf_capable && !prog->blinding_requested &&
18541                             prog->jit_requested &&
18542                             !bpf_map_key_poisoned(aux) &&
18543                             !bpf_map_ptr_poisoned(aux) &&
18544                             !bpf_map_ptr_unpriv(aux)) {
18545                                 struct bpf_jit_poke_descriptor desc = {
18546                                         .reason = BPF_POKE_REASON_TAIL_CALL,
18547                                         .tail_call.map = BPF_MAP_PTR(aux->map_ptr_state),
18548                                         .tail_call.key = bpf_map_key_immediate(aux),
18549                                         .insn_idx = i + delta,
18550                                 };
18551
18552                                 ret = bpf_jit_add_poke_descriptor(prog, &desc);
18553                                 if (ret < 0) {
18554                                         verbose(env, "adding tail call poke descriptor failed\n");
18555                                         return ret;
18556                                 }
18557
18558                                 insn->imm = ret + 1;
18559                                 continue;
18560                         }
18561
18562                         if (!bpf_map_ptr_unpriv(aux))
18563                                 continue;
18564
18565                         /* instead of changing every JIT dealing with tail_call
18566                          * emit two extra insns:
18567                          * if (index >= max_entries) goto out;
18568                          * index &= array->index_mask;
18569                          * to avoid out-of-bounds cpu speculation
18570                          */
18571                         if (bpf_map_ptr_poisoned(aux)) {
18572                                 verbose(env, "tail_call abusing map_ptr\n");
18573                                 return -EINVAL;
18574                         }
18575
18576                         map_ptr = BPF_MAP_PTR(aux->map_ptr_state);
18577                         insn_buf[0] = BPF_JMP_IMM(BPF_JGE, BPF_REG_3,
18578                                                   map_ptr->max_entries, 2);
18579                         insn_buf[1] = BPF_ALU32_IMM(BPF_AND, BPF_REG_3,
18580                                                     container_of(map_ptr,
18581                                                                  struct bpf_array,
18582                                                                  map)->index_mask);
18583                         insn_buf[2] = *insn;
18584                         cnt = 3;
18585                         new_prog = bpf_patch_insn_data(env, i + delta, insn_buf, cnt);
18586                         if (!new_prog)
18587                                 return -ENOMEM;
18588
18589                         delta    += cnt - 1;
18590                         env->prog = prog = new_prog;
18591                         insn      = new_prog->insnsi + i + delta;
18592                         continue;
18593                 }
18594
18595                 if (insn->imm == BPF_FUNC_timer_set_callback) {
18596                         /* The verifier will process callback_fn as many times as necessary
18597                          * with different maps and the register states prepared by
18598                          * set_timer_callback_state will be accurate.
18599                          *
18600                          * The following use case is valid:
18601                          *   map1 is shared by prog1, prog2, prog3.
18602                          *   prog1 calls bpf_timer_init for some map1 elements
18603                          *   prog2 calls bpf_timer_set_callback for some map1 elements.
18604                          *     Those that were not bpf_timer_init-ed will return -EINVAL.
18605                          *   prog3 calls bpf_timer_start for some map1 elements.
18606                          *     Those that were not both bpf_timer_init-ed and
18607                          *     bpf_timer_set_callback-ed will return -EINVAL.
18608                          */
18609                         struct bpf_insn ld_addrs[2] = {
18610                                 BPF_LD_IMM64(BPF_REG_3, (long)prog->aux),
18611                         };
18612
18613                         insn_buf[0] = ld_addrs[0];
18614                         insn_buf[1] = ld_addrs[1];
18615                         insn_buf[2] = *insn;
18616                         cnt = 3;
18617
18618                         new_prog = bpf_patch_insn_data(env, i + delta, insn_buf, cnt);
18619                         if (!new_prog)
18620                                 return -ENOMEM;
18621
18622                         delta    += cnt - 1;
18623                         env->prog = prog = new_prog;
18624                         insn      = new_prog->insnsi + i + delta;
18625                         goto patch_call_imm;
18626                 }
18627
18628                 if (is_storage_get_function(insn->imm)) {
18629                         if (!env->prog->aux->sleepable ||
18630                             env->insn_aux_data[i + delta].storage_get_func_atomic)
18631                                 insn_buf[0] = BPF_MOV64_IMM(BPF_REG_5, (__force __s32)GFP_ATOMIC);
18632                         else
18633                                 insn_buf[0] = BPF_MOV64_IMM(BPF_REG_5, (__force __s32)GFP_KERNEL);
18634                         insn_buf[1] = *insn;
18635                         cnt = 2;
18636
18637                         new_prog = bpf_patch_insn_data(env, i + delta, insn_buf, cnt);
18638                         if (!new_prog)
18639                                 return -ENOMEM;
18640
18641                         delta += cnt - 1;
18642                         env->prog = prog = new_prog;
18643                         insn = new_prog->insnsi + i + delta;
18644                         goto patch_call_imm;
18645                 }
18646
18647                 /* BPF_EMIT_CALL() assumptions in some of the map_gen_lookup
18648                  * and other inlining handlers are currently limited to 64 bit
18649                  * only.
18650                  */
18651                 if (prog->jit_requested && BITS_PER_LONG == 64 &&
18652                     (insn->imm == BPF_FUNC_map_lookup_elem ||
18653                      insn->imm == BPF_FUNC_map_update_elem ||
18654                      insn->imm == BPF_FUNC_map_delete_elem ||
18655                      insn->imm == BPF_FUNC_map_push_elem   ||
18656                      insn->imm == BPF_FUNC_map_pop_elem    ||
18657                      insn->imm == BPF_FUNC_map_peek_elem   ||
18658                      insn->imm == BPF_FUNC_redirect_map    ||
18659                      insn->imm == BPF_FUNC_for_each_map_elem ||
18660                      insn->imm == BPF_FUNC_map_lookup_percpu_elem)) {
18661                         aux = &env->insn_aux_data[i + delta];
18662                         if (bpf_map_ptr_poisoned(aux))
18663                                 goto patch_call_imm;
18664
18665                         map_ptr = BPF_MAP_PTR(aux->map_ptr_state);
18666                         ops = map_ptr->ops;
18667                         if (insn->imm == BPF_FUNC_map_lookup_elem &&
18668                             ops->map_gen_lookup) {
18669                                 cnt = ops->map_gen_lookup(map_ptr, insn_buf);
18670                                 if (cnt == -EOPNOTSUPP)
18671                                         goto patch_map_ops_generic;
18672                                 if (cnt <= 0 || cnt >= ARRAY_SIZE(insn_buf)) {
18673                                         verbose(env, "bpf verifier is misconfigured\n");
18674                                         return -EINVAL;
18675                                 }
18676
18677                                 new_prog = bpf_patch_insn_data(env, i + delta,
18678                                                                insn_buf, cnt);
18679                                 if (!new_prog)
18680                                         return -ENOMEM;
18681
18682                                 delta    += cnt - 1;
18683                                 env->prog = prog = new_prog;
18684                                 insn      = new_prog->insnsi + i + delta;
18685                                 continue;
18686                         }
18687
18688                         BUILD_BUG_ON(!__same_type(ops->map_lookup_elem,
18689                                      (void *(*)(struct bpf_map *map, void *key))NULL));
18690                         BUILD_BUG_ON(!__same_type(ops->map_delete_elem,
18691                                      (long (*)(struct bpf_map *map, void *key))NULL));
18692                         BUILD_BUG_ON(!__same_type(ops->map_update_elem,
18693                                      (long (*)(struct bpf_map *map, void *key, void *value,
18694                                               u64 flags))NULL));
18695                         BUILD_BUG_ON(!__same_type(ops->map_push_elem,
18696                                      (long (*)(struct bpf_map *map, void *value,
18697                                               u64 flags))NULL));
18698                         BUILD_BUG_ON(!__same_type(ops->map_pop_elem,
18699                                      (long (*)(struct bpf_map *map, void *value))NULL));
18700                         BUILD_BUG_ON(!__same_type(ops->map_peek_elem,
18701                                      (long (*)(struct bpf_map *map, void *value))NULL));
18702                         BUILD_BUG_ON(!__same_type(ops->map_redirect,
18703                                      (long (*)(struct bpf_map *map, u64 index, u64 flags))NULL));
18704                         BUILD_BUG_ON(!__same_type(ops->map_for_each_callback,
18705                                      (long (*)(struct bpf_map *map,
18706                                               bpf_callback_t callback_fn,
18707                                               void *callback_ctx,
18708                                               u64 flags))NULL));
18709                         BUILD_BUG_ON(!__same_type(ops->map_lookup_percpu_elem,
18710                                      (void *(*)(struct bpf_map *map, void *key, u32 cpu))NULL));
18711
18712 patch_map_ops_generic:
18713                         switch (insn->imm) {
18714                         case BPF_FUNC_map_lookup_elem:
18715                                 insn->imm = BPF_CALL_IMM(ops->map_lookup_elem);
18716                                 continue;
18717                         case BPF_FUNC_map_update_elem:
18718                                 insn->imm = BPF_CALL_IMM(ops->map_update_elem);
18719                                 continue;
18720                         case BPF_FUNC_map_delete_elem:
18721                                 insn->imm = BPF_CALL_IMM(ops->map_delete_elem);
18722                                 continue;
18723                         case BPF_FUNC_map_push_elem:
18724                                 insn->imm = BPF_CALL_IMM(ops->map_push_elem);
18725                                 continue;
18726                         case BPF_FUNC_map_pop_elem:
18727                                 insn->imm = BPF_CALL_IMM(ops->map_pop_elem);
18728                                 continue;
18729                         case BPF_FUNC_map_peek_elem:
18730                                 insn->imm = BPF_CALL_IMM(ops->map_peek_elem);
18731                                 continue;
18732                         case BPF_FUNC_redirect_map:
18733                                 insn->imm = BPF_CALL_IMM(ops->map_redirect);
18734                                 continue;
18735                         case BPF_FUNC_for_each_map_elem:
18736                                 insn->imm = BPF_CALL_IMM(ops->map_for_each_callback);
18737                                 continue;
18738                         case BPF_FUNC_map_lookup_percpu_elem:
18739                                 insn->imm = BPF_CALL_IMM(ops->map_lookup_percpu_elem);
18740                                 continue;
18741                         }
18742
18743                         goto patch_call_imm;
18744                 }
18745
18746                 /* Implement bpf_jiffies64 inline. */
18747                 if (prog->jit_requested && BITS_PER_LONG == 64 &&
18748                     insn->imm == BPF_FUNC_jiffies64) {
18749                         struct bpf_insn ld_jiffies_addr[2] = {
18750                                 BPF_LD_IMM64(BPF_REG_0,
18751                                              (unsigned long)&jiffies),
18752                         };
18753
18754                         insn_buf[0] = ld_jiffies_addr[0];
18755                         insn_buf[1] = ld_jiffies_addr[1];
18756                         insn_buf[2] = BPF_LDX_MEM(BPF_DW, BPF_REG_0,
18757                                                   BPF_REG_0, 0);
18758                         cnt = 3;
18759
18760                         new_prog = bpf_patch_insn_data(env, i + delta, insn_buf,
18761                                                        cnt);
18762                         if (!new_prog)
18763                                 return -ENOMEM;
18764
18765                         delta    += cnt - 1;
18766                         env->prog = prog = new_prog;
18767                         insn      = new_prog->insnsi + i + delta;
18768                         continue;
18769                 }
18770
18771                 /* Implement bpf_get_func_arg inline. */
18772                 if (prog_type == BPF_PROG_TYPE_TRACING &&
18773                     insn->imm == BPF_FUNC_get_func_arg) {
18774                         /* Load nr_args from ctx - 8 */
18775                         insn_buf[0] = BPF_LDX_MEM(BPF_DW, BPF_REG_0, BPF_REG_1, -8);
18776                         insn_buf[1] = BPF_JMP32_REG(BPF_JGE, BPF_REG_2, BPF_REG_0, 6);
18777                         insn_buf[2] = BPF_ALU64_IMM(BPF_LSH, BPF_REG_2, 3);
18778                         insn_buf[3] = BPF_ALU64_REG(BPF_ADD, BPF_REG_2, BPF_REG_1);
18779                         insn_buf[4] = BPF_LDX_MEM(BPF_DW, BPF_REG_0, BPF_REG_2, 0);
18780                         insn_buf[5] = BPF_STX_MEM(BPF_DW, BPF_REG_3, BPF_REG_0, 0);
18781                         insn_buf[6] = BPF_MOV64_IMM(BPF_REG_0, 0);
18782                         insn_buf[7] = BPF_JMP_A(1);
18783                         insn_buf[8] = BPF_MOV64_IMM(BPF_REG_0, -EINVAL);
18784                         cnt = 9;
18785
18786                         new_prog = bpf_patch_insn_data(env, i + delta, insn_buf, cnt);
18787                         if (!new_prog)
18788                                 return -ENOMEM;
18789
18790                         delta    += cnt - 1;
18791                         env->prog = prog = new_prog;
18792                         insn      = new_prog->insnsi + i + delta;
18793                         continue;
18794                 }
18795
18796                 /* Implement bpf_get_func_ret inline. */
18797                 if (prog_type == BPF_PROG_TYPE_TRACING &&
18798                     insn->imm == BPF_FUNC_get_func_ret) {
18799                         if (eatype == BPF_TRACE_FEXIT ||
18800                             eatype == BPF_MODIFY_RETURN) {
18801                                 /* Load nr_args from ctx - 8 */
18802                                 insn_buf[0] = BPF_LDX_MEM(BPF_DW, BPF_REG_0, BPF_REG_1, -8);
18803                                 insn_buf[1] = BPF_ALU64_IMM(BPF_LSH, BPF_REG_0, 3);
18804                                 insn_buf[2] = BPF_ALU64_REG(BPF_ADD, BPF_REG_0, BPF_REG_1);
18805                                 insn_buf[3] = BPF_LDX_MEM(BPF_DW, BPF_REG_3, BPF_REG_0, 0);
18806                                 insn_buf[4] = BPF_STX_MEM(BPF_DW, BPF_REG_2, BPF_REG_3, 0);
18807                                 insn_buf[5] = BPF_MOV64_IMM(BPF_REG_0, 0);
18808                                 cnt = 6;
18809                         } else {
18810                                 insn_buf[0] = BPF_MOV64_IMM(BPF_REG_0, -EOPNOTSUPP);
18811                                 cnt = 1;
18812                         }
18813
18814                         new_prog = bpf_patch_insn_data(env, i + delta, insn_buf, cnt);
18815                         if (!new_prog)
18816                                 return -ENOMEM;
18817
18818                         delta    += cnt - 1;
18819                         env->prog = prog = new_prog;
18820                         insn      = new_prog->insnsi + i + delta;
18821                         continue;
18822                 }
18823
18824                 /* Implement get_func_arg_cnt inline. */
18825                 if (prog_type == BPF_PROG_TYPE_TRACING &&
18826                     insn->imm == BPF_FUNC_get_func_arg_cnt) {
18827                         /* Load nr_args from ctx - 8 */
18828                         insn_buf[0] = BPF_LDX_MEM(BPF_DW, BPF_REG_0, BPF_REG_1, -8);
18829
18830                         new_prog = bpf_patch_insn_data(env, i + delta, insn_buf, 1);
18831                         if (!new_prog)
18832                                 return -ENOMEM;
18833
18834                         env->prog = prog = new_prog;
18835                         insn      = new_prog->insnsi + i + delta;
18836                         continue;
18837                 }
18838
18839                 /* Implement bpf_get_func_ip inline. */
18840                 if (prog_type == BPF_PROG_TYPE_TRACING &&
18841                     insn->imm == BPF_FUNC_get_func_ip) {
18842                         /* Load IP address from ctx - 16 */
18843                         insn_buf[0] = BPF_LDX_MEM(BPF_DW, BPF_REG_0, BPF_REG_1, -16);
18844
18845                         new_prog = bpf_patch_insn_data(env, i + delta, insn_buf, 1);
18846                         if (!new_prog)
18847                                 return -ENOMEM;
18848
18849                         env->prog = prog = new_prog;
18850                         insn      = new_prog->insnsi + i + delta;
18851                         continue;
18852                 }
18853
18854 patch_call_imm:
18855                 fn = env->ops->get_func_proto(insn->imm, env->prog);
18856                 /* all functions that have prototype and verifier allowed
18857                  * programs to call them, must be real in-kernel functions
18858                  */
18859                 if (!fn->func) {
18860                         verbose(env,
18861                                 "kernel subsystem misconfigured func %s#%d\n",
18862                                 func_id_name(insn->imm), insn->imm);
18863                         return -EFAULT;
18864                 }
18865                 insn->imm = fn->func - __bpf_call_base;
18866         }
18867
18868         /* Since poke tab is now finalized, publish aux to tracker. */
18869         for (i = 0; i < prog->aux->size_poke_tab; i++) {
18870                 map_ptr = prog->aux->poke_tab[i].tail_call.map;
18871                 if (!map_ptr->ops->map_poke_track ||
18872                     !map_ptr->ops->map_poke_untrack ||
18873                     !map_ptr->ops->map_poke_run) {
18874                         verbose(env, "bpf verifier is misconfigured\n");
18875                         return -EINVAL;
18876                 }
18877
18878                 ret = map_ptr->ops->map_poke_track(map_ptr, prog->aux);
18879                 if (ret < 0) {
18880                         verbose(env, "tracking tail call prog failed\n");
18881                         return ret;
18882                 }
18883         }
18884
18885         sort_kfunc_descs_by_imm_off(env->prog);
18886
18887         return 0;
18888 }
18889
18890 static struct bpf_prog *inline_bpf_loop(struct bpf_verifier_env *env,
18891                                         int position,
18892                                         s32 stack_base,
18893                                         u32 callback_subprogno,
18894                                         u32 *cnt)
18895 {
18896         s32 r6_offset = stack_base + 0 * BPF_REG_SIZE;
18897         s32 r7_offset = stack_base + 1 * BPF_REG_SIZE;
18898         s32 r8_offset = stack_base + 2 * BPF_REG_SIZE;
18899         int reg_loop_max = BPF_REG_6;
18900         int reg_loop_cnt = BPF_REG_7;
18901         int reg_loop_ctx = BPF_REG_8;
18902
18903         struct bpf_prog *new_prog;
18904         u32 callback_start;
18905         u32 call_insn_offset;
18906         s32 callback_offset;
18907
18908         /* This represents an inlined version of bpf_iter.c:bpf_loop,
18909          * be careful to modify this code in sync.
18910          */
18911         struct bpf_insn insn_buf[] = {
18912                 /* Return error and jump to the end of the patch if
18913                  * expected number of iterations is too big.
18914                  */
18915                 BPF_JMP_IMM(BPF_JLE, BPF_REG_1, BPF_MAX_LOOPS, 2),
18916                 BPF_MOV32_IMM(BPF_REG_0, -E2BIG),
18917                 BPF_JMP_IMM(BPF_JA, 0, 0, 16),
18918                 /* spill R6, R7, R8 to use these as loop vars */
18919                 BPF_STX_MEM(BPF_DW, BPF_REG_10, BPF_REG_6, r6_offset),
18920                 BPF_STX_MEM(BPF_DW, BPF_REG_10, BPF_REG_7, r7_offset),
18921                 BPF_STX_MEM(BPF_DW, BPF_REG_10, BPF_REG_8, r8_offset),
18922                 /* initialize loop vars */
18923                 BPF_MOV64_REG(reg_loop_max, BPF_REG_1),
18924                 BPF_MOV32_IMM(reg_loop_cnt, 0),
18925                 BPF_MOV64_REG(reg_loop_ctx, BPF_REG_3),
18926                 /* loop header,
18927                  * if reg_loop_cnt >= reg_loop_max skip the loop body
18928                  */
18929                 BPF_JMP_REG(BPF_JGE, reg_loop_cnt, reg_loop_max, 5),
18930                 /* callback call,
18931                  * correct callback offset would be set after patching
18932                  */
18933                 BPF_MOV64_REG(BPF_REG_1, reg_loop_cnt),
18934                 BPF_MOV64_REG(BPF_REG_2, reg_loop_ctx),
18935                 BPF_CALL_REL(0),
18936                 /* increment loop counter */
18937                 BPF_ALU64_IMM(BPF_ADD, reg_loop_cnt, 1),
18938                 /* jump to loop header if callback returned 0 */
18939                 BPF_JMP_IMM(BPF_JEQ, BPF_REG_0, 0, -6),
18940                 /* return value of bpf_loop,
18941                  * set R0 to the number of iterations
18942                  */
18943                 BPF_MOV64_REG(BPF_REG_0, reg_loop_cnt),
18944                 /* restore original values of R6, R7, R8 */
18945                 BPF_LDX_MEM(BPF_DW, BPF_REG_6, BPF_REG_10, r6_offset),
18946                 BPF_LDX_MEM(BPF_DW, BPF_REG_7, BPF_REG_10, r7_offset),
18947                 BPF_LDX_MEM(BPF_DW, BPF_REG_8, BPF_REG_10, r8_offset),
18948         };
18949
18950         *cnt = ARRAY_SIZE(insn_buf);
18951         new_prog = bpf_patch_insn_data(env, position, insn_buf, *cnt);
18952         if (!new_prog)
18953                 return new_prog;
18954
18955         /* callback start is known only after patching */
18956         callback_start = env->subprog_info[callback_subprogno].start;
18957         /* Note: insn_buf[12] is an offset of BPF_CALL_REL instruction */
18958         call_insn_offset = position + 12;
18959         callback_offset = callback_start - call_insn_offset - 1;
18960         new_prog->insnsi[call_insn_offset].imm = callback_offset;
18961
18962         return new_prog;
18963 }
18964
18965 static bool is_bpf_loop_call(struct bpf_insn *insn)
18966 {
18967         return insn->code == (BPF_JMP | BPF_CALL) &&
18968                 insn->src_reg == 0 &&
18969                 insn->imm == BPF_FUNC_loop;
18970 }
18971
18972 /* For all sub-programs in the program (including main) check
18973  * insn_aux_data to see if there are bpf_loop calls that require
18974  * inlining. If such calls are found the calls are replaced with a
18975  * sequence of instructions produced by `inline_bpf_loop` function and
18976  * subprog stack_depth is increased by the size of 3 registers.
18977  * This stack space is used to spill values of the R6, R7, R8.  These
18978  * registers are used to store the loop bound, counter and context
18979  * variables.
18980  */
18981 static int optimize_bpf_loop(struct bpf_verifier_env *env)
18982 {
18983         struct bpf_subprog_info *subprogs = env->subprog_info;
18984         int i, cur_subprog = 0, cnt, delta = 0;
18985         struct bpf_insn *insn = env->prog->insnsi;
18986         int insn_cnt = env->prog->len;
18987         u16 stack_depth = subprogs[cur_subprog].stack_depth;
18988         u16 stack_depth_roundup = round_up(stack_depth, 8) - stack_depth;
18989         u16 stack_depth_extra = 0;
18990
18991         for (i = 0; i < insn_cnt; i++, insn++) {
18992                 struct bpf_loop_inline_state *inline_state =
18993                         &env->insn_aux_data[i + delta].loop_inline_state;
18994
18995                 if (is_bpf_loop_call(insn) && inline_state->fit_for_inline) {
18996                         struct bpf_prog *new_prog;
18997
18998                         stack_depth_extra = BPF_REG_SIZE * 3 + stack_depth_roundup;
18999                         new_prog = inline_bpf_loop(env,
19000                                                    i + delta,
19001                                                    -(stack_depth + stack_depth_extra),
19002                                                    inline_state->callback_subprogno,
19003                                                    &cnt);
19004                         if (!new_prog)
19005                                 return -ENOMEM;
19006
19007                         delta     += cnt - 1;
19008                         env->prog  = new_prog;
19009                         insn       = new_prog->insnsi + i + delta;
19010                 }
19011
19012                 if (subprogs[cur_subprog + 1].start == i + delta + 1) {
19013                         subprogs[cur_subprog].stack_depth += stack_depth_extra;
19014                         cur_subprog++;
19015                         stack_depth = subprogs[cur_subprog].stack_depth;
19016                         stack_depth_roundup = round_up(stack_depth, 8) - stack_depth;
19017                         stack_depth_extra = 0;
19018                 }
19019         }
19020
19021         env->prog->aux->stack_depth = env->subprog_info[0].stack_depth;
19022
19023         return 0;
19024 }
19025
19026 static void free_states(struct bpf_verifier_env *env)
19027 {
19028         struct bpf_verifier_state_list *sl, *sln;
19029         int i;
19030
19031         sl = env->free_list;
19032         while (sl) {
19033                 sln = sl->next;
19034                 free_verifier_state(&sl->state, false);
19035                 kfree(sl);
19036                 sl = sln;
19037         }
19038         env->free_list = NULL;
19039
19040         if (!env->explored_states)
19041                 return;
19042
19043         for (i = 0; i < state_htab_size(env); i++) {
19044                 sl = env->explored_states[i];
19045
19046                 while (sl) {
19047                         sln = sl->next;
19048                         free_verifier_state(&sl->state, false);
19049                         kfree(sl);
19050                         sl = sln;
19051                 }
19052                 env->explored_states[i] = NULL;
19053         }
19054 }
19055
19056 static int do_check_common(struct bpf_verifier_env *env, int subprog)
19057 {
19058         bool pop_log = !(env->log.level & BPF_LOG_LEVEL2);
19059         struct bpf_verifier_state *state;
19060         struct bpf_reg_state *regs;
19061         int ret, i;
19062
19063         env->prev_linfo = NULL;
19064         env->pass_cnt++;
19065
19066         state = kzalloc(sizeof(struct bpf_verifier_state), GFP_KERNEL);
19067         if (!state)
19068                 return -ENOMEM;
19069         state->curframe = 0;
19070         state->speculative = false;
19071         state->branches = 1;
19072         state->frame[0] = kzalloc(sizeof(struct bpf_func_state), GFP_KERNEL);
19073         if (!state->frame[0]) {
19074                 kfree(state);
19075                 return -ENOMEM;
19076         }
19077         env->cur_state = state;
19078         init_func_state(env, state->frame[0],
19079                         BPF_MAIN_FUNC /* callsite */,
19080                         0 /* frameno */,
19081                         subprog);
19082         state->first_insn_idx = env->subprog_info[subprog].start;
19083         state->last_insn_idx = -1;
19084
19085         regs = state->frame[state->curframe]->regs;
19086         if (subprog || env->prog->type == BPF_PROG_TYPE_EXT) {
19087                 ret = btf_prepare_func_args(env, subprog, regs);
19088                 if (ret)
19089                         goto out;
19090                 for (i = BPF_REG_1; i <= BPF_REG_5; i++) {
19091                         if (regs[i].type == PTR_TO_CTX)
19092                                 mark_reg_known_zero(env, regs, i);
19093                         else if (regs[i].type == SCALAR_VALUE)
19094                                 mark_reg_unknown(env, regs, i);
19095                         else if (base_type(regs[i].type) == PTR_TO_MEM) {
19096                                 const u32 mem_size = regs[i].mem_size;
19097
19098                                 mark_reg_known_zero(env, regs, i);
19099                                 regs[i].mem_size = mem_size;
19100                                 regs[i].id = ++env->id_gen;
19101                         }
19102                 }
19103         } else {
19104                 /* 1st arg to a function */
19105                 regs[BPF_REG_1].type = PTR_TO_CTX;
19106                 mark_reg_known_zero(env, regs, BPF_REG_1);
19107                 ret = btf_check_subprog_arg_match(env, subprog, regs);
19108                 if (ret == -EFAULT)
19109                         /* unlikely verifier bug. abort.
19110                          * ret == 0 and ret < 0 are sadly acceptable for
19111                          * main() function due to backward compatibility.
19112                          * Like socket filter program may be written as:
19113                          * int bpf_prog(struct pt_regs *ctx)
19114                          * and never dereference that ctx in the program.
19115                          * 'struct pt_regs' is a type mismatch for socket
19116                          * filter that should be using 'struct __sk_buff'.
19117                          */
19118                         goto out;
19119         }
19120
19121         ret = do_check(env);
19122 out:
19123         /* check for NULL is necessary, since cur_state can be freed inside
19124          * do_check() under memory pressure.
19125          */
19126         if (env->cur_state) {
19127                 free_verifier_state(env->cur_state, true);
19128                 env->cur_state = NULL;
19129         }
19130         while (!pop_stack(env, NULL, NULL, false));
19131         if (!ret && pop_log)
19132                 bpf_vlog_reset(&env->log, 0);
19133         free_states(env);
19134         return ret;
19135 }
19136
19137 /* Verify all global functions in a BPF program one by one based on their BTF.
19138  * All global functions must pass verification. Otherwise the whole program is rejected.
19139  * Consider:
19140  * int bar(int);
19141  * int foo(int f)
19142  * {
19143  *    return bar(f);
19144  * }
19145  * int bar(int b)
19146  * {
19147  *    ...
19148  * }
19149  * foo() will be verified first for R1=any_scalar_value. During verification it
19150  * will be assumed that bar() already verified successfully and call to bar()
19151  * from foo() will be checked for type match only. Later bar() will be verified
19152  * independently to check that it's safe for R1=any_scalar_value.
19153  */
19154 static int do_check_subprogs(struct bpf_verifier_env *env)
19155 {
19156         struct bpf_prog_aux *aux = env->prog->aux;
19157         int i, ret;
19158
19159         if (!aux->func_info)
19160                 return 0;
19161
19162         for (i = 1; i < env->subprog_cnt; i++) {
19163                 if (aux->func_info_aux[i].linkage != BTF_FUNC_GLOBAL)
19164                         continue;
19165                 env->insn_idx = env->subprog_info[i].start;
19166                 WARN_ON_ONCE(env->insn_idx == 0);
19167                 ret = do_check_common(env, i);
19168                 if (ret) {
19169                         return ret;
19170                 } else if (env->log.level & BPF_LOG_LEVEL) {
19171                         verbose(env,
19172                                 "Func#%d is safe for any args that match its prototype\n",
19173                                 i);
19174                 }
19175         }
19176         return 0;
19177 }
19178
19179 static int do_check_main(struct bpf_verifier_env *env)
19180 {
19181         int ret;
19182
19183         env->insn_idx = 0;
19184         ret = do_check_common(env, 0);
19185         if (!ret)
19186                 env->prog->aux->stack_depth = env->subprog_info[0].stack_depth;
19187         return ret;
19188 }
19189
19190
19191 static void print_verification_stats(struct bpf_verifier_env *env)
19192 {
19193         int i;
19194
19195         if (env->log.level & BPF_LOG_STATS) {
19196                 verbose(env, "verification time %lld usec\n",
19197                         div_u64(env->verification_time, 1000));
19198                 verbose(env, "stack depth ");
19199                 for (i = 0; i < env->subprog_cnt; i++) {
19200                         u32 depth = env->subprog_info[i].stack_depth;
19201
19202                         verbose(env, "%d", depth);
19203                         if (i + 1 < env->subprog_cnt)
19204                                 verbose(env, "+");
19205                 }
19206                 verbose(env, "\n");
19207         }
19208         verbose(env, "processed %d insns (limit %d) max_states_per_insn %d "
19209                 "total_states %d peak_states %d mark_read %d\n",
19210                 env->insn_processed, BPF_COMPLEXITY_LIMIT_INSNS,
19211                 env->max_states_per_insn, env->total_states,
19212                 env->peak_states, env->longest_mark_read_walk);
19213 }
19214
19215 static int check_struct_ops_btf_id(struct bpf_verifier_env *env)
19216 {
19217         const struct btf_type *t, *func_proto;
19218         const struct bpf_struct_ops *st_ops;
19219         const struct btf_member *member;
19220         struct bpf_prog *prog = env->prog;
19221         u32 btf_id, member_idx;
19222         const char *mname;
19223
19224         if (!prog->gpl_compatible) {
19225                 verbose(env, "struct ops programs must have a GPL compatible license\n");
19226                 return -EINVAL;
19227         }
19228
19229         btf_id = prog->aux->attach_btf_id;
19230         st_ops = bpf_struct_ops_find(btf_id);
19231         if (!st_ops) {
19232                 verbose(env, "attach_btf_id %u is not a supported struct\n",
19233                         btf_id);
19234                 return -ENOTSUPP;
19235         }
19236
19237         t = st_ops->type;
19238         member_idx = prog->expected_attach_type;
19239         if (member_idx >= btf_type_vlen(t)) {
19240                 verbose(env, "attach to invalid member idx %u of struct %s\n",
19241                         member_idx, st_ops->name);
19242                 return -EINVAL;
19243         }
19244
19245         member = &btf_type_member(t)[member_idx];
19246         mname = btf_name_by_offset(btf_vmlinux, member->name_off);
19247         func_proto = btf_type_resolve_func_ptr(btf_vmlinux, member->type,
19248                                                NULL);
19249         if (!func_proto) {
19250                 verbose(env, "attach to invalid member %s(@idx %u) of struct %s\n",
19251                         mname, member_idx, st_ops->name);
19252                 return -EINVAL;
19253         }
19254
19255         if (st_ops->check_member) {
19256                 int err = st_ops->check_member(t, member, prog);
19257
19258                 if (err) {
19259                         verbose(env, "attach to unsupported member %s of struct %s\n",
19260                                 mname, st_ops->name);
19261                         return err;
19262                 }
19263         }
19264
19265         prog->aux->attach_func_proto = func_proto;
19266         prog->aux->attach_func_name = mname;
19267         env->ops = st_ops->verifier_ops;
19268
19269         return 0;
19270 }
19271 #define SECURITY_PREFIX "security_"
19272
19273 static int check_attach_modify_return(unsigned long addr, const char *func_name)
19274 {
19275         if (within_error_injection_list(addr) ||
19276             !strncmp(SECURITY_PREFIX, func_name, sizeof(SECURITY_PREFIX) - 1))
19277                 return 0;
19278
19279         return -EINVAL;
19280 }
19281
19282 /* list of non-sleepable functions that are otherwise on
19283  * ALLOW_ERROR_INJECTION list
19284  */
19285 BTF_SET_START(btf_non_sleepable_error_inject)
19286 /* Three functions below can be called from sleepable and non-sleepable context.
19287  * Assume non-sleepable from bpf safety point of view.
19288  */
19289 BTF_ID(func, __filemap_add_folio)
19290 BTF_ID(func, should_fail_alloc_page)
19291 BTF_ID(func, should_failslab)
19292 BTF_SET_END(btf_non_sleepable_error_inject)
19293
19294 static int check_non_sleepable_error_inject(u32 btf_id)
19295 {
19296         return btf_id_set_contains(&btf_non_sleepable_error_inject, btf_id);
19297 }
19298
19299 int bpf_check_attach_target(struct bpf_verifier_log *log,
19300                             const struct bpf_prog *prog,
19301                             const struct bpf_prog *tgt_prog,
19302                             u32 btf_id,
19303                             struct bpf_attach_target_info *tgt_info)
19304 {
19305         bool prog_extension = prog->type == BPF_PROG_TYPE_EXT;
19306         const char prefix[] = "btf_trace_";
19307         int ret = 0, subprog = -1, i;
19308         const struct btf_type *t;
19309         bool conservative = true;
19310         const char *tname;
19311         struct btf *btf;
19312         long addr = 0;
19313         struct module *mod = NULL;
19314
19315         if (!btf_id) {
19316                 bpf_log(log, "Tracing programs must provide btf_id\n");
19317                 return -EINVAL;
19318         }
19319         btf = tgt_prog ? tgt_prog->aux->btf : prog->aux->attach_btf;
19320         if (!btf) {
19321                 bpf_log(log,
19322                         "FENTRY/FEXIT program can only be attached to another program annotated with BTF\n");
19323                 return -EINVAL;
19324         }
19325         t = btf_type_by_id(btf, btf_id);
19326         if (!t) {
19327                 bpf_log(log, "attach_btf_id %u is invalid\n", btf_id);
19328                 return -EINVAL;
19329         }
19330         tname = btf_name_by_offset(btf, t->name_off);
19331         if (!tname) {
19332                 bpf_log(log, "attach_btf_id %u doesn't have a name\n", btf_id);
19333                 return -EINVAL;
19334         }
19335         if (tgt_prog) {
19336                 struct bpf_prog_aux *aux = tgt_prog->aux;
19337
19338                 if (bpf_prog_is_dev_bound(prog->aux) &&
19339                     !bpf_prog_dev_bound_match(prog, tgt_prog)) {
19340                         bpf_log(log, "Target program bound device mismatch");
19341                         return -EINVAL;
19342                 }
19343
19344                 for (i = 0; i < aux->func_info_cnt; i++)
19345                         if (aux->func_info[i].type_id == btf_id) {
19346                                 subprog = i;
19347                                 break;
19348                         }
19349                 if (subprog == -1) {
19350                         bpf_log(log, "Subprog %s doesn't exist\n", tname);
19351                         return -EINVAL;
19352                 }
19353                 conservative = aux->func_info_aux[subprog].unreliable;
19354                 if (prog_extension) {
19355                         if (conservative) {
19356                                 bpf_log(log,
19357                                         "Cannot replace static functions\n");
19358                                 return -EINVAL;
19359                         }
19360                         if (!prog->jit_requested) {
19361                                 bpf_log(log,
19362                                         "Extension programs should be JITed\n");
19363                                 return -EINVAL;
19364                         }
19365                 }
19366                 if (!tgt_prog->jited) {
19367                         bpf_log(log, "Can attach to only JITed progs\n");
19368                         return -EINVAL;
19369                 }
19370                 if (tgt_prog->type == prog->type) {
19371                         /* Cannot fentry/fexit another fentry/fexit program.
19372                          * Cannot attach program extension to another extension.
19373                          * It's ok to attach fentry/fexit to extension program.
19374                          */
19375                         bpf_log(log, "Cannot recursively attach\n");
19376                         return -EINVAL;
19377                 }
19378                 if (tgt_prog->type == BPF_PROG_TYPE_TRACING &&
19379                     prog_extension &&
19380                     (tgt_prog->expected_attach_type == BPF_TRACE_FENTRY ||
19381                      tgt_prog->expected_attach_type == BPF_TRACE_FEXIT)) {
19382                         /* Program extensions can extend all program types
19383                          * except fentry/fexit. The reason is the following.
19384                          * The fentry/fexit programs are used for performance
19385                          * analysis, stats and can be attached to any program
19386                          * type except themselves. When extension program is
19387                          * replacing XDP function it is necessary to allow
19388                          * performance analysis of all functions. Both original
19389                          * XDP program and its program extension. Hence
19390                          * attaching fentry/fexit to BPF_PROG_TYPE_EXT is
19391                          * allowed. If extending of fentry/fexit was allowed it
19392                          * would be possible to create long call chain
19393                          * fentry->extension->fentry->extension beyond
19394                          * reasonable stack size. Hence extending fentry is not
19395                          * allowed.
19396                          */
19397                         bpf_log(log, "Cannot extend fentry/fexit\n");
19398                         return -EINVAL;
19399                 }
19400         } else {
19401                 if (prog_extension) {
19402                         bpf_log(log, "Cannot replace kernel functions\n");
19403                         return -EINVAL;
19404                 }
19405         }
19406
19407         switch (prog->expected_attach_type) {
19408         case BPF_TRACE_RAW_TP:
19409                 if (tgt_prog) {
19410                         bpf_log(log,
19411                                 "Only FENTRY/FEXIT progs are attachable to another BPF prog\n");
19412                         return -EINVAL;
19413                 }
19414                 if (!btf_type_is_typedef(t)) {
19415                         bpf_log(log, "attach_btf_id %u is not a typedef\n",
19416                                 btf_id);
19417                         return -EINVAL;
19418                 }
19419                 if (strncmp(prefix, tname, sizeof(prefix) - 1)) {
19420                         bpf_log(log, "attach_btf_id %u points to wrong type name %s\n",
19421                                 btf_id, tname);
19422                         return -EINVAL;
19423                 }
19424                 tname += sizeof(prefix) - 1;
19425                 t = btf_type_by_id(btf, t->type);
19426                 if (!btf_type_is_ptr(t))
19427                         /* should never happen in valid vmlinux build */
19428                         return -EINVAL;
19429                 t = btf_type_by_id(btf, t->type);
19430                 if (!btf_type_is_func_proto(t))
19431                         /* should never happen in valid vmlinux build */
19432                         return -EINVAL;
19433
19434                 break;
19435         case BPF_TRACE_ITER:
19436                 if (!btf_type_is_func(t)) {
19437                         bpf_log(log, "attach_btf_id %u is not a function\n",
19438                                 btf_id);
19439                         return -EINVAL;
19440                 }
19441                 t = btf_type_by_id(btf, t->type);
19442                 if (!btf_type_is_func_proto(t))
19443                         return -EINVAL;
19444                 ret = btf_distill_func_proto(log, btf, t, tname, &tgt_info->fmodel);
19445                 if (ret)
19446                         return ret;
19447                 break;
19448         default:
19449                 if (!prog_extension)
19450                         return -EINVAL;
19451                 fallthrough;
19452         case BPF_MODIFY_RETURN:
19453         case BPF_LSM_MAC:
19454         case BPF_LSM_CGROUP:
19455         case BPF_TRACE_FENTRY:
19456         case BPF_TRACE_FEXIT:
19457                 if (!btf_type_is_func(t)) {
19458                         bpf_log(log, "attach_btf_id %u is not a function\n",
19459                                 btf_id);
19460                         return -EINVAL;
19461                 }
19462                 if (prog_extension &&
19463                     btf_check_type_match(log, prog, btf, t))
19464                         return -EINVAL;
19465                 t = btf_type_by_id(btf, t->type);
19466                 if (!btf_type_is_func_proto(t))
19467                         return -EINVAL;
19468
19469                 if ((prog->aux->saved_dst_prog_type || prog->aux->saved_dst_attach_type) &&
19470                     (!tgt_prog || prog->aux->saved_dst_prog_type != tgt_prog->type ||
19471                      prog->aux->saved_dst_attach_type != tgt_prog->expected_attach_type))
19472                         return -EINVAL;
19473
19474                 if (tgt_prog && conservative)
19475                         t = NULL;
19476
19477                 ret = btf_distill_func_proto(log, btf, t, tname, &tgt_info->fmodel);
19478                 if (ret < 0)
19479                         return ret;
19480
19481                 if (tgt_prog) {
19482                         if (subprog == 0)
19483                                 addr = (long) tgt_prog->bpf_func;
19484                         else
19485                                 addr = (long) tgt_prog->aux->func[subprog]->bpf_func;
19486                 } else {
19487                         if (btf_is_module(btf)) {
19488                                 mod = btf_try_get_module(btf);
19489                                 if (mod)
19490                                         addr = find_kallsyms_symbol_value(mod, tname);
19491                                 else
19492                                         addr = 0;
19493                         } else {
19494                                 addr = kallsyms_lookup_name(tname);
19495                         }
19496                         if (!addr) {
19497                                 module_put(mod);
19498                                 bpf_log(log,
19499                                         "The address of function %s cannot be found\n",
19500                                         tname);
19501                                 return -ENOENT;
19502                         }
19503                 }
19504
19505                 if (prog->aux->sleepable) {
19506                         ret = -EINVAL;
19507                         switch (prog->type) {
19508                         case BPF_PROG_TYPE_TRACING:
19509
19510                                 /* fentry/fexit/fmod_ret progs can be sleepable if they are
19511                                  * attached to ALLOW_ERROR_INJECTION and are not in denylist.
19512                                  */
19513                                 if (!check_non_sleepable_error_inject(btf_id) &&
19514                                     within_error_injection_list(addr))
19515                                         ret = 0;
19516                                 /* fentry/fexit/fmod_ret progs can also be sleepable if they are
19517                                  * in the fmodret id set with the KF_SLEEPABLE flag.
19518                                  */
19519                                 else {
19520                                         u32 *flags = btf_kfunc_is_modify_return(btf, btf_id,
19521                                                                                 prog);
19522
19523                                         if (flags && (*flags & KF_SLEEPABLE))
19524                                                 ret = 0;
19525                                 }
19526                                 break;
19527                         case BPF_PROG_TYPE_LSM:
19528                                 /* LSM progs check that they are attached to bpf_lsm_*() funcs.
19529                                  * Only some of them are sleepable.
19530                                  */
19531                                 if (bpf_lsm_is_sleepable_hook(btf_id))
19532                                         ret = 0;
19533                                 break;
19534                         default:
19535                                 break;
19536                         }
19537                         if (ret) {
19538                                 module_put(mod);
19539                                 bpf_log(log, "%s is not sleepable\n", tname);
19540                                 return ret;
19541                         }
19542                 } else if (prog->expected_attach_type == BPF_MODIFY_RETURN) {
19543                         if (tgt_prog) {
19544                                 module_put(mod);
19545                                 bpf_log(log, "can't modify return codes of BPF programs\n");
19546                                 return -EINVAL;
19547                         }
19548                         ret = -EINVAL;
19549                         if (btf_kfunc_is_modify_return(btf, btf_id, prog) ||
19550                             !check_attach_modify_return(addr, tname))
19551                                 ret = 0;
19552                         if (ret) {
19553                                 module_put(mod);
19554                                 bpf_log(log, "%s() is not modifiable\n", tname);
19555                                 return ret;
19556                         }
19557                 }
19558
19559                 break;
19560         }
19561         tgt_info->tgt_addr = addr;
19562         tgt_info->tgt_name = tname;
19563         tgt_info->tgt_type = t;
19564         tgt_info->tgt_mod = mod;
19565         return 0;
19566 }
19567
19568 BTF_SET_START(btf_id_deny)
19569 BTF_ID_UNUSED
19570 #ifdef CONFIG_SMP
19571 BTF_ID(func, migrate_disable)
19572 BTF_ID(func, migrate_enable)
19573 #endif
19574 #if !defined CONFIG_PREEMPT_RCU && !defined CONFIG_TINY_RCU
19575 BTF_ID(func, rcu_read_unlock_strict)
19576 #endif
19577 #if defined(CONFIG_DEBUG_PREEMPT) || defined(CONFIG_TRACE_PREEMPT_TOGGLE)
19578 BTF_ID(func, preempt_count_add)
19579 BTF_ID(func, preempt_count_sub)
19580 #endif
19581 #ifdef CONFIG_PREEMPT_RCU
19582 BTF_ID(func, __rcu_read_lock)
19583 BTF_ID(func, __rcu_read_unlock)
19584 #endif
19585 BTF_SET_END(btf_id_deny)
19586
19587 static bool can_be_sleepable(struct bpf_prog *prog)
19588 {
19589         if (prog->type == BPF_PROG_TYPE_TRACING) {
19590                 switch (prog->expected_attach_type) {
19591                 case BPF_TRACE_FENTRY:
19592                 case BPF_TRACE_FEXIT:
19593                 case BPF_MODIFY_RETURN:
19594                 case BPF_TRACE_ITER:
19595                         return true;
19596                 default:
19597                         return false;
19598                 }
19599         }
19600         return prog->type == BPF_PROG_TYPE_LSM ||
19601                prog->type == BPF_PROG_TYPE_KPROBE /* only for uprobes */ ||
19602                prog->type == BPF_PROG_TYPE_STRUCT_OPS;
19603 }
19604
19605 static int check_attach_btf_id(struct bpf_verifier_env *env)
19606 {
19607         struct bpf_prog *prog = env->prog;
19608         struct bpf_prog *tgt_prog = prog->aux->dst_prog;
19609         struct bpf_attach_target_info tgt_info = {};
19610         u32 btf_id = prog->aux->attach_btf_id;
19611         struct bpf_trampoline *tr;
19612         int ret;
19613         u64 key;
19614
19615         if (prog->type == BPF_PROG_TYPE_SYSCALL) {
19616                 if (prog->aux->sleepable)
19617                         /* attach_btf_id checked to be zero already */
19618                         return 0;
19619                 verbose(env, "Syscall programs can only be sleepable\n");
19620                 return -EINVAL;
19621         }
19622
19623         if (prog->aux->sleepable && !can_be_sleepable(prog)) {
19624                 verbose(env, "Only fentry/fexit/fmod_ret, lsm, iter, uprobe, and struct_ops programs can be sleepable\n");
19625                 return -EINVAL;
19626         }
19627
19628         if (prog->type == BPF_PROG_TYPE_STRUCT_OPS)
19629                 return check_struct_ops_btf_id(env);
19630
19631         if (prog->type != BPF_PROG_TYPE_TRACING &&
19632             prog->type != BPF_PROG_TYPE_LSM &&
19633             prog->type != BPF_PROG_TYPE_EXT)
19634                 return 0;
19635
19636         ret = bpf_check_attach_target(&env->log, prog, tgt_prog, btf_id, &tgt_info);
19637         if (ret)
19638                 return ret;
19639
19640         if (tgt_prog && prog->type == BPF_PROG_TYPE_EXT) {
19641                 /* to make freplace equivalent to their targets, they need to
19642                  * inherit env->ops and expected_attach_type for the rest of the
19643                  * verification
19644                  */
19645                 env->ops = bpf_verifier_ops[tgt_prog->type];
19646                 prog->expected_attach_type = tgt_prog->expected_attach_type;
19647         }
19648
19649         /* store info about the attachment target that will be used later */
19650         prog->aux->attach_func_proto = tgt_info.tgt_type;
19651         prog->aux->attach_func_name = tgt_info.tgt_name;
19652         prog->aux->mod = tgt_info.tgt_mod;
19653
19654         if (tgt_prog) {
19655                 prog->aux->saved_dst_prog_type = tgt_prog->type;
19656                 prog->aux->saved_dst_attach_type = tgt_prog->expected_attach_type;
19657         }
19658
19659         if (prog->expected_attach_type == BPF_TRACE_RAW_TP) {
19660                 prog->aux->attach_btf_trace = true;
19661                 return 0;
19662         } else if (prog->expected_attach_type == BPF_TRACE_ITER) {
19663                 if (!bpf_iter_prog_supported(prog))
19664                         return -EINVAL;
19665                 return 0;
19666         }
19667
19668         if (prog->type == BPF_PROG_TYPE_LSM) {
19669                 ret = bpf_lsm_verify_prog(&env->log, prog);
19670                 if (ret < 0)
19671                         return ret;
19672         } else if (prog->type == BPF_PROG_TYPE_TRACING &&
19673                    btf_id_set_contains(&btf_id_deny, btf_id)) {
19674                 return -EINVAL;
19675         }
19676
19677         key = bpf_trampoline_compute_key(tgt_prog, prog->aux->attach_btf, btf_id);
19678         tr = bpf_trampoline_get(key, &tgt_info);
19679         if (!tr)
19680                 return -ENOMEM;
19681
19682         if (tgt_prog && tgt_prog->aux->tail_call_reachable)
19683                 tr->flags = BPF_TRAMP_F_TAIL_CALL_CTX;
19684
19685         prog->aux->dst_trampoline = tr;
19686         return 0;
19687 }
19688
19689 struct btf *bpf_get_btf_vmlinux(void)
19690 {
19691         if (!btf_vmlinux && IS_ENABLED(CONFIG_DEBUG_INFO_BTF)) {
19692                 mutex_lock(&bpf_verifier_lock);
19693                 if (!btf_vmlinux)
19694                         btf_vmlinux = btf_parse_vmlinux();
19695                 mutex_unlock(&bpf_verifier_lock);
19696         }
19697         return btf_vmlinux;
19698 }
19699
19700 int bpf_check(struct bpf_prog **prog, union bpf_attr *attr, bpfptr_t uattr, __u32 uattr_size)
19701 {
19702         u64 start_time = ktime_get_ns();
19703         struct bpf_verifier_env *env;
19704         int i, len, ret = -EINVAL, err;
19705         u32 log_true_size;
19706         bool is_priv;
19707
19708         /* no program is valid */
19709         if (ARRAY_SIZE(bpf_verifier_ops) == 0)
19710                 return -EINVAL;
19711
19712         /* 'struct bpf_verifier_env' can be global, but since it's not small,
19713          * allocate/free it every time bpf_check() is called
19714          */
19715         env = kzalloc(sizeof(struct bpf_verifier_env), GFP_KERNEL);
19716         if (!env)
19717                 return -ENOMEM;
19718
19719         env->bt.env = env;
19720
19721         len = (*prog)->len;
19722         env->insn_aux_data =
19723                 vzalloc(array_size(sizeof(struct bpf_insn_aux_data), len));
19724         ret = -ENOMEM;
19725         if (!env->insn_aux_data)
19726                 goto err_free_env;
19727         for (i = 0; i < len; i++)
19728                 env->insn_aux_data[i].orig_idx = i;
19729         env->prog = *prog;
19730         env->ops = bpf_verifier_ops[env->prog->type];
19731         env->fd_array = make_bpfptr(attr->fd_array, uattr.is_kernel);
19732         is_priv = bpf_capable();
19733
19734         bpf_get_btf_vmlinux();
19735
19736         /* grab the mutex to protect few globals used by verifier */
19737         if (!is_priv)
19738                 mutex_lock(&bpf_verifier_lock);
19739
19740         /* user could have requested verbose verifier output
19741          * and supplied buffer to store the verification trace
19742          */
19743         ret = bpf_vlog_init(&env->log, attr->log_level,
19744                             (char __user *) (unsigned long) attr->log_buf,
19745                             attr->log_size);
19746         if (ret)
19747                 goto err_unlock;
19748
19749         mark_verifier_state_clean(env);
19750
19751         if (IS_ERR(btf_vmlinux)) {
19752                 /* Either gcc or pahole or kernel are broken. */
19753                 verbose(env, "in-kernel BTF is malformed\n");
19754                 ret = PTR_ERR(btf_vmlinux);
19755                 goto skip_full_check;
19756         }
19757
19758         env->strict_alignment = !!(attr->prog_flags & BPF_F_STRICT_ALIGNMENT);
19759         if (!IS_ENABLED(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS))
19760                 env->strict_alignment = true;
19761         if (attr->prog_flags & BPF_F_ANY_ALIGNMENT)
19762                 env->strict_alignment = false;
19763
19764         env->allow_ptr_leaks = bpf_allow_ptr_leaks();
19765         env->allow_uninit_stack = bpf_allow_uninit_stack();
19766         env->bypass_spec_v1 = bpf_bypass_spec_v1();
19767         env->bypass_spec_v4 = bpf_bypass_spec_v4();
19768         env->bpf_capable = bpf_capable();
19769
19770         if (is_priv)
19771                 env->test_state_freq = attr->prog_flags & BPF_F_TEST_STATE_FREQ;
19772
19773         env->explored_states = kvcalloc(state_htab_size(env),
19774                                        sizeof(struct bpf_verifier_state_list *),
19775                                        GFP_USER);
19776         ret = -ENOMEM;
19777         if (!env->explored_states)
19778                 goto skip_full_check;
19779
19780         ret = add_subprog_and_kfunc(env);
19781         if (ret < 0)
19782                 goto skip_full_check;
19783
19784         ret = check_subprogs(env);
19785         if (ret < 0)
19786                 goto skip_full_check;
19787
19788         ret = check_btf_info(env, attr, uattr);
19789         if (ret < 0)
19790                 goto skip_full_check;
19791
19792         ret = check_attach_btf_id(env);
19793         if (ret)
19794                 goto skip_full_check;
19795
19796         ret = resolve_pseudo_ldimm64(env);
19797         if (ret < 0)
19798                 goto skip_full_check;
19799
19800         if (bpf_prog_is_offloaded(env->prog->aux)) {
19801                 ret = bpf_prog_offload_verifier_prep(env->prog);
19802                 if (ret)
19803                         goto skip_full_check;
19804         }
19805
19806         ret = check_cfg(env);
19807         if (ret < 0)
19808                 goto skip_full_check;
19809
19810         ret = do_check_subprogs(env);
19811         ret = ret ?: do_check_main(env);
19812
19813         if (ret == 0 && bpf_prog_is_offloaded(env->prog->aux))
19814                 ret = bpf_prog_offload_finalize(env);
19815
19816 skip_full_check:
19817         kvfree(env->explored_states);
19818
19819         if (ret == 0)
19820                 ret = check_max_stack_depth(env);
19821
19822         /* instruction rewrites happen after this point */
19823         if (ret == 0)
19824                 ret = optimize_bpf_loop(env);
19825
19826         if (is_priv) {
19827                 if (ret == 0)
19828                         opt_hard_wire_dead_code_branches(env);
19829                 if (ret == 0)
19830                         ret = opt_remove_dead_code(env);
19831                 if (ret == 0)
19832                         ret = opt_remove_nops(env);
19833         } else {
19834                 if (ret == 0)
19835                         sanitize_dead_code(env);
19836         }
19837
19838         if (ret == 0)
19839                 /* program is valid, convert *(u32*)(ctx + off) accesses */
19840                 ret = convert_ctx_accesses(env);
19841
19842         if (ret == 0)
19843                 ret = do_misc_fixups(env);
19844
19845         /* do 32-bit optimization after insn patching has done so those patched
19846          * insns could be handled correctly.
19847          */
19848         if (ret == 0 && !bpf_prog_is_offloaded(env->prog->aux)) {
19849                 ret = opt_subreg_zext_lo32_rnd_hi32(env, attr);
19850                 env->prog->aux->verifier_zext = bpf_jit_needs_zext() ? !ret
19851                                                                      : false;
19852         }
19853
19854         if (ret == 0)
19855                 ret = fixup_call_args(env);
19856
19857         env->verification_time = ktime_get_ns() - start_time;
19858         print_verification_stats(env);
19859         env->prog->aux->verified_insns = env->insn_processed;
19860
19861         /* preserve original error even if log finalization is successful */
19862         err = bpf_vlog_finalize(&env->log, &log_true_size);
19863         if (err)
19864                 ret = err;
19865
19866         if (uattr_size >= offsetofend(union bpf_attr, log_true_size) &&
19867             copy_to_bpfptr_offset(uattr, offsetof(union bpf_attr, log_true_size),
19868                                   &log_true_size, sizeof(log_true_size))) {
19869                 ret = -EFAULT;
19870                 goto err_release_maps;
19871         }
19872
19873         if (ret)
19874                 goto err_release_maps;
19875
19876         if (env->used_map_cnt) {
19877                 /* if program passed verifier, update used_maps in bpf_prog_info */
19878                 env->prog->aux->used_maps = kmalloc_array(env->used_map_cnt,
19879                                                           sizeof(env->used_maps[0]),
19880                                                           GFP_KERNEL);
19881
19882                 if (!env->prog->aux->used_maps) {
19883                         ret = -ENOMEM;
19884                         goto err_release_maps;
19885                 }
19886
19887                 memcpy(env->prog->aux->used_maps, env->used_maps,
19888                        sizeof(env->used_maps[0]) * env->used_map_cnt);
19889                 env->prog->aux->used_map_cnt = env->used_map_cnt;
19890         }
19891         if (env->used_btf_cnt) {
19892                 /* if program passed verifier, update used_btfs in bpf_prog_aux */
19893                 env->prog->aux->used_btfs = kmalloc_array(env->used_btf_cnt,
19894                                                           sizeof(env->used_btfs[0]),
19895                                                           GFP_KERNEL);
19896                 if (!env->prog->aux->used_btfs) {
19897                         ret = -ENOMEM;
19898                         goto err_release_maps;
19899                 }
19900
19901                 memcpy(env->prog->aux->used_btfs, env->used_btfs,
19902                        sizeof(env->used_btfs[0]) * env->used_btf_cnt);
19903                 env->prog->aux->used_btf_cnt = env->used_btf_cnt;
19904         }
19905         if (env->used_map_cnt || env->used_btf_cnt) {
19906                 /* program is valid. Convert pseudo bpf_ld_imm64 into generic
19907                  * bpf_ld_imm64 instructions
19908                  */
19909                 convert_pseudo_ld_imm64(env);
19910         }
19911
19912         adjust_btf_func(env);
19913
19914 err_release_maps:
19915         if (!env->prog->aux->used_maps)
19916                 /* if we didn't copy map pointers into bpf_prog_info, release
19917                  * them now. Otherwise free_used_maps() will release them.
19918                  */
19919                 release_maps(env);
19920         if (!env->prog->aux->used_btfs)
19921                 release_btfs(env);
19922
19923         /* extension progs temporarily inherit the attach_type of their targets
19924            for verification purposes, so set it back to zero before returning
19925          */
19926         if (env->prog->type == BPF_PROG_TYPE_EXT)
19927                 env->prog->expected_attach_type = 0;
19928
19929         *prog = env->prog;
19930 err_unlock:
19931         if (!is_priv)
19932                 mutex_unlock(&bpf_verifier_lock);
19933         vfree(env->insn_aux_data);
19934 err_free_env:
19935         kfree(env);
19936         return ret;
19937 }