]> asedeno.scripts.mit.edu Git - linux.git/blob - kernel/bpf/verifier.c
6e3f859b3abfc87d006d843e5f1c5e633108150e
[linux.git] / kernel / bpf / verifier.c
1 /* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com
2  * Copyright (c) 2016 Facebook
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of version 2 of the GNU General Public
6  * License as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11  * General Public License for more details.
12  */
13 #include <linux/kernel.h>
14 #include <linux/types.h>
15 #include <linux/slab.h>
16 #include <linux/bpf.h>
17 #include <linux/bpf_verifier.h>
18 #include <linux/filter.h>
19 #include <net/netlink.h>
20 #include <linux/file.h>
21 #include <linux/vmalloc.h>
22 #include <linux/stringify.h>
23 #include <linux/bsearch.h>
24 #include <linux/sort.h>
25 #include <linux/perf_event.h>
26
27 #include "disasm.h"
28
29 static const struct bpf_verifier_ops * const bpf_verifier_ops[] = {
30 #define BPF_PROG_TYPE(_id, _name) \
31         [_id] = & _name ## _verifier_ops,
32 #define BPF_MAP_TYPE(_id, _ops)
33 #include <linux/bpf_types.h>
34 #undef BPF_PROG_TYPE
35 #undef BPF_MAP_TYPE
36 };
37
38 /* bpf_check() is a static code analyzer that walks eBPF program
39  * instruction by instruction and updates register/stack state.
40  * All paths of conditional branches are analyzed until 'bpf_exit' insn.
41  *
42  * The first pass is depth-first-search to check that the program is a DAG.
43  * It rejects the following programs:
44  * - larger than BPF_MAXINSNS insns
45  * - if loop is present (detected via back-edge)
46  * - unreachable insns exist (shouldn't be a forest. program = one function)
47  * - out of bounds or malformed jumps
48  * The second pass is all possible path descent from the 1st insn.
49  * Since it's analyzing all pathes through the program, the length of the
50  * analysis is limited to 64k insn, which may be hit even if total number of
51  * insn is less then 4K, but there are too many branches that change stack/regs.
52  * Number of 'branches to be analyzed' is limited to 1k
53  *
54  * On entry to each instruction, each register has a type, and the instruction
55  * changes the types of the registers depending on instruction semantics.
56  * If instruction is BPF_MOV64_REG(BPF_REG_1, BPF_REG_5), then type of R5 is
57  * copied to R1.
58  *
59  * All registers are 64-bit.
60  * R0 - return register
61  * R1-R5 argument passing registers
62  * R6-R9 callee saved registers
63  * R10 - frame pointer read-only
64  *
65  * At the start of BPF program the register R1 contains a pointer to bpf_context
66  * and has type PTR_TO_CTX.
67  *
68  * Verifier tracks arithmetic operations on pointers in case:
69  *    BPF_MOV64_REG(BPF_REG_1, BPF_REG_10),
70  *    BPF_ALU64_IMM(BPF_ADD, BPF_REG_1, -20),
71  * 1st insn copies R10 (which has FRAME_PTR) type into R1
72  * and 2nd arithmetic instruction is pattern matched to recognize
73  * that it wants to construct a pointer to some element within stack.
74  * So after 2nd insn, the register R1 has type PTR_TO_STACK
75  * (and -20 constant is saved for further stack bounds checking).
76  * Meaning that this reg is a pointer to stack plus known immediate constant.
77  *
78  * Most of the time the registers have SCALAR_VALUE type, which
79  * means the register has some value, but it's not a valid pointer.
80  * (like pointer plus pointer becomes SCALAR_VALUE type)
81  *
82  * When verifier sees load or store instructions the type of base register
83  * can be: PTR_TO_MAP_VALUE, PTR_TO_CTX, PTR_TO_STACK. These are three pointer
84  * types recognized by check_mem_access() function.
85  *
86  * PTR_TO_MAP_VALUE means that this register is pointing to 'map element value'
87  * and the range of [ptr, ptr + map's value_size) is accessible.
88  *
89  * registers used to pass values to function calls are checked against
90  * function argument constraints.
91  *
92  * ARG_PTR_TO_MAP_KEY is one of such argument constraints.
93  * It means that the register type passed to this function must be
94  * PTR_TO_STACK and it will be used inside the function as
95  * 'pointer to map element key'
96  *
97  * For example the argument constraints for bpf_map_lookup_elem():
98  *   .ret_type = RET_PTR_TO_MAP_VALUE_OR_NULL,
99  *   .arg1_type = ARG_CONST_MAP_PTR,
100  *   .arg2_type = ARG_PTR_TO_MAP_KEY,
101  *
102  * ret_type says that this function returns 'pointer to map elem value or null'
103  * function expects 1st argument to be a const pointer to 'struct bpf_map' and
104  * 2nd argument should be a pointer to stack, which will be used inside
105  * the helper function as a pointer to map element key.
106  *
107  * On the kernel side the helper function looks like:
108  * u64 bpf_map_lookup_elem(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5)
109  * {
110  *    struct bpf_map *map = (struct bpf_map *) (unsigned long) r1;
111  *    void *key = (void *) (unsigned long) r2;
112  *    void *value;
113  *
114  *    here kernel can access 'key' and 'map' pointers safely, knowing that
115  *    [key, key + map->key_size) bytes are valid and were initialized on
116  *    the stack of eBPF program.
117  * }
118  *
119  * Corresponding eBPF program may look like:
120  *    BPF_MOV64_REG(BPF_REG_2, BPF_REG_10),  // after this insn R2 type is FRAME_PTR
121  *    BPF_ALU64_IMM(BPF_ADD, BPF_REG_2, -4), // after this insn R2 type is PTR_TO_STACK
122  *    BPF_LD_MAP_FD(BPF_REG_1, map_fd),      // after this insn R1 type is CONST_PTR_TO_MAP
123  *    BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 0, 0, BPF_FUNC_map_lookup_elem),
124  * here verifier looks at prototype of map_lookup_elem() and sees:
125  * .arg1_type == ARG_CONST_MAP_PTR and R1->type == CONST_PTR_TO_MAP, which is ok,
126  * Now verifier knows that this map has key of R1->map_ptr->key_size bytes
127  *
128  * Then .arg2_type == ARG_PTR_TO_MAP_KEY and R2->type == PTR_TO_STACK, ok so far,
129  * Now verifier checks that [R2, R2 + map's key_size) are within stack limits
130  * and were initialized prior to this call.
131  * If it's ok, then verifier allows this BPF_CALL insn and looks at
132  * .ret_type which is RET_PTR_TO_MAP_VALUE_OR_NULL, so it sets
133  * R0->type = PTR_TO_MAP_VALUE_OR_NULL which means bpf_map_lookup_elem() function
134  * returns ether pointer to map value or NULL.
135  *
136  * When type PTR_TO_MAP_VALUE_OR_NULL passes through 'if (reg != 0) goto +off'
137  * insn, the register holding that pointer in the true branch changes state to
138  * PTR_TO_MAP_VALUE and the same register changes state to CONST_IMM in the false
139  * branch. See check_cond_jmp_op().
140  *
141  * After the call R0 is set to return type of the function and registers R1-R5
142  * are set to NOT_INIT to indicate that they are no longer readable.
143  */
144
145 /* verifier_state + insn_idx are pushed to stack when branch is encountered */
146 struct bpf_verifier_stack_elem {
147         /* verifer state is 'st'
148          * before processing instruction 'insn_idx'
149          * and after processing instruction 'prev_insn_idx'
150          */
151         struct bpf_verifier_state st;
152         int insn_idx;
153         int prev_insn_idx;
154         struct bpf_verifier_stack_elem *next;
155 };
156
157 #define BPF_COMPLEXITY_LIMIT_INSNS      131072
158 #define BPF_COMPLEXITY_LIMIT_STACK      1024
159
160 #define BPF_MAP_PTR_POISON ((void *)0xeB9F + POISON_POINTER_DELTA)
161
162 struct bpf_call_arg_meta {
163         struct bpf_map *map_ptr;
164         bool raw_mode;
165         bool pkt_access;
166         int regno;
167         int access_size;
168         s64 msize_smax_value;
169         u64 msize_umax_value;
170 };
171
172 static DEFINE_MUTEX(bpf_verifier_lock);
173
174 void bpf_verifier_vlog(struct bpf_verifier_log *log, const char *fmt,
175                        va_list args)
176 {
177         unsigned int n;
178
179         n = vscnprintf(log->kbuf, BPF_VERIFIER_TMP_LOG_SIZE, fmt, args);
180
181         WARN_ONCE(n >= BPF_VERIFIER_TMP_LOG_SIZE - 1,
182                   "verifier log line truncated - local buffer too short\n");
183
184         n = min(log->len_total - log->len_used - 1, n);
185         log->kbuf[n] = '\0';
186
187         if (!copy_to_user(log->ubuf + log->len_used, log->kbuf, n + 1))
188                 log->len_used += n;
189         else
190                 log->ubuf = NULL;
191 }
192
193 /* log_level controls verbosity level of eBPF verifier.
194  * bpf_verifier_log_write() is used to dump the verification trace to the log,
195  * so the user can figure out what's wrong with the program
196  */
197 __printf(2, 3) void bpf_verifier_log_write(struct bpf_verifier_env *env,
198                                            const char *fmt, ...)
199 {
200         va_list args;
201
202         if (!bpf_verifier_log_needed(&env->log))
203                 return;
204
205         va_start(args, fmt);
206         bpf_verifier_vlog(&env->log, fmt, args);
207         va_end(args);
208 }
209 EXPORT_SYMBOL_GPL(bpf_verifier_log_write);
210
211 __printf(2, 3) static void verbose(void *private_data, const char *fmt, ...)
212 {
213         struct bpf_verifier_env *env = private_data;
214         va_list args;
215
216         if (!bpf_verifier_log_needed(&env->log))
217                 return;
218
219         va_start(args, fmt);
220         bpf_verifier_vlog(&env->log, fmt, args);
221         va_end(args);
222 }
223
224 static bool type_is_pkt_pointer(enum bpf_reg_type type)
225 {
226         return type == PTR_TO_PACKET ||
227                type == PTR_TO_PACKET_META;
228 }
229
230 /* string representation of 'enum bpf_reg_type' */
231 static const char * const reg_type_str[] = {
232         [NOT_INIT]              = "?",
233         [SCALAR_VALUE]          = "inv",
234         [PTR_TO_CTX]            = "ctx",
235         [CONST_PTR_TO_MAP]      = "map_ptr",
236         [PTR_TO_MAP_VALUE]      = "map_value",
237         [PTR_TO_MAP_VALUE_OR_NULL] = "map_value_or_null",
238         [PTR_TO_STACK]          = "fp",
239         [PTR_TO_PACKET]         = "pkt",
240         [PTR_TO_PACKET_META]    = "pkt_meta",
241         [PTR_TO_PACKET_END]     = "pkt_end",
242 };
243
244 static void print_liveness(struct bpf_verifier_env *env,
245                            enum bpf_reg_liveness live)
246 {
247         if (live & (REG_LIVE_READ | REG_LIVE_WRITTEN))
248             verbose(env, "_");
249         if (live & REG_LIVE_READ)
250                 verbose(env, "r");
251         if (live & REG_LIVE_WRITTEN)
252                 verbose(env, "w");
253 }
254
255 static struct bpf_func_state *func(struct bpf_verifier_env *env,
256                                    const struct bpf_reg_state *reg)
257 {
258         struct bpf_verifier_state *cur = env->cur_state;
259
260         return cur->frame[reg->frameno];
261 }
262
263 static void print_verifier_state(struct bpf_verifier_env *env,
264                                  const struct bpf_func_state *state)
265 {
266         const struct bpf_reg_state *reg;
267         enum bpf_reg_type t;
268         int i;
269
270         if (state->frameno)
271                 verbose(env, " frame%d:", state->frameno);
272         for (i = 0; i < MAX_BPF_REG; i++) {
273                 reg = &state->regs[i];
274                 t = reg->type;
275                 if (t == NOT_INIT)
276                         continue;
277                 verbose(env, " R%d", i);
278                 print_liveness(env, reg->live);
279                 verbose(env, "=%s", reg_type_str[t]);
280                 if ((t == SCALAR_VALUE || t == PTR_TO_STACK) &&
281                     tnum_is_const(reg->var_off)) {
282                         /* reg->off should be 0 for SCALAR_VALUE */
283                         verbose(env, "%lld", reg->var_off.value + reg->off);
284                         if (t == PTR_TO_STACK)
285                                 verbose(env, ",call_%d", func(env, reg)->callsite);
286                 } else {
287                         verbose(env, "(id=%d", reg->id);
288                         if (t != SCALAR_VALUE)
289                                 verbose(env, ",off=%d", reg->off);
290                         if (type_is_pkt_pointer(t))
291                                 verbose(env, ",r=%d", reg->range);
292                         else if (t == CONST_PTR_TO_MAP ||
293                                  t == PTR_TO_MAP_VALUE ||
294                                  t == PTR_TO_MAP_VALUE_OR_NULL)
295                                 verbose(env, ",ks=%d,vs=%d",
296                                         reg->map_ptr->key_size,
297                                         reg->map_ptr->value_size);
298                         if (tnum_is_const(reg->var_off)) {
299                                 /* Typically an immediate SCALAR_VALUE, but
300                                  * could be a pointer whose offset is too big
301                                  * for reg->off
302                                  */
303                                 verbose(env, ",imm=%llx", reg->var_off.value);
304                         } else {
305                                 if (reg->smin_value != reg->umin_value &&
306                                     reg->smin_value != S64_MIN)
307                                         verbose(env, ",smin_value=%lld",
308                                                 (long long)reg->smin_value);
309                                 if (reg->smax_value != reg->umax_value &&
310                                     reg->smax_value != S64_MAX)
311                                         verbose(env, ",smax_value=%lld",
312                                                 (long long)reg->smax_value);
313                                 if (reg->umin_value != 0)
314                                         verbose(env, ",umin_value=%llu",
315                                                 (unsigned long long)reg->umin_value);
316                                 if (reg->umax_value != U64_MAX)
317                                         verbose(env, ",umax_value=%llu",
318                                                 (unsigned long long)reg->umax_value);
319                                 if (!tnum_is_unknown(reg->var_off)) {
320                                         char tn_buf[48];
321
322                                         tnum_strn(tn_buf, sizeof(tn_buf), reg->var_off);
323                                         verbose(env, ",var_off=%s", tn_buf);
324                                 }
325                         }
326                         verbose(env, ")");
327                 }
328         }
329         for (i = 0; i < state->allocated_stack / BPF_REG_SIZE; i++) {
330                 if (state->stack[i].slot_type[0] == STACK_SPILL) {
331                         verbose(env, " fp%d",
332                                 (-i - 1) * BPF_REG_SIZE);
333                         print_liveness(env, state->stack[i].spilled_ptr.live);
334                         verbose(env, "=%s",
335                                 reg_type_str[state->stack[i].spilled_ptr.type]);
336                 }
337                 if (state->stack[i].slot_type[0] == STACK_ZERO)
338                         verbose(env, " fp%d=0", (-i - 1) * BPF_REG_SIZE);
339         }
340         verbose(env, "\n");
341 }
342
343 static int copy_stack_state(struct bpf_func_state *dst,
344                             const struct bpf_func_state *src)
345 {
346         if (!src->stack)
347                 return 0;
348         if (WARN_ON_ONCE(dst->allocated_stack < src->allocated_stack)) {
349                 /* internal bug, make state invalid to reject the program */
350                 memset(dst, 0, sizeof(*dst));
351                 return -EFAULT;
352         }
353         memcpy(dst->stack, src->stack,
354                sizeof(*src->stack) * (src->allocated_stack / BPF_REG_SIZE));
355         return 0;
356 }
357
358 /* do_check() starts with zero-sized stack in struct bpf_verifier_state to
359  * make it consume minimal amount of memory. check_stack_write() access from
360  * the program calls into realloc_func_state() to grow the stack size.
361  * Note there is a non-zero 'parent' pointer inside bpf_verifier_state
362  * which this function copies over. It points to previous bpf_verifier_state
363  * which is never reallocated
364  */
365 static int realloc_func_state(struct bpf_func_state *state, int size,
366                               bool copy_old)
367 {
368         u32 old_size = state->allocated_stack;
369         struct bpf_stack_state *new_stack;
370         int slot = size / BPF_REG_SIZE;
371
372         if (size <= old_size || !size) {
373                 if (copy_old)
374                         return 0;
375                 state->allocated_stack = slot * BPF_REG_SIZE;
376                 if (!size && old_size) {
377                         kfree(state->stack);
378                         state->stack = NULL;
379                 }
380                 return 0;
381         }
382         new_stack = kmalloc_array(slot, sizeof(struct bpf_stack_state),
383                                   GFP_KERNEL);
384         if (!new_stack)
385                 return -ENOMEM;
386         if (copy_old) {
387                 if (state->stack)
388                         memcpy(new_stack, state->stack,
389                                sizeof(*new_stack) * (old_size / BPF_REG_SIZE));
390                 memset(new_stack + old_size / BPF_REG_SIZE, 0,
391                        sizeof(*new_stack) * (size - old_size) / BPF_REG_SIZE);
392         }
393         state->allocated_stack = slot * BPF_REG_SIZE;
394         kfree(state->stack);
395         state->stack = new_stack;
396         return 0;
397 }
398
399 static void free_func_state(struct bpf_func_state *state)
400 {
401         if (!state)
402                 return;
403         kfree(state->stack);
404         kfree(state);
405 }
406
407 static void free_verifier_state(struct bpf_verifier_state *state,
408                                 bool free_self)
409 {
410         int i;
411
412         for (i = 0; i <= state->curframe; i++) {
413                 free_func_state(state->frame[i]);
414                 state->frame[i] = NULL;
415         }
416         if (free_self)
417                 kfree(state);
418 }
419
420 /* copy verifier state from src to dst growing dst stack space
421  * when necessary to accommodate larger src stack
422  */
423 static int copy_func_state(struct bpf_func_state *dst,
424                            const struct bpf_func_state *src)
425 {
426         int err;
427
428         err = realloc_func_state(dst, src->allocated_stack, false);
429         if (err)
430                 return err;
431         memcpy(dst, src, offsetof(struct bpf_func_state, allocated_stack));
432         return copy_stack_state(dst, src);
433 }
434
435 static int copy_verifier_state(struct bpf_verifier_state *dst_state,
436                                const struct bpf_verifier_state *src)
437 {
438         struct bpf_func_state *dst;
439         int i, err;
440
441         /* if dst has more stack frames then src frame, free them */
442         for (i = src->curframe + 1; i <= dst_state->curframe; i++) {
443                 free_func_state(dst_state->frame[i]);
444                 dst_state->frame[i] = NULL;
445         }
446         dst_state->curframe = src->curframe;
447         dst_state->parent = src->parent;
448         for (i = 0; i <= src->curframe; i++) {
449                 dst = dst_state->frame[i];
450                 if (!dst) {
451                         dst = kzalloc(sizeof(*dst), GFP_KERNEL);
452                         if (!dst)
453                                 return -ENOMEM;
454                         dst_state->frame[i] = dst;
455                 }
456                 err = copy_func_state(dst, src->frame[i]);
457                 if (err)
458                         return err;
459         }
460         return 0;
461 }
462
463 static int pop_stack(struct bpf_verifier_env *env, int *prev_insn_idx,
464                      int *insn_idx)
465 {
466         struct bpf_verifier_state *cur = env->cur_state;
467         struct bpf_verifier_stack_elem *elem, *head = env->head;
468         int err;
469
470         if (env->head == NULL)
471                 return -ENOENT;
472
473         if (cur) {
474                 err = copy_verifier_state(cur, &head->st);
475                 if (err)
476                         return err;
477         }
478         if (insn_idx)
479                 *insn_idx = head->insn_idx;
480         if (prev_insn_idx)
481                 *prev_insn_idx = head->prev_insn_idx;
482         elem = head->next;
483         free_verifier_state(&head->st, false);
484         kfree(head);
485         env->head = elem;
486         env->stack_size--;
487         return 0;
488 }
489
490 static struct bpf_verifier_state *push_stack(struct bpf_verifier_env *env,
491                                              int insn_idx, int prev_insn_idx)
492 {
493         struct bpf_verifier_state *cur = env->cur_state;
494         struct bpf_verifier_stack_elem *elem;
495         int err;
496
497         elem = kzalloc(sizeof(struct bpf_verifier_stack_elem), GFP_KERNEL);
498         if (!elem)
499                 goto err;
500
501         elem->insn_idx = insn_idx;
502         elem->prev_insn_idx = prev_insn_idx;
503         elem->next = env->head;
504         env->head = elem;
505         env->stack_size++;
506         err = copy_verifier_state(&elem->st, cur);
507         if (err)
508                 goto err;
509         if (env->stack_size > BPF_COMPLEXITY_LIMIT_STACK) {
510                 verbose(env, "BPF program is too complex\n");
511                 goto err;
512         }
513         return &elem->st;
514 err:
515         free_verifier_state(env->cur_state, true);
516         env->cur_state = NULL;
517         /* pop all elements and return */
518         while (!pop_stack(env, NULL, NULL));
519         return NULL;
520 }
521
522 #define CALLER_SAVED_REGS 6
523 static const int caller_saved[CALLER_SAVED_REGS] = {
524         BPF_REG_0, BPF_REG_1, BPF_REG_2, BPF_REG_3, BPF_REG_4, BPF_REG_5
525 };
526
527 static void __mark_reg_not_init(struct bpf_reg_state *reg);
528
529 /* Mark the unknown part of a register (variable offset or scalar value) as
530  * known to have the value @imm.
531  */
532 static void __mark_reg_known(struct bpf_reg_state *reg, u64 imm)
533 {
534         reg->id = 0;
535         reg->var_off = tnum_const(imm);
536         reg->smin_value = (s64)imm;
537         reg->smax_value = (s64)imm;
538         reg->umin_value = imm;
539         reg->umax_value = imm;
540 }
541
542 /* Mark the 'variable offset' part of a register as zero.  This should be
543  * used only on registers holding a pointer type.
544  */
545 static void __mark_reg_known_zero(struct bpf_reg_state *reg)
546 {
547         __mark_reg_known(reg, 0);
548 }
549
550 static void __mark_reg_const_zero(struct bpf_reg_state *reg)
551 {
552         __mark_reg_known(reg, 0);
553         reg->off = 0;
554         reg->type = SCALAR_VALUE;
555 }
556
557 static void mark_reg_known_zero(struct bpf_verifier_env *env,
558                                 struct bpf_reg_state *regs, u32 regno)
559 {
560         if (WARN_ON(regno >= MAX_BPF_REG)) {
561                 verbose(env, "mark_reg_known_zero(regs, %u)\n", regno);
562                 /* Something bad happened, let's kill all regs */
563                 for (regno = 0; regno < MAX_BPF_REG; regno++)
564                         __mark_reg_not_init(regs + regno);
565                 return;
566         }
567         __mark_reg_known_zero(regs + regno);
568 }
569
570 static bool reg_is_pkt_pointer(const struct bpf_reg_state *reg)
571 {
572         return type_is_pkt_pointer(reg->type);
573 }
574
575 static bool reg_is_pkt_pointer_any(const struct bpf_reg_state *reg)
576 {
577         return reg_is_pkt_pointer(reg) ||
578                reg->type == PTR_TO_PACKET_END;
579 }
580
581 /* Unmodified PTR_TO_PACKET[_META,_END] register from ctx access. */
582 static bool reg_is_init_pkt_pointer(const struct bpf_reg_state *reg,
583                                     enum bpf_reg_type which)
584 {
585         /* The register can already have a range from prior markings.
586          * This is fine as long as it hasn't been advanced from its
587          * origin.
588          */
589         return reg->type == which &&
590                reg->id == 0 &&
591                reg->off == 0 &&
592                tnum_equals_const(reg->var_off, 0);
593 }
594
595 /* Attempts to improve min/max values based on var_off information */
596 static void __update_reg_bounds(struct bpf_reg_state *reg)
597 {
598         /* min signed is max(sign bit) | min(other bits) */
599         reg->smin_value = max_t(s64, reg->smin_value,
600                                 reg->var_off.value | (reg->var_off.mask & S64_MIN));
601         /* max signed is min(sign bit) | max(other bits) */
602         reg->smax_value = min_t(s64, reg->smax_value,
603                                 reg->var_off.value | (reg->var_off.mask & S64_MAX));
604         reg->umin_value = max(reg->umin_value, reg->var_off.value);
605         reg->umax_value = min(reg->umax_value,
606                               reg->var_off.value | reg->var_off.mask);
607 }
608
609 /* Uses signed min/max values to inform unsigned, and vice-versa */
610 static void __reg_deduce_bounds(struct bpf_reg_state *reg)
611 {
612         /* Learn sign from signed bounds.
613          * If we cannot cross the sign boundary, then signed and unsigned bounds
614          * are the same, so combine.  This works even in the negative case, e.g.
615          * -3 s<= x s<= -1 implies 0xf...fd u<= x u<= 0xf...ff.
616          */
617         if (reg->smin_value >= 0 || reg->smax_value < 0) {
618                 reg->smin_value = reg->umin_value = max_t(u64, reg->smin_value,
619                                                           reg->umin_value);
620                 reg->smax_value = reg->umax_value = min_t(u64, reg->smax_value,
621                                                           reg->umax_value);
622                 return;
623         }
624         /* Learn sign from unsigned bounds.  Signed bounds cross the sign
625          * boundary, so we must be careful.
626          */
627         if ((s64)reg->umax_value >= 0) {
628                 /* Positive.  We can't learn anything from the smin, but smax
629                  * is positive, hence safe.
630                  */
631                 reg->smin_value = reg->umin_value;
632                 reg->smax_value = reg->umax_value = min_t(u64, reg->smax_value,
633                                                           reg->umax_value);
634         } else if ((s64)reg->umin_value < 0) {
635                 /* Negative.  We can't learn anything from the smax, but smin
636                  * is negative, hence safe.
637                  */
638                 reg->smin_value = reg->umin_value = max_t(u64, reg->smin_value,
639                                                           reg->umin_value);
640                 reg->smax_value = reg->umax_value;
641         }
642 }
643
644 /* Attempts to improve var_off based on unsigned min/max information */
645 static void __reg_bound_offset(struct bpf_reg_state *reg)
646 {
647         reg->var_off = tnum_intersect(reg->var_off,
648                                       tnum_range(reg->umin_value,
649                                                  reg->umax_value));
650 }
651
652 /* Reset the min/max bounds of a register */
653 static void __mark_reg_unbounded(struct bpf_reg_state *reg)
654 {
655         reg->smin_value = S64_MIN;
656         reg->smax_value = S64_MAX;
657         reg->umin_value = 0;
658         reg->umax_value = U64_MAX;
659 }
660
661 /* Mark a register as having a completely unknown (scalar) value. */
662 static void __mark_reg_unknown(struct bpf_reg_state *reg)
663 {
664         reg->type = SCALAR_VALUE;
665         reg->id = 0;
666         reg->off = 0;
667         reg->var_off = tnum_unknown;
668         reg->frameno = 0;
669         __mark_reg_unbounded(reg);
670 }
671
672 static void mark_reg_unknown(struct bpf_verifier_env *env,
673                              struct bpf_reg_state *regs, u32 regno)
674 {
675         if (WARN_ON(regno >= MAX_BPF_REG)) {
676                 verbose(env, "mark_reg_unknown(regs, %u)\n", regno);
677                 /* Something bad happened, let's kill all regs except FP */
678                 for (regno = 0; regno < BPF_REG_FP; regno++)
679                         __mark_reg_not_init(regs + regno);
680                 return;
681         }
682         __mark_reg_unknown(regs + regno);
683 }
684
685 static void __mark_reg_not_init(struct bpf_reg_state *reg)
686 {
687         __mark_reg_unknown(reg);
688         reg->type = NOT_INIT;
689 }
690
691 static void mark_reg_not_init(struct bpf_verifier_env *env,
692                               struct bpf_reg_state *regs, u32 regno)
693 {
694         if (WARN_ON(regno >= MAX_BPF_REG)) {
695                 verbose(env, "mark_reg_not_init(regs, %u)\n", regno);
696                 /* Something bad happened, let's kill all regs except FP */
697                 for (regno = 0; regno < BPF_REG_FP; regno++)
698                         __mark_reg_not_init(regs + regno);
699                 return;
700         }
701         __mark_reg_not_init(regs + regno);
702 }
703
704 static void init_reg_state(struct bpf_verifier_env *env,
705                            struct bpf_func_state *state)
706 {
707         struct bpf_reg_state *regs = state->regs;
708         int i;
709
710         for (i = 0; i < MAX_BPF_REG; i++) {
711                 mark_reg_not_init(env, regs, i);
712                 regs[i].live = REG_LIVE_NONE;
713         }
714
715         /* frame pointer */
716         regs[BPF_REG_FP].type = PTR_TO_STACK;
717         mark_reg_known_zero(env, regs, BPF_REG_FP);
718         regs[BPF_REG_FP].frameno = state->frameno;
719
720         /* 1st arg to a function */
721         regs[BPF_REG_1].type = PTR_TO_CTX;
722         mark_reg_known_zero(env, regs, BPF_REG_1);
723 }
724
725 #define BPF_MAIN_FUNC (-1)
726 static void init_func_state(struct bpf_verifier_env *env,
727                             struct bpf_func_state *state,
728                             int callsite, int frameno, int subprogno)
729 {
730         state->callsite = callsite;
731         state->frameno = frameno;
732         state->subprogno = subprogno;
733         init_reg_state(env, state);
734 }
735
736 enum reg_arg_type {
737         SRC_OP,         /* register is used as source operand */
738         DST_OP,         /* register is used as destination operand */
739         DST_OP_NO_MARK  /* same as above, check only, don't mark */
740 };
741
742 static int cmp_subprogs(const void *a, const void *b)
743 {
744         return *(int *)a - *(int *)b;
745 }
746
747 static int find_subprog(struct bpf_verifier_env *env, int off)
748 {
749         u32 *p;
750
751         p = bsearch(&off, env->subprog_starts, env->subprog_cnt,
752                     sizeof(env->subprog_starts[0]), cmp_subprogs);
753         if (!p)
754                 return -ENOENT;
755         return p - env->subprog_starts;
756
757 }
758
759 static int add_subprog(struct bpf_verifier_env *env, int off)
760 {
761         int insn_cnt = env->prog->len;
762         int ret;
763
764         if (off >= insn_cnt || off < 0) {
765                 verbose(env, "call to invalid destination\n");
766                 return -EINVAL;
767         }
768         ret = find_subprog(env, off);
769         if (ret >= 0)
770                 return 0;
771         if (env->subprog_cnt >= BPF_MAX_SUBPROGS) {
772                 verbose(env, "too many subprograms\n");
773                 return -E2BIG;
774         }
775         env->subprog_starts[env->subprog_cnt++] = off;
776         sort(env->subprog_starts, env->subprog_cnt,
777              sizeof(env->subprog_starts[0]), cmp_subprogs, NULL);
778         return 0;
779 }
780
781 static int check_subprogs(struct bpf_verifier_env *env)
782 {
783         int i, ret, subprog_start, subprog_end, off, cur_subprog = 0;
784         struct bpf_insn *insn = env->prog->insnsi;
785         int insn_cnt = env->prog->len;
786
787         /* determine subprog starts. The end is one before the next starts */
788         for (i = 0; i < insn_cnt; i++) {
789                 if (insn[i].code != (BPF_JMP | BPF_CALL))
790                         continue;
791                 if (insn[i].src_reg != BPF_PSEUDO_CALL)
792                         continue;
793                 if (!env->allow_ptr_leaks) {
794                         verbose(env, "function calls to other bpf functions are allowed for root only\n");
795                         return -EPERM;
796                 }
797                 if (bpf_prog_is_dev_bound(env->prog->aux)) {
798                         verbose(env, "function calls in offloaded programs are not supported yet\n");
799                         return -EINVAL;
800                 }
801                 ret = add_subprog(env, i + insn[i].imm + 1);
802                 if (ret < 0)
803                         return ret;
804         }
805
806         if (env->log.level > 1)
807                 for (i = 0; i < env->subprog_cnt; i++)
808                         verbose(env, "func#%d @%d\n", i, env->subprog_starts[i]);
809
810         /* now check that all jumps are within the same subprog */
811         subprog_start = 0;
812         if (env->subprog_cnt == cur_subprog)
813                 subprog_end = insn_cnt;
814         else
815                 subprog_end = env->subprog_starts[cur_subprog++];
816         for (i = 0; i < insn_cnt; i++) {
817                 u8 code = insn[i].code;
818
819                 if (BPF_CLASS(code) != BPF_JMP)
820                         goto next;
821                 if (BPF_OP(code) == BPF_EXIT || BPF_OP(code) == BPF_CALL)
822                         goto next;
823                 off = i + insn[i].off + 1;
824                 if (off < subprog_start || off >= subprog_end) {
825                         verbose(env, "jump out of range from insn %d to %d\n", i, off);
826                         return -EINVAL;
827                 }
828 next:
829                 if (i == subprog_end - 1) {
830                         /* to avoid fall-through from one subprog into another
831                          * the last insn of the subprog should be either exit
832                          * or unconditional jump back
833                          */
834                         if (code != (BPF_JMP | BPF_EXIT) &&
835                             code != (BPF_JMP | BPF_JA)) {
836                                 verbose(env, "last insn is not an exit or jmp\n");
837                                 return -EINVAL;
838                         }
839                         subprog_start = subprog_end;
840                         if (env->subprog_cnt == cur_subprog)
841                                 subprog_end = insn_cnt;
842                         else
843                                 subprog_end = env->subprog_starts[cur_subprog++];
844                 }
845         }
846         return 0;
847 }
848
849 static
850 struct bpf_verifier_state *skip_callee(struct bpf_verifier_env *env,
851                                        const struct bpf_verifier_state *state,
852                                        struct bpf_verifier_state *parent,
853                                        u32 regno)
854 {
855         struct bpf_verifier_state *tmp = NULL;
856
857         /* 'parent' could be a state of caller and
858          * 'state' could be a state of callee. In such case
859          * parent->curframe < state->curframe
860          * and it's ok for r1 - r5 registers
861          *
862          * 'parent' could be a callee's state after it bpf_exit-ed.
863          * In such case parent->curframe > state->curframe
864          * and it's ok for r0 only
865          */
866         if (parent->curframe == state->curframe ||
867             (parent->curframe < state->curframe &&
868              regno >= BPF_REG_1 && regno <= BPF_REG_5) ||
869             (parent->curframe > state->curframe &&
870                regno == BPF_REG_0))
871                 return parent;
872
873         if (parent->curframe > state->curframe &&
874             regno >= BPF_REG_6) {
875                 /* for callee saved regs we have to skip the whole chain
876                  * of states that belong to callee and mark as LIVE_READ
877                  * the registers before the call
878                  */
879                 tmp = parent;
880                 while (tmp && tmp->curframe != state->curframe) {
881                         tmp = tmp->parent;
882                 }
883                 if (!tmp)
884                         goto bug;
885                 parent = tmp;
886         } else {
887                 goto bug;
888         }
889         return parent;
890 bug:
891         verbose(env, "verifier bug regno %d tmp %p\n", regno, tmp);
892         verbose(env, "regno %d parent frame %d current frame %d\n",
893                 regno, parent->curframe, state->curframe);
894         return NULL;
895 }
896
897 static int mark_reg_read(struct bpf_verifier_env *env,
898                          const struct bpf_verifier_state *state,
899                          struct bpf_verifier_state *parent,
900                          u32 regno)
901 {
902         bool writes = parent == state->parent; /* Observe write marks */
903
904         if (regno == BPF_REG_FP)
905                 /* We don't need to worry about FP liveness because it's read-only */
906                 return 0;
907
908         while (parent) {
909                 /* if read wasn't screened by an earlier write ... */
910                 if (writes && state->frame[state->curframe]->regs[regno].live & REG_LIVE_WRITTEN)
911                         break;
912                 parent = skip_callee(env, state, parent, regno);
913                 if (!parent)
914                         return -EFAULT;
915                 /* ... then we depend on parent's value */
916                 parent->frame[parent->curframe]->regs[regno].live |= REG_LIVE_READ;
917                 state = parent;
918                 parent = state->parent;
919                 writes = true;
920         }
921         return 0;
922 }
923
924 static int check_reg_arg(struct bpf_verifier_env *env, u32 regno,
925                          enum reg_arg_type t)
926 {
927         struct bpf_verifier_state *vstate = env->cur_state;
928         struct bpf_func_state *state = vstate->frame[vstate->curframe];
929         struct bpf_reg_state *regs = state->regs;
930
931         if (regno >= MAX_BPF_REG) {
932                 verbose(env, "R%d is invalid\n", regno);
933                 return -EINVAL;
934         }
935
936         if (t == SRC_OP) {
937                 /* check whether register used as source operand can be read */
938                 if (regs[regno].type == NOT_INIT) {
939                         verbose(env, "R%d !read_ok\n", regno);
940                         return -EACCES;
941                 }
942                 return mark_reg_read(env, vstate, vstate->parent, regno);
943         } else {
944                 /* check whether register used as dest operand can be written to */
945                 if (regno == BPF_REG_FP) {
946                         verbose(env, "frame pointer is read only\n");
947                         return -EACCES;
948                 }
949                 regs[regno].live |= REG_LIVE_WRITTEN;
950                 if (t == DST_OP)
951                         mark_reg_unknown(env, regs, regno);
952         }
953         return 0;
954 }
955
956 static bool is_spillable_regtype(enum bpf_reg_type type)
957 {
958         switch (type) {
959         case PTR_TO_MAP_VALUE:
960         case PTR_TO_MAP_VALUE_OR_NULL:
961         case PTR_TO_STACK:
962         case PTR_TO_CTX:
963         case PTR_TO_PACKET:
964         case PTR_TO_PACKET_META:
965         case PTR_TO_PACKET_END:
966         case CONST_PTR_TO_MAP:
967                 return true;
968         default:
969                 return false;
970         }
971 }
972
973 /* Does this register contain a constant zero? */
974 static bool register_is_null(struct bpf_reg_state *reg)
975 {
976         return reg->type == SCALAR_VALUE && tnum_equals_const(reg->var_off, 0);
977 }
978
979 /* check_stack_read/write functions track spill/fill of registers,
980  * stack boundary and alignment are checked in check_mem_access()
981  */
982 static int check_stack_write(struct bpf_verifier_env *env,
983                              struct bpf_func_state *state, /* func where register points to */
984                              int off, int size, int value_regno)
985 {
986         struct bpf_func_state *cur; /* state of the current function */
987         int i, slot = -off - 1, spi = slot / BPF_REG_SIZE, err;
988         enum bpf_reg_type type;
989
990         err = realloc_func_state(state, round_up(slot + 1, BPF_REG_SIZE),
991                                  true);
992         if (err)
993                 return err;
994         /* caller checked that off % size == 0 and -MAX_BPF_STACK <= off < 0,
995          * so it's aligned access and [off, off + size) are within stack limits
996          */
997         if (!env->allow_ptr_leaks &&
998             state->stack[spi].slot_type[0] == STACK_SPILL &&
999             size != BPF_REG_SIZE) {
1000                 verbose(env, "attempt to corrupt spilled pointer on stack\n");
1001                 return -EACCES;
1002         }
1003
1004         cur = env->cur_state->frame[env->cur_state->curframe];
1005         if (value_regno >= 0 &&
1006             is_spillable_regtype((type = cur->regs[value_regno].type))) {
1007
1008                 /* register containing pointer is being spilled into stack */
1009                 if (size != BPF_REG_SIZE) {
1010                         verbose(env, "invalid size of register spill\n");
1011                         return -EACCES;
1012                 }
1013
1014                 if (state != cur && type == PTR_TO_STACK) {
1015                         verbose(env, "cannot spill pointers to stack into stack frame of the caller\n");
1016                         return -EINVAL;
1017                 }
1018
1019                 /* save register state */
1020                 state->stack[spi].spilled_ptr = cur->regs[value_regno];
1021                 state->stack[spi].spilled_ptr.live |= REG_LIVE_WRITTEN;
1022
1023                 for (i = 0; i < BPF_REG_SIZE; i++)
1024                         state->stack[spi].slot_type[i] = STACK_SPILL;
1025         } else {
1026                 u8 type = STACK_MISC;
1027
1028                 /* regular write of data into stack */
1029                 state->stack[spi].spilled_ptr = (struct bpf_reg_state) {};
1030
1031                 /* only mark the slot as written if all 8 bytes were written
1032                  * otherwise read propagation may incorrectly stop too soon
1033                  * when stack slots are partially written.
1034                  * This heuristic means that read propagation will be
1035                  * conservative, since it will add reg_live_read marks
1036                  * to stack slots all the way to first state when programs
1037                  * writes+reads less than 8 bytes
1038                  */
1039                 if (size == BPF_REG_SIZE)
1040                         state->stack[spi].spilled_ptr.live |= REG_LIVE_WRITTEN;
1041
1042                 /* when we zero initialize stack slots mark them as such */
1043                 if (value_regno >= 0 &&
1044                     register_is_null(&cur->regs[value_regno]))
1045                         type = STACK_ZERO;
1046
1047                 for (i = 0; i < size; i++)
1048                         state->stack[spi].slot_type[(slot - i) % BPF_REG_SIZE] =
1049                                 type;
1050         }
1051         return 0;
1052 }
1053
1054 /* registers of every function are unique and mark_reg_read() propagates
1055  * the liveness in the following cases:
1056  * - from callee into caller for R1 - R5 that were used as arguments
1057  * - from caller into callee for R0 that used as result of the call
1058  * - from caller to the same caller skipping states of the callee for R6 - R9,
1059  *   since R6 - R9 are callee saved by implicit function prologue and
1060  *   caller's R6 != callee's R6, so when we propagate liveness up to
1061  *   parent states we need to skip callee states for R6 - R9.
1062  *
1063  * stack slot marking is different, since stacks of caller and callee are
1064  * accessible in both (since caller can pass a pointer to caller's stack to
1065  * callee which can pass it to another function), hence mark_stack_slot_read()
1066  * has to propagate the stack liveness to all parent states at given frame number.
1067  * Consider code:
1068  * f1() {
1069  *   ptr = fp - 8;
1070  *   *ptr = ctx;
1071  *   call f2 {
1072  *      .. = *ptr;
1073  *   }
1074  *   .. = *ptr;
1075  * }
1076  * First *ptr is reading from f1's stack and mark_stack_slot_read() has
1077  * to mark liveness at the f1's frame and not f2's frame.
1078  * Second *ptr is also reading from f1's stack and mark_stack_slot_read() has
1079  * to propagate liveness to f2 states at f1's frame level and further into
1080  * f1 states at f1's frame level until write into that stack slot
1081  */
1082 static void mark_stack_slot_read(struct bpf_verifier_env *env,
1083                                  const struct bpf_verifier_state *state,
1084                                  struct bpf_verifier_state *parent,
1085                                  int slot, int frameno)
1086 {
1087         bool writes = parent == state->parent; /* Observe write marks */
1088
1089         while (parent) {
1090                 if (parent->frame[frameno]->allocated_stack <= slot * BPF_REG_SIZE)
1091                         /* since LIVE_WRITTEN mark is only done for full 8-byte
1092                          * write the read marks are conservative and parent
1093                          * state may not even have the stack allocated. In such case
1094                          * end the propagation, since the loop reached beginning
1095                          * of the function
1096                          */
1097                         break;
1098                 /* if read wasn't screened by an earlier write ... */
1099                 if (writes && state->frame[frameno]->stack[slot].spilled_ptr.live & REG_LIVE_WRITTEN)
1100                         break;
1101                 /* ... then we depend on parent's value */
1102                 parent->frame[frameno]->stack[slot].spilled_ptr.live |= REG_LIVE_READ;
1103                 state = parent;
1104                 parent = state->parent;
1105                 writes = true;
1106         }
1107 }
1108
1109 static int check_stack_read(struct bpf_verifier_env *env,
1110                             struct bpf_func_state *reg_state /* func where register points to */,
1111                             int off, int size, int value_regno)
1112 {
1113         struct bpf_verifier_state *vstate = env->cur_state;
1114         struct bpf_func_state *state = vstate->frame[vstate->curframe];
1115         int i, slot = -off - 1, spi = slot / BPF_REG_SIZE;
1116         u8 *stype;
1117
1118         if (reg_state->allocated_stack <= slot) {
1119                 verbose(env, "invalid read from stack off %d+0 size %d\n",
1120                         off, size);
1121                 return -EACCES;
1122         }
1123         stype = reg_state->stack[spi].slot_type;
1124
1125         if (stype[0] == STACK_SPILL) {
1126                 if (size != BPF_REG_SIZE) {
1127                         verbose(env, "invalid size of register spill\n");
1128                         return -EACCES;
1129                 }
1130                 for (i = 1; i < BPF_REG_SIZE; i++) {
1131                         if (stype[(slot - i) % BPF_REG_SIZE] != STACK_SPILL) {
1132                                 verbose(env, "corrupted spill memory\n");
1133                                 return -EACCES;
1134                         }
1135                 }
1136
1137                 if (value_regno >= 0) {
1138                         /* restore register state from stack */
1139                         state->regs[value_regno] = reg_state->stack[spi].spilled_ptr;
1140                         /* mark reg as written since spilled pointer state likely
1141                          * has its liveness marks cleared by is_state_visited()
1142                          * which resets stack/reg liveness for state transitions
1143                          */
1144                         state->regs[value_regno].live |= REG_LIVE_WRITTEN;
1145                 }
1146                 mark_stack_slot_read(env, vstate, vstate->parent, spi,
1147                                      reg_state->frameno);
1148                 return 0;
1149         } else {
1150                 int zeros = 0;
1151
1152                 for (i = 0; i < size; i++) {
1153                         if (stype[(slot - i) % BPF_REG_SIZE] == STACK_MISC)
1154                                 continue;
1155                         if (stype[(slot - i) % BPF_REG_SIZE] == STACK_ZERO) {
1156                                 zeros++;
1157                                 continue;
1158                         }
1159                         verbose(env, "invalid read from stack off %d+%d size %d\n",
1160                                 off, i, size);
1161                         return -EACCES;
1162                 }
1163                 mark_stack_slot_read(env, vstate, vstate->parent, spi,
1164                                      reg_state->frameno);
1165                 if (value_regno >= 0) {
1166                         if (zeros == size) {
1167                                 /* any size read into register is zero extended,
1168                                  * so the whole register == const_zero
1169                                  */
1170                                 __mark_reg_const_zero(&state->regs[value_regno]);
1171                         } else {
1172                                 /* have read misc data from the stack */
1173                                 mark_reg_unknown(env, state->regs, value_regno);
1174                         }
1175                         state->regs[value_regno].live |= REG_LIVE_WRITTEN;
1176                 }
1177                 return 0;
1178         }
1179 }
1180
1181 /* check read/write into map element returned by bpf_map_lookup_elem() */
1182 static int __check_map_access(struct bpf_verifier_env *env, u32 regno, int off,
1183                               int size, bool zero_size_allowed)
1184 {
1185         struct bpf_reg_state *regs = cur_regs(env);
1186         struct bpf_map *map = regs[regno].map_ptr;
1187
1188         if (off < 0 || size < 0 || (size == 0 && !zero_size_allowed) ||
1189             off + size > map->value_size) {
1190                 verbose(env, "invalid access to map value, value_size=%d off=%d size=%d\n",
1191                         map->value_size, off, size);
1192                 return -EACCES;
1193         }
1194         return 0;
1195 }
1196
1197 /* check read/write into a map element with possible variable offset */
1198 static int check_map_access(struct bpf_verifier_env *env, u32 regno,
1199                             int off, int size, bool zero_size_allowed)
1200 {
1201         struct bpf_verifier_state *vstate = env->cur_state;
1202         struct bpf_func_state *state = vstate->frame[vstate->curframe];
1203         struct bpf_reg_state *reg = &state->regs[regno];
1204         int err;
1205
1206         /* We may have adjusted the register to this map value, so we
1207          * need to try adding each of min_value and max_value to off
1208          * to make sure our theoretical access will be safe.
1209          */
1210         if (env->log.level)
1211                 print_verifier_state(env, state);
1212         /* The minimum value is only important with signed
1213          * comparisons where we can't assume the floor of a
1214          * value is 0.  If we are using signed variables for our
1215          * index'es we need to make sure that whatever we use
1216          * will have a set floor within our range.
1217          */
1218         if (reg->smin_value < 0) {
1219                 verbose(env, "R%d min value is negative, either use unsigned index or do a if (index >=0) check.\n",
1220                         regno);
1221                 return -EACCES;
1222         }
1223         err = __check_map_access(env, regno, reg->smin_value + off, size,
1224                                  zero_size_allowed);
1225         if (err) {
1226                 verbose(env, "R%d min value is outside of the array range\n",
1227                         regno);
1228                 return err;
1229         }
1230
1231         /* If we haven't set a max value then we need to bail since we can't be
1232          * sure we won't do bad things.
1233          * If reg->umax_value + off could overflow, treat that as unbounded too.
1234          */
1235         if (reg->umax_value >= BPF_MAX_VAR_OFF) {
1236                 verbose(env, "R%d unbounded memory access, make sure to bounds check any array access into a map\n",
1237                         regno);
1238                 return -EACCES;
1239         }
1240         err = __check_map_access(env, regno, reg->umax_value + off, size,
1241                                  zero_size_allowed);
1242         if (err)
1243                 verbose(env, "R%d max value is outside of the array range\n",
1244                         regno);
1245         return err;
1246 }
1247
1248 #define MAX_PACKET_OFF 0xffff
1249
1250 static bool may_access_direct_pkt_data(struct bpf_verifier_env *env,
1251                                        const struct bpf_call_arg_meta *meta,
1252                                        enum bpf_access_type t)
1253 {
1254         switch (env->prog->type) {
1255         case BPF_PROG_TYPE_LWT_IN:
1256         case BPF_PROG_TYPE_LWT_OUT:
1257                 /* dst_input() and dst_output() can't write for now */
1258                 if (t == BPF_WRITE)
1259                         return false;
1260                 /* fallthrough */
1261         case BPF_PROG_TYPE_SCHED_CLS:
1262         case BPF_PROG_TYPE_SCHED_ACT:
1263         case BPF_PROG_TYPE_XDP:
1264         case BPF_PROG_TYPE_LWT_XMIT:
1265         case BPF_PROG_TYPE_SK_SKB:
1266         case BPF_PROG_TYPE_SK_MSG:
1267                 if (meta)
1268                         return meta->pkt_access;
1269
1270                 env->seen_direct_write = true;
1271                 return true;
1272         default:
1273                 return false;
1274         }
1275 }
1276
1277 static int __check_packet_access(struct bpf_verifier_env *env, u32 regno,
1278                                  int off, int size, bool zero_size_allowed)
1279 {
1280         struct bpf_reg_state *regs = cur_regs(env);
1281         struct bpf_reg_state *reg = &regs[regno];
1282
1283         if (off < 0 || size < 0 || (size == 0 && !zero_size_allowed) ||
1284             (u64)off + size > reg->range) {
1285                 verbose(env, "invalid access to packet, off=%d size=%d, R%d(id=%d,off=%d,r=%d)\n",
1286                         off, size, regno, reg->id, reg->off, reg->range);
1287                 return -EACCES;
1288         }
1289         return 0;
1290 }
1291
1292 static int check_packet_access(struct bpf_verifier_env *env, u32 regno, int off,
1293                                int size, bool zero_size_allowed)
1294 {
1295         struct bpf_reg_state *regs = cur_regs(env);
1296         struct bpf_reg_state *reg = &regs[regno];
1297         int err;
1298
1299         /* We may have added a variable offset to the packet pointer; but any
1300          * reg->range we have comes after that.  We are only checking the fixed
1301          * offset.
1302          */
1303
1304         /* We don't allow negative numbers, because we aren't tracking enough
1305          * detail to prove they're safe.
1306          */
1307         if (reg->smin_value < 0) {
1308                 verbose(env, "R%d min value is negative, either use unsigned index or do a if (index >=0) check.\n",
1309                         regno);
1310                 return -EACCES;
1311         }
1312         err = __check_packet_access(env, regno, off, size, zero_size_allowed);
1313         if (err) {
1314                 verbose(env, "R%d offset is outside of the packet\n", regno);
1315                 return err;
1316         }
1317         return err;
1318 }
1319
1320 /* check access to 'struct bpf_context' fields.  Supports fixed offsets only */
1321 static int check_ctx_access(struct bpf_verifier_env *env, int insn_idx, int off, int size,
1322                             enum bpf_access_type t, enum bpf_reg_type *reg_type)
1323 {
1324         struct bpf_insn_access_aux info = {
1325                 .reg_type = *reg_type,
1326         };
1327
1328         if (env->ops->is_valid_access &&
1329             env->ops->is_valid_access(off, size, t, env->prog, &info)) {
1330                 /* A non zero info.ctx_field_size indicates that this field is a
1331                  * candidate for later verifier transformation to load the whole
1332                  * field and then apply a mask when accessed with a narrower
1333                  * access than actual ctx access size. A zero info.ctx_field_size
1334                  * will only allow for whole field access and rejects any other
1335                  * type of narrower access.
1336                  */
1337                 *reg_type = info.reg_type;
1338
1339                 env->insn_aux_data[insn_idx].ctx_field_size = info.ctx_field_size;
1340                 /* remember the offset of last byte accessed in ctx */
1341                 if (env->prog->aux->max_ctx_offset < off + size)
1342                         env->prog->aux->max_ctx_offset = off + size;
1343                 return 0;
1344         }
1345
1346         verbose(env, "invalid bpf_context access off=%d size=%d\n", off, size);
1347         return -EACCES;
1348 }
1349
1350 static bool __is_pointer_value(bool allow_ptr_leaks,
1351                                const struct bpf_reg_state *reg)
1352 {
1353         if (allow_ptr_leaks)
1354                 return false;
1355
1356         return reg->type != SCALAR_VALUE;
1357 }
1358
1359 static bool is_pointer_value(struct bpf_verifier_env *env, int regno)
1360 {
1361         return __is_pointer_value(env->allow_ptr_leaks, cur_regs(env) + regno);
1362 }
1363
1364 static bool is_ctx_reg(struct bpf_verifier_env *env, int regno)
1365 {
1366         const struct bpf_reg_state *reg = cur_regs(env) + regno;
1367
1368         return reg->type == PTR_TO_CTX;
1369 }
1370
1371 static bool is_pkt_reg(struct bpf_verifier_env *env, int regno)
1372 {
1373         const struct bpf_reg_state *reg = cur_regs(env) + regno;
1374
1375         return type_is_pkt_pointer(reg->type);
1376 }
1377
1378 static int check_pkt_ptr_alignment(struct bpf_verifier_env *env,
1379                                    const struct bpf_reg_state *reg,
1380                                    int off, int size, bool strict)
1381 {
1382         struct tnum reg_off;
1383         int ip_align;
1384
1385         /* Byte size accesses are always allowed. */
1386         if (!strict || size == 1)
1387                 return 0;
1388
1389         /* For platforms that do not have a Kconfig enabling
1390          * CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS the value of
1391          * NET_IP_ALIGN is universally set to '2'.  And on platforms
1392          * that do set CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS, we get
1393          * to this code only in strict mode where we want to emulate
1394          * the NET_IP_ALIGN==2 checking.  Therefore use an
1395          * unconditional IP align value of '2'.
1396          */
1397         ip_align = 2;
1398
1399         reg_off = tnum_add(reg->var_off, tnum_const(ip_align + reg->off + off));
1400         if (!tnum_is_aligned(reg_off, size)) {
1401                 char tn_buf[48];
1402
1403                 tnum_strn(tn_buf, sizeof(tn_buf), reg->var_off);
1404                 verbose(env,
1405                         "misaligned packet access off %d+%s+%d+%d size %d\n",
1406                         ip_align, tn_buf, reg->off, off, size);
1407                 return -EACCES;
1408         }
1409
1410         return 0;
1411 }
1412
1413 static int check_generic_ptr_alignment(struct bpf_verifier_env *env,
1414                                        const struct bpf_reg_state *reg,
1415                                        const char *pointer_desc,
1416                                        int off, int size, bool strict)
1417 {
1418         struct tnum reg_off;
1419
1420         /* Byte size accesses are always allowed. */
1421         if (!strict || size == 1)
1422                 return 0;
1423
1424         reg_off = tnum_add(reg->var_off, tnum_const(reg->off + off));
1425         if (!tnum_is_aligned(reg_off, size)) {
1426                 char tn_buf[48];
1427
1428                 tnum_strn(tn_buf, sizeof(tn_buf), reg->var_off);
1429                 verbose(env, "misaligned %saccess off %s+%d+%d size %d\n",
1430                         pointer_desc, tn_buf, reg->off, off, size);
1431                 return -EACCES;
1432         }
1433
1434         return 0;
1435 }
1436
1437 static int check_ptr_alignment(struct bpf_verifier_env *env,
1438                                const struct bpf_reg_state *reg, int off,
1439                                int size, bool strict_alignment_once)
1440 {
1441         bool strict = env->strict_alignment || strict_alignment_once;
1442         const char *pointer_desc = "";
1443
1444         switch (reg->type) {
1445         case PTR_TO_PACKET:
1446         case PTR_TO_PACKET_META:
1447                 /* Special case, because of NET_IP_ALIGN. Given metadata sits
1448                  * right in front, treat it the very same way.
1449                  */
1450                 return check_pkt_ptr_alignment(env, reg, off, size, strict);
1451         case PTR_TO_MAP_VALUE:
1452                 pointer_desc = "value ";
1453                 break;
1454         case PTR_TO_CTX:
1455                 pointer_desc = "context ";
1456                 break;
1457         case PTR_TO_STACK:
1458                 pointer_desc = "stack ";
1459                 /* The stack spill tracking logic in check_stack_write()
1460                  * and check_stack_read() relies on stack accesses being
1461                  * aligned.
1462                  */
1463                 strict = true;
1464                 break;
1465         default:
1466                 break;
1467         }
1468         return check_generic_ptr_alignment(env, reg, pointer_desc, off, size,
1469                                            strict);
1470 }
1471
1472 static int update_stack_depth(struct bpf_verifier_env *env,
1473                               const struct bpf_func_state *func,
1474                               int off)
1475 {
1476         u16 stack = env->subprog_stack_depth[func->subprogno];
1477
1478         if (stack >= -off)
1479                 return 0;
1480
1481         /* update known max for given subprogram */
1482         env->subprog_stack_depth[func->subprogno] = -off;
1483         return 0;
1484 }
1485
1486 /* starting from main bpf function walk all instructions of the function
1487  * and recursively walk all callees that given function can call.
1488  * Ignore jump and exit insns.
1489  * Since recursion is prevented by check_cfg() this algorithm
1490  * only needs a local stack of MAX_CALL_FRAMES to remember callsites
1491  */
1492 static int check_max_stack_depth(struct bpf_verifier_env *env)
1493 {
1494         int depth = 0, frame = 0, subprog = 0, i = 0, subprog_end;
1495         struct bpf_insn *insn = env->prog->insnsi;
1496         int insn_cnt = env->prog->len;
1497         int ret_insn[MAX_CALL_FRAMES];
1498         int ret_prog[MAX_CALL_FRAMES];
1499
1500 process_func:
1501         /* round up to 32-bytes, since this is granularity
1502          * of interpreter stack size
1503          */
1504         depth += round_up(max_t(u32, env->subprog_stack_depth[subprog], 1), 32);
1505         if (depth > MAX_BPF_STACK) {
1506                 verbose(env, "combined stack size of %d calls is %d. Too large\n",
1507                         frame + 1, depth);
1508                 return -EACCES;
1509         }
1510 continue_func:
1511         if (env->subprog_cnt == subprog)
1512                 subprog_end = insn_cnt;
1513         else
1514                 subprog_end = env->subprog_starts[subprog];
1515         for (; i < subprog_end; i++) {
1516                 if (insn[i].code != (BPF_JMP | BPF_CALL))
1517                         continue;
1518                 if (insn[i].src_reg != BPF_PSEUDO_CALL)
1519                         continue;
1520                 /* remember insn and function to return to */
1521                 ret_insn[frame] = i + 1;
1522                 ret_prog[frame] = subprog;
1523
1524                 /* find the callee */
1525                 i = i + insn[i].imm + 1;
1526                 subprog = find_subprog(env, i);
1527                 if (subprog < 0) {
1528                         WARN_ONCE(1, "verifier bug. No program starts at insn %d\n",
1529                                   i);
1530                         return -EFAULT;
1531                 }
1532                 subprog++;
1533                 frame++;
1534                 if (frame >= MAX_CALL_FRAMES) {
1535                         WARN_ONCE(1, "verifier bug. Call stack is too deep\n");
1536                         return -EFAULT;
1537                 }
1538                 goto process_func;
1539         }
1540         /* end of for() loop means the last insn of the 'subprog'
1541          * was reached. Doesn't matter whether it was JA or EXIT
1542          */
1543         if (frame == 0)
1544                 return 0;
1545         depth -= round_up(max_t(u32, env->subprog_stack_depth[subprog], 1), 32);
1546         frame--;
1547         i = ret_insn[frame];
1548         subprog = ret_prog[frame];
1549         goto continue_func;
1550 }
1551
1552 #ifndef CONFIG_BPF_JIT_ALWAYS_ON
1553 static int get_callee_stack_depth(struct bpf_verifier_env *env,
1554                                   const struct bpf_insn *insn, int idx)
1555 {
1556         int start = idx + insn->imm + 1, subprog;
1557
1558         subprog = find_subprog(env, start);
1559         if (subprog < 0) {
1560                 WARN_ONCE(1, "verifier bug. No program starts at insn %d\n",
1561                           start);
1562                 return -EFAULT;
1563         }
1564         subprog++;
1565         return env->subprog_stack_depth[subprog];
1566 }
1567 #endif
1568
1569 /* truncate register to smaller size (in bytes)
1570  * must be called with size < BPF_REG_SIZE
1571  */
1572 static void coerce_reg_to_size(struct bpf_reg_state *reg, int size)
1573 {
1574         u64 mask;
1575
1576         /* clear high bits in bit representation */
1577         reg->var_off = tnum_cast(reg->var_off, size);
1578
1579         /* fix arithmetic bounds */
1580         mask = ((u64)1 << (size * 8)) - 1;
1581         if ((reg->umin_value & ~mask) == (reg->umax_value & ~mask)) {
1582                 reg->umin_value &= mask;
1583                 reg->umax_value &= mask;
1584         } else {
1585                 reg->umin_value = 0;
1586                 reg->umax_value = mask;
1587         }
1588         reg->smin_value = reg->umin_value;
1589         reg->smax_value = reg->umax_value;
1590 }
1591
1592 /* check whether memory at (regno + off) is accessible for t = (read | write)
1593  * if t==write, value_regno is a register which value is stored into memory
1594  * if t==read, value_regno is a register which will receive the value from memory
1595  * if t==write && value_regno==-1, some unknown value is stored into memory
1596  * if t==read && value_regno==-1, don't care what we read from memory
1597  */
1598 static int check_mem_access(struct bpf_verifier_env *env, int insn_idx, u32 regno,
1599                             int off, int bpf_size, enum bpf_access_type t,
1600                             int value_regno, bool strict_alignment_once)
1601 {
1602         struct bpf_reg_state *regs = cur_regs(env);
1603         struct bpf_reg_state *reg = regs + regno;
1604         struct bpf_func_state *state;
1605         int size, err = 0;
1606
1607         size = bpf_size_to_bytes(bpf_size);
1608         if (size < 0)
1609                 return size;
1610
1611         /* alignment checks will add in reg->off themselves */
1612         err = check_ptr_alignment(env, reg, off, size, strict_alignment_once);
1613         if (err)
1614                 return err;
1615
1616         /* for access checks, reg->off is just part of off */
1617         off += reg->off;
1618
1619         if (reg->type == PTR_TO_MAP_VALUE) {
1620                 if (t == BPF_WRITE && value_regno >= 0 &&
1621                     is_pointer_value(env, value_regno)) {
1622                         verbose(env, "R%d leaks addr into map\n", value_regno);
1623                         return -EACCES;
1624                 }
1625
1626                 err = check_map_access(env, regno, off, size, false);
1627                 if (!err && t == BPF_READ && value_regno >= 0)
1628                         mark_reg_unknown(env, regs, value_regno);
1629
1630         } else if (reg->type == PTR_TO_CTX) {
1631                 enum bpf_reg_type reg_type = SCALAR_VALUE;
1632
1633                 if (t == BPF_WRITE && value_regno >= 0 &&
1634                     is_pointer_value(env, value_regno)) {
1635                         verbose(env, "R%d leaks addr into ctx\n", value_regno);
1636                         return -EACCES;
1637                 }
1638                 /* ctx accesses must be at a fixed offset, so that we can
1639                  * determine what type of data were returned.
1640                  */
1641                 if (reg->off) {
1642                         verbose(env,
1643                                 "dereference of modified ctx ptr R%d off=%d+%d, ctx+const is allowed, ctx+const+const is not\n",
1644                                 regno, reg->off, off - reg->off);
1645                         return -EACCES;
1646                 }
1647                 if (!tnum_is_const(reg->var_off) || reg->var_off.value) {
1648                         char tn_buf[48];
1649
1650                         tnum_strn(tn_buf, sizeof(tn_buf), reg->var_off);
1651                         verbose(env,
1652                                 "variable ctx access var_off=%s off=%d size=%d",
1653                                 tn_buf, off, size);
1654                         return -EACCES;
1655                 }
1656                 err = check_ctx_access(env, insn_idx, off, size, t, &reg_type);
1657                 if (!err && t == BPF_READ && value_regno >= 0) {
1658                         /* ctx access returns either a scalar, or a
1659                          * PTR_TO_PACKET[_META,_END]. In the latter
1660                          * case, we know the offset is zero.
1661                          */
1662                         if (reg_type == SCALAR_VALUE)
1663                                 mark_reg_unknown(env, regs, value_regno);
1664                         else
1665                                 mark_reg_known_zero(env, regs,
1666                                                     value_regno);
1667                         regs[value_regno].id = 0;
1668                         regs[value_regno].off = 0;
1669                         regs[value_regno].range = 0;
1670                         regs[value_regno].type = reg_type;
1671                 }
1672
1673         } else if (reg->type == PTR_TO_STACK) {
1674                 /* stack accesses must be at a fixed offset, so that we can
1675                  * determine what type of data were returned.
1676                  * See check_stack_read().
1677                  */
1678                 if (!tnum_is_const(reg->var_off)) {
1679                         char tn_buf[48];
1680
1681                         tnum_strn(tn_buf, sizeof(tn_buf), reg->var_off);
1682                         verbose(env, "variable stack access var_off=%s off=%d size=%d",
1683                                 tn_buf, off, size);
1684                         return -EACCES;
1685                 }
1686                 off += reg->var_off.value;
1687                 if (off >= 0 || off < -MAX_BPF_STACK) {
1688                         verbose(env, "invalid stack off=%d size=%d\n", off,
1689                                 size);
1690                         return -EACCES;
1691                 }
1692
1693                 state = func(env, reg);
1694                 err = update_stack_depth(env, state, off);
1695                 if (err)
1696                         return err;
1697
1698                 if (t == BPF_WRITE)
1699                         err = check_stack_write(env, state, off, size,
1700                                                 value_regno);
1701                 else
1702                         err = check_stack_read(env, state, off, size,
1703                                                value_regno);
1704         } else if (reg_is_pkt_pointer(reg)) {
1705                 if (t == BPF_WRITE && !may_access_direct_pkt_data(env, NULL, t)) {
1706                         verbose(env, "cannot write into packet\n");
1707                         return -EACCES;
1708                 }
1709                 if (t == BPF_WRITE && value_regno >= 0 &&
1710                     is_pointer_value(env, value_regno)) {
1711                         verbose(env, "R%d leaks addr into packet\n",
1712                                 value_regno);
1713                         return -EACCES;
1714                 }
1715                 err = check_packet_access(env, regno, off, size, false);
1716                 if (!err && t == BPF_READ && value_regno >= 0)
1717                         mark_reg_unknown(env, regs, value_regno);
1718         } else {
1719                 verbose(env, "R%d invalid mem access '%s'\n", regno,
1720                         reg_type_str[reg->type]);
1721                 return -EACCES;
1722         }
1723
1724         if (!err && size < BPF_REG_SIZE && value_regno >= 0 && t == BPF_READ &&
1725             regs[value_regno].type == SCALAR_VALUE) {
1726                 /* b/h/w load zero-extends, mark upper bits as known 0 */
1727                 coerce_reg_to_size(&regs[value_regno], size);
1728         }
1729         return err;
1730 }
1731
1732 static int check_xadd(struct bpf_verifier_env *env, int insn_idx, struct bpf_insn *insn)
1733 {
1734         int err;
1735
1736         if ((BPF_SIZE(insn->code) != BPF_W && BPF_SIZE(insn->code) != BPF_DW) ||
1737             insn->imm != 0) {
1738                 verbose(env, "BPF_XADD uses reserved fields\n");
1739                 return -EINVAL;
1740         }
1741
1742         /* check src1 operand */
1743         err = check_reg_arg(env, insn->src_reg, SRC_OP);
1744         if (err)
1745                 return err;
1746
1747         /* check src2 operand */
1748         err = check_reg_arg(env, insn->dst_reg, SRC_OP);
1749         if (err)
1750                 return err;
1751
1752         if (is_pointer_value(env, insn->src_reg)) {
1753                 verbose(env, "R%d leaks addr into mem\n", insn->src_reg);
1754                 return -EACCES;
1755         }
1756
1757         if (is_ctx_reg(env, insn->dst_reg) ||
1758             is_pkt_reg(env, insn->dst_reg)) {
1759                 verbose(env, "BPF_XADD stores into R%d %s is not allowed\n",
1760                         insn->dst_reg, is_ctx_reg(env, insn->dst_reg) ?
1761                         "context" : "packet");
1762                 return -EACCES;
1763         }
1764
1765         /* check whether atomic_add can read the memory */
1766         err = check_mem_access(env, insn_idx, insn->dst_reg, insn->off,
1767                                BPF_SIZE(insn->code), BPF_READ, -1, true);
1768         if (err)
1769                 return err;
1770
1771         /* check whether atomic_add can write into the same memory */
1772         return check_mem_access(env, insn_idx, insn->dst_reg, insn->off,
1773                                 BPF_SIZE(insn->code), BPF_WRITE, -1, true);
1774 }
1775
1776 /* when register 'regno' is passed into function that will read 'access_size'
1777  * bytes from that pointer, make sure that it's within stack boundary
1778  * and all elements of stack are initialized.
1779  * Unlike most pointer bounds-checking functions, this one doesn't take an
1780  * 'off' argument, so it has to add in reg->off itself.
1781  */
1782 static int check_stack_boundary(struct bpf_verifier_env *env, int regno,
1783                                 int access_size, bool zero_size_allowed,
1784                                 struct bpf_call_arg_meta *meta)
1785 {
1786         struct bpf_reg_state *reg = cur_regs(env) + regno;
1787         struct bpf_func_state *state = func(env, reg);
1788         int off, i, slot, spi;
1789
1790         if (reg->type != PTR_TO_STACK) {
1791                 /* Allow zero-byte read from NULL, regardless of pointer type */
1792                 if (zero_size_allowed && access_size == 0 &&
1793                     register_is_null(reg))
1794                         return 0;
1795
1796                 verbose(env, "R%d type=%s expected=%s\n", regno,
1797                         reg_type_str[reg->type],
1798                         reg_type_str[PTR_TO_STACK]);
1799                 return -EACCES;
1800         }
1801
1802         /* Only allow fixed-offset stack reads */
1803         if (!tnum_is_const(reg->var_off)) {
1804                 char tn_buf[48];
1805
1806                 tnum_strn(tn_buf, sizeof(tn_buf), reg->var_off);
1807                 verbose(env, "invalid variable stack read R%d var_off=%s\n",
1808                         regno, tn_buf);
1809                 return -EACCES;
1810         }
1811         off = reg->off + reg->var_off.value;
1812         if (off >= 0 || off < -MAX_BPF_STACK || off + access_size > 0 ||
1813             access_size < 0 || (access_size == 0 && !zero_size_allowed)) {
1814                 verbose(env, "invalid stack type R%d off=%d access_size=%d\n",
1815                         regno, off, access_size);
1816                 return -EACCES;
1817         }
1818
1819         if (meta && meta->raw_mode) {
1820                 meta->access_size = access_size;
1821                 meta->regno = regno;
1822                 return 0;
1823         }
1824
1825         for (i = 0; i < access_size; i++) {
1826                 u8 *stype;
1827
1828                 slot = -(off + i) - 1;
1829                 spi = slot / BPF_REG_SIZE;
1830                 if (state->allocated_stack <= slot)
1831                         goto err;
1832                 stype = &state->stack[spi].slot_type[slot % BPF_REG_SIZE];
1833                 if (*stype == STACK_MISC)
1834                         goto mark;
1835                 if (*stype == STACK_ZERO) {
1836                         /* helper can write anything into the stack */
1837                         *stype = STACK_MISC;
1838                         goto mark;
1839                 }
1840 err:
1841                 verbose(env, "invalid indirect read from stack off %d+%d size %d\n",
1842                         off, i, access_size);
1843                 return -EACCES;
1844 mark:
1845                 /* reading any byte out of 8-byte 'spill_slot' will cause
1846                  * the whole slot to be marked as 'read'
1847                  */
1848                 mark_stack_slot_read(env, env->cur_state, env->cur_state->parent,
1849                                      spi, state->frameno);
1850         }
1851         return update_stack_depth(env, state, off);
1852 }
1853
1854 static int check_helper_mem_access(struct bpf_verifier_env *env, int regno,
1855                                    int access_size, bool zero_size_allowed,
1856                                    struct bpf_call_arg_meta *meta)
1857 {
1858         struct bpf_reg_state *regs = cur_regs(env), *reg = &regs[regno];
1859
1860         switch (reg->type) {
1861         case PTR_TO_PACKET:
1862         case PTR_TO_PACKET_META:
1863                 return check_packet_access(env, regno, reg->off, access_size,
1864                                            zero_size_allowed);
1865         case PTR_TO_MAP_VALUE:
1866                 return check_map_access(env, regno, reg->off, access_size,
1867                                         zero_size_allowed);
1868         default: /* scalar_value|ptr_to_stack or invalid ptr */
1869                 return check_stack_boundary(env, regno, access_size,
1870                                             zero_size_allowed, meta);
1871         }
1872 }
1873
1874 static bool arg_type_is_mem_ptr(enum bpf_arg_type type)
1875 {
1876         return type == ARG_PTR_TO_MEM ||
1877                type == ARG_PTR_TO_MEM_OR_NULL ||
1878                type == ARG_PTR_TO_UNINIT_MEM;
1879 }
1880
1881 static bool arg_type_is_mem_size(enum bpf_arg_type type)
1882 {
1883         return type == ARG_CONST_SIZE ||
1884                type == ARG_CONST_SIZE_OR_ZERO;
1885 }
1886
1887 static int check_func_arg(struct bpf_verifier_env *env, u32 regno,
1888                           enum bpf_arg_type arg_type,
1889                           struct bpf_call_arg_meta *meta)
1890 {
1891         struct bpf_reg_state *regs = cur_regs(env), *reg = &regs[regno];
1892         enum bpf_reg_type expected_type, type = reg->type;
1893         int err = 0;
1894
1895         if (arg_type == ARG_DONTCARE)
1896                 return 0;
1897
1898         err = check_reg_arg(env, regno, SRC_OP);
1899         if (err)
1900                 return err;
1901
1902         if (arg_type == ARG_ANYTHING) {
1903                 if (is_pointer_value(env, regno)) {
1904                         verbose(env, "R%d leaks addr into helper function\n",
1905                                 regno);
1906                         return -EACCES;
1907                 }
1908                 return 0;
1909         }
1910
1911         if (type_is_pkt_pointer(type) &&
1912             !may_access_direct_pkt_data(env, meta, BPF_READ)) {
1913                 verbose(env, "helper access to the packet is not allowed\n");
1914                 return -EACCES;
1915         }
1916
1917         if (arg_type == ARG_PTR_TO_MAP_KEY ||
1918             arg_type == ARG_PTR_TO_MAP_VALUE) {
1919                 expected_type = PTR_TO_STACK;
1920                 if (!type_is_pkt_pointer(type) && type != PTR_TO_MAP_VALUE &&
1921                     type != expected_type)
1922                         goto err_type;
1923         } else if (arg_type == ARG_CONST_SIZE ||
1924                    arg_type == ARG_CONST_SIZE_OR_ZERO) {
1925                 expected_type = SCALAR_VALUE;
1926                 if (type != expected_type)
1927                         goto err_type;
1928         } else if (arg_type == ARG_CONST_MAP_PTR) {
1929                 expected_type = CONST_PTR_TO_MAP;
1930                 if (type != expected_type)
1931                         goto err_type;
1932         } else if (arg_type == ARG_PTR_TO_CTX) {
1933                 expected_type = PTR_TO_CTX;
1934                 if (type != expected_type)
1935                         goto err_type;
1936         } else if (arg_type_is_mem_ptr(arg_type)) {
1937                 expected_type = PTR_TO_STACK;
1938                 /* One exception here. In case function allows for NULL to be
1939                  * passed in as argument, it's a SCALAR_VALUE type. Final test
1940                  * happens during stack boundary checking.
1941                  */
1942                 if (register_is_null(reg) &&
1943                     arg_type == ARG_PTR_TO_MEM_OR_NULL)
1944                         /* final test in check_stack_boundary() */;
1945                 else if (!type_is_pkt_pointer(type) &&
1946                          type != PTR_TO_MAP_VALUE &&
1947                          type != expected_type)
1948                         goto err_type;
1949                 meta->raw_mode = arg_type == ARG_PTR_TO_UNINIT_MEM;
1950         } else {
1951                 verbose(env, "unsupported arg_type %d\n", arg_type);
1952                 return -EFAULT;
1953         }
1954
1955         if (arg_type == ARG_CONST_MAP_PTR) {
1956                 /* bpf_map_xxx(map_ptr) call: remember that map_ptr */
1957                 meta->map_ptr = reg->map_ptr;
1958         } else if (arg_type == ARG_PTR_TO_MAP_KEY) {
1959                 /* bpf_map_xxx(..., map_ptr, ..., key) call:
1960                  * check that [key, key + map->key_size) are within
1961                  * stack limits and initialized
1962                  */
1963                 if (!meta->map_ptr) {
1964                         /* in function declaration map_ptr must come before
1965                          * map_key, so that it's verified and known before
1966                          * we have to check map_key here. Otherwise it means
1967                          * that kernel subsystem misconfigured verifier
1968                          */
1969                         verbose(env, "invalid map_ptr to access map->key\n");
1970                         return -EACCES;
1971                 }
1972                 err = check_helper_mem_access(env, regno,
1973                                               meta->map_ptr->key_size, false,
1974                                               NULL);
1975         } else if (arg_type == ARG_PTR_TO_MAP_VALUE) {
1976                 /* bpf_map_xxx(..., map_ptr, ..., value) call:
1977                  * check [value, value + map->value_size) validity
1978                  */
1979                 if (!meta->map_ptr) {
1980                         /* kernel subsystem misconfigured verifier */
1981                         verbose(env, "invalid map_ptr to access map->value\n");
1982                         return -EACCES;
1983                 }
1984                 err = check_helper_mem_access(env, regno,
1985                                               meta->map_ptr->value_size, false,
1986                                               NULL);
1987         } else if (arg_type_is_mem_size(arg_type)) {
1988                 bool zero_size_allowed = (arg_type == ARG_CONST_SIZE_OR_ZERO);
1989
1990                 /* remember the mem_size which may be used later
1991                  * to refine return values.
1992                  */
1993                 meta->msize_smax_value = reg->smax_value;
1994                 meta->msize_umax_value = reg->umax_value;
1995
1996                 /* The register is SCALAR_VALUE; the access check
1997                  * happens using its boundaries.
1998                  */
1999                 if (!tnum_is_const(reg->var_off))
2000                         /* For unprivileged variable accesses, disable raw
2001                          * mode so that the program is required to
2002                          * initialize all the memory that the helper could
2003                          * just partially fill up.
2004                          */
2005                         meta = NULL;
2006
2007                 if (reg->smin_value < 0) {
2008                         verbose(env, "R%d min value is negative, either use unsigned or 'var &= const'\n",
2009                                 regno);
2010                         return -EACCES;
2011                 }
2012
2013                 if (reg->umin_value == 0) {
2014                         err = check_helper_mem_access(env, regno - 1, 0,
2015                                                       zero_size_allowed,
2016                                                       meta);
2017                         if (err)
2018                                 return err;
2019                 }
2020
2021                 if (reg->umax_value >= BPF_MAX_VAR_SIZ) {
2022                         verbose(env, "R%d unbounded memory access, use 'var &= const' or 'if (var < const)'\n",
2023                                 regno);
2024                         return -EACCES;
2025                 }
2026                 err = check_helper_mem_access(env, regno - 1,
2027                                               reg->umax_value,
2028                                               zero_size_allowed, meta);
2029         }
2030
2031         return err;
2032 err_type:
2033         verbose(env, "R%d type=%s expected=%s\n", regno,
2034                 reg_type_str[type], reg_type_str[expected_type]);
2035         return -EACCES;
2036 }
2037
2038 static int check_map_func_compatibility(struct bpf_verifier_env *env,
2039                                         struct bpf_map *map, int func_id)
2040 {
2041         if (!map)
2042                 return 0;
2043
2044         /* We need a two way check, first is from map perspective ... */
2045         switch (map->map_type) {
2046         case BPF_MAP_TYPE_PROG_ARRAY:
2047                 if (func_id != BPF_FUNC_tail_call)
2048                         goto error;
2049                 break;
2050         case BPF_MAP_TYPE_PERF_EVENT_ARRAY:
2051                 if (func_id != BPF_FUNC_perf_event_read &&
2052                     func_id != BPF_FUNC_perf_event_output &&
2053                     func_id != BPF_FUNC_perf_event_read_value)
2054                         goto error;
2055                 break;
2056         case BPF_MAP_TYPE_STACK_TRACE:
2057                 if (func_id != BPF_FUNC_get_stackid)
2058                         goto error;
2059                 break;
2060         case BPF_MAP_TYPE_CGROUP_ARRAY:
2061                 if (func_id != BPF_FUNC_skb_under_cgroup &&
2062                     func_id != BPF_FUNC_current_task_under_cgroup)
2063                         goto error;
2064                 break;
2065         /* devmap returns a pointer to a live net_device ifindex that we cannot
2066          * allow to be modified from bpf side. So do not allow lookup elements
2067          * for now.
2068          */
2069         case BPF_MAP_TYPE_DEVMAP:
2070                 if (func_id != BPF_FUNC_redirect_map)
2071                         goto error;
2072                 break;
2073         /* Restrict bpf side of cpumap, open when use-cases appear */
2074         case BPF_MAP_TYPE_CPUMAP:
2075                 if (func_id != BPF_FUNC_redirect_map)
2076                         goto error;
2077                 break;
2078         case BPF_MAP_TYPE_ARRAY_OF_MAPS:
2079         case BPF_MAP_TYPE_HASH_OF_MAPS:
2080                 if (func_id != BPF_FUNC_map_lookup_elem)
2081                         goto error;
2082                 break;
2083         case BPF_MAP_TYPE_SOCKMAP:
2084                 if (func_id != BPF_FUNC_sk_redirect_map &&
2085                     func_id != BPF_FUNC_sock_map_update &&
2086                     func_id != BPF_FUNC_map_delete_elem &&
2087                     func_id != BPF_FUNC_msg_redirect_map)
2088                         goto error;
2089                 break;
2090         default:
2091                 break;
2092         }
2093
2094         /* ... and second from the function itself. */
2095         switch (func_id) {
2096         case BPF_FUNC_tail_call:
2097                 if (map->map_type != BPF_MAP_TYPE_PROG_ARRAY)
2098                         goto error;
2099                 if (env->subprog_cnt) {
2100                         verbose(env, "tail_calls are not allowed in programs with bpf-to-bpf calls\n");
2101                         return -EINVAL;
2102                 }
2103                 break;
2104         case BPF_FUNC_perf_event_read:
2105         case BPF_FUNC_perf_event_output:
2106         case BPF_FUNC_perf_event_read_value:
2107                 if (map->map_type != BPF_MAP_TYPE_PERF_EVENT_ARRAY)
2108                         goto error;
2109                 break;
2110         case BPF_FUNC_get_stackid:
2111                 if (map->map_type != BPF_MAP_TYPE_STACK_TRACE)
2112                         goto error;
2113                 break;
2114         case BPF_FUNC_current_task_under_cgroup:
2115         case BPF_FUNC_skb_under_cgroup:
2116                 if (map->map_type != BPF_MAP_TYPE_CGROUP_ARRAY)
2117                         goto error;
2118                 break;
2119         case BPF_FUNC_redirect_map:
2120                 if (map->map_type != BPF_MAP_TYPE_DEVMAP &&
2121                     map->map_type != BPF_MAP_TYPE_CPUMAP)
2122                         goto error;
2123                 break;
2124         case BPF_FUNC_sk_redirect_map:
2125         case BPF_FUNC_msg_redirect_map:
2126                 if (map->map_type != BPF_MAP_TYPE_SOCKMAP)
2127                         goto error;
2128                 break;
2129         case BPF_FUNC_sock_map_update:
2130                 if (map->map_type != BPF_MAP_TYPE_SOCKMAP)
2131                         goto error;
2132                 break;
2133         default:
2134                 break;
2135         }
2136
2137         return 0;
2138 error:
2139         verbose(env, "cannot pass map_type %d into func %s#%d\n",
2140                 map->map_type, func_id_name(func_id), func_id);
2141         return -EINVAL;
2142 }
2143
2144 static bool check_raw_mode_ok(const struct bpf_func_proto *fn)
2145 {
2146         int count = 0;
2147
2148         if (fn->arg1_type == ARG_PTR_TO_UNINIT_MEM)
2149                 count++;
2150         if (fn->arg2_type == ARG_PTR_TO_UNINIT_MEM)
2151                 count++;
2152         if (fn->arg3_type == ARG_PTR_TO_UNINIT_MEM)
2153                 count++;
2154         if (fn->arg4_type == ARG_PTR_TO_UNINIT_MEM)
2155                 count++;
2156         if (fn->arg5_type == ARG_PTR_TO_UNINIT_MEM)
2157                 count++;
2158
2159         /* We only support one arg being in raw mode at the moment,
2160          * which is sufficient for the helper functions we have
2161          * right now.
2162          */
2163         return count <= 1;
2164 }
2165
2166 static bool check_args_pair_invalid(enum bpf_arg_type arg_curr,
2167                                     enum bpf_arg_type arg_next)
2168 {
2169         return (arg_type_is_mem_ptr(arg_curr) &&
2170                 !arg_type_is_mem_size(arg_next)) ||
2171                (!arg_type_is_mem_ptr(arg_curr) &&
2172                 arg_type_is_mem_size(arg_next));
2173 }
2174
2175 static bool check_arg_pair_ok(const struct bpf_func_proto *fn)
2176 {
2177         /* bpf_xxx(..., buf, len) call will access 'len'
2178          * bytes from memory 'buf'. Both arg types need
2179          * to be paired, so make sure there's no buggy
2180          * helper function specification.
2181          */
2182         if (arg_type_is_mem_size(fn->arg1_type) ||
2183             arg_type_is_mem_ptr(fn->arg5_type)  ||
2184             check_args_pair_invalid(fn->arg1_type, fn->arg2_type) ||
2185             check_args_pair_invalid(fn->arg2_type, fn->arg3_type) ||
2186             check_args_pair_invalid(fn->arg3_type, fn->arg4_type) ||
2187             check_args_pair_invalid(fn->arg4_type, fn->arg5_type))
2188                 return false;
2189
2190         return true;
2191 }
2192
2193 static int check_func_proto(const struct bpf_func_proto *fn)
2194 {
2195         return check_raw_mode_ok(fn) &&
2196                check_arg_pair_ok(fn) ? 0 : -EINVAL;
2197 }
2198
2199 /* Packet data might have moved, any old PTR_TO_PACKET[_META,_END]
2200  * are now invalid, so turn them into unknown SCALAR_VALUE.
2201  */
2202 static void __clear_all_pkt_pointers(struct bpf_verifier_env *env,
2203                                      struct bpf_func_state *state)
2204 {
2205         struct bpf_reg_state *regs = state->regs, *reg;
2206         int i;
2207
2208         for (i = 0; i < MAX_BPF_REG; i++)
2209                 if (reg_is_pkt_pointer_any(&regs[i]))
2210                         mark_reg_unknown(env, regs, i);
2211
2212         for (i = 0; i < state->allocated_stack / BPF_REG_SIZE; i++) {
2213                 if (state->stack[i].slot_type[0] != STACK_SPILL)
2214                         continue;
2215                 reg = &state->stack[i].spilled_ptr;
2216                 if (reg_is_pkt_pointer_any(reg))
2217                         __mark_reg_unknown(reg);
2218         }
2219 }
2220
2221 static void clear_all_pkt_pointers(struct bpf_verifier_env *env)
2222 {
2223         struct bpf_verifier_state *vstate = env->cur_state;
2224         int i;
2225
2226         for (i = 0; i <= vstate->curframe; i++)
2227                 __clear_all_pkt_pointers(env, vstate->frame[i]);
2228 }
2229
2230 static int check_func_call(struct bpf_verifier_env *env, struct bpf_insn *insn,
2231                            int *insn_idx)
2232 {
2233         struct bpf_verifier_state *state = env->cur_state;
2234         struct bpf_func_state *caller, *callee;
2235         int i, subprog, target_insn;
2236
2237         if (state->curframe + 1 >= MAX_CALL_FRAMES) {
2238                 verbose(env, "the call stack of %d frames is too deep\n",
2239                         state->curframe + 2);
2240                 return -E2BIG;
2241         }
2242
2243         target_insn = *insn_idx + insn->imm;
2244         subprog = find_subprog(env, target_insn + 1);
2245         if (subprog < 0) {
2246                 verbose(env, "verifier bug. No program starts at insn %d\n",
2247                         target_insn + 1);
2248                 return -EFAULT;
2249         }
2250
2251         caller = state->frame[state->curframe];
2252         if (state->frame[state->curframe + 1]) {
2253                 verbose(env, "verifier bug. Frame %d already allocated\n",
2254                         state->curframe + 1);
2255                 return -EFAULT;
2256         }
2257
2258         callee = kzalloc(sizeof(*callee), GFP_KERNEL);
2259         if (!callee)
2260                 return -ENOMEM;
2261         state->frame[state->curframe + 1] = callee;
2262
2263         /* callee cannot access r0, r6 - r9 for reading and has to write
2264          * into its own stack before reading from it.
2265          * callee can read/write into caller's stack
2266          */
2267         init_func_state(env, callee,
2268                         /* remember the callsite, it will be used by bpf_exit */
2269                         *insn_idx /* callsite */,
2270                         state->curframe + 1 /* frameno within this callchain */,
2271                         subprog + 1 /* subprog number within this prog */);
2272
2273         /* copy r1 - r5 args that callee can access */
2274         for (i = BPF_REG_1; i <= BPF_REG_5; i++)
2275                 callee->regs[i] = caller->regs[i];
2276
2277         /* after the call regsiters r0 - r5 were scratched */
2278         for (i = 0; i < CALLER_SAVED_REGS; i++) {
2279                 mark_reg_not_init(env, caller->regs, caller_saved[i]);
2280                 check_reg_arg(env, caller_saved[i], DST_OP_NO_MARK);
2281         }
2282
2283         /* only increment it after check_reg_arg() finished */
2284         state->curframe++;
2285
2286         /* and go analyze first insn of the callee */
2287         *insn_idx = target_insn;
2288
2289         if (env->log.level) {
2290                 verbose(env, "caller:\n");
2291                 print_verifier_state(env, caller);
2292                 verbose(env, "callee:\n");
2293                 print_verifier_state(env, callee);
2294         }
2295         return 0;
2296 }
2297
2298 static int prepare_func_exit(struct bpf_verifier_env *env, int *insn_idx)
2299 {
2300         struct bpf_verifier_state *state = env->cur_state;
2301         struct bpf_func_state *caller, *callee;
2302         struct bpf_reg_state *r0;
2303
2304         callee = state->frame[state->curframe];
2305         r0 = &callee->regs[BPF_REG_0];
2306         if (r0->type == PTR_TO_STACK) {
2307                 /* technically it's ok to return caller's stack pointer
2308                  * (or caller's caller's pointer) back to the caller,
2309                  * since these pointers are valid. Only current stack
2310                  * pointer will be invalid as soon as function exits,
2311                  * but let's be conservative
2312                  */
2313                 verbose(env, "cannot return stack pointer to the caller\n");
2314                 return -EINVAL;
2315         }
2316
2317         state->curframe--;
2318         caller = state->frame[state->curframe];
2319         /* return to the caller whatever r0 had in the callee */
2320         caller->regs[BPF_REG_0] = *r0;
2321
2322         *insn_idx = callee->callsite + 1;
2323         if (env->log.level) {
2324                 verbose(env, "returning from callee:\n");
2325                 print_verifier_state(env, callee);
2326                 verbose(env, "to caller at %d:\n", *insn_idx);
2327                 print_verifier_state(env, caller);
2328         }
2329         /* clear everything in the callee */
2330         free_func_state(callee);
2331         state->frame[state->curframe + 1] = NULL;
2332         return 0;
2333 }
2334
2335 static void do_refine_retval_range(struct bpf_reg_state *regs, int ret_type,
2336                                    int func_id,
2337                                    struct bpf_call_arg_meta *meta)
2338 {
2339         struct bpf_reg_state *ret_reg = &regs[BPF_REG_0];
2340
2341         if (ret_type != RET_INTEGER ||
2342             (func_id != BPF_FUNC_get_stack &&
2343              func_id != BPF_FUNC_probe_read_str))
2344                 return;
2345
2346         ret_reg->smax_value = meta->msize_smax_value;
2347         ret_reg->umax_value = meta->msize_umax_value;
2348         __reg_deduce_bounds(ret_reg);
2349         __reg_bound_offset(ret_reg);
2350 }
2351
2352 static int check_helper_call(struct bpf_verifier_env *env, int func_id, int insn_idx)
2353 {
2354         const struct bpf_func_proto *fn = NULL;
2355         struct bpf_reg_state *regs;
2356         struct bpf_call_arg_meta meta;
2357         bool changes_data;
2358         int i, err;
2359
2360         /* find function prototype */
2361         if (func_id < 0 || func_id >= __BPF_FUNC_MAX_ID) {
2362                 verbose(env, "invalid func %s#%d\n", func_id_name(func_id),
2363                         func_id);
2364                 return -EINVAL;
2365         }
2366
2367         if (env->ops->get_func_proto)
2368                 fn = env->ops->get_func_proto(func_id, env->prog);
2369         if (!fn) {
2370                 verbose(env, "unknown func %s#%d\n", func_id_name(func_id),
2371                         func_id);
2372                 return -EINVAL;
2373         }
2374
2375         /* eBPF programs must be GPL compatible to use GPL-ed functions */
2376         if (!env->prog->gpl_compatible && fn->gpl_only) {
2377                 verbose(env, "cannot call GPL only function from proprietary program\n");
2378                 return -EINVAL;
2379         }
2380
2381         /* With LD_ABS/IND some JITs save/restore skb from r1. */
2382         changes_data = bpf_helper_changes_pkt_data(fn->func);
2383         if (changes_data && fn->arg1_type != ARG_PTR_TO_CTX) {
2384                 verbose(env, "kernel subsystem misconfigured func %s#%d: r1 != ctx\n",
2385                         func_id_name(func_id), func_id);
2386                 return -EINVAL;
2387         }
2388
2389         memset(&meta, 0, sizeof(meta));
2390         meta.pkt_access = fn->pkt_access;
2391
2392         err = check_func_proto(fn);
2393         if (err) {
2394                 verbose(env, "kernel subsystem misconfigured func %s#%d\n",
2395                         func_id_name(func_id), func_id);
2396                 return err;
2397         }
2398
2399         /* check args */
2400         err = check_func_arg(env, BPF_REG_1, fn->arg1_type, &meta);
2401         if (err)
2402                 return err;
2403         err = check_func_arg(env, BPF_REG_2, fn->arg2_type, &meta);
2404         if (err)
2405                 return err;
2406         if (func_id == BPF_FUNC_tail_call) {
2407                 if (meta.map_ptr == NULL) {
2408                         verbose(env, "verifier bug\n");
2409                         return -EINVAL;
2410                 }
2411                 env->insn_aux_data[insn_idx].map_ptr = meta.map_ptr;
2412         }
2413         err = check_func_arg(env, BPF_REG_3, fn->arg3_type, &meta);
2414         if (err)
2415                 return err;
2416         err = check_func_arg(env, BPF_REG_4, fn->arg4_type, &meta);
2417         if (err)
2418                 return err;
2419         err = check_func_arg(env, BPF_REG_5, fn->arg5_type, &meta);
2420         if (err)
2421                 return err;
2422
2423         /* Mark slots with STACK_MISC in case of raw mode, stack offset
2424          * is inferred from register state.
2425          */
2426         for (i = 0; i < meta.access_size; i++) {
2427                 err = check_mem_access(env, insn_idx, meta.regno, i, BPF_B,
2428                                        BPF_WRITE, -1, false);
2429                 if (err)
2430                         return err;
2431         }
2432
2433         regs = cur_regs(env);
2434         /* reset caller saved regs */
2435         for (i = 0; i < CALLER_SAVED_REGS; i++) {
2436                 mark_reg_not_init(env, regs, caller_saved[i]);
2437                 check_reg_arg(env, caller_saved[i], DST_OP_NO_MARK);
2438         }
2439
2440         /* update return register (already marked as written above) */
2441         if (fn->ret_type == RET_INTEGER) {
2442                 /* sets type to SCALAR_VALUE */
2443                 mark_reg_unknown(env, regs, BPF_REG_0);
2444         } else if (fn->ret_type == RET_VOID) {
2445                 regs[BPF_REG_0].type = NOT_INIT;
2446         } else if (fn->ret_type == RET_PTR_TO_MAP_VALUE_OR_NULL) {
2447                 struct bpf_insn_aux_data *insn_aux;
2448
2449                 regs[BPF_REG_0].type = PTR_TO_MAP_VALUE_OR_NULL;
2450                 /* There is no offset yet applied, variable or fixed */
2451                 mark_reg_known_zero(env, regs, BPF_REG_0);
2452                 regs[BPF_REG_0].off = 0;
2453                 /* remember map_ptr, so that check_map_access()
2454                  * can check 'value_size' boundary of memory access
2455                  * to map element returned from bpf_map_lookup_elem()
2456                  */
2457                 if (meta.map_ptr == NULL) {
2458                         verbose(env,
2459                                 "kernel subsystem misconfigured verifier\n");
2460                         return -EINVAL;
2461                 }
2462                 regs[BPF_REG_0].map_ptr = meta.map_ptr;
2463                 regs[BPF_REG_0].id = ++env->id_gen;
2464                 insn_aux = &env->insn_aux_data[insn_idx];
2465                 if (!insn_aux->map_ptr)
2466                         insn_aux->map_ptr = meta.map_ptr;
2467                 else if (insn_aux->map_ptr != meta.map_ptr)
2468                         insn_aux->map_ptr = BPF_MAP_PTR_POISON;
2469         } else {
2470                 verbose(env, "unknown return type %d of func %s#%d\n",
2471                         fn->ret_type, func_id_name(func_id), func_id);
2472                 return -EINVAL;
2473         }
2474
2475         do_refine_retval_range(regs, fn->ret_type, func_id, &meta);
2476
2477         err = check_map_func_compatibility(env, meta.map_ptr, func_id);
2478         if (err)
2479                 return err;
2480
2481         if (func_id == BPF_FUNC_get_stack && !env->prog->has_callchain_buf) {
2482                 const char *err_str;
2483
2484 #ifdef CONFIG_PERF_EVENTS
2485                 err = get_callchain_buffers(sysctl_perf_event_max_stack);
2486                 err_str = "cannot get callchain buffer for func %s#%d\n";
2487 #else
2488                 err = -ENOTSUPP;
2489                 err_str = "func %s#%d not supported without CONFIG_PERF_EVENTS\n";
2490 #endif
2491                 if (err) {
2492                         verbose(env, err_str, func_id_name(func_id), func_id);
2493                         return err;
2494                 }
2495
2496                 env->prog->has_callchain_buf = true;
2497         }
2498
2499         if (changes_data)
2500                 clear_all_pkt_pointers(env);
2501         return 0;
2502 }
2503
2504 static bool signed_add_overflows(s64 a, s64 b)
2505 {
2506         /* Do the add in u64, where overflow is well-defined */
2507         s64 res = (s64)((u64)a + (u64)b);
2508
2509         if (b < 0)
2510                 return res > a;
2511         return res < a;
2512 }
2513
2514 static bool signed_sub_overflows(s64 a, s64 b)
2515 {
2516         /* Do the sub in u64, where overflow is well-defined */
2517         s64 res = (s64)((u64)a - (u64)b);
2518
2519         if (b < 0)
2520                 return res < a;
2521         return res > a;
2522 }
2523
2524 static bool check_reg_sane_offset(struct bpf_verifier_env *env,
2525                                   const struct bpf_reg_state *reg,
2526                                   enum bpf_reg_type type)
2527 {
2528         bool known = tnum_is_const(reg->var_off);
2529         s64 val = reg->var_off.value;
2530         s64 smin = reg->smin_value;
2531
2532         if (known && (val >= BPF_MAX_VAR_OFF || val <= -BPF_MAX_VAR_OFF)) {
2533                 verbose(env, "math between %s pointer and %lld is not allowed\n",
2534                         reg_type_str[type], val);
2535                 return false;
2536         }
2537
2538         if (reg->off >= BPF_MAX_VAR_OFF || reg->off <= -BPF_MAX_VAR_OFF) {
2539                 verbose(env, "%s pointer offset %d is not allowed\n",
2540                         reg_type_str[type], reg->off);
2541                 return false;
2542         }
2543
2544         if (smin == S64_MIN) {
2545                 verbose(env, "math between %s pointer and register with unbounded min value is not allowed\n",
2546                         reg_type_str[type]);
2547                 return false;
2548         }
2549
2550         if (smin >= BPF_MAX_VAR_OFF || smin <= -BPF_MAX_VAR_OFF) {
2551                 verbose(env, "value %lld makes %s pointer be out of bounds\n",
2552                         smin, reg_type_str[type]);
2553                 return false;
2554         }
2555
2556         return true;
2557 }
2558
2559 /* Handles arithmetic on a pointer and a scalar: computes new min/max and var_off.
2560  * Caller should also handle BPF_MOV case separately.
2561  * If we return -EACCES, caller may want to try again treating pointer as a
2562  * scalar.  So we only emit a diagnostic if !env->allow_ptr_leaks.
2563  */
2564 static int adjust_ptr_min_max_vals(struct bpf_verifier_env *env,
2565                                    struct bpf_insn *insn,
2566                                    const struct bpf_reg_state *ptr_reg,
2567                                    const struct bpf_reg_state *off_reg)
2568 {
2569         struct bpf_verifier_state *vstate = env->cur_state;
2570         struct bpf_func_state *state = vstate->frame[vstate->curframe];
2571         struct bpf_reg_state *regs = state->regs, *dst_reg;
2572         bool known = tnum_is_const(off_reg->var_off);
2573         s64 smin_val = off_reg->smin_value, smax_val = off_reg->smax_value,
2574             smin_ptr = ptr_reg->smin_value, smax_ptr = ptr_reg->smax_value;
2575         u64 umin_val = off_reg->umin_value, umax_val = off_reg->umax_value,
2576             umin_ptr = ptr_reg->umin_value, umax_ptr = ptr_reg->umax_value;
2577         u8 opcode = BPF_OP(insn->code);
2578         u32 dst = insn->dst_reg;
2579
2580         dst_reg = &regs[dst];
2581
2582         if ((known && (smin_val != smax_val || umin_val != umax_val)) ||
2583             smin_val > smax_val || umin_val > umax_val) {
2584                 /* Taint dst register if offset had invalid bounds derived from
2585                  * e.g. dead branches.
2586                  */
2587                 __mark_reg_unknown(dst_reg);
2588                 return 0;
2589         }
2590
2591         if (BPF_CLASS(insn->code) != BPF_ALU64) {
2592                 /* 32-bit ALU ops on pointers produce (meaningless) scalars */
2593                 verbose(env,
2594                         "R%d 32-bit pointer arithmetic prohibited\n",
2595                         dst);
2596                 return -EACCES;
2597         }
2598
2599         if (ptr_reg->type == PTR_TO_MAP_VALUE_OR_NULL) {
2600                 verbose(env, "R%d pointer arithmetic on PTR_TO_MAP_VALUE_OR_NULL prohibited, null-check it first\n",
2601                         dst);
2602                 return -EACCES;
2603         }
2604         if (ptr_reg->type == CONST_PTR_TO_MAP) {
2605                 verbose(env, "R%d pointer arithmetic on CONST_PTR_TO_MAP prohibited\n",
2606                         dst);
2607                 return -EACCES;
2608         }
2609         if (ptr_reg->type == PTR_TO_PACKET_END) {
2610                 verbose(env, "R%d pointer arithmetic on PTR_TO_PACKET_END prohibited\n",
2611                         dst);
2612                 return -EACCES;
2613         }
2614
2615         /* In case of 'scalar += pointer', dst_reg inherits pointer type and id.
2616          * The id may be overwritten later if we create a new variable offset.
2617          */
2618         dst_reg->type = ptr_reg->type;
2619         dst_reg->id = ptr_reg->id;
2620
2621         if (!check_reg_sane_offset(env, off_reg, ptr_reg->type) ||
2622             !check_reg_sane_offset(env, ptr_reg, ptr_reg->type))
2623                 return -EINVAL;
2624
2625         switch (opcode) {
2626         case BPF_ADD:
2627                 /* We can take a fixed offset as long as it doesn't overflow
2628                  * the s32 'off' field
2629                  */
2630                 if (known && (ptr_reg->off + smin_val ==
2631                               (s64)(s32)(ptr_reg->off + smin_val))) {
2632                         /* pointer += K.  Accumulate it into fixed offset */
2633                         dst_reg->smin_value = smin_ptr;
2634                         dst_reg->smax_value = smax_ptr;
2635                         dst_reg->umin_value = umin_ptr;
2636                         dst_reg->umax_value = umax_ptr;
2637                         dst_reg->var_off = ptr_reg->var_off;
2638                         dst_reg->off = ptr_reg->off + smin_val;
2639                         dst_reg->range = ptr_reg->range;
2640                         break;
2641                 }
2642                 /* A new variable offset is created.  Note that off_reg->off
2643                  * == 0, since it's a scalar.
2644                  * dst_reg gets the pointer type and since some positive
2645                  * integer value was added to the pointer, give it a new 'id'
2646                  * if it's a PTR_TO_PACKET.
2647                  * this creates a new 'base' pointer, off_reg (variable) gets
2648                  * added into the variable offset, and we copy the fixed offset
2649                  * from ptr_reg.
2650                  */
2651                 if (signed_add_overflows(smin_ptr, smin_val) ||
2652                     signed_add_overflows(smax_ptr, smax_val)) {
2653                         dst_reg->smin_value = S64_MIN;
2654                         dst_reg->smax_value = S64_MAX;
2655                 } else {
2656                         dst_reg->smin_value = smin_ptr + smin_val;
2657                         dst_reg->smax_value = smax_ptr + smax_val;
2658                 }
2659                 if (umin_ptr + umin_val < umin_ptr ||
2660                     umax_ptr + umax_val < umax_ptr) {
2661                         dst_reg->umin_value = 0;
2662                         dst_reg->umax_value = U64_MAX;
2663                 } else {
2664                         dst_reg->umin_value = umin_ptr + umin_val;
2665                         dst_reg->umax_value = umax_ptr + umax_val;
2666                 }
2667                 dst_reg->var_off = tnum_add(ptr_reg->var_off, off_reg->var_off);
2668                 dst_reg->off = ptr_reg->off;
2669                 if (reg_is_pkt_pointer(ptr_reg)) {
2670                         dst_reg->id = ++env->id_gen;
2671                         /* something was added to pkt_ptr, set range to zero */
2672                         dst_reg->range = 0;
2673                 }
2674                 break;
2675         case BPF_SUB:
2676                 if (dst_reg == off_reg) {
2677                         /* scalar -= pointer.  Creates an unknown scalar */
2678                         verbose(env, "R%d tried to subtract pointer from scalar\n",
2679                                 dst);
2680                         return -EACCES;
2681                 }
2682                 /* We don't allow subtraction from FP, because (according to
2683                  * test_verifier.c test "invalid fp arithmetic", JITs might not
2684                  * be able to deal with it.
2685                  */
2686                 if (ptr_reg->type == PTR_TO_STACK) {
2687                         verbose(env, "R%d subtraction from stack pointer prohibited\n",
2688                                 dst);
2689                         return -EACCES;
2690                 }
2691                 if (known && (ptr_reg->off - smin_val ==
2692                               (s64)(s32)(ptr_reg->off - smin_val))) {
2693                         /* pointer -= K.  Subtract it from fixed offset */
2694                         dst_reg->smin_value = smin_ptr;
2695                         dst_reg->smax_value = smax_ptr;
2696                         dst_reg->umin_value = umin_ptr;
2697                         dst_reg->umax_value = umax_ptr;
2698                         dst_reg->var_off = ptr_reg->var_off;
2699                         dst_reg->id = ptr_reg->id;
2700                         dst_reg->off = ptr_reg->off - smin_val;
2701                         dst_reg->range = ptr_reg->range;
2702                         break;
2703                 }
2704                 /* A new variable offset is created.  If the subtrahend is known
2705                  * nonnegative, then any reg->range we had before is still good.
2706                  */
2707                 if (signed_sub_overflows(smin_ptr, smax_val) ||
2708                     signed_sub_overflows(smax_ptr, smin_val)) {
2709                         /* Overflow possible, we know nothing */
2710                         dst_reg->smin_value = S64_MIN;
2711                         dst_reg->smax_value = S64_MAX;
2712                 } else {
2713                         dst_reg->smin_value = smin_ptr - smax_val;
2714                         dst_reg->smax_value = smax_ptr - smin_val;
2715                 }
2716                 if (umin_ptr < umax_val) {
2717                         /* Overflow possible, we know nothing */
2718                         dst_reg->umin_value = 0;
2719                         dst_reg->umax_value = U64_MAX;
2720                 } else {
2721                         /* Cannot overflow (as long as bounds are consistent) */
2722                         dst_reg->umin_value = umin_ptr - umax_val;
2723                         dst_reg->umax_value = umax_ptr - umin_val;
2724                 }
2725                 dst_reg->var_off = tnum_sub(ptr_reg->var_off, off_reg->var_off);
2726                 dst_reg->off = ptr_reg->off;
2727                 if (reg_is_pkt_pointer(ptr_reg)) {
2728                         dst_reg->id = ++env->id_gen;
2729                         /* something was added to pkt_ptr, set range to zero */
2730                         if (smin_val < 0)
2731                                 dst_reg->range = 0;
2732                 }
2733                 break;
2734         case BPF_AND:
2735         case BPF_OR:
2736         case BPF_XOR:
2737                 /* bitwise ops on pointers are troublesome, prohibit. */
2738                 verbose(env, "R%d bitwise operator %s on pointer prohibited\n",
2739                         dst, bpf_alu_string[opcode >> 4]);
2740                 return -EACCES;
2741         default:
2742                 /* other operators (e.g. MUL,LSH) produce non-pointer results */
2743                 verbose(env, "R%d pointer arithmetic with %s operator prohibited\n",
2744                         dst, bpf_alu_string[opcode >> 4]);
2745                 return -EACCES;
2746         }
2747
2748         if (!check_reg_sane_offset(env, dst_reg, ptr_reg->type))
2749                 return -EINVAL;
2750
2751         __update_reg_bounds(dst_reg);
2752         __reg_deduce_bounds(dst_reg);
2753         __reg_bound_offset(dst_reg);
2754         return 0;
2755 }
2756
2757 /* WARNING: This function does calculations on 64-bit values, but the actual
2758  * execution may occur on 32-bit values. Therefore, things like bitshifts
2759  * need extra checks in the 32-bit case.
2760  */
2761 static int adjust_scalar_min_max_vals(struct bpf_verifier_env *env,
2762                                       struct bpf_insn *insn,
2763                                       struct bpf_reg_state *dst_reg,
2764                                       struct bpf_reg_state src_reg)
2765 {
2766         struct bpf_reg_state *regs = cur_regs(env);
2767         u8 opcode = BPF_OP(insn->code);
2768         bool src_known, dst_known;
2769         s64 smin_val, smax_val;
2770         u64 umin_val, umax_val;
2771         u64 insn_bitness = (BPF_CLASS(insn->code) == BPF_ALU64) ? 64 : 32;
2772
2773         smin_val = src_reg.smin_value;
2774         smax_val = src_reg.smax_value;
2775         umin_val = src_reg.umin_value;
2776         umax_val = src_reg.umax_value;
2777         src_known = tnum_is_const(src_reg.var_off);
2778         dst_known = tnum_is_const(dst_reg->var_off);
2779
2780         if ((src_known && (smin_val != smax_val || umin_val != umax_val)) ||
2781             smin_val > smax_val || umin_val > umax_val) {
2782                 /* Taint dst register if offset had invalid bounds derived from
2783                  * e.g. dead branches.
2784                  */
2785                 __mark_reg_unknown(dst_reg);
2786                 return 0;
2787         }
2788
2789         if (!src_known &&
2790             opcode != BPF_ADD && opcode != BPF_SUB && opcode != BPF_AND) {
2791                 __mark_reg_unknown(dst_reg);
2792                 return 0;
2793         }
2794
2795         switch (opcode) {
2796         case BPF_ADD:
2797                 if (signed_add_overflows(dst_reg->smin_value, smin_val) ||
2798                     signed_add_overflows(dst_reg->smax_value, smax_val)) {
2799                         dst_reg->smin_value = S64_MIN;
2800                         dst_reg->smax_value = S64_MAX;
2801                 } else {
2802                         dst_reg->smin_value += smin_val;
2803                         dst_reg->smax_value += smax_val;
2804                 }
2805                 if (dst_reg->umin_value + umin_val < umin_val ||
2806                     dst_reg->umax_value + umax_val < umax_val) {
2807                         dst_reg->umin_value = 0;
2808                         dst_reg->umax_value = U64_MAX;
2809                 } else {
2810                         dst_reg->umin_value += umin_val;
2811                         dst_reg->umax_value += umax_val;
2812                 }
2813                 dst_reg->var_off = tnum_add(dst_reg->var_off, src_reg.var_off);
2814                 break;
2815         case BPF_SUB:
2816                 if (signed_sub_overflows(dst_reg->smin_value, smax_val) ||
2817                     signed_sub_overflows(dst_reg->smax_value, smin_val)) {
2818                         /* Overflow possible, we know nothing */
2819                         dst_reg->smin_value = S64_MIN;
2820                         dst_reg->smax_value = S64_MAX;
2821                 } else {
2822                         dst_reg->smin_value -= smax_val;
2823                         dst_reg->smax_value -= smin_val;
2824                 }
2825                 if (dst_reg->umin_value < umax_val) {
2826                         /* Overflow possible, we know nothing */
2827                         dst_reg->umin_value = 0;
2828                         dst_reg->umax_value = U64_MAX;
2829                 } else {
2830                         /* Cannot overflow (as long as bounds are consistent) */
2831                         dst_reg->umin_value -= umax_val;
2832                         dst_reg->umax_value -= umin_val;
2833                 }
2834                 dst_reg->var_off = tnum_sub(dst_reg->var_off, src_reg.var_off);
2835                 break;
2836         case BPF_MUL:
2837                 dst_reg->var_off = tnum_mul(dst_reg->var_off, src_reg.var_off);
2838                 if (smin_val < 0 || dst_reg->smin_value < 0) {
2839                         /* Ain't nobody got time to multiply that sign */
2840                         __mark_reg_unbounded(dst_reg);
2841                         __update_reg_bounds(dst_reg);
2842                         break;
2843                 }
2844                 /* Both values are positive, so we can work with unsigned and
2845                  * copy the result to signed (unless it exceeds S64_MAX).
2846                  */
2847                 if (umax_val > U32_MAX || dst_reg->umax_value > U32_MAX) {
2848                         /* Potential overflow, we know nothing */
2849                         __mark_reg_unbounded(dst_reg);
2850                         /* (except what we can learn from the var_off) */
2851                         __update_reg_bounds(dst_reg);
2852                         break;
2853                 }
2854                 dst_reg->umin_value *= umin_val;
2855                 dst_reg->umax_value *= umax_val;
2856                 if (dst_reg->umax_value > S64_MAX) {
2857                         /* Overflow possible, we know nothing */
2858                         dst_reg->smin_value = S64_MIN;
2859                         dst_reg->smax_value = S64_MAX;
2860                 } else {
2861                         dst_reg->smin_value = dst_reg->umin_value;
2862                         dst_reg->smax_value = dst_reg->umax_value;
2863                 }
2864                 break;
2865         case BPF_AND:
2866                 if (src_known && dst_known) {
2867                         __mark_reg_known(dst_reg, dst_reg->var_off.value &
2868                                                   src_reg.var_off.value);
2869                         break;
2870                 }
2871                 /* We get our minimum from the var_off, since that's inherently
2872                  * bitwise.  Our maximum is the minimum of the operands' maxima.
2873                  */
2874                 dst_reg->var_off = tnum_and(dst_reg->var_off, src_reg.var_off);
2875                 dst_reg->umin_value = dst_reg->var_off.value;
2876                 dst_reg->umax_value = min(dst_reg->umax_value, umax_val);
2877                 if (dst_reg->smin_value < 0 || smin_val < 0) {
2878                         /* Lose signed bounds when ANDing negative numbers,
2879                          * ain't nobody got time for that.
2880                          */
2881                         dst_reg->smin_value = S64_MIN;
2882                         dst_reg->smax_value = S64_MAX;
2883                 } else {
2884                         /* ANDing two positives gives a positive, so safe to
2885                          * cast result into s64.
2886                          */
2887                         dst_reg->smin_value = dst_reg->umin_value;
2888                         dst_reg->smax_value = dst_reg->umax_value;
2889                 }
2890                 /* We may learn something more from the var_off */
2891                 __update_reg_bounds(dst_reg);
2892                 break;
2893         case BPF_OR:
2894                 if (src_known && dst_known) {
2895                         __mark_reg_known(dst_reg, dst_reg->var_off.value |
2896                                                   src_reg.var_off.value);
2897                         break;
2898                 }
2899                 /* We get our maximum from the var_off, and our minimum is the
2900                  * maximum of the operands' minima
2901                  */
2902                 dst_reg->var_off = tnum_or(dst_reg->var_off, src_reg.var_off);
2903                 dst_reg->umin_value = max(dst_reg->umin_value, umin_val);
2904                 dst_reg->umax_value = dst_reg->var_off.value |
2905                                       dst_reg->var_off.mask;
2906                 if (dst_reg->smin_value < 0 || smin_val < 0) {
2907                         /* Lose signed bounds when ORing negative numbers,
2908                          * ain't nobody got time for that.
2909                          */
2910                         dst_reg->smin_value = S64_MIN;
2911                         dst_reg->smax_value = S64_MAX;
2912                 } else {
2913                         /* ORing two positives gives a positive, so safe to
2914                          * cast result into s64.
2915                          */
2916                         dst_reg->smin_value = dst_reg->umin_value;
2917                         dst_reg->smax_value = dst_reg->umax_value;
2918                 }
2919                 /* We may learn something more from the var_off */
2920                 __update_reg_bounds(dst_reg);
2921                 break;
2922         case BPF_LSH:
2923                 if (umax_val >= insn_bitness) {
2924                         /* Shifts greater than 31 or 63 are undefined.
2925                          * This includes shifts by a negative number.
2926                          */
2927                         mark_reg_unknown(env, regs, insn->dst_reg);
2928                         break;
2929                 }
2930                 /* We lose all sign bit information (except what we can pick
2931                  * up from var_off)
2932                  */
2933                 dst_reg->smin_value = S64_MIN;
2934                 dst_reg->smax_value = S64_MAX;
2935                 /* If we might shift our top bit out, then we know nothing */
2936                 if (dst_reg->umax_value > 1ULL << (63 - umax_val)) {
2937                         dst_reg->umin_value = 0;
2938                         dst_reg->umax_value = U64_MAX;
2939                 } else {
2940                         dst_reg->umin_value <<= umin_val;
2941                         dst_reg->umax_value <<= umax_val;
2942                 }
2943                 dst_reg->var_off = tnum_lshift(dst_reg->var_off, umin_val);
2944                 /* We may learn something more from the var_off */
2945                 __update_reg_bounds(dst_reg);
2946                 break;
2947         case BPF_RSH:
2948                 if (umax_val >= insn_bitness) {
2949                         /* Shifts greater than 31 or 63 are undefined.
2950                          * This includes shifts by a negative number.
2951                          */
2952                         mark_reg_unknown(env, regs, insn->dst_reg);
2953                         break;
2954                 }
2955                 /* BPF_RSH is an unsigned shift.  If the value in dst_reg might
2956                  * be negative, then either:
2957                  * 1) src_reg might be zero, so the sign bit of the result is
2958                  *    unknown, so we lose our signed bounds
2959                  * 2) it's known negative, thus the unsigned bounds capture the
2960                  *    signed bounds
2961                  * 3) the signed bounds cross zero, so they tell us nothing
2962                  *    about the result
2963                  * If the value in dst_reg is known nonnegative, then again the
2964                  * unsigned bounts capture the signed bounds.
2965                  * Thus, in all cases it suffices to blow away our signed bounds
2966                  * and rely on inferring new ones from the unsigned bounds and
2967                  * var_off of the result.
2968                  */
2969                 dst_reg->smin_value = S64_MIN;
2970                 dst_reg->smax_value = S64_MAX;
2971                 dst_reg->var_off = tnum_rshift(dst_reg->var_off, umin_val);
2972                 dst_reg->umin_value >>= umax_val;
2973                 dst_reg->umax_value >>= umin_val;
2974                 /* We may learn something more from the var_off */
2975                 __update_reg_bounds(dst_reg);
2976                 break;
2977         default:
2978                 mark_reg_unknown(env, regs, insn->dst_reg);
2979                 break;
2980         }
2981
2982         if (BPF_CLASS(insn->code) != BPF_ALU64) {
2983                 /* 32-bit ALU ops are (32,32)->32 */
2984                 coerce_reg_to_size(dst_reg, 4);
2985                 coerce_reg_to_size(&src_reg, 4);
2986         }
2987
2988         __reg_deduce_bounds(dst_reg);
2989         __reg_bound_offset(dst_reg);
2990         return 0;
2991 }
2992
2993 /* Handles ALU ops other than BPF_END, BPF_NEG and BPF_MOV: computes new min/max
2994  * and var_off.
2995  */
2996 static int adjust_reg_min_max_vals(struct bpf_verifier_env *env,
2997                                    struct bpf_insn *insn)
2998 {
2999         struct bpf_verifier_state *vstate = env->cur_state;
3000         struct bpf_func_state *state = vstate->frame[vstate->curframe];
3001         struct bpf_reg_state *regs = state->regs, *dst_reg, *src_reg;
3002         struct bpf_reg_state *ptr_reg = NULL, off_reg = {0};
3003         u8 opcode = BPF_OP(insn->code);
3004
3005         dst_reg = &regs[insn->dst_reg];
3006         src_reg = NULL;
3007         if (dst_reg->type != SCALAR_VALUE)
3008                 ptr_reg = dst_reg;
3009         if (BPF_SRC(insn->code) == BPF_X) {
3010                 src_reg = &regs[insn->src_reg];
3011                 if (src_reg->type != SCALAR_VALUE) {
3012                         if (dst_reg->type != SCALAR_VALUE) {
3013                                 /* Combining two pointers by any ALU op yields
3014                                  * an arbitrary scalar. Disallow all math except
3015                                  * pointer subtraction
3016                                  */
3017                                 if (opcode == BPF_SUB){
3018                                         mark_reg_unknown(env, regs, insn->dst_reg);
3019                                         return 0;
3020                                 }
3021                                 verbose(env, "R%d pointer %s pointer prohibited\n",
3022                                         insn->dst_reg,
3023                                         bpf_alu_string[opcode >> 4]);
3024                                 return -EACCES;
3025                         } else {
3026                                 /* scalar += pointer
3027                                  * This is legal, but we have to reverse our
3028                                  * src/dest handling in computing the range
3029                                  */
3030                                 return adjust_ptr_min_max_vals(env, insn,
3031                                                                src_reg, dst_reg);
3032                         }
3033                 } else if (ptr_reg) {
3034                         /* pointer += scalar */
3035                         return adjust_ptr_min_max_vals(env, insn,
3036                                                        dst_reg, src_reg);
3037                 }
3038         } else {
3039                 /* Pretend the src is a reg with a known value, since we only
3040                  * need to be able to read from this state.
3041                  */
3042                 off_reg.type = SCALAR_VALUE;
3043                 __mark_reg_known(&off_reg, insn->imm);
3044                 src_reg = &off_reg;
3045                 if (ptr_reg) /* pointer += K */
3046                         return adjust_ptr_min_max_vals(env, insn,
3047                                                        ptr_reg, src_reg);
3048         }
3049
3050         /* Got here implies adding two SCALAR_VALUEs */
3051         if (WARN_ON_ONCE(ptr_reg)) {
3052                 print_verifier_state(env, state);
3053                 verbose(env, "verifier internal error: unexpected ptr_reg\n");
3054                 return -EINVAL;
3055         }
3056         if (WARN_ON(!src_reg)) {
3057                 print_verifier_state(env, state);
3058                 verbose(env, "verifier internal error: no src_reg\n");
3059                 return -EINVAL;
3060         }
3061         return adjust_scalar_min_max_vals(env, insn, dst_reg, *src_reg);
3062 }
3063
3064 /* check validity of 32-bit and 64-bit arithmetic operations */
3065 static int check_alu_op(struct bpf_verifier_env *env, struct bpf_insn *insn)
3066 {
3067         struct bpf_reg_state *regs = cur_regs(env);
3068         u8 opcode = BPF_OP(insn->code);
3069         int err;
3070
3071         if (opcode == BPF_END || opcode == BPF_NEG) {
3072                 if (opcode == BPF_NEG) {
3073                         if (BPF_SRC(insn->code) != 0 ||
3074                             insn->src_reg != BPF_REG_0 ||
3075                             insn->off != 0 || insn->imm != 0) {
3076                                 verbose(env, "BPF_NEG uses reserved fields\n");
3077                                 return -EINVAL;
3078                         }
3079                 } else {
3080                         if (insn->src_reg != BPF_REG_0 || insn->off != 0 ||
3081                             (insn->imm != 16 && insn->imm != 32 && insn->imm != 64) ||
3082                             BPF_CLASS(insn->code) == BPF_ALU64) {
3083                                 verbose(env, "BPF_END uses reserved fields\n");
3084                                 return -EINVAL;
3085                         }
3086                 }
3087
3088                 /* check src operand */
3089                 err = check_reg_arg(env, insn->dst_reg, SRC_OP);
3090                 if (err)
3091                         return err;
3092
3093                 if (is_pointer_value(env, insn->dst_reg)) {
3094                         verbose(env, "R%d pointer arithmetic prohibited\n",
3095                                 insn->dst_reg);
3096                         return -EACCES;
3097                 }
3098
3099                 /* check dest operand */
3100                 err = check_reg_arg(env, insn->dst_reg, DST_OP);
3101                 if (err)
3102                         return err;
3103
3104         } else if (opcode == BPF_MOV) {
3105
3106                 if (BPF_SRC(insn->code) == BPF_X) {
3107                         if (insn->imm != 0 || insn->off != 0) {
3108                                 verbose(env, "BPF_MOV uses reserved fields\n");
3109                                 return -EINVAL;
3110                         }
3111
3112                         /* check src operand */
3113                         err = check_reg_arg(env, insn->src_reg, SRC_OP);
3114                         if (err)
3115                                 return err;
3116                 } else {
3117                         if (insn->src_reg != BPF_REG_0 || insn->off != 0) {
3118                                 verbose(env, "BPF_MOV uses reserved fields\n");
3119                                 return -EINVAL;
3120                         }
3121                 }
3122
3123                 /* check dest operand */
3124                 err = check_reg_arg(env, insn->dst_reg, DST_OP);
3125                 if (err)
3126                         return err;
3127
3128                 if (BPF_SRC(insn->code) == BPF_X) {
3129                         if (BPF_CLASS(insn->code) == BPF_ALU64) {
3130                                 /* case: R1 = R2
3131                                  * copy register state to dest reg
3132                                  */
3133                                 regs[insn->dst_reg] = regs[insn->src_reg];
3134                                 regs[insn->dst_reg].live |= REG_LIVE_WRITTEN;
3135                         } else {
3136                                 /* R1 = (u32) R2 */
3137                                 if (is_pointer_value(env, insn->src_reg)) {
3138                                         verbose(env,
3139                                                 "R%d partial copy of pointer\n",
3140                                                 insn->src_reg);
3141                                         return -EACCES;
3142                                 }
3143                                 mark_reg_unknown(env, regs, insn->dst_reg);
3144                                 coerce_reg_to_size(&regs[insn->dst_reg], 4);
3145                         }
3146                 } else {
3147                         /* case: R = imm
3148                          * remember the value we stored into this reg
3149                          */
3150                         regs[insn->dst_reg].type = SCALAR_VALUE;
3151                         if (BPF_CLASS(insn->code) == BPF_ALU64) {
3152                                 __mark_reg_known(regs + insn->dst_reg,
3153                                                  insn->imm);
3154                         } else {
3155                                 __mark_reg_known(regs + insn->dst_reg,
3156                                                  (u32)insn->imm);
3157                         }
3158                 }
3159
3160         } else if (opcode > BPF_END) {
3161                 verbose(env, "invalid BPF_ALU opcode %x\n", opcode);
3162                 return -EINVAL;
3163
3164         } else {        /* all other ALU ops: and, sub, xor, add, ... */
3165
3166                 if (BPF_SRC(insn->code) == BPF_X) {
3167                         if (insn->imm != 0 || insn->off != 0) {
3168                                 verbose(env, "BPF_ALU uses reserved fields\n");
3169                                 return -EINVAL;
3170                         }
3171                         /* check src1 operand */
3172                         err = check_reg_arg(env, insn->src_reg, SRC_OP);
3173                         if (err)
3174                                 return err;
3175                 } else {
3176                         if (insn->src_reg != BPF_REG_0 || insn->off != 0) {
3177                                 verbose(env, "BPF_ALU uses reserved fields\n");
3178                                 return -EINVAL;
3179                         }
3180                 }
3181
3182                 /* check src2 operand */
3183                 err = check_reg_arg(env, insn->dst_reg, SRC_OP);
3184                 if (err)
3185                         return err;
3186
3187                 if ((opcode == BPF_MOD || opcode == BPF_DIV) &&
3188                     BPF_SRC(insn->code) == BPF_K && insn->imm == 0) {
3189                         verbose(env, "div by zero\n");
3190                         return -EINVAL;
3191                 }
3192
3193                 if (opcode == BPF_ARSH && BPF_CLASS(insn->code) != BPF_ALU64) {
3194                         verbose(env, "BPF_ARSH not supported for 32 bit ALU\n");
3195                         return -EINVAL;
3196                 }
3197
3198                 if ((opcode == BPF_LSH || opcode == BPF_RSH ||
3199                      opcode == BPF_ARSH) && BPF_SRC(insn->code) == BPF_K) {
3200                         int size = BPF_CLASS(insn->code) == BPF_ALU64 ? 64 : 32;
3201
3202                         if (insn->imm < 0 || insn->imm >= size) {
3203                                 verbose(env, "invalid shift %d\n", insn->imm);
3204                                 return -EINVAL;
3205                         }
3206                 }
3207
3208                 /* check dest operand */
3209                 err = check_reg_arg(env, insn->dst_reg, DST_OP_NO_MARK);
3210                 if (err)
3211                         return err;
3212
3213                 return adjust_reg_min_max_vals(env, insn);
3214         }
3215
3216         return 0;
3217 }
3218
3219 static void find_good_pkt_pointers(struct bpf_verifier_state *vstate,
3220                                    struct bpf_reg_state *dst_reg,
3221                                    enum bpf_reg_type type,
3222                                    bool range_right_open)
3223 {
3224         struct bpf_func_state *state = vstate->frame[vstate->curframe];
3225         struct bpf_reg_state *regs = state->regs, *reg;
3226         u16 new_range;
3227         int i, j;
3228
3229         if (dst_reg->off < 0 ||
3230             (dst_reg->off == 0 && range_right_open))
3231                 /* This doesn't give us any range */
3232                 return;
3233
3234         if (dst_reg->umax_value > MAX_PACKET_OFF ||
3235             dst_reg->umax_value + dst_reg->off > MAX_PACKET_OFF)
3236                 /* Risk of overflow.  For instance, ptr + (1<<63) may be less
3237                  * than pkt_end, but that's because it's also less than pkt.
3238                  */
3239                 return;
3240
3241         new_range = dst_reg->off;
3242         if (range_right_open)
3243                 new_range--;
3244
3245         /* Examples for register markings:
3246          *
3247          * pkt_data in dst register:
3248          *
3249          *   r2 = r3;
3250          *   r2 += 8;
3251          *   if (r2 > pkt_end) goto <handle exception>
3252          *   <access okay>
3253          *
3254          *   r2 = r3;
3255          *   r2 += 8;
3256          *   if (r2 < pkt_end) goto <access okay>
3257          *   <handle exception>
3258          *
3259          *   Where:
3260          *     r2 == dst_reg, pkt_end == src_reg
3261          *     r2=pkt(id=n,off=8,r=0)
3262          *     r3=pkt(id=n,off=0,r=0)
3263          *
3264          * pkt_data in src register:
3265          *
3266          *   r2 = r3;
3267          *   r2 += 8;
3268          *   if (pkt_end >= r2) goto <access okay>
3269          *   <handle exception>
3270          *
3271          *   r2 = r3;
3272          *   r2 += 8;
3273          *   if (pkt_end <= r2) goto <handle exception>
3274          *   <access okay>
3275          *
3276          *   Where:
3277          *     pkt_end == dst_reg, r2 == src_reg
3278          *     r2=pkt(id=n,off=8,r=0)
3279          *     r3=pkt(id=n,off=0,r=0)
3280          *
3281          * Find register r3 and mark its range as r3=pkt(id=n,off=0,r=8)
3282          * or r3=pkt(id=n,off=0,r=8-1), so that range of bytes [r3, r3 + 8)
3283          * and [r3, r3 + 8-1) respectively is safe to access depending on
3284          * the check.
3285          */
3286
3287         /* If our ids match, then we must have the same max_value.  And we
3288          * don't care about the other reg's fixed offset, since if it's too big
3289          * the range won't allow anything.
3290          * dst_reg->off is known < MAX_PACKET_OFF, therefore it fits in a u16.
3291          */
3292         for (i = 0; i < MAX_BPF_REG; i++)
3293                 if (regs[i].type == type && regs[i].id == dst_reg->id)
3294                         /* keep the maximum range already checked */
3295                         regs[i].range = max(regs[i].range, new_range);
3296
3297         for (j = 0; j <= vstate->curframe; j++) {
3298                 state = vstate->frame[j];
3299                 for (i = 0; i < state->allocated_stack / BPF_REG_SIZE; i++) {
3300                         if (state->stack[i].slot_type[0] != STACK_SPILL)
3301                                 continue;
3302                         reg = &state->stack[i].spilled_ptr;
3303                         if (reg->type == type && reg->id == dst_reg->id)
3304                                 reg->range = max(reg->range, new_range);
3305                 }
3306         }
3307 }
3308
3309 /* Adjusts the register min/max values in the case that the dst_reg is the
3310  * variable register that we are working on, and src_reg is a constant or we're
3311  * simply doing a BPF_K check.
3312  * In JEQ/JNE cases we also adjust the var_off values.
3313  */
3314 static void reg_set_min_max(struct bpf_reg_state *true_reg,
3315                             struct bpf_reg_state *false_reg, u64 val,
3316                             u8 opcode)
3317 {
3318         /* If the dst_reg is a pointer, we can't learn anything about its
3319          * variable offset from the compare (unless src_reg were a pointer into
3320          * the same object, but we don't bother with that.
3321          * Since false_reg and true_reg have the same type by construction, we
3322          * only need to check one of them for pointerness.
3323          */
3324         if (__is_pointer_value(false, false_reg))
3325                 return;
3326
3327         switch (opcode) {
3328         case BPF_JEQ:
3329                 /* If this is false then we know nothing Jon Snow, but if it is
3330                  * true then we know for sure.
3331                  */
3332                 __mark_reg_known(true_reg, val);
3333                 break;
3334         case BPF_JNE:
3335                 /* If this is true we know nothing Jon Snow, but if it is false
3336                  * we know the value for sure;
3337                  */
3338                 __mark_reg_known(false_reg, val);
3339                 break;
3340         case BPF_JGT:
3341                 false_reg->umax_value = min(false_reg->umax_value, val);
3342                 true_reg->umin_value = max(true_reg->umin_value, val + 1);
3343                 break;
3344         case BPF_JSGT:
3345                 false_reg->smax_value = min_t(s64, false_reg->smax_value, val);
3346                 true_reg->smin_value = max_t(s64, true_reg->smin_value, val + 1);
3347                 break;
3348         case BPF_JLT:
3349                 false_reg->umin_value = max(false_reg->umin_value, val);
3350                 true_reg->umax_value = min(true_reg->umax_value, val - 1);
3351                 break;
3352         case BPF_JSLT:
3353                 false_reg->smin_value = max_t(s64, false_reg->smin_value, val);
3354                 true_reg->smax_value = min_t(s64, true_reg->smax_value, val - 1);
3355                 break;
3356         case BPF_JGE:
3357                 false_reg->umax_value = min(false_reg->umax_value, val - 1);
3358                 true_reg->umin_value = max(true_reg->umin_value, val);
3359                 break;
3360         case BPF_JSGE:
3361                 false_reg->smax_value = min_t(s64, false_reg->smax_value, val - 1);
3362                 true_reg->smin_value = max_t(s64, true_reg->smin_value, val);
3363                 break;
3364         case BPF_JLE:
3365                 false_reg->umin_value = max(false_reg->umin_value, val + 1);
3366                 true_reg->umax_value = min(true_reg->umax_value, val);
3367                 break;
3368         case BPF_JSLE:
3369                 false_reg->smin_value = max_t(s64, false_reg->smin_value, val + 1);
3370                 true_reg->smax_value = min_t(s64, true_reg->smax_value, val);
3371                 break;
3372         default:
3373                 break;
3374         }
3375
3376         __reg_deduce_bounds(false_reg);
3377         __reg_deduce_bounds(true_reg);
3378         /* We might have learned some bits from the bounds. */
3379         __reg_bound_offset(false_reg);
3380         __reg_bound_offset(true_reg);
3381         /* Intersecting with the old var_off might have improved our bounds
3382          * slightly.  e.g. if umax was 0x7f...f and var_off was (0; 0xf...fc),
3383          * then new var_off is (0; 0x7f...fc) which improves our umax.
3384          */
3385         __update_reg_bounds(false_reg);
3386         __update_reg_bounds(true_reg);
3387 }
3388
3389 /* Same as above, but for the case that dst_reg holds a constant and src_reg is
3390  * the variable reg.
3391  */
3392 static void reg_set_min_max_inv(struct bpf_reg_state *true_reg,
3393                                 struct bpf_reg_state *false_reg, u64 val,
3394                                 u8 opcode)
3395 {
3396         if (__is_pointer_value(false, false_reg))
3397                 return;
3398
3399         switch (opcode) {
3400         case BPF_JEQ:
3401                 /* If this is false then we know nothing Jon Snow, but if it is
3402                  * true then we know for sure.
3403                  */
3404                 __mark_reg_known(true_reg, val);
3405                 break;
3406         case BPF_JNE:
3407                 /* If this is true we know nothing Jon Snow, but if it is false
3408                  * we know the value for sure;
3409                  */
3410                 __mark_reg_known(false_reg, val);
3411                 break;
3412         case BPF_JGT:
3413                 true_reg->umax_value = min(true_reg->umax_value, val - 1);
3414                 false_reg->umin_value = max(false_reg->umin_value, val);
3415                 break;
3416         case BPF_JSGT:
3417                 true_reg->smax_value = min_t(s64, true_reg->smax_value, val - 1);
3418                 false_reg->smin_value = max_t(s64, false_reg->smin_value, val);
3419                 break;
3420         case BPF_JLT:
3421                 true_reg->umin_value = max(true_reg->umin_value, val + 1);
3422                 false_reg->umax_value = min(false_reg->umax_value, val);
3423                 break;
3424         case BPF_JSLT:
3425                 true_reg->smin_value = max_t(s64, true_reg->smin_value, val + 1);
3426                 false_reg->smax_value = min_t(s64, false_reg->smax_value, val);
3427                 break;
3428         case BPF_JGE:
3429                 true_reg->umax_value = min(true_reg->umax_value, val);
3430                 false_reg->umin_value = max(false_reg->umin_value, val + 1);
3431                 break;
3432         case BPF_JSGE:
3433                 true_reg->smax_value = min_t(s64, true_reg->smax_value, val);
3434                 false_reg->smin_value = max_t(s64, false_reg->smin_value, val + 1);
3435                 break;
3436         case BPF_JLE:
3437                 true_reg->umin_value = max(true_reg->umin_value, val);
3438                 false_reg->umax_value = min(false_reg->umax_value, val - 1);
3439                 break;
3440         case BPF_JSLE:
3441                 true_reg->smin_value = max_t(s64, true_reg->smin_value, val);
3442                 false_reg->smax_value = min_t(s64, false_reg->smax_value, val - 1);
3443                 break;
3444         default:
3445                 break;
3446         }
3447
3448         __reg_deduce_bounds(false_reg);
3449         __reg_deduce_bounds(true_reg);
3450         /* We might have learned some bits from the bounds. */
3451         __reg_bound_offset(false_reg);
3452         __reg_bound_offset(true_reg);
3453         /* Intersecting with the old var_off might have improved our bounds
3454          * slightly.  e.g. if umax was 0x7f...f and var_off was (0; 0xf...fc),
3455          * then new var_off is (0; 0x7f...fc) which improves our umax.
3456          */
3457         __update_reg_bounds(false_reg);
3458         __update_reg_bounds(true_reg);
3459 }
3460
3461 /* Regs are known to be equal, so intersect their min/max/var_off */
3462 static void __reg_combine_min_max(struct bpf_reg_state *src_reg,
3463                                   struct bpf_reg_state *dst_reg)
3464 {
3465         src_reg->umin_value = dst_reg->umin_value = max(src_reg->umin_value,
3466                                                         dst_reg->umin_value);
3467         src_reg->umax_value = dst_reg->umax_value = min(src_reg->umax_value,
3468                                                         dst_reg->umax_value);
3469         src_reg->smin_value = dst_reg->smin_value = max(src_reg->smin_value,
3470                                                         dst_reg->smin_value);
3471         src_reg->smax_value = dst_reg->smax_value = min(src_reg->smax_value,
3472                                                         dst_reg->smax_value);
3473         src_reg->var_off = dst_reg->var_off = tnum_intersect(src_reg->var_off,
3474                                                              dst_reg->var_off);
3475         /* We might have learned new bounds from the var_off. */
3476         __update_reg_bounds(src_reg);
3477         __update_reg_bounds(dst_reg);
3478         /* We might have learned something about the sign bit. */
3479         __reg_deduce_bounds(src_reg);
3480         __reg_deduce_bounds(dst_reg);
3481         /* We might have learned some bits from the bounds. */
3482         __reg_bound_offset(src_reg);
3483         __reg_bound_offset(dst_reg);
3484         /* Intersecting with the old var_off might have improved our bounds
3485          * slightly.  e.g. if umax was 0x7f...f and var_off was (0; 0xf...fc),
3486          * then new var_off is (0; 0x7f...fc) which improves our umax.
3487          */
3488         __update_reg_bounds(src_reg);
3489         __update_reg_bounds(dst_reg);
3490 }
3491
3492 static void reg_combine_min_max(struct bpf_reg_state *true_src,
3493                                 struct bpf_reg_state *true_dst,
3494                                 struct bpf_reg_state *false_src,
3495                                 struct bpf_reg_state *false_dst,
3496                                 u8 opcode)
3497 {
3498         switch (opcode) {
3499         case BPF_JEQ:
3500                 __reg_combine_min_max(true_src, true_dst);
3501                 break;
3502         case BPF_JNE:
3503                 __reg_combine_min_max(false_src, false_dst);
3504                 break;
3505         }
3506 }
3507
3508 static void mark_map_reg(struct bpf_reg_state *regs, u32 regno, u32 id,
3509                          bool is_null)
3510 {
3511         struct bpf_reg_state *reg = &regs[regno];
3512
3513         if (reg->type == PTR_TO_MAP_VALUE_OR_NULL && reg->id == id) {
3514                 /* Old offset (both fixed and variable parts) should
3515                  * have been known-zero, because we don't allow pointer
3516                  * arithmetic on pointers that might be NULL.
3517                  */
3518                 if (WARN_ON_ONCE(reg->smin_value || reg->smax_value ||
3519                                  !tnum_equals_const(reg->var_off, 0) ||
3520                                  reg->off)) {
3521                         __mark_reg_known_zero(reg);
3522                         reg->off = 0;
3523                 }
3524                 if (is_null) {
3525                         reg->type = SCALAR_VALUE;
3526                 } else if (reg->map_ptr->inner_map_meta) {
3527                         reg->type = CONST_PTR_TO_MAP;
3528                         reg->map_ptr = reg->map_ptr->inner_map_meta;
3529                 } else {
3530                         reg->type = PTR_TO_MAP_VALUE;
3531                 }
3532                 /* We don't need id from this point onwards anymore, thus we
3533                  * should better reset it, so that state pruning has chances
3534                  * to take effect.
3535                  */
3536                 reg->id = 0;
3537         }
3538 }
3539
3540 /* The logic is similar to find_good_pkt_pointers(), both could eventually
3541  * be folded together at some point.
3542  */
3543 static void mark_map_regs(struct bpf_verifier_state *vstate, u32 regno,
3544                           bool is_null)
3545 {
3546         struct bpf_func_state *state = vstate->frame[vstate->curframe];
3547         struct bpf_reg_state *regs = state->regs;
3548         u32 id = regs[regno].id;
3549         int i, j;
3550
3551         for (i = 0; i < MAX_BPF_REG; i++)
3552                 mark_map_reg(regs, i, id, is_null);
3553
3554         for (j = 0; j <= vstate->curframe; j++) {
3555                 state = vstate->frame[j];
3556                 for (i = 0; i < state->allocated_stack / BPF_REG_SIZE; i++) {
3557                         if (state->stack[i].slot_type[0] != STACK_SPILL)
3558                                 continue;
3559                         mark_map_reg(&state->stack[i].spilled_ptr, 0, id, is_null);
3560                 }
3561         }
3562 }
3563
3564 static bool try_match_pkt_pointers(const struct bpf_insn *insn,
3565                                    struct bpf_reg_state *dst_reg,
3566                                    struct bpf_reg_state *src_reg,
3567                                    struct bpf_verifier_state *this_branch,
3568                                    struct bpf_verifier_state *other_branch)
3569 {
3570         if (BPF_SRC(insn->code) != BPF_X)
3571                 return false;
3572
3573         switch (BPF_OP(insn->code)) {
3574         case BPF_JGT:
3575                 if ((dst_reg->type == PTR_TO_PACKET &&
3576                      src_reg->type == PTR_TO_PACKET_END) ||
3577                     (dst_reg->type == PTR_TO_PACKET_META &&
3578                      reg_is_init_pkt_pointer(src_reg, PTR_TO_PACKET))) {
3579                         /* pkt_data' > pkt_end, pkt_meta' > pkt_data */
3580                         find_good_pkt_pointers(this_branch, dst_reg,
3581                                                dst_reg->type, false);
3582                 } else if ((dst_reg->type == PTR_TO_PACKET_END &&
3583                             src_reg->type == PTR_TO_PACKET) ||
3584                            (reg_is_init_pkt_pointer(dst_reg, PTR_TO_PACKET) &&
3585                             src_reg->type == PTR_TO_PACKET_META)) {
3586                         /* pkt_end > pkt_data', pkt_data > pkt_meta' */
3587                         find_good_pkt_pointers(other_branch, src_reg,
3588                                                src_reg->type, true);
3589                 } else {
3590                         return false;
3591                 }
3592                 break;
3593         case BPF_JLT:
3594                 if ((dst_reg->type == PTR_TO_PACKET &&
3595                      src_reg->type == PTR_TO_PACKET_END) ||
3596                     (dst_reg->type == PTR_TO_PACKET_META &&
3597                      reg_is_init_pkt_pointer(src_reg, PTR_TO_PACKET))) {
3598                         /* pkt_data' < pkt_end, pkt_meta' < pkt_data */
3599                         find_good_pkt_pointers(other_branch, dst_reg,
3600                                                dst_reg->type, true);
3601                 } else if ((dst_reg->type == PTR_TO_PACKET_END &&
3602                             src_reg->type == PTR_TO_PACKET) ||
3603                            (reg_is_init_pkt_pointer(dst_reg, PTR_TO_PACKET) &&
3604                             src_reg->type == PTR_TO_PACKET_META)) {
3605                         /* pkt_end < pkt_data', pkt_data > pkt_meta' */
3606                         find_good_pkt_pointers(this_branch, src_reg,
3607                                                src_reg->type, false);
3608                 } else {
3609                         return false;
3610                 }
3611                 break;
3612         case BPF_JGE:
3613                 if ((dst_reg->type == PTR_TO_PACKET &&
3614                      src_reg->type == PTR_TO_PACKET_END) ||
3615                     (dst_reg->type == PTR_TO_PACKET_META &&
3616                      reg_is_init_pkt_pointer(src_reg, PTR_TO_PACKET))) {
3617                         /* pkt_data' >= pkt_end, pkt_meta' >= pkt_data */
3618                         find_good_pkt_pointers(this_branch, dst_reg,
3619                                                dst_reg->type, true);
3620                 } else if ((dst_reg->type == PTR_TO_PACKET_END &&
3621                             src_reg->type == PTR_TO_PACKET) ||
3622                            (reg_is_init_pkt_pointer(dst_reg, PTR_TO_PACKET) &&
3623                             src_reg->type == PTR_TO_PACKET_META)) {
3624                         /* pkt_end >= pkt_data', pkt_data >= pkt_meta' */
3625                         find_good_pkt_pointers(other_branch, src_reg,
3626                                                src_reg->type, false);
3627                 } else {
3628                         return false;
3629                 }
3630                 break;
3631         case BPF_JLE:
3632                 if ((dst_reg->type == PTR_TO_PACKET &&
3633                      src_reg->type == PTR_TO_PACKET_END) ||
3634                     (dst_reg->type == PTR_TO_PACKET_META &&
3635                      reg_is_init_pkt_pointer(src_reg, PTR_TO_PACKET))) {
3636                         /* pkt_data' <= pkt_end, pkt_meta' <= pkt_data */
3637                         find_good_pkt_pointers(other_branch, dst_reg,
3638                                                dst_reg->type, false);
3639                 } else if ((dst_reg->type == PTR_TO_PACKET_END &&
3640                             src_reg->type == PTR_TO_PACKET) ||
3641                            (reg_is_init_pkt_pointer(dst_reg, PTR_TO_PACKET) &&
3642                             src_reg->type == PTR_TO_PACKET_META)) {
3643                         /* pkt_end <= pkt_data', pkt_data <= pkt_meta' */
3644                         find_good_pkt_pointers(this_branch, src_reg,
3645                                                src_reg->type, true);
3646                 } else {
3647                         return false;
3648                 }
3649                 break;
3650         default:
3651                 return false;
3652         }
3653
3654         return true;
3655 }
3656
3657 static int check_cond_jmp_op(struct bpf_verifier_env *env,
3658                              struct bpf_insn *insn, int *insn_idx)
3659 {
3660         struct bpf_verifier_state *this_branch = env->cur_state;
3661         struct bpf_verifier_state *other_branch;
3662         struct bpf_reg_state *regs = this_branch->frame[this_branch->curframe]->regs;
3663         struct bpf_reg_state *dst_reg, *other_branch_regs;
3664         u8 opcode = BPF_OP(insn->code);
3665         int err;
3666
3667         if (opcode > BPF_JSLE) {
3668                 verbose(env, "invalid BPF_JMP opcode %x\n", opcode);
3669                 return -EINVAL;
3670         }
3671
3672         if (BPF_SRC(insn->code) == BPF_X) {
3673                 if (insn->imm != 0) {
3674                         verbose(env, "BPF_JMP uses reserved fields\n");
3675                         return -EINVAL;
3676                 }
3677
3678                 /* check src1 operand */
3679                 err = check_reg_arg(env, insn->src_reg, SRC_OP);
3680                 if (err)
3681                         return err;
3682
3683                 if (is_pointer_value(env, insn->src_reg)) {
3684                         verbose(env, "R%d pointer comparison prohibited\n",
3685                                 insn->src_reg);
3686                         return -EACCES;
3687                 }
3688         } else {
3689                 if (insn->src_reg != BPF_REG_0) {
3690                         verbose(env, "BPF_JMP uses reserved fields\n");
3691                         return -EINVAL;
3692                 }
3693         }
3694
3695         /* check src2 operand */
3696         err = check_reg_arg(env, insn->dst_reg, SRC_OP);
3697         if (err)
3698                 return err;
3699
3700         dst_reg = &regs[insn->dst_reg];
3701
3702         /* detect if R == 0 where R was initialized to zero earlier */
3703         if (BPF_SRC(insn->code) == BPF_K &&
3704             (opcode == BPF_JEQ || opcode == BPF_JNE) &&
3705             dst_reg->type == SCALAR_VALUE &&
3706             tnum_is_const(dst_reg->var_off)) {
3707                 if ((opcode == BPF_JEQ && dst_reg->var_off.value == insn->imm) ||
3708                     (opcode == BPF_JNE && dst_reg->var_off.value != insn->imm)) {
3709                         /* if (imm == imm) goto pc+off;
3710                          * only follow the goto, ignore fall-through
3711                          */
3712                         *insn_idx += insn->off;
3713                         return 0;
3714                 } else {
3715                         /* if (imm != imm) goto pc+off;
3716                          * only follow fall-through branch, since
3717                          * that's where the program will go
3718                          */
3719                         return 0;
3720                 }
3721         }
3722
3723         other_branch = push_stack(env, *insn_idx + insn->off + 1, *insn_idx);
3724         if (!other_branch)
3725                 return -EFAULT;
3726         other_branch_regs = other_branch->frame[other_branch->curframe]->regs;
3727
3728         /* detect if we are comparing against a constant value so we can adjust
3729          * our min/max values for our dst register.
3730          * this is only legit if both are scalars (or pointers to the same
3731          * object, I suppose, but we don't support that right now), because
3732          * otherwise the different base pointers mean the offsets aren't
3733          * comparable.
3734          */
3735         if (BPF_SRC(insn->code) == BPF_X) {
3736                 if (dst_reg->type == SCALAR_VALUE &&
3737                     regs[insn->src_reg].type == SCALAR_VALUE) {
3738                         if (tnum_is_const(regs[insn->src_reg].var_off))
3739                                 reg_set_min_max(&other_branch_regs[insn->dst_reg],
3740                                                 dst_reg, regs[insn->src_reg].var_off.value,
3741                                                 opcode);
3742                         else if (tnum_is_const(dst_reg->var_off))
3743                                 reg_set_min_max_inv(&other_branch_regs[insn->src_reg],
3744                                                     &regs[insn->src_reg],
3745                                                     dst_reg->var_off.value, opcode);
3746                         else if (opcode == BPF_JEQ || opcode == BPF_JNE)
3747                                 /* Comparing for equality, we can combine knowledge */
3748                                 reg_combine_min_max(&other_branch_regs[insn->src_reg],
3749                                                     &other_branch_regs[insn->dst_reg],
3750                                                     &regs[insn->src_reg],
3751                                                     &regs[insn->dst_reg], opcode);
3752                 }
3753         } else if (dst_reg->type == SCALAR_VALUE) {
3754                 reg_set_min_max(&other_branch_regs[insn->dst_reg],
3755                                         dst_reg, insn->imm, opcode);
3756         }
3757
3758         /* detect if R == 0 where R is returned from bpf_map_lookup_elem() */
3759         if (BPF_SRC(insn->code) == BPF_K &&
3760             insn->imm == 0 && (opcode == BPF_JEQ || opcode == BPF_JNE) &&
3761             dst_reg->type == PTR_TO_MAP_VALUE_OR_NULL) {
3762                 /* Mark all identical map registers in each branch as either
3763                  * safe or unknown depending R == 0 or R != 0 conditional.
3764                  */
3765                 mark_map_regs(this_branch, insn->dst_reg, opcode == BPF_JNE);
3766                 mark_map_regs(other_branch, insn->dst_reg, opcode == BPF_JEQ);
3767         } else if (!try_match_pkt_pointers(insn, dst_reg, &regs[insn->src_reg],
3768                                            this_branch, other_branch) &&
3769                    is_pointer_value(env, insn->dst_reg)) {
3770                 verbose(env, "R%d pointer comparison prohibited\n",
3771                         insn->dst_reg);
3772                 return -EACCES;
3773         }
3774         if (env->log.level)
3775                 print_verifier_state(env, this_branch->frame[this_branch->curframe]);
3776         return 0;
3777 }
3778
3779 /* return the map pointer stored inside BPF_LD_IMM64 instruction */
3780 static struct bpf_map *ld_imm64_to_map_ptr(struct bpf_insn *insn)
3781 {
3782         u64 imm64 = ((u64) (u32) insn[0].imm) | ((u64) (u32) insn[1].imm) << 32;
3783
3784         return (struct bpf_map *) (unsigned long) imm64;
3785 }
3786
3787 /* verify BPF_LD_IMM64 instruction */
3788 static int check_ld_imm(struct bpf_verifier_env *env, struct bpf_insn *insn)
3789 {
3790         struct bpf_reg_state *regs = cur_regs(env);
3791         int err;
3792
3793         if (BPF_SIZE(insn->code) != BPF_DW) {
3794                 verbose(env, "invalid BPF_LD_IMM insn\n");
3795                 return -EINVAL;
3796         }
3797         if (insn->off != 0) {
3798                 verbose(env, "BPF_LD_IMM64 uses reserved fields\n");
3799                 return -EINVAL;
3800         }
3801
3802         err = check_reg_arg(env, insn->dst_reg, DST_OP);
3803         if (err)
3804                 return err;
3805
3806         if (insn->src_reg == 0) {
3807                 u64 imm = ((u64)(insn + 1)->imm << 32) | (u32)insn->imm;
3808
3809                 regs[insn->dst_reg].type = SCALAR_VALUE;
3810                 __mark_reg_known(&regs[insn->dst_reg], imm);
3811                 return 0;
3812         }
3813
3814         /* replace_map_fd_with_map_ptr() should have caught bad ld_imm64 */
3815         BUG_ON(insn->src_reg != BPF_PSEUDO_MAP_FD);
3816
3817         regs[insn->dst_reg].type = CONST_PTR_TO_MAP;
3818         regs[insn->dst_reg].map_ptr = ld_imm64_to_map_ptr(insn);
3819         return 0;
3820 }
3821
3822 static bool may_access_skb(enum bpf_prog_type type)
3823 {
3824         switch (type) {
3825         case BPF_PROG_TYPE_SOCKET_FILTER:
3826         case BPF_PROG_TYPE_SCHED_CLS:
3827         case BPF_PROG_TYPE_SCHED_ACT:
3828                 return true;
3829         default:
3830                 return false;
3831         }
3832 }
3833
3834 /* verify safety of LD_ABS|LD_IND instructions:
3835  * - they can only appear in the programs where ctx == skb
3836  * - since they are wrappers of function calls, they scratch R1-R5 registers,
3837  *   preserve R6-R9, and store return value into R0
3838  *
3839  * Implicit input:
3840  *   ctx == skb == R6 == CTX
3841  *
3842  * Explicit input:
3843  *   SRC == any register
3844  *   IMM == 32-bit immediate
3845  *
3846  * Output:
3847  *   R0 - 8/16/32-bit skb data converted to cpu endianness
3848  */
3849 static int check_ld_abs(struct bpf_verifier_env *env, struct bpf_insn *insn)
3850 {
3851         struct bpf_reg_state *regs = cur_regs(env);
3852         u8 mode = BPF_MODE(insn->code);
3853         int i, err;
3854
3855         if (!may_access_skb(env->prog->type)) {
3856                 verbose(env, "BPF_LD_[ABS|IND] instructions not allowed for this program type\n");
3857                 return -EINVAL;
3858         }
3859
3860         if (env->subprog_cnt) {
3861                 /* when program has LD_ABS insn JITs and interpreter assume
3862                  * that r1 == ctx == skb which is not the case for callees
3863                  * that can have arbitrary arguments. It's problematic
3864                  * for main prog as well since JITs would need to analyze
3865                  * all functions in order to make proper register save/restore
3866                  * decisions in the main prog. Hence disallow LD_ABS with calls
3867                  */
3868                 verbose(env, "BPF_LD_[ABS|IND] instructions cannot be mixed with bpf-to-bpf calls\n");
3869                 return -EINVAL;
3870         }
3871
3872         if (insn->dst_reg != BPF_REG_0 || insn->off != 0 ||
3873             BPF_SIZE(insn->code) == BPF_DW ||
3874             (mode == BPF_ABS && insn->src_reg != BPF_REG_0)) {
3875                 verbose(env, "BPF_LD_[ABS|IND] uses reserved fields\n");
3876                 return -EINVAL;
3877         }
3878
3879         /* check whether implicit source operand (register R6) is readable */
3880         err = check_reg_arg(env, BPF_REG_6, SRC_OP);
3881         if (err)
3882                 return err;
3883
3884         if (regs[BPF_REG_6].type != PTR_TO_CTX) {
3885                 verbose(env,
3886                         "at the time of BPF_LD_ABS|IND R6 != pointer to skb\n");
3887                 return -EINVAL;
3888         }
3889
3890         if (mode == BPF_IND) {
3891                 /* check explicit source operand */
3892                 err = check_reg_arg(env, insn->src_reg, SRC_OP);
3893                 if (err)
3894                         return err;
3895         }
3896
3897         /* reset caller saved regs to unreadable */
3898         for (i = 0; i < CALLER_SAVED_REGS; i++) {
3899                 mark_reg_not_init(env, regs, caller_saved[i]);
3900                 check_reg_arg(env, caller_saved[i], DST_OP_NO_MARK);
3901         }
3902
3903         /* mark destination R0 register as readable, since it contains
3904          * the value fetched from the packet.
3905          * Already marked as written above.
3906          */
3907         mark_reg_unknown(env, regs, BPF_REG_0);
3908         return 0;
3909 }
3910
3911 static int check_return_code(struct bpf_verifier_env *env)
3912 {
3913         struct bpf_reg_state *reg;
3914         struct tnum range = tnum_range(0, 1);
3915
3916         switch (env->prog->type) {
3917         case BPF_PROG_TYPE_CGROUP_SKB:
3918         case BPF_PROG_TYPE_CGROUP_SOCK:
3919         case BPF_PROG_TYPE_CGROUP_SOCK_ADDR:
3920         case BPF_PROG_TYPE_SOCK_OPS:
3921         case BPF_PROG_TYPE_CGROUP_DEVICE:
3922                 break;
3923         default:
3924                 return 0;
3925         }
3926
3927         reg = cur_regs(env) + BPF_REG_0;
3928         if (reg->type != SCALAR_VALUE) {
3929                 verbose(env, "At program exit the register R0 is not a known value (%s)\n",
3930                         reg_type_str[reg->type]);
3931                 return -EINVAL;
3932         }
3933
3934         if (!tnum_in(range, reg->var_off)) {
3935                 verbose(env, "At program exit the register R0 ");
3936                 if (!tnum_is_unknown(reg->var_off)) {
3937                         char tn_buf[48];
3938
3939                         tnum_strn(tn_buf, sizeof(tn_buf), reg->var_off);
3940                         verbose(env, "has value %s", tn_buf);
3941                 } else {
3942                         verbose(env, "has unknown scalar value");
3943                 }
3944                 verbose(env, " should have been 0 or 1\n");
3945                 return -EINVAL;
3946         }
3947         return 0;
3948 }
3949
3950 /* non-recursive DFS pseudo code
3951  * 1  procedure DFS-iterative(G,v):
3952  * 2      label v as discovered
3953  * 3      let S be a stack
3954  * 4      S.push(v)
3955  * 5      while S is not empty
3956  * 6            t <- S.pop()
3957  * 7            if t is what we're looking for:
3958  * 8                return t
3959  * 9            for all edges e in G.adjacentEdges(t) do
3960  * 10               if edge e is already labelled
3961  * 11                   continue with the next edge
3962  * 12               w <- G.adjacentVertex(t,e)
3963  * 13               if vertex w is not discovered and not explored
3964  * 14                   label e as tree-edge
3965  * 15                   label w as discovered
3966  * 16                   S.push(w)
3967  * 17                   continue at 5
3968  * 18               else if vertex w is discovered
3969  * 19                   label e as back-edge
3970  * 20               else
3971  * 21                   // vertex w is explored
3972  * 22                   label e as forward- or cross-edge
3973  * 23           label t as explored
3974  * 24           S.pop()
3975  *
3976  * convention:
3977  * 0x10 - discovered
3978  * 0x11 - discovered and fall-through edge labelled
3979  * 0x12 - discovered and fall-through and branch edges labelled
3980  * 0x20 - explored
3981  */
3982
3983 enum {
3984         DISCOVERED = 0x10,
3985         EXPLORED = 0x20,
3986         FALLTHROUGH = 1,
3987         BRANCH = 2,
3988 };
3989
3990 #define STATE_LIST_MARK ((struct bpf_verifier_state_list *) -1L)
3991
3992 static int *insn_stack; /* stack of insns to process */
3993 static int cur_stack;   /* current stack index */
3994 static int *insn_state;
3995
3996 /* t, w, e - match pseudo-code above:
3997  * t - index of current instruction
3998  * w - next instruction
3999  * e - edge
4000  */
4001 static int push_insn(int t, int w, int e, struct bpf_verifier_env *env)
4002 {
4003         if (e == FALLTHROUGH && insn_state[t] >= (DISCOVERED | FALLTHROUGH))
4004                 return 0;
4005
4006         if (e == BRANCH && insn_state[t] >= (DISCOVERED | BRANCH))
4007                 return 0;
4008
4009         if (w < 0 || w >= env->prog->len) {
4010                 verbose(env, "jump out of range from insn %d to %d\n", t, w);
4011                 return -EINVAL;
4012         }
4013
4014         if (e == BRANCH)
4015                 /* mark branch target for state pruning */
4016                 env->explored_states[w] = STATE_LIST_MARK;
4017
4018         if (insn_state[w] == 0) {
4019                 /* tree-edge */
4020                 insn_state[t] = DISCOVERED | e;
4021                 insn_state[w] = DISCOVERED;
4022                 if (cur_stack >= env->prog->len)
4023                         return -E2BIG;
4024                 insn_stack[cur_stack++] = w;
4025                 return 1;
4026         } else if ((insn_state[w] & 0xF0) == DISCOVERED) {
4027                 verbose(env, "back-edge from insn %d to %d\n", t, w);
4028                 return -EINVAL;
4029         } else if (insn_state[w] == EXPLORED) {
4030                 /* forward- or cross-edge */
4031                 insn_state[t] = DISCOVERED | e;
4032         } else {
4033                 verbose(env, "insn state internal bug\n");
4034                 return -EFAULT;
4035         }
4036         return 0;
4037 }
4038
4039 /* non-recursive depth-first-search to detect loops in BPF program
4040  * loop == back-edge in directed graph
4041  */
4042 static int check_cfg(struct bpf_verifier_env *env)
4043 {
4044         struct bpf_insn *insns = env->prog->insnsi;
4045         int insn_cnt = env->prog->len;
4046         int ret = 0;
4047         int i, t;
4048
4049         ret = check_subprogs(env);
4050         if (ret < 0)
4051                 return ret;
4052
4053         insn_state = kcalloc(insn_cnt, sizeof(int), GFP_KERNEL);
4054         if (!insn_state)
4055                 return -ENOMEM;
4056
4057         insn_stack = kcalloc(insn_cnt, sizeof(int), GFP_KERNEL);
4058         if (!insn_stack) {
4059                 kfree(insn_state);
4060                 return -ENOMEM;
4061         }
4062
4063         insn_state[0] = DISCOVERED; /* mark 1st insn as discovered */
4064         insn_stack[0] = 0; /* 0 is the first instruction */
4065         cur_stack = 1;
4066
4067 peek_stack:
4068         if (cur_stack == 0)
4069                 goto check_state;
4070         t = insn_stack[cur_stack - 1];
4071
4072         if (BPF_CLASS(insns[t].code) == BPF_JMP) {
4073                 u8 opcode = BPF_OP(insns[t].code);
4074
4075                 if (opcode == BPF_EXIT) {
4076                         goto mark_explored;
4077                 } else if (opcode == BPF_CALL) {
4078                         ret = push_insn(t, t + 1, FALLTHROUGH, env);
4079                         if (ret == 1)
4080                                 goto peek_stack;
4081                         else if (ret < 0)
4082                                 goto err_free;
4083                         if (t + 1 < insn_cnt)
4084                                 env->explored_states[t + 1] = STATE_LIST_MARK;
4085                         if (insns[t].src_reg == BPF_PSEUDO_CALL) {
4086                                 env->explored_states[t] = STATE_LIST_MARK;
4087                                 ret = push_insn(t, t + insns[t].imm + 1, BRANCH, env);
4088                                 if (ret == 1)
4089                                         goto peek_stack;
4090                                 else if (ret < 0)
4091                                         goto err_free;
4092                         }
4093                 } else if (opcode == BPF_JA) {
4094                         if (BPF_SRC(insns[t].code) != BPF_K) {
4095                                 ret = -EINVAL;
4096                                 goto err_free;
4097                         }
4098                         /* unconditional jump with single edge */
4099                         ret = push_insn(t, t + insns[t].off + 1,
4100                                         FALLTHROUGH, env);
4101                         if (ret == 1)
4102                                 goto peek_stack;
4103                         else if (ret < 0)
4104                                 goto err_free;
4105                         /* tell verifier to check for equivalent states
4106                          * after every call and jump
4107                          */
4108                         if (t + 1 < insn_cnt)
4109                                 env->explored_states[t + 1] = STATE_LIST_MARK;
4110                 } else {
4111                         /* conditional jump with two edges */
4112                         env->explored_states[t] = STATE_LIST_MARK;
4113                         ret = push_insn(t, t + 1, FALLTHROUGH, env);
4114                         if (ret == 1)
4115                                 goto peek_stack;
4116                         else if (ret < 0)
4117                                 goto err_free;
4118
4119                         ret = push_insn(t, t + insns[t].off + 1, BRANCH, env);
4120                         if (ret == 1)
4121                                 goto peek_stack;
4122                         else if (ret < 0)
4123                                 goto err_free;
4124                 }
4125         } else {
4126                 /* all other non-branch instructions with single
4127                  * fall-through edge
4128                  */
4129                 ret = push_insn(t, t + 1, FALLTHROUGH, env);
4130                 if (ret == 1)
4131                         goto peek_stack;
4132                 else if (ret < 0)
4133                         goto err_free;
4134         }
4135
4136 mark_explored:
4137         insn_state[t] = EXPLORED;
4138         if (cur_stack-- <= 0) {
4139                 verbose(env, "pop stack internal bug\n");
4140                 ret = -EFAULT;
4141                 goto err_free;
4142         }
4143         goto peek_stack;
4144
4145 check_state:
4146         for (i = 0; i < insn_cnt; i++) {
4147                 if (insn_state[i] != EXPLORED) {
4148                         verbose(env, "unreachable insn %d\n", i);
4149                         ret = -EINVAL;
4150                         goto err_free;
4151                 }
4152         }
4153         ret = 0; /* cfg looks good */
4154
4155 err_free:
4156         kfree(insn_state);
4157         kfree(insn_stack);
4158         return ret;
4159 }
4160
4161 /* check %cur's range satisfies %old's */
4162 static bool range_within(struct bpf_reg_state *old,
4163                          struct bpf_reg_state *cur)
4164 {
4165         return old->umin_value <= cur->umin_value &&
4166                old->umax_value >= cur->umax_value &&
4167                old->smin_value <= cur->smin_value &&
4168                old->smax_value >= cur->smax_value;
4169 }
4170
4171 /* Maximum number of register states that can exist at once */
4172 #define ID_MAP_SIZE     (MAX_BPF_REG + MAX_BPF_STACK / BPF_REG_SIZE)
4173 struct idpair {
4174         u32 old;
4175         u32 cur;
4176 };
4177
4178 /* If in the old state two registers had the same id, then they need to have
4179  * the same id in the new state as well.  But that id could be different from
4180  * the old state, so we need to track the mapping from old to new ids.
4181  * Once we have seen that, say, a reg with old id 5 had new id 9, any subsequent
4182  * regs with old id 5 must also have new id 9 for the new state to be safe.  But
4183  * regs with a different old id could still have new id 9, we don't care about
4184  * that.
4185  * So we look through our idmap to see if this old id has been seen before.  If
4186  * so, we require the new id to match; otherwise, we add the id pair to the map.
4187  */
4188 static bool check_ids(u32 old_id, u32 cur_id, struct idpair *idmap)
4189 {
4190         unsigned int i;
4191
4192         for (i = 0; i < ID_MAP_SIZE; i++) {
4193                 if (!idmap[i].old) {
4194                         /* Reached an empty slot; haven't seen this id before */
4195                         idmap[i].old = old_id;
4196                         idmap[i].cur = cur_id;
4197                         return true;
4198                 }
4199                 if (idmap[i].old == old_id)
4200                         return idmap[i].cur == cur_id;
4201         }
4202         /* We ran out of idmap slots, which should be impossible */
4203         WARN_ON_ONCE(1);
4204         return false;
4205 }
4206
4207 /* Returns true if (rold safe implies rcur safe) */
4208 static bool regsafe(struct bpf_reg_state *rold, struct bpf_reg_state *rcur,
4209                     struct idpair *idmap)
4210 {
4211         bool equal;
4212
4213         if (!(rold->live & REG_LIVE_READ))
4214                 /* explored state didn't use this */
4215                 return true;
4216
4217         equal = memcmp(rold, rcur, offsetof(struct bpf_reg_state, frameno)) == 0;
4218
4219         if (rold->type == PTR_TO_STACK)
4220                 /* two stack pointers are equal only if they're pointing to
4221                  * the same stack frame, since fp-8 in foo != fp-8 in bar
4222                  */
4223                 return equal && rold->frameno == rcur->frameno;
4224
4225         if (equal)
4226                 return true;
4227
4228         if (rold->type == NOT_INIT)
4229                 /* explored state can't have used this */
4230                 return true;
4231         if (rcur->type == NOT_INIT)
4232                 return false;
4233         switch (rold->type) {
4234         case SCALAR_VALUE:
4235                 if (rcur->type == SCALAR_VALUE) {
4236                         /* new val must satisfy old val knowledge */
4237                         return range_within(rold, rcur) &&
4238                                tnum_in(rold->var_off, rcur->var_off);
4239                 } else {
4240                         /* We're trying to use a pointer in place of a scalar.
4241                          * Even if the scalar was unbounded, this could lead to
4242                          * pointer leaks because scalars are allowed to leak
4243                          * while pointers are not. We could make this safe in
4244                          * special cases if root is calling us, but it's
4245                          * probably not worth the hassle.
4246                          */
4247                         return false;
4248                 }
4249         case PTR_TO_MAP_VALUE:
4250                 /* If the new min/max/var_off satisfy the old ones and
4251                  * everything else matches, we are OK.
4252                  * We don't care about the 'id' value, because nothing
4253                  * uses it for PTR_TO_MAP_VALUE (only for ..._OR_NULL)
4254                  */
4255                 return memcmp(rold, rcur, offsetof(struct bpf_reg_state, id)) == 0 &&
4256                        range_within(rold, rcur) &&
4257                        tnum_in(rold->var_off, rcur->var_off);
4258         case PTR_TO_MAP_VALUE_OR_NULL:
4259                 /* a PTR_TO_MAP_VALUE could be safe to use as a
4260                  * PTR_TO_MAP_VALUE_OR_NULL into the same map.
4261                  * However, if the old PTR_TO_MAP_VALUE_OR_NULL then got NULL-
4262                  * checked, doing so could have affected others with the same
4263                  * id, and we can't check for that because we lost the id when
4264                  * we converted to a PTR_TO_MAP_VALUE.
4265                  */
4266                 if (rcur->type != PTR_TO_MAP_VALUE_OR_NULL)
4267                         return false;
4268                 if (memcmp(rold, rcur, offsetof(struct bpf_reg_state, id)))
4269                         return false;
4270                 /* Check our ids match any regs they're supposed to */
4271                 return check_ids(rold->id, rcur->id, idmap);
4272         case PTR_TO_PACKET_META:
4273         case PTR_TO_PACKET:
4274                 if (rcur->type != rold->type)
4275                         return false;
4276                 /* We must have at least as much range as the old ptr
4277                  * did, so that any accesses which were safe before are
4278                  * still safe.  This is true even if old range < old off,
4279                  * since someone could have accessed through (ptr - k), or
4280                  * even done ptr -= k in a register, to get a safe access.
4281                  */
4282                 if (rold->range > rcur->range)
4283                         return false;
4284                 /* If the offsets don't match, we can't trust our alignment;
4285                  * nor can we be sure that we won't fall out of range.
4286                  */
4287                 if (rold->off != rcur->off)
4288                         return false;
4289                 /* id relations must be preserved */
4290                 if (rold->id && !check_ids(rold->id, rcur->id, idmap))
4291                         return false;
4292                 /* new val must satisfy old val knowledge */
4293                 return range_within(rold, rcur) &&
4294                        tnum_in(rold->var_off, rcur->var_off);
4295         case PTR_TO_CTX:
4296         case CONST_PTR_TO_MAP:
4297         case PTR_TO_PACKET_END:
4298                 /* Only valid matches are exact, which memcmp() above
4299                  * would have accepted
4300                  */
4301         default:
4302                 /* Don't know what's going on, just say it's not safe */
4303                 return false;
4304         }
4305
4306         /* Shouldn't get here; if we do, say it's not safe */
4307         WARN_ON_ONCE(1);
4308         return false;
4309 }
4310
4311 static bool stacksafe(struct bpf_func_state *old,
4312                       struct bpf_func_state *cur,
4313                       struct idpair *idmap)
4314 {
4315         int i, spi;
4316
4317         /* if explored stack has more populated slots than current stack
4318          * such stacks are not equivalent
4319          */
4320         if (old->allocated_stack > cur->allocated_stack)
4321                 return false;
4322
4323         /* walk slots of the explored stack and ignore any additional
4324          * slots in the current stack, since explored(safe) state
4325          * didn't use them
4326          */
4327         for (i = 0; i < old->allocated_stack; i++) {
4328                 spi = i / BPF_REG_SIZE;
4329
4330                 if (!(old->stack[spi].spilled_ptr.live & REG_LIVE_READ))
4331                         /* explored state didn't use this */
4332                         continue;
4333
4334                 if (old->stack[spi].slot_type[i % BPF_REG_SIZE] == STACK_INVALID)
4335                         continue;
4336                 /* if old state was safe with misc data in the stack
4337                  * it will be safe with zero-initialized stack.
4338                  * The opposite is not true
4339                  */
4340                 if (old->stack[spi].slot_type[i % BPF_REG_SIZE] == STACK_MISC &&
4341                     cur->stack[spi].slot_type[i % BPF_REG_SIZE] == STACK_ZERO)
4342                         continue;
4343                 if (old->stack[spi].slot_type[i % BPF_REG_SIZE] !=
4344                     cur->stack[spi].slot_type[i % BPF_REG_SIZE])
4345                         /* Ex: old explored (safe) state has STACK_SPILL in
4346                          * this stack slot, but current has has STACK_MISC ->
4347                          * this verifier states are not equivalent,
4348                          * return false to continue verification of this path
4349                          */
4350                         return false;
4351                 if (i % BPF_REG_SIZE)
4352                         continue;
4353                 if (old->stack[spi].slot_type[0] != STACK_SPILL)
4354                         continue;
4355                 if (!regsafe(&old->stack[spi].spilled_ptr,
4356                              &cur->stack[spi].spilled_ptr,
4357                              idmap))
4358                         /* when explored and current stack slot are both storing
4359                          * spilled registers, check that stored pointers types
4360                          * are the same as well.
4361                          * Ex: explored safe path could have stored
4362                          * (bpf_reg_state) {.type = PTR_TO_STACK, .off = -8}
4363                          * but current path has stored:
4364                          * (bpf_reg_state) {.type = PTR_TO_STACK, .off = -16}
4365                          * such verifier states are not equivalent.
4366                          * return false to continue verification of this path
4367                          */
4368                         return false;
4369         }
4370         return true;
4371 }
4372
4373 /* compare two verifier states
4374  *
4375  * all states stored in state_list are known to be valid, since
4376  * verifier reached 'bpf_exit' instruction through them
4377  *
4378  * this function is called when verifier exploring different branches of
4379  * execution popped from the state stack. If it sees an old state that has
4380  * more strict register state and more strict stack state then this execution
4381  * branch doesn't need to be explored further, since verifier already
4382  * concluded that more strict state leads to valid finish.
4383  *
4384  * Therefore two states are equivalent if register state is more conservative
4385  * and explored stack state is more conservative than the current one.
4386  * Example:
4387  *       explored                   current
4388  * (slot1=INV slot2=MISC) == (slot1=MISC slot2=MISC)
4389  * (slot1=MISC slot2=MISC) != (slot1=INV slot2=MISC)
4390  *
4391  * In other words if current stack state (one being explored) has more
4392  * valid slots than old one that already passed validation, it means
4393  * the verifier can stop exploring and conclude that current state is valid too
4394  *
4395  * Similarly with registers. If explored state has register type as invalid
4396  * whereas register type in current state is meaningful, it means that
4397  * the current state will reach 'bpf_exit' instruction safely
4398  */
4399 static bool func_states_equal(struct bpf_func_state *old,
4400                               struct bpf_func_state *cur)
4401 {
4402         struct idpair *idmap;
4403         bool ret = false;
4404         int i;
4405
4406         idmap = kcalloc(ID_MAP_SIZE, sizeof(struct idpair), GFP_KERNEL);
4407         /* If we failed to allocate the idmap, just say it's not safe */
4408         if (!idmap)
4409                 return false;
4410
4411         for (i = 0; i < MAX_BPF_REG; i++) {
4412                 if (!regsafe(&old->regs[i], &cur->regs[i], idmap))
4413                         goto out_free;
4414         }
4415
4416         if (!stacksafe(old, cur, idmap))
4417                 goto out_free;
4418         ret = true;
4419 out_free:
4420         kfree(idmap);
4421         return ret;
4422 }
4423
4424 static bool states_equal(struct bpf_verifier_env *env,
4425                          struct bpf_verifier_state *old,
4426                          struct bpf_verifier_state *cur)
4427 {
4428         int i;
4429
4430         if (old->curframe != cur->curframe)
4431                 return false;
4432
4433         /* for states to be equal callsites have to be the same
4434          * and all frame states need to be equivalent
4435          */
4436         for (i = 0; i <= old->curframe; i++) {
4437                 if (old->frame[i]->callsite != cur->frame[i]->callsite)
4438                         return false;
4439                 if (!func_states_equal(old->frame[i], cur->frame[i]))
4440                         return false;
4441         }
4442         return true;
4443 }
4444
4445 /* A write screens off any subsequent reads; but write marks come from the
4446  * straight-line code between a state and its parent.  When we arrive at an
4447  * equivalent state (jump target or such) we didn't arrive by the straight-line
4448  * code, so read marks in the state must propagate to the parent regardless
4449  * of the state's write marks. That's what 'parent == state->parent' comparison
4450  * in mark_reg_read() and mark_stack_slot_read() is for.
4451  */
4452 static int propagate_liveness(struct bpf_verifier_env *env,
4453                               const struct bpf_verifier_state *vstate,
4454                               struct bpf_verifier_state *vparent)
4455 {
4456         int i, frame, err = 0;
4457         struct bpf_func_state *state, *parent;
4458
4459         if (vparent->curframe != vstate->curframe) {
4460                 WARN(1, "propagate_live: parent frame %d current frame %d\n",
4461                      vparent->curframe, vstate->curframe);
4462                 return -EFAULT;
4463         }
4464         /* Propagate read liveness of registers... */
4465         BUILD_BUG_ON(BPF_REG_FP + 1 != MAX_BPF_REG);
4466         /* We don't need to worry about FP liveness because it's read-only */
4467         for (i = 0; i < BPF_REG_FP; i++) {
4468                 if (vparent->frame[vparent->curframe]->regs[i].live & REG_LIVE_READ)
4469                         continue;
4470                 if (vstate->frame[vstate->curframe]->regs[i].live & REG_LIVE_READ) {
4471                         err = mark_reg_read(env, vstate, vparent, i);
4472                         if (err)
4473                                 return err;
4474                 }
4475         }
4476
4477         /* ... and stack slots */
4478         for (frame = 0; frame <= vstate->curframe; frame++) {
4479                 state = vstate->frame[frame];
4480                 parent = vparent->frame[frame];
4481                 for (i = 0; i < state->allocated_stack / BPF_REG_SIZE &&
4482                             i < parent->allocated_stack / BPF_REG_SIZE; i++) {
4483                         if (parent->stack[i].spilled_ptr.live & REG_LIVE_READ)
4484                                 continue;
4485                         if (state->stack[i].spilled_ptr.live & REG_LIVE_READ)
4486                                 mark_stack_slot_read(env, vstate, vparent, i, frame);
4487                 }
4488         }
4489         return err;
4490 }
4491
4492 static int is_state_visited(struct bpf_verifier_env *env, int insn_idx)
4493 {
4494         struct bpf_verifier_state_list *new_sl;
4495         struct bpf_verifier_state_list *sl;
4496         struct bpf_verifier_state *cur = env->cur_state;
4497         int i, j, err;
4498
4499         sl = env->explored_states[insn_idx];
4500         if (!sl)
4501                 /* this 'insn_idx' instruction wasn't marked, so we will not
4502                  * be doing state search here
4503                  */
4504                 return 0;
4505
4506         while (sl != STATE_LIST_MARK) {
4507                 if (states_equal(env, &sl->state, cur)) {
4508                         /* reached equivalent register/stack state,
4509                          * prune the search.
4510                          * Registers read by the continuation are read by us.
4511                          * If we have any write marks in env->cur_state, they
4512                          * will prevent corresponding reads in the continuation
4513                          * from reaching our parent (an explored_state).  Our
4514                          * own state will get the read marks recorded, but
4515                          * they'll be immediately forgotten as we're pruning
4516                          * this state and will pop a new one.
4517                          */
4518                         err = propagate_liveness(env, &sl->state, cur);
4519                         if (err)
4520                                 return err;
4521                         return 1;
4522                 }
4523                 sl = sl->next;
4524         }
4525
4526         /* there were no equivalent states, remember current one.
4527          * technically the current state is not proven to be safe yet,
4528          * but it will either reach outer most bpf_exit (which means it's safe)
4529          * or it will be rejected. Since there are no loops, we won't be
4530          * seeing this tuple (frame[0].callsite, frame[1].callsite, .. insn_idx)
4531          * again on the way to bpf_exit
4532          */
4533         new_sl = kzalloc(sizeof(struct bpf_verifier_state_list), GFP_KERNEL);
4534         if (!new_sl)
4535                 return -ENOMEM;
4536
4537         /* add new state to the head of linked list */
4538         err = copy_verifier_state(&new_sl->state, cur);
4539         if (err) {
4540                 free_verifier_state(&new_sl->state, false);
4541                 kfree(new_sl);
4542                 return err;
4543         }
4544         new_sl->next = env->explored_states[insn_idx];
4545         env->explored_states[insn_idx] = new_sl;
4546         /* connect new state to parentage chain */
4547         cur->parent = &new_sl->state;
4548         /* clear write marks in current state: the writes we did are not writes
4549          * our child did, so they don't screen off its reads from us.
4550          * (There are no read marks in current state, because reads always mark
4551          * their parent and current state never has children yet.  Only
4552          * explored_states can get read marks.)
4553          */
4554         for (i = 0; i < BPF_REG_FP; i++)
4555                 cur->frame[cur->curframe]->regs[i].live = REG_LIVE_NONE;
4556
4557         /* all stack frames are accessible from callee, clear them all */
4558         for (j = 0; j <= cur->curframe; j++) {
4559                 struct bpf_func_state *frame = cur->frame[j];
4560
4561                 for (i = 0; i < frame->allocated_stack / BPF_REG_SIZE; i++)
4562                         frame->stack[i].spilled_ptr.live = REG_LIVE_NONE;
4563         }
4564         return 0;
4565 }
4566
4567 static int do_check(struct bpf_verifier_env *env)
4568 {
4569         struct bpf_verifier_state *state;
4570         struct bpf_insn *insns = env->prog->insnsi;
4571         struct bpf_reg_state *regs;
4572         int insn_cnt = env->prog->len, i;
4573         int insn_idx, prev_insn_idx = 0;
4574         int insn_processed = 0;
4575         bool do_print_state = false;
4576
4577         state = kzalloc(sizeof(struct bpf_verifier_state), GFP_KERNEL);
4578         if (!state)
4579                 return -ENOMEM;
4580         state->curframe = 0;
4581         state->parent = NULL;
4582         state->frame[0] = kzalloc(sizeof(struct bpf_func_state), GFP_KERNEL);
4583         if (!state->frame[0]) {
4584                 kfree(state);
4585                 return -ENOMEM;
4586         }
4587         env->cur_state = state;
4588         init_func_state(env, state->frame[0],
4589                         BPF_MAIN_FUNC /* callsite */,
4590                         0 /* frameno */,
4591                         0 /* subprogno, zero == main subprog */);
4592         insn_idx = 0;
4593         for (;;) {
4594                 struct bpf_insn *insn;
4595                 u8 class;
4596                 int err;
4597
4598                 if (insn_idx >= insn_cnt) {
4599                         verbose(env, "invalid insn idx %d insn_cnt %d\n",
4600                                 insn_idx, insn_cnt);
4601                         return -EFAULT;
4602                 }
4603
4604                 insn = &insns[insn_idx];
4605                 class = BPF_CLASS(insn->code);
4606
4607                 if (++insn_processed > BPF_COMPLEXITY_LIMIT_INSNS) {
4608                         verbose(env,
4609                                 "BPF program is too large. Processed %d insn\n",
4610                                 insn_processed);
4611                         return -E2BIG;
4612                 }
4613
4614                 err = is_state_visited(env, insn_idx);
4615                 if (err < 0)
4616                         return err;
4617                 if (err == 1) {
4618                         /* found equivalent state, can prune the search */
4619                         if (env->log.level) {
4620                                 if (do_print_state)
4621                                         verbose(env, "\nfrom %d to %d: safe\n",
4622                                                 prev_insn_idx, insn_idx);
4623                                 else
4624                                         verbose(env, "%d: safe\n", insn_idx);
4625                         }
4626                         goto process_bpf_exit;
4627                 }
4628
4629                 if (need_resched())
4630                         cond_resched();
4631
4632                 if (env->log.level > 1 || (env->log.level && do_print_state)) {
4633                         if (env->log.level > 1)
4634                                 verbose(env, "%d:", insn_idx);
4635                         else
4636                                 verbose(env, "\nfrom %d to %d:",
4637                                         prev_insn_idx, insn_idx);
4638                         print_verifier_state(env, state->frame[state->curframe]);
4639                         do_print_state = false;
4640                 }
4641
4642                 if (env->log.level) {
4643                         const struct bpf_insn_cbs cbs = {
4644                                 .cb_print       = verbose,
4645                                 .private_data   = env,
4646                         };
4647
4648                         verbose(env, "%d: ", insn_idx);
4649                         print_bpf_insn(&cbs, insn, env->allow_ptr_leaks);
4650                 }
4651
4652                 if (bpf_prog_is_dev_bound(env->prog->aux)) {
4653                         err = bpf_prog_offload_verify_insn(env, insn_idx,
4654                                                            prev_insn_idx);
4655                         if (err)
4656                                 return err;
4657                 }
4658
4659                 regs = cur_regs(env);
4660                 env->insn_aux_data[insn_idx].seen = true;
4661                 if (class == BPF_ALU || class == BPF_ALU64) {
4662                         err = check_alu_op(env, insn);
4663                         if (err)
4664                                 return err;
4665
4666                 } else if (class == BPF_LDX) {
4667                         enum bpf_reg_type *prev_src_type, src_reg_type;
4668
4669                         /* check for reserved fields is already done */
4670
4671                         /* check src operand */
4672                         err = check_reg_arg(env, insn->src_reg, SRC_OP);
4673                         if (err)
4674                                 return err;
4675
4676                         err = check_reg_arg(env, insn->dst_reg, DST_OP_NO_MARK);
4677                         if (err)
4678                                 return err;
4679
4680                         src_reg_type = regs[insn->src_reg].type;
4681
4682                         /* check that memory (src_reg + off) is readable,
4683                          * the state of dst_reg will be updated by this func
4684                          */
4685                         err = check_mem_access(env, insn_idx, insn->src_reg, insn->off,
4686                                                BPF_SIZE(insn->code), BPF_READ,
4687                                                insn->dst_reg, false);
4688                         if (err)
4689                                 return err;
4690
4691                         prev_src_type = &env->insn_aux_data[insn_idx].ptr_type;
4692
4693                         if (*prev_src_type == NOT_INIT) {
4694                                 /* saw a valid insn
4695                                  * dst_reg = *(u32 *)(src_reg + off)
4696                                  * save type to validate intersecting paths
4697                                  */
4698                                 *prev_src_type = src_reg_type;
4699
4700                         } else if (src_reg_type != *prev_src_type &&
4701                                    (src_reg_type == PTR_TO_CTX ||
4702                                     *prev_src_type == PTR_TO_CTX)) {
4703                                 /* ABuser program is trying to use the same insn
4704                                  * dst_reg = *(u32*) (src_reg + off)
4705                                  * with different pointer types:
4706                                  * src_reg == ctx in one branch and
4707                                  * src_reg == stack|map in some other branch.
4708                                  * Reject it.
4709                                  */
4710                                 verbose(env, "same insn cannot be used with different pointers\n");
4711                                 return -EINVAL;
4712                         }
4713
4714                 } else if (class == BPF_STX) {
4715                         enum bpf_reg_type *prev_dst_type, dst_reg_type;
4716
4717                         if (BPF_MODE(insn->code) == BPF_XADD) {
4718                                 err = check_xadd(env, insn_idx, insn);
4719                                 if (err)
4720                                         return err;
4721                                 insn_idx++;
4722                                 continue;
4723                         }
4724
4725                         /* check src1 operand */
4726                         err = check_reg_arg(env, insn->src_reg, SRC_OP);
4727                         if (err)
4728                                 return err;
4729                         /* check src2 operand */
4730                         err = check_reg_arg(env, insn->dst_reg, SRC_OP);
4731                         if (err)
4732                                 return err;
4733
4734                         dst_reg_type = regs[insn->dst_reg].type;
4735
4736                         /* check that memory (dst_reg + off) is writeable */
4737                         err = check_mem_access(env, insn_idx, insn->dst_reg, insn->off,
4738                                                BPF_SIZE(insn->code), BPF_WRITE,
4739                                                insn->src_reg, false);
4740                         if (err)
4741                                 return err;
4742
4743                         prev_dst_type = &env->insn_aux_data[insn_idx].ptr_type;
4744
4745                         if (*prev_dst_type == NOT_INIT) {
4746                                 *prev_dst_type = dst_reg_type;
4747                         } else if (dst_reg_type != *prev_dst_type &&
4748                                    (dst_reg_type == PTR_TO_CTX ||
4749                                     *prev_dst_type == PTR_TO_CTX)) {
4750                                 verbose(env, "same insn cannot be used with different pointers\n");
4751                                 return -EINVAL;
4752                         }
4753
4754                 } else if (class == BPF_ST) {
4755                         if (BPF_MODE(insn->code) != BPF_MEM ||
4756                             insn->src_reg != BPF_REG_0) {
4757                                 verbose(env, "BPF_ST uses reserved fields\n");
4758                                 return -EINVAL;
4759                         }
4760                         /* check src operand */
4761                         err = check_reg_arg(env, insn->dst_reg, SRC_OP);
4762                         if (err)
4763                                 return err;
4764
4765                         if (is_ctx_reg(env, insn->dst_reg)) {
4766                                 verbose(env, "BPF_ST stores into R%d context is not allowed\n",
4767                                         insn->dst_reg);
4768                                 return -EACCES;
4769                         }
4770
4771                         /* check that memory (dst_reg + off) is writeable */
4772                         err = check_mem_access(env, insn_idx, insn->dst_reg, insn->off,
4773                                                BPF_SIZE(insn->code), BPF_WRITE,
4774                                                -1, false);
4775                         if (err)
4776                                 return err;
4777
4778                 } else if (class == BPF_JMP) {
4779                         u8 opcode = BPF_OP(insn->code);
4780
4781                         if (opcode == BPF_CALL) {
4782                                 if (BPF_SRC(insn->code) != BPF_K ||
4783                                     insn->off != 0 ||
4784                                     (insn->src_reg != BPF_REG_0 &&
4785                                      insn->src_reg != BPF_PSEUDO_CALL) ||
4786                                     insn->dst_reg != BPF_REG_0) {
4787                                         verbose(env, "BPF_CALL uses reserved fields\n");
4788                                         return -EINVAL;
4789                                 }
4790
4791                                 if (insn->src_reg == BPF_PSEUDO_CALL)
4792                                         err = check_func_call(env, insn, &insn_idx);
4793                                 else
4794                                         err = check_helper_call(env, insn->imm, insn_idx);
4795                                 if (err)
4796                                         return err;
4797
4798                         } else if (opcode == BPF_JA) {
4799                                 if (BPF_SRC(insn->code) != BPF_K ||
4800                                     insn->imm != 0 ||
4801                                     insn->src_reg != BPF_REG_0 ||
4802                                     insn->dst_reg != BPF_REG_0) {
4803                                         verbose(env, "BPF_JA uses reserved fields\n");
4804                                         return -EINVAL;
4805                                 }
4806
4807                                 insn_idx += insn->off + 1;
4808                                 continue;
4809
4810                         } else if (opcode == BPF_EXIT) {
4811                                 if (BPF_SRC(insn->code) != BPF_K ||
4812                                     insn->imm != 0 ||
4813                                     insn->src_reg != BPF_REG_0 ||
4814                                     insn->dst_reg != BPF_REG_0) {
4815                                         verbose(env, "BPF_EXIT uses reserved fields\n");
4816                                         return -EINVAL;
4817                                 }
4818
4819                                 if (state->curframe) {
4820                                         /* exit from nested function */
4821                                         prev_insn_idx = insn_idx;
4822                                         err = prepare_func_exit(env, &insn_idx);
4823                                         if (err)
4824                                                 return err;
4825                                         do_print_state = true;
4826                                         continue;
4827                                 }
4828
4829                                 /* eBPF calling convetion is such that R0 is used
4830                                  * to return the value from eBPF program.
4831                                  * Make sure that it's readable at this time
4832                                  * of bpf_exit, which means that program wrote
4833                                  * something into it earlier
4834                                  */
4835                                 err = check_reg_arg(env, BPF_REG_0, SRC_OP);
4836                                 if (err)
4837                                         return err;
4838
4839                                 if (is_pointer_value(env, BPF_REG_0)) {
4840                                         verbose(env, "R0 leaks addr as return value\n");
4841                                         return -EACCES;
4842                                 }
4843
4844                                 err = check_return_code(env);
4845                                 if (err)
4846                                         return err;
4847 process_bpf_exit:
4848                                 err = pop_stack(env, &prev_insn_idx, &insn_idx);
4849                                 if (err < 0) {
4850                                         if (err != -ENOENT)
4851                                                 return err;
4852                                         break;
4853                                 } else {
4854                                         do_print_state = true;
4855                                         continue;
4856                                 }
4857                         } else {
4858                                 err = check_cond_jmp_op(env, insn, &insn_idx);
4859                                 if (err)
4860                                         return err;
4861                         }
4862                 } else if (class == BPF_LD) {
4863                         u8 mode = BPF_MODE(insn->code);
4864
4865                         if (mode == BPF_ABS || mode == BPF_IND) {
4866                                 err = check_ld_abs(env, insn);
4867                                 if (err)
4868                                         return err;
4869
4870                         } else if (mode == BPF_IMM) {
4871                                 err = check_ld_imm(env, insn);
4872                                 if (err)
4873                                         return err;
4874
4875                                 insn_idx++;
4876                                 env->insn_aux_data[insn_idx].seen = true;
4877                         } else {
4878                                 verbose(env, "invalid BPF_LD mode\n");
4879                                 return -EINVAL;
4880                         }
4881                 } else {
4882                         verbose(env, "unknown insn class %d\n", class);
4883                         return -EINVAL;
4884                 }
4885
4886                 insn_idx++;
4887         }
4888
4889         verbose(env, "processed %d insns (limit %d), stack depth ",
4890                 insn_processed, BPF_COMPLEXITY_LIMIT_INSNS);
4891         for (i = 0; i < env->subprog_cnt + 1; i++) {
4892                 u32 depth = env->subprog_stack_depth[i];
4893
4894                 verbose(env, "%d", depth);
4895                 if (i + 1 < env->subprog_cnt + 1)
4896                         verbose(env, "+");
4897         }
4898         verbose(env, "\n");
4899         env->prog->aux->stack_depth = env->subprog_stack_depth[0];
4900         return 0;
4901 }
4902
4903 static int check_map_prealloc(struct bpf_map *map)
4904 {
4905         return (map->map_type != BPF_MAP_TYPE_HASH &&
4906                 map->map_type != BPF_MAP_TYPE_PERCPU_HASH &&
4907                 map->map_type != BPF_MAP_TYPE_HASH_OF_MAPS) ||
4908                 !(map->map_flags & BPF_F_NO_PREALLOC);
4909 }
4910
4911 static int check_map_prog_compatibility(struct bpf_verifier_env *env,
4912                                         struct bpf_map *map,
4913                                         struct bpf_prog *prog)
4914
4915 {
4916         /* Make sure that BPF_PROG_TYPE_PERF_EVENT programs only use
4917          * preallocated hash maps, since doing memory allocation
4918          * in overflow_handler can crash depending on where nmi got
4919          * triggered.
4920          */
4921         if (prog->type == BPF_PROG_TYPE_PERF_EVENT) {
4922                 if (!check_map_prealloc(map)) {
4923                         verbose(env, "perf_event programs can only use preallocated hash map\n");
4924                         return -EINVAL;
4925                 }
4926                 if (map->inner_map_meta &&
4927                     !check_map_prealloc(map->inner_map_meta)) {
4928                         verbose(env, "perf_event programs can only use preallocated inner hash map\n");
4929                         return -EINVAL;
4930                 }
4931         }
4932
4933         if ((bpf_prog_is_dev_bound(prog->aux) || bpf_map_is_dev_bound(map)) &&
4934             !bpf_offload_dev_match(prog, map)) {
4935                 verbose(env, "offload device mismatch between prog and map\n");
4936                 return -EINVAL;
4937         }
4938
4939         return 0;
4940 }
4941
4942 /* look for pseudo eBPF instructions that access map FDs and
4943  * replace them with actual map pointers
4944  */
4945 static int replace_map_fd_with_map_ptr(struct bpf_verifier_env *env)
4946 {
4947         struct bpf_insn *insn = env->prog->insnsi;
4948         int insn_cnt = env->prog->len;
4949         int i, j, err;
4950
4951         err = bpf_prog_calc_tag(env->prog);
4952         if (err)
4953                 return err;
4954
4955         for (i = 0; i < insn_cnt; i++, insn++) {
4956                 if (BPF_CLASS(insn->code) == BPF_LDX &&
4957                     (BPF_MODE(insn->code) != BPF_MEM || insn->imm != 0)) {
4958                         verbose(env, "BPF_LDX uses reserved fields\n");
4959                         return -EINVAL;
4960                 }
4961
4962                 if (BPF_CLASS(insn->code) == BPF_STX &&
4963                     ((BPF_MODE(insn->code) != BPF_MEM &&
4964                       BPF_MODE(insn->code) != BPF_XADD) || insn->imm != 0)) {
4965                         verbose(env, "BPF_STX uses reserved fields\n");
4966                         return -EINVAL;
4967                 }
4968
4969                 if (insn[0].code == (BPF_LD | BPF_IMM | BPF_DW)) {
4970                         struct bpf_map *map;
4971                         struct fd f;
4972
4973                         if (i == insn_cnt - 1 || insn[1].code != 0 ||
4974                             insn[1].dst_reg != 0 || insn[1].src_reg != 0 ||
4975                             insn[1].off != 0) {
4976                                 verbose(env, "invalid bpf_ld_imm64 insn\n");
4977                                 return -EINVAL;
4978                         }
4979
4980                         if (insn->src_reg == 0)
4981                                 /* valid generic load 64-bit imm */
4982                                 goto next_insn;
4983
4984                         if (insn->src_reg != BPF_PSEUDO_MAP_FD) {
4985                                 verbose(env,
4986                                         "unrecognized bpf_ld_imm64 insn\n");
4987                                 return -EINVAL;
4988                         }
4989
4990                         f = fdget(insn->imm);
4991                         map = __bpf_map_get(f);
4992                         if (IS_ERR(map)) {
4993                                 verbose(env, "fd %d is not pointing to valid bpf_map\n",
4994                                         insn->imm);
4995                                 return PTR_ERR(map);
4996                         }
4997
4998                         err = check_map_prog_compatibility(env, map, env->prog);
4999                         if (err) {
5000                                 fdput(f);
5001                                 return err;
5002                         }
5003
5004                         /* store map pointer inside BPF_LD_IMM64 instruction */
5005                         insn[0].imm = (u32) (unsigned long) map;
5006                         insn[1].imm = ((u64) (unsigned long) map) >> 32;
5007
5008                         /* check whether we recorded this map already */
5009                         for (j = 0; j < env->used_map_cnt; j++)
5010                                 if (env->used_maps[j] == map) {
5011                                         fdput(f);
5012                                         goto next_insn;
5013                                 }
5014
5015                         if (env->used_map_cnt >= MAX_USED_MAPS) {
5016                                 fdput(f);
5017                                 return -E2BIG;
5018                         }
5019
5020                         /* hold the map. If the program is rejected by verifier,
5021                          * the map will be released by release_maps() or it
5022                          * will be used by the valid program until it's unloaded
5023                          * and all maps are released in free_bpf_prog_info()
5024                          */
5025                         map = bpf_map_inc(map, false);
5026                         if (IS_ERR(map)) {
5027                                 fdput(f);
5028                                 return PTR_ERR(map);
5029                         }
5030                         env->used_maps[env->used_map_cnt++] = map;
5031
5032                         fdput(f);
5033 next_insn:
5034                         insn++;
5035                         i++;
5036                         continue;
5037                 }
5038
5039                 /* Basic sanity check before we invest more work here. */
5040                 if (!bpf_opcode_in_insntable(insn->code)) {
5041                         verbose(env, "unknown opcode %02x\n", insn->code);
5042                         return -EINVAL;
5043                 }
5044         }
5045
5046         /* now all pseudo BPF_LD_IMM64 instructions load valid
5047          * 'struct bpf_map *' into a register instead of user map_fd.
5048          * These pointers will be used later by verifier to validate map access.
5049          */
5050         return 0;
5051 }
5052
5053 /* drop refcnt of maps used by the rejected program */
5054 static void release_maps(struct bpf_verifier_env *env)
5055 {
5056         int i;
5057
5058         for (i = 0; i < env->used_map_cnt; i++)
5059                 bpf_map_put(env->used_maps[i]);
5060 }
5061
5062 /* convert pseudo BPF_LD_IMM64 into generic BPF_LD_IMM64 */
5063 static void convert_pseudo_ld_imm64(struct bpf_verifier_env *env)
5064 {
5065         struct bpf_insn *insn = env->prog->insnsi;
5066         int insn_cnt = env->prog->len;
5067         int i;
5068
5069         for (i = 0; i < insn_cnt; i++, insn++)
5070                 if (insn->code == (BPF_LD | BPF_IMM | BPF_DW))
5071                         insn->src_reg = 0;
5072 }
5073
5074 /* single env->prog->insni[off] instruction was replaced with the range
5075  * insni[off, off + cnt).  Adjust corresponding insn_aux_data by copying
5076  * [0, off) and [off, end) to new locations, so the patched range stays zero
5077  */
5078 static int adjust_insn_aux_data(struct bpf_verifier_env *env, u32 prog_len,
5079                                 u32 off, u32 cnt)
5080 {
5081         struct bpf_insn_aux_data *new_data, *old_data = env->insn_aux_data;
5082         int i;
5083
5084         if (cnt == 1)
5085                 return 0;
5086         new_data = vzalloc(sizeof(struct bpf_insn_aux_data) * prog_len);
5087         if (!new_data)
5088                 return -ENOMEM;
5089         memcpy(new_data, old_data, sizeof(struct bpf_insn_aux_data) * off);
5090         memcpy(new_data + off + cnt - 1, old_data + off,
5091                sizeof(struct bpf_insn_aux_data) * (prog_len - off - cnt + 1));
5092         for (i = off; i < off + cnt - 1; i++)
5093                 new_data[i].seen = true;
5094         env->insn_aux_data = new_data;
5095         vfree(old_data);
5096         return 0;
5097 }
5098
5099 static void adjust_subprog_starts(struct bpf_verifier_env *env, u32 off, u32 len)
5100 {
5101         int i;
5102
5103         if (len == 1)
5104                 return;
5105         for (i = 0; i < env->subprog_cnt; i++) {
5106                 if (env->subprog_starts[i] < off)
5107                         continue;
5108                 env->subprog_starts[i] += len - 1;
5109         }
5110 }
5111
5112 static struct bpf_prog *bpf_patch_insn_data(struct bpf_verifier_env *env, u32 off,
5113                                             const struct bpf_insn *patch, u32 len)
5114 {
5115         struct bpf_prog *new_prog;
5116
5117         new_prog = bpf_patch_insn_single(env->prog, off, patch, len);
5118         if (!new_prog)
5119                 return NULL;
5120         if (adjust_insn_aux_data(env, new_prog->len, off, len))
5121                 return NULL;
5122         adjust_subprog_starts(env, off, len);
5123         return new_prog;
5124 }
5125
5126 /* The verifier does more data flow analysis than llvm and will not
5127  * explore branches that are dead at run time. Malicious programs can
5128  * have dead code too. Therefore replace all dead at-run-time code
5129  * with 'ja -1'.
5130  *
5131  * Just nops are not optimal, e.g. if they would sit at the end of the
5132  * program and through another bug we would manage to jump there, then
5133  * we'd execute beyond program memory otherwise. Returning exception
5134  * code also wouldn't work since we can have subprogs where the dead
5135  * code could be located.
5136  */
5137 static void sanitize_dead_code(struct bpf_verifier_env *env)
5138 {
5139         struct bpf_insn_aux_data *aux_data = env->insn_aux_data;
5140         struct bpf_insn trap = BPF_JMP_IMM(BPF_JA, 0, 0, -1);
5141         struct bpf_insn *insn = env->prog->insnsi;
5142         const int insn_cnt = env->prog->len;
5143         int i;
5144
5145         for (i = 0; i < insn_cnt; i++) {
5146                 if (aux_data[i].seen)
5147                         continue;
5148                 memcpy(insn + i, &trap, sizeof(trap));
5149         }
5150 }
5151
5152 /* convert load instructions that access fields of 'struct __sk_buff'
5153  * into sequence of instructions that access fields of 'struct sk_buff'
5154  */
5155 static int convert_ctx_accesses(struct bpf_verifier_env *env)
5156 {
5157         const struct bpf_verifier_ops *ops = env->ops;
5158         int i, cnt, size, ctx_field_size, delta = 0;
5159         const int insn_cnt = env->prog->len;
5160         struct bpf_insn insn_buf[16], *insn;
5161         struct bpf_prog *new_prog;
5162         enum bpf_access_type type;
5163         bool is_narrower_load;
5164         u32 target_size;
5165
5166         if (ops->gen_prologue) {
5167                 cnt = ops->gen_prologue(insn_buf, env->seen_direct_write,
5168                                         env->prog);
5169                 if (cnt >= ARRAY_SIZE(insn_buf)) {
5170                         verbose(env, "bpf verifier is misconfigured\n");
5171                         return -EINVAL;
5172                 } else if (cnt) {
5173                         new_prog = bpf_patch_insn_data(env, 0, insn_buf, cnt);
5174                         if (!new_prog)
5175                                 return -ENOMEM;
5176
5177                         env->prog = new_prog;
5178                         delta += cnt - 1;
5179                 }
5180         }
5181
5182         if (!ops->convert_ctx_access)
5183                 return 0;
5184
5185         insn = env->prog->insnsi + delta;
5186
5187         for (i = 0; i < insn_cnt; i++, insn++) {
5188                 if (insn->code == (BPF_LDX | BPF_MEM | BPF_B) ||
5189                     insn->code == (BPF_LDX | BPF_MEM | BPF_H) ||
5190                     insn->code == (BPF_LDX | BPF_MEM | BPF_W) ||
5191                     insn->code == (BPF_LDX | BPF_MEM | BPF_DW))
5192                         type = BPF_READ;
5193                 else if (insn->code == (BPF_STX | BPF_MEM | BPF_B) ||
5194                          insn->code == (BPF_STX | BPF_MEM | BPF_H) ||
5195                          insn->code == (BPF_STX | BPF_MEM | BPF_W) ||
5196                          insn->code == (BPF_STX | BPF_MEM | BPF_DW))
5197                         type = BPF_WRITE;
5198                 else
5199                         continue;
5200
5201                 if (env->insn_aux_data[i + delta].ptr_type != PTR_TO_CTX)
5202                         continue;
5203
5204                 ctx_field_size = env->insn_aux_data[i + delta].ctx_field_size;
5205                 size = BPF_LDST_BYTES(insn);
5206
5207                 /* If the read access is a narrower load of the field,
5208                  * convert to a 4/8-byte load, to minimum program type specific
5209                  * convert_ctx_access changes. If conversion is successful,
5210                  * we will apply proper mask to the result.
5211                  */
5212                 is_narrower_load = size < ctx_field_size;
5213                 if (is_narrower_load) {
5214                         u32 off = insn->off;
5215                         u8 size_code;
5216
5217                         if (type == BPF_WRITE) {
5218                                 verbose(env, "bpf verifier narrow ctx access misconfigured\n");
5219                                 return -EINVAL;
5220                         }
5221
5222                         size_code = BPF_H;
5223                         if (ctx_field_size == 4)
5224                                 size_code = BPF_W;
5225                         else if (ctx_field_size == 8)
5226                                 size_code = BPF_DW;
5227
5228                         insn->off = off & ~(ctx_field_size - 1);
5229                         insn->code = BPF_LDX | BPF_MEM | size_code;
5230                 }
5231
5232                 target_size = 0;
5233                 cnt = ops->convert_ctx_access(type, insn, insn_buf, env->prog,
5234                                               &target_size);
5235                 if (cnt == 0 || cnt >= ARRAY_SIZE(insn_buf) ||
5236                     (ctx_field_size && !target_size)) {
5237                         verbose(env, "bpf verifier is misconfigured\n");
5238                         return -EINVAL;
5239                 }
5240
5241                 if (is_narrower_load && size < target_size) {
5242                         if (ctx_field_size <= 4)
5243                                 insn_buf[cnt++] = BPF_ALU32_IMM(BPF_AND, insn->dst_reg,
5244                                                                 (1 << size * 8) - 1);
5245                         else
5246                                 insn_buf[cnt++] = BPF_ALU64_IMM(BPF_AND, insn->dst_reg,
5247                                                                 (1 << size * 8) - 1);
5248                 }
5249
5250                 new_prog = bpf_patch_insn_data(env, i + delta, insn_buf, cnt);
5251                 if (!new_prog)
5252                         return -ENOMEM;
5253
5254                 delta += cnt - 1;
5255
5256                 /* keep walking new program and skip insns we just inserted */
5257                 env->prog = new_prog;
5258                 insn      = new_prog->insnsi + i + delta;
5259         }
5260
5261         return 0;
5262 }
5263
5264 static int jit_subprogs(struct bpf_verifier_env *env)
5265 {
5266         struct bpf_prog *prog = env->prog, **func, *tmp;
5267         int i, j, subprog_start, subprog_end = 0, len, subprog;
5268         struct bpf_insn *insn;
5269         void *old_bpf_func;
5270         int err = -ENOMEM;
5271
5272         if (env->subprog_cnt == 0)
5273                 return 0;
5274
5275         for (i = 0, insn = prog->insnsi; i < prog->len; i++, insn++) {
5276                 if (insn->code != (BPF_JMP | BPF_CALL) ||
5277                     insn->src_reg != BPF_PSEUDO_CALL)
5278                         continue;
5279                 subprog = find_subprog(env, i + insn->imm + 1);
5280                 if (subprog < 0) {
5281                         WARN_ONCE(1, "verifier bug. No program starts at insn %d\n",
5282                                   i + insn->imm + 1);
5283                         return -EFAULT;
5284                 }
5285                 /* temporarily remember subprog id inside insn instead of
5286                  * aux_data, since next loop will split up all insns into funcs
5287                  */
5288                 insn->off = subprog + 1;
5289                 /* remember original imm in case JIT fails and fallback
5290                  * to interpreter will be needed
5291                  */
5292                 env->insn_aux_data[i].call_imm = insn->imm;
5293                 /* point imm to __bpf_call_base+1 from JITs point of view */
5294                 insn->imm = 1;
5295         }
5296
5297         func = kzalloc(sizeof(prog) * (env->subprog_cnt + 1), GFP_KERNEL);
5298         if (!func)
5299                 return -ENOMEM;
5300
5301         for (i = 0; i <= env->subprog_cnt; i++) {
5302                 subprog_start = subprog_end;
5303                 if (env->subprog_cnt == i)
5304                         subprog_end = prog->len;
5305                 else
5306                         subprog_end = env->subprog_starts[i];
5307
5308                 len = subprog_end - subprog_start;
5309                 func[i] = bpf_prog_alloc(bpf_prog_size(len), GFP_USER);
5310                 if (!func[i])
5311                         goto out_free;
5312                 memcpy(func[i]->insnsi, &prog->insnsi[subprog_start],
5313                        len * sizeof(struct bpf_insn));
5314                 func[i]->type = prog->type;
5315                 func[i]->len = len;
5316                 if (bpf_prog_calc_tag(func[i]))
5317                         goto out_free;
5318                 func[i]->is_func = 1;
5319                 /* Use bpf_prog_F_tag to indicate functions in stack traces.
5320                  * Long term would need debug info to populate names
5321                  */
5322                 func[i]->aux->name[0] = 'F';
5323                 func[i]->aux->stack_depth = env->subprog_stack_depth[i];
5324                 func[i]->jit_requested = 1;
5325                 func[i] = bpf_int_jit_compile(func[i]);
5326                 if (!func[i]->jited) {
5327                         err = -ENOTSUPP;
5328                         goto out_free;
5329                 }
5330                 cond_resched();
5331         }
5332         /* at this point all bpf functions were successfully JITed
5333          * now populate all bpf_calls with correct addresses and
5334          * run last pass of JIT
5335          */
5336         for (i = 0; i <= env->subprog_cnt; i++) {
5337                 insn = func[i]->insnsi;
5338                 for (j = 0; j < func[i]->len; j++, insn++) {
5339                         if (insn->code != (BPF_JMP | BPF_CALL) ||
5340                             insn->src_reg != BPF_PSEUDO_CALL)
5341                                 continue;
5342                         subprog = insn->off;
5343                         insn->off = 0;
5344                         insn->imm = (u64 (*)(u64, u64, u64, u64, u64))
5345                                 func[subprog]->bpf_func -
5346                                 __bpf_call_base;
5347                 }
5348         }
5349         for (i = 0; i <= env->subprog_cnt; i++) {
5350                 old_bpf_func = func[i]->bpf_func;
5351                 tmp = bpf_int_jit_compile(func[i]);
5352                 if (tmp != func[i] || func[i]->bpf_func != old_bpf_func) {
5353                         verbose(env, "JIT doesn't support bpf-to-bpf calls\n");
5354                         err = -EFAULT;
5355                         goto out_free;
5356                 }
5357                 cond_resched();
5358         }
5359
5360         /* finally lock prog and jit images for all functions and
5361          * populate kallsysm
5362          */
5363         for (i = 0; i <= env->subprog_cnt; i++) {
5364                 bpf_prog_lock_ro(func[i]);
5365                 bpf_prog_kallsyms_add(func[i]);
5366         }
5367
5368         /* Last step: make now unused interpreter insns from main
5369          * prog consistent for later dump requests, so they can
5370          * later look the same as if they were interpreted only.
5371          */
5372         for (i = 0, insn = prog->insnsi; i < prog->len; i++, insn++) {
5373                 unsigned long addr;
5374
5375                 if (insn->code != (BPF_JMP | BPF_CALL) ||
5376                     insn->src_reg != BPF_PSEUDO_CALL)
5377                         continue;
5378                 insn->off = env->insn_aux_data[i].call_imm;
5379                 subprog = find_subprog(env, i + insn->off + 1);
5380                 addr  = (unsigned long)func[subprog + 1]->bpf_func;
5381                 addr &= PAGE_MASK;
5382                 insn->imm = (u64 (*)(u64, u64, u64, u64, u64))
5383                             addr - __bpf_call_base;
5384         }
5385
5386         prog->jited = 1;
5387         prog->bpf_func = func[0]->bpf_func;
5388         prog->aux->func = func;
5389         prog->aux->func_cnt = env->subprog_cnt + 1;
5390         return 0;
5391 out_free:
5392         for (i = 0; i <= env->subprog_cnt; i++)
5393                 if (func[i])
5394                         bpf_jit_free(func[i]);
5395         kfree(func);
5396         /* cleanup main prog to be interpreted */
5397         prog->jit_requested = 0;
5398         for (i = 0, insn = prog->insnsi; i < prog->len; i++, insn++) {
5399                 if (insn->code != (BPF_JMP | BPF_CALL) ||
5400                     insn->src_reg != BPF_PSEUDO_CALL)
5401                         continue;
5402                 insn->off = 0;
5403                 insn->imm = env->insn_aux_data[i].call_imm;
5404         }
5405         return err;
5406 }
5407
5408 static int fixup_call_args(struct bpf_verifier_env *env)
5409 {
5410 #ifndef CONFIG_BPF_JIT_ALWAYS_ON
5411         struct bpf_prog *prog = env->prog;
5412         struct bpf_insn *insn = prog->insnsi;
5413         int i, depth;
5414 #endif
5415         int err;
5416
5417         err = 0;
5418         if (env->prog->jit_requested) {
5419                 err = jit_subprogs(env);
5420                 if (err == 0)
5421                         return 0;
5422         }
5423 #ifndef CONFIG_BPF_JIT_ALWAYS_ON
5424         for (i = 0; i < prog->len; i++, insn++) {
5425                 if (insn->code != (BPF_JMP | BPF_CALL) ||
5426                     insn->src_reg != BPF_PSEUDO_CALL)
5427                         continue;
5428                 depth = get_callee_stack_depth(env, insn, i);
5429                 if (depth < 0)
5430                         return depth;
5431                 bpf_patch_call_args(insn, depth);
5432         }
5433         err = 0;
5434 #endif
5435         return err;
5436 }
5437
5438 /* fixup insn->imm field of bpf_call instructions
5439  * and inline eligible helpers as explicit sequence of BPF instructions
5440  *
5441  * this function is called after eBPF program passed verification
5442  */
5443 static int fixup_bpf_calls(struct bpf_verifier_env *env)
5444 {
5445         struct bpf_prog *prog = env->prog;
5446         struct bpf_insn *insn = prog->insnsi;
5447         const struct bpf_func_proto *fn;
5448         const int insn_cnt = prog->len;
5449         struct bpf_insn insn_buf[16];
5450         struct bpf_prog *new_prog;
5451         struct bpf_map *map_ptr;
5452         int i, cnt, delta = 0;
5453
5454         for (i = 0; i < insn_cnt; i++, insn++) {
5455                 if (insn->code == (BPF_ALU64 | BPF_MOD | BPF_X) ||
5456                     insn->code == (BPF_ALU64 | BPF_DIV | BPF_X) ||
5457                     insn->code == (BPF_ALU | BPF_MOD | BPF_X) ||
5458                     insn->code == (BPF_ALU | BPF_DIV | BPF_X)) {
5459                         bool is64 = BPF_CLASS(insn->code) == BPF_ALU64;
5460                         struct bpf_insn mask_and_div[] = {
5461                                 BPF_MOV32_REG(insn->src_reg, insn->src_reg),
5462                                 /* Rx div 0 -> 0 */
5463                                 BPF_JMP_IMM(BPF_JNE, insn->src_reg, 0, 2),
5464                                 BPF_ALU32_REG(BPF_XOR, insn->dst_reg, insn->dst_reg),
5465                                 BPF_JMP_IMM(BPF_JA, 0, 0, 1),
5466                                 *insn,
5467                         };
5468                         struct bpf_insn mask_and_mod[] = {
5469                                 BPF_MOV32_REG(insn->src_reg, insn->src_reg),
5470                                 /* Rx mod 0 -> Rx */
5471                                 BPF_JMP_IMM(BPF_JEQ, insn->src_reg, 0, 1),
5472                                 *insn,
5473                         };
5474                         struct bpf_insn *patchlet;
5475
5476                         if (insn->code == (BPF_ALU64 | BPF_DIV | BPF_X) ||
5477                             insn->code == (BPF_ALU | BPF_DIV | BPF_X)) {
5478                                 patchlet = mask_and_div + (is64 ? 1 : 0);
5479                                 cnt = ARRAY_SIZE(mask_and_div) - (is64 ? 1 : 0);
5480                         } else {
5481                                 patchlet = mask_and_mod + (is64 ? 1 : 0);
5482                                 cnt = ARRAY_SIZE(mask_and_mod) - (is64 ? 1 : 0);
5483                         }
5484
5485                         new_prog = bpf_patch_insn_data(env, i + delta, patchlet, cnt);
5486                         if (!new_prog)
5487                                 return -ENOMEM;
5488
5489                         delta    += cnt - 1;
5490                         env->prog = prog = new_prog;
5491                         insn      = new_prog->insnsi + i + delta;
5492                         continue;
5493                 }
5494
5495                 if (insn->code != (BPF_JMP | BPF_CALL))
5496                         continue;
5497                 if (insn->src_reg == BPF_PSEUDO_CALL)
5498                         continue;
5499
5500                 if (insn->imm == BPF_FUNC_get_route_realm)
5501                         prog->dst_needed = 1;
5502                 if (insn->imm == BPF_FUNC_get_prandom_u32)
5503                         bpf_user_rnd_init_once();
5504                 if (insn->imm == BPF_FUNC_override_return)
5505                         prog->kprobe_override = 1;
5506                 if (insn->imm == BPF_FUNC_tail_call) {
5507                         /* If we tail call into other programs, we
5508                          * cannot make any assumptions since they can
5509                          * be replaced dynamically during runtime in
5510                          * the program array.
5511                          */
5512                         prog->cb_access = 1;
5513                         env->prog->aux->stack_depth = MAX_BPF_STACK;
5514
5515                         /* mark bpf_tail_call as different opcode to avoid
5516                          * conditional branch in the interpeter for every normal
5517                          * call and to prevent accidental JITing by JIT compiler
5518                          * that doesn't support bpf_tail_call yet
5519                          */
5520                         insn->imm = 0;
5521                         insn->code = BPF_JMP | BPF_TAIL_CALL;
5522
5523                         /* instead of changing every JIT dealing with tail_call
5524                          * emit two extra insns:
5525                          * if (index >= max_entries) goto out;
5526                          * index &= array->index_mask;
5527                          * to avoid out-of-bounds cpu speculation
5528                          */
5529                         map_ptr = env->insn_aux_data[i + delta].map_ptr;
5530                         if (map_ptr == BPF_MAP_PTR_POISON) {
5531                                 verbose(env, "tail_call abusing map_ptr\n");
5532                                 return -EINVAL;
5533                         }
5534                         if (!map_ptr->unpriv_array)
5535                                 continue;
5536                         insn_buf[0] = BPF_JMP_IMM(BPF_JGE, BPF_REG_3,
5537                                                   map_ptr->max_entries, 2);
5538                         insn_buf[1] = BPF_ALU32_IMM(BPF_AND, BPF_REG_3,
5539                                                     container_of(map_ptr,
5540                                                                  struct bpf_array,
5541                                                                  map)->index_mask);
5542                         insn_buf[2] = *insn;
5543                         cnt = 3;
5544                         new_prog = bpf_patch_insn_data(env, i + delta, insn_buf, cnt);
5545                         if (!new_prog)
5546                                 return -ENOMEM;
5547
5548                         delta    += cnt - 1;
5549                         env->prog = prog = new_prog;
5550                         insn      = new_prog->insnsi + i + delta;
5551                         continue;
5552                 }
5553
5554                 /* BPF_EMIT_CALL() assumptions in some of the map_gen_lookup
5555                  * handlers are currently limited to 64 bit only.
5556                  */
5557                 if (prog->jit_requested && BITS_PER_LONG == 64 &&
5558                     insn->imm == BPF_FUNC_map_lookup_elem) {
5559                         map_ptr = env->insn_aux_data[i + delta].map_ptr;
5560                         if (map_ptr == BPF_MAP_PTR_POISON ||
5561                             !map_ptr->ops->map_gen_lookup)
5562                                 goto patch_call_imm;
5563
5564                         cnt = map_ptr->ops->map_gen_lookup(map_ptr, insn_buf);
5565                         if (cnt == 0 || cnt >= ARRAY_SIZE(insn_buf)) {
5566                                 verbose(env, "bpf verifier is misconfigured\n");
5567                                 return -EINVAL;
5568                         }
5569
5570                         new_prog = bpf_patch_insn_data(env, i + delta, insn_buf,
5571                                                        cnt);
5572                         if (!new_prog)
5573                                 return -ENOMEM;
5574
5575                         delta += cnt - 1;
5576
5577                         /* keep walking new program and skip insns we just inserted */
5578                         env->prog = prog = new_prog;
5579                         insn      = new_prog->insnsi + i + delta;
5580                         continue;
5581                 }
5582
5583                 if (insn->imm == BPF_FUNC_redirect_map) {
5584                         /* Note, we cannot use prog directly as imm as subsequent
5585                          * rewrites would still change the prog pointer. The only
5586                          * stable address we can use is aux, which also works with
5587                          * prog clones during blinding.
5588                          */
5589                         u64 addr = (unsigned long)prog->aux;
5590                         struct bpf_insn r4_ld[] = {
5591                                 BPF_LD_IMM64(BPF_REG_4, addr),
5592                                 *insn,
5593                         };
5594                         cnt = ARRAY_SIZE(r4_ld);
5595
5596                         new_prog = bpf_patch_insn_data(env, i + delta, r4_ld, cnt);
5597                         if (!new_prog)
5598                                 return -ENOMEM;
5599
5600                         delta    += cnt - 1;
5601                         env->prog = prog = new_prog;
5602                         insn      = new_prog->insnsi + i + delta;
5603                 }
5604 patch_call_imm:
5605                 fn = env->ops->get_func_proto(insn->imm, env->prog);
5606                 /* all functions that have prototype and verifier allowed
5607                  * programs to call them, must be real in-kernel functions
5608                  */
5609                 if (!fn->func) {
5610                         verbose(env,
5611                                 "kernel subsystem misconfigured func %s#%d\n",
5612                                 func_id_name(insn->imm), insn->imm);
5613                         return -EFAULT;
5614                 }
5615                 insn->imm = fn->func - __bpf_call_base;
5616         }
5617
5618         return 0;
5619 }
5620
5621 static void free_states(struct bpf_verifier_env *env)
5622 {
5623         struct bpf_verifier_state_list *sl, *sln;
5624         int i;
5625
5626         if (!env->explored_states)
5627                 return;
5628
5629         for (i = 0; i < env->prog->len; i++) {
5630                 sl = env->explored_states[i];
5631
5632                 if (sl)
5633                         while (sl != STATE_LIST_MARK) {
5634                                 sln = sl->next;
5635                                 free_verifier_state(&sl->state, false);
5636                                 kfree(sl);
5637                                 sl = sln;
5638                         }
5639         }
5640
5641         kfree(env->explored_states);
5642 }
5643
5644 int bpf_check(struct bpf_prog **prog, union bpf_attr *attr)
5645 {
5646         struct bpf_verifier_env *env;
5647         struct bpf_verifier_log *log;
5648         int ret = -EINVAL;
5649
5650         /* no program is valid */
5651         if (ARRAY_SIZE(bpf_verifier_ops) == 0)
5652                 return -EINVAL;
5653
5654         /* 'struct bpf_verifier_env' can be global, but since it's not small,
5655          * allocate/free it every time bpf_check() is called
5656          */
5657         env = kzalloc(sizeof(struct bpf_verifier_env), GFP_KERNEL);
5658         if (!env)
5659                 return -ENOMEM;
5660         log = &env->log;
5661
5662         env->insn_aux_data = vzalloc(sizeof(struct bpf_insn_aux_data) *
5663                                      (*prog)->len);
5664         ret = -ENOMEM;
5665         if (!env->insn_aux_data)
5666                 goto err_free_env;
5667         env->prog = *prog;
5668         env->ops = bpf_verifier_ops[env->prog->type];
5669
5670         /* grab the mutex to protect few globals used by verifier */
5671         mutex_lock(&bpf_verifier_lock);
5672
5673         if (attr->log_level || attr->log_buf || attr->log_size) {
5674                 /* user requested verbose verifier output
5675                  * and supplied buffer to store the verification trace
5676                  */
5677                 log->level = attr->log_level;
5678                 log->ubuf = (char __user *) (unsigned long) attr->log_buf;
5679                 log->len_total = attr->log_size;
5680
5681                 ret = -EINVAL;
5682                 /* log attributes have to be sane */
5683                 if (log->len_total < 128 || log->len_total > UINT_MAX >> 8 ||
5684                     !log->level || !log->ubuf)
5685                         goto err_unlock;
5686         }
5687
5688         env->strict_alignment = !!(attr->prog_flags & BPF_F_STRICT_ALIGNMENT);
5689         if (!IS_ENABLED(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS))
5690                 env->strict_alignment = true;
5691
5692         if (bpf_prog_is_dev_bound(env->prog->aux)) {
5693                 ret = bpf_prog_offload_verifier_prep(env);
5694                 if (ret)
5695                         goto err_unlock;
5696         }
5697
5698         ret = replace_map_fd_with_map_ptr(env);
5699         if (ret < 0)
5700                 goto skip_full_check;
5701
5702         env->explored_states = kcalloc(env->prog->len,
5703                                        sizeof(struct bpf_verifier_state_list *),
5704                                        GFP_USER);
5705         ret = -ENOMEM;
5706         if (!env->explored_states)
5707                 goto skip_full_check;
5708
5709         env->allow_ptr_leaks = capable(CAP_SYS_ADMIN);
5710
5711         ret = check_cfg(env);
5712         if (ret < 0)
5713                 goto skip_full_check;
5714
5715         ret = do_check(env);
5716         if (env->cur_state) {
5717                 free_verifier_state(env->cur_state, true);
5718                 env->cur_state = NULL;
5719         }
5720
5721 skip_full_check:
5722         while (!pop_stack(env, NULL, NULL));
5723         free_states(env);
5724
5725         if (ret == 0)
5726                 sanitize_dead_code(env);
5727
5728         if (ret == 0)
5729                 ret = check_max_stack_depth(env);
5730
5731         if (ret == 0)
5732                 /* program is valid, convert *(u32*)(ctx + off) accesses */
5733                 ret = convert_ctx_accesses(env);
5734
5735         if (ret == 0)
5736                 ret = fixup_bpf_calls(env);
5737
5738         if (ret == 0)
5739                 ret = fixup_call_args(env);
5740
5741         if (log->level && bpf_verifier_log_full(log))
5742                 ret = -ENOSPC;
5743         if (log->level && !log->ubuf) {
5744                 ret = -EFAULT;
5745                 goto err_release_maps;
5746         }
5747
5748         if (ret == 0 && env->used_map_cnt) {
5749                 /* if program passed verifier, update used_maps in bpf_prog_info */
5750                 env->prog->aux->used_maps = kmalloc_array(env->used_map_cnt,
5751                                                           sizeof(env->used_maps[0]),
5752                                                           GFP_KERNEL);
5753
5754                 if (!env->prog->aux->used_maps) {
5755                         ret = -ENOMEM;
5756                         goto err_release_maps;
5757                 }
5758
5759                 memcpy(env->prog->aux->used_maps, env->used_maps,
5760                        sizeof(env->used_maps[0]) * env->used_map_cnt);
5761                 env->prog->aux->used_map_cnt = env->used_map_cnt;
5762
5763                 /* program is valid. Convert pseudo bpf_ld_imm64 into generic
5764                  * bpf_ld_imm64 instructions
5765                  */
5766                 convert_pseudo_ld_imm64(env);
5767         }
5768
5769 err_release_maps:
5770         if (!env->prog->aux->used_maps)
5771                 /* if we didn't copy map pointers into bpf_prog_info, release
5772                  * them now. Otherwise free_bpf_prog_info() will release them.
5773                  */
5774                 release_maps(env);
5775         *prog = env->prog;
5776 err_unlock:
5777         mutex_unlock(&bpf_verifier_lock);
5778         vfree(env->insn_aux_data);
5779 err_free_env:
5780         kfree(env);
5781         return ret;
5782 }