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