1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2015-2017 Josh Poimboeuf <jpoimboe@redhat.com>
10 #include <objtool/builtin.h>
11 #include <objtool/cfi.h>
12 #include <objtool/arch.h>
13 #include <objtool/check.h>
14 #include <objtool/special.h>
15 #include <objtool/warn.h>
16 #include <objtool/endianness.h>
18 #include <linux/objtool.h>
19 #include <linux/hashtable.h>
20 #include <linux/kernel.h>
21 #include <linux/static_call_types.h>
24 struct list_head list;
25 struct instruction *insn;
29 struct cfi_init_state initial_func_cfi;
31 struct instruction *find_insn(struct objtool_file *file,
32 struct section *sec, unsigned long offset)
34 struct instruction *insn;
36 hash_for_each_possible(file->insn_hash, insn, hash, sec_offset_hash(sec, offset)) {
37 if (insn->sec == sec && insn->offset == offset)
44 static struct instruction *next_insn_same_sec(struct objtool_file *file,
45 struct instruction *insn)
47 struct instruction *next = list_next_entry(insn, list);
49 if (!next || &next->list == &file->insn_list || next->sec != insn->sec)
55 static struct instruction *next_insn_same_func(struct objtool_file *file,
56 struct instruction *insn)
58 struct instruction *next = list_next_entry(insn, list);
59 struct symbol *func = insn->func;
64 if (&next->list != &file->insn_list && next->func == func)
67 /* Check if we're already in the subfunction: */
68 if (func == func->cfunc)
71 /* Move to the subfunction: */
72 return find_insn(file, func->cfunc->sec, func->cfunc->offset);
75 static struct instruction *prev_insn_same_sym(struct objtool_file *file,
76 struct instruction *insn)
78 struct instruction *prev = list_prev_entry(insn, list);
80 if (&prev->list != &file->insn_list && prev->func == insn->func)
86 #define func_for_each_insn(file, func, insn) \
87 for (insn = find_insn(file, func->sec, func->offset); \
89 insn = next_insn_same_func(file, insn))
91 #define sym_for_each_insn(file, sym, insn) \
92 for (insn = find_insn(file, sym->sec, sym->offset); \
93 insn && &insn->list != &file->insn_list && \
94 insn->sec == sym->sec && \
95 insn->offset < sym->offset + sym->len; \
96 insn = list_next_entry(insn, list))
98 #define sym_for_each_insn_continue_reverse(file, sym, insn) \
99 for (insn = list_prev_entry(insn, list); \
100 &insn->list != &file->insn_list && \
101 insn->sec == sym->sec && insn->offset >= sym->offset; \
102 insn = list_prev_entry(insn, list))
104 #define sec_for_each_insn_from(file, insn) \
105 for (; insn; insn = next_insn_same_sec(file, insn))
107 #define sec_for_each_insn_continue(file, insn) \
108 for (insn = next_insn_same_sec(file, insn); insn; \
109 insn = next_insn_same_sec(file, insn))
111 static bool is_jump_table_jump(struct instruction *insn)
113 struct alt_group *alt_group = insn->alt_group;
115 if (insn->jump_table)
118 /* Retpoline alternative for a jump table? */
119 return alt_group && alt_group->orig_group &&
120 alt_group->orig_group->first_insn->jump_table;
123 static bool is_sibling_call(struct instruction *insn)
126 * Assume only ELF functions can make sibling calls. This ensures
127 * sibling call detection consistency between vmlinux.o and individual
133 /* An indirect jump is either a sibling call or a jump to a table. */
134 if (insn->type == INSN_JUMP_DYNAMIC)
135 return !is_jump_table_jump(insn);
137 /* add_jump_destinations() sets insn->call_dest for sibling calls. */
138 return (is_static_jump(insn) && insn->call_dest);
142 * This checks to see if the given function is a "noreturn" function.
144 * For global functions which are outside the scope of this object file, we
145 * have to keep a manual list of them.
147 * For local functions, we have to detect them manually by simply looking for
148 * the lack of a return instruction.
150 static bool __dead_end_function(struct objtool_file *file, struct symbol *func,
154 struct instruction *insn;
158 * Unfortunately these have to be hard coded because the noreturn
159 * attribute isn't provided in ELF data.
161 static const char * const global_noreturns[] = {
166 "__module_put_and_exit",
172 "machine_real_restart",
173 "rewind_stack_do_exit",
174 "kunit_try_catch_throw",
181 if (func->bind == STB_WEAK)
184 if (func->bind == STB_GLOBAL)
185 for (i = 0; i < ARRAY_SIZE(global_noreturns); i++)
186 if (!strcmp(func->name, global_noreturns[i]))
192 insn = find_insn(file, func->sec, func->offset);
196 func_for_each_insn(file, func, insn) {
199 if (insn->type == INSN_RETURN)
207 * A function can have a sibling call instead of a return. In that
208 * case, the function's dead-end status depends on whether the target
209 * of the sibling call returns.
211 func_for_each_insn(file, func, insn) {
212 if (is_sibling_call(insn)) {
213 struct instruction *dest = insn->jump_dest;
216 /* sibling call to another file */
219 /* local sibling call */
220 if (recursion == 5) {
222 * Infinite recursion: two functions have
223 * sibling calls to each other. This is a very
224 * rare case. It means they aren't dead ends.
229 return __dead_end_function(file, dest->func, recursion+1);
236 static bool dead_end_function(struct objtool_file *file, struct symbol *func)
238 return __dead_end_function(file, func, 0);
241 static void init_cfi_state(struct cfi_state *cfi)
245 for (i = 0; i < CFI_NUM_REGS; i++) {
246 cfi->regs[i].base = CFI_UNDEFINED;
247 cfi->vals[i].base = CFI_UNDEFINED;
249 cfi->cfa.base = CFI_UNDEFINED;
250 cfi->drap_reg = CFI_UNDEFINED;
251 cfi->drap_offset = -1;
254 static void init_insn_state(struct insn_state *state, struct section *sec)
256 memset(state, 0, sizeof(*state));
257 init_cfi_state(&state->cfi);
260 * We need the full vmlinux for noinstr validation, otherwise we can
261 * not correctly determine insn->call_dest->sec (external symbols do
262 * not have a section).
264 if (vmlinux && noinstr && sec)
265 state->noinstr = sec->noinstr;
269 * Call the arch-specific instruction decoder for all the instructions and add
270 * them to the global instruction list.
272 static int decode_instructions(struct objtool_file *file)
276 unsigned long offset;
277 struct instruction *insn;
278 unsigned long nr_insns = 0;
281 for_each_sec(file, sec) {
283 if (!(sec->sh.sh_flags & SHF_EXECINSTR))
286 if (strcmp(sec->name, ".altinstr_replacement") &&
287 strcmp(sec->name, ".altinstr_aux") &&
288 strncmp(sec->name, ".discard.", 9))
291 if (!strcmp(sec->name, ".noinstr.text") ||
292 !strcmp(sec->name, ".entry.text"))
295 for (offset = 0; offset < sec->len; offset += insn->len) {
296 insn = malloc(sizeof(*insn));
298 WARN("malloc failed");
301 memset(insn, 0, sizeof(*insn));
302 INIT_LIST_HEAD(&insn->alts);
303 INIT_LIST_HEAD(&insn->stack_ops);
304 init_cfi_state(&insn->cfi);
307 insn->offset = offset;
309 ret = arch_decode_instruction(file->elf, sec, offset,
311 &insn->len, &insn->type,
317 hash_add(file->insn_hash, &insn->hash, sec_offset_hash(sec, insn->offset));
318 list_add_tail(&insn->list, &file->insn_list);
322 list_for_each_entry(func, &sec->symbol_list, list) {
323 if (func->type != STT_FUNC || func->alias != func)
326 if (!find_insn(file, sec, func->offset)) {
327 WARN("%s(): can't find starting instruction",
332 sym_for_each_insn(file, func, insn)
338 printf("nr_insns: %lu\n", nr_insns);
347 static struct instruction *find_last_insn(struct objtool_file *file,
350 struct instruction *insn = NULL;
352 unsigned int end = (sec->len > 10) ? sec->len - 10 : 0;
354 for (offset = sec->len - 1; offset >= end && !insn; offset--)
355 insn = find_insn(file, sec, offset);
361 * Mark "ud2" instructions and manually annotated dead ends.
363 static int add_dead_ends(struct objtool_file *file)
367 struct instruction *insn;
370 * By default, "ud2" is a dead end unless otherwise annotated, because
371 * GCC 7 inserts it for certain divide-by-zero cases.
373 for_each_insn(file, insn)
374 if (insn->type == INSN_BUG)
375 insn->dead_end = true;
378 * Check for manually annotated dead ends.
380 sec = find_section_by_name(file->elf, ".rela.discard.unreachable");
384 list_for_each_entry(reloc, &sec->reloc_list, list) {
385 if (reloc->sym->type != STT_SECTION) {
386 WARN("unexpected relocation symbol type in %s", sec->name);
389 insn = find_insn(file, reloc->sym->sec, reloc->addend);
391 insn = list_prev_entry(insn, list);
392 else if (reloc->addend == reloc->sym->sec->len) {
393 insn = find_last_insn(file, reloc->sym->sec);
395 WARN("can't find unreachable insn at %s+0x%x",
396 reloc->sym->sec->name, reloc->addend);
400 WARN("can't find unreachable insn at %s+0x%x",
401 reloc->sym->sec->name, reloc->addend);
405 insn->dead_end = true;
410 * These manually annotated reachable checks are needed for GCC 4.4,
411 * where the Linux unreachable() macro isn't supported. In that case
412 * GCC doesn't know the "ud2" is fatal, so it generates code as if it's
415 sec = find_section_by_name(file->elf, ".rela.discard.reachable");
419 list_for_each_entry(reloc, &sec->reloc_list, list) {
420 if (reloc->sym->type != STT_SECTION) {
421 WARN("unexpected relocation symbol type in %s", sec->name);
424 insn = find_insn(file, reloc->sym->sec, reloc->addend);
426 insn = list_prev_entry(insn, list);
427 else if (reloc->addend == reloc->sym->sec->len) {
428 insn = find_last_insn(file, reloc->sym->sec);
430 WARN("can't find reachable insn at %s+0x%x",
431 reloc->sym->sec->name, reloc->addend);
435 WARN("can't find reachable insn at %s+0x%x",
436 reloc->sym->sec->name, reloc->addend);
440 insn->dead_end = false;
446 static int create_static_call_sections(struct objtool_file *file)
449 struct static_call_site *site;
450 struct instruction *insn;
451 struct symbol *key_sym;
452 char *key_name, *tmp;
455 sec = find_section_by_name(file->elf, ".static_call_sites");
457 INIT_LIST_HEAD(&file->static_call_list);
458 WARN("file already has .static_call_sites section, skipping");
462 if (list_empty(&file->static_call_list))
466 list_for_each_entry(insn, &file->static_call_list, call_node)
469 sec = elf_create_section(file->elf, ".static_call_sites", SHF_WRITE,
470 sizeof(struct static_call_site), idx);
475 list_for_each_entry(insn, &file->static_call_list, call_node) {
477 site = (struct static_call_site *)sec->data->d_buf + idx;
478 memset(site, 0, sizeof(struct static_call_site));
480 /* populate reloc for 'addr' */
481 if (elf_add_reloc_to_insn(file->elf, sec,
482 idx * sizeof(struct static_call_site),
484 insn->sec, insn->offset))
487 /* find key symbol */
488 key_name = strdup(insn->call_dest->name);
493 if (strncmp(key_name, STATIC_CALL_TRAMP_PREFIX_STR,
494 STATIC_CALL_TRAMP_PREFIX_LEN)) {
495 WARN("static_call: trampoline name malformed: %s", key_name);
498 tmp = key_name + STATIC_CALL_TRAMP_PREFIX_LEN - STATIC_CALL_KEY_PREFIX_LEN;
499 memcpy(tmp, STATIC_CALL_KEY_PREFIX_STR, STATIC_CALL_KEY_PREFIX_LEN);
501 key_sym = find_symbol_by_name(file->elf, tmp);
504 WARN("static_call: can't find static_call_key symbol: %s", tmp);
509 * For modules(), the key might not be exported, which
510 * means the module can make static calls but isn't
511 * allowed to change them.
513 * In that case we temporarily set the key to be the
514 * trampoline address. This is fixed up in
515 * static_call_add_module().
517 key_sym = insn->call_dest;
521 /* populate reloc for 'key' */
522 if (elf_add_reloc(file->elf, sec,
523 idx * sizeof(struct static_call_site) + 4,
524 R_X86_64_PC32, key_sym,
525 is_sibling_call(insn) * STATIC_CALL_SITE_TAIL))
534 static int create_mcount_loc_sections(struct objtool_file *file)
538 struct instruction *insn;
541 sec = find_section_by_name(file->elf, "__mcount_loc");
543 INIT_LIST_HEAD(&file->mcount_loc_list);
544 WARN("file already has __mcount_loc section, skipping");
548 if (list_empty(&file->mcount_loc_list))
552 list_for_each_entry(insn, &file->mcount_loc_list, mcount_loc_node)
555 sec = elf_create_section(file->elf, "__mcount_loc", 0, sizeof(unsigned long), idx);
560 list_for_each_entry(insn, &file->mcount_loc_list, mcount_loc_node) {
562 loc = (unsigned long *)sec->data->d_buf + idx;
563 memset(loc, 0, sizeof(unsigned long));
565 if (elf_add_reloc_to_insn(file->elf, sec,
566 idx * sizeof(unsigned long),
568 insn->sec, insn->offset))
578 * Warnings shouldn't be reported for ignored functions.
580 static void add_ignores(struct objtool_file *file)
582 struct instruction *insn;
587 sec = find_section_by_name(file->elf, ".rela.discard.func_stack_frame_non_standard");
591 list_for_each_entry(reloc, &sec->reloc_list, list) {
592 switch (reloc->sym->type) {
598 func = find_func_by_offset(reloc->sym->sec, reloc->addend);
604 WARN("unexpected relocation symbol type in %s: %d", sec->name, reloc->sym->type);
608 func_for_each_insn(file, func, insn)
614 * This is a whitelist of functions that is allowed to be called with AC set.
615 * The list is meant to be minimal and only contains compiler instrumentation
616 * ABI and a few functions used to implement *_{to,from}_user() functions.
618 * These functions must not directly change AC, but may PUSHF/POPF.
620 static const char *uaccess_safe_builtin[] = {
624 /* KASAN out-of-line */
625 "__asan_loadN_noabort",
626 "__asan_load1_noabort",
627 "__asan_load2_noabort",
628 "__asan_load4_noabort",
629 "__asan_load8_noabort",
630 "__asan_load16_noabort",
631 "__asan_storeN_noabort",
632 "__asan_store1_noabort",
633 "__asan_store2_noabort",
634 "__asan_store4_noabort",
635 "__asan_store8_noabort",
636 "__asan_store16_noabort",
637 "__kasan_check_read",
638 "__kasan_check_write",
640 "__asan_report_load_n_noabort",
641 "__asan_report_load1_noabort",
642 "__asan_report_load2_noabort",
643 "__asan_report_load4_noabort",
644 "__asan_report_load8_noabort",
645 "__asan_report_load16_noabort",
646 "__asan_report_store_n_noabort",
647 "__asan_report_store1_noabort",
648 "__asan_report_store2_noabort",
649 "__asan_report_store4_noabort",
650 "__asan_report_store8_noabort",
651 "__asan_report_store16_noabort",
653 "__kcsan_check_access",
654 "kcsan_found_watchpoint",
655 "kcsan_setup_watchpoint",
656 "kcsan_check_scoped_accesses",
657 "kcsan_disable_current",
658 "kcsan_enable_current_nowarn",
663 "__tsan_write_range",
674 "__tsan_read_write1",
675 "__tsan_read_write2",
676 "__tsan_read_write4",
677 "__tsan_read_write8",
678 "__tsan_read_write16",
679 "__tsan_atomic8_load",
680 "__tsan_atomic16_load",
681 "__tsan_atomic32_load",
682 "__tsan_atomic64_load",
683 "__tsan_atomic8_store",
684 "__tsan_atomic16_store",
685 "__tsan_atomic32_store",
686 "__tsan_atomic64_store",
687 "__tsan_atomic8_exchange",
688 "__tsan_atomic16_exchange",
689 "__tsan_atomic32_exchange",
690 "__tsan_atomic64_exchange",
691 "__tsan_atomic8_fetch_add",
692 "__tsan_atomic16_fetch_add",
693 "__tsan_atomic32_fetch_add",
694 "__tsan_atomic64_fetch_add",
695 "__tsan_atomic8_fetch_sub",
696 "__tsan_atomic16_fetch_sub",
697 "__tsan_atomic32_fetch_sub",
698 "__tsan_atomic64_fetch_sub",
699 "__tsan_atomic8_fetch_and",
700 "__tsan_atomic16_fetch_and",
701 "__tsan_atomic32_fetch_and",
702 "__tsan_atomic64_fetch_and",
703 "__tsan_atomic8_fetch_or",
704 "__tsan_atomic16_fetch_or",
705 "__tsan_atomic32_fetch_or",
706 "__tsan_atomic64_fetch_or",
707 "__tsan_atomic8_fetch_xor",
708 "__tsan_atomic16_fetch_xor",
709 "__tsan_atomic32_fetch_xor",
710 "__tsan_atomic64_fetch_xor",
711 "__tsan_atomic8_fetch_nand",
712 "__tsan_atomic16_fetch_nand",
713 "__tsan_atomic32_fetch_nand",
714 "__tsan_atomic64_fetch_nand",
715 "__tsan_atomic8_compare_exchange_strong",
716 "__tsan_atomic16_compare_exchange_strong",
717 "__tsan_atomic32_compare_exchange_strong",
718 "__tsan_atomic64_compare_exchange_strong",
719 "__tsan_atomic8_compare_exchange_weak",
720 "__tsan_atomic16_compare_exchange_weak",
721 "__tsan_atomic32_compare_exchange_weak",
722 "__tsan_atomic64_compare_exchange_weak",
723 "__tsan_atomic8_compare_exchange_val",
724 "__tsan_atomic16_compare_exchange_val",
725 "__tsan_atomic32_compare_exchange_val",
726 "__tsan_atomic64_compare_exchange_val",
727 "__tsan_atomic_thread_fence",
728 "__tsan_atomic_signal_fence",
732 "__sanitizer_cov_trace_pc",
733 "__sanitizer_cov_trace_const_cmp1",
734 "__sanitizer_cov_trace_const_cmp2",
735 "__sanitizer_cov_trace_const_cmp4",
736 "__sanitizer_cov_trace_const_cmp8",
737 "__sanitizer_cov_trace_cmp1",
738 "__sanitizer_cov_trace_cmp2",
739 "__sanitizer_cov_trace_cmp4",
740 "__sanitizer_cov_trace_cmp8",
741 "__sanitizer_cov_trace_switch",
743 "ubsan_type_mismatch_common",
744 "__ubsan_handle_type_mismatch",
745 "__ubsan_handle_type_mismatch_v1",
746 "__ubsan_handle_shift_out_of_bounds",
748 "csum_partial_copy_generic",
750 "copy_mc_fragile_handle_tail",
751 "copy_mc_enhanced_fast_string",
752 "ftrace_likely_update", /* CONFIG_TRACE_BRANCH_PROFILING */
756 static void add_uaccess_safe(struct objtool_file *file)
764 for (name = uaccess_safe_builtin; *name; name++) {
765 func = find_symbol_by_name(file->elf, *name);
769 func->uaccess_safe = true;
774 * FIXME: For now, just ignore any alternatives which add retpolines. This is
775 * a temporary hack, as it doesn't allow ORC to unwind from inside a retpoline.
776 * But it at least allows objtool to understand the control flow *around* the
779 static int add_ignore_alternatives(struct objtool_file *file)
783 struct instruction *insn;
785 sec = find_section_by_name(file->elf, ".rela.discard.ignore_alts");
789 list_for_each_entry(reloc, &sec->reloc_list, list) {
790 if (reloc->sym->type != STT_SECTION) {
791 WARN("unexpected relocation symbol type in %s", sec->name);
795 insn = find_insn(file, reloc->sym->sec, reloc->addend);
797 WARN("bad .discard.ignore_alts entry");
801 insn->ignore_alts = true;
807 __weak bool arch_is_retpoline(struct symbol *sym)
812 #define NEGATIVE_RELOC ((void *)-1L)
814 static struct reloc *insn_reloc(struct objtool_file *file, struct instruction *insn)
816 if (insn->reloc == NEGATIVE_RELOC)
820 insn->reloc = find_reloc_by_dest_range(file->elf, insn->sec,
821 insn->offset, insn->len);
823 insn->reloc = NEGATIVE_RELOC;
832 * Find the destination instructions for all jumps.
834 static int add_jump_destinations(struct objtool_file *file)
836 struct instruction *insn;
838 struct section *dest_sec;
839 unsigned long dest_off;
841 for_each_insn(file, insn) {
842 if (!is_static_jump(insn))
845 reloc = insn_reloc(file, insn);
847 dest_sec = insn->sec;
848 dest_off = arch_jump_destination(insn);
849 } else if (reloc->sym->type == STT_SECTION) {
850 dest_sec = reloc->sym->sec;
851 dest_off = arch_dest_reloc_offset(reloc->addend);
852 } else if (arch_is_retpoline(reloc->sym)) {
854 * Retpoline jumps are really dynamic jumps in
855 * disguise, so convert them accordingly.
857 if (insn->type == INSN_JUMP_UNCONDITIONAL)
858 insn->type = INSN_JUMP_DYNAMIC;
860 insn->type = INSN_JUMP_DYNAMIC_CONDITIONAL;
862 list_add_tail(&insn->call_node,
863 &file->retpoline_call_list);
865 insn->retpoline_safe = true;
867 } else if (insn->func) {
868 /* internal or external sibling call (with reloc) */
869 insn->call_dest = reloc->sym;
870 if (insn->call_dest->static_call_tramp) {
871 list_add_tail(&insn->call_node,
872 &file->static_call_list);
875 } else if (reloc->sym->sec->idx) {
876 dest_sec = reloc->sym->sec;
877 dest_off = reloc->sym->sym.st_value +
878 arch_dest_reloc_offset(reloc->addend);
880 /* non-func asm code jumping to another file */
884 insn->jump_dest = find_insn(file, dest_sec, dest_off);
885 if (!insn->jump_dest) {
888 * This is a special case where an alt instruction
889 * jumps past the end of the section. These are
890 * handled later in handle_group_alt().
892 if (!strcmp(insn->sec->name, ".altinstr_replacement"))
895 WARN_FUNC("can't find jump dest instruction at %s+0x%lx",
896 insn->sec, insn->offset, dest_sec->name,
902 * Cross-function jump.
904 if (insn->func && insn->jump_dest->func &&
905 insn->func != insn->jump_dest->func) {
908 * For GCC 8+, create parent/child links for any cold
909 * subfunctions. This is _mostly_ redundant with a
910 * similar initialization in read_symbols().
912 * If a function has aliases, we want the *first* such
913 * function in the symbol table to be the subfunction's
914 * parent. In that case we overwrite the
915 * initialization done in read_symbols().
917 * However this code can't completely replace the
918 * read_symbols() code because this doesn't detect the
919 * case where the parent function's only reference to a
920 * subfunction is through a jump table.
922 if (!strstr(insn->func->name, ".cold") &&
923 strstr(insn->jump_dest->func->name, ".cold")) {
924 insn->func->cfunc = insn->jump_dest->func;
925 insn->jump_dest->func->pfunc = insn->func;
927 } else if (insn->jump_dest->func->pfunc != insn->func->pfunc &&
928 insn->jump_dest->offset == insn->jump_dest->func->offset) {
930 /* internal sibling call (without reloc) */
931 insn->call_dest = insn->jump_dest->func;
932 if (insn->call_dest->static_call_tramp) {
933 list_add_tail(&insn->call_node,
934 &file->static_call_list);
943 static void remove_insn_ops(struct instruction *insn)
945 struct stack_op *op, *tmp;
947 list_for_each_entry_safe(op, tmp, &insn->stack_ops, list) {
953 static struct symbol *find_call_destination(struct section *sec, unsigned long offset)
955 struct symbol *call_dest;
957 call_dest = find_func_by_offset(sec, offset);
959 call_dest = find_symbol_by_offset(sec, offset);
965 * Find the destination instructions for all calls.
967 static int add_call_destinations(struct objtool_file *file)
969 struct instruction *insn;
970 unsigned long dest_off;
973 for_each_insn(file, insn) {
974 if (insn->type != INSN_CALL)
977 reloc = insn_reloc(file, insn);
979 dest_off = arch_jump_destination(insn);
980 insn->call_dest = find_call_destination(insn->sec, dest_off);
985 if (!insn->call_dest) {
986 WARN_FUNC("unannotated intra-function call", insn->sec, insn->offset);
990 if (insn->func && insn->call_dest->type != STT_FUNC) {
991 WARN_FUNC("unsupported call to non-function",
992 insn->sec, insn->offset);
996 } else if (reloc->sym->type == STT_SECTION) {
997 dest_off = arch_dest_reloc_offset(reloc->addend);
998 insn->call_dest = find_call_destination(reloc->sym->sec,
1000 if (!insn->call_dest) {
1001 WARN_FUNC("can't find call dest symbol at %s+0x%lx",
1002 insn->sec, insn->offset,
1003 reloc->sym->sec->name,
1008 } else if (arch_is_retpoline(reloc->sym)) {
1010 * Retpoline calls are really dynamic calls in
1011 * disguise, so convert them accordingly.
1013 insn->type = INSN_CALL_DYNAMIC;
1014 insn->retpoline_safe = true;
1016 list_add_tail(&insn->call_node,
1017 &file->retpoline_call_list);
1019 remove_insn_ops(insn);
1023 insn->call_dest = reloc->sym;
1025 if (insn->call_dest && insn->call_dest->static_call_tramp) {
1026 list_add_tail(&insn->call_node,
1027 &file->static_call_list);
1031 * Many compilers cannot disable KCOV with a function attribute
1032 * so they need a little help, NOP out any KCOV calls from noinstr
1035 if (insn->sec->noinstr &&
1036 !strncmp(insn->call_dest->name, "__sanitizer_cov_", 16)) {
1038 reloc->type = R_NONE;
1039 elf_write_reloc(file->elf, reloc);
1042 elf_write_insn(file->elf, insn->sec,
1043 insn->offset, insn->len,
1044 arch_nop_insn(insn->len));
1045 insn->type = INSN_NOP;
1048 if (mcount && !strcmp(insn->call_dest->name, "__fentry__")) {
1050 reloc->type = R_NONE;
1051 elf_write_reloc(file->elf, reloc);
1054 elf_write_insn(file->elf, insn->sec,
1055 insn->offset, insn->len,
1056 arch_nop_insn(insn->len));
1058 insn->type = INSN_NOP;
1060 list_add_tail(&insn->mcount_loc_node,
1061 &file->mcount_loc_list);
1065 * Whatever stack impact regular CALLs have, should be undone
1066 * by the RETURN of the called function.
1068 * Annotated intra-function calls retain the stack_ops but
1069 * are converted to JUMP, see read_intra_function_calls().
1071 remove_insn_ops(insn);
1078 * The .alternatives section requires some extra special care over and above
1079 * other special sections because alternatives are patched in place.
1081 static int handle_group_alt(struct objtool_file *file,
1082 struct special_alt *special_alt,
1083 struct instruction *orig_insn,
1084 struct instruction **new_insn)
1086 struct instruction *last_orig_insn, *last_new_insn = NULL, *insn, *nop = NULL;
1087 struct alt_group *orig_alt_group, *new_alt_group;
1088 unsigned long dest_off;
1091 orig_alt_group = malloc(sizeof(*orig_alt_group));
1092 if (!orig_alt_group) {
1093 WARN("malloc failed");
1096 orig_alt_group->cfi = calloc(special_alt->orig_len,
1097 sizeof(struct cfi_state *));
1098 if (!orig_alt_group->cfi) {
1099 WARN("calloc failed");
1103 last_orig_insn = NULL;
1105 sec_for_each_insn_from(file, insn) {
1106 if (insn->offset >= special_alt->orig_off + special_alt->orig_len)
1109 insn->alt_group = orig_alt_group;
1110 last_orig_insn = insn;
1112 orig_alt_group->orig_group = NULL;
1113 orig_alt_group->first_insn = orig_insn;
1114 orig_alt_group->last_insn = last_orig_insn;
1117 new_alt_group = malloc(sizeof(*new_alt_group));
1118 if (!new_alt_group) {
1119 WARN("malloc failed");
1123 if (special_alt->new_len < special_alt->orig_len) {
1125 * Insert a fake nop at the end to make the replacement
1126 * alt_group the same size as the original. This is needed to
1127 * allow propagate_alt_cfi() to do its magic. When the last
1128 * instruction affects the stack, the instruction after it (the
1129 * nop) will propagate the new state to the shared CFI array.
1131 nop = malloc(sizeof(*nop));
1133 WARN("malloc failed");
1136 memset(nop, 0, sizeof(*nop));
1137 INIT_LIST_HEAD(&nop->alts);
1138 INIT_LIST_HEAD(&nop->stack_ops);
1139 init_cfi_state(&nop->cfi);
1141 nop->sec = special_alt->new_sec;
1142 nop->offset = special_alt->new_off + special_alt->new_len;
1143 nop->len = special_alt->orig_len - special_alt->new_len;
1144 nop->type = INSN_NOP;
1145 nop->func = orig_insn->func;
1146 nop->alt_group = new_alt_group;
1147 nop->ignore = orig_insn->ignore_alts;
1150 if (!special_alt->new_len) {
1156 sec_for_each_insn_from(file, insn) {
1157 struct reloc *alt_reloc;
1159 if (insn->offset >= special_alt->new_off + special_alt->new_len)
1162 last_new_insn = insn;
1164 insn->ignore = orig_insn->ignore_alts;
1165 insn->func = orig_insn->func;
1166 insn->alt_group = new_alt_group;
1169 * Since alternative replacement code is copy/pasted by the
1170 * kernel after applying relocations, generally such code can't
1171 * have relative-address relocation references to outside the
1172 * .altinstr_replacement section, unless the arch's
1173 * alternatives code can adjust the relative offsets
1176 alt_reloc = insn_reloc(file, insn);
1178 !arch_support_alt_relocation(special_alt, insn, alt_reloc)) {
1180 WARN_FUNC("unsupported relocation in alternatives section",
1181 insn->sec, insn->offset);
1185 if (!is_static_jump(insn))
1188 if (!insn->immediate)
1191 dest_off = arch_jump_destination(insn);
1192 if (dest_off == special_alt->new_off + special_alt->new_len)
1193 insn->jump_dest = next_insn_same_sec(file, last_orig_insn);
1195 if (!insn->jump_dest) {
1196 WARN_FUNC("can't find alternative jump destination",
1197 insn->sec, insn->offset);
1202 if (!last_new_insn) {
1203 WARN_FUNC("can't find last new alternative instruction",
1204 special_alt->new_sec, special_alt->new_off);
1209 list_add(&nop->list, &last_new_insn->list);
1211 new_alt_group->orig_group = orig_alt_group;
1212 new_alt_group->first_insn = *new_insn;
1213 new_alt_group->last_insn = nop ? : last_new_insn;
1214 new_alt_group->cfi = orig_alt_group->cfi;
1219 * A jump table entry can either convert a nop to a jump or a jump to a nop.
1220 * If the original instruction is a jump, make the alt entry an effective nop
1221 * by just skipping the original instruction.
1223 static int handle_jump_alt(struct objtool_file *file,
1224 struct special_alt *special_alt,
1225 struct instruction *orig_insn,
1226 struct instruction **new_insn)
1228 if (orig_insn->type != INSN_JUMP_UNCONDITIONAL &&
1229 orig_insn->type != INSN_NOP) {
1231 WARN_FUNC("unsupported instruction at jump label",
1232 orig_insn->sec, orig_insn->offset);
1236 if (special_alt->key_addend & 2) {
1237 struct reloc *reloc = insn_reloc(file, orig_insn);
1240 reloc->type = R_NONE;
1241 elf_write_reloc(file->elf, reloc);
1243 elf_write_insn(file->elf, orig_insn->sec,
1244 orig_insn->offset, orig_insn->len,
1245 arch_nop_insn(orig_insn->len));
1246 orig_insn->type = INSN_NOP;
1249 if (orig_insn->type == INSN_NOP) {
1250 if (orig_insn->len == 2)
1251 file->jl_nop_short++;
1253 file->jl_nop_long++;
1258 if (orig_insn->len == 2)
1263 *new_insn = list_next_entry(orig_insn, list);
1268 * Read all the special sections which have alternate instructions which can be
1269 * patched in or redirected to at runtime. Each instruction having alternate
1270 * instruction(s) has them added to its insn->alts list, which will be
1271 * traversed in validate_branch().
1273 static int add_special_section_alts(struct objtool_file *file)
1275 struct list_head special_alts;
1276 struct instruction *orig_insn, *new_insn;
1277 struct special_alt *special_alt, *tmp;
1278 struct alternative *alt;
1281 ret = special_get_alts(file->elf, &special_alts);
1285 list_for_each_entry_safe(special_alt, tmp, &special_alts, list) {
1287 orig_insn = find_insn(file, special_alt->orig_sec,
1288 special_alt->orig_off);
1290 WARN_FUNC("special: can't find orig instruction",
1291 special_alt->orig_sec, special_alt->orig_off);
1297 if (!special_alt->group || special_alt->new_len) {
1298 new_insn = find_insn(file, special_alt->new_sec,
1299 special_alt->new_off);
1301 WARN_FUNC("special: can't find new instruction",
1302 special_alt->new_sec,
1303 special_alt->new_off);
1309 if (special_alt->group) {
1310 if (!special_alt->orig_len) {
1311 WARN_FUNC("empty alternative entry",
1312 orig_insn->sec, orig_insn->offset);
1316 ret = handle_group_alt(file, special_alt, orig_insn,
1320 } else if (special_alt->jump_or_nop) {
1321 ret = handle_jump_alt(file, special_alt, orig_insn,
1327 alt = malloc(sizeof(*alt));
1329 WARN("malloc failed");
1334 alt->insn = new_insn;
1335 alt->skip_orig = special_alt->skip_orig;
1336 orig_insn->ignore_alts |= special_alt->skip_alt;
1337 list_add_tail(&alt->list, &orig_insn->alts);
1339 list_del(&special_alt->list);
1344 printf("jl\\\tNOP\tJMP\n");
1345 printf("short:\t%ld\t%ld\n", file->jl_nop_short, file->jl_short);
1346 printf("long:\t%ld\t%ld\n", file->jl_nop_long, file->jl_long);
1353 static int add_jump_table(struct objtool_file *file, struct instruction *insn,
1354 struct reloc *table)
1356 struct reloc *reloc = table;
1357 struct instruction *dest_insn;
1358 struct alternative *alt;
1359 struct symbol *pfunc = insn->func->pfunc;
1360 unsigned int prev_offset = 0;
1363 * Each @reloc is a switch table relocation which points to the target
1366 list_for_each_entry_from(reloc, &table->sec->reloc_list, list) {
1368 /* Check for the end of the table: */
1369 if (reloc != table && reloc->jump_table_start)
1372 /* Make sure the table entries are consecutive: */
1373 if (prev_offset && reloc->offset != prev_offset + 8)
1376 /* Detect function pointers from contiguous objects: */
1377 if (reloc->sym->sec == pfunc->sec &&
1378 reloc->addend == pfunc->offset)
1381 dest_insn = find_insn(file, reloc->sym->sec, reloc->addend);
1385 /* Make sure the destination is in the same function: */
1386 if (!dest_insn->func || dest_insn->func->pfunc != pfunc)
1389 alt = malloc(sizeof(*alt));
1391 WARN("malloc failed");
1395 alt->insn = dest_insn;
1396 list_add_tail(&alt->list, &insn->alts);
1397 prev_offset = reloc->offset;
1401 WARN_FUNC("can't find switch jump table",
1402 insn->sec, insn->offset);
1410 * find_jump_table() - Given a dynamic jump, find the switch jump table
1411 * associated with it.
1413 static struct reloc *find_jump_table(struct objtool_file *file,
1414 struct symbol *func,
1415 struct instruction *insn)
1417 struct reloc *table_reloc;
1418 struct instruction *dest_insn, *orig_insn = insn;
1421 * Backward search using the @first_jump_src links, these help avoid
1422 * much of the 'in between' code. Which avoids us getting confused by
1426 insn && insn->func && insn->func->pfunc == func;
1427 insn = insn->first_jump_src ?: prev_insn_same_sym(file, insn)) {
1429 if (insn != orig_insn && insn->type == INSN_JUMP_DYNAMIC)
1432 /* allow small jumps within the range */
1433 if (insn->type == INSN_JUMP_UNCONDITIONAL &&
1435 (insn->jump_dest->offset <= insn->offset ||
1436 insn->jump_dest->offset > orig_insn->offset))
1439 table_reloc = arch_find_switch_table(file, insn);
1442 dest_insn = find_insn(file, table_reloc->sym->sec, table_reloc->addend);
1443 if (!dest_insn || !dest_insn->func || dest_insn->func->pfunc != func)
1453 * First pass: Mark the head of each jump table so that in the next pass,
1454 * we know when a given jump table ends and the next one starts.
1456 static void mark_func_jump_tables(struct objtool_file *file,
1457 struct symbol *func)
1459 struct instruction *insn, *last = NULL;
1460 struct reloc *reloc;
1462 func_for_each_insn(file, func, insn) {
1467 * Store back-pointers for unconditional forward jumps such
1468 * that find_jump_table() can back-track using those and
1469 * avoid some potentially confusing code.
1471 if (insn->type == INSN_JUMP_UNCONDITIONAL && insn->jump_dest &&
1472 insn->offset > last->offset &&
1473 insn->jump_dest->offset > insn->offset &&
1474 !insn->jump_dest->first_jump_src) {
1476 insn->jump_dest->first_jump_src = insn;
1477 last = insn->jump_dest;
1480 if (insn->type != INSN_JUMP_DYNAMIC)
1483 reloc = find_jump_table(file, func, insn);
1485 reloc->jump_table_start = true;
1486 insn->jump_table = reloc;
1491 static int add_func_jump_tables(struct objtool_file *file,
1492 struct symbol *func)
1494 struct instruction *insn;
1497 func_for_each_insn(file, func, insn) {
1498 if (!insn->jump_table)
1501 ret = add_jump_table(file, insn, insn->jump_table);
1510 * For some switch statements, gcc generates a jump table in the .rodata
1511 * section which contains a list of addresses within the function to jump to.
1512 * This finds these jump tables and adds them to the insn->alts lists.
1514 static int add_jump_table_alts(struct objtool_file *file)
1516 struct section *sec;
1517 struct symbol *func;
1523 for_each_sec(file, sec) {
1524 list_for_each_entry(func, &sec->symbol_list, list) {
1525 if (func->type != STT_FUNC)
1528 mark_func_jump_tables(file, func);
1529 ret = add_func_jump_tables(file, func);
1538 static void set_func_state(struct cfi_state *state)
1540 state->cfa = initial_func_cfi.cfa;
1541 memcpy(&state->regs, &initial_func_cfi.regs,
1542 CFI_NUM_REGS * sizeof(struct cfi_reg));
1543 state->stack_size = initial_func_cfi.cfa.offset;
1546 static int read_unwind_hints(struct objtool_file *file)
1548 struct section *sec, *relocsec;
1549 struct reloc *reloc;
1550 struct unwind_hint *hint;
1551 struct instruction *insn;
1554 sec = find_section_by_name(file->elf, ".discard.unwind_hints");
1558 relocsec = sec->reloc;
1560 WARN("missing .rela.discard.unwind_hints section");
1564 if (sec->len % sizeof(struct unwind_hint)) {
1565 WARN("struct unwind_hint size mismatch");
1571 for (i = 0; i < sec->len / sizeof(struct unwind_hint); i++) {
1572 hint = (struct unwind_hint *)sec->data->d_buf + i;
1574 reloc = find_reloc_by_dest(file->elf, sec, i * sizeof(*hint));
1576 WARN("can't find reloc for unwind_hints[%d]", i);
1580 insn = find_insn(file, reloc->sym->sec, reloc->addend);
1582 WARN("can't find insn for unwind_hints[%d]", i);
1588 if (hint->type == UNWIND_HINT_TYPE_FUNC) {
1589 set_func_state(&insn->cfi);
1593 if (arch_decode_hint_reg(insn, hint->sp_reg)) {
1594 WARN_FUNC("unsupported unwind_hint sp base reg %d",
1595 insn->sec, insn->offset, hint->sp_reg);
1599 insn->cfi.cfa.offset = bswap_if_needed(hint->sp_offset);
1600 insn->cfi.type = hint->type;
1601 insn->cfi.end = hint->end;
1607 static int read_retpoline_hints(struct objtool_file *file)
1609 struct section *sec;
1610 struct instruction *insn;
1611 struct reloc *reloc;
1613 sec = find_section_by_name(file->elf, ".rela.discard.retpoline_safe");
1617 list_for_each_entry(reloc, &sec->reloc_list, list) {
1618 if (reloc->sym->type != STT_SECTION) {
1619 WARN("unexpected relocation symbol type in %s", sec->name);
1623 insn = find_insn(file, reloc->sym->sec, reloc->addend);
1625 WARN("bad .discard.retpoline_safe entry");
1629 if (insn->type != INSN_JUMP_DYNAMIC &&
1630 insn->type != INSN_CALL_DYNAMIC) {
1631 WARN_FUNC("retpoline_safe hint not an indirect jump/call",
1632 insn->sec, insn->offset);
1636 insn->retpoline_safe = true;
1642 static int read_instr_hints(struct objtool_file *file)
1644 struct section *sec;
1645 struct instruction *insn;
1646 struct reloc *reloc;
1648 sec = find_section_by_name(file->elf, ".rela.discard.instr_end");
1652 list_for_each_entry(reloc, &sec->reloc_list, list) {
1653 if (reloc->sym->type != STT_SECTION) {
1654 WARN("unexpected relocation symbol type in %s", sec->name);
1658 insn = find_insn(file, reloc->sym->sec, reloc->addend);
1660 WARN("bad .discard.instr_end entry");
1667 sec = find_section_by_name(file->elf, ".rela.discard.instr_begin");
1671 list_for_each_entry(reloc, &sec->reloc_list, list) {
1672 if (reloc->sym->type != STT_SECTION) {
1673 WARN("unexpected relocation symbol type in %s", sec->name);
1677 insn = find_insn(file, reloc->sym->sec, reloc->addend);
1679 WARN("bad .discard.instr_begin entry");
1689 static int read_intra_function_calls(struct objtool_file *file)
1691 struct instruction *insn;
1692 struct section *sec;
1693 struct reloc *reloc;
1695 sec = find_section_by_name(file->elf, ".rela.discard.intra_function_calls");
1699 list_for_each_entry(reloc, &sec->reloc_list, list) {
1700 unsigned long dest_off;
1702 if (reloc->sym->type != STT_SECTION) {
1703 WARN("unexpected relocation symbol type in %s",
1708 insn = find_insn(file, reloc->sym->sec, reloc->addend);
1710 WARN("bad .discard.intra_function_call entry");
1714 if (insn->type != INSN_CALL) {
1715 WARN_FUNC("intra_function_call not a direct call",
1716 insn->sec, insn->offset);
1721 * Treat intra-function CALLs as JMPs, but with a stack_op.
1722 * See add_call_destinations(), which strips stack_ops from
1725 insn->type = INSN_JUMP_UNCONDITIONAL;
1727 dest_off = insn->offset + insn->len + insn->immediate;
1728 insn->jump_dest = find_insn(file, insn->sec, dest_off);
1729 if (!insn->jump_dest) {
1730 WARN_FUNC("can't find call dest at %s+0x%lx",
1731 insn->sec, insn->offset,
1732 insn->sec->name, dest_off);
1740 static int read_static_call_tramps(struct objtool_file *file)
1742 struct section *sec;
1743 struct symbol *func;
1745 for_each_sec(file, sec) {
1746 list_for_each_entry(func, &sec->symbol_list, list) {
1747 if (func->bind == STB_GLOBAL &&
1748 !strncmp(func->name, STATIC_CALL_TRAMP_PREFIX_STR,
1749 strlen(STATIC_CALL_TRAMP_PREFIX_STR)))
1750 func->static_call_tramp = true;
1757 static void mark_rodata(struct objtool_file *file)
1759 struct section *sec;
1763 * Search for the following rodata sections, each of which can
1764 * potentially contain jump tables:
1766 * - .rodata: can contain GCC switch tables
1767 * - .rodata.<func>: same, if -fdata-sections is being used
1768 * - .rodata..c_jump_table: contains C annotated jump tables
1770 * .rodata.str1.* sections are ignored; they don't contain jump tables.
1772 for_each_sec(file, sec) {
1773 if (!strncmp(sec->name, ".rodata", 7) &&
1774 !strstr(sec->name, ".str1.")) {
1780 file->rodata = found;
1783 __weak int arch_rewrite_retpolines(struct objtool_file *file)
1788 static int decode_sections(struct objtool_file *file)
1794 ret = decode_instructions(file);
1798 ret = add_dead_ends(file);
1803 add_uaccess_safe(file);
1805 ret = add_ignore_alternatives(file);
1810 * Must be before add_{jump_call}_destination.
1812 ret = read_static_call_tramps(file);
1817 * Must be before add_special_section_alts() as that depends on
1818 * jump_dest being set.
1820 ret = add_jump_destinations(file);
1824 ret = add_special_section_alts(file);
1829 * Must be before add_call_destination(); it changes INSN_CALL to
1832 ret = read_intra_function_calls(file);
1836 ret = add_call_destinations(file);
1840 ret = add_jump_table_alts(file);
1844 ret = read_unwind_hints(file);
1848 ret = read_retpoline_hints(file);
1852 ret = read_instr_hints(file);
1857 * Must be after add_special_section_alts(), since this will emit
1858 * alternatives. Must be after add_{jump,call}_destination(), since
1859 * those create the call insn lists.
1861 ret = arch_rewrite_retpolines(file);
1868 static bool is_fentry_call(struct instruction *insn)
1870 if (insn->type == INSN_CALL && insn->call_dest &&
1871 insn->call_dest->type == STT_NOTYPE &&
1872 !strcmp(insn->call_dest->name, "__fentry__"))
1878 static bool has_modified_stack_frame(struct instruction *insn, struct insn_state *state)
1880 struct cfi_state *cfi = &state->cfi;
1883 if (cfi->cfa.base != initial_func_cfi.cfa.base || cfi->drap)
1886 if (cfi->cfa.offset != initial_func_cfi.cfa.offset)
1889 if (cfi->stack_size != initial_func_cfi.cfa.offset)
1892 for (i = 0; i < CFI_NUM_REGS; i++) {
1893 if (cfi->regs[i].base != initial_func_cfi.regs[i].base ||
1894 cfi->regs[i].offset != initial_func_cfi.regs[i].offset)
1901 static bool check_reg_frame_pos(const struct cfi_reg *reg,
1902 int expected_offset)
1904 return reg->base == CFI_CFA &&
1905 reg->offset == expected_offset;
1908 static bool has_valid_stack_frame(struct insn_state *state)
1910 struct cfi_state *cfi = &state->cfi;
1912 if (cfi->cfa.base == CFI_BP &&
1913 check_reg_frame_pos(&cfi->regs[CFI_BP], -cfi->cfa.offset) &&
1914 check_reg_frame_pos(&cfi->regs[CFI_RA], -cfi->cfa.offset + 8))
1917 if (cfi->drap && cfi->regs[CFI_BP].base == CFI_BP)
1923 static int update_cfi_state_regs(struct instruction *insn,
1924 struct cfi_state *cfi,
1925 struct stack_op *op)
1927 struct cfi_reg *cfa = &cfi->cfa;
1929 if (cfa->base != CFI_SP && cfa->base != CFI_SP_INDIRECT)
1933 if (op->dest.type == OP_DEST_PUSH || op->dest.type == OP_DEST_PUSHF)
1937 if (op->src.type == OP_SRC_POP || op->src.type == OP_SRC_POPF)
1940 /* add immediate to sp */
1941 if (op->dest.type == OP_DEST_REG && op->src.type == OP_SRC_ADD &&
1942 op->dest.reg == CFI_SP && op->src.reg == CFI_SP)
1943 cfa->offset -= op->src.offset;
1948 static void save_reg(struct cfi_state *cfi, unsigned char reg, int base, int offset)
1950 if (arch_callee_saved_reg(reg) &&
1951 cfi->regs[reg].base == CFI_UNDEFINED) {
1952 cfi->regs[reg].base = base;
1953 cfi->regs[reg].offset = offset;
1957 static void restore_reg(struct cfi_state *cfi, unsigned char reg)
1959 cfi->regs[reg].base = initial_func_cfi.regs[reg].base;
1960 cfi->regs[reg].offset = initial_func_cfi.regs[reg].offset;
1964 * A note about DRAP stack alignment:
1966 * GCC has the concept of a DRAP register, which is used to help keep track of
1967 * the stack pointer when aligning the stack. r10 or r13 is used as the DRAP
1968 * register. The typical DRAP pattern is:
1970 * 4c 8d 54 24 08 lea 0x8(%rsp),%r10
1971 * 48 83 e4 c0 and $0xffffffffffffffc0,%rsp
1972 * 41 ff 72 f8 pushq -0x8(%r10)
1974 * 48 89 e5 mov %rsp,%rbp
1981 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1984 * There are some variations in the epilogues, like:
1992 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1997 * 4c 8b 55 e8 mov -0x18(%rbp),%r10
1998 * 48 8b 5d e0 mov -0x20(%rbp),%rbx
1999 * 4c 8b 65 f0 mov -0x10(%rbp),%r12
2000 * 4c 8b 6d f8 mov -0x8(%rbp),%r13
2002 * 49 8d 62 f8 lea -0x8(%r10),%rsp
2005 * Sometimes r13 is used as the DRAP register, in which case it's saved and
2006 * restored beforehand:
2009 * 4c 8d 6c 24 10 lea 0x10(%rsp),%r13
2010 * 48 83 e4 f0 and $0xfffffffffffffff0,%rsp
2012 * 49 8d 65 f0 lea -0x10(%r13),%rsp
2016 static int update_cfi_state(struct instruction *insn,
2017 struct instruction *next_insn,
2018 struct cfi_state *cfi, struct stack_op *op)
2020 struct cfi_reg *cfa = &cfi->cfa;
2021 struct cfi_reg *regs = cfi->regs;
2023 /* stack operations don't make sense with an undefined CFA */
2024 if (cfa->base == CFI_UNDEFINED) {
2026 WARN_FUNC("undefined stack state", insn->sec, insn->offset);
2032 if (cfi->type == UNWIND_HINT_TYPE_REGS ||
2033 cfi->type == UNWIND_HINT_TYPE_REGS_PARTIAL)
2034 return update_cfi_state_regs(insn, cfi, op);
2036 switch (op->dest.type) {
2039 switch (op->src.type) {
2042 if (op->src.reg == CFI_SP && op->dest.reg == CFI_BP &&
2043 cfa->base == CFI_SP &&
2044 check_reg_frame_pos(®s[CFI_BP], -cfa->offset)) {
2046 /* mov %rsp, %rbp */
2047 cfa->base = op->dest.reg;
2048 cfi->bp_scratch = false;
2051 else if (op->src.reg == CFI_SP &&
2052 op->dest.reg == CFI_BP && cfi->drap) {
2054 /* drap: mov %rsp, %rbp */
2055 regs[CFI_BP].base = CFI_BP;
2056 regs[CFI_BP].offset = -cfi->stack_size;
2057 cfi->bp_scratch = false;
2060 else if (op->src.reg == CFI_SP && cfa->base == CFI_SP) {
2065 * This is needed for the rare case where GCC
2072 cfi->vals[op->dest.reg].base = CFI_CFA;
2073 cfi->vals[op->dest.reg].offset = -cfi->stack_size;
2076 else if (op->src.reg == CFI_BP && op->dest.reg == CFI_SP &&
2077 (cfa->base == CFI_BP || cfa->base == cfi->drap_reg)) {
2082 * Restore the original stack pointer (Clang).
2084 cfi->stack_size = -cfi->regs[CFI_BP].offset;
2087 else if (op->dest.reg == cfa->base) {
2089 /* mov %reg, %rsp */
2090 if (cfa->base == CFI_SP &&
2091 cfi->vals[op->src.reg].base == CFI_CFA) {
2094 * This is needed for the rare case
2095 * where GCC does something dumb like:
2097 * lea 0x8(%rsp), %rcx
2101 cfa->offset = -cfi->vals[op->src.reg].offset;
2102 cfi->stack_size = cfa->offset;
2104 } else if (cfa->base == CFI_SP &&
2105 cfi->vals[op->src.reg].base == CFI_SP_INDIRECT &&
2106 cfi->vals[op->src.reg].offset == cfa->offset) {
2111 * 1: mov %rsp, (%[tos])
2112 * 2: mov %[tos], %rsp
2118 * 1 - places a pointer to the previous
2119 * stack at the Top-of-Stack of the
2122 * 2 - switches to the new stack.
2124 * 3 - pops the Top-of-Stack to restore
2125 * the original stack.
2127 * Note: we set base to SP_INDIRECT
2128 * here and preserve offset. Therefore
2129 * when the unwinder reaches ToS it
2130 * will dereference SP and then add the
2131 * offset to find the next frame, IOW:
2134 cfa->base = CFI_SP_INDIRECT;
2137 cfa->base = CFI_UNDEFINED;
2142 else if (op->dest.reg == CFI_SP &&
2143 cfi->vals[op->src.reg].base == CFI_SP_INDIRECT &&
2144 cfi->vals[op->src.reg].offset == cfa->offset) {
2147 * The same stack swizzle case 2) as above. But
2148 * because we can't change cfa->base, case 3)
2149 * will become a regular POP. Pretend we're a
2150 * PUSH so things don't go unbalanced.
2152 cfi->stack_size += 8;
2159 if (op->dest.reg == CFI_SP && op->src.reg == CFI_SP) {
2162 cfi->stack_size -= op->src.offset;
2163 if (cfa->base == CFI_SP)
2164 cfa->offset -= op->src.offset;
2168 if (op->dest.reg == CFI_SP && op->src.reg == CFI_BP) {
2170 /* lea disp(%rbp), %rsp */
2171 cfi->stack_size = -(op->src.offset + regs[CFI_BP].offset);
2175 if (!cfi->drap && op->src.reg == CFI_SP &&
2176 op->dest.reg == CFI_BP && cfa->base == CFI_SP &&
2177 check_reg_frame_pos(®s[CFI_BP], -cfa->offset + op->src.offset)) {
2179 /* lea disp(%rsp), %rbp */
2181 cfa->offset -= op->src.offset;
2182 cfi->bp_scratch = false;
2186 if (op->src.reg == CFI_SP && cfa->base == CFI_SP) {
2188 /* drap: lea disp(%rsp), %drap */
2189 cfi->drap_reg = op->dest.reg;
2192 * lea disp(%rsp), %reg
2194 * This is needed for the rare case where GCC
2195 * does something dumb like:
2197 * lea 0x8(%rsp), %rcx
2201 cfi->vals[op->dest.reg].base = CFI_CFA;
2202 cfi->vals[op->dest.reg].offset = \
2203 -cfi->stack_size + op->src.offset;
2208 if (cfi->drap && op->dest.reg == CFI_SP &&
2209 op->src.reg == cfi->drap_reg) {
2211 /* drap: lea disp(%drap), %rsp */
2213 cfa->offset = cfi->stack_size = -op->src.offset;
2214 cfi->drap_reg = CFI_UNDEFINED;
2219 if (op->dest.reg == cfi->cfa.base && !(next_insn && next_insn->hint)) {
2220 WARN_FUNC("unsupported stack register modification",
2221 insn->sec, insn->offset);
2228 if (op->dest.reg != CFI_SP ||
2229 (cfi->drap_reg != CFI_UNDEFINED && cfa->base != CFI_SP) ||
2230 (cfi->drap_reg == CFI_UNDEFINED && cfa->base != CFI_BP)) {
2231 WARN_FUNC("unsupported stack pointer realignment",
2232 insn->sec, insn->offset);
2236 if (cfi->drap_reg != CFI_UNDEFINED) {
2237 /* drap: and imm, %rsp */
2238 cfa->base = cfi->drap_reg;
2239 cfa->offset = cfi->stack_size = 0;
2244 * Older versions of GCC (4.8ish) realign the stack
2245 * without DRAP, with a frame pointer.
2252 if (op->dest.reg == CFI_SP && cfa->base == CFI_SP_INDIRECT) {
2254 /* pop %rsp; # restore from a stack swizzle */
2259 if (!cfi->drap && op->dest.reg == cfa->base) {
2265 if (cfi->drap && cfa->base == CFI_BP_INDIRECT &&
2266 op->dest.reg == cfi->drap_reg &&
2267 cfi->drap_offset == -cfi->stack_size) {
2269 /* drap: pop %drap */
2270 cfa->base = cfi->drap_reg;
2272 cfi->drap_offset = -1;
2274 } else if (cfi->stack_size == -regs[op->dest.reg].offset) {
2277 restore_reg(cfi, op->dest.reg);
2280 cfi->stack_size -= 8;
2281 if (cfa->base == CFI_SP)
2286 case OP_SRC_REG_INDIRECT:
2287 if (!cfi->drap && op->dest.reg == cfa->base &&
2288 op->dest.reg == CFI_BP) {
2290 /* mov disp(%rsp), %rbp */
2292 cfa->offset = cfi->stack_size;
2295 if (cfi->drap && op->src.reg == CFI_BP &&
2296 op->src.offset == cfi->drap_offset) {
2298 /* drap: mov disp(%rbp), %drap */
2299 cfa->base = cfi->drap_reg;
2301 cfi->drap_offset = -1;
2304 if (cfi->drap && op->src.reg == CFI_BP &&
2305 op->src.offset == regs[op->dest.reg].offset) {
2307 /* drap: mov disp(%rbp), %reg */
2308 restore_reg(cfi, op->dest.reg);
2310 } else if (op->src.reg == cfa->base &&
2311 op->src.offset == regs[op->dest.reg].offset + cfa->offset) {
2313 /* mov disp(%rbp), %reg */
2314 /* mov disp(%rsp), %reg */
2315 restore_reg(cfi, op->dest.reg);
2317 } else if (op->src.reg == CFI_SP &&
2318 op->src.offset == regs[op->dest.reg].offset + cfi->stack_size) {
2320 /* mov disp(%rsp), %reg */
2321 restore_reg(cfi, op->dest.reg);
2327 WARN_FUNC("unknown stack-related instruction",
2328 insn->sec, insn->offset);
2336 cfi->stack_size += 8;
2337 if (cfa->base == CFI_SP)
2340 if (op->src.type != OP_SRC_REG)
2344 if (op->src.reg == cfa->base && op->src.reg == cfi->drap_reg) {
2346 /* drap: push %drap */
2347 cfa->base = CFI_BP_INDIRECT;
2348 cfa->offset = -cfi->stack_size;
2350 /* save drap so we know when to restore it */
2351 cfi->drap_offset = -cfi->stack_size;
2353 } else if (op->src.reg == CFI_BP && cfa->base == cfi->drap_reg) {
2355 /* drap: push %rbp */
2356 cfi->stack_size = 0;
2360 /* drap: push %reg */
2361 save_reg(cfi, op->src.reg, CFI_BP, -cfi->stack_size);
2367 save_reg(cfi, op->src.reg, CFI_CFA, -cfi->stack_size);
2370 /* detect when asm code uses rbp as a scratch register */
2371 if (!no_fp && insn->func && op->src.reg == CFI_BP &&
2372 cfa->base != CFI_BP)
2373 cfi->bp_scratch = true;
2376 case OP_DEST_REG_INDIRECT:
2379 if (op->src.reg == cfa->base && op->src.reg == cfi->drap_reg) {
2381 /* drap: mov %drap, disp(%rbp) */
2382 cfa->base = CFI_BP_INDIRECT;
2383 cfa->offset = op->dest.offset;
2385 /* save drap offset so we know when to restore it */
2386 cfi->drap_offset = op->dest.offset;
2389 /* drap: mov reg, disp(%rbp) */
2390 save_reg(cfi, op->src.reg, CFI_BP, op->dest.offset);
2393 } else if (op->dest.reg == cfa->base) {
2395 /* mov reg, disp(%rbp) */
2396 /* mov reg, disp(%rsp) */
2397 save_reg(cfi, op->src.reg, CFI_CFA,
2398 op->dest.offset - cfi->cfa.offset);
2400 } else if (op->dest.reg == CFI_SP) {
2402 /* mov reg, disp(%rsp) */
2403 save_reg(cfi, op->src.reg, CFI_CFA,
2404 op->dest.offset - cfi->stack_size);
2406 } else if (op->src.reg == CFI_SP && op->dest.offset == 0) {
2408 /* mov %rsp, (%reg); # setup a stack swizzle. */
2409 cfi->vals[op->dest.reg].base = CFI_SP_INDIRECT;
2410 cfi->vals[op->dest.reg].offset = cfa->offset;
2416 if (op->src.type != OP_SRC_POP && op->src.type != OP_SRC_POPF) {
2417 WARN_FUNC("unknown stack-related memory operation",
2418 insn->sec, insn->offset);
2423 cfi->stack_size -= 8;
2424 if (cfa->base == CFI_SP)
2430 WARN_FUNC("unknown stack-related instruction",
2431 insn->sec, insn->offset);
2439 * The stack layouts of alternatives instructions can sometimes diverge when
2440 * they have stack modifications. That's fine as long as the potential stack
2441 * layouts don't conflict at any given potential instruction boundary.
2443 * Flatten the CFIs of the different alternative code streams (both original
2444 * and replacement) into a single shared CFI array which can be used to detect
2445 * conflicts and nicely feed a linear array of ORC entries to the unwinder.
2447 static int propagate_alt_cfi(struct objtool_file *file, struct instruction *insn)
2449 struct cfi_state **alt_cfi;
2452 if (!insn->alt_group)
2455 alt_cfi = insn->alt_group->cfi;
2456 group_off = insn->offset - insn->alt_group->first_insn->offset;
2458 if (!alt_cfi[group_off]) {
2459 alt_cfi[group_off] = &insn->cfi;
2461 if (memcmp(alt_cfi[group_off], &insn->cfi, sizeof(struct cfi_state))) {
2462 WARN_FUNC("stack layout conflict in alternatives",
2463 insn->sec, insn->offset);
2471 static int handle_insn_ops(struct instruction *insn,
2472 struct instruction *next_insn,
2473 struct insn_state *state)
2475 struct stack_op *op;
2477 list_for_each_entry(op, &insn->stack_ops, list) {
2479 if (update_cfi_state(insn, next_insn, &state->cfi, op))
2482 if (!insn->alt_group)
2485 if (op->dest.type == OP_DEST_PUSHF) {
2486 if (!state->uaccess_stack) {
2487 state->uaccess_stack = 1;
2488 } else if (state->uaccess_stack >> 31) {
2489 WARN_FUNC("PUSHF stack exhausted",
2490 insn->sec, insn->offset);
2493 state->uaccess_stack <<= 1;
2494 state->uaccess_stack |= state->uaccess;
2497 if (op->src.type == OP_SRC_POPF) {
2498 if (state->uaccess_stack) {
2499 state->uaccess = state->uaccess_stack & 1;
2500 state->uaccess_stack >>= 1;
2501 if (state->uaccess_stack == 1)
2502 state->uaccess_stack = 0;
2510 static bool insn_cfi_match(struct instruction *insn, struct cfi_state *cfi2)
2512 struct cfi_state *cfi1 = &insn->cfi;
2515 if (memcmp(&cfi1->cfa, &cfi2->cfa, sizeof(cfi1->cfa))) {
2517 WARN_FUNC("stack state mismatch: cfa1=%d%+d cfa2=%d%+d",
2518 insn->sec, insn->offset,
2519 cfi1->cfa.base, cfi1->cfa.offset,
2520 cfi2->cfa.base, cfi2->cfa.offset);
2522 } else if (memcmp(&cfi1->regs, &cfi2->regs, sizeof(cfi1->regs))) {
2523 for (i = 0; i < CFI_NUM_REGS; i++) {
2524 if (!memcmp(&cfi1->regs[i], &cfi2->regs[i],
2525 sizeof(struct cfi_reg)))
2528 WARN_FUNC("stack state mismatch: reg1[%d]=%d%+d reg2[%d]=%d%+d",
2529 insn->sec, insn->offset,
2530 i, cfi1->regs[i].base, cfi1->regs[i].offset,
2531 i, cfi2->regs[i].base, cfi2->regs[i].offset);
2535 } else if (cfi1->type != cfi2->type) {
2537 WARN_FUNC("stack state mismatch: type1=%d type2=%d",
2538 insn->sec, insn->offset, cfi1->type, cfi2->type);
2540 } else if (cfi1->drap != cfi2->drap ||
2541 (cfi1->drap && cfi1->drap_reg != cfi2->drap_reg) ||
2542 (cfi1->drap && cfi1->drap_offset != cfi2->drap_offset)) {
2544 WARN_FUNC("stack state mismatch: drap1=%d(%d,%d) drap2=%d(%d,%d)",
2545 insn->sec, insn->offset,
2546 cfi1->drap, cfi1->drap_reg, cfi1->drap_offset,
2547 cfi2->drap, cfi2->drap_reg, cfi2->drap_offset);
2555 static inline bool func_uaccess_safe(struct symbol *func)
2558 return func->uaccess_safe;
2563 static inline const char *call_dest_name(struct instruction *insn)
2565 if (insn->call_dest)
2566 return insn->call_dest->name;
2571 static inline bool noinstr_call_dest(struct symbol *func)
2574 * We can't deal with indirect function calls at present;
2575 * assume they're instrumented.
2581 * If the symbol is from a noinstr section; we good.
2583 if (func->sec->noinstr)
2587 * The __ubsan_handle_*() calls are like WARN(), they only happen when
2588 * something 'BAD' happened. At the risk of taking the machine down,
2589 * let them proceed to get the message out.
2591 if (!strncmp(func->name, "__ubsan_handle_", 15))
2597 static int validate_call(struct instruction *insn, struct insn_state *state)
2599 if (state->noinstr && state->instr <= 0 &&
2600 !noinstr_call_dest(insn->call_dest)) {
2601 WARN_FUNC("call to %s() leaves .noinstr.text section",
2602 insn->sec, insn->offset, call_dest_name(insn));
2606 if (state->uaccess && !func_uaccess_safe(insn->call_dest)) {
2607 WARN_FUNC("call to %s() with UACCESS enabled",
2608 insn->sec, insn->offset, call_dest_name(insn));
2613 WARN_FUNC("call to %s() with DF set",
2614 insn->sec, insn->offset, call_dest_name(insn));
2621 static int validate_sibling_call(struct instruction *insn, struct insn_state *state)
2623 if (has_modified_stack_frame(insn, state)) {
2624 WARN_FUNC("sibling call from callable instruction with modified stack frame",
2625 insn->sec, insn->offset);
2629 return validate_call(insn, state);
2632 static int validate_return(struct symbol *func, struct instruction *insn, struct insn_state *state)
2634 if (state->noinstr && state->instr > 0) {
2635 WARN_FUNC("return with instrumentation enabled",
2636 insn->sec, insn->offset);
2640 if (state->uaccess && !func_uaccess_safe(func)) {
2641 WARN_FUNC("return with UACCESS enabled",
2642 insn->sec, insn->offset);
2646 if (!state->uaccess && func_uaccess_safe(func)) {
2647 WARN_FUNC("return with UACCESS disabled from a UACCESS-safe function",
2648 insn->sec, insn->offset);
2653 WARN_FUNC("return with DF set",
2654 insn->sec, insn->offset);
2658 if (func && has_modified_stack_frame(insn, state)) {
2659 WARN_FUNC("return with modified stack frame",
2660 insn->sec, insn->offset);
2664 if (state->cfi.bp_scratch) {
2665 WARN_FUNC("BP used as a scratch register",
2666 insn->sec, insn->offset);
2673 static struct instruction *next_insn_to_validate(struct objtool_file *file,
2674 struct instruction *insn)
2676 struct alt_group *alt_group = insn->alt_group;
2679 * Simulate the fact that alternatives are patched in-place. When the
2680 * end of a replacement alt_group is reached, redirect objtool flow to
2681 * the end of the original alt_group.
2683 if (alt_group && insn == alt_group->last_insn && alt_group->orig_group)
2684 return next_insn_same_sec(file, alt_group->orig_group->last_insn);
2686 return next_insn_same_sec(file, insn);
2690 * Follow the branch starting at the given instruction, and recursively follow
2691 * any other branches (jumps). Meanwhile, track the frame pointer state at
2692 * each instruction and validate all the rules described in
2693 * tools/objtool/Documentation/stack-validation.txt.
2695 static int validate_branch(struct objtool_file *file, struct symbol *func,
2696 struct instruction *insn, struct insn_state state)
2698 struct alternative *alt;
2699 struct instruction *next_insn;
2700 struct section *sec;
2707 next_insn = next_insn_to_validate(file, insn);
2709 if (file->c_file && func && insn->func && func != insn->func->pfunc) {
2710 WARN("%s() falls through to next function %s()",
2711 func->name, insn->func->name);
2715 if (func && insn->ignore) {
2716 WARN_FUNC("BUG: why am I validating an ignored function?",
2721 visited = 1 << state.uaccess;
2722 if (insn->visited) {
2723 if (!insn->hint && !insn_cfi_match(insn, &state.cfi))
2726 if (insn->visited & visited)
2731 state.instr += insn->instr;
2734 state.cfi = insn->cfi;
2736 insn->cfi = state.cfi;
2738 insn->visited |= visited;
2740 if (propagate_alt_cfi(file, insn))
2743 if (!insn->ignore_alts && !list_empty(&insn->alts)) {
2744 bool skip_orig = false;
2746 list_for_each_entry(alt, &insn->alts, list) {
2750 ret = validate_branch(file, func, alt->insn, state);
2753 BT_FUNC("(alt)", insn);
2762 if (handle_insn_ops(insn, next_insn, &state))
2765 switch (insn->type) {
2768 return validate_return(func, insn, &state);
2771 case INSN_CALL_DYNAMIC:
2772 ret = validate_call(insn, &state);
2776 if (!no_fp && func && !is_fentry_call(insn) &&
2777 !has_valid_stack_frame(&state)) {
2778 WARN_FUNC("call without frame pointer save/setup",
2783 if (dead_end_function(file, insn->call_dest))
2788 case INSN_JUMP_CONDITIONAL:
2789 case INSN_JUMP_UNCONDITIONAL:
2790 if (is_sibling_call(insn)) {
2791 ret = validate_sibling_call(insn, &state);
2795 } else if (insn->jump_dest) {
2796 ret = validate_branch(file, func,
2797 insn->jump_dest, state);
2800 BT_FUNC("(branch)", insn);
2805 if (insn->type == INSN_JUMP_UNCONDITIONAL)
2810 case INSN_JUMP_DYNAMIC:
2811 case INSN_JUMP_DYNAMIC_CONDITIONAL:
2812 if (is_sibling_call(insn)) {
2813 ret = validate_sibling_call(insn, &state);
2818 if (insn->type == INSN_JUMP_DYNAMIC)
2823 case INSN_CONTEXT_SWITCH:
2824 if (func && (!next_insn || !next_insn->hint)) {
2825 WARN_FUNC("unsupported instruction in callable function",
2832 if (state.uaccess) {
2833 WARN_FUNC("recursive UACCESS enable", sec, insn->offset);
2837 state.uaccess = true;
2841 if (!state.uaccess && func) {
2842 WARN_FUNC("redundant UACCESS disable", sec, insn->offset);
2846 if (func_uaccess_safe(func) && !state.uaccess_stack) {
2847 WARN_FUNC("UACCESS-safe disables UACCESS", sec, insn->offset);
2851 state.uaccess = false;
2856 WARN_FUNC("recursive STD", sec, insn->offset);
2864 if (!state.df && func) {
2865 WARN_FUNC("redundant CLD", sec, insn->offset);
2880 if (state.cfi.cfa.base == CFI_UNDEFINED)
2882 WARN("%s: unexpected end of section", sec->name);
2892 static int validate_unwind_hints(struct objtool_file *file, struct section *sec)
2894 struct instruction *insn;
2895 struct insn_state state;
2896 int ret, warnings = 0;
2901 init_insn_state(&state, sec);
2904 insn = find_insn(file, sec, 0);
2908 insn = list_first_entry(&file->insn_list, typeof(*insn), list);
2911 while (&insn->list != &file->insn_list && (!sec || insn->sec == sec)) {
2912 if (insn->hint && !insn->visited) {
2913 ret = validate_branch(file, insn->func, insn, state);
2914 if (ret && backtrace)
2915 BT_FUNC("<=== (hint)", insn);
2919 insn = list_next_entry(insn, list);
2925 static int validate_retpoline(struct objtool_file *file)
2927 struct instruction *insn;
2930 for_each_insn(file, insn) {
2931 if (insn->type != INSN_JUMP_DYNAMIC &&
2932 insn->type != INSN_CALL_DYNAMIC)
2935 if (insn->retpoline_safe)
2939 * .init.text code is ran before userspace and thus doesn't
2940 * strictly need retpolines, except for modules which are
2941 * loaded late, they very much do need retpoline in their
2944 if (!strcmp(insn->sec->name, ".init.text") && !module)
2947 WARN_FUNC("indirect %s found in RETPOLINE build",
2948 insn->sec, insn->offset,
2949 insn->type == INSN_JUMP_DYNAMIC ? "jump" : "call");
2957 static bool is_kasan_insn(struct instruction *insn)
2959 return (insn->type == INSN_CALL &&
2960 !strcmp(insn->call_dest->name, "__asan_handle_no_return"));
2963 static bool is_ubsan_insn(struct instruction *insn)
2965 return (insn->type == INSN_CALL &&
2966 !strcmp(insn->call_dest->name,
2967 "__ubsan_handle_builtin_unreachable"));
2970 static bool ignore_unreachable_insn(struct objtool_file *file, struct instruction *insn)
2973 struct instruction *prev_insn;
2975 if (insn->ignore || insn->type == INSN_NOP)
2979 * Ignore any unused exceptions. This can happen when a whitelisted
2980 * function has an exception table entry.
2982 * Also ignore alternative replacement instructions. This can happen
2983 * when a whitelisted function uses one of the ALTERNATIVE macros.
2985 if (!strcmp(insn->sec->name, ".fixup") ||
2986 !strcmp(insn->sec->name, ".altinstr_replacement") ||
2987 !strcmp(insn->sec->name, ".altinstr_aux"))
2994 * CONFIG_UBSAN_TRAP inserts a UD2 when it sees
2995 * __builtin_unreachable(). The BUG() macro has an unreachable() after
2996 * the UD2, which causes GCC's undefined trap logic to emit another UD2
2997 * (or occasionally a JMP to UD2).
2999 * It may also insert a UD2 after calling a __noreturn function.
3001 prev_insn = list_prev_entry(insn, list);
3002 if ((prev_insn->dead_end || dead_end_function(file, prev_insn->call_dest)) &&
3003 (insn->type == INSN_BUG ||
3004 (insn->type == INSN_JUMP_UNCONDITIONAL &&
3005 insn->jump_dest && insn->jump_dest->type == INSN_BUG)))
3009 * Check if this (or a subsequent) instruction is related to
3010 * CONFIG_UBSAN or CONFIG_KASAN.
3012 * End the search at 5 instructions to avoid going into the weeds.
3014 for (i = 0; i < 5; i++) {
3016 if (is_kasan_insn(insn) || is_ubsan_insn(insn))
3019 if (insn->type == INSN_JUMP_UNCONDITIONAL) {
3020 if (insn->jump_dest &&
3021 insn->jump_dest->func == insn->func) {
3022 insn = insn->jump_dest;
3029 if (insn->offset + insn->len >= insn->func->offset + insn->func->len)
3032 insn = list_next_entry(insn, list);
3038 static int validate_symbol(struct objtool_file *file, struct section *sec,
3039 struct symbol *sym, struct insn_state *state)
3041 struct instruction *insn;
3045 WARN("%s() is missing an ELF size annotation", sym->name);
3049 if (sym->pfunc != sym || sym->alias != sym)
3052 insn = find_insn(file, sec, sym->offset);
3053 if (!insn || insn->ignore || insn->visited)
3056 state->uaccess = sym->uaccess_safe;
3058 ret = validate_branch(file, insn->func, insn, *state);
3059 if (ret && backtrace)
3060 BT_FUNC("<=== (sym)", insn);
3064 static int validate_section(struct objtool_file *file, struct section *sec)
3066 struct insn_state state;
3067 struct symbol *func;
3070 list_for_each_entry(func, &sec->symbol_list, list) {
3071 if (func->type != STT_FUNC)
3074 init_insn_state(&state, sec);
3075 set_func_state(&state.cfi);
3077 warnings += validate_symbol(file, sec, func, &state);
3083 static int validate_vmlinux_functions(struct objtool_file *file)
3085 struct section *sec;
3088 sec = find_section_by_name(file->elf, ".noinstr.text");
3090 warnings += validate_section(file, sec);
3091 warnings += validate_unwind_hints(file, sec);
3094 sec = find_section_by_name(file->elf, ".entry.text");
3096 warnings += validate_section(file, sec);
3097 warnings += validate_unwind_hints(file, sec);
3103 static int validate_functions(struct objtool_file *file)
3105 struct section *sec;
3108 for_each_sec(file, sec) {
3109 if (!(sec->sh.sh_flags & SHF_EXECINSTR))
3112 warnings += validate_section(file, sec);
3118 static int validate_reachable_instructions(struct objtool_file *file)
3120 struct instruction *insn;
3122 if (file->ignore_unreachables)
3125 for_each_insn(file, insn) {
3126 if (insn->visited || ignore_unreachable_insn(file, insn))
3129 WARN_FUNC("unreachable instruction", insn->sec, insn->offset);
3136 int check(struct objtool_file *file)
3138 int ret, warnings = 0;
3140 arch_initial_func_cfi_state(&initial_func_cfi);
3142 ret = decode_sections(file);
3147 if (list_empty(&file->insn_list))
3150 if (vmlinux && !validate_dup) {
3151 ret = validate_vmlinux_functions(file);
3160 ret = validate_retpoline(file);
3166 ret = validate_functions(file);
3171 ret = validate_unwind_hints(file, NULL);
3177 ret = validate_reachable_instructions(file);
3183 ret = create_static_call_sections(file);
3189 ret = create_mcount_loc_sections(file);
3197 * For now, don't fail the kernel build on fatal warnings. These
3198 * errors are still fairly common due to the growing matrix of
3199 * supported toolchains and their recent pace of change.