xref: /linux-6.15/tools/objtool/check.c (revision 2e3bc71e)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (C) 2015-2017 Josh Poimboeuf <[email protected]>
4  */
5 
6 #include <string.h>
7 #include <stdlib.h>
8 #include <inttypes.h>
9 #include <sys/mman.h>
10 
11 #include <objtool/builtin.h>
12 #include <objtool/cfi.h>
13 #include <objtool/arch.h>
14 #include <objtool/check.h>
15 #include <objtool/special.h>
16 #include <objtool/warn.h>
17 #include <objtool/endianness.h>
18 
19 #include <linux/objtool_types.h>
20 #include <linux/hashtable.h>
21 #include <linux/kernel.h>
22 #include <linux/static_call_types.h>
23 #include <linux/string.h>
24 
25 struct alternative {
26 	struct alternative *next;
27 	struct instruction *insn;
28 	bool skip_orig;
29 };
30 
31 static unsigned long nr_cfi, nr_cfi_reused, nr_cfi_cache;
32 
33 static struct cfi_init_state initial_func_cfi;
34 static struct cfi_state init_cfi;
35 static struct cfi_state func_cfi;
36 static struct cfi_state force_undefined_cfi;
37 
38 struct instruction *find_insn(struct objtool_file *file,
39 			      struct section *sec, unsigned long offset)
40 {
41 	struct instruction *insn;
42 
43 	hash_for_each_possible(file->insn_hash, insn, hash, sec_offset_hash(sec, offset)) {
44 		if (insn->sec == sec && insn->offset == offset)
45 			return insn;
46 	}
47 
48 	return NULL;
49 }
50 
51 struct instruction *next_insn_same_sec(struct objtool_file *file,
52 				       struct instruction *insn)
53 {
54 	if (insn->idx == INSN_CHUNK_MAX)
55 		return find_insn(file, insn->sec, insn->offset + insn->len);
56 
57 	insn++;
58 	if (!insn->len)
59 		return NULL;
60 
61 	return insn;
62 }
63 
64 static struct instruction *next_insn_same_func(struct objtool_file *file,
65 					       struct instruction *insn)
66 {
67 	struct instruction *next = next_insn_same_sec(file, insn);
68 	struct symbol *func = insn_func(insn);
69 
70 	if (!func)
71 		return NULL;
72 
73 	if (next && insn_func(next) == func)
74 		return next;
75 
76 	/* Check if we're already in the subfunction: */
77 	if (func == func->cfunc)
78 		return NULL;
79 
80 	/* Move to the subfunction: */
81 	return find_insn(file, func->cfunc->sec, func->cfunc->offset);
82 }
83 
84 static struct instruction *prev_insn_same_sec(struct objtool_file *file,
85 					      struct instruction *insn)
86 {
87 	if (insn->idx == 0) {
88 		if (insn->prev_len)
89 			return find_insn(file, insn->sec, insn->offset - insn->prev_len);
90 		return NULL;
91 	}
92 
93 	return insn - 1;
94 }
95 
96 static struct instruction *prev_insn_same_sym(struct objtool_file *file,
97 					      struct instruction *insn)
98 {
99 	struct instruction *prev = prev_insn_same_sec(file, insn);
100 
101 	if (prev && insn_func(prev) == insn_func(insn))
102 		return prev;
103 
104 	return NULL;
105 }
106 
107 #define for_each_insn(file, insn)					\
108 	for (struct section *__sec, *__fake = (struct section *)1;	\
109 	     __fake; __fake = NULL)					\
110 		for_each_sec(file, __sec)				\
111 			sec_for_each_insn(file, __sec, insn)
112 
113 #define func_for_each_insn(file, func, insn)				\
114 	for (insn = find_insn(file, func->sec, func->offset);		\
115 	     insn;							\
116 	     insn = next_insn_same_func(file, insn))
117 
118 #define sym_for_each_insn(file, sym, insn)				\
119 	for (insn = find_insn(file, sym->sec, sym->offset);		\
120 	     insn && insn->offset < sym->offset + sym->len;		\
121 	     insn = next_insn_same_sec(file, insn))
122 
123 #define sym_for_each_insn_continue_reverse(file, sym, insn)		\
124 	for (insn = prev_insn_same_sec(file, insn);			\
125 	     insn && insn->offset >= sym->offset;			\
126 	     insn = prev_insn_same_sec(file, insn))
127 
128 #define sec_for_each_insn_from(file, insn)				\
129 	for (; insn; insn = next_insn_same_sec(file, insn))
130 
131 #define sec_for_each_insn_continue(file, insn)				\
132 	for (insn = next_insn_same_sec(file, insn); insn;		\
133 	     insn = next_insn_same_sec(file, insn))
134 
135 static inline struct symbol *insn_call_dest(struct instruction *insn)
136 {
137 	if (insn->type == INSN_JUMP_DYNAMIC ||
138 	    insn->type == INSN_CALL_DYNAMIC)
139 		return NULL;
140 
141 	return insn->_call_dest;
142 }
143 
144 static inline struct reloc *insn_jump_table(struct instruction *insn)
145 {
146 	if (insn->type == INSN_JUMP_DYNAMIC ||
147 	    insn->type == INSN_CALL_DYNAMIC)
148 		return insn->_jump_table;
149 
150 	return NULL;
151 }
152 
153 static inline unsigned long insn_jump_table_size(struct instruction *insn)
154 {
155 	if (insn->type == INSN_JUMP_DYNAMIC ||
156 	    insn->type == INSN_CALL_DYNAMIC)
157 		return insn->_jump_table_size;
158 
159 	return 0;
160 }
161 
162 static bool is_jump_table_jump(struct instruction *insn)
163 {
164 	struct alt_group *alt_group = insn->alt_group;
165 
166 	if (insn_jump_table(insn))
167 		return true;
168 
169 	/* Retpoline alternative for a jump table? */
170 	return alt_group && alt_group->orig_group &&
171 	       insn_jump_table(alt_group->orig_group->first_insn);
172 }
173 
174 static bool is_sibling_call(struct instruction *insn)
175 {
176 	/*
177 	 * Assume only STT_FUNC calls have jump-tables.
178 	 */
179 	if (insn_func(insn)) {
180 		/* An indirect jump is either a sibling call or a jump to a table. */
181 		if (insn->type == INSN_JUMP_DYNAMIC)
182 			return !is_jump_table_jump(insn);
183 	}
184 
185 	/* add_jump_destinations() sets insn_call_dest(insn) for sibling calls. */
186 	return (is_static_jump(insn) && insn_call_dest(insn));
187 }
188 
189 /*
190  * Checks if a string ends with another.
191  */
192 static bool str_ends_with(const char *s, const char *sub)
193 {
194 	const int slen = strlen(s);
195 	const int sublen = strlen(sub);
196 
197 	if (sublen > slen)
198 		return 0;
199 
200 	return !memcmp(s + slen - sublen, sub, sublen);
201 }
202 
203 /*
204  * Checks if a function is a Rust "noreturn" one.
205  */
206 static bool is_rust_noreturn(const struct symbol *func)
207 {
208 	/*
209 	 * If it does not start with "_R", then it is not a Rust symbol.
210 	 */
211 	if (strncmp(func->name, "_R", 2))
212 		return false;
213 
214 	/*
215 	 * These are just heuristics -- we do not control the precise symbol
216 	 * name, due to the crate disambiguators (which depend on the compiler)
217 	 * as well as changes to the source code itself between versions (since
218 	 * these come from the Rust standard library).
219 	 */
220 	return str_ends_with(func->name, "_4core5sliceSp15copy_from_slice17len_mismatch_fail")		||
221 	       str_ends_with(func->name, "_4core6option13unwrap_failed")				||
222 	       str_ends_with(func->name, "_4core6result13unwrap_failed")				||
223 	       str_ends_with(func->name, "_4core9panicking5panic")					||
224 	       str_ends_with(func->name, "_4core9panicking9panic_fmt")					||
225 	       str_ends_with(func->name, "_4core9panicking14panic_explicit")				||
226 	       str_ends_with(func->name, "_4core9panicking14panic_nounwind")				||
227 	       str_ends_with(func->name, "_4core9panicking18panic_bounds_check")			||
228 	       str_ends_with(func->name, "_4core9panicking19assert_failed_inner")			||
229 	       str_ends_with(func->name, "_4core9panicking36panic_misaligned_pointer_dereference")	||
230 	       strstr(func->name, "_4core9panicking13assert_failed")					||
231 	       strstr(func->name, "_4core9panicking11panic_const24panic_const_")			||
232 	       (strstr(func->name, "_4core5slice5index24slice_") &&
233 		str_ends_with(func->name, "_fail"));
234 }
235 
236 /*
237  * This checks to see if the given function is a "noreturn" function.
238  *
239  * For global functions which are outside the scope of this object file, we
240  * have to keep a manual list of them.
241  *
242  * For local functions, we have to detect them manually by simply looking for
243  * the lack of a return instruction.
244  */
245 static bool __dead_end_function(struct objtool_file *file, struct symbol *func,
246 				int recursion)
247 {
248 	int i;
249 	struct instruction *insn;
250 	bool empty = true;
251 
252 #define NORETURN(func) __stringify(func),
253 	static const char * const global_noreturns[] = {
254 #include "noreturns.h"
255 	};
256 #undef NORETURN
257 
258 	if (!func)
259 		return false;
260 
261 	if (func->bind == STB_GLOBAL || func->bind == STB_WEAK) {
262 		if (is_rust_noreturn(func))
263 			return true;
264 
265 		for (i = 0; i < ARRAY_SIZE(global_noreturns); i++)
266 			if (!strcmp(func->name, global_noreturns[i]))
267 				return true;
268 	}
269 
270 	if (func->bind == STB_WEAK)
271 		return false;
272 
273 	if (!func->len)
274 		return false;
275 
276 	insn = find_insn(file, func->sec, func->offset);
277 	if (!insn || !insn_func(insn))
278 		return false;
279 
280 	func_for_each_insn(file, func, insn) {
281 		empty = false;
282 
283 		if (insn->type == INSN_RETURN)
284 			return false;
285 	}
286 
287 	if (empty)
288 		return false;
289 
290 	/*
291 	 * A function can have a sibling call instead of a return.  In that
292 	 * case, the function's dead-end status depends on whether the target
293 	 * of the sibling call returns.
294 	 */
295 	func_for_each_insn(file, func, insn) {
296 		if (is_sibling_call(insn)) {
297 			struct instruction *dest = insn->jump_dest;
298 
299 			if (!dest)
300 				/* sibling call to another file */
301 				return false;
302 
303 			/* local sibling call */
304 			if (recursion == 5) {
305 				/*
306 				 * Infinite recursion: two functions have
307 				 * sibling calls to each other.  This is a very
308 				 * rare case.  It means they aren't dead ends.
309 				 */
310 				return false;
311 			}
312 
313 			return __dead_end_function(file, insn_func(dest), recursion+1);
314 		}
315 	}
316 
317 	return true;
318 }
319 
320 static bool dead_end_function(struct objtool_file *file, struct symbol *func)
321 {
322 	return __dead_end_function(file, func, 0);
323 }
324 
325 static void init_cfi_state(struct cfi_state *cfi)
326 {
327 	int i;
328 
329 	for (i = 0; i < CFI_NUM_REGS; i++) {
330 		cfi->regs[i].base = CFI_UNDEFINED;
331 		cfi->vals[i].base = CFI_UNDEFINED;
332 	}
333 	cfi->cfa.base = CFI_UNDEFINED;
334 	cfi->drap_reg = CFI_UNDEFINED;
335 	cfi->drap_offset = -1;
336 }
337 
338 static void init_insn_state(struct objtool_file *file, struct insn_state *state,
339 			    struct section *sec)
340 {
341 	memset(state, 0, sizeof(*state));
342 	init_cfi_state(&state->cfi);
343 
344 	/*
345 	 * We need the full vmlinux for noinstr validation, otherwise we can
346 	 * not correctly determine insn_call_dest(insn)->sec (external symbols
347 	 * do not have a section).
348 	 */
349 	if (opts.link && opts.noinstr && sec)
350 		state->noinstr = sec->noinstr;
351 }
352 
353 static struct cfi_state *cfi_alloc(void)
354 {
355 	struct cfi_state *cfi = calloc(1, sizeof(struct cfi_state));
356 	if (!cfi) {
357 		WARN("calloc failed");
358 		exit(1);
359 	}
360 	nr_cfi++;
361 	return cfi;
362 }
363 
364 static int cfi_bits;
365 static struct hlist_head *cfi_hash;
366 
367 static inline bool cficmp(struct cfi_state *cfi1, struct cfi_state *cfi2)
368 {
369 	return memcmp((void *)cfi1 + sizeof(cfi1->hash),
370 		      (void *)cfi2 + sizeof(cfi2->hash),
371 		      sizeof(struct cfi_state) - sizeof(struct hlist_node));
372 }
373 
374 static inline u32 cfi_key(struct cfi_state *cfi)
375 {
376 	return jhash((void *)cfi + sizeof(cfi->hash),
377 		     sizeof(*cfi) - sizeof(cfi->hash), 0);
378 }
379 
380 static struct cfi_state *cfi_hash_find_or_add(struct cfi_state *cfi)
381 {
382 	struct hlist_head *head = &cfi_hash[hash_min(cfi_key(cfi), cfi_bits)];
383 	struct cfi_state *obj;
384 
385 	hlist_for_each_entry(obj, head, hash) {
386 		if (!cficmp(cfi, obj)) {
387 			nr_cfi_cache++;
388 			return obj;
389 		}
390 	}
391 
392 	obj = cfi_alloc();
393 	*obj = *cfi;
394 	hlist_add_head(&obj->hash, head);
395 
396 	return obj;
397 }
398 
399 static void cfi_hash_add(struct cfi_state *cfi)
400 {
401 	struct hlist_head *head = &cfi_hash[hash_min(cfi_key(cfi), cfi_bits)];
402 
403 	hlist_add_head(&cfi->hash, head);
404 }
405 
406 static void *cfi_hash_alloc(unsigned long size)
407 {
408 	cfi_bits = max(10, ilog2(size));
409 	cfi_hash = mmap(NULL, sizeof(struct hlist_head) << cfi_bits,
410 			PROT_READ|PROT_WRITE,
411 			MAP_PRIVATE|MAP_ANON, -1, 0);
412 	if (cfi_hash == (void *)-1L) {
413 		WARN("mmap fail cfi_hash");
414 		cfi_hash = NULL;
415 	}  else if (opts.stats) {
416 		printf("cfi_bits: %d\n", cfi_bits);
417 	}
418 
419 	return cfi_hash;
420 }
421 
422 static unsigned long nr_insns;
423 static unsigned long nr_insns_visited;
424 
425 /*
426  * Call the arch-specific instruction decoder for all the instructions and add
427  * them to the global instruction list.
428  */
429 static int decode_instructions(struct objtool_file *file)
430 {
431 	struct section *sec;
432 	struct symbol *func;
433 	unsigned long offset;
434 	struct instruction *insn;
435 	int ret;
436 
437 	for_each_sec(file, sec) {
438 		struct instruction *insns = NULL;
439 		u8 prev_len = 0;
440 		u8 idx = 0;
441 
442 		if (!(sec->sh.sh_flags & SHF_EXECINSTR))
443 			continue;
444 
445 		if (strcmp(sec->name, ".altinstr_replacement") &&
446 		    strcmp(sec->name, ".altinstr_aux") &&
447 		    strncmp(sec->name, ".discard.", 9))
448 			sec->text = true;
449 
450 		if (!strcmp(sec->name, ".noinstr.text") ||
451 		    !strcmp(sec->name, ".entry.text") ||
452 		    !strcmp(sec->name, ".cpuidle.text") ||
453 		    !strncmp(sec->name, ".text..__x86.", 13))
454 			sec->noinstr = true;
455 
456 		/*
457 		 * .init.text code is ran before userspace and thus doesn't
458 		 * strictly need retpolines, except for modules which are
459 		 * loaded late, they very much do need retpoline in their
460 		 * .init.text
461 		 */
462 		if (!strcmp(sec->name, ".init.text") && !opts.module)
463 			sec->init = true;
464 
465 		for (offset = 0; offset < sec->sh.sh_size; offset += insn->len) {
466 			if (!insns || idx == INSN_CHUNK_MAX) {
467 				insns = calloc(sizeof(*insn), INSN_CHUNK_SIZE);
468 				if (!insns) {
469 					WARN("malloc failed");
470 					return -1;
471 				}
472 				idx = 0;
473 			} else {
474 				idx++;
475 			}
476 			insn = &insns[idx];
477 			insn->idx = idx;
478 
479 			INIT_LIST_HEAD(&insn->call_node);
480 			insn->sec = sec;
481 			insn->offset = offset;
482 			insn->prev_len = prev_len;
483 
484 			ret = arch_decode_instruction(file, sec, offset,
485 						      sec->sh.sh_size - offset,
486 						      insn);
487 			if (ret)
488 				return ret;
489 
490 			prev_len = insn->len;
491 
492 			/*
493 			 * By default, "ud2" is a dead end unless otherwise
494 			 * annotated, because GCC 7 inserts it for certain
495 			 * divide-by-zero cases.
496 			 */
497 			if (insn->type == INSN_BUG)
498 				insn->dead_end = true;
499 
500 			hash_add(file->insn_hash, &insn->hash, sec_offset_hash(sec, insn->offset));
501 			nr_insns++;
502 		}
503 
504 //		printf("%s: last chunk used: %d\n", sec->name, (int)idx);
505 
506 		sec_for_each_sym(sec, func) {
507 			if (func->type != STT_NOTYPE && func->type != STT_FUNC)
508 				continue;
509 
510 			if (func->offset == sec->sh.sh_size) {
511 				/* Heuristic: likely an "end" symbol */
512 				if (func->type == STT_NOTYPE)
513 					continue;
514 				WARN("%s(): STT_FUNC at end of section",
515 				     func->name);
516 				return -1;
517 			}
518 
519 			if (func->embedded_insn || func->alias != func)
520 				continue;
521 
522 			if (!find_insn(file, sec, func->offset)) {
523 				WARN("%s(): can't find starting instruction",
524 				     func->name);
525 				return -1;
526 			}
527 
528 			sym_for_each_insn(file, func, insn) {
529 				insn->sym = func;
530 				if (func->type == STT_FUNC &&
531 				    insn->type == INSN_ENDBR &&
532 				    list_empty(&insn->call_node)) {
533 					if (insn->offset == func->offset) {
534 						list_add_tail(&insn->call_node, &file->endbr_list);
535 						file->nr_endbr++;
536 					} else {
537 						file->nr_endbr_int++;
538 					}
539 				}
540 			}
541 		}
542 	}
543 
544 	if (opts.stats)
545 		printf("nr_insns: %lu\n", nr_insns);
546 
547 	return 0;
548 }
549 
550 /*
551  * Read the pv_ops[] .data table to find the static initialized values.
552  */
553 static int add_pv_ops(struct objtool_file *file, const char *symname)
554 {
555 	struct symbol *sym, *func;
556 	unsigned long off, end;
557 	struct reloc *reloc;
558 	int idx;
559 
560 	sym = find_symbol_by_name(file->elf, symname);
561 	if (!sym)
562 		return 0;
563 
564 	off = sym->offset;
565 	end = off + sym->len;
566 	for (;;) {
567 		reloc = find_reloc_by_dest_range(file->elf, sym->sec, off, end - off);
568 		if (!reloc)
569 			break;
570 
571 		func = reloc->sym;
572 		if (func->type == STT_SECTION)
573 			func = find_symbol_by_offset(reloc->sym->sec,
574 						     reloc_addend(reloc));
575 
576 		idx = (reloc_offset(reloc) - sym->offset) / sizeof(unsigned long);
577 
578 		objtool_pv_add(file, idx, func);
579 
580 		off = reloc_offset(reloc) + 1;
581 		if (off > end)
582 			break;
583 	}
584 
585 	return 0;
586 }
587 
588 /*
589  * Allocate and initialize file->pv_ops[].
590  */
591 static int init_pv_ops(struct objtool_file *file)
592 {
593 	static const char *pv_ops_tables[] = {
594 		"pv_ops",
595 		"xen_cpu_ops",
596 		"xen_irq_ops",
597 		"xen_mmu_ops",
598 		NULL,
599 	};
600 	const char *pv_ops;
601 	struct symbol *sym;
602 	int idx, nr;
603 
604 	if (!opts.noinstr)
605 		return 0;
606 
607 	file->pv_ops = NULL;
608 
609 	sym = find_symbol_by_name(file->elf, "pv_ops");
610 	if (!sym)
611 		return 0;
612 
613 	nr = sym->len / sizeof(unsigned long);
614 	file->pv_ops = calloc(sizeof(struct pv_state), nr);
615 	if (!file->pv_ops)
616 		return -1;
617 
618 	for (idx = 0; idx < nr; idx++)
619 		INIT_LIST_HEAD(&file->pv_ops[idx].targets);
620 
621 	for (idx = 0; (pv_ops = pv_ops_tables[idx]); idx++)
622 		add_pv_ops(file, pv_ops);
623 
624 	return 0;
625 }
626 
627 static int create_static_call_sections(struct objtool_file *file)
628 {
629 	struct static_call_site *site;
630 	struct section *sec;
631 	struct instruction *insn;
632 	struct symbol *key_sym;
633 	char *key_name, *tmp;
634 	int idx;
635 
636 	sec = find_section_by_name(file->elf, ".static_call_sites");
637 	if (sec) {
638 		INIT_LIST_HEAD(&file->static_call_list);
639 		WARN("file already has .static_call_sites section, skipping");
640 		return 0;
641 	}
642 
643 	if (list_empty(&file->static_call_list))
644 		return 0;
645 
646 	idx = 0;
647 	list_for_each_entry(insn, &file->static_call_list, call_node)
648 		idx++;
649 
650 	sec = elf_create_section_pair(file->elf, ".static_call_sites",
651 				      sizeof(*site), idx, idx * 2);
652 	if (!sec)
653 		return -1;
654 
655 	/* Allow modules to modify the low bits of static_call_site::key */
656 	sec->sh.sh_flags |= SHF_WRITE;
657 
658 	idx = 0;
659 	list_for_each_entry(insn, &file->static_call_list, call_node) {
660 
661 		/* populate reloc for 'addr' */
662 		if (!elf_init_reloc_text_sym(file->elf, sec,
663 					     idx * sizeof(*site), idx * 2,
664 					     insn->sec, insn->offset))
665 			return -1;
666 
667 		/* find key symbol */
668 		key_name = strdup(insn_call_dest(insn)->name);
669 		if (!key_name) {
670 			perror("strdup");
671 			return -1;
672 		}
673 		if (strncmp(key_name, STATIC_CALL_TRAMP_PREFIX_STR,
674 			    STATIC_CALL_TRAMP_PREFIX_LEN)) {
675 			WARN("static_call: trampoline name malformed: %s", key_name);
676 			free(key_name);
677 			return -1;
678 		}
679 		tmp = key_name + STATIC_CALL_TRAMP_PREFIX_LEN - STATIC_CALL_KEY_PREFIX_LEN;
680 		memcpy(tmp, STATIC_CALL_KEY_PREFIX_STR, STATIC_CALL_KEY_PREFIX_LEN);
681 
682 		key_sym = find_symbol_by_name(file->elf, tmp);
683 		if (!key_sym) {
684 			if (!opts.module) {
685 				WARN("static_call: can't find static_call_key symbol: %s", tmp);
686 				free(key_name);
687 				return -1;
688 			}
689 
690 			/*
691 			 * For modules(), the key might not be exported, which
692 			 * means the module can make static calls but isn't
693 			 * allowed to change them.
694 			 *
695 			 * In that case we temporarily set the key to be the
696 			 * trampoline address.  This is fixed up in
697 			 * static_call_add_module().
698 			 */
699 			key_sym = insn_call_dest(insn);
700 		}
701 		free(key_name);
702 
703 		/* populate reloc for 'key' */
704 		if (!elf_init_reloc_data_sym(file->elf, sec,
705 					     idx * sizeof(*site) + 4,
706 					     (idx * 2) + 1, key_sym,
707 					     is_sibling_call(insn) * STATIC_CALL_SITE_TAIL))
708 			return -1;
709 
710 		idx++;
711 	}
712 
713 	return 0;
714 }
715 
716 static int create_retpoline_sites_sections(struct objtool_file *file)
717 {
718 	struct instruction *insn;
719 	struct section *sec;
720 	int idx;
721 
722 	sec = find_section_by_name(file->elf, ".retpoline_sites");
723 	if (sec) {
724 		WARN("file already has .retpoline_sites, skipping");
725 		return 0;
726 	}
727 
728 	idx = 0;
729 	list_for_each_entry(insn, &file->retpoline_call_list, call_node)
730 		idx++;
731 
732 	if (!idx)
733 		return 0;
734 
735 	sec = elf_create_section_pair(file->elf, ".retpoline_sites",
736 				      sizeof(int), idx, idx);
737 	if (!sec)
738 		return -1;
739 
740 	idx = 0;
741 	list_for_each_entry(insn, &file->retpoline_call_list, call_node) {
742 
743 		if (!elf_init_reloc_text_sym(file->elf, sec,
744 					     idx * sizeof(int), idx,
745 					     insn->sec, insn->offset))
746 			return -1;
747 
748 		idx++;
749 	}
750 
751 	return 0;
752 }
753 
754 static int create_return_sites_sections(struct objtool_file *file)
755 {
756 	struct instruction *insn;
757 	struct section *sec;
758 	int idx;
759 
760 	sec = find_section_by_name(file->elf, ".return_sites");
761 	if (sec) {
762 		WARN("file already has .return_sites, skipping");
763 		return 0;
764 	}
765 
766 	idx = 0;
767 	list_for_each_entry(insn, &file->return_thunk_list, call_node)
768 		idx++;
769 
770 	if (!idx)
771 		return 0;
772 
773 	sec = elf_create_section_pair(file->elf, ".return_sites",
774 				      sizeof(int), idx, idx);
775 	if (!sec)
776 		return -1;
777 
778 	idx = 0;
779 	list_for_each_entry(insn, &file->return_thunk_list, call_node) {
780 
781 		if (!elf_init_reloc_text_sym(file->elf, sec,
782 					     idx * sizeof(int), idx,
783 					     insn->sec, insn->offset))
784 			return -1;
785 
786 		idx++;
787 	}
788 
789 	return 0;
790 }
791 
792 static int create_ibt_endbr_seal_sections(struct objtool_file *file)
793 {
794 	struct instruction *insn;
795 	struct section *sec;
796 	int idx;
797 
798 	sec = find_section_by_name(file->elf, ".ibt_endbr_seal");
799 	if (sec) {
800 		WARN("file already has .ibt_endbr_seal, skipping");
801 		return 0;
802 	}
803 
804 	idx = 0;
805 	list_for_each_entry(insn, &file->endbr_list, call_node)
806 		idx++;
807 
808 	if (opts.stats) {
809 		printf("ibt: ENDBR at function start: %d\n", file->nr_endbr);
810 		printf("ibt: ENDBR inside functions:  %d\n", file->nr_endbr_int);
811 		printf("ibt: superfluous ENDBR:       %d\n", idx);
812 	}
813 
814 	if (!idx)
815 		return 0;
816 
817 	sec = elf_create_section_pair(file->elf, ".ibt_endbr_seal",
818 				      sizeof(int), idx, idx);
819 	if (!sec)
820 		return -1;
821 
822 	idx = 0;
823 	list_for_each_entry(insn, &file->endbr_list, call_node) {
824 
825 		int *site = (int *)sec->data->d_buf + idx;
826 		struct symbol *sym = insn->sym;
827 		*site = 0;
828 
829 		if (opts.module && sym && sym->type == STT_FUNC &&
830 		    insn->offset == sym->offset &&
831 		    (!strcmp(sym->name, "init_module") ||
832 		     !strcmp(sym->name, "cleanup_module")))
833 			WARN("%s(): not an indirect call target", sym->name);
834 
835 		if (!elf_init_reloc_text_sym(file->elf, sec,
836 					     idx * sizeof(int), idx,
837 					     insn->sec, insn->offset))
838 			return -1;
839 
840 		idx++;
841 	}
842 
843 	return 0;
844 }
845 
846 static int create_cfi_sections(struct objtool_file *file)
847 {
848 	struct section *sec;
849 	struct symbol *sym;
850 	int idx;
851 
852 	sec = find_section_by_name(file->elf, ".cfi_sites");
853 	if (sec) {
854 		INIT_LIST_HEAD(&file->call_list);
855 		WARN("file already has .cfi_sites section, skipping");
856 		return 0;
857 	}
858 
859 	idx = 0;
860 	for_each_sym(file, sym) {
861 		if (sym->type != STT_FUNC)
862 			continue;
863 
864 		if (strncmp(sym->name, "__cfi_", 6))
865 			continue;
866 
867 		idx++;
868 	}
869 
870 	sec = elf_create_section_pair(file->elf, ".cfi_sites",
871 				      sizeof(unsigned int), idx, idx);
872 	if (!sec)
873 		return -1;
874 
875 	idx = 0;
876 	for_each_sym(file, sym) {
877 		if (sym->type != STT_FUNC)
878 			continue;
879 
880 		if (strncmp(sym->name, "__cfi_", 6))
881 			continue;
882 
883 		if (!elf_init_reloc_text_sym(file->elf, sec,
884 					     idx * sizeof(unsigned int), idx,
885 					     sym->sec, sym->offset))
886 			return -1;
887 
888 		idx++;
889 	}
890 
891 	return 0;
892 }
893 
894 static int create_mcount_loc_sections(struct objtool_file *file)
895 {
896 	size_t addr_size = elf_addr_size(file->elf);
897 	struct instruction *insn;
898 	struct section *sec;
899 	int idx;
900 
901 	sec = find_section_by_name(file->elf, "__mcount_loc");
902 	if (sec) {
903 		INIT_LIST_HEAD(&file->mcount_loc_list);
904 		WARN("file already has __mcount_loc section, skipping");
905 		return 0;
906 	}
907 
908 	if (list_empty(&file->mcount_loc_list))
909 		return 0;
910 
911 	idx = 0;
912 	list_for_each_entry(insn, &file->mcount_loc_list, call_node)
913 		idx++;
914 
915 	sec = elf_create_section_pair(file->elf, "__mcount_loc", addr_size,
916 				      idx, idx);
917 	if (!sec)
918 		return -1;
919 
920 	sec->sh.sh_addralign = addr_size;
921 
922 	idx = 0;
923 	list_for_each_entry(insn, &file->mcount_loc_list, call_node) {
924 
925 		struct reloc *reloc;
926 
927 		reloc = elf_init_reloc_text_sym(file->elf, sec, idx * addr_size, idx,
928 					       insn->sec, insn->offset);
929 		if (!reloc)
930 			return -1;
931 
932 		set_reloc_type(file->elf, reloc, addr_size == 8 ? R_ABS64 : R_ABS32);
933 
934 		idx++;
935 	}
936 
937 	return 0;
938 }
939 
940 static int create_direct_call_sections(struct objtool_file *file)
941 {
942 	struct instruction *insn;
943 	struct section *sec;
944 	int idx;
945 
946 	sec = find_section_by_name(file->elf, ".call_sites");
947 	if (sec) {
948 		INIT_LIST_HEAD(&file->call_list);
949 		WARN("file already has .call_sites section, skipping");
950 		return 0;
951 	}
952 
953 	if (list_empty(&file->call_list))
954 		return 0;
955 
956 	idx = 0;
957 	list_for_each_entry(insn, &file->call_list, call_node)
958 		idx++;
959 
960 	sec = elf_create_section_pair(file->elf, ".call_sites",
961 				      sizeof(unsigned int), idx, idx);
962 	if (!sec)
963 		return -1;
964 
965 	idx = 0;
966 	list_for_each_entry(insn, &file->call_list, call_node) {
967 
968 		if (!elf_init_reloc_text_sym(file->elf, sec,
969 					     idx * sizeof(unsigned int), idx,
970 					     insn->sec, insn->offset))
971 			return -1;
972 
973 		idx++;
974 	}
975 
976 	return 0;
977 }
978 
979 /*
980  * Warnings shouldn't be reported for ignored functions.
981  */
982 static void add_ignores(struct objtool_file *file)
983 {
984 	struct instruction *insn;
985 	struct section *rsec;
986 	struct symbol *func;
987 	struct reloc *reloc;
988 
989 	rsec = find_section_by_name(file->elf, ".rela.discard.func_stack_frame_non_standard");
990 	if (!rsec)
991 		return;
992 
993 	for_each_reloc(rsec, reloc) {
994 		switch (reloc->sym->type) {
995 		case STT_FUNC:
996 			func = reloc->sym;
997 			break;
998 
999 		case STT_SECTION:
1000 			func = find_func_by_offset(reloc->sym->sec, reloc_addend(reloc));
1001 			if (!func)
1002 				continue;
1003 			break;
1004 
1005 		default:
1006 			WARN("unexpected relocation symbol type in %s: %d",
1007 			     rsec->name, reloc->sym->type);
1008 			continue;
1009 		}
1010 
1011 		func_for_each_insn(file, func, insn)
1012 			insn->ignore = true;
1013 	}
1014 }
1015 
1016 /*
1017  * This is a whitelist of functions that is allowed to be called with AC set.
1018  * The list is meant to be minimal and only contains compiler instrumentation
1019  * ABI and a few functions used to implement *_{to,from}_user() functions.
1020  *
1021  * These functions must not directly change AC, but may PUSHF/POPF.
1022  */
1023 static const char *uaccess_safe_builtin[] = {
1024 	/* KASAN */
1025 	"kasan_report",
1026 	"kasan_check_range",
1027 	/* KASAN out-of-line */
1028 	"__asan_loadN_noabort",
1029 	"__asan_load1_noabort",
1030 	"__asan_load2_noabort",
1031 	"__asan_load4_noabort",
1032 	"__asan_load8_noabort",
1033 	"__asan_load16_noabort",
1034 	"__asan_storeN_noabort",
1035 	"__asan_store1_noabort",
1036 	"__asan_store2_noabort",
1037 	"__asan_store4_noabort",
1038 	"__asan_store8_noabort",
1039 	"__asan_store16_noabort",
1040 	"__kasan_check_read",
1041 	"__kasan_check_write",
1042 	/* KASAN in-line */
1043 	"__asan_report_load_n_noabort",
1044 	"__asan_report_load1_noabort",
1045 	"__asan_report_load2_noabort",
1046 	"__asan_report_load4_noabort",
1047 	"__asan_report_load8_noabort",
1048 	"__asan_report_load16_noabort",
1049 	"__asan_report_store_n_noabort",
1050 	"__asan_report_store1_noabort",
1051 	"__asan_report_store2_noabort",
1052 	"__asan_report_store4_noabort",
1053 	"__asan_report_store8_noabort",
1054 	"__asan_report_store16_noabort",
1055 	/* KCSAN */
1056 	"__kcsan_check_access",
1057 	"__kcsan_mb",
1058 	"__kcsan_wmb",
1059 	"__kcsan_rmb",
1060 	"__kcsan_release",
1061 	"kcsan_found_watchpoint",
1062 	"kcsan_setup_watchpoint",
1063 	"kcsan_check_scoped_accesses",
1064 	"kcsan_disable_current",
1065 	"kcsan_enable_current_nowarn",
1066 	/* KCSAN/TSAN */
1067 	"__tsan_func_entry",
1068 	"__tsan_func_exit",
1069 	"__tsan_read_range",
1070 	"__tsan_write_range",
1071 	"__tsan_read1",
1072 	"__tsan_read2",
1073 	"__tsan_read4",
1074 	"__tsan_read8",
1075 	"__tsan_read16",
1076 	"__tsan_write1",
1077 	"__tsan_write2",
1078 	"__tsan_write4",
1079 	"__tsan_write8",
1080 	"__tsan_write16",
1081 	"__tsan_read_write1",
1082 	"__tsan_read_write2",
1083 	"__tsan_read_write4",
1084 	"__tsan_read_write8",
1085 	"__tsan_read_write16",
1086 	"__tsan_volatile_read1",
1087 	"__tsan_volatile_read2",
1088 	"__tsan_volatile_read4",
1089 	"__tsan_volatile_read8",
1090 	"__tsan_volatile_read16",
1091 	"__tsan_volatile_write1",
1092 	"__tsan_volatile_write2",
1093 	"__tsan_volatile_write4",
1094 	"__tsan_volatile_write8",
1095 	"__tsan_volatile_write16",
1096 	"__tsan_atomic8_load",
1097 	"__tsan_atomic16_load",
1098 	"__tsan_atomic32_load",
1099 	"__tsan_atomic64_load",
1100 	"__tsan_atomic8_store",
1101 	"__tsan_atomic16_store",
1102 	"__tsan_atomic32_store",
1103 	"__tsan_atomic64_store",
1104 	"__tsan_atomic8_exchange",
1105 	"__tsan_atomic16_exchange",
1106 	"__tsan_atomic32_exchange",
1107 	"__tsan_atomic64_exchange",
1108 	"__tsan_atomic8_fetch_add",
1109 	"__tsan_atomic16_fetch_add",
1110 	"__tsan_atomic32_fetch_add",
1111 	"__tsan_atomic64_fetch_add",
1112 	"__tsan_atomic8_fetch_sub",
1113 	"__tsan_atomic16_fetch_sub",
1114 	"__tsan_atomic32_fetch_sub",
1115 	"__tsan_atomic64_fetch_sub",
1116 	"__tsan_atomic8_fetch_and",
1117 	"__tsan_atomic16_fetch_and",
1118 	"__tsan_atomic32_fetch_and",
1119 	"__tsan_atomic64_fetch_and",
1120 	"__tsan_atomic8_fetch_or",
1121 	"__tsan_atomic16_fetch_or",
1122 	"__tsan_atomic32_fetch_or",
1123 	"__tsan_atomic64_fetch_or",
1124 	"__tsan_atomic8_fetch_xor",
1125 	"__tsan_atomic16_fetch_xor",
1126 	"__tsan_atomic32_fetch_xor",
1127 	"__tsan_atomic64_fetch_xor",
1128 	"__tsan_atomic8_fetch_nand",
1129 	"__tsan_atomic16_fetch_nand",
1130 	"__tsan_atomic32_fetch_nand",
1131 	"__tsan_atomic64_fetch_nand",
1132 	"__tsan_atomic8_compare_exchange_strong",
1133 	"__tsan_atomic16_compare_exchange_strong",
1134 	"__tsan_atomic32_compare_exchange_strong",
1135 	"__tsan_atomic64_compare_exchange_strong",
1136 	"__tsan_atomic8_compare_exchange_weak",
1137 	"__tsan_atomic16_compare_exchange_weak",
1138 	"__tsan_atomic32_compare_exchange_weak",
1139 	"__tsan_atomic64_compare_exchange_weak",
1140 	"__tsan_atomic8_compare_exchange_val",
1141 	"__tsan_atomic16_compare_exchange_val",
1142 	"__tsan_atomic32_compare_exchange_val",
1143 	"__tsan_atomic64_compare_exchange_val",
1144 	"__tsan_atomic_thread_fence",
1145 	"__tsan_atomic_signal_fence",
1146 	"__tsan_unaligned_read16",
1147 	"__tsan_unaligned_write16",
1148 	/* KCOV */
1149 	"write_comp_data",
1150 	"check_kcov_mode",
1151 	"__sanitizer_cov_trace_pc",
1152 	"__sanitizer_cov_trace_const_cmp1",
1153 	"__sanitizer_cov_trace_const_cmp2",
1154 	"__sanitizer_cov_trace_const_cmp4",
1155 	"__sanitizer_cov_trace_const_cmp8",
1156 	"__sanitizer_cov_trace_cmp1",
1157 	"__sanitizer_cov_trace_cmp2",
1158 	"__sanitizer_cov_trace_cmp4",
1159 	"__sanitizer_cov_trace_cmp8",
1160 	"__sanitizer_cov_trace_switch",
1161 	/* KMSAN */
1162 	"kmsan_copy_to_user",
1163 	"kmsan_disable_current",
1164 	"kmsan_enable_current",
1165 	"kmsan_report",
1166 	"kmsan_unpoison_entry_regs",
1167 	"kmsan_unpoison_memory",
1168 	"__msan_chain_origin",
1169 	"__msan_get_context_state",
1170 	"__msan_instrument_asm_store",
1171 	"__msan_metadata_ptr_for_load_1",
1172 	"__msan_metadata_ptr_for_load_2",
1173 	"__msan_metadata_ptr_for_load_4",
1174 	"__msan_metadata_ptr_for_load_8",
1175 	"__msan_metadata_ptr_for_load_n",
1176 	"__msan_metadata_ptr_for_store_1",
1177 	"__msan_metadata_ptr_for_store_2",
1178 	"__msan_metadata_ptr_for_store_4",
1179 	"__msan_metadata_ptr_for_store_8",
1180 	"__msan_metadata_ptr_for_store_n",
1181 	"__msan_poison_alloca",
1182 	"__msan_warning",
1183 	/* UBSAN */
1184 	"ubsan_type_mismatch_common",
1185 	"__ubsan_handle_type_mismatch",
1186 	"__ubsan_handle_type_mismatch_v1",
1187 	"__ubsan_handle_shift_out_of_bounds",
1188 	"__ubsan_handle_load_invalid_value",
1189 	/* STACKLEAK */
1190 	"stackleak_track_stack",
1191 	/* misc */
1192 	"csum_partial_copy_generic",
1193 	"copy_mc_fragile",
1194 	"copy_mc_fragile_handle_tail",
1195 	"copy_mc_enhanced_fast_string",
1196 	"ftrace_likely_update", /* CONFIG_TRACE_BRANCH_PROFILING */
1197 	"rep_stos_alternative",
1198 	"rep_movs_alternative",
1199 	"__copy_user_nocache",
1200 	NULL
1201 };
1202 
1203 static void add_uaccess_safe(struct objtool_file *file)
1204 {
1205 	struct symbol *func;
1206 	const char **name;
1207 
1208 	if (!opts.uaccess)
1209 		return;
1210 
1211 	for (name = uaccess_safe_builtin; *name; name++) {
1212 		func = find_symbol_by_name(file->elf, *name);
1213 		if (!func)
1214 			continue;
1215 
1216 		func->uaccess_safe = true;
1217 	}
1218 }
1219 
1220 /*
1221  * Symbols that replace INSN_CALL_DYNAMIC, every (tail) call to such a symbol
1222  * will be added to the .retpoline_sites section.
1223  */
1224 __weak bool arch_is_retpoline(struct symbol *sym)
1225 {
1226 	return false;
1227 }
1228 
1229 /*
1230  * Symbols that replace INSN_RETURN, every (tail) call to such a symbol
1231  * will be added to the .return_sites section.
1232  */
1233 __weak bool arch_is_rethunk(struct symbol *sym)
1234 {
1235 	return false;
1236 }
1237 
1238 /*
1239  * Symbols that are embedded inside other instructions, because sometimes crazy
1240  * code exists. These are mostly ignored for validation purposes.
1241  */
1242 __weak bool arch_is_embedded_insn(struct symbol *sym)
1243 {
1244 	return false;
1245 }
1246 
1247 static struct reloc *insn_reloc(struct objtool_file *file, struct instruction *insn)
1248 {
1249 	struct reloc *reloc;
1250 
1251 	if (insn->no_reloc)
1252 		return NULL;
1253 
1254 	if (!file)
1255 		return NULL;
1256 
1257 	reloc = find_reloc_by_dest_range(file->elf, insn->sec,
1258 					 insn->offset, insn->len);
1259 	if (!reloc) {
1260 		insn->no_reloc = 1;
1261 		return NULL;
1262 	}
1263 
1264 	return reloc;
1265 }
1266 
1267 static void remove_insn_ops(struct instruction *insn)
1268 {
1269 	struct stack_op *op, *next;
1270 
1271 	for (op = insn->stack_ops; op; op = next) {
1272 		next = op->next;
1273 		free(op);
1274 	}
1275 	insn->stack_ops = NULL;
1276 }
1277 
1278 static void annotate_call_site(struct objtool_file *file,
1279 			       struct instruction *insn, bool sibling)
1280 {
1281 	struct reloc *reloc = insn_reloc(file, insn);
1282 	struct symbol *sym = insn_call_dest(insn);
1283 
1284 	if (!sym)
1285 		sym = reloc->sym;
1286 
1287 	/*
1288 	 * Alternative replacement code is just template code which is
1289 	 * sometimes copied to the original instruction. For now, don't
1290 	 * annotate it. (In the future we might consider annotating the
1291 	 * original instruction if/when it ever makes sense to do so.)
1292 	 */
1293 	if (!strcmp(insn->sec->name, ".altinstr_replacement"))
1294 		return;
1295 
1296 	if (sym->static_call_tramp) {
1297 		list_add_tail(&insn->call_node, &file->static_call_list);
1298 		return;
1299 	}
1300 
1301 	if (sym->retpoline_thunk) {
1302 		list_add_tail(&insn->call_node, &file->retpoline_call_list);
1303 		return;
1304 	}
1305 
1306 	/*
1307 	 * Many compilers cannot disable KCOV or sanitizer calls with a function
1308 	 * attribute so they need a little help, NOP out any such calls from
1309 	 * noinstr text.
1310 	 */
1311 	if (opts.hack_noinstr && insn->sec->noinstr && sym->profiling_func) {
1312 		if (reloc)
1313 			set_reloc_type(file->elf, reloc, R_NONE);
1314 
1315 		elf_write_insn(file->elf, insn->sec,
1316 			       insn->offset, insn->len,
1317 			       sibling ? arch_ret_insn(insn->len)
1318 			               : arch_nop_insn(insn->len));
1319 
1320 		insn->type = sibling ? INSN_RETURN : INSN_NOP;
1321 
1322 		if (sibling) {
1323 			/*
1324 			 * We've replaced the tail-call JMP insn by two new
1325 			 * insn: RET; INT3, except we only have a single struct
1326 			 * insn here. Mark it retpoline_safe to avoid the SLS
1327 			 * warning, instead of adding another insn.
1328 			 */
1329 			insn->retpoline_safe = true;
1330 		}
1331 
1332 		return;
1333 	}
1334 
1335 	if (opts.mcount && sym->fentry) {
1336 		if (sibling)
1337 			WARN_INSN(insn, "tail call to __fentry__ !?!?");
1338 		if (opts.mnop) {
1339 			if (reloc)
1340 				set_reloc_type(file->elf, reloc, R_NONE);
1341 
1342 			elf_write_insn(file->elf, insn->sec,
1343 				       insn->offset, insn->len,
1344 				       arch_nop_insn(insn->len));
1345 
1346 			insn->type = INSN_NOP;
1347 		}
1348 
1349 		list_add_tail(&insn->call_node, &file->mcount_loc_list);
1350 		return;
1351 	}
1352 
1353 	if (insn->type == INSN_CALL && !insn->sec->init)
1354 		list_add_tail(&insn->call_node, &file->call_list);
1355 
1356 	if (!sibling && dead_end_function(file, sym))
1357 		insn->dead_end = true;
1358 }
1359 
1360 static void add_call_dest(struct objtool_file *file, struct instruction *insn,
1361 			  struct symbol *dest, bool sibling)
1362 {
1363 	insn->_call_dest = dest;
1364 	if (!dest)
1365 		return;
1366 
1367 	/*
1368 	 * Whatever stack impact regular CALLs have, should be undone
1369 	 * by the RETURN of the called function.
1370 	 *
1371 	 * Annotated intra-function calls retain the stack_ops but
1372 	 * are converted to JUMP, see read_intra_function_calls().
1373 	 */
1374 	remove_insn_ops(insn);
1375 
1376 	annotate_call_site(file, insn, sibling);
1377 }
1378 
1379 static void add_retpoline_call(struct objtool_file *file, struct instruction *insn)
1380 {
1381 	/*
1382 	 * Retpoline calls/jumps are really dynamic calls/jumps in disguise,
1383 	 * so convert them accordingly.
1384 	 */
1385 	switch (insn->type) {
1386 	case INSN_CALL:
1387 		insn->type = INSN_CALL_DYNAMIC;
1388 		break;
1389 	case INSN_JUMP_UNCONDITIONAL:
1390 		insn->type = INSN_JUMP_DYNAMIC;
1391 		break;
1392 	case INSN_JUMP_CONDITIONAL:
1393 		insn->type = INSN_JUMP_DYNAMIC_CONDITIONAL;
1394 		break;
1395 	default:
1396 		return;
1397 	}
1398 
1399 	insn->retpoline_safe = true;
1400 
1401 	/*
1402 	 * Whatever stack impact regular CALLs have, should be undone
1403 	 * by the RETURN of the called function.
1404 	 *
1405 	 * Annotated intra-function calls retain the stack_ops but
1406 	 * are converted to JUMP, see read_intra_function_calls().
1407 	 */
1408 	remove_insn_ops(insn);
1409 
1410 	annotate_call_site(file, insn, false);
1411 }
1412 
1413 static void add_return_call(struct objtool_file *file, struct instruction *insn, bool add)
1414 {
1415 	/*
1416 	 * Return thunk tail calls are really just returns in disguise,
1417 	 * so convert them accordingly.
1418 	 */
1419 	insn->type = INSN_RETURN;
1420 	insn->retpoline_safe = true;
1421 
1422 	if (add)
1423 		list_add_tail(&insn->call_node, &file->return_thunk_list);
1424 }
1425 
1426 static bool is_first_func_insn(struct objtool_file *file,
1427 			       struct instruction *insn, struct symbol *sym)
1428 {
1429 	if (insn->offset == sym->offset)
1430 		return true;
1431 
1432 	/* Allow direct CALL/JMP past ENDBR */
1433 	if (opts.ibt) {
1434 		struct instruction *prev = prev_insn_same_sym(file, insn);
1435 
1436 		if (prev && prev->type == INSN_ENDBR &&
1437 		    insn->offset == sym->offset + prev->len)
1438 			return true;
1439 	}
1440 
1441 	return false;
1442 }
1443 
1444 /*
1445  * A sibling call is a tail-call to another symbol -- to differentiate from a
1446  * recursive tail-call which is to the same symbol.
1447  */
1448 static bool jump_is_sibling_call(struct objtool_file *file,
1449 				 struct instruction *from, struct instruction *to)
1450 {
1451 	struct symbol *fs = from->sym;
1452 	struct symbol *ts = to->sym;
1453 
1454 	/* Not a sibling call if from/to a symbol hole */
1455 	if (!fs || !ts)
1456 		return false;
1457 
1458 	/* Not a sibling call if not targeting the start of a symbol. */
1459 	if (!is_first_func_insn(file, to, ts))
1460 		return false;
1461 
1462 	/* Disallow sibling calls into STT_NOTYPE */
1463 	if (ts->type == STT_NOTYPE)
1464 		return false;
1465 
1466 	/* Must not be self to be a sibling */
1467 	return fs->pfunc != ts->pfunc;
1468 }
1469 
1470 /*
1471  * Find the destination instructions for all jumps.
1472  */
1473 static int add_jump_destinations(struct objtool_file *file)
1474 {
1475 	struct instruction *insn, *jump_dest;
1476 	struct reloc *reloc;
1477 	struct section *dest_sec;
1478 	unsigned long dest_off;
1479 
1480 	for_each_insn(file, insn) {
1481 		if (insn->jump_dest) {
1482 			/*
1483 			 * handle_group_alt() may have previously set
1484 			 * 'jump_dest' for some alternatives.
1485 			 */
1486 			continue;
1487 		}
1488 		if (!is_static_jump(insn))
1489 			continue;
1490 
1491 		reloc = insn_reloc(file, insn);
1492 		if (!reloc) {
1493 			dest_sec = insn->sec;
1494 			dest_off = arch_jump_destination(insn);
1495 		} else if (reloc->sym->type == STT_SECTION) {
1496 			dest_sec = reloc->sym->sec;
1497 			dest_off = arch_dest_reloc_offset(reloc_addend(reloc));
1498 		} else if (reloc->sym->retpoline_thunk) {
1499 			add_retpoline_call(file, insn);
1500 			continue;
1501 		} else if (reloc->sym->return_thunk) {
1502 			add_return_call(file, insn, true);
1503 			continue;
1504 		} else if (insn_func(insn)) {
1505 			/*
1506 			 * External sibling call or internal sibling call with
1507 			 * STT_FUNC reloc.
1508 			 */
1509 			add_call_dest(file, insn, reloc->sym, true);
1510 			continue;
1511 		} else if (reloc->sym->sec->idx) {
1512 			dest_sec = reloc->sym->sec;
1513 			dest_off = reloc->sym->sym.st_value +
1514 				   arch_dest_reloc_offset(reloc_addend(reloc));
1515 		} else {
1516 			/* non-func asm code jumping to another file */
1517 			continue;
1518 		}
1519 
1520 		jump_dest = find_insn(file, dest_sec, dest_off);
1521 		if (!jump_dest) {
1522 			struct symbol *sym = find_symbol_by_offset(dest_sec, dest_off);
1523 
1524 			/*
1525 			 * This is a special case for retbleed_untrain_ret().
1526 			 * It jumps to __x86_return_thunk(), but objtool
1527 			 * can't find the thunk's starting RET
1528 			 * instruction, because the RET is also in the
1529 			 * middle of another instruction.  Objtool only
1530 			 * knows about the outer instruction.
1531 			 */
1532 			if (sym && sym->embedded_insn) {
1533 				add_return_call(file, insn, false);
1534 				continue;
1535 			}
1536 
1537 			WARN_INSN(insn, "can't find jump dest instruction at %s+0x%lx",
1538 				  dest_sec->name, dest_off);
1539 			return -1;
1540 		}
1541 
1542 		/*
1543 		 * An intra-TU jump in retpoline.o might not have a relocation
1544 		 * for its jump dest, in which case the above
1545 		 * add_{retpoline,return}_call() didn't happen.
1546 		 */
1547 		if (jump_dest->sym && jump_dest->offset == jump_dest->sym->offset) {
1548 			if (jump_dest->sym->retpoline_thunk) {
1549 				add_retpoline_call(file, insn);
1550 				continue;
1551 			}
1552 			if (jump_dest->sym->return_thunk) {
1553 				add_return_call(file, insn, true);
1554 				continue;
1555 			}
1556 		}
1557 
1558 		/*
1559 		 * Cross-function jump.
1560 		 */
1561 		if (insn_func(insn) && insn_func(jump_dest) &&
1562 		    insn_func(insn) != insn_func(jump_dest)) {
1563 
1564 			/*
1565 			 * For GCC 8+, create parent/child links for any cold
1566 			 * subfunctions.  This is _mostly_ redundant with a
1567 			 * similar initialization in read_symbols().
1568 			 *
1569 			 * If a function has aliases, we want the *first* such
1570 			 * function in the symbol table to be the subfunction's
1571 			 * parent.  In that case we overwrite the
1572 			 * initialization done in read_symbols().
1573 			 *
1574 			 * However this code can't completely replace the
1575 			 * read_symbols() code because this doesn't detect the
1576 			 * case where the parent function's only reference to a
1577 			 * subfunction is through a jump table.
1578 			 */
1579 			if (!strstr(insn_func(insn)->name, ".cold") &&
1580 			    strstr(insn_func(jump_dest)->name, ".cold")) {
1581 				insn_func(insn)->cfunc = insn_func(jump_dest);
1582 				insn_func(jump_dest)->pfunc = insn_func(insn);
1583 			}
1584 		}
1585 
1586 		if (jump_is_sibling_call(file, insn, jump_dest)) {
1587 			/*
1588 			 * Internal sibling call without reloc or with
1589 			 * STT_SECTION reloc.
1590 			 */
1591 			add_call_dest(file, insn, insn_func(jump_dest), true);
1592 			continue;
1593 		}
1594 
1595 		insn->jump_dest = jump_dest;
1596 	}
1597 
1598 	return 0;
1599 }
1600 
1601 static struct symbol *find_call_destination(struct section *sec, unsigned long offset)
1602 {
1603 	struct symbol *call_dest;
1604 
1605 	call_dest = find_func_by_offset(sec, offset);
1606 	if (!call_dest)
1607 		call_dest = find_symbol_by_offset(sec, offset);
1608 
1609 	return call_dest;
1610 }
1611 
1612 /*
1613  * Find the destination instructions for all calls.
1614  */
1615 static int add_call_destinations(struct objtool_file *file)
1616 {
1617 	struct instruction *insn;
1618 	unsigned long dest_off;
1619 	struct symbol *dest;
1620 	struct reloc *reloc;
1621 
1622 	for_each_insn(file, insn) {
1623 		if (insn->type != INSN_CALL)
1624 			continue;
1625 
1626 		reloc = insn_reloc(file, insn);
1627 		if (!reloc) {
1628 			dest_off = arch_jump_destination(insn);
1629 			dest = find_call_destination(insn->sec, dest_off);
1630 
1631 			add_call_dest(file, insn, dest, false);
1632 
1633 			if (insn->ignore)
1634 				continue;
1635 
1636 			if (!insn_call_dest(insn)) {
1637 				WARN_INSN(insn, "unannotated intra-function call");
1638 				return -1;
1639 			}
1640 
1641 			if (insn_func(insn) && insn_call_dest(insn)->type != STT_FUNC) {
1642 				WARN_INSN(insn, "unsupported call to non-function");
1643 				return -1;
1644 			}
1645 
1646 		} else if (reloc->sym->type == STT_SECTION) {
1647 			dest_off = arch_dest_reloc_offset(reloc_addend(reloc));
1648 			dest = find_call_destination(reloc->sym->sec, dest_off);
1649 			if (!dest) {
1650 				WARN_INSN(insn, "can't find call dest symbol at %s+0x%lx",
1651 					  reloc->sym->sec->name, dest_off);
1652 				return -1;
1653 			}
1654 
1655 			add_call_dest(file, insn, dest, false);
1656 
1657 		} else if (reloc->sym->retpoline_thunk) {
1658 			add_retpoline_call(file, insn);
1659 
1660 		} else
1661 			add_call_dest(file, insn, reloc->sym, false);
1662 	}
1663 
1664 	return 0;
1665 }
1666 
1667 /*
1668  * The .alternatives section requires some extra special care over and above
1669  * other special sections because alternatives are patched in place.
1670  */
1671 static int handle_group_alt(struct objtool_file *file,
1672 			    struct special_alt *special_alt,
1673 			    struct instruction *orig_insn,
1674 			    struct instruction **new_insn)
1675 {
1676 	struct instruction *last_new_insn = NULL, *insn, *nop = NULL;
1677 	struct alt_group *orig_alt_group, *new_alt_group;
1678 	unsigned long dest_off;
1679 
1680 	orig_alt_group = orig_insn->alt_group;
1681 	if (!orig_alt_group) {
1682 		struct instruction *last_orig_insn = NULL;
1683 
1684 		orig_alt_group = malloc(sizeof(*orig_alt_group));
1685 		if (!orig_alt_group) {
1686 			WARN("malloc failed");
1687 			return -1;
1688 		}
1689 		orig_alt_group->cfi = calloc(special_alt->orig_len,
1690 					     sizeof(struct cfi_state *));
1691 		if (!orig_alt_group->cfi) {
1692 			WARN("calloc failed");
1693 			return -1;
1694 		}
1695 
1696 		insn = orig_insn;
1697 		sec_for_each_insn_from(file, insn) {
1698 			if (insn->offset >= special_alt->orig_off + special_alt->orig_len)
1699 				break;
1700 
1701 			insn->alt_group = orig_alt_group;
1702 			last_orig_insn = insn;
1703 		}
1704 		orig_alt_group->orig_group = NULL;
1705 		orig_alt_group->first_insn = orig_insn;
1706 		orig_alt_group->last_insn = last_orig_insn;
1707 		orig_alt_group->nop = NULL;
1708 	} else {
1709 		if (orig_alt_group->last_insn->offset + orig_alt_group->last_insn->len -
1710 		    orig_alt_group->first_insn->offset != special_alt->orig_len) {
1711 			WARN_INSN(orig_insn, "weirdly overlapping alternative! %ld != %d",
1712 				  orig_alt_group->last_insn->offset +
1713 				  orig_alt_group->last_insn->len -
1714 				  orig_alt_group->first_insn->offset,
1715 				  special_alt->orig_len);
1716 			return -1;
1717 		}
1718 	}
1719 
1720 	new_alt_group = malloc(sizeof(*new_alt_group));
1721 	if (!new_alt_group) {
1722 		WARN("malloc failed");
1723 		return -1;
1724 	}
1725 
1726 	if (special_alt->new_len < special_alt->orig_len) {
1727 		/*
1728 		 * Insert a fake nop at the end to make the replacement
1729 		 * alt_group the same size as the original.  This is needed to
1730 		 * allow propagate_alt_cfi() to do its magic.  When the last
1731 		 * instruction affects the stack, the instruction after it (the
1732 		 * nop) will propagate the new state to the shared CFI array.
1733 		 */
1734 		nop = malloc(sizeof(*nop));
1735 		if (!nop) {
1736 			WARN("malloc failed");
1737 			return -1;
1738 		}
1739 		memset(nop, 0, sizeof(*nop));
1740 
1741 		nop->sec = special_alt->new_sec;
1742 		nop->offset = special_alt->new_off + special_alt->new_len;
1743 		nop->len = special_alt->orig_len - special_alt->new_len;
1744 		nop->type = INSN_NOP;
1745 		nop->sym = orig_insn->sym;
1746 		nop->alt_group = new_alt_group;
1747 		nop->ignore = orig_insn->ignore_alts;
1748 	}
1749 
1750 	if (!special_alt->new_len) {
1751 		*new_insn = nop;
1752 		goto end;
1753 	}
1754 
1755 	insn = *new_insn;
1756 	sec_for_each_insn_from(file, insn) {
1757 		struct reloc *alt_reloc;
1758 
1759 		if (insn->offset >= special_alt->new_off + special_alt->new_len)
1760 			break;
1761 
1762 		last_new_insn = insn;
1763 
1764 		insn->ignore = orig_insn->ignore_alts;
1765 		insn->sym = orig_insn->sym;
1766 		insn->alt_group = new_alt_group;
1767 
1768 		/*
1769 		 * Since alternative replacement code is copy/pasted by the
1770 		 * kernel after applying relocations, generally such code can't
1771 		 * have relative-address relocation references to outside the
1772 		 * .altinstr_replacement section, unless the arch's
1773 		 * alternatives code can adjust the relative offsets
1774 		 * accordingly.
1775 		 */
1776 		alt_reloc = insn_reloc(file, insn);
1777 		if (alt_reloc && arch_pc_relative_reloc(alt_reloc) &&
1778 		    !arch_support_alt_relocation(special_alt, insn, alt_reloc)) {
1779 
1780 			WARN_INSN(insn, "unsupported relocation in alternatives section");
1781 			return -1;
1782 		}
1783 
1784 		if (!is_static_jump(insn))
1785 			continue;
1786 
1787 		if (!insn->immediate)
1788 			continue;
1789 
1790 		dest_off = arch_jump_destination(insn);
1791 		if (dest_off == special_alt->new_off + special_alt->new_len) {
1792 			insn->jump_dest = next_insn_same_sec(file, orig_alt_group->last_insn);
1793 			if (!insn->jump_dest) {
1794 				WARN_INSN(insn, "can't find alternative jump destination");
1795 				return -1;
1796 			}
1797 		}
1798 	}
1799 
1800 	if (!last_new_insn) {
1801 		WARN_FUNC("can't find last new alternative instruction",
1802 			  special_alt->new_sec, special_alt->new_off);
1803 		return -1;
1804 	}
1805 
1806 end:
1807 	new_alt_group->orig_group = orig_alt_group;
1808 	new_alt_group->first_insn = *new_insn;
1809 	new_alt_group->last_insn = last_new_insn;
1810 	new_alt_group->nop = nop;
1811 	new_alt_group->cfi = orig_alt_group->cfi;
1812 	return 0;
1813 }
1814 
1815 /*
1816  * A jump table entry can either convert a nop to a jump or a jump to a nop.
1817  * If the original instruction is a jump, make the alt entry an effective nop
1818  * by just skipping the original instruction.
1819  */
1820 static int handle_jump_alt(struct objtool_file *file,
1821 			   struct special_alt *special_alt,
1822 			   struct instruction *orig_insn,
1823 			   struct instruction **new_insn)
1824 {
1825 	if (orig_insn->type != INSN_JUMP_UNCONDITIONAL &&
1826 	    orig_insn->type != INSN_NOP) {
1827 
1828 		WARN_INSN(orig_insn, "unsupported instruction at jump label");
1829 		return -1;
1830 	}
1831 
1832 	if (opts.hack_jump_label && special_alt->key_addend & 2) {
1833 		struct reloc *reloc = insn_reloc(file, orig_insn);
1834 
1835 		if (reloc)
1836 			set_reloc_type(file->elf, reloc, R_NONE);
1837 		elf_write_insn(file->elf, orig_insn->sec,
1838 			       orig_insn->offset, orig_insn->len,
1839 			       arch_nop_insn(orig_insn->len));
1840 		orig_insn->type = INSN_NOP;
1841 	}
1842 
1843 	if (orig_insn->type == INSN_NOP) {
1844 		if (orig_insn->len == 2)
1845 			file->jl_nop_short++;
1846 		else
1847 			file->jl_nop_long++;
1848 
1849 		return 0;
1850 	}
1851 
1852 	if (orig_insn->len == 2)
1853 		file->jl_short++;
1854 	else
1855 		file->jl_long++;
1856 
1857 	*new_insn = next_insn_same_sec(file, orig_insn);
1858 	return 0;
1859 }
1860 
1861 /*
1862  * Read all the special sections which have alternate instructions which can be
1863  * patched in or redirected to at runtime.  Each instruction having alternate
1864  * instruction(s) has them added to its insn->alts list, which will be
1865  * traversed in validate_branch().
1866  */
1867 static int add_special_section_alts(struct objtool_file *file)
1868 {
1869 	struct list_head special_alts;
1870 	struct instruction *orig_insn, *new_insn;
1871 	struct special_alt *special_alt, *tmp;
1872 	struct alternative *alt;
1873 	int ret;
1874 
1875 	ret = special_get_alts(file->elf, &special_alts);
1876 	if (ret)
1877 		return ret;
1878 
1879 	list_for_each_entry_safe(special_alt, tmp, &special_alts, list) {
1880 
1881 		orig_insn = find_insn(file, special_alt->orig_sec,
1882 				      special_alt->orig_off);
1883 		if (!orig_insn) {
1884 			WARN_FUNC("special: can't find orig instruction",
1885 				  special_alt->orig_sec, special_alt->orig_off);
1886 			ret = -1;
1887 			goto out;
1888 		}
1889 
1890 		new_insn = NULL;
1891 		if (!special_alt->group || special_alt->new_len) {
1892 			new_insn = find_insn(file, special_alt->new_sec,
1893 					     special_alt->new_off);
1894 			if (!new_insn) {
1895 				WARN_FUNC("special: can't find new instruction",
1896 					  special_alt->new_sec,
1897 					  special_alt->new_off);
1898 				ret = -1;
1899 				goto out;
1900 			}
1901 		}
1902 
1903 		if (special_alt->group) {
1904 			if (!special_alt->orig_len) {
1905 				WARN_INSN(orig_insn, "empty alternative entry");
1906 				continue;
1907 			}
1908 
1909 			ret = handle_group_alt(file, special_alt, orig_insn,
1910 					       &new_insn);
1911 			if (ret)
1912 				goto out;
1913 		} else if (special_alt->jump_or_nop) {
1914 			ret = handle_jump_alt(file, special_alt, orig_insn,
1915 					      &new_insn);
1916 			if (ret)
1917 				goto out;
1918 		}
1919 
1920 		alt = malloc(sizeof(*alt));
1921 		if (!alt) {
1922 			WARN("malloc failed");
1923 			ret = -1;
1924 			goto out;
1925 		}
1926 
1927 		alt->insn = new_insn;
1928 		alt->skip_orig = special_alt->skip_orig;
1929 		orig_insn->ignore_alts |= special_alt->skip_alt;
1930 		alt->next = orig_insn->alts;
1931 		orig_insn->alts = alt;
1932 
1933 		list_del(&special_alt->list);
1934 		free(special_alt);
1935 	}
1936 
1937 	if (opts.stats) {
1938 		printf("jl\\\tNOP\tJMP\n");
1939 		printf("short:\t%ld\t%ld\n", file->jl_nop_short, file->jl_short);
1940 		printf("long:\t%ld\t%ld\n", file->jl_nop_long, file->jl_long);
1941 	}
1942 
1943 out:
1944 	return ret;
1945 }
1946 
1947 __weak unsigned long arch_jump_table_sym_offset(struct reloc *reloc, struct reloc *table)
1948 {
1949 	return reloc->sym->offset + reloc_addend(reloc);
1950 }
1951 
1952 static int add_jump_table(struct objtool_file *file, struct instruction *insn,
1953 			  struct reloc *next_table)
1954 {
1955 	unsigned long table_size = insn_jump_table_size(insn);
1956 	struct symbol *pfunc = insn_func(insn)->pfunc;
1957 	struct reloc *table = insn_jump_table(insn);
1958 	struct instruction *dest_insn;
1959 	unsigned int prev_offset = 0;
1960 	struct reloc *reloc = table;
1961 	struct alternative *alt;
1962 	unsigned long sym_offset;
1963 
1964 	/*
1965 	 * Each @reloc is a switch table relocation which points to the target
1966 	 * instruction.
1967 	 */
1968 	for_each_reloc_from(table->sec, reloc) {
1969 
1970 		/* Check for the end of the table: */
1971 		if (table_size && reloc_offset(reloc) - reloc_offset(table) >= table_size)
1972 			break;
1973 		if (reloc != table && reloc == next_table)
1974 			break;
1975 
1976 		/* Make sure the table entries are consecutive: */
1977 		if (prev_offset && reloc_offset(reloc) != prev_offset + arch_reloc_size(reloc))
1978 			break;
1979 
1980 		sym_offset = arch_jump_table_sym_offset(reloc, table);
1981 
1982 		/* Detect function pointers from contiguous objects: */
1983 		if (reloc->sym->sec == pfunc->sec && sym_offset == pfunc->offset)
1984 			break;
1985 
1986 		/*
1987 		 * Clang sometimes leaves dangling unused jump table entries
1988 		 * which point to the end of the function.  Ignore them.
1989 		 */
1990 		if (reloc->sym->sec == pfunc->sec &&
1991 		    sym_offset == pfunc->offset + pfunc->len)
1992 			goto next;
1993 
1994 		dest_insn = find_insn(file, reloc->sym->sec, sym_offset);
1995 		if (!dest_insn)
1996 			break;
1997 
1998 		/* Make sure the destination is in the same function: */
1999 		if (!insn_func(dest_insn) || insn_func(dest_insn)->pfunc != pfunc)
2000 			break;
2001 
2002 		alt = malloc(sizeof(*alt));
2003 		if (!alt) {
2004 			WARN("malloc failed");
2005 			return -1;
2006 		}
2007 
2008 		alt->insn = dest_insn;
2009 		alt->next = insn->alts;
2010 		insn->alts = alt;
2011 next:
2012 		prev_offset = reloc_offset(reloc);
2013 	}
2014 
2015 	if (!prev_offset) {
2016 		WARN_INSN(insn, "can't find switch jump table");
2017 		return -1;
2018 	}
2019 
2020 	return 0;
2021 }
2022 
2023 /*
2024  * find_jump_table() - Given a dynamic jump, find the switch jump table
2025  * associated with it.
2026  */
2027 static void find_jump_table(struct objtool_file *file, struct symbol *func,
2028 			    struct instruction *insn)
2029 {
2030 	struct reloc *table_reloc;
2031 	struct instruction *dest_insn, *orig_insn = insn;
2032 	unsigned long table_size;
2033 	unsigned long sym_offset;
2034 
2035 	/*
2036 	 * Backward search using the @first_jump_src links, these help avoid
2037 	 * much of the 'in between' code. Which avoids us getting confused by
2038 	 * it.
2039 	 */
2040 	for (;
2041 	     insn && insn_func(insn) && insn_func(insn)->pfunc == func;
2042 	     insn = insn->first_jump_src ?: prev_insn_same_sym(file, insn)) {
2043 
2044 		if (insn != orig_insn && insn->type == INSN_JUMP_DYNAMIC)
2045 			break;
2046 
2047 		/* allow small jumps within the range */
2048 		if (insn->type == INSN_JUMP_UNCONDITIONAL &&
2049 		    insn->jump_dest &&
2050 		    (insn->jump_dest->offset <= insn->offset ||
2051 		     insn->jump_dest->offset > orig_insn->offset))
2052 		    break;
2053 
2054 		table_reloc = arch_find_switch_table(file, insn, &table_size);
2055 		if (!table_reloc)
2056 			continue;
2057 
2058 		sym_offset = table_reloc->sym->offset + reloc_addend(table_reloc);
2059 
2060 		dest_insn = find_insn(file, table_reloc->sym->sec, sym_offset);
2061 		if (!dest_insn || !insn_func(dest_insn) || insn_func(dest_insn)->pfunc != func)
2062 			continue;
2063 
2064 		orig_insn->_jump_table = table_reloc;
2065 		orig_insn->_jump_table_size = table_size;
2066 		break;
2067 	}
2068 }
2069 
2070 /*
2071  * First pass: Mark the head of each jump table so that in the next pass,
2072  * we know when a given jump table ends and the next one starts.
2073  */
2074 static void mark_func_jump_tables(struct objtool_file *file,
2075 				    struct symbol *func)
2076 {
2077 	struct instruction *insn, *last = NULL;
2078 
2079 	func_for_each_insn(file, func, insn) {
2080 		if (!last)
2081 			last = insn;
2082 
2083 		/*
2084 		 * Store back-pointers for unconditional forward jumps such
2085 		 * that find_jump_table() can back-track using those and
2086 		 * avoid some potentially confusing code.
2087 		 */
2088 		if (insn->type == INSN_JUMP_UNCONDITIONAL && insn->jump_dest &&
2089 		    insn->offset > last->offset &&
2090 		    insn->jump_dest->offset > insn->offset &&
2091 		    !insn->jump_dest->first_jump_src) {
2092 
2093 			insn->jump_dest->first_jump_src = insn;
2094 			last = insn->jump_dest;
2095 		}
2096 
2097 		if (insn->type != INSN_JUMP_DYNAMIC)
2098 			continue;
2099 
2100 		find_jump_table(file, func, insn);
2101 	}
2102 }
2103 
2104 static int add_func_jump_tables(struct objtool_file *file,
2105 				  struct symbol *func)
2106 {
2107 	struct instruction *insn, *insn_t1 = NULL, *insn_t2;
2108 	int ret = 0;
2109 
2110 	func_for_each_insn(file, func, insn) {
2111 		if (!insn_jump_table(insn))
2112 			continue;
2113 
2114 		if (!insn_t1) {
2115 			insn_t1 = insn;
2116 			continue;
2117 		}
2118 
2119 		insn_t2 = insn;
2120 
2121 		ret = add_jump_table(file, insn_t1, insn_jump_table(insn_t2));
2122 		if (ret)
2123 			return ret;
2124 
2125 		insn_t1 = insn_t2;
2126 	}
2127 
2128 	if (insn_t1)
2129 		ret = add_jump_table(file, insn_t1, NULL);
2130 
2131 	return ret;
2132 }
2133 
2134 /*
2135  * For some switch statements, gcc generates a jump table in the .rodata
2136  * section which contains a list of addresses within the function to jump to.
2137  * This finds these jump tables and adds them to the insn->alts lists.
2138  */
2139 static int add_jump_table_alts(struct objtool_file *file)
2140 {
2141 	struct symbol *func;
2142 	int ret;
2143 
2144 	if (!file->rodata)
2145 		return 0;
2146 
2147 	for_each_sym(file, func) {
2148 		if (func->type != STT_FUNC)
2149 			continue;
2150 
2151 		mark_func_jump_tables(file, func);
2152 		ret = add_func_jump_tables(file, func);
2153 		if (ret)
2154 			return ret;
2155 	}
2156 
2157 	return 0;
2158 }
2159 
2160 static void set_func_state(struct cfi_state *state)
2161 {
2162 	state->cfa = initial_func_cfi.cfa;
2163 	memcpy(&state->regs, &initial_func_cfi.regs,
2164 	       CFI_NUM_REGS * sizeof(struct cfi_reg));
2165 	state->stack_size = initial_func_cfi.cfa.offset;
2166 	state->type = UNWIND_HINT_TYPE_CALL;
2167 }
2168 
2169 static int read_unwind_hints(struct objtool_file *file)
2170 {
2171 	struct cfi_state cfi = init_cfi;
2172 	struct section *sec;
2173 	struct unwind_hint *hint;
2174 	struct instruction *insn;
2175 	struct reloc *reloc;
2176 	unsigned long offset;
2177 	int i;
2178 
2179 	sec = find_section_by_name(file->elf, ".discard.unwind_hints");
2180 	if (!sec)
2181 		return 0;
2182 
2183 	if (!sec->rsec) {
2184 		WARN("missing .rela.discard.unwind_hints section");
2185 		return -1;
2186 	}
2187 
2188 	if (sec->sh.sh_size % sizeof(struct unwind_hint)) {
2189 		WARN("struct unwind_hint size mismatch");
2190 		return -1;
2191 	}
2192 
2193 	file->hints = true;
2194 
2195 	for (i = 0; i < sec->sh.sh_size / sizeof(struct unwind_hint); i++) {
2196 		hint = (struct unwind_hint *)sec->data->d_buf + i;
2197 
2198 		reloc = find_reloc_by_dest(file->elf, sec, i * sizeof(*hint));
2199 		if (!reloc) {
2200 			WARN("can't find reloc for unwind_hints[%d]", i);
2201 			return -1;
2202 		}
2203 
2204 		if (reloc->sym->type == STT_SECTION) {
2205 			offset = reloc_addend(reloc);
2206 		} else if (reloc->sym->local_label) {
2207 			offset = reloc->sym->offset;
2208 		} else {
2209 			WARN("unexpected relocation symbol type in %s", sec->rsec->name);
2210 			return -1;
2211 		}
2212 
2213 		insn = find_insn(file, reloc->sym->sec, offset);
2214 		if (!insn) {
2215 			WARN("can't find insn for unwind_hints[%d]", i);
2216 			return -1;
2217 		}
2218 
2219 		insn->hint = true;
2220 
2221 		if (hint->type == UNWIND_HINT_TYPE_UNDEFINED) {
2222 			insn->cfi = &force_undefined_cfi;
2223 			continue;
2224 		}
2225 
2226 		if (hint->type == UNWIND_HINT_TYPE_SAVE) {
2227 			insn->hint = false;
2228 			insn->save = true;
2229 			continue;
2230 		}
2231 
2232 		if (hint->type == UNWIND_HINT_TYPE_RESTORE) {
2233 			insn->restore = true;
2234 			continue;
2235 		}
2236 
2237 		if (hint->type == UNWIND_HINT_TYPE_REGS_PARTIAL) {
2238 			struct symbol *sym = find_symbol_by_offset(insn->sec, insn->offset);
2239 
2240 			if (sym && sym->bind == STB_GLOBAL) {
2241 				if (opts.ibt && insn->type != INSN_ENDBR && !insn->noendbr) {
2242 					WARN_INSN(insn, "UNWIND_HINT_IRET_REGS without ENDBR");
2243 				}
2244 			}
2245 		}
2246 
2247 		if (hint->type == UNWIND_HINT_TYPE_FUNC) {
2248 			insn->cfi = &func_cfi;
2249 			continue;
2250 		}
2251 
2252 		if (insn->cfi)
2253 			cfi = *(insn->cfi);
2254 
2255 		if (arch_decode_hint_reg(hint->sp_reg, &cfi.cfa.base)) {
2256 			WARN_INSN(insn, "unsupported unwind_hint sp base reg %d", hint->sp_reg);
2257 			return -1;
2258 		}
2259 
2260 		cfi.cfa.offset = bswap_if_needed(file->elf, hint->sp_offset);
2261 		cfi.type = hint->type;
2262 		cfi.signal = hint->signal;
2263 
2264 		insn->cfi = cfi_hash_find_or_add(&cfi);
2265 	}
2266 
2267 	return 0;
2268 }
2269 
2270 static int read_annotate(struct objtool_file *file,
2271 			 int (*func)(struct objtool_file *file, int type, struct instruction *insn))
2272 {
2273 	struct section *sec;
2274 	struct instruction *insn;
2275 	struct reloc *reloc;
2276 	uint64_t offset;
2277 	int type, ret;
2278 
2279 	sec = find_section_by_name(file->elf, ".discard.annotate_insn");
2280 	if (!sec)
2281 		return 0;
2282 
2283 	if (!sec->rsec)
2284 		return 0;
2285 
2286 	if (sec->sh.sh_entsize != 8) {
2287 		static bool warned = false;
2288 		if (!warned && opts.verbose) {
2289 			WARN("%s: dodgy linker, sh_entsize != 8", sec->name);
2290 			warned = true;
2291 		}
2292 		sec->sh.sh_entsize = 8;
2293 	}
2294 
2295 	for_each_reloc(sec->rsec, reloc) {
2296 		type = *(u32 *)(sec->data->d_buf + (reloc_idx(reloc) * sec->sh.sh_entsize) + 4);
2297 
2298 		offset = reloc->sym->offset + reloc_addend(reloc);
2299 		insn = find_insn(file, reloc->sym->sec, offset);
2300 
2301 		if (!insn) {
2302 			WARN("bad .discard.annotate_insn entry: %d of type %d", reloc_idx(reloc), type);
2303 			return -1;
2304 		}
2305 
2306 		ret = func(file, type, insn);
2307 		if (ret < 0)
2308 			return ret;
2309 	}
2310 
2311 	return 0;
2312 }
2313 
2314 static int __annotate_early(struct objtool_file *file, int type, struct instruction *insn)
2315 {
2316 	switch (type) {
2317 	case ANNOTYPE_IGNORE_ALTS:
2318 		insn->ignore_alts = true;
2319 		break;
2320 
2321 	/*
2322 	 * Must be before read_unwind_hints() since that needs insn->noendbr.
2323 	 */
2324 	case ANNOTYPE_NOENDBR:
2325 		insn->noendbr = 1;
2326 		break;
2327 
2328 	default:
2329 		break;
2330 	}
2331 
2332 	return 0;
2333 }
2334 
2335 static int __annotate_ifc(struct objtool_file *file, int type, struct instruction *insn)
2336 {
2337 	unsigned long dest_off;
2338 
2339 	if (type != ANNOTYPE_INTRA_FUNCTION_CALL)
2340 		return 0;
2341 
2342 	if (insn->type != INSN_CALL) {
2343 		WARN_INSN(insn, "intra_function_call not a direct call");
2344 		return -1;
2345 	}
2346 
2347 	/*
2348 	 * Treat intra-function CALLs as JMPs, but with a stack_op.
2349 	 * See add_call_destinations(), which strips stack_ops from
2350 	 * normal CALLs.
2351 	 */
2352 	insn->type = INSN_JUMP_UNCONDITIONAL;
2353 
2354 	dest_off = arch_jump_destination(insn);
2355 	insn->jump_dest = find_insn(file, insn->sec, dest_off);
2356 	if (!insn->jump_dest) {
2357 		WARN_INSN(insn, "can't find call dest at %s+0x%lx",
2358 			  insn->sec->name, dest_off);
2359 		return -1;
2360 	}
2361 
2362 	return 0;
2363 }
2364 
2365 static int __annotate_late(struct objtool_file *file, int type, struct instruction *insn)
2366 {
2367 	switch (type) {
2368 	case ANNOTYPE_NOENDBR:
2369 		/* early */
2370 		break;
2371 
2372 	case ANNOTYPE_RETPOLINE_SAFE:
2373 		if (insn->type != INSN_JUMP_DYNAMIC &&
2374 		    insn->type != INSN_CALL_DYNAMIC &&
2375 		    insn->type != INSN_RETURN &&
2376 		    insn->type != INSN_NOP) {
2377 			WARN_INSN(insn, "retpoline_safe hint not an indirect jump/call/ret/nop");
2378 			return -1;
2379 		}
2380 
2381 		insn->retpoline_safe = true;
2382 		break;
2383 
2384 	case ANNOTYPE_INSTR_BEGIN:
2385 		insn->instr++;
2386 		break;
2387 
2388 	case ANNOTYPE_INSTR_END:
2389 		insn->instr--;
2390 		break;
2391 
2392 	case ANNOTYPE_UNRET_BEGIN:
2393 		insn->unret = 1;
2394 		break;
2395 
2396 	case ANNOTYPE_IGNORE_ALTS:
2397 		/* early */
2398 		break;
2399 
2400 	case ANNOTYPE_INTRA_FUNCTION_CALL:
2401 		/* ifc */
2402 		break;
2403 
2404 	case ANNOTYPE_REACHABLE:
2405 		insn->dead_end = false;
2406 		break;
2407 
2408 	default:
2409 		WARN_INSN(insn, "Unknown annotation type: %d", type);
2410 		break;
2411 	}
2412 
2413 	return 0;
2414 }
2415 
2416 /*
2417  * Return true if name matches an instrumentation function, where calls to that
2418  * function from noinstr code can safely be removed, but compilers won't do so.
2419  */
2420 static bool is_profiling_func(const char *name)
2421 {
2422 	/*
2423 	 * Many compilers cannot disable KCOV with a function attribute.
2424 	 */
2425 	if (!strncmp(name, "__sanitizer_cov_", 16))
2426 		return true;
2427 
2428 	/*
2429 	 * Some compilers currently do not remove __tsan_func_entry/exit nor
2430 	 * __tsan_atomic_signal_fence (used for barrier instrumentation) with
2431 	 * the __no_sanitize_thread attribute, remove them. Once the kernel's
2432 	 * minimum Clang version is 14.0, this can be removed.
2433 	 */
2434 	if (!strncmp(name, "__tsan_func_", 12) ||
2435 	    !strcmp(name, "__tsan_atomic_signal_fence"))
2436 		return true;
2437 
2438 	return false;
2439 }
2440 
2441 static int classify_symbols(struct objtool_file *file)
2442 {
2443 	struct symbol *func;
2444 
2445 	for_each_sym(file, func) {
2446 		if (func->type == STT_NOTYPE && strstarts(func->name, ".L"))
2447 			func->local_label = true;
2448 
2449 		if (func->bind != STB_GLOBAL)
2450 			continue;
2451 
2452 		if (!strncmp(func->name, STATIC_CALL_TRAMP_PREFIX_STR,
2453 			     strlen(STATIC_CALL_TRAMP_PREFIX_STR)))
2454 			func->static_call_tramp = true;
2455 
2456 		if (arch_is_retpoline(func))
2457 			func->retpoline_thunk = true;
2458 
2459 		if (arch_is_rethunk(func))
2460 			func->return_thunk = true;
2461 
2462 		if (arch_is_embedded_insn(func))
2463 			func->embedded_insn = true;
2464 
2465 		if (arch_ftrace_match(func->name))
2466 			func->fentry = true;
2467 
2468 		if (is_profiling_func(func->name))
2469 			func->profiling_func = true;
2470 	}
2471 
2472 	return 0;
2473 }
2474 
2475 static void mark_rodata(struct objtool_file *file)
2476 {
2477 	struct section *sec;
2478 	bool found = false;
2479 
2480 	/*
2481 	 * Search for the following rodata sections, each of which can
2482 	 * potentially contain jump tables:
2483 	 *
2484 	 * - .rodata: can contain GCC switch tables
2485 	 * - .rodata.<func>: same, if -fdata-sections is being used
2486 	 * - .data.rel.ro.c_jump_table: contains C annotated jump tables
2487 	 *
2488 	 * .rodata.str1.* sections are ignored; they don't contain jump tables.
2489 	 */
2490 	for_each_sec(file, sec) {
2491 		if ((!strncmp(sec->name, ".rodata", 7) &&
2492 		     !strstr(sec->name, ".str1.")) ||
2493 		    !strncmp(sec->name, ".data.rel.ro", 12)) {
2494 			sec->rodata = true;
2495 			found = true;
2496 		}
2497 	}
2498 
2499 	file->rodata = found;
2500 }
2501 
2502 static int decode_sections(struct objtool_file *file)
2503 {
2504 	int ret;
2505 
2506 	mark_rodata(file);
2507 
2508 	ret = init_pv_ops(file);
2509 	if (ret)
2510 		return ret;
2511 
2512 	/*
2513 	 * Must be before add_{jump_call}_destination.
2514 	 */
2515 	ret = classify_symbols(file);
2516 	if (ret)
2517 		return ret;
2518 
2519 	ret = decode_instructions(file);
2520 	if (ret)
2521 		return ret;
2522 
2523 	add_ignores(file);
2524 	add_uaccess_safe(file);
2525 
2526 	ret = read_annotate(file, __annotate_early);
2527 	if (ret)
2528 		return ret;
2529 
2530 	/*
2531 	 * Must be before add_jump_destinations(), which depends on 'func'
2532 	 * being set for alternatives, to enable proper sibling call detection.
2533 	 */
2534 	if (opts.stackval || opts.orc || opts.uaccess || opts.noinstr) {
2535 		ret = add_special_section_alts(file);
2536 		if (ret)
2537 			return ret;
2538 	}
2539 
2540 	ret = add_jump_destinations(file);
2541 	if (ret)
2542 		return ret;
2543 
2544 	/*
2545 	 * Must be before add_call_destination(); it changes INSN_CALL to
2546 	 * INSN_JUMP.
2547 	 */
2548 	ret = read_annotate(file, __annotate_ifc);
2549 	if (ret)
2550 		return ret;
2551 
2552 	ret = add_call_destinations(file);
2553 	if (ret)
2554 		return ret;
2555 
2556 	ret = add_jump_table_alts(file);
2557 	if (ret)
2558 		return ret;
2559 
2560 	ret = read_unwind_hints(file);
2561 	if (ret)
2562 		return ret;
2563 
2564 	/*
2565 	 * Must be after add_call_destinations() such that it can override
2566 	 * dead_end_function() marks.
2567 	 */
2568 	ret = read_annotate(file, __annotate_late);
2569 	if (ret)
2570 		return ret;
2571 
2572 	return 0;
2573 }
2574 
2575 static bool is_special_call(struct instruction *insn)
2576 {
2577 	if (insn->type == INSN_CALL) {
2578 		struct symbol *dest = insn_call_dest(insn);
2579 
2580 		if (!dest)
2581 			return false;
2582 
2583 		if (dest->fentry || dest->embedded_insn)
2584 			return true;
2585 	}
2586 
2587 	return false;
2588 }
2589 
2590 static bool has_modified_stack_frame(struct instruction *insn, struct insn_state *state)
2591 {
2592 	struct cfi_state *cfi = &state->cfi;
2593 	int i;
2594 
2595 	if (cfi->cfa.base != initial_func_cfi.cfa.base || cfi->drap)
2596 		return true;
2597 
2598 	if (cfi->cfa.offset != initial_func_cfi.cfa.offset)
2599 		return true;
2600 
2601 	if (cfi->stack_size != initial_func_cfi.cfa.offset)
2602 		return true;
2603 
2604 	for (i = 0; i < CFI_NUM_REGS; i++) {
2605 		if (cfi->regs[i].base != initial_func_cfi.regs[i].base ||
2606 		    cfi->regs[i].offset != initial_func_cfi.regs[i].offset)
2607 			return true;
2608 	}
2609 
2610 	return false;
2611 }
2612 
2613 static bool check_reg_frame_pos(const struct cfi_reg *reg,
2614 				int expected_offset)
2615 {
2616 	return reg->base == CFI_CFA &&
2617 	       reg->offset == expected_offset;
2618 }
2619 
2620 static bool has_valid_stack_frame(struct insn_state *state)
2621 {
2622 	struct cfi_state *cfi = &state->cfi;
2623 
2624 	if (cfi->cfa.base == CFI_BP &&
2625 	    check_reg_frame_pos(&cfi->regs[CFI_BP], -cfi->cfa.offset) &&
2626 	    check_reg_frame_pos(&cfi->regs[CFI_RA], -cfi->cfa.offset + 8))
2627 		return true;
2628 
2629 	if (cfi->drap && cfi->regs[CFI_BP].base == CFI_BP)
2630 		return true;
2631 
2632 	return false;
2633 }
2634 
2635 static int update_cfi_state_regs(struct instruction *insn,
2636 				  struct cfi_state *cfi,
2637 				  struct stack_op *op)
2638 {
2639 	struct cfi_reg *cfa = &cfi->cfa;
2640 
2641 	if (cfa->base != CFI_SP && cfa->base != CFI_SP_INDIRECT)
2642 		return 0;
2643 
2644 	/* push */
2645 	if (op->dest.type == OP_DEST_PUSH || op->dest.type == OP_DEST_PUSHF)
2646 		cfa->offset += 8;
2647 
2648 	/* pop */
2649 	if (op->src.type == OP_SRC_POP || op->src.type == OP_SRC_POPF)
2650 		cfa->offset -= 8;
2651 
2652 	/* add immediate to sp */
2653 	if (op->dest.type == OP_DEST_REG && op->src.type == OP_SRC_ADD &&
2654 	    op->dest.reg == CFI_SP && op->src.reg == CFI_SP)
2655 		cfa->offset -= op->src.offset;
2656 
2657 	return 0;
2658 }
2659 
2660 static void save_reg(struct cfi_state *cfi, unsigned char reg, int base, int offset)
2661 {
2662 	if (arch_callee_saved_reg(reg) &&
2663 	    cfi->regs[reg].base == CFI_UNDEFINED) {
2664 		cfi->regs[reg].base = base;
2665 		cfi->regs[reg].offset = offset;
2666 	}
2667 }
2668 
2669 static void restore_reg(struct cfi_state *cfi, unsigned char reg)
2670 {
2671 	cfi->regs[reg].base = initial_func_cfi.regs[reg].base;
2672 	cfi->regs[reg].offset = initial_func_cfi.regs[reg].offset;
2673 }
2674 
2675 /*
2676  * A note about DRAP stack alignment:
2677  *
2678  * GCC has the concept of a DRAP register, which is used to help keep track of
2679  * the stack pointer when aligning the stack.  r10 or r13 is used as the DRAP
2680  * register.  The typical DRAP pattern is:
2681  *
2682  *   4c 8d 54 24 08		lea    0x8(%rsp),%r10
2683  *   48 83 e4 c0		and    $0xffffffffffffffc0,%rsp
2684  *   41 ff 72 f8		pushq  -0x8(%r10)
2685  *   55				push   %rbp
2686  *   48 89 e5			mov    %rsp,%rbp
2687  *				(more pushes)
2688  *   41 52			push   %r10
2689  *				...
2690  *   41 5a			pop    %r10
2691  *				(more pops)
2692  *   5d				pop    %rbp
2693  *   49 8d 62 f8		lea    -0x8(%r10),%rsp
2694  *   c3				retq
2695  *
2696  * There are some variations in the epilogues, like:
2697  *
2698  *   5b				pop    %rbx
2699  *   41 5a			pop    %r10
2700  *   41 5c			pop    %r12
2701  *   41 5d			pop    %r13
2702  *   41 5e			pop    %r14
2703  *   c9				leaveq
2704  *   49 8d 62 f8		lea    -0x8(%r10),%rsp
2705  *   c3				retq
2706  *
2707  * and:
2708  *
2709  *   4c 8b 55 e8		mov    -0x18(%rbp),%r10
2710  *   48 8b 5d e0		mov    -0x20(%rbp),%rbx
2711  *   4c 8b 65 f0		mov    -0x10(%rbp),%r12
2712  *   4c 8b 6d f8		mov    -0x8(%rbp),%r13
2713  *   c9				leaveq
2714  *   49 8d 62 f8		lea    -0x8(%r10),%rsp
2715  *   c3				retq
2716  *
2717  * Sometimes r13 is used as the DRAP register, in which case it's saved and
2718  * restored beforehand:
2719  *
2720  *   41 55			push   %r13
2721  *   4c 8d 6c 24 10		lea    0x10(%rsp),%r13
2722  *   48 83 e4 f0		and    $0xfffffffffffffff0,%rsp
2723  *				...
2724  *   49 8d 65 f0		lea    -0x10(%r13),%rsp
2725  *   41 5d			pop    %r13
2726  *   c3				retq
2727  */
2728 static int update_cfi_state(struct instruction *insn,
2729 			    struct instruction *next_insn,
2730 			    struct cfi_state *cfi, struct stack_op *op)
2731 {
2732 	struct cfi_reg *cfa = &cfi->cfa;
2733 	struct cfi_reg *regs = cfi->regs;
2734 
2735 	/* ignore UNWIND_HINT_UNDEFINED regions */
2736 	if (cfi->force_undefined)
2737 		return 0;
2738 
2739 	/* stack operations don't make sense with an undefined CFA */
2740 	if (cfa->base == CFI_UNDEFINED) {
2741 		if (insn_func(insn)) {
2742 			WARN_INSN(insn, "undefined stack state");
2743 			return -1;
2744 		}
2745 		return 0;
2746 	}
2747 
2748 	if (cfi->type == UNWIND_HINT_TYPE_REGS ||
2749 	    cfi->type == UNWIND_HINT_TYPE_REGS_PARTIAL)
2750 		return update_cfi_state_regs(insn, cfi, op);
2751 
2752 	switch (op->dest.type) {
2753 
2754 	case OP_DEST_REG:
2755 		switch (op->src.type) {
2756 
2757 		case OP_SRC_REG:
2758 			if (op->src.reg == CFI_SP && op->dest.reg == CFI_BP &&
2759 			    cfa->base == CFI_SP &&
2760 			    check_reg_frame_pos(&regs[CFI_BP], -cfa->offset)) {
2761 
2762 				/* mov %rsp, %rbp */
2763 				cfa->base = op->dest.reg;
2764 				cfi->bp_scratch = false;
2765 			}
2766 
2767 			else if (op->src.reg == CFI_SP &&
2768 				 op->dest.reg == CFI_BP && cfi->drap) {
2769 
2770 				/* drap: mov %rsp, %rbp */
2771 				regs[CFI_BP].base = CFI_BP;
2772 				regs[CFI_BP].offset = -cfi->stack_size;
2773 				cfi->bp_scratch = false;
2774 			}
2775 
2776 			else if (op->src.reg == CFI_SP && cfa->base == CFI_SP) {
2777 
2778 				/*
2779 				 * mov %rsp, %reg
2780 				 *
2781 				 * This is needed for the rare case where GCC
2782 				 * does:
2783 				 *
2784 				 *   mov    %rsp, %rax
2785 				 *   ...
2786 				 *   mov    %rax, %rsp
2787 				 */
2788 				cfi->vals[op->dest.reg].base = CFI_CFA;
2789 				cfi->vals[op->dest.reg].offset = -cfi->stack_size;
2790 			}
2791 
2792 			else if (op->src.reg == CFI_BP && op->dest.reg == CFI_SP &&
2793 				 (cfa->base == CFI_BP || cfa->base == cfi->drap_reg)) {
2794 
2795 				/*
2796 				 * mov %rbp, %rsp
2797 				 *
2798 				 * Restore the original stack pointer (Clang).
2799 				 */
2800 				cfi->stack_size = -cfi->regs[CFI_BP].offset;
2801 			}
2802 
2803 			else if (op->dest.reg == cfa->base) {
2804 
2805 				/* mov %reg, %rsp */
2806 				if (cfa->base == CFI_SP &&
2807 				    cfi->vals[op->src.reg].base == CFI_CFA) {
2808 
2809 					/*
2810 					 * This is needed for the rare case
2811 					 * where GCC does something dumb like:
2812 					 *
2813 					 *   lea    0x8(%rsp), %rcx
2814 					 *   ...
2815 					 *   mov    %rcx, %rsp
2816 					 */
2817 					cfa->offset = -cfi->vals[op->src.reg].offset;
2818 					cfi->stack_size = cfa->offset;
2819 
2820 				} else if (cfa->base == CFI_SP &&
2821 					   cfi->vals[op->src.reg].base == CFI_SP_INDIRECT &&
2822 					   cfi->vals[op->src.reg].offset == cfa->offset) {
2823 
2824 					/*
2825 					 * Stack swizzle:
2826 					 *
2827 					 * 1: mov %rsp, (%[tos])
2828 					 * 2: mov %[tos], %rsp
2829 					 *    ...
2830 					 * 3: pop %rsp
2831 					 *
2832 					 * Where:
2833 					 *
2834 					 * 1 - places a pointer to the previous
2835 					 *     stack at the Top-of-Stack of the
2836 					 *     new stack.
2837 					 *
2838 					 * 2 - switches to the new stack.
2839 					 *
2840 					 * 3 - pops the Top-of-Stack to restore
2841 					 *     the original stack.
2842 					 *
2843 					 * Note: we set base to SP_INDIRECT
2844 					 * here and preserve offset. Therefore
2845 					 * when the unwinder reaches ToS it
2846 					 * will dereference SP and then add the
2847 					 * offset to find the next frame, IOW:
2848 					 * (%rsp) + offset.
2849 					 */
2850 					cfa->base = CFI_SP_INDIRECT;
2851 
2852 				} else {
2853 					cfa->base = CFI_UNDEFINED;
2854 					cfa->offset = 0;
2855 				}
2856 			}
2857 
2858 			else if (op->dest.reg == CFI_SP &&
2859 				 cfi->vals[op->src.reg].base == CFI_SP_INDIRECT &&
2860 				 cfi->vals[op->src.reg].offset == cfa->offset) {
2861 
2862 				/*
2863 				 * The same stack swizzle case 2) as above. But
2864 				 * because we can't change cfa->base, case 3)
2865 				 * will become a regular POP. Pretend we're a
2866 				 * PUSH so things don't go unbalanced.
2867 				 */
2868 				cfi->stack_size += 8;
2869 			}
2870 
2871 
2872 			break;
2873 
2874 		case OP_SRC_ADD:
2875 			if (op->dest.reg == CFI_SP && op->src.reg == CFI_SP) {
2876 
2877 				/* add imm, %rsp */
2878 				cfi->stack_size -= op->src.offset;
2879 				if (cfa->base == CFI_SP)
2880 					cfa->offset -= op->src.offset;
2881 				break;
2882 			}
2883 
2884 			if (op->dest.reg == CFI_BP && op->src.reg == CFI_SP &&
2885 			    insn->sym->frame_pointer) {
2886 				/* addi.d fp,sp,imm on LoongArch */
2887 				if (cfa->base == CFI_SP && cfa->offset == op->src.offset) {
2888 					cfa->base = CFI_BP;
2889 					cfa->offset = 0;
2890 				}
2891 				break;
2892 			}
2893 
2894 			if (op->dest.reg == CFI_SP && op->src.reg == CFI_BP) {
2895 				/* addi.d sp,fp,imm on LoongArch */
2896 				if (cfa->base == CFI_BP && cfa->offset == 0) {
2897 					if (insn->sym->frame_pointer) {
2898 						cfa->base = CFI_SP;
2899 						cfa->offset = -op->src.offset;
2900 					}
2901 				} else {
2902 					/* lea disp(%rbp), %rsp */
2903 					cfi->stack_size = -(op->src.offset + regs[CFI_BP].offset);
2904 				}
2905 				break;
2906 			}
2907 
2908 			if (op->src.reg == CFI_SP && cfa->base == CFI_SP) {
2909 
2910 				/* drap: lea disp(%rsp), %drap */
2911 				cfi->drap_reg = op->dest.reg;
2912 
2913 				/*
2914 				 * lea disp(%rsp), %reg
2915 				 *
2916 				 * This is needed for the rare case where GCC
2917 				 * does something dumb like:
2918 				 *
2919 				 *   lea    0x8(%rsp), %rcx
2920 				 *   ...
2921 				 *   mov    %rcx, %rsp
2922 				 */
2923 				cfi->vals[op->dest.reg].base = CFI_CFA;
2924 				cfi->vals[op->dest.reg].offset = \
2925 					-cfi->stack_size + op->src.offset;
2926 
2927 				break;
2928 			}
2929 
2930 			if (cfi->drap && op->dest.reg == CFI_SP &&
2931 			    op->src.reg == cfi->drap_reg) {
2932 
2933 				 /* drap: lea disp(%drap), %rsp */
2934 				cfa->base = CFI_SP;
2935 				cfa->offset = cfi->stack_size = -op->src.offset;
2936 				cfi->drap_reg = CFI_UNDEFINED;
2937 				cfi->drap = false;
2938 				break;
2939 			}
2940 
2941 			if (op->dest.reg == cfi->cfa.base && !(next_insn && next_insn->hint)) {
2942 				WARN_INSN(insn, "unsupported stack register modification");
2943 				return -1;
2944 			}
2945 
2946 			break;
2947 
2948 		case OP_SRC_AND:
2949 			if (op->dest.reg != CFI_SP ||
2950 			    (cfi->drap_reg != CFI_UNDEFINED && cfa->base != CFI_SP) ||
2951 			    (cfi->drap_reg == CFI_UNDEFINED && cfa->base != CFI_BP)) {
2952 				WARN_INSN(insn, "unsupported stack pointer realignment");
2953 				return -1;
2954 			}
2955 
2956 			if (cfi->drap_reg != CFI_UNDEFINED) {
2957 				/* drap: and imm, %rsp */
2958 				cfa->base = cfi->drap_reg;
2959 				cfa->offset = cfi->stack_size = 0;
2960 				cfi->drap = true;
2961 			}
2962 
2963 			/*
2964 			 * Older versions of GCC (4.8ish) realign the stack
2965 			 * without DRAP, with a frame pointer.
2966 			 */
2967 
2968 			break;
2969 
2970 		case OP_SRC_POP:
2971 		case OP_SRC_POPF:
2972 			if (op->dest.reg == CFI_SP && cfa->base == CFI_SP_INDIRECT) {
2973 
2974 				/* pop %rsp; # restore from a stack swizzle */
2975 				cfa->base = CFI_SP;
2976 				break;
2977 			}
2978 
2979 			if (!cfi->drap && op->dest.reg == cfa->base) {
2980 
2981 				/* pop %rbp */
2982 				cfa->base = CFI_SP;
2983 			}
2984 
2985 			if (cfi->drap && cfa->base == CFI_BP_INDIRECT &&
2986 			    op->dest.reg == cfi->drap_reg &&
2987 			    cfi->drap_offset == -cfi->stack_size) {
2988 
2989 				/* drap: pop %drap */
2990 				cfa->base = cfi->drap_reg;
2991 				cfa->offset = 0;
2992 				cfi->drap_offset = -1;
2993 
2994 			} else if (cfi->stack_size == -regs[op->dest.reg].offset) {
2995 
2996 				/* pop %reg */
2997 				restore_reg(cfi, op->dest.reg);
2998 			}
2999 
3000 			cfi->stack_size -= 8;
3001 			if (cfa->base == CFI_SP)
3002 				cfa->offset -= 8;
3003 
3004 			break;
3005 
3006 		case OP_SRC_REG_INDIRECT:
3007 			if (!cfi->drap && op->dest.reg == cfa->base &&
3008 			    op->dest.reg == CFI_BP) {
3009 
3010 				/* mov disp(%rsp), %rbp */
3011 				cfa->base = CFI_SP;
3012 				cfa->offset = cfi->stack_size;
3013 			}
3014 
3015 			if (cfi->drap && op->src.reg == CFI_BP &&
3016 			    op->src.offset == cfi->drap_offset) {
3017 
3018 				/* drap: mov disp(%rbp), %drap */
3019 				cfa->base = cfi->drap_reg;
3020 				cfa->offset = 0;
3021 				cfi->drap_offset = -1;
3022 			}
3023 
3024 			if (cfi->drap && op->src.reg == CFI_BP &&
3025 			    op->src.offset == regs[op->dest.reg].offset) {
3026 
3027 				/* drap: mov disp(%rbp), %reg */
3028 				restore_reg(cfi, op->dest.reg);
3029 
3030 			} else if (op->src.reg == cfa->base &&
3031 			    op->src.offset == regs[op->dest.reg].offset + cfa->offset) {
3032 
3033 				/* mov disp(%rbp), %reg */
3034 				/* mov disp(%rsp), %reg */
3035 				restore_reg(cfi, op->dest.reg);
3036 
3037 			} else if (op->src.reg == CFI_SP &&
3038 				   op->src.offset == regs[op->dest.reg].offset + cfi->stack_size) {
3039 
3040 				/* mov disp(%rsp), %reg */
3041 				restore_reg(cfi, op->dest.reg);
3042 			}
3043 
3044 			break;
3045 
3046 		default:
3047 			WARN_INSN(insn, "unknown stack-related instruction");
3048 			return -1;
3049 		}
3050 
3051 		break;
3052 
3053 	case OP_DEST_PUSH:
3054 	case OP_DEST_PUSHF:
3055 		cfi->stack_size += 8;
3056 		if (cfa->base == CFI_SP)
3057 			cfa->offset += 8;
3058 
3059 		if (op->src.type != OP_SRC_REG)
3060 			break;
3061 
3062 		if (cfi->drap) {
3063 			if (op->src.reg == cfa->base && op->src.reg == cfi->drap_reg) {
3064 
3065 				/* drap: push %drap */
3066 				cfa->base = CFI_BP_INDIRECT;
3067 				cfa->offset = -cfi->stack_size;
3068 
3069 				/* save drap so we know when to restore it */
3070 				cfi->drap_offset = -cfi->stack_size;
3071 
3072 			} else if (op->src.reg == CFI_BP && cfa->base == cfi->drap_reg) {
3073 
3074 				/* drap: push %rbp */
3075 				cfi->stack_size = 0;
3076 
3077 			} else {
3078 
3079 				/* drap: push %reg */
3080 				save_reg(cfi, op->src.reg, CFI_BP, -cfi->stack_size);
3081 			}
3082 
3083 		} else {
3084 
3085 			/* push %reg */
3086 			save_reg(cfi, op->src.reg, CFI_CFA, -cfi->stack_size);
3087 		}
3088 
3089 		/* detect when asm code uses rbp as a scratch register */
3090 		if (opts.stackval && insn_func(insn) && op->src.reg == CFI_BP &&
3091 		    cfa->base != CFI_BP)
3092 			cfi->bp_scratch = true;
3093 		break;
3094 
3095 	case OP_DEST_REG_INDIRECT:
3096 
3097 		if (cfi->drap) {
3098 			if (op->src.reg == cfa->base && op->src.reg == cfi->drap_reg) {
3099 
3100 				/* drap: mov %drap, disp(%rbp) */
3101 				cfa->base = CFI_BP_INDIRECT;
3102 				cfa->offset = op->dest.offset;
3103 
3104 				/* save drap offset so we know when to restore it */
3105 				cfi->drap_offset = op->dest.offset;
3106 			} else {
3107 
3108 				/* drap: mov reg, disp(%rbp) */
3109 				save_reg(cfi, op->src.reg, CFI_BP, op->dest.offset);
3110 			}
3111 
3112 		} else if (op->dest.reg == cfa->base) {
3113 
3114 			/* mov reg, disp(%rbp) */
3115 			/* mov reg, disp(%rsp) */
3116 			save_reg(cfi, op->src.reg, CFI_CFA,
3117 				 op->dest.offset - cfi->cfa.offset);
3118 
3119 		} else if (op->dest.reg == CFI_SP) {
3120 
3121 			/* mov reg, disp(%rsp) */
3122 			save_reg(cfi, op->src.reg, CFI_CFA,
3123 				 op->dest.offset - cfi->stack_size);
3124 
3125 		} else if (op->src.reg == CFI_SP && op->dest.offset == 0) {
3126 
3127 			/* mov %rsp, (%reg); # setup a stack swizzle. */
3128 			cfi->vals[op->dest.reg].base = CFI_SP_INDIRECT;
3129 			cfi->vals[op->dest.reg].offset = cfa->offset;
3130 		}
3131 
3132 		break;
3133 
3134 	case OP_DEST_MEM:
3135 		if (op->src.type != OP_SRC_POP && op->src.type != OP_SRC_POPF) {
3136 			WARN_INSN(insn, "unknown stack-related memory operation");
3137 			return -1;
3138 		}
3139 
3140 		/* pop mem */
3141 		cfi->stack_size -= 8;
3142 		if (cfa->base == CFI_SP)
3143 			cfa->offset -= 8;
3144 
3145 		break;
3146 
3147 	default:
3148 		WARN_INSN(insn, "unknown stack-related instruction");
3149 		return -1;
3150 	}
3151 
3152 	return 0;
3153 }
3154 
3155 /*
3156  * The stack layouts of alternatives instructions can sometimes diverge when
3157  * they have stack modifications.  That's fine as long as the potential stack
3158  * layouts don't conflict at any given potential instruction boundary.
3159  *
3160  * Flatten the CFIs of the different alternative code streams (both original
3161  * and replacement) into a single shared CFI array which can be used to detect
3162  * conflicts and nicely feed a linear array of ORC entries to the unwinder.
3163  */
3164 static int propagate_alt_cfi(struct objtool_file *file, struct instruction *insn)
3165 {
3166 	struct cfi_state **alt_cfi;
3167 	int group_off;
3168 
3169 	if (!insn->alt_group)
3170 		return 0;
3171 
3172 	if (!insn->cfi) {
3173 		WARN("CFI missing");
3174 		return -1;
3175 	}
3176 
3177 	alt_cfi = insn->alt_group->cfi;
3178 	group_off = insn->offset - insn->alt_group->first_insn->offset;
3179 
3180 	if (!alt_cfi[group_off]) {
3181 		alt_cfi[group_off] = insn->cfi;
3182 	} else {
3183 		if (cficmp(alt_cfi[group_off], insn->cfi)) {
3184 			struct alt_group *orig_group = insn->alt_group->orig_group ?: insn->alt_group;
3185 			struct instruction *orig = orig_group->first_insn;
3186 			char *where = offstr(insn->sec, insn->offset);
3187 			WARN_INSN(orig, "stack layout conflict in alternatives: %s", where);
3188 			free(where);
3189 			return -1;
3190 		}
3191 	}
3192 
3193 	return 0;
3194 }
3195 
3196 static int handle_insn_ops(struct instruction *insn,
3197 			   struct instruction *next_insn,
3198 			   struct insn_state *state)
3199 {
3200 	struct stack_op *op;
3201 
3202 	for (op = insn->stack_ops; op; op = op->next) {
3203 
3204 		if (update_cfi_state(insn, next_insn, &state->cfi, op))
3205 			return 1;
3206 
3207 		if (!insn->alt_group)
3208 			continue;
3209 
3210 		if (op->dest.type == OP_DEST_PUSHF) {
3211 			if (!state->uaccess_stack) {
3212 				state->uaccess_stack = 1;
3213 			} else if (state->uaccess_stack >> 31) {
3214 				WARN_INSN(insn, "PUSHF stack exhausted");
3215 				return 1;
3216 			}
3217 			state->uaccess_stack <<= 1;
3218 			state->uaccess_stack  |= state->uaccess;
3219 		}
3220 
3221 		if (op->src.type == OP_SRC_POPF) {
3222 			if (state->uaccess_stack) {
3223 				state->uaccess = state->uaccess_stack & 1;
3224 				state->uaccess_stack >>= 1;
3225 				if (state->uaccess_stack == 1)
3226 					state->uaccess_stack = 0;
3227 			}
3228 		}
3229 	}
3230 
3231 	return 0;
3232 }
3233 
3234 static bool insn_cfi_match(struct instruction *insn, struct cfi_state *cfi2)
3235 {
3236 	struct cfi_state *cfi1 = insn->cfi;
3237 	int i;
3238 
3239 	if (!cfi1) {
3240 		WARN("CFI missing");
3241 		return false;
3242 	}
3243 
3244 	if (memcmp(&cfi1->cfa, &cfi2->cfa, sizeof(cfi1->cfa))) {
3245 
3246 		WARN_INSN(insn, "stack state mismatch: cfa1=%d%+d cfa2=%d%+d",
3247 			  cfi1->cfa.base, cfi1->cfa.offset,
3248 			  cfi2->cfa.base, cfi2->cfa.offset);
3249 
3250 	} else if (memcmp(&cfi1->regs, &cfi2->regs, sizeof(cfi1->regs))) {
3251 		for (i = 0; i < CFI_NUM_REGS; i++) {
3252 			if (!memcmp(&cfi1->regs[i], &cfi2->regs[i],
3253 				    sizeof(struct cfi_reg)))
3254 				continue;
3255 
3256 			WARN_INSN(insn, "stack state mismatch: reg1[%d]=%d%+d reg2[%d]=%d%+d",
3257 				  i, cfi1->regs[i].base, cfi1->regs[i].offset,
3258 				  i, cfi2->regs[i].base, cfi2->regs[i].offset);
3259 			break;
3260 		}
3261 
3262 	} else if (cfi1->type != cfi2->type) {
3263 
3264 		WARN_INSN(insn, "stack state mismatch: type1=%d type2=%d",
3265 			  cfi1->type, cfi2->type);
3266 
3267 	} else if (cfi1->drap != cfi2->drap ||
3268 		   (cfi1->drap && cfi1->drap_reg != cfi2->drap_reg) ||
3269 		   (cfi1->drap && cfi1->drap_offset != cfi2->drap_offset)) {
3270 
3271 		WARN_INSN(insn, "stack state mismatch: drap1=%d(%d,%d) drap2=%d(%d,%d)",
3272 			  cfi1->drap, cfi1->drap_reg, cfi1->drap_offset,
3273 			  cfi2->drap, cfi2->drap_reg, cfi2->drap_offset);
3274 
3275 	} else
3276 		return true;
3277 
3278 	return false;
3279 }
3280 
3281 static inline bool func_uaccess_safe(struct symbol *func)
3282 {
3283 	if (func)
3284 		return func->uaccess_safe;
3285 
3286 	return false;
3287 }
3288 
3289 static inline const char *call_dest_name(struct instruction *insn)
3290 {
3291 	static char pvname[19];
3292 	struct reloc *reloc;
3293 	int idx;
3294 
3295 	if (insn_call_dest(insn))
3296 		return insn_call_dest(insn)->name;
3297 
3298 	reloc = insn_reloc(NULL, insn);
3299 	if (reloc && !strcmp(reloc->sym->name, "pv_ops")) {
3300 		idx = (reloc_addend(reloc) / sizeof(void *));
3301 		snprintf(pvname, sizeof(pvname), "pv_ops[%d]", idx);
3302 		return pvname;
3303 	}
3304 
3305 	return "{dynamic}";
3306 }
3307 
3308 static bool pv_call_dest(struct objtool_file *file, struct instruction *insn)
3309 {
3310 	struct symbol *target;
3311 	struct reloc *reloc;
3312 	int idx;
3313 
3314 	reloc = insn_reloc(file, insn);
3315 	if (!reloc || strcmp(reloc->sym->name, "pv_ops"))
3316 		return false;
3317 
3318 	idx = (arch_dest_reloc_offset(reloc_addend(reloc)) / sizeof(void *));
3319 
3320 	if (file->pv_ops[idx].clean)
3321 		return true;
3322 
3323 	file->pv_ops[idx].clean = true;
3324 
3325 	list_for_each_entry(target, &file->pv_ops[idx].targets, pv_target) {
3326 		if (!target->sec->noinstr) {
3327 			WARN("pv_ops[%d]: %s", idx, target->name);
3328 			file->pv_ops[idx].clean = false;
3329 		}
3330 	}
3331 
3332 	return file->pv_ops[idx].clean;
3333 }
3334 
3335 static inline bool noinstr_call_dest(struct objtool_file *file,
3336 				     struct instruction *insn,
3337 				     struct symbol *func)
3338 {
3339 	/*
3340 	 * We can't deal with indirect function calls at present;
3341 	 * assume they're instrumented.
3342 	 */
3343 	if (!func) {
3344 		if (file->pv_ops)
3345 			return pv_call_dest(file, insn);
3346 
3347 		return false;
3348 	}
3349 
3350 	/*
3351 	 * If the symbol is from a noinstr section; we good.
3352 	 */
3353 	if (func->sec->noinstr)
3354 		return true;
3355 
3356 	/*
3357 	 * If the symbol is a static_call trampoline, we can't tell.
3358 	 */
3359 	if (func->static_call_tramp)
3360 		return true;
3361 
3362 	/*
3363 	 * The __ubsan_handle_*() calls are like WARN(), they only happen when
3364 	 * something 'BAD' happened. At the risk of taking the machine down,
3365 	 * let them proceed to get the message out.
3366 	 */
3367 	if (!strncmp(func->name, "__ubsan_handle_", 15))
3368 		return true;
3369 
3370 	return false;
3371 }
3372 
3373 static int validate_call(struct objtool_file *file,
3374 			 struct instruction *insn,
3375 			 struct insn_state *state)
3376 {
3377 	if (state->noinstr && state->instr <= 0 &&
3378 	    !noinstr_call_dest(file, insn, insn_call_dest(insn))) {
3379 		WARN_INSN(insn, "call to %s() leaves .noinstr.text section", call_dest_name(insn));
3380 		return 1;
3381 	}
3382 
3383 	if (state->uaccess && !func_uaccess_safe(insn_call_dest(insn))) {
3384 		WARN_INSN(insn, "call to %s() with UACCESS enabled", call_dest_name(insn));
3385 		return 1;
3386 	}
3387 
3388 	if (state->df) {
3389 		WARN_INSN(insn, "call to %s() with DF set", call_dest_name(insn));
3390 		return 1;
3391 	}
3392 
3393 	return 0;
3394 }
3395 
3396 static int validate_sibling_call(struct objtool_file *file,
3397 				 struct instruction *insn,
3398 				 struct insn_state *state)
3399 {
3400 	if (insn_func(insn) && has_modified_stack_frame(insn, state)) {
3401 		WARN_INSN(insn, "sibling call from callable instruction with modified stack frame");
3402 		return 1;
3403 	}
3404 
3405 	return validate_call(file, insn, state);
3406 }
3407 
3408 static int validate_return(struct symbol *func, struct instruction *insn, struct insn_state *state)
3409 {
3410 	if (state->noinstr && state->instr > 0) {
3411 		WARN_INSN(insn, "return with instrumentation enabled");
3412 		return 1;
3413 	}
3414 
3415 	if (state->uaccess && !func_uaccess_safe(func)) {
3416 		WARN_INSN(insn, "return with UACCESS enabled");
3417 		return 1;
3418 	}
3419 
3420 	if (!state->uaccess && func_uaccess_safe(func)) {
3421 		WARN_INSN(insn, "return with UACCESS disabled from a UACCESS-safe function");
3422 		return 1;
3423 	}
3424 
3425 	if (state->df) {
3426 		WARN_INSN(insn, "return with DF set");
3427 		return 1;
3428 	}
3429 
3430 	if (func && has_modified_stack_frame(insn, state)) {
3431 		WARN_INSN(insn, "return with modified stack frame");
3432 		return 1;
3433 	}
3434 
3435 	if (state->cfi.bp_scratch) {
3436 		WARN_INSN(insn, "BP used as a scratch register");
3437 		return 1;
3438 	}
3439 
3440 	return 0;
3441 }
3442 
3443 static struct instruction *next_insn_to_validate(struct objtool_file *file,
3444 						 struct instruction *insn)
3445 {
3446 	struct alt_group *alt_group = insn->alt_group;
3447 
3448 	/*
3449 	 * Simulate the fact that alternatives are patched in-place.  When the
3450 	 * end of a replacement alt_group is reached, redirect objtool flow to
3451 	 * the end of the original alt_group.
3452 	 *
3453 	 * insn->alts->insn -> alt_group->first_insn
3454 	 *		       ...
3455 	 *		       alt_group->last_insn
3456 	 *		       [alt_group->nop]      -> next(orig_group->last_insn)
3457 	 */
3458 	if (alt_group) {
3459 		if (alt_group->nop) {
3460 			/* ->nop implies ->orig_group */
3461 			if (insn == alt_group->last_insn)
3462 				return alt_group->nop;
3463 			if (insn == alt_group->nop)
3464 				goto next_orig;
3465 		}
3466 		if (insn == alt_group->last_insn && alt_group->orig_group)
3467 			goto next_orig;
3468 	}
3469 
3470 	return next_insn_same_sec(file, insn);
3471 
3472 next_orig:
3473 	return next_insn_same_sec(file, alt_group->orig_group->last_insn);
3474 }
3475 
3476 /*
3477  * Follow the branch starting at the given instruction, and recursively follow
3478  * any other branches (jumps).  Meanwhile, track the frame pointer state at
3479  * each instruction and validate all the rules described in
3480  * tools/objtool/Documentation/objtool.txt.
3481  */
3482 static int validate_branch(struct objtool_file *file, struct symbol *func,
3483 			   struct instruction *insn, struct insn_state state)
3484 {
3485 	struct alternative *alt;
3486 	struct instruction *next_insn, *prev_insn = NULL;
3487 	struct section *sec;
3488 	u8 visited;
3489 	int ret;
3490 
3491 	sec = insn->sec;
3492 
3493 	while (1) {
3494 		next_insn = next_insn_to_validate(file, insn);
3495 
3496 		if (func && insn_func(insn) && func != insn_func(insn)->pfunc) {
3497 			/* Ignore KCFI type preambles, which always fall through */
3498 			if (!strncmp(func->name, "__cfi_", 6) ||
3499 			    !strncmp(func->name, "__pfx_", 6))
3500 				return 0;
3501 
3502 			WARN("%s() falls through to next function %s()",
3503 			     func->name, insn_func(insn)->name);
3504 			return 1;
3505 		}
3506 
3507 		if (func && insn->ignore) {
3508 			WARN_INSN(insn, "BUG: why am I validating an ignored function?");
3509 			return 1;
3510 		}
3511 
3512 		visited = VISITED_BRANCH << state.uaccess;
3513 		if (insn->visited & VISITED_BRANCH_MASK) {
3514 			if (!insn->hint && !insn_cfi_match(insn, &state.cfi))
3515 				return 1;
3516 
3517 			if (insn->visited & visited)
3518 				return 0;
3519 		} else {
3520 			nr_insns_visited++;
3521 		}
3522 
3523 		if (state.noinstr)
3524 			state.instr += insn->instr;
3525 
3526 		if (insn->hint) {
3527 			if (insn->restore) {
3528 				struct instruction *save_insn, *i;
3529 
3530 				i = insn;
3531 				save_insn = NULL;
3532 
3533 				sym_for_each_insn_continue_reverse(file, func, i) {
3534 					if (i->save) {
3535 						save_insn = i;
3536 						break;
3537 					}
3538 				}
3539 
3540 				if (!save_insn) {
3541 					WARN_INSN(insn, "no corresponding CFI save for CFI restore");
3542 					return 1;
3543 				}
3544 
3545 				if (!save_insn->visited) {
3546 					/*
3547 					 * If the restore hint insn is at the
3548 					 * beginning of a basic block and was
3549 					 * branched to from elsewhere, and the
3550 					 * save insn hasn't been visited yet,
3551 					 * defer following this branch for now.
3552 					 * It will be seen later via the
3553 					 * straight-line path.
3554 					 */
3555 					if (!prev_insn)
3556 						return 0;
3557 
3558 					WARN_INSN(insn, "objtool isn't smart enough to handle this CFI save/restore combo");
3559 					return 1;
3560 				}
3561 
3562 				insn->cfi = save_insn->cfi;
3563 				nr_cfi_reused++;
3564 			}
3565 
3566 			state.cfi = *insn->cfi;
3567 		} else {
3568 			/* XXX track if we actually changed state.cfi */
3569 
3570 			if (prev_insn && !cficmp(prev_insn->cfi, &state.cfi)) {
3571 				insn->cfi = prev_insn->cfi;
3572 				nr_cfi_reused++;
3573 			} else {
3574 				insn->cfi = cfi_hash_find_or_add(&state.cfi);
3575 			}
3576 		}
3577 
3578 		insn->visited |= visited;
3579 
3580 		if (propagate_alt_cfi(file, insn))
3581 			return 1;
3582 
3583 		if (!insn->ignore_alts && insn->alts) {
3584 			bool skip_orig = false;
3585 
3586 			for (alt = insn->alts; alt; alt = alt->next) {
3587 				if (alt->skip_orig)
3588 					skip_orig = true;
3589 
3590 				ret = validate_branch(file, func, alt->insn, state);
3591 				if (ret) {
3592 					BT_INSN(insn, "(alt)");
3593 					return ret;
3594 				}
3595 			}
3596 
3597 			if (skip_orig)
3598 				return 0;
3599 		}
3600 
3601 		if (handle_insn_ops(insn, next_insn, &state))
3602 			return 1;
3603 
3604 		switch (insn->type) {
3605 
3606 		case INSN_RETURN:
3607 			return validate_return(func, insn, &state);
3608 
3609 		case INSN_CALL:
3610 		case INSN_CALL_DYNAMIC:
3611 			ret = validate_call(file, insn, &state);
3612 			if (ret)
3613 				return ret;
3614 
3615 			if (opts.stackval && func && !is_special_call(insn) &&
3616 			    !has_valid_stack_frame(&state)) {
3617 				WARN_INSN(insn, "call without frame pointer save/setup");
3618 				return 1;
3619 			}
3620 
3621 			if (insn->dead_end)
3622 				return 0;
3623 
3624 			break;
3625 
3626 		case INSN_JUMP_CONDITIONAL:
3627 		case INSN_JUMP_UNCONDITIONAL:
3628 			if (is_sibling_call(insn)) {
3629 				ret = validate_sibling_call(file, insn, &state);
3630 				if (ret)
3631 					return ret;
3632 
3633 			} else if (insn->jump_dest) {
3634 				ret = validate_branch(file, func,
3635 						      insn->jump_dest, state);
3636 				if (ret) {
3637 					BT_INSN(insn, "(branch)");
3638 					return ret;
3639 				}
3640 			}
3641 
3642 			if (insn->type == INSN_JUMP_UNCONDITIONAL)
3643 				return 0;
3644 
3645 			break;
3646 
3647 		case INSN_JUMP_DYNAMIC:
3648 		case INSN_JUMP_DYNAMIC_CONDITIONAL:
3649 			if (is_sibling_call(insn)) {
3650 				ret = validate_sibling_call(file, insn, &state);
3651 				if (ret)
3652 					return ret;
3653 			}
3654 
3655 			if (insn->type == INSN_JUMP_DYNAMIC)
3656 				return 0;
3657 
3658 			break;
3659 
3660 		case INSN_CONTEXT_SWITCH:
3661 			if (func) {
3662 				if (!next_insn || !next_insn->hint) {
3663 					WARN_INSN(insn, "unsupported instruction in callable function");
3664 					return 1;
3665 				}
3666 				break;
3667 			}
3668 			return 0;
3669 
3670 		case INSN_STAC:
3671 			if (state.uaccess) {
3672 				WARN_INSN(insn, "recursive UACCESS enable");
3673 				return 1;
3674 			}
3675 
3676 			state.uaccess = true;
3677 			break;
3678 
3679 		case INSN_CLAC:
3680 			if (!state.uaccess && func) {
3681 				WARN_INSN(insn, "redundant UACCESS disable");
3682 				return 1;
3683 			}
3684 
3685 			if (func_uaccess_safe(func) && !state.uaccess_stack) {
3686 				WARN_INSN(insn, "UACCESS-safe disables UACCESS");
3687 				return 1;
3688 			}
3689 
3690 			state.uaccess = false;
3691 			break;
3692 
3693 		case INSN_STD:
3694 			if (state.df) {
3695 				WARN_INSN(insn, "recursive STD");
3696 				return 1;
3697 			}
3698 
3699 			state.df = true;
3700 			break;
3701 
3702 		case INSN_CLD:
3703 			if (!state.df && func) {
3704 				WARN_INSN(insn, "redundant CLD");
3705 				return 1;
3706 			}
3707 
3708 			state.df = false;
3709 			break;
3710 
3711 		default:
3712 			break;
3713 		}
3714 
3715 		if (insn->dead_end)
3716 			return 0;
3717 
3718 		if (!next_insn) {
3719 			if (state.cfi.cfa.base == CFI_UNDEFINED)
3720 				return 0;
3721 			WARN("%s: unexpected end of section", sec->name);
3722 			return 1;
3723 		}
3724 
3725 		prev_insn = insn;
3726 		insn = next_insn;
3727 	}
3728 
3729 	return 0;
3730 }
3731 
3732 static int validate_unwind_hint(struct objtool_file *file,
3733 				  struct instruction *insn,
3734 				  struct insn_state *state)
3735 {
3736 	if (insn->hint && !insn->visited && !insn->ignore) {
3737 		int ret = validate_branch(file, insn_func(insn), insn, *state);
3738 		if (ret)
3739 			BT_INSN(insn, "<=== (hint)");
3740 		return ret;
3741 	}
3742 
3743 	return 0;
3744 }
3745 
3746 static int validate_unwind_hints(struct objtool_file *file, struct section *sec)
3747 {
3748 	struct instruction *insn;
3749 	struct insn_state state;
3750 	int warnings = 0;
3751 
3752 	if (!file->hints)
3753 		return 0;
3754 
3755 	init_insn_state(file, &state, sec);
3756 
3757 	if (sec) {
3758 		sec_for_each_insn(file, sec, insn)
3759 			warnings += validate_unwind_hint(file, insn, &state);
3760 	} else {
3761 		for_each_insn(file, insn)
3762 			warnings += validate_unwind_hint(file, insn, &state);
3763 	}
3764 
3765 	return warnings;
3766 }
3767 
3768 /*
3769  * Validate rethunk entry constraint: must untrain RET before the first RET.
3770  *
3771  * Follow every branch (intra-function) and ensure VALIDATE_UNRET_END comes
3772  * before an actual RET instruction.
3773  */
3774 static int validate_unret(struct objtool_file *file, struct instruction *insn)
3775 {
3776 	struct instruction *next, *dest;
3777 	int ret;
3778 
3779 	for (;;) {
3780 		next = next_insn_to_validate(file, insn);
3781 
3782 		if (insn->visited & VISITED_UNRET)
3783 			return 0;
3784 
3785 		insn->visited |= VISITED_UNRET;
3786 
3787 		if (!insn->ignore_alts && insn->alts) {
3788 			struct alternative *alt;
3789 			bool skip_orig = false;
3790 
3791 			for (alt = insn->alts; alt; alt = alt->next) {
3792 				if (alt->skip_orig)
3793 					skip_orig = true;
3794 
3795 				ret = validate_unret(file, alt->insn);
3796 				if (ret) {
3797 					BT_INSN(insn, "(alt)");
3798 					return ret;
3799 				}
3800 			}
3801 
3802 			if (skip_orig)
3803 				return 0;
3804 		}
3805 
3806 		switch (insn->type) {
3807 
3808 		case INSN_CALL_DYNAMIC:
3809 		case INSN_JUMP_DYNAMIC:
3810 		case INSN_JUMP_DYNAMIC_CONDITIONAL:
3811 			WARN_INSN(insn, "early indirect call");
3812 			return 1;
3813 
3814 		case INSN_JUMP_UNCONDITIONAL:
3815 		case INSN_JUMP_CONDITIONAL:
3816 			if (!is_sibling_call(insn)) {
3817 				if (!insn->jump_dest) {
3818 					WARN_INSN(insn, "unresolved jump target after linking?!?");
3819 					return -1;
3820 				}
3821 				ret = validate_unret(file, insn->jump_dest);
3822 				if (ret) {
3823 					BT_INSN(insn, "(branch%s)",
3824 						insn->type == INSN_JUMP_CONDITIONAL ? "-cond" : "");
3825 					return ret;
3826 				}
3827 
3828 				if (insn->type == INSN_JUMP_UNCONDITIONAL)
3829 					return 0;
3830 
3831 				break;
3832 			}
3833 
3834 			/* fallthrough */
3835 		case INSN_CALL:
3836 			dest = find_insn(file, insn_call_dest(insn)->sec,
3837 					 insn_call_dest(insn)->offset);
3838 			if (!dest) {
3839 				WARN("Unresolved function after linking!?: %s",
3840 				     insn_call_dest(insn)->name);
3841 				return -1;
3842 			}
3843 
3844 			ret = validate_unret(file, dest);
3845 			if (ret) {
3846 				BT_INSN(insn, "(call)");
3847 				return ret;
3848 			}
3849 			/*
3850 			 * If a call returns without error, it must have seen UNTRAIN_RET.
3851 			 * Therefore any non-error return is a success.
3852 			 */
3853 			return 0;
3854 
3855 		case INSN_RETURN:
3856 			WARN_INSN(insn, "RET before UNTRAIN");
3857 			return 1;
3858 
3859 		case INSN_NOP:
3860 			if (insn->retpoline_safe)
3861 				return 0;
3862 			break;
3863 
3864 		default:
3865 			break;
3866 		}
3867 
3868 		if (!next) {
3869 			WARN_INSN(insn, "teh end!");
3870 			return -1;
3871 		}
3872 		insn = next;
3873 	}
3874 
3875 	return 0;
3876 }
3877 
3878 /*
3879  * Validate that all branches starting at VALIDATE_UNRET_BEGIN encounter
3880  * VALIDATE_UNRET_END before RET.
3881  */
3882 static int validate_unrets(struct objtool_file *file)
3883 {
3884 	struct instruction *insn;
3885 	int ret, warnings = 0;
3886 
3887 	for_each_insn(file, insn) {
3888 		if (!insn->unret)
3889 			continue;
3890 
3891 		ret = validate_unret(file, insn);
3892 		if (ret < 0) {
3893 			WARN_INSN(insn, "Failed UNRET validation");
3894 			return ret;
3895 		}
3896 		warnings += ret;
3897 	}
3898 
3899 	return warnings;
3900 }
3901 
3902 static int validate_retpoline(struct objtool_file *file)
3903 {
3904 	struct instruction *insn;
3905 	int warnings = 0;
3906 
3907 	for_each_insn(file, insn) {
3908 		if (insn->type != INSN_JUMP_DYNAMIC &&
3909 		    insn->type != INSN_CALL_DYNAMIC &&
3910 		    insn->type != INSN_RETURN)
3911 			continue;
3912 
3913 		if (insn->retpoline_safe)
3914 			continue;
3915 
3916 		if (insn->sec->init)
3917 			continue;
3918 
3919 		if (insn->type == INSN_RETURN) {
3920 			if (opts.rethunk) {
3921 				WARN_INSN(insn, "'naked' return found in MITIGATION_RETHUNK build");
3922 			} else
3923 				continue;
3924 		} else {
3925 			WARN_INSN(insn, "indirect %s found in MITIGATION_RETPOLINE build",
3926 				  insn->type == INSN_JUMP_DYNAMIC ? "jump" : "call");
3927 		}
3928 
3929 		warnings++;
3930 	}
3931 
3932 	return warnings;
3933 }
3934 
3935 static bool is_kasan_insn(struct instruction *insn)
3936 {
3937 	return (insn->type == INSN_CALL &&
3938 		!strcmp(insn_call_dest(insn)->name, "__asan_handle_no_return"));
3939 }
3940 
3941 static bool is_ubsan_insn(struct instruction *insn)
3942 {
3943 	return (insn->type == INSN_CALL &&
3944 		!strcmp(insn_call_dest(insn)->name,
3945 			"__ubsan_handle_builtin_unreachable"));
3946 }
3947 
3948 static bool ignore_unreachable_insn(struct objtool_file *file, struct instruction *insn)
3949 {
3950 	int i;
3951 	struct instruction *prev_insn;
3952 
3953 	if (insn->ignore || insn->type == INSN_NOP || insn->type == INSN_TRAP)
3954 		return true;
3955 
3956 	/*
3957 	 * Ignore alternative replacement instructions.  This can happen
3958 	 * when a whitelisted function uses one of the ALTERNATIVE macros.
3959 	 */
3960 	if (!strcmp(insn->sec->name, ".altinstr_replacement") ||
3961 	    !strcmp(insn->sec->name, ".altinstr_aux"))
3962 		return true;
3963 
3964 	/*
3965 	 * Whole archive runs might encounter dead code from weak symbols.
3966 	 * This is where the linker will have dropped the weak symbol in
3967 	 * favour of a regular symbol, but leaves the code in place.
3968 	 *
3969 	 * In this case we'll find a piece of code (whole function) that is not
3970 	 * covered by a !section symbol. Ignore them.
3971 	 */
3972 	if (opts.link && !insn_func(insn)) {
3973 		int size = find_symbol_hole_containing(insn->sec, insn->offset);
3974 		unsigned long end = insn->offset + size;
3975 
3976 		if (!size) /* not a hole */
3977 			return false;
3978 
3979 		if (size < 0) /* hole until the end */
3980 			return true;
3981 
3982 		sec_for_each_insn_continue(file, insn) {
3983 			/*
3984 			 * If we reach a visited instruction at or before the
3985 			 * end of the hole, ignore the unreachable.
3986 			 */
3987 			if (insn->visited)
3988 				return true;
3989 
3990 			if (insn->offset >= end)
3991 				break;
3992 
3993 			/*
3994 			 * If this hole jumps to a .cold function, mark it ignore too.
3995 			 */
3996 			if (insn->jump_dest && insn_func(insn->jump_dest) &&
3997 			    strstr(insn_func(insn->jump_dest)->name, ".cold")) {
3998 				struct instruction *dest = insn->jump_dest;
3999 				func_for_each_insn(file, insn_func(dest), dest)
4000 					dest->ignore = true;
4001 			}
4002 		}
4003 
4004 		return false;
4005 	}
4006 
4007 	if (!insn_func(insn))
4008 		return false;
4009 
4010 	if (insn_func(insn)->static_call_tramp)
4011 		return true;
4012 
4013 	/*
4014 	 * CONFIG_UBSAN_TRAP inserts a UD2 when it sees
4015 	 * __builtin_unreachable().  The BUG() macro has an unreachable() after
4016 	 * the UD2, which causes GCC's undefined trap logic to emit another UD2
4017 	 * (or occasionally a JMP to UD2).
4018 	 *
4019 	 * It may also insert a UD2 after calling a __noreturn function.
4020 	 */
4021 	prev_insn = prev_insn_same_sec(file, insn);
4022 	if (prev_insn->dead_end &&
4023 	    (insn->type == INSN_BUG ||
4024 	     (insn->type == INSN_JUMP_UNCONDITIONAL &&
4025 	      insn->jump_dest && insn->jump_dest->type == INSN_BUG)))
4026 		return true;
4027 
4028 	/*
4029 	 * Check if this (or a subsequent) instruction is related to
4030 	 * CONFIG_UBSAN or CONFIG_KASAN.
4031 	 *
4032 	 * End the search at 5 instructions to avoid going into the weeds.
4033 	 */
4034 	for (i = 0; i < 5; i++) {
4035 
4036 		if (is_kasan_insn(insn) || is_ubsan_insn(insn))
4037 			return true;
4038 
4039 		if (insn->type == INSN_JUMP_UNCONDITIONAL) {
4040 			if (insn->jump_dest &&
4041 			    insn_func(insn->jump_dest) == insn_func(insn)) {
4042 				insn = insn->jump_dest;
4043 				continue;
4044 			}
4045 
4046 			break;
4047 		}
4048 
4049 		if (insn->offset + insn->len >= insn_func(insn)->offset + insn_func(insn)->len)
4050 			break;
4051 
4052 		insn = next_insn_same_sec(file, insn);
4053 	}
4054 
4055 	return false;
4056 }
4057 
4058 static int add_prefix_symbol(struct objtool_file *file, struct symbol *func)
4059 {
4060 	struct instruction *insn, *prev;
4061 	struct cfi_state *cfi;
4062 
4063 	insn = find_insn(file, func->sec, func->offset);
4064 	if (!insn)
4065 		return -1;
4066 
4067 	for (prev = prev_insn_same_sec(file, insn);
4068 	     prev;
4069 	     prev = prev_insn_same_sec(file, prev)) {
4070 		u64 offset;
4071 
4072 		if (prev->type != INSN_NOP)
4073 			return -1;
4074 
4075 		offset = func->offset - prev->offset;
4076 
4077 		if (offset > opts.prefix)
4078 			return -1;
4079 
4080 		if (offset < opts.prefix)
4081 			continue;
4082 
4083 		elf_create_prefix_symbol(file->elf, func, opts.prefix);
4084 		break;
4085 	}
4086 
4087 	if (!prev)
4088 		return -1;
4089 
4090 	if (!insn->cfi) {
4091 		/*
4092 		 * This can happen if stack validation isn't enabled or the
4093 		 * function is annotated with STACK_FRAME_NON_STANDARD.
4094 		 */
4095 		return 0;
4096 	}
4097 
4098 	/* Propagate insn->cfi to the prefix code */
4099 	cfi = cfi_hash_find_or_add(insn->cfi);
4100 	for (; prev != insn; prev = next_insn_same_sec(file, prev))
4101 		prev->cfi = cfi;
4102 
4103 	return 0;
4104 }
4105 
4106 static int add_prefix_symbols(struct objtool_file *file)
4107 {
4108 	struct section *sec;
4109 	struct symbol *func;
4110 
4111 	for_each_sec(file, sec) {
4112 		if (!(sec->sh.sh_flags & SHF_EXECINSTR))
4113 			continue;
4114 
4115 		sec_for_each_sym(sec, func) {
4116 			if (func->type != STT_FUNC)
4117 				continue;
4118 
4119 			add_prefix_symbol(file, func);
4120 		}
4121 	}
4122 
4123 	return 0;
4124 }
4125 
4126 static int validate_symbol(struct objtool_file *file, struct section *sec,
4127 			   struct symbol *sym, struct insn_state *state)
4128 {
4129 	struct instruction *insn;
4130 	int ret;
4131 
4132 	if (!sym->len) {
4133 		WARN("%s() is missing an ELF size annotation", sym->name);
4134 		return 1;
4135 	}
4136 
4137 	if (sym->pfunc != sym || sym->alias != sym)
4138 		return 0;
4139 
4140 	insn = find_insn(file, sec, sym->offset);
4141 	if (!insn || insn->ignore || insn->visited)
4142 		return 0;
4143 
4144 	state->uaccess = sym->uaccess_safe;
4145 
4146 	ret = validate_branch(file, insn_func(insn), insn, *state);
4147 	if (ret)
4148 		BT_INSN(insn, "<=== (sym)");
4149 	return ret;
4150 }
4151 
4152 static int validate_section(struct objtool_file *file, struct section *sec)
4153 {
4154 	struct insn_state state;
4155 	struct symbol *func;
4156 	int warnings = 0;
4157 
4158 	sec_for_each_sym(sec, func) {
4159 		if (func->type != STT_FUNC)
4160 			continue;
4161 
4162 		init_insn_state(file, &state, sec);
4163 		set_func_state(&state.cfi);
4164 
4165 		warnings += validate_symbol(file, sec, func, &state);
4166 	}
4167 
4168 	return warnings;
4169 }
4170 
4171 static int validate_noinstr_sections(struct objtool_file *file)
4172 {
4173 	struct section *sec;
4174 	int warnings = 0;
4175 
4176 	sec = find_section_by_name(file->elf, ".noinstr.text");
4177 	if (sec) {
4178 		warnings += validate_section(file, sec);
4179 		warnings += validate_unwind_hints(file, sec);
4180 	}
4181 
4182 	sec = find_section_by_name(file->elf, ".entry.text");
4183 	if (sec) {
4184 		warnings += validate_section(file, sec);
4185 		warnings += validate_unwind_hints(file, sec);
4186 	}
4187 
4188 	sec = find_section_by_name(file->elf, ".cpuidle.text");
4189 	if (sec) {
4190 		warnings += validate_section(file, sec);
4191 		warnings += validate_unwind_hints(file, sec);
4192 	}
4193 
4194 	return warnings;
4195 }
4196 
4197 static int validate_functions(struct objtool_file *file)
4198 {
4199 	struct section *sec;
4200 	int warnings = 0;
4201 
4202 	for_each_sec(file, sec) {
4203 		if (!(sec->sh.sh_flags & SHF_EXECINSTR))
4204 			continue;
4205 
4206 		warnings += validate_section(file, sec);
4207 	}
4208 
4209 	return warnings;
4210 }
4211 
4212 static void mark_endbr_used(struct instruction *insn)
4213 {
4214 	if (!list_empty(&insn->call_node))
4215 		list_del_init(&insn->call_node);
4216 }
4217 
4218 static bool noendbr_range(struct objtool_file *file, struct instruction *insn)
4219 {
4220 	struct symbol *sym = find_symbol_containing(insn->sec, insn->offset-1);
4221 	struct instruction *first;
4222 
4223 	if (!sym)
4224 		return false;
4225 
4226 	first = find_insn(file, sym->sec, sym->offset);
4227 	if (!first)
4228 		return false;
4229 
4230 	if (first->type != INSN_ENDBR && !first->noendbr)
4231 		return false;
4232 
4233 	return insn->offset == sym->offset + sym->len;
4234 }
4235 
4236 static int __validate_ibt_insn(struct objtool_file *file, struct instruction *insn,
4237 			       struct instruction *dest)
4238 {
4239 	if (dest->type == INSN_ENDBR) {
4240 		mark_endbr_used(dest);
4241 		return 0;
4242 	}
4243 
4244 	if (insn_func(dest) && insn_func(insn) &&
4245 	    insn_func(dest)->pfunc == insn_func(insn)->pfunc) {
4246 		/*
4247 		 * Anything from->to self is either _THIS_IP_ or
4248 		 * IRET-to-self.
4249 		 *
4250 		 * There is no sane way to annotate _THIS_IP_ since the
4251 		 * compiler treats the relocation as a constant and is
4252 		 * happy to fold in offsets, skewing any annotation we
4253 		 * do, leading to vast amounts of false-positives.
4254 		 *
4255 		 * There's also compiler generated _THIS_IP_ through
4256 		 * KCOV and such which we have no hope of annotating.
4257 		 *
4258 		 * As such, blanket accept self-references without
4259 		 * issue.
4260 		 */
4261 		return 0;
4262 	}
4263 
4264 	/*
4265 	 * Accept anything ANNOTATE_NOENDBR.
4266 	 */
4267 	if (dest->noendbr)
4268 		return 0;
4269 
4270 	/*
4271 	 * Accept if this is the instruction after a symbol
4272 	 * that is (no)endbr -- typical code-range usage.
4273 	 */
4274 	if (noendbr_range(file, dest))
4275 		return 0;
4276 
4277 	WARN_INSN(insn, "relocation to !ENDBR: %s", offstr(dest->sec, dest->offset));
4278 	return 1;
4279 }
4280 
4281 static int validate_ibt_insn(struct objtool_file *file, struct instruction *insn)
4282 {
4283 	struct instruction *dest;
4284 	struct reloc *reloc;
4285 	unsigned long off;
4286 	int warnings = 0;
4287 
4288 	/*
4289 	 * Looking for function pointer load relocations.  Ignore
4290 	 * direct/indirect branches:
4291 	 */
4292 	switch (insn->type) {
4293 
4294 	case INSN_CALL:
4295 	case INSN_CALL_DYNAMIC:
4296 	case INSN_JUMP_CONDITIONAL:
4297 	case INSN_JUMP_UNCONDITIONAL:
4298 	case INSN_JUMP_DYNAMIC:
4299 	case INSN_JUMP_DYNAMIC_CONDITIONAL:
4300 	case INSN_RETURN:
4301 	case INSN_NOP:
4302 		return 0;
4303 
4304 	case INSN_LEA_RIP:
4305 		if (!insn_reloc(file, insn)) {
4306 			/* local function pointer reference without reloc */
4307 
4308 			off = arch_jump_destination(insn);
4309 
4310 			dest = find_insn(file, insn->sec, off);
4311 			if (!dest) {
4312 				WARN_INSN(insn, "corrupt function pointer reference");
4313 				return 1;
4314 			}
4315 
4316 			return __validate_ibt_insn(file, insn, dest);
4317 		}
4318 		break;
4319 
4320 	default:
4321 		break;
4322 	}
4323 
4324 	for (reloc = insn_reloc(file, insn);
4325 	     reloc;
4326 	     reloc = find_reloc_by_dest_range(file->elf, insn->sec,
4327 					      reloc_offset(reloc) + 1,
4328 					      (insn->offset + insn->len) - (reloc_offset(reloc) + 1))) {
4329 
4330 		off = reloc->sym->offset;
4331 		if (reloc_type(reloc) == R_X86_64_PC32 ||
4332 		    reloc_type(reloc) == R_X86_64_PLT32)
4333 			off += arch_dest_reloc_offset(reloc_addend(reloc));
4334 		else
4335 			off += reloc_addend(reloc);
4336 
4337 		dest = find_insn(file, reloc->sym->sec, off);
4338 		if (!dest)
4339 			continue;
4340 
4341 		warnings += __validate_ibt_insn(file, insn, dest);
4342 	}
4343 
4344 	return warnings;
4345 }
4346 
4347 static int validate_ibt_data_reloc(struct objtool_file *file,
4348 				   struct reloc *reloc)
4349 {
4350 	struct instruction *dest;
4351 
4352 	dest = find_insn(file, reloc->sym->sec,
4353 			 reloc->sym->offset + reloc_addend(reloc));
4354 	if (!dest)
4355 		return 0;
4356 
4357 	if (dest->type == INSN_ENDBR) {
4358 		mark_endbr_used(dest);
4359 		return 0;
4360 	}
4361 
4362 	if (dest->noendbr)
4363 		return 0;
4364 
4365 	WARN_FUNC("data relocation to !ENDBR: %s",
4366 		  reloc->sec->base, reloc_offset(reloc),
4367 		  offstr(dest->sec, dest->offset));
4368 
4369 	return 1;
4370 }
4371 
4372 /*
4373  * Validate IBT rules and remove used ENDBR instructions from the seal list.
4374  * Unused ENDBR instructions will be annotated for sealing (i.e., replaced with
4375  * NOPs) later, in create_ibt_endbr_seal_sections().
4376  */
4377 static int validate_ibt(struct objtool_file *file)
4378 {
4379 	struct section *sec;
4380 	struct reloc *reloc;
4381 	struct instruction *insn;
4382 	int warnings = 0;
4383 
4384 	for_each_insn(file, insn)
4385 		warnings += validate_ibt_insn(file, insn);
4386 
4387 	for_each_sec(file, sec) {
4388 
4389 		/* Already done by validate_ibt_insn() */
4390 		if (sec->sh.sh_flags & SHF_EXECINSTR)
4391 			continue;
4392 
4393 		if (!sec->rsec)
4394 			continue;
4395 
4396 		/*
4397 		 * These sections can reference text addresses, but not with
4398 		 * the intent to indirect branch to them.
4399 		 */
4400 		if ((!strncmp(sec->name, ".discard", 8) &&
4401 		     strcmp(sec->name, ".discard.ibt_endbr_noseal"))	||
4402 		    !strncmp(sec->name, ".debug", 6)			||
4403 		    !strcmp(sec->name, ".altinstructions")		||
4404 		    !strcmp(sec->name, ".ibt_endbr_seal")		||
4405 		    !strcmp(sec->name, ".orc_unwind_ip")		||
4406 		    !strcmp(sec->name, ".parainstructions")		||
4407 		    !strcmp(sec->name, ".retpoline_sites")		||
4408 		    !strcmp(sec->name, ".smp_locks")			||
4409 		    !strcmp(sec->name, ".static_call_sites")		||
4410 		    !strcmp(sec->name, "_error_injection_whitelist")	||
4411 		    !strcmp(sec->name, "_kprobe_blacklist")		||
4412 		    !strcmp(sec->name, "__bug_table")			||
4413 		    !strcmp(sec->name, "__ex_table")			||
4414 		    !strcmp(sec->name, "__jump_table")			||
4415 		    !strcmp(sec->name, "__mcount_loc")			||
4416 		    !strcmp(sec->name, ".kcfi_traps")			||
4417 		    !strcmp(sec->name, ".llvm.call-graph-profile")	||
4418 		    !strcmp(sec->name, ".llvm_bb_addr_map")		||
4419 		    !strcmp(sec->name, "__tracepoints")			||
4420 		    strstr(sec->name, "__patchable_function_entries"))
4421 			continue;
4422 
4423 		for_each_reloc(sec->rsec, reloc)
4424 			warnings += validate_ibt_data_reloc(file, reloc);
4425 	}
4426 
4427 	return warnings;
4428 }
4429 
4430 static int validate_sls(struct objtool_file *file)
4431 {
4432 	struct instruction *insn, *next_insn;
4433 	int warnings = 0;
4434 
4435 	for_each_insn(file, insn) {
4436 		next_insn = next_insn_same_sec(file, insn);
4437 
4438 		if (insn->retpoline_safe)
4439 			continue;
4440 
4441 		switch (insn->type) {
4442 		case INSN_RETURN:
4443 			if (!next_insn || next_insn->type != INSN_TRAP) {
4444 				WARN_INSN(insn, "missing int3 after ret");
4445 				warnings++;
4446 			}
4447 
4448 			break;
4449 		case INSN_JUMP_DYNAMIC:
4450 			if (!next_insn || next_insn->type != INSN_TRAP) {
4451 				WARN_INSN(insn, "missing int3 after indirect jump");
4452 				warnings++;
4453 			}
4454 			break;
4455 		default:
4456 			break;
4457 		}
4458 	}
4459 
4460 	return warnings;
4461 }
4462 
4463 static int validate_reachable_instructions(struct objtool_file *file)
4464 {
4465 	struct instruction *insn, *prev_insn;
4466 	struct symbol *call_dest;
4467 	int warnings = 0;
4468 
4469 	if (file->ignore_unreachables)
4470 		return 0;
4471 
4472 	for_each_insn(file, insn) {
4473 		if (insn->visited || ignore_unreachable_insn(file, insn))
4474 			continue;
4475 
4476 		prev_insn = prev_insn_same_sec(file, insn);
4477 		if (prev_insn && prev_insn->dead_end) {
4478 			call_dest = insn_call_dest(prev_insn);
4479 			if (call_dest) {
4480 				WARN_INSN(insn, "%s() missing __noreturn in .c/.h or NORETURN() in noreturns.h",
4481 					  call_dest->name);
4482 				warnings++;
4483 				continue;
4484 			}
4485 		}
4486 
4487 		WARN_INSN(insn, "unreachable instruction");
4488 		warnings++;
4489 	}
4490 
4491 	return warnings;
4492 }
4493 
4494 /* 'funcs' is a space-separated list of function names */
4495 static int disas_funcs(const char *funcs)
4496 {
4497 	const char *objdump_str, *cross_compile;
4498 	int size, ret;
4499 	char *cmd;
4500 
4501 	cross_compile = getenv("CROSS_COMPILE");
4502 
4503 	objdump_str = "%sobjdump -wdr %s | gawk -M -v _funcs='%s' '"
4504 			"BEGIN { split(_funcs, funcs); }"
4505 			"/^$/ { func_match = 0; }"
4506 			"/<.*>:/ { "
4507 				"f = gensub(/.*<(.*)>:/, \"\\\\1\", 1);"
4508 				"for (i in funcs) {"
4509 					"if (funcs[i] == f) {"
4510 						"func_match = 1;"
4511 						"base = strtonum(\"0x\" $1);"
4512 						"break;"
4513 					"}"
4514 				"}"
4515 			"}"
4516 			"{"
4517 				"if (func_match) {"
4518 					"addr = strtonum(\"0x\" $1);"
4519 					"printf(\"%%04x \", addr - base);"
4520 					"print;"
4521 				"}"
4522 			"}' 1>&2";
4523 
4524 	/* fake snprintf() to calculate the size */
4525 	size = snprintf(NULL, 0, objdump_str, cross_compile, objname, funcs) + 1;
4526 	if (size <= 0) {
4527 		WARN("objdump string size calculation failed");
4528 		return -1;
4529 	}
4530 
4531 	cmd = malloc(size);
4532 
4533 	/* real snprintf() */
4534 	snprintf(cmd, size, objdump_str, cross_compile, objname, funcs);
4535 	ret = system(cmd);
4536 	if (ret) {
4537 		WARN("disassembly failed: %d", ret);
4538 		return -1;
4539 	}
4540 
4541 	return 0;
4542 }
4543 
4544 static int disas_warned_funcs(struct objtool_file *file)
4545 {
4546 	struct symbol *sym;
4547 	char *funcs = NULL, *tmp;
4548 
4549 	for_each_sym(file, sym) {
4550 		if (sym->warnings) {
4551 			if (!funcs) {
4552 				funcs = malloc(strlen(sym->name) + 1);
4553 				strcpy(funcs, sym->name);
4554 			} else {
4555 				tmp = malloc(strlen(funcs) + strlen(sym->name) + 2);
4556 				sprintf(tmp, "%s %s", funcs, sym->name);
4557 				free(funcs);
4558 				funcs = tmp;
4559 			}
4560 		}
4561 	}
4562 
4563 	if (funcs)
4564 		disas_funcs(funcs);
4565 
4566 	return 0;
4567 }
4568 
4569 struct insn_chunk {
4570 	void *addr;
4571 	struct insn_chunk *next;
4572 };
4573 
4574 /*
4575  * Reduce peak RSS usage by freeing insns memory before writing the ELF file,
4576  * which can trigger more allocations for .debug_* sections whose data hasn't
4577  * been read yet.
4578  */
4579 static void free_insns(struct objtool_file *file)
4580 {
4581 	struct instruction *insn;
4582 	struct insn_chunk *chunks = NULL, *chunk;
4583 
4584 	for_each_insn(file, insn) {
4585 		if (!insn->idx) {
4586 			chunk = malloc(sizeof(*chunk));
4587 			chunk->addr = insn;
4588 			chunk->next = chunks;
4589 			chunks = chunk;
4590 		}
4591 	}
4592 
4593 	for (chunk = chunks; chunk; chunk = chunk->next)
4594 		free(chunk->addr);
4595 }
4596 
4597 int check(struct objtool_file *file)
4598 {
4599 	int ret, warnings = 0;
4600 
4601 	arch_initial_func_cfi_state(&initial_func_cfi);
4602 	init_cfi_state(&init_cfi);
4603 	init_cfi_state(&func_cfi);
4604 	set_func_state(&func_cfi);
4605 	init_cfi_state(&force_undefined_cfi);
4606 	force_undefined_cfi.force_undefined = true;
4607 
4608 	if (!cfi_hash_alloc(1UL << (file->elf->symbol_bits - 3))) {
4609 		ret = -1;
4610 		goto out;
4611 	}
4612 
4613 	cfi_hash_add(&init_cfi);
4614 	cfi_hash_add(&func_cfi);
4615 
4616 	ret = decode_sections(file);
4617 	if (ret < 0)
4618 		goto out;
4619 
4620 	warnings += ret;
4621 
4622 	if (!nr_insns)
4623 		goto out;
4624 
4625 	if (opts.retpoline) {
4626 		ret = validate_retpoline(file);
4627 		if (ret < 0)
4628 			goto out;
4629 		warnings += ret;
4630 	}
4631 
4632 	if (opts.stackval || opts.orc || opts.uaccess) {
4633 		ret = validate_functions(file);
4634 		if (ret < 0)
4635 			goto out;
4636 		warnings += ret;
4637 
4638 		ret = validate_unwind_hints(file, NULL);
4639 		if (ret < 0)
4640 			goto out;
4641 		warnings += ret;
4642 
4643 		if (!warnings) {
4644 			ret = validate_reachable_instructions(file);
4645 			if (ret < 0)
4646 				goto out;
4647 			warnings += ret;
4648 		}
4649 
4650 	} else if (opts.noinstr) {
4651 		ret = validate_noinstr_sections(file);
4652 		if (ret < 0)
4653 			goto out;
4654 		warnings += ret;
4655 	}
4656 
4657 	if (opts.unret) {
4658 		/*
4659 		 * Must be after validate_branch() and friends, it plays
4660 		 * further games with insn->visited.
4661 		 */
4662 		ret = validate_unrets(file);
4663 		if (ret < 0)
4664 			goto out;
4665 		warnings += ret;
4666 	}
4667 
4668 	if (opts.ibt) {
4669 		ret = validate_ibt(file);
4670 		if (ret < 0)
4671 			goto out;
4672 		warnings += ret;
4673 	}
4674 
4675 	if (opts.sls) {
4676 		ret = validate_sls(file);
4677 		if (ret < 0)
4678 			goto out;
4679 		warnings += ret;
4680 	}
4681 
4682 	if (opts.static_call) {
4683 		ret = create_static_call_sections(file);
4684 		if (ret < 0)
4685 			goto out;
4686 		warnings += ret;
4687 	}
4688 
4689 	if (opts.retpoline) {
4690 		ret = create_retpoline_sites_sections(file);
4691 		if (ret < 0)
4692 			goto out;
4693 		warnings += ret;
4694 	}
4695 
4696 	if (opts.cfi) {
4697 		ret = create_cfi_sections(file);
4698 		if (ret < 0)
4699 			goto out;
4700 		warnings += ret;
4701 	}
4702 
4703 	if (opts.rethunk) {
4704 		ret = create_return_sites_sections(file);
4705 		if (ret < 0)
4706 			goto out;
4707 		warnings += ret;
4708 
4709 		if (opts.hack_skylake) {
4710 			ret = create_direct_call_sections(file);
4711 			if (ret < 0)
4712 				goto out;
4713 			warnings += ret;
4714 		}
4715 	}
4716 
4717 	if (opts.mcount) {
4718 		ret = create_mcount_loc_sections(file);
4719 		if (ret < 0)
4720 			goto out;
4721 		warnings += ret;
4722 	}
4723 
4724 	if (opts.prefix) {
4725 		ret = add_prefix_symbols(file);
4726 		if (ret < 0)
4727 			goto out;
4728 		warnings += ret;
4729 	}
4730 
4731 	if (opts.ibt) {
4732 		ret = create_ibt_endbr_seal_sections(file);
4733 		if (ret < 0)
4734 			goto out;
4735 		warnings += ret;
4736 	}
4737 
4738 	if (opts.orc && nr_insns) {
4739 		ret = orc_create(file);
4740 		if (ret < 0)
4741 			goto out;
4742 		warnings += ret;
4743 	}
4744 
4745 	free_insns(file);
4746 
4747 	if (opts.verbose)
4748 		disas_warned_funcs(file);
4749 
4750 	if (opts.stats) {
4751 		printf("nr_insns_visited: %ld\n", nr_insns_visited);
4752 		printf("nr_cfi: %ld\n", nr_cfi);
4753 		printf("nr_cfi_reused: %ld\n", nr_cfi_reused);
4754 		printf("nr_cfi_cache: %ld\n", nr_cfi_cache);
4755 	}
4756 
4757 out:
4758 	/*
4759 	 * CONFIG_OBJTOOL_WERROR upgrades all warnings (and errors) to actual
4760 	 * errors.
4761 	 *
4762 	 * Note that even "fatal" type errors don't actually return an error
4763 	 * without CONFIG_OBJTOOL_WERROR.  That probably needs improved at some
4764 	 * point.
4765 	 */
4766 	if (opts.werror && (ret || warnings)) {
4767 		if (warnings)
4768 			WARN("%d warning(s) upgraded to errors", warnings);
4769 		return 1;
4770 	}
4771 
4772 	return 0;
4773 }
4774