1 // SPDX-License-Identifier: GPL-2.0-or-later
16 #include <linux/hashtable.h>
17 #include <linux/kernel.h>
19 #define FAKE_JUMP_OFFSET -1
21 #define C_JUMP_TABLE_SECTION ".rodata..c_jump_table"
24 struct list_head list;
25 struct instruction *insn;
30 struct cfi_state initial_func_cfi;
32 struct instruction *find_insn(struct objtool_file *file,
33 struct section *sec, unsigned long offset)
35 struct instruction *insn;
37 hash_for_each_possible(file->insn_hash, insn, hash, offset)
38 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 #define func_for_each_insn_all(file, func, insn) \
76 for (insn = find_insn(file, func->sec, func->offset); \
78 insn = next_insn_same_func(file, insn))
80 #define func_for_each_insn(file, func, insn) \
81 for (insn = find_insn(file, func->sec, func->offset); \
82 insn && &insn->list != &file->insn_list && \
83 insn->sec == func->sec && \
84 insn->offset < func->offset + func->len; \
85 insn = list_next_entry(insn, list))
87 #define func_for_each_insn_continue_reverse(file, func, insn) \
88 for (insn = list_prev_entry(insn, list); \
89 &insn->list != &file->insn_list && \
90 insn->sec == func->sec && insn->offset >= func->offset; \
91 insn = list_prev_entry(insn, list))
93 #define sec_for_each_insn_from(file, insn) \
94 for (; insn; insn = next_insn_same_sec(file, insn))
96 #define sec_for_each_insn_continue(file, insn) \
97 for (insn = next_insn_same_sec(file, insn); insn; \
98 insn = next_insn_same_sec(file, insn))
100 static bool is_sibling_call(struct instruction *insn)
102 /* An indirect jump is either a sibling call or a jump to a table. */
103 if (insn->type == INSN_JUMP_DYNAMIC)
104 return list_empty(&insn->alts);
106 if (insn->type != INSN_JUMP_CONDITIONAL &&
107 insn->type != INSN_JUMP_UNCONDITIONAL)
110 /* add_jump_destinations() sets insn->call_dest for sibling calls. */
111 return !!insn->call_dest;
115 * This checks to see if the given function is a "noreturn" function.
117 * For global functions which are outside the scope of this object file, we
118 * have to keep a manual list of them.
120 * For local functions, we have to detect them manually by simply looking for
121 * the lack of a return instruction.
123 static bool __dead_end_function(struct objtool_file *file, struct symbol *func,
127 struct instruction *insn;
131 * Unfortunately these have to be hard coded because the noreturn
132 * attribute isn't provided in ELF data.
134 static const char * const global_noreturns[] = {
139 "__module_put_and_exit",
145 "machine_real_restart",
146 "rewind_stack_do_exit",
147 "kunit_try_catch_throw",
153 if (func->bind == STB_WEAK)
156 if (func->bind == STB_GLOBAL)
157 for (i = 0; i < ARRAY_SIZE(global_noreturns); i++)
158 if (!strcmp(func->name, global_noreturns[i]))
164 insn = find_insn(file, func->sec, func->offset);
168 func_for_each_insn_all(file, func, insn) {
171 if (insn->type == INSN_RETURN)
179 * A function can have a sibling call instead of a return. In that
180 * case, the function's dead-end status depends on whether the target
181 * of the sibling call returns.
183 func_for_each_insn_all(file, func, insn) {
184 if (is_sibling_call(insn)) {
185 struct instruction *dest = insn->jump_dest;
188 /* sibling call to another file */
191 /* local sibling call */
192 if (recursion == 5) {
194 * Infinite recursion: two functions have
195 * sibling calls to each other. This is a very
196 * rare case. It means they aren't dead ends.
201 return __dead_end_function(file, dest->func, recursion+1);
208 static bool dead_end_function(struct objtool_file *file, struct symbol *func)
210 return __dead_end_function(file, func, 0);
213 static void clear_insn_state(struct insn_state *state)
217 memset(state, 0, sizeof(*state));
218 state->cfa.base = CFI_UNDEFINED;
219 for (i = 0; i < CFI_NUM_REGS; i++) {
220 state->regs[i].base = CFI_UNDEFINED;
221 state->vals[i].base = CFI_UNDEFINED;
223 state->drap_reg = CFI_UNDEFINED;
224 state->drap_offset = -1;
228 * Call the arch-specific instruction decoder for all the instructions and add
229 * them to the global instruction list.
231 static int decode_instructions(struct objtool_file *file)
235 unsigned long offset;
236 struct instruction *insn;
239 for_each_sec(file, sec) {
241 if (!(sec->sh.sh_flags & SHF_EXECINSTR))
244 if (strcmp(sec->name, ".altinstr_replacement") &&
245 strcmp(sec->name, ".altinstr_aux") &&
246 strncmp(sec->name, ".discard.", 9))
249 for (offset = 0; offset < sec->len; offset += insn->len) {
250 insn = malloc(sizeof(*insn));
252 WARN("malloc failed");
255 memset(insn, 0, sizeof(*insn));
256 INIT_LIST_HEAD(&insn->alts);
257 clear_insn_state(&insn->state);
260 insn->offset = offset;
262 ret = arch_decode_instruction(file->elf, sec, offset,
264 &insn->len, &insn->type,
270 hash_add(file->insn_hash, &insn->hash, insn->offset);
271 list_add_tail(&insn->list, &file->insn_list);
274 list_for_each_entry(func, &sec->symbol_list, list) {
275 if (func->type != STT_FUNC || func->alias != func)
278 if (!find_insn(file, sec, func->offset)) {
279 WARN("%s(): can't find starting instruction",
284 func_for_each_insn(file, func, insn)
297 * Mark "ud2" instructions and manually annotated dead ends.
299 static int add_dead_ends(struct objtool_file *file)
303 struct instruction *insn;
307 * By default, "ud2" is a dead end unless otherwise annotated, because
308 * GCC 7 inserts it for certain divide-by-zero cases.
310 for_each_insn(file, insn)
311 if (insn->type == INSN_BUG)
312 insn->dead_end = true;
315 * Check for manually annotated dead ends.
317 sec = find_section_by_name(file->elf, ".rela.discard.unreachable");
321 list_for_each_entry(rela, &sec->rela_list, list) {
322 if (rela->sym->type != STT_SECTION) {
323 WARN("unexpected relocation symbol type in %s", sec->name);
326 insn = find_insn(file, rela->sym->sec, rela->addend);
328 insn = list_prev_entry(insn, list);
329 else if (rela->addend == rela->sym->sec->len) {
331 list_for_each_entry_reverse(insn, &file->insn_list, list) {
332 if (insn->sec == rela->sym->sec) {
339 WARN("can't find unreachable insn at %s+0x%x",
340 rela->sym->sec->name, rela->addend);
344 WARN("can't find unreachable insn at %s+0x%x",
345 rela->sym->sec->name, rela->addend);
349 insn->dead_end = true;
354 * These manually annotated reachable checks are needed for GCC 4.4,
355 * where the Linux unreachable() macro isn't supported. In that case
356 * GCC doesn't know the "ud2" is fatal, so it generates code as if it's
359 sec = find_section_by_name(file->elf, ".rela.discard.reachable");
363 list_for_each_entry(rela, &sec->rela_list, list) {
364 if (rela->sym->type != STT_SECTION) {
365 WARN("unexpected relocation symbol type in %s", sec->name);
368 insn = find_insn(file, rela->sym->sec, rela->addend);
370 insn = list_prev_entry(insn, list);
371 else if (rela->addend == rela->sym->sec->len) {
373 list_for_each_entry_reverse(insn, &file->insn_list, list) {
374 if (insn->sec == rela->sym->sec) {
381 WARN("can't find reachable insn at %s+0x%x",
382 rela->sym->sec->name, rela->addend);
386 WARN("can't find reachable insn at %s+0x%x",
387 rela->sym->sec->name, rela->addend);
391 insn->dead_end = false;
398 * Warnings shouldn't be reported for ignored functions.
400 static void add_ignores(struct objtool_file *file)
402 struct instruction *insn;
407 sec = find_section_by_name(file->elf, ".rela.discard.func_stack_frame_non_standard");
411 list_for_each_entry(rela, &sec->rela_list, list) {
412 switch (rela->sym->type) {
418 func = find_symbol_by_offset(rela->sym->sec, rela->addend);
419 if (!func || func->type != STT_FUNC)
424 WARN("unexpected relocation symbol type in %s: %d", sec->name, rela->sym->type);
428 func_for_each_insn_all(file, func, insn)
434 * This is a whitelist of functions that is allowed to be called with AC set.
435 * The list is meant to be minimal and only contains compiler instrumentation
436 * ABI and a few functions used to implement *_{to,from}_user() functions.
438 * These functions must not directly change AC, but may PUSHF/POPF.
440 static const char *uaccess_safe_builtin[] = {
443 "check_memory_region",
444 /* KASAN out-of-line */
445 "__asan_loadN_noabort",
446 "__asan_load1_noabort",
447 "__asan_load2_noabort",
448 "__asan_load4_noabort",
449 "__asan_load8_noabort",
450 "__asan_load16_noabort",
451 "__asan_storeN_noabort",
452 "__asan_store1_noabort",
453 "__asan_store2_noabort",
454 "__asan_store4_noabort",
455 "__asan_store8_noabort",
456 "__asan_store16_noabort",
458 "__asan_report_load_n_noabort",
459 "__asan_report_load1_noabort",
460 "__asan_report_load2_noabort",
461 "__asan_report_load4_noabort",
462 "__asan_report_load8_noabort",
463 "__asan_report_load16_noabort",
464 "__asan_report_store_n_noabort",
465 "__asan_report_store1_noabort",
466 "__asan_report_store2_noabort",
467 "__asan_report_store4_noabort",
468 "__asan_report_store8_noabort",
469 "__asan_report_store16_noabort",
472 "__sanitizer_cov_trace_pc",
473 "__sanitizer_cov_trace_const_cmp1",
474 "__sanitizer_cov_trace_const_cmp2",
475 "__sanitizer_cov_trace_const_cmp4",
476 "__sanitizer_cov_trace_const_cmp8",
477 "__sanitizer_cov_trace_cmp1",
478 "__sanitizer_cov_trace_cmp2",
479 "__sanitizer_cov_trace_cmp4",
480 "__sanitizer_cov_trace_cmp8",
482 "ubsan_type_mismatch_common",
483 "__ubsan_handle_type_mismatch",
484 "__ubsan_handle_type_mismatch_v1",
485 "__ubsan_handle_shift_out_of_bounds",
487 "csum_partial_copy_generic",
489 "mcsafe_handle_tail",
490 "ftrace_likely_update", /* CONFIG_TRACE_BRANCH_PROFILING */
494 static void add_uaccess_safe(struct objtool_file *file)
502 for (name = uaccess_safe_builtin; *name; name++) {
503 func = find_symbol_by_name(file->elf, *name);
507 func->uaccess_safe = true;
512 * FIXME: For now, just ignore any alternatives which add retpolines. This is
513 * a temporary hack, as it doesn't allow ORC to unwind from inside a retpoline.
514 * But it at least allows objtool to understand the control flow *around* the
517 static int add_ignore_alternatives(struct objtool_file *file)
521 struct instruction *insn;
523 sec = find_section_by_name(file->elf, ".rela.discard.ignore_alts");
527 list_for_each_entry(rela, &sec->rela_list, list) {
528 if (rela->sym->type != STT_SECTION) {
529 WARN("unexpected relocation symbol type in %s", sec->name);
533 insn = find_insn(file, rela->sym->sec, rela->addend);
535 WARN("bad .discard.ignore_alts entry");
539 insn->ignore_alts = true;
546 * Find the destination instructions for all jumps.
548 static int add_jump_destinations(struct objtool_file *file)
550 struct instruction *insn;
552 struct section *dest_sec;
553 unsigned long dest_off;
555 for_each_insn(file, insn) {
556 if (insn->type != INSN_JUMP_CONDITIONAL &&
557 insn->type != INSN_JUMP_UNCONDITIONAL)
560 if (insn->ignore || insn->offset == FAKE_JUMP_OFFSET)
563 rela = find_rela_by_dest_range(insn->sec, insn->offset,
566 dest_sec = insn->sec;
567 dest_off = insn->offset + insn->len + insn->immediate;
568 } else if (rela->sym->type == STT_SECTION) {
569 dest_sec = rela->sym->sec;
570 dest_off = rela->addend + 4;
571 } else if (rela->sym->sec->idx) {
572 dest_sec = rela->sym->sec;
573 dest_off = rela->sym->sym.st_value + rela->addend + 4;
574 } else if (strstr(rela->sym->name, "_indirect_thunk_")) {
576 * Retpoline jumps are really dynamic jumps in
577 * disguise, so convert them accordingly.
579 if (insn->type == INSN_JUMP_UNCONDITIONAL)
580 insn->type = INSN_JUMP_DYNAMIC;
582 insn->type = INSN_JUMP_DYNAMIC_CONDITIONAL;
584 insn->retpoline_safe = true;
587 /* external sibling call */
588 insn->call_dest = rela->sym;
592 insn->jump_dest = find_insn(file, dest_sec, dest_off);
593 if (!insn->jump_dest) {
596 * This is a special case where an alt instruction
597 * jumps past the end of the section. These are
598 * handled later in handle_group_alt().
600 if (!strcmp(insn->sec->name, ".altinstr_replacement"))
603 WARN_FUNC("can't find jump dest instruction at %s+0x%lx",
604 insn->sec, insn->offset, dest_sec->name,
610 * Cross-function jump.
612 if (insn->func && insn->jump_dest->func &&
613 insn->func != insn->jump_dest->func) {
616 * For GCC 8+, create parent/child links for any cold
617 * subfunctions. This is _mostly_ redundant with a
618 * similar initialization in read_symbols().
620 * If a function has aliases, we want the *first* such
621 * function in the symbol table to be the subfunction's
622 * parent. In that case we overwrite the
623 * initialization done in read_symbols().
625 * However this code can't completely replace the
626 * read_symbols() code because this doesn't detect the
627 * case where the parent function's only reference to a
628 * subfunction is through a jump table.
630 if (!strstr(insn->func->name, ".cold.") &&
631 strstr(insn->jump_dest->func->name, ".cold.")) {
632 insn->func->cfunc = insn->jump_dest->func;
633 insn->jump_dest->func->pfunc = insn->func;
635 } else if (insn->jump_dest->func->pfunc != insn->func->pfunc &&
636 insn->jump_dest->offset == insn->jump_dest->func->offset) {
638 /* internal sibling call */
639 insn->call_dest = insn->jump_dest->func;
648 * Find the destination instructions for all calls.
650 static int add_call_destinations(struct objtool_file *file)
652 struct instruction *insn;
653 unsigned long dest_off;
656 for_each_insn(file, insn) {
657 if (insn->type != INSN_CALL)
660 rela = find_rela_by_dest_range(insn->sec, insn->offset,
663 dest_off = insn->offset + insn->len + insn->immediate;
664 insn->call_dest = find_symbol_by_offset(insn->sec,
667 if (!insn->call_dest && !insn->ignore) {
668 WARN_FUNC("unsupported intra-function call",
669 insn->sec, insn->offset);
671 WARN("If this is a retpoline, please patch it in with alternatives and annotate it with ANNOTATE_NOSPEC_ALTERNATIVE.");
675 } else if (rela->sym->type == STT_SECTION) {
676 insn->call_dest = find_symbol_by_offset(rela->sym->sec,
678 if (!insn->call_dest ||
679 insn->call_dest->type != STT_FUNC) {
680 WARN_FUNC("can't find call dest symbol at %s+0x%x",
681 insn->sec, insn->offset,
682 rela->sym->sec->name,
687 insn->call_dest = rela->sym;
694 * The .alternatives section requires some extra special care, over and above
695 * what other special sections require:
697 * 1. Because alternatives are patched in-place, we need to insert a fake jump
698 * instruction at the end so that validate_branch() skips all the original
699 * replaced instructions when validating the new instruction path.
701 * 2. An added wrinkle is that the new instruction length might be zero. In
702 * that case the old instructions are replaced with noops. We simulate that
703 * by creating a fake jump as the only new instruction.
705 * 3. In some cases, the alternative section includes an instruction which
706 * conditionally jumps to the _end_ of the entry. We have to modify these
707 * jumps' destinations to point back to .text rather than the end of the
708 * entry in .altinstr_replacement.
710 static int handle_group_alt(struct objtool_file *file,
711 struct special_alt *special_alt,
712 struct instruction *orig_insn,
713 struct instruction **new_insn)
715 struct instruction *last_orig_insn, *last_new_insn, *insn, *fake_jump = NULL;
716 unsigned long dest_off;
718 last_orig_insn = NULL;
720 sec_for_each_insn_from(file, insn) {
721 if (insn->offset >= special_alt->orig_off + special_alt->orig_len)
724 insn->alt_group = true;
725 last_orig_insn = insn;
728 if (next_insn_same_sec(file, last_orig_insn)) {
729 fake_jump = malloc(sizeof(*fake_jump));
731 WARN("malloc failed");
734 memset(fake_jump, 0, sizeof(*fake_jump));
735 INIT_LIST_HEAD(&fake_jump->alts);
736 clear_insn_state(&fake_jump->state);
738 fake_jump->sec = special_alt->new_sec;
739 fake_jump->offset = FAKE_JUMP_OFFSET;
740 fake_jump->type = INSN_JUMP_UNCONDITIONAL;
741 fake_jump->jump_dest = list_next_entry(last_orig_insn, list);
742 fake_jump->func = orig_insn->func;
745 if (!special_alt->new_len) {
747 WARN("%s: empty alternative at end of section",
748 special_alt->orig_sec->name);
752 *new_insn = fake_jump;
756 last_new_insn = NULL;
758 sec_for_each_insn_from(file, insn) {
759 if (insn->offset >= special_alt->new_off + special_alt->new_len)
762 last_new_insn = insn;
764 insn->ignore = orig_insn->ignore_alts;
765 insn->func = orig_insn->func;
767 if (insn->type != INSN_JUMP_CONDITIONAL &&
768 insn->type != INSN_JUMP_UNCONDITIONAL)
771 if (!insn->immediate)
774 dest_off = insn->offset + insn->len + insn->immediate;
775 if (dest_off == special_alt->new_off + special_alt->new_len) {
777 WARN("%s: alternative jump to end of section",
778 special_alt->orig_sec->name);
781 insn->jump_dest = fake_jump;
784 if (!insn->jump_dest) {
785 WARN_FUNC("can't find alternative jump destination",
786 insn->sec, insn->offset);
791 if (!last_new_insn) {
792 WARN_FUNC("can't find last new alternative instruction",
793 special_alt->new_sec, special_alt->new_off);
798 list_add(&fake_jump->list, &last_new_insn->list);
804 * A jump table entry can either convert a nop to a jump or a jump to a nop.
805 * If the original instruction is a jump, make the alt entry an effective nop
806 * by just skipping the original instruction.
808 static int handle_jump_alt(struct objtool_file *file,
809 struct special_alt *special_alt,
810 struct instruction *orig_insn,
811 struct instruction **new_insn)
813 if (orig_insn->type == INSN_NOP)
816 if (orig_insn->type != INSN_JUMP_UNCONDITIONAL) {
817 WARN_FUNC("unsupported instruction at jump label",
818 orig_insn->sec, orig_insn->offset);
822 *new_insn = list_next_entry(orig_insn, list);
827 * Read all the special sections which have alternate instructions which can be
828 * patched in or redirected to at runtime. Each instruction having alternate
829 * instruction(s) has them added to its insn->alts list, which will be
830 * traversed in validate_branch().
832 static int add_special_section_alts(struct objtool_file *file)
834 struct list_head special_alts;
835 struct instruction *orig_insn, *new_insn;
836 struct special_alt *special_alt, *tmp;
837 struct alternative *alt;
840 ret = special_get_alts(file->elf, &special_alts);
844 list_for_each_entry_safe(special_alt, tmp, &special_alts, list) {
846 orig_insn = find_insn(file, special_alt->orig_sec,
847 special_alt->orig_off);
849 WARN_FUNC("special: can't find orig instruction",
850 special_alt->orig_sec, special_alt->orig_off);
856 if (!special_alt->group || special_alt->new_len) {
857 new_insn = find_insn(file, special_alt->new_sec,
858 special_alt->new_off);
860 WARN_FUNC("special: can't find new instruction",
861 special_alt->new_sec,
862 special_alt->new_off);
868 if (special_alt->group) {
869 ret = handle_group_alt(file, special_alt, orig_insn,
873 } else if (special_alt->jump_or_nop) {
874 ret = handle_jump_alt(file, special_alt, orig_insn,
880 alt = malloc(sizeof(*alt));
882 WARN("malloc failed");
887 alt->insn = new_insn;
888 alt->skip_orig = special_alt->skip_orig;
889 orig_insn->ignore_alts |= special_alt->skip_alt;
890 list_add_tail(&alt->list, &orig_insn->alts);
892 list_del(&special_alt->list);
900 static int add_jump_table(struct objtool_file *file, struct instruction *insn,
903 struct rela *rela = table;
904 struct instruction *dest_insn;
905 struct alternative *alt;
906 struct symbol *pfunc = insn->func->pfunc;
907 unsigned int prev_offset = 0;
910 * Each @rela is a switch table relocation which points to the target
913 list_for_each_entry_from(rela, &table->sec->rela_list, list) {
915 /* Check for the end of the table: */
916 if (rela != table && rela->jump_table_start)
919 /* Make sure the table entries are consecutive: */
920 if (prev_offset && rela->offset != prev_offset + 8)
923 /* Detect function pointers from contiguous objects: */
924 if (rela->sym->sec == pfunc->sec &&
925 rela->addend == pfunc->offset)
928 dest_insn = find_insn(file, rela->sym->sec, rela->addend);
932 /* Make sure the destination is in the same function: */
933 if (!dest_insn->func || dest_insn->func->pfunc != pfunc)
936 alt = malloc(sizeof(*alt));
938 WARN("malloc failed");
942 alt->insn = dest_insn;
943 list_add_tail(&alt->list, &insn->alts);
944 prev_offset = rela->offset;
948 WARN_FUNC("can't find switch jump table",
949 insn->sec, insn->offset);
957 * find_jump_table() - Given a dynamic jump, find the switch jump table in
958 * .rodata associated with it.
960 * There are 3 basic patterns:
962 * 1. jmpq *[rodata addr](,%reg,8)
964 * This is the most common case by far. It jumps to an address in a simple
965 * jump table which is stored in .rodata.
967 * 2. jmpq *[rodata addr](%rip)
969 * This is caused by a rare GCC quirk, currently only seen in three driver
970 * functions in the kernel, only with certain obscure non-distro configs.
972 * As part of an optimization, GCC makes a copy of an existing switch jump
973 * table, modifies it, and then hard-codes the jump (albeit with an indirect
974 * jump) to use a single entry in the table. The rest of the jump table and
975 * some of its jump targets remain as dead code.
977 * In such a case we can just crudely ignore all unreachable instruction
978 * warnings for the entire object file. Ideally we would just ignore them
979 * for the function, but that would require redesigning the code quite a
980 * bit. And honestly that's just not worth doing: unreachable instruction
981 * warnings are of questionable value anyway, and this is such a rare issue.
983 * 3. mov [rodata addr],%reg1
984 * ... some instructions ...
985 * jmpq *(%reg1,%reg2,8)
987 * This is a fairly uncommon pattern which is new for GCC 6. As of this
988 * writing, there are 11 occurrences of it in the allmodconfig kernel.
990 * As of GCC 7 there are quite a few more of these and the 'in between' code
991 * is significant. Esp. with KASAN enabled some of the code between the mov
992 * and jmpq uses .rodata itself, which can confuse things.
994 * TODO: Once we have DWARF CFI and smarter instruction decoding logic,
995 * ensure the same register is used in the mov and jump instructions.
997 * NOTE: RETPOLINE made it harder still to decode dynamic jumps.
999 static struct rela *find_jump_table(struct objtool_file *file,
1000 struct symbol *func,
1001 struct instruction *insn)
1003 struct rela *text_rela, *table_rela;
1004 struct instruction *orig_insn = insn;
1005 struct section *table_sec;
1006 unsigned long table_offset;
1009 * Backward search using the @first_jump_src links, these help avoid
1010 * much of the 'in between' code. Which avoids us getting confused by
1014 &insn->list != &file->insn_list &&
1015 insn->sec == func->sec &&
1016 insn->offset >= func->offset;
1018 insn = insn->first_jump_src ?: list_prev_entry(insn, list)) {
1020 if (insn != orig_insn && insn->type == INSN_JUMP_DYNAMIC)
1023 /* allow small jumps within the range */
1024 if (insn->type == INSN_JUMP_UNCONDITIONAL &&
1026 (insn->jump_dest->offset <= insn->offset ||
1027 insn->jump_dest->offset > orig_insn->offset))
1030 /* look for a relocation which references .rodata */
1031 text_rela = find_rela_by_dest_range(insn->sec, insn->offset,
1033 if (!text_rela || text_rela->sym->type != STT_SECTION ||
1034 !text_rela->sym->sec->rodata)
1037 table_offset = text_rela->addend;
1038 table_sec = text_rela->sym->sec;
1040 if (text_rela->type == R_X86_64_PC32)
1044 * Make sure the .rodata address isn't associated with a
1045 * symbol. GCC jump tables are anonymous data.
1047 * Also support C jump tables which are in the same format as
1048 * switch jump tables. For objtool to recognize them, they
1049 * need to be placed in the C_JUMP_TABLE_SECTION section. They
1050 * have symbols associated with them.
1052 if (find_symbol_containing(table_sec, table_offset) &&
1053 strcmp(table_sec->name, C_JUMP_TABLE_SECTION))
1056 /* Each table entry has a rela associated with it. */
1057 table_rela = find_rela_by_dest(table_sec, table_offset);
1062 * Use of RIP-relative switch jumps is quite rare, and
1063 * indicates a rare GCC quirk/bug which can leave dead code
1066 if (text_rela->type == R_X86_64_PC32)
1067 file->ignore_unreachables = true;
1076 * First pass: Mark the head of each jump table so that in the next pass,
1077 * we know when a given jump table ends and the next one starts.
1079 static void mark_func_jump_tables(struct objtool_file *file,
1080 struct symbol *func)
1082 struct instruction *insn, *last = NULL;
1085 func_for_each_insn_all(file, func, insn) {
1090 * Store back-pointers for unconditional forward jumps such
1091 * that find_jump_table() can back-track using those and
1092 * avoid some potentially confusing code.
1094 if (insn->type == INSN_JUMP_UNCONDITIONAL && insn->jump_dest &&
1095 insn->offset > last->offset &&
1096 insn->jump_dest->offset > insn->offset &&
1097 !insn->jump_dest->first_jump_src) {
1099 insn->jump_dest->first_jump_src = insn;
1100 last = insn->jump_dest;
1103 if (insn->type != INSN_JUMP_DYNAMIC)
1106 rela = find_jump_table(file, func, insn);
1108 rela->jump_table_start = true;
1109 insn->jump_table = rela;
1114 static int add_func_jump_tables(struct objtool_file *file,
1115 struct symbol *func)
1117 struct instruction *insn;
1120 func_for_each_insn_all(file, func, insn) {
1121 if (!insn->jump_table)
1124 ret = add_jump_table(file, insn, insn->jump_table);
1133 * For some switch statements, gcc generates a jump table in the .rodata
1134 * section which contains a list of addresses within the function to jump to.
1135 * This finds these jump tables and adds them to the insn->alts lists.
1137 static int add_jump_table_alts(struct objtool_file *file)
1139 struct section *sec;
1140 struct symbol *func;
1146 for_each_sec(file, sec) {
1147 list_for_each_entry(func, &sec->symbol_list, list) {
1148 if (func->type != STT_FUNC)
1151 mark_func_jump_tables(file, func);
1152 ret = add_func_jump_tables(file, func);
1161 static int read_unwind_hints(struct objtool_file *file)
1163 struct section *sec, *relasec;
1165 struct unwind_hint *hint;
1166 struct instruction *insn;
1167 struct cfi_reg *cfa;
1170 sec = find_section_by_name(file->elf, ".discard.unwind_hints");
1174 relasec = sec->rela;
1176 WARN("missing .rela.discard.unwind_hints section");
1180 if (sec->len % sizeof(struct unwind_hint)) {
1181 WARN("struct unwind_hint size mismatch");
1187 for (i = 0; i < sec->len / sizeof(struct unwind_hint); i++) {
1188 hint = (struct unwind_hint *)sec->data->d_buf + i;
1190 rela = find_rela_by_dest(sec, i * sizeof(*hint));
1192 WARN("can't find rela for unwind_hints[%d]", i);
1196 insn = find_insn(file, rela->sym->sec, rela->addend);
1198 WARN("can't find insn for unwind_hints[%d]", i);
1202 cfa = &insn->state.cfa;
1204 if (hint->type == UNWIND_HINT_TYPE_SAVE) {
1208 } else if (hint->type == UNWIND_HINT_TYPE_RESTORE) {
1209 insn->restore = true;
1216 switch (hint->sp_reg) {
1217 case ORC_REG_UNDEFINED:
1218 cfa->base = CFI_UNDEFINED;
1226 case ORC_REG_SP_INDIRECT:
1227 cfa->base = CFI_SP_INDIRECT;
1230 cfa->base = CFI_R10;
1233 cfa->base = CFI_R13;
1242 WARN_FUNC("unsupported unwind_hint sp base reg %d",
1243 insn->sec, insn->offset, hint->sp_reg);
1247 cfa->offset = hint->sp_offset;
1248 insn->state.type = hint->type;
1249 insn->state.end = hint->end;
1255 static int read_retpoline_hints(struct objtool_file *file)
1257 struct section *sec;
1258 struct instruction *insn;
1261 sec = find_section_by_name(file->elf, ".rela.discard.retpoline_safe");
1265 list_for_each_entry(rela, &sec->rela_list, list) {
1266 if (rela->sym->type != STT_SECTION) {
1267 WARN("unexpected relocation symbol type in %s", sec->name);
1271 insn = find_insn(file, rela->sym->sec, rela->addend);
1273 WARN("bad .discard.retpoline_safe entry");
1277 if (insn->type != INSN_JUMP_DYNAMIC &&
1278 insn->type != INSN_CALL_DYNAMIC) {
1279 WARN_FUNC("retpoline_safe hint not an indirect jump/call",
1280 insn->sec, insn->offset);
1284 insn->retpoline_safe = true;
1290 static void mark_rodata(struct objtool_file *file)
1292 struct section *sec;
1296 * Search for the following rodata sections, each of which can
1297 * potentially contain jump tables:
1299 * - .rodata: can contain GCC switch tables
1300 * - .rodata.<func>: same, if -fdata-sections is being used
1301 * - .rodata..c_jump_table: contains C annotated jump tables
1303 * .rodata.str1.* sections are ignored; they don't contain jump tables.
1305 for_each_sec(file, sec) {
1306 if ((!strncmp(sec->name, ".rodata", 7) && !strstr(sec->name, ".str1.")) ||
1307 !strcmp(sec->name, C_JUMP_TABLE_SECTION)) {
1313 file->rodata = found;
1316 static int decode_sections(struct objtool_file *file)
1322 ret = decode_instructions(file);
1326 ret = add_dead_ends(file);
1331 add_uaccess_safe(file);
1333 ret = add_ignore_alternatives(file);
1337 ret = add_jump_destinations(file);
1341 ret = add_special_section_alts(file);
1345 ret = add_call_destinations(file);
1349 ret = add_jump_table_alts(file);
1353 ret = read_unwind_hints(file);
1357 ret = read_retpoline_hints(file);
1364 static bool is_fentry_call(struct instruction *insn)
1366 if (insn->type == INSN_CALL &&
1367 insn->call_dest->type == STT_NOTYPE &&
1368 !strcmp(insn->call_dest->name, "__fentry__"))
1374 static bool has_modified_stack_frame(struct insn_state *state)
1378 if (state->cfa.base != initial_func_cfi.cfa.base ||
1379 state->cfa.offset != initial_func_cfi.cfa.offset ||
1380 state->stack_size != initial_func_cfi.cfa.offset ||
1384 for (i = 0; i < CFI_NUM_REGS; i++)
1385 if (state->regs[i].base != initial_func_cfi.regs[i].base ||
1386 state->regs[i].offset != initial_func_cfi.regs[i].offset)
1392 static bool has_valid_stack_frame(struct insn_state *state)
1394 if (state->cfa.base == CFI_BP && state->regs[CFI_BP].base == CFI_CFA &&
1395 state->regs[CFI_BP].offset == -16)
1398 if (state->drap && state->regs[CFI_BP].base == CFI_BP)
1404 static int update_insn_state_regs(struct instruction *insn, struct insn_state *state)
1406 struct cfi_reg *cfa = &state->cfa;
1407 struct stack_op *op = &insn->stack_op;
1409 if (cfa->base != CFI_SP)
1413 if (op->dest.type == OP_DEST_PUSH || op->dest.type == OP_DEST_PUSHF)
1417 if (op->src.type == OP_SRC_POP || op->src.type == OP_SRC_POPF)
1420 /* add immediate to sp */
1421 if (op->dest.type == OP_DEST_REG && op->src.type == OP_SRC_ADD &&
1422 op->dest.reg == CFI_SP && op->src.reg == CFI_SP)
1423 cfa->offset -= op->src.offset;
1428 static void save_reg(struct insn_state *state, unsigned char reg, int base,
1431 if (arch_callee_saved_reg(reg) &&
1432 state->regs[reg].base == CFI_UNDEFINED) {
1433 state->regs[reg].base = base;
1434 state->regs[reg].offset = offset;
1438 static void restore_reg(struct insn_state *state, unsigned char reg)
1440 state->regs[reg].base = CFI_UNDEFINED;
1441 state->regs[reg].offset = 0;
1445 * A note about DRAP stack alignment:
1447 * GCC has the concept of a DRAP register, which is used to help keep track of
1448 * the stack pointer when aligning the stack. r10 or r13 is used as the DRAP
1449 * register. The typical DRAP pattern is:
1451 * 4c 8d 54 24 08 lea 0x8(%rsp),%r10
1452 * 48 83 e4 c0 and $0xffffffffffffffc0,%rsp
1453 * 41 ff 72 f8 pushq -0x8(%r10)
1455 * 48 89 e5 mov %rsp,%rbp
1462 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1465 * There are some variations in the epilogues, like:
1473 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1478 * 4c 8b 55 e8 mov -0x18(%rbp),%r10
1479 * 48 8b 5d e0 mov -0x20(%rbp),%rbx
1480 * 4c 8b 65 f0 mov -0x10(%rbp),%r12
1481 * 4c 8b 6d f8 mov -0x8(%rbp),%r13
1483 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1486 * Sometimes r13 is used as the DRAP register, in which case it's saved and
1487 * restored beforehand:
1490 * 4c 8d 6c 24 10 lea 0x10(%rsp),%r13
1491 * 48 83 e4 f0 and $0xfffffffffffffff0,%rsp
1493 * 49 8d 65 f0 lea -0x10(%r13),%rsp
1497 static int update_insn_state(struct instruction *insn, struct insn_state *state)
1499 struct stack_op *op = &insn->stack_op;
1500 struct cfi_reg *cfa = &state->cfa;
1501 struct cfi_reg *regs = state->regs;
1503 /* stack operations don't make sense with an undefined CFA */
1504 if (cfa->base == CFI_UNDEFINED) {
1506 WARN_FUNC("undefined stack state", insn->sec, insn->offset);
1512 if (state->type == ORC_TYPE_REGS || state->type == ORC_TYPE_REGS_IRET)
1513 return update_insn_state_regs(insn, state);
1515 switch (op->dest.type) {
1518 switch (op->src.type) {
1521 if (op->src.reg == CFI_SP && op->dest.reg == CFI_BP &&
1522 cfa->base == CFI_SP &&
1523 regs[CFI_BP].base == CFI_CFA &&
1524 regs[CFI_BP].offset == -cfa->offset) {
1526 /* mov %rsp, %rbp */
1527 cfa->base = op->dest.reg;
1528 state->bp_scratch = false;
1531 else if (op->src.reg == CFI_SP &&
1532 op->dest.reg == CFI_BP && state->drap) {
1534 /* drap: mov %rsp, %rbp */
1535 regs[CFI_BP].base = CFI_BP;
1536 regs[CFI_BP].offset = -state->stack_size;
1537 state->bp_scratch = false;
1540 else if (op->src.reg == CFI_SP && cfa->base == CFI_SP) {
1545 * This is needed for the rare case where GCC
1552 state->vals[op->dest.reg].base = CFI_CFA;
1553 state->vals[op->dest.reg].offset = -state->stack_size;
1556 else if (op->src.reg == CFI_BP && op->dest.reg == CFI_SP &&
1557 cfa->base == CFI_BP) {
1562 * Restore the original stack pointer (Clang).
1564 state->stack_size = -state->regs[CFI_BP].offset;
1567 else if (op->dest.reg == cfa->base) {
1569 /* mov %reg, %rsp */
1570 if (cfa->base == CFI_SP &&
1571 state->vals[op->src.reg].base == CFI_CFA) {
1574 * This is needed for the rare case
1575 * where GCC does something dumb like:
1577 * lea 0x8(%rsp), %rcx
1581 cfa->offset = -state->vals[op->src.reg].offset;
1582 state->stack_size = cfa->offset;
1585 cfa->base = CFI_UNDEFINED;
1593 if (op->dest.reg == CFI_SP && op->src.reg == CFI_SP) {
1596 state->stack_size -= op->src.offset;
1597 if (cfa->base == CFI_SP)
1598 cfa->offset -= op->src.offset;
1602 if (op->dest.reg == CFI_SP && op->src.reg == CFI_BP) {
1604 /* lea disp(%rbp), %rsp */
1605 state->stack_size = -(op->src.offset + regs[CFI_BP].offset);
1609 if (op->src.reg == CFI_SP && cfa->base == CFI_SP) {
1611 /* drap: lea disp(%rsp), %drap */
1612 state->drap_reg = op->dest.reg;
1615 * lea disp(%rsp), %reg
1617 * This is needed for the rare case where GCC
1618 * does something dumb like:
1620 * lea 0x8(%rsp), %rcx
1624 state->vals[op->dest.reg].base = CFI_CFA;
1625 state->vals[op->dest.reg].offset = \
1626 -state->stack_size + op->src.offset;
1631 if (state->drap && op->dest.reg == CFI_SP &&
1632 op->src.reg == state->drap_reg) {
1634 /* drap: lea disp(%drap), %rsp */
1636 cfa->offset = state->stack_size = -op->src.offset;
1637 state->drap_reg = CFI_UNDEFINED;
1638 state->drap = false;
1642 if (op->dest.reg == state->cfa.base) {
1643 WARN_FUNC("unsupported stack register modification",
1644 insn->sec, insn->offset);
1651 if (op->dest.reg != CFI_SP ||
1652 (state->drap_reg != CFI_UNDEFINED && cfa->base != CFI_SP) ||
1653 (state->drap_reg == CFI_UNDEFINED && cfa->base != CFI_BP)) {
1654 WARN_FUNC("unsupported stack pointer realignment",
1655 insn->sec, insn->offset);
1659 if (state->drap_reg != CFI_UNDEFINED) {
1660 /* drap: and imm, %rsp */
1661 cfa->base = state->drap_reg;
1662 cfa->offset = state->stack_size = 0;
1667 * Older versions of GCC (4.8ish) realign the stack
1668 * without DRAP, with a frame pointer.
1675 if (!state->drap && op->dest.type == OP_DEST_REG &&
1676 op->dest.reg == cfa->base) {
1682 if (state->drap && cfa->base == CFI_BP_INDIRECT &&
1683 op->dest.type == OP_DEST_REG &&
1684 op->dest.reg == state->drap_reg &&
1685 state->drap_offset == -state->stack_size) {
1687 /* drap: pop %drap */
1688 cfa->base = state->drap_reg;
1690 state->drap_offset = -1;
1692 } else if (regs[op->dest.reg].offset == -state->stack_size) {
1695 restore_reg(state, op->dest.reg);
1698 state->stack_size -= 8;
1699 if (cfa->base == CFI_SP)
1704 case OP_SRC_REG_INDIRECT:
1705 if (state->drap && op->src.reg == CFI_BP &&
1706 op->src.offset == state->drap_offset) {
1708 /* drap: mov disp(%rbp), %drap */
1709 cfa->base = state->drap_reg;
1711 state->drap_offset = -1;
1714 if (state->drap && op->src.reg == CFI_BP &&
1715 op->src.offset == regs[op->dest.reg].offset) {
1717 /* drap: mov disp(%rbp), %reg */
1718 restore_reg(state, op->dest.reg);
1720 } else if (op->src.reg == cfa->base &&
1721 op->src.offset == regs[op->dest.reg].offset + cfa->offset) {
1723 /* mov disp(%rbp), %reg */
1724 /* mov disp(%rsp), %reg */
1725 restore_reg(state, op->dest.reg);
1731 WARN_FUNC("unknown stack-related instruction",
1732 insn->sec, insn->offset);
1740 state->stack_size += 8;
1741 if (cfa->base == CFI_SP)
1744 if (op->src.type != OP_SRC_REG)
1748 if (op->src.reg == cfa->base && op->src.reg == state->drap_reg) {
1750 /* drap: push %drap */
1751 cfa->base = CFI_BP_INDIRECT;
1752 cfa->offset = -state->stack_size;
1754 /* save drap so we know when to restore it */
1755 state->drap_offset = -state->stack_size;
1757 } else if (op->src.reg == CFI_BP && cfa->base == state->drap_reg) {
1759 /* drap: push %rbp */
1760 state->stack_size = 0;
1762 } else if (regs[op->src.reg].base == CFI_UNDEFINED) {
1764 /* drap: push %reg */
1765 save_reg(state, op->src.reg, CFI_BP, -state->stack_size);
1771 save_reg(state, op->src.reg, CFI_CFA, -state->stack_size);
1774 /* detect when asm code uses rbp as a scratch register */
1775 if (!no_fp && insn->func && op->src.reg == CFI_BP &&
1776 cfa->base != CFI_BP)
1777 state->bp_scratch = true;
1780 case OP_DEST_REG_INDIRECT:
1783 if (op->src.reg == cfa->base && op->src.reg == state->drap_reg) {
1785 /* drap: mov %drap, disp(%rbp) */
1786 cfa->base = CFI_BP_INDIRECT;
1787 cfa->offset = op->dest.offset;
1789 /* save drap offset so we know when to restore it */
1790 state->drap_offset = op->dest.offset;
1793 else if (regs[op->src.reg].base == CFI_UNDEFINED) {
1795 /* drap: mov reg, disp(%rbp) */
1796 save_reg(state, op->src.reg, CFI_BP, op->dest.offset);
1799 } else if (op->dest.reg == cfa->base) {
1801 /* mov reg, disp(%rbp) */
1802 /* mov reg, disp(%rsp) */
1803 save_reg(state, op->src.reg, CFI_CFA,
1804 op->dest.offset - state->cfa.offset);
1810 if ((!state->drap && cfa->base != CFI_BP) ||
1811 (state->drap && cfa->base != state->drap_reg)) {
1812 WARN_FUNC("leave instruction with modified stack frame",
1813 insn->sec, insn->offset);
1817 /* leave (mov %rbp, %rsp; pop %rbp) */
1819 state->stack_size = -state->regs[CFI_BP].offset - 8;
1820 restore_reg(state, CFI_BP);
1830 if (op->src.type != OP_SRC_POP && op->src.type != OP_SRC_POPF) {
1831 WARN_FUNC("unknown stack-related memory operation",
1832 insn->sec, insn->offset);
1837 state->stack_size -= 8;
1838 if (cfa->base == CFI_SP)
1844 WARN_FUNC("unknown stack-related instruction",
1845 insn->sec, insn->offset);
1852 static bool insn_state_match(struct instruction *insn, struct insn_state *state)
1854 struct insn_state *state1 = &insn->state, *state2 = state;
1857 if (memcmp(&state1->cfa, &state2->cfa, sizeof(state1->cfa))) {
1858 WARN_FUNC("stack state mismatch: cfa1=%d%+d cfa2=%d%+d",
1859 insn->sec, insn->offset,
1860 state1->cfa.base, state1->cfa.offset,
1861 state2->cfa.base, state2->cfa.offset);
1863 } else if (memcmp(&state1->regs, &state2->regs, sizeof(state1->regs))) {
1864 for (i = 0; i < CFI_NUM_REGS; i++) {
1865 if (!memcmp(&state1->regs[i], &state2->regs[i],
1866 sizeof(struct cfi_reg)))
1869 WARN_FUNC("stack state mismatch: reg1[%d]=%d%+d reg2[%d]=%d%+d",
1870 insn->sec, insn->offset,
1871 i, state1->regs[i].base, state1->regs[i].offset,
1872 i, state2->regs[i].base, state2->regs[i].offset);
1876 } else if (state1->type != state2->type) {
1877 WARN_FUNC("stack state mismatch: type1=%d type2=%d",
1878 insn->sec, insn->offset, state1->type, state2->type);
1880 } else if (state1->drap != state2->drap ||
1881 (state1->drap && state1->drap_reg != state2->drap_reg) ||
1882 (state1->drap && state1->drap_offset != state2->drap_offset)) {
1883 WARN_FUNC("stack state mismatch: drap1=%d(%d,%d) drap2=%d(%d,%d)",
1884 insn->sec, insn->offset,
1885 state1->drap, state1->drap_reg, state1->drap_offset,
1886 state2->drap, state2->drap_reg, state2->drap_offset);
1894 static inline bool func_uaccess_safe(struct symbol *func)
1897 return func->uaccess_safe;
1902 static inline const char *call_dest_name(struct instruction *insn)
1904 if (insn->call_dest)
1905 return insn->call_dest->name;
1910 static int validate_call(struct instruction *insn, struct insn_state *state)
1912 if (state->uaccess && !func_uaccess_safe(insn->call_dest)) {
1913 WARN_FUNC("call to %s() with UACCESS enabled",
1914 insn->sec, insn->offset, call_dest_name(insn));
1919 WARN_FUNC("call to %s() with DF set",
1920 insn->sec, insn->offset, call_dest_name(insn));
1927 static int validate_sibling_call(struct instruction *insn, struct insn_state *state)
1929 if (has_modified_stack_frame(state)) {
1930 WARN_FUNC("sibling call from callable instruction with modified stack frame",
1931 insn->sec, insn->offset);
1935 return validate_call(insn, state);
1939 * Follow the branch starting at the given instruction, and recursively follow
1940 * any other branches (jumps). Meanwhile, track the frame pointer state at
1941 * each instruction and validate all the rules described in
1942 * tools/objtool/Documentation/stack-validation.txt.
1944 static int validate_branch(struct objtool_file *file, struct symbol *func,
1945 struct instruction *first, struct insn_state state)
1947 struct alternative *alt;
1948 struct instruction *insn, *next_insn;
1949 struct section *sec;
1956 if (insn->alt_group && list_empty(&insn->alts)) {
1957 WARN_FUNC("don't know how to handle branch to middle of alternative instruction group",
1963 next_insn = next_insn_same_sec(file, insn);
1965 if (file->c_file && func && insn->func && func != insn->func->pfunc) {
1966 WARN("%s() falls through to next function %s()",
1967 func->name, insn->func->name);
1971 if (func && insn->ignore) {
1972 WARN_FUNC("BUG: why am I validating an ignored function?",
1977 visited = 1 << state.uaccess;
1978 if (insn->visited) {
1979 if (!insn->hint && !insn_state_match(insn, &state))
1982 if (insn->visited & visited)
1987 if (insn->restore) {
1988 struct instruction *save_insn, *i;
1992 func_for_each_insn_continue_reverse(file, func, i) {
2000 WARN_FUNC("no corresponding CFI save for CFI restore",
2005 if (!save_insn->visited) {
2007 * Oops, no state to copy yet.
2008 * Hopefully we can reach this
2009 * instruction from another branch
2010 * after the save insn has been
2016 WARN_FUNC("objtool isn't smart enough to handle this CFI save/restore combo",
2021 insn->state = save_insn->state;
2024 state = insn->state;
2027 insn->state = state;
2029 insn->visited |= visited;
2031 if (!insn->ignore_alts) {
2032 bool skip_orig = false;
2034 list_for_each_entry(alt, &insn->alts, list) {
2038 ret = validate_branch(file, func, alt->insn, state);
2041 BT_FUNC("(alt)", insn);
2050 switch (insn->type) {
2053 if (state.uaccess && !func_uaccess_safe(func)) {
2054 WARN_FUNC("return with UACCESS enabled", sec, insn->offset);
2058 if (!state.uaccess && func_uaccess_safe(func)) {
2059 WARN_FUNC("return with UACCESS disabled from a UACCESS-safe function", sec, insn->offset);
2064 WARN_FUNC("return with DF set", sec, insn->offset);
2068 if (func && has_modified_stack_frame(&state)) {
2069 WARN_FUNC("return with modified stack frame",
2074 if (state.bp_scratch) {
2075 WARN("%s uses BP as a scratch register",
2083 case INSN_CALL_DYNAMIC:
2084 ret = validate_call(insn, &state);
2088 if (!no_fp && func && !is_fentry_call(insn) &&
2089 !has_valid_stack_frame(&state)) {
2090 WARN_FUNC("call without frame pointer save/setup",
2095 if (dead_end_function(file, insn->call_dest))
2100 case INSN_JUMP_CONDITIONAL:
2101 case INSN_JUMP_UNCONDITIONAL:
2102 if (func && is_sibling_call(insn)) {
2103 ret = validate_sibling_call(insn, &state);
2107 } else if (insn->jump_dest) {
2108 ret = validate_branch(file, func,
2109 insn->jump_dest, state);
2112 BT_FUNC("(branch)", insn);
2117 if (insn->type == INSN_JUMP_UNCONDITIONAL)
2122 case INSN_JUMP_DYNAMIC:
2123 case INSN_JUMP_DYNAMIC_CONDITIONAL:
2124 if (func && is_sibling_call(insn)) {
2125 ret = validate_sibling_call(insn, &state);
2130 if (insn->type == INSN_JUMP_DYNAMIC)
2135 case INSN_CONTEXT_SWITCH:
2136 if (func && (!next_insn || !next_insn->hint)) {
2137 WARN_FUNC("unsupported instruction in callable function",
2144 if (update_insn_state(insn, &state))
2147 if (insn->stack_op.dest.type == OP_DEST_PUSHF) {
2148 if (!state.uaccess_stack) {
2149 state.uaccess_stack = 1;
2150 } else if (state.uaccess_stack >> 31) {
2151 WARN_FUNC("PUSHF stack exhausted", sec, insn->offset);
2154 state.uaccess_stack <<= 1;
2155 state.uaccess_stack |= state.uaccess;
2158 if (insn->stack_op.src.type == OP_SRC_POPF) {
2159 if (state.uaccess_stack) {
2160 state.uaccess = state.uaccess_stack & 1;
2161 state.uaccess_stack >>= 1;
2162 if (state.uaccess_stack == 1)
2163 state.uaccess_stack = 0;
2170 if (state.uaccess) {
2171 WARN_FUNC("recursive UACCESS enable", sec, insn->offset);
2175 state.uaccess = true;
2179 if (!state.uaccess && func) {
2180 WARN_FUNC("redundant UACCESS disable", sec, insn->offset);
2184 if (func_uaccess_safe(func) && !state.uaccess_stack) {
2185 WARN_FUNC("UACCESS-safe disables UACCESS", sec, insn->offset);
2189 state.uaccess = false;
2194 WARN_FUNC("recursive STD", sec, insn->offset);
2200 if (!state.df && func)
2201 WARN_FUNC("redundant CLD", sec, insn->offset);
2214 if (state.cfa.base == CFI_UNDEFINED)
2216 WARN("%s: unexpected end of section", sec->name);
2226 static int validate_unwind_hints(struct objtool_file *file)
2228 struct instruction *insn;
2229 int ret, warnings = 0;
2230 struct insn_state state;
2235 clear_insn_state(&state);
2237 for_each_insn(file, insn) {
2238 if (insn->hint && !insn->visited) {
2239 ret = validate_branch(file, insn->func, insn, state);
2240 if (ret && backtrace)
2241 BT_FUNC("<=== (hint)", insn);
2249 static int validate_retpoline(struct objtool_file *file)
2251 struct instruction *insn;
2254 for_each_insn(file, insn) {
2255 if (insn->type != INSN_JUMP_DYNAMIC &&
2256 insn->type != INSN_CALL_DYNAMIC)
2259 if (insn->retpoline_safe)
2263 * .init.text code is ran before userspace and thus doesn't
2264 * strictly need retpolines, except for modules which are
2265 * loaded late, they very much do need retpoline in their
2268 if (!strcmp(insn->sec->name, ".init.text") && !module)
2271 WARN_FUNC("indirect %s found in RETPOLINE build",
2272 insn->sec, insn->offset,
2273 insn->type == INSN_JUMP_DYNAMIC ? "jump" : "call");
2281 static bool is_kasan_insn(struct instruction *insn)
2283 return (insn->type == INSN_CALL &&
2284 !strcmp(insn->call_dest->name, "__asan_handle_no_return"));
2287 static bool is_ubsan_insn(struct instruction *insn)
2289 return (insn->type == INSN_CALL &&
2290 !strcmp(insn->call_dest->name,
2291 "__ubsan_handle_builtin_unreachable"));
2294 static bool ignore_unreachable_insn(struct instruction *insn)
2298 if (insn->ignore || insn->type == INSN_NOP)
2302 * Ignore any unused exceptions. This can happen when a whitelisted
2303 * function has an exception table entry.
2305 * Also ignore alternative replacement instructions. This can happen
2306 * when a whitelisted function uses one of the ALTERNATIVE macros.
2308 if (!strcmp(insn->sec->name, ".fixup") ||
2309 !strcmp(insn->sec->name, ".altinstr_replacement") ||
2310 !strcmp(insn->sec->name, ".altinstr_aux"))
2314 * Check if this (or a subsequent) instruction is related to
2315 * CONFIG_UBSAN or CONFIG_KASAN.
2317 * End the search at 5 instructions to avoid going into the weeds.
2321 for (i = 0; i < 5; i++) {
2323 if (is_kasan_insn(insn) || is_ubsan_insn(insn))
2326 if (insn->type == INSN_JUMP_UNCONDITIONAL) {
2327 if (insn->jump_dest &&
2328 insn->jump_dest->func == insn->func) {
2329 insn = insn->jump_dest;
2336 if (insn->offset + insn->len >= insn->func->offset + insn->func->len)
2339 insn = list_next_entry(insn, list);
2345 static int validate_functions(struct objtool_file *file)
2347 struct section *sec;
2348 struct symbol *func;
2349 struct instruction *insn;
2350 struct insn_state state;
2351 int ret, warnings = 0;
2353 clear_insn_state(&state);
2355 state.cfa = initial_func_cfi.cfa;
2356 memcpy(&state.regs, &initial_func_cfi.regs,
2357 CFI_NUM_REGS * sizeof(struct cfi_reg));
2358 state.stack_size = initial_func_cfi.cfa.offset;
2360 for_each_sec(file, sec) {
2361 list_for_each_entry(func, &sec->symbol_list, list) {
2362 if (func->type != STT_FUNC)
2366 WARN("%s() is missing an ELF size annotation",
2371 if (func->pfunc != func || func->alias != func)
2374 insn = find_insn(file, sec, func->offset);
2375 if (!insn || insn->ignore || insn->visited)
2378 state.uaccess = func->uaccess_safe;
2380 ret = validate_branch(file, func, insn, state);
2381 if (ret && backtrace)
2382 BT_FUNC("<=== (func)", insn);
2390 static int validate_reachable_instructions(struct objtool_file *file)
2392 struct instruction *insn;
2394 if (file->ignore_unreachables)
2397 for_each_insn(file, insn) {
2398 if (insn->visited || ignore_unreachable_insn(insn))
2401 WARN_FUNC("unreachable instruction", insn->sec, insn->offset);
2408 static void cleanup(struct objtool_file *file)
2410 struct instruction *insn, *tmpinsn;
2411 struct alternative *alt, *tmpalt;
2413 list_for_each_entry_safe(insn, tmpinsn, &file->insn_list, list) {
2414 list_for_each_entry_safe(alt, tmpalt, &insn->alts, list) {
2415 list_del(&alt->list);
2418 list_del(&insn->list);
2419 hash_del(&insn->hash);
2422 elf_close(file->elf);
2425 static struct objtool_file file;
2427 int check(const char *_objname, bool orc)
2429 int ret, warnings = 0;
2433 file.elf = elf_read(objname, orc ? O_RDWR : O_RDONLY);
2437 INIT_LIST_HEAD(&file.insn_list);
2438 hash_init(file.insn_hash);
2439 file.c_file = find_section_by_name(file.elf, ".comment");
2440 file.ignore_unreachables = no_unreachable;
2443 arch_initial_func_cfi_state(&initial_func_cfi);
2445 ret = decode_sections(&file);
2450 if (list_empty(&file.insn_list))
2454 ret = validate_retpoline(&file);
2460 ret = validate_functions(&file);
2465 ret = validate_unwind_hints(&file);
2471 ret = validate_reachable_instructions(&file);
2478 ret = create_orc(&file);
2482 ret = create_orc_sections(&file);
2486 ret = elf_write(file.elf);
2494 /* ignore warnings for now until we get all the code cleaned up */
2495 if (ret || warnings)