1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2015-2017 Josh Poimboeuf <jpoimboe@redhat.com>
17 #include <linux/hashtable.h>
18 #include <linux/kernel.h>
20 #define FAKE_JUMP_OFFSET -1
22 #define C_JUMP_TABLE_SECTION ".rodata..c_jump_table"
25 struct list_head list
;
26 struct instruction
*insn
;
31 struct cfi_init_state initial_func_cfi
;
33 struct instruction
*find_insn(struct objtool_file
*file
,
34 struct section
*sec
, unsigned long offset
)
36 struct instruction
*insn
;
38 hash_for_each_possible(file
->insn_hash
, insn
, hash
, sec_offset_hash(sec
, offset
)) {
39 if (insn
->sec
== sec
&& insn
->offset
== offset
)
46 static struct instruction
*next_insn_same_sec(struct objtool_file
*file
,
47 struct instruction
*insn
)
49 struct instruction
*next
= list_next_entry(insn
, list
);
51 if (!next
|| &next
->list
== &file
->insn_list
|| next
->sec
!= insn
->sec
)
57 static struct instruction
*next_insn_same_func(struct objtool_file
*file
,
58 struct instruction
*insn
)
60 struct instruction
*next
= list_next_entry(insn
, list
);
61 struct symbol
*func
= insn
->func
;
66 if (&next
->list
!= &file
->insn_list
&& next
->func
== func
)
69 /* Check if we're already in the subfunction: */
70 if (func
== func
->cfunc
)
73 /* Move to the subfunction: */
74 return find_insn(file
, func
->cfunc
->sec
, func
->cfunc
->offset
);
77 static struct instruction
*prev_insn_same_sym(struct objtool_file
*file
,
78 struct instruction
*insn
)
80 struct instruction
*prev
= list_prev_entry(insn
, list
);
82 if (&prev
->list
!= &file
->insn_list
&& prev
->func
== insn
->func
)
88 #define func_for_each_insn(file, func, insn) \
89 for (insn = find_insn(file, func->sec, func->offset); \
91 insn = next_insn_same_func(file, insn))
93 #define sym_for_each_insn(file, sym, insn) \
94 for (insn = find_insn(file, sym->sec, sym->offset); \
95 insn && &insn->list != &file->insn_list && \
96 insn->sec == sym->sec && \
97 insn->offset < sym->offset + sym->len; \
98 insn = list_next_entry(insn, list))
100 #define sym_for_each_insn_continue_reverse(file, sym, insn) \
101 for (insn = list_prev_entry(insn, list); \
102 &insn->list != &file->insn_list && \
103 insn->sec == sym->sec && insn->offset >= sym->offset; \
104 insn = list_prev_entry(insn, list))
106 #define sec_for_each_insn_from(file, insn) \
107 for (; insn; insn = next_insn_same_sec(file, insn))
109 #define sec_for_each_insn_continue(file, insn) \
110 for (insn = next_insn_same_sec(file, insn); insn; \
111 insn = next_insn_same_sec(file, insn))
113 static bool is_static_jump(struct instruction
*insn
)
115 return insn
->type
== INSN_JUMP_CONDITIONAL
||
116 insn
->type
== INSN_JUMP_UNCONDITIONAL
;
119 static bool is_sibling_call(struct instruction
*insn
)
121 /* An indirect jump is either a sibling call or a jump to a table. */
122 if (insn
->type
== INSN_JUMP_DYNAMIC
)
123 return list_empty(&insn
->alts
);
125 if (!is_static_jump(insn
))
128 /* add_jump_destinations() sets insn->call_dest for sibling calls. */
129 return !!insn
->call_dest
;
133 * This checks to see if the given function is a "noreturn" function.
135 * For global functions which are outside the scope of this object file, we
136 * have to keep a manual list of them.
138 * For local functions, we have to detect them manually by simply looking for
139 * the lack of a return instruction.
141 static bool __dead_end_function(struct objtool_file
*file
, struct symbol
*func
,
145 struct instruction
*insn
;
149 * Unfortunately these have to be hard coded because the noreturn
150 * attribute isn't provided in ELF data.
152 static const char * const global_noreturns
[] = {
157 "__module_put_and_exit",
163 "machine_real_restart",
164 "rewind_stack_do_exit",
165 "kunit_try_catch_throw",
171 if (func
->bind
== STB_WEAK
)
174 if (func
->bind
== STB_GLOBAL
)
175 for (i
= 0; i
< ARRAY_SIZE(global_noreturns
); i
++)
176 if (!strcmp(func
->name
, global_noreturns
[i
]))
182 insn
= find_insn(file
, func
->sec
, func
->offset
);
186 func_for_each_insn(file
, func
, insn
) {
189 if (insn
->type
== INSN_RETURN
)
197 * A function can have a sibling call instead of a return. In that
198 * case, the function's dead-end status depends on whether the target
199 * of the sibling call returns.
201 func_for_each_insn(file
, func
, insn
) {
202 if (is_sibling_call(insn
)) {
203 struct instruction
*dest
= insn
->jump_dest
;
206 /* sibling call to another file */
209 /* local sibling call */
210 if (recursion
== 5) {
212 * Infinite recursion: two functions have
213 * sibling calls to each other. This is a very
214 * rare case. It means they aren't dead ends.
219 return __dead_end_function(file
, dest
->func
, recursion
+1);
226 static bool dead_end_function(struct objtool_file
*file
, struct symbol
*func
)
228 return __dead_end_function(file
, func
, 0);
231 static void init_cfi_state(struct cfi_state
*cfi
)
235 for (i
= 0; i
< CFI_NUM_REGS
; i
++) {
236 cfi
->regs
[i
].base
= CFI_UNDEFINED
;
237 cfi
->vals
[i
].base
= CFI_UNDEFINED
;
239 cfi
->cfa
.base
= CFI_UNDEFINED
;
240 cfi
->drap_reg
= CFI_UNDEFINED
;
241 cfi
->drap_offset
= -1;
244 static void init_insn_state(struct insn_state
*state
, struct section
*sec
)
246 memset(state
, 0, sizeof(*state
));
247 init_cfi_state(&state
->cfi
);
250 * We need the full vmlinux for noinstr validation, otherwise we can
251 * not correctly determine insn->call_dest->sec (external symbols do
252 * not have a section).
255 state
->noinstr
= sec
->noinstr
;
259 * Call the arch-specific instruction decoder for all the instructions and add
260 * them to the global instruction list.
262 static int decode_instructions(struct objtool_file
*file
)
266 unsigned long offset
;
267 struct instruction
*insn
;
268 unsigned long nr_insns
= 0;
271 for_each_sec(file
, sec
) {
273 if (!(sec
->sh
.sh_flags
& SHF_EXECINSTR
))
276 if (strcmp(sec
->name
, ".altinstr_replacement") &&
277 strcmp(sec
->name
, ".altinstr_aux") &&
278 strncmp(sec
->name
, ".discard.", 9))
281 if (!strcmp(sec
->name
, ".noinstr.text") ||
282 !strcmp(sec
->name
, ".entry.text"))
285 for (offset
= 0; offset
< sec
->len
; offset
+= insn
->len
) {
286 insn
= malloc(sizeof(*insn
));
288 WARN("malloc failed");
291 memset(insn
, 0, sizeof(*insn
));
292 INIT_LIST_HEAD(&insn
->alts
);
293 INIT_LIST_HEAD(&insn
->stack_ops
);
294 init_cfi_state(&insn
->cfi
);
297 insn
->offset
= offset
;
299 ret
= arch_decode_instruction(file
->elf
, sec
, offset
,
301 &insn
->len
, &insn
->type
,
307 hash_add(file
->insn_hash
, &insn
->hash
, sec_offset_hash(sec
, insn
->offset
));
308 list_add_tail(&insn
->list
, &file
->insn_list
);
312 list_for_each_entry(func
, &sec
->symbol_list
, list
) {
313 if (func
->type
!= STT_FUNC
|| func
->alias
!= func
)
316 if (!find_insn(file
, sec
, func
->offset
)) {
317 WARN("%s(): can't find starting instruction",
322 sym_for_each_insn(file
, func
, insn
)
328 printf("nr_insns: %lu\n", nr_insns
);
337 static struct instruction
*find_last_insn(struct objtool_file
*file
,
340 struct instruction
*insn
= NULL
;
342 unsigned int end
= (sec
->len
> 10) ? sec
->len
- 10 : 0;
344 for (offset
= sec
->len
- 1; offset
>= end
&& !insn
; offset
--)
345 insn
= find_insn(file
, sec
, offset
);
351 * Mark "ud2" instructions and manually annotated dead ends.
353 static int add_dead_ends(struct objtool_file
*file
)
357 struct instruction
*insn
;
360 * By default, "ud2" is a dead end unless otherwise annotated, because
361 * GCC 7 inserts it for certain divide-by-zero cases.
363 for_each_insn(file
, insn
)
364 if (insn
->type
== INSN_BUG
)
365 insn
->dead_end
= true;
368 * Check for manually annotated dead ends.
370 sec
= find_section_by_name(file
->elf
, ".rela.discard.unreachable");
374 list_for_each_entry(reloc
, &sec
->reloc_list
, list
) {
375 if (reloc
->sym
->type
!= STT_SECTION
) {
376 WARN("unexpected relocation symbol type in %s", sec
->name
);
379 insn
= find_insn(file
, reloc
->sym
->sec
, reloc
->addend
);
381 insn
= list_prev_entry(insn
, list
);
382 else if (reloc
->addend
== reloc
->sym
->sec
->len
) {
383 insn
= find_last_insn(file
, reloc
->sym
->sec
);
385 WARN("can't find unreachable insn at %s+0x%x",
386 reloc
->sym
->sec
->name
, reloc
->addend
);
390 WARN("can't find unreachable insn at %s+0x%x",
391 reloc
->sym
->sec
->name
, reloc
->addend
);
395 insn
->dead_end
= true;
400 * These manually annotated reachable checks are needed for GCC 4.4,
401 * where the Linux unreachable() macro isn't supported. In that case
402 * GCC doesn't know the "ud2" is fatal, so it generates code as if it's
405 sec
= find_section_by_name(file
->elf
, ".rela.discard.reachable");
409 list_for_each_entry(reloc
, &sec
->reloc_list
, list
) {
410 if (reloc
->sym
->type
!= STT_SECTION
) {
411 WARN("unexpected relocation symbol type in %s", sec
->name
);
414 insn
= find_insn(file
, reloc
->sym
->sec
, reloc
->addend
);
416 insn
= list_prev_entry(insn
, list
);
417 else if (reloc
->addend
== reloc
->sym
->sec
->len
) {
418 insn
= find_last_insn(file
, reloc
->sym
->sec
);
420 WARN("can't find reachable insn at %s+0x%x",
421 reloc
->sym
->sec
->name
, reloc
->addend
);
425 WARN("can't find reachable insn at %s+0x%x",
426 reloc
->sym
->sec
->name
, reloc
->addend
);
430 insn
->dead_end
= false;
437 * Warnings shouldn't be reported for ignored functions.
439 static void add_ignores(struct objtool_file
*file
)
441 struct instruction
*insn
;
446 sec
= find_section_by_name(file
->elf
, ".rela.discard.func_stack_frame_non_standard");
450 list_for_each_entry(reloc
, &sec
->reloc_list
, list
) {
451 switch (reloc
->sym
->type
) {
457 func
= find_func_by_offset(reloc
->sym
->sec
, reloc
->addend
);
463 WARN("unexpected relocation symbol type in %s: %d", sec
->name
, reloc
->sym
->type
);
467 func_for_each_insn(file
, func
, insn
)
473 * This is a whitelist of functions that is allowed to be called with AC set.
474 * The list is meant to be minimal and only contains compiler instrumentation
475 * ABI and a few functions used to implement *_{to,from}_user() functions.
477 * These functions must not directly change AC, but may PUSHF/POPF.
479 static const char *uaccess_safe_builtin
[] = {
482 "check_memory_region",
483 /* KASAN out-of-line */
484 "__asan_loadN_noabort",
485 "__asan_load1_noabort",
486 "__asan_load2_noabort",
487 "__asan_load4_noabort",
488 "__asan_load8_noabort",
489 "__asan_load16_noabort",
490 "__asan_storeN_noabort",
491 "__asan_store1_noabort",
492 "__asan_store2_noabort",
493 "__asan_store4_noabort",
494 "__asan_store8_noabort",
495 "__asan_store16_noabort",
497 "__asan_report_load_n_noabort",
498 "__asan_report_load1_noabort",
499 "__asan_report_load2_noabort",
500 "__asan_report_load4_noabort",
501 "__asan_report_load8_noabort",
502 "__asan_report_load16_noabort",
503 "__asan_report_store_n_noabort",
504 "__asan_report_store1_noabort",
505 "__asan_report_store2_noabort",
506 "__asan_report_store4_noabort",
507 "__asan_report_store8_noabort",
508 "__asan_report_store16_noabort",
510 "__kcsan_check_access",
511 "kcsan_found_watchpoint",
512 "kcsan_setup_watchpoint",
513 "kcsan_check_scoped_accesses",
514 "kcsan_disable_current",
515 "kcsan_enable_current_nowarn",
520 "__tsan_write_range",
534 "__sanitizer_cov_trace_pc",
535 "__sanitizer_cov_trace_const_cmp1",
536 "__sanitizer_cov_trace_const_cmp2",
537 "__sanitizer_cov_trace_const_cmp4",
538 "__sanitizer_cov_trace_const_cmp8",
539 "__sanitizer_cov_trace_cmp1",
540 "__sanitizer_cov_trace_cmp2",
541 "__sanitizer_cov_trace_cmp4",
542 "__sanitizer_cov_trace_cmp8",
543 "__sanitizer_cov_trace_switch",
545 "ubsan_type_mismatch_common",
546 "__ubsan_handle_type_mismatch",
547 "__ubsan_handle_type_mismatch_v1",
548 "__ubsan_handle_shift_out_of_bounds",
550 "csum_partial_copy_generic",
552 "mcsafe_handle_tail",
553 "ftrace_likely_update", /* CONFIG_TRACE_BRANCH_PROFILING */
557 static void add_uaccess_safe(struct objtool_file
*file
)
565 for (name
= uaccess_safe_builtin
; *name
; name
++) {
566 func
= find_symbol_by_name(file
->elf
, *name
);
570 func
->uaccess_safe
= true;
575 * FIXME: For now, just ignore any alternatives which add retpolines. This is
576 * a temporary hack, as it doesn't allow ORC to unwind from inside a retpoline.
577 * But it at least allows objtool to understand the control flow *around* the
580 static int add_ignore_alternatives(struct objtool_file
*file
)
584 struct instruction
*insn
;
586 sec
= find_section_by_name(file
->elf
, ".rela.discard.ignore_alts");
590 list_for_each_entry(reloc
, &sec
->reloc_list
, list
) {
591 if (reloc
->sym
->type
!= STT_SECTION
) {
592 WARN("unexpected relocation symbol type in %s", sec
->name
);
596 insn
= find_insn(file
, reloc
->sym
->sec
, reloc
->addend
);
598 WARN("bad .discard.ignore_alts entry");
602 insn
->ignore_alts
= true;
609 * Find the destination instructions for all jumps.
611 static int add_jump_destinations(struct objtool_file
*file
)
613 struct instruction
*insn
;
615 struct section
*dest_sec
;
616 unsigned long dest_off
;
618 for_each_insn(file
, insn
) {
619 if (!is_static_jump(insn
))
622 if (insn
->ignore
|| insn
->offset
== FAKE_JUMP_OFFSET
)
625 reloc
= find_reloc_by_dest_range(file
->elf
, insn
->sec
,
626 insn
->offset
, insn
->len
);
628 dest_sec
= insn
->sec
;
629 dest_off
= arch_jump_destination(insn
);
630 } else if (reloc
->sym
->type
== STT_SECTION
) {
631 dest_sec
= reloc
->sym
->sec
;
632 dest_off
= arch_dest_reloc_offset(reloc
->addend
);
633 } else if (reloc
->sym
->sec
->idx
) {
634 dest_sec
= reloc
->sym
->sec
;
635 dest_off
= reloc
->sym
->sym
.st_value
+
636 arch_dest_reloc_offset(reloc
->addend
);
637 } else if (strstr(reloc
->sym
->name
, "_indirect_thunk_")) {
639 * Retpoline jumps are really dynamic jumps in
640 * disguise, so convert them accordingly.
642 if (insn
->type
== INSN_JUMP_UNCONDITIONAL
)
643 insn
->type
= INSN_JUMP_DYNAMIC
;
645 insn
->type
= INSN_JUMP_DYNAMIC_CONDITIONAL
;
647 insn
->retpoline_safe
= true;
650 /* external sibling call */
651 insn
->call_dest
= reloc
->sym
;
655 insn
->jump_dest
= find_insn(file
, dest_sec
, dest_off
);
656 if (!insn
->jump_dest
) {
659 * This is a special case where an alt instruction
660 * jumps past the end of the section. These are
661 * handled later in handle_group_alt().
663 if (!strcmp(insn
->sec
->name
, ".altinstr_replacement"))
666 WARN_FUNC("can't find jump dest instruction at %s+0x%lx",
667 insn
->sec
, insn
->offset
, dest_sec
->name
,
673 * Cross-function jump.
675 if (insn
->func
&& insn
->jump_dest
->func
&&
676 insn
->func
!= insn
->jump_dest
->func
) {
679 * For GCC 8+, create parent/child links for any cold
680 * subfunctions. This is _mostly_ redundant with a
681 * similar initialization in read_symbols().
683 * If a function has aliases, we want the *first* such
684 * function in the symbol table to be the subfunction's
685 * parent. In that case we overwrite the
686 * initialization done in read_symbols().
688 * However this code can't completely replace the
689 * read_symbols() code because this doesn't detect the
690 * case where the parent function's only reference to a
691 * subfunction is through a jump table.
693 if (!strstr(insn
->func
->name
, ".cold.") &&
694 strstr(insn
->jump_dest
->func
->name
, ".cold.")) {
695 insn
->func
->cfunc
= insn
->jump_dest
->func
;
696 insn
->jump_dest
->func
->pfunc
= insn
->func
;
698 } else if (insn
->jump_dest
->func
->pfunc
!= insn
->func
->pfunc
&&
699 insn
->jump_dest
->offset
== insn
->jump_dest
->func
->offset
) {
701 /* internal sibling call */
702 insn
->call_dest
= insn
->jump_dest
->func
;
710 static void remove_insn_ops(struct instruction
*insn
)
712 struct stack_op
*op
, *tmp
;
714 list_for_each_entry_safe(op
, tmp
, &insn
->stack_ops
, list
) {
721 * Find the destination instructions for all calls.
723 static int add_call_destinations(struct objtool_file
*file
)
725 struct instruction
*insn
;
726 unsigned long dest_off
;
729 for_each_insn(file
, insn
) {
730 if (insn
->type
!= INSN_CALL
)
733 reloc
= find_reloc_by_dest_range(file
->elf
, insn
->sec
,
734 insn
->offset
, insn
->len
);
736 dest_off
= arch_jump_destination(insn
);
737 insn
->call_dest
= find_func_by_offset(insn
->sec
, dest_off
);
738 if (!insn
->call_dest
)
739 insn
->call_dest
= find_symbol_by_offset(insn
->sec
, dest_off
);
744 if (!insn
->call_dest
) {
745 WARN_FUNC("unannotated intra-function call", insn
->sec
, insn
->offset
);
749 if (insn
->func
&& insn
->call_dest
->type
!= STT_FUNC
) {
750 WARN_FUNC("unsupported call to non-function",
751 insn
->sec
, insn
->offset
);
755 } else if (reloc
->sym
->type
== STT_SECTION
) {
756 dest_off
= arch_dest_reloc_offset(reloc
->addend
);
757 insn
->call_dest
= find_func_by_offset(reloc
->sym
->sec
,
759 if (!insn
->call_dest
) {
760 WARN_FUNC("can't find call dest symbol at %s+0x%lx",
761 insn
->sec
, insn
->offset
,
762 reloc
->sym
->sec
->name
,
767 insn
->call_dest
= reloc
->sym
;
770 * Many compilers cannot disable KCOV with a function attribute
771 * so they need a little help, NOP out any KCOV calls from noinstr
774 if (insn
->sec
->noinstr
&&
775 !strncmp(insn
->call_dest
->name
, "__sanitizer_cov_", 16)) {
777 reloc
->type
= R_NONE
;
778 elf_write_reloc(file
->elf
, reloc
);
781 elf_write_insn(file
->elf
, insn
->sec
,
782 insn
->offset
, insn
->len
,
783 arch_nop_insn(insn
->len
));
784 insn
->type
= INSN_NOP
;
788 * Whatever stack impact regular CALLs have, should be undone
789 * by the RETURN of the called function.
791 * Annotated intra-function calls retain the stack_ops but
792 * are converted to JUMP, see read_intra_function_calls().
794 remove_insn_ops(insn
);
801 * The .alternatives section requires some extra special care, over and above
802 * what other special sections require:
804 * 1. Because alternatives are patched in-place, we need to insert a fake jump
805 * instruction at the end so that validate_branch() skips all the original
806 * replaced instructions when validating the new instruction path.
808 * 2. An added wrinkle is that the new instruction length might be zero. In
809 * that case the old instructions are replaced with noops. We simulate that
810 * by creating a fake jump as the only new instruction.
812 * 3. In some cases, the alternative section includes an instruction which
813 * conditionally jumps to the _end_ of the entry. We have to modify these
814 * jumps' destinations to point back to .text rather than the end of the
815 * entry in .altinstr_replacement.
817 static int handle_group_alt(struct objtool_file
*file
,
818 struct special_alt
*special_alt
,
819 struct instruction
*orig_insn
,
820 struct instruction
**new_insn
)
822 static unsigned int alt_group_next_index
= 1;
823 struct instruction
*last_orig_insn
, *last_new_insn
, *insn
, *fake_jump
= NULL
;
824 unsigned int alt_group
= alt_group_next_index
++;
825 unsigned long dest_off
;
827 last_orig_insn
= NULL
;
829 sec_for_each_insn_from(file
, insn
) {
830 if (insn
->offset
>= special_alt
->orig_off
+ special_alt
->orig_len
)
833 insn
->alt_group
= alt_group
;
834 last_orig_insn
= insn
;
837 if (next_insn_same_sec(file
, last_orig_insn
)) {
838 fake_jump
= malloc(sizeof(*fake_jump
));
840 WARN("malloc failed");
843 memset(fake_jump
, 0, sizeof(*fake_jump
));
844 INIT_LIST_HEAD(&fake_jump
->alts
);
845 INIT_LIST_HEAD(&fake_jump
->stack_ops
);
846 init_cfi_state(&fake_jump
->cfi
);
848 fake_jump
->sec
= special_alt
->new_sec
;
849 fake_jump
->offset
= FAKE_JUMP_OFFSET
;
850 fake_jump
->type
= INSN_JUMP_UNCONDITIONAL
;
851 fake_jump
->jump_dest
= list_next_entry(last_orig_insn
, list
);
852 fake_jump
->func
= orig_insn
->func
;
855 if (!special_alt
->new_len
) {
857 WARN("%s: empty alternative at end of section",
858 special_alt
->orig_sec
->name
);
862 *new_insn
= fake_jump
;
866 last_new_insn
= NULL
;
867 alt_group
= alt_group_next_index
++;
869 sec_for_each_insn_from(file
, insn
) {
870 if (insn
->offset
>= special_alt
->new_off
+ special_alt
->new_len
)
873 last_new_insn
= insn
;
875 insn
->ignore
= orig_insn
->ignore_alts
;
876 insn
->func
= orig_insn
->func
;
877 insn
->alt_group
= alt_group
;
880 * Since alternative replacement code is copy/pasted by the
881 * kernel after applying relocations, generally such code can't
882 * have relative-address relocation references to outside the
883 * .altinstr_replacement section, unless the arch's
884 * alternatives code can adjust the relative offsets
887 * The x86 alternatives code adjusts the offsets only when it
888 * encounters a branch instruction at the very beginning of the
891 if ((insn
->offset
!= special_alt
->new_off
||
892 (insn
->type
!= INSN_CALL
&& !is_static_jump(insn
))) &&
893 find_reloc_by_dest_range(file
->elf
, insn
->sec
, insn
->offset
, insn
->len
)) {
895 WARN_FUNC("unsupported relocation in alternatives section",
896 insn
->sec
, insn
->offset
);
900 if (!is_static_jump(insn
))
903 if (!insn
->immediate
)
906 dest_off
= arch_jump_destination(insn
);
907 if (dest_off
== special_alt
->new_off
+ special_alt
->new_len
) {
909 WARN("%s: alternative jump to end of section",
910 special_alt
->orig_sec
->name
);
913 insn
->jump_dest
= fake_jump
;
916 if (!insn
->jump_dest
) {
917 WARN_FUNC("can't find alternative jump destination",
918 insn
->sec
, insn
->offset
);
923 if (!last_new_insn
) {
924 WARN_FUNC("can't find last new alternative instruction",
925 special_alt
->new_sec
, special_alt
->new_off
);
930 list_add(&fake_jump
->list
, &last_new_insn
->list
);
936 * A jump table entry can either convert a nop to a jump or a jump to a nop.
937 * If the original instruction is a jump, make the alt entry an effective nop
938 * by just skipping the original instruction.
940 static int handle_jump_alt(struct objtool_file
*file
,
941 struct special_alt
*special_alt
,
942 struct instruction
*orig_insn
,
943 struct instruction
**new_insn
)
945 if (orig_insn
->type
== INSN_NOP
)
948 if (orig_insn
->type
!= INSN_JUMP_UNCONDITIONAL
) {
949 WARN_FUNC("unsupported instruction at jump label",
950 orig_insn
->sec
, orig_insn
->offset
);
954 *new_insn
= list_next_entry(orig_insn
, list
);
959 * Read all the special sections which have alternate instructions which can be
960 * patched in or redirected to at runtime. Each instruction having alternate
961 * instruction(s) has them added to its insn->alts list, which will be
962 * traversed in validate_branch().
964 static int add_special_section_alts(struct objtool_file
*file
)
966 struct list_head special_alts
;
967 struct instruction
*orig_insn
, *new_insn
;
968 struct special_alt
*special_alt
, *tmp
;
969 struct alternative
*alt
;
972 ret
= special_get_alts(file
->elf
, &special_alts
);
976 list_for_each_entry_safe(special_alt
, tmp
, &special_alts
, list
) {
978 orig_insn
= find_insn(file
, special_alt
->orig_sec
,
979 special_alt
->orig_off
);
981 WARN_FUNC("special: can't find orig instruction",
982 special_alt
->orig_sec
, special_alt
->orig_off
);
988 if (!special_alt
->group
|| special_alt
->new_len
) {
989 new_insn
= find_insn(file
, special_alt
->new_sec
,
990 special_alt
->new_off
);
992 WARN_FUNC("special: can't find new instruction",
993 special_alt
->new_sec
,
994 special_alt
->new_off
);
1000 if (special_alt
->group
) {
1001 if (!special_alt
->orig_len
) {
1002 WARN_FUNC("empty alternative entry",
1003 orig_insn
->sec
, orig_insn
->offset
);
1007 ret
= handle_group_alt(file
, special_alt
, orig_insn
,
1011 } else if (special_alt
->jump_or_nop
) {
1012 ret
= handle_jump_alt(file
, special_alt
, orig_insn
,
1018 alt
= malloc(sizeof(*alt
));
1020 WARN("malloc failed");
1025 alt
->insn
= new_insn
;
1026 alt
->skip_orig
= special_alt
->skip_orig
;
1027 orig_insn
->ignore_alts
|= special_alt
->skip_alt
;
1028 list_add_tail(&alt
->list
, &orig_insn
->alts
);
1030 list_del(&special_alt
->list
);
1038 static int add_jump_table(struct objtool_file
*file
, struct instruction
*insn
,
1039 struct reloc
*table
)
1041 struct reloc
*reloc
= table
;
1042 struct instruction
*dest_insn
;
1043 struct alternative
*alt
;
1044 struct symbol
*pfunc
= insn
->func
->pfunc
;
1045 unsigned int prev_offset
= 0;
1048 * Each @reloc is a switch table relocation which points to the target
1051 list_for_each_entry_from(reloc
, &table
->sec
->reloc_list
, list
) {
1053 /* Check for the end of the table: */
1054 if (reloc
!= table
&& reloc
->jump_table_start
)
1057 /* Make sure the table entries are consecutive: */
1058 if (prev_offset
&& reloc
->offset
!= prev_offset
+ 8)
1061 /* Detect function pointers from contiguous objects: */
1062 if (reloc
->sym
->sec
== pfunc
->sec
&&
1063 reloc
->addend
== pfunc
->offset
)
1066 dest_insn
= find_insn(file
, reloc
->sym
->sec
, reloc
->addend
);
1070 /* Make sure the destination is in the same function: */
1071 if (!dest_insn
->func
|| dest_insn
->func
->pfunc
!= pfunc
)
1074 alt
= malloc(sizeof(*alt
));
1076 WARN("malloc failed");
1080 alt
->insn
= dest_insn
;
1081 list_add_tail(&alt
->list
, &insn
->alts
);
1082 prev_offset
= reloc
->offset
;
1086 WARN_FUNC("can't find switch jump table",
1087 insn
->sec
, insn
->offset
);
1095 * find_jump_table() - Given a dynamic jump, find the switch jump table in
1096 * .rodata associated with it.
1098 * There are 3 basic patterns:
1100 * 1. jmpq *[rodata addr](,%reg,8)
1102 * This is the most common case by far. It jumps to an address in a simple
1103 * jump table which is stored in .rodata.
1105 * 2. jmpq *[rodata addr](%rip)
1107 * This is caused by a rare GCC quirk, currently only seen in three driver
1108 * functions in the kernel, only with certain obscure non-distro configs.
1110 * As part of an optimization, GCC makes a copy of an existing switch jump
1111 * table, modifies it, and then hard-codes the jump (albeit with an indirect
1112 * jump) to use a single entry in the table. The rest of the jump table and
1113 * some of its jump targets remain as dead code.
1115 * In such a case we can just crudely ignore all unreachable instruction
1116 * warnings for the entire object file. Ideally we would just ignore them
1117 * for the function, but that would require redesigning the code quite a
1118 * bit. And honestly that's just not worth doing: unreachable instruction
1119 * warnings are of questionable value anyway, and this is such a rare issue.
1121 * 3. mov [rodata addr],%reg1
1122 * ... some instructions ...
1123 * jmpq *(%reg1,%reg2,8)
1125 * This is a fairly uncommon pattern which is new for GCC 6. As of this
1126 * writing, there are 11 occurrences of it in the allmodconfig kernel.
1128 * As of GCC 7 there are quite a few more of these and the 'in between' code
1129 * is significant. Esp. with KASAN enabled some of the code between the mov
1130 * and jmpq uses .rodata itself, which can confuse things.
1132 * TODO: Once we have DWARF CFI and smarter instruction decoding logic,
1133 * ensure the same register is used in the mov and jump instructions.
1135 * NOTE: RETPOLINE made it harder still to decode dynamic jumps.
1137 static struct reloc
*find_jump_table(struct objtool_file
*file
,
1138 struct symbol
*func
,
1139 struct instruction
*insn
)
1141 struct reloc
*text_reloc
, *table_reloc
;
1142 struct instruction
*dest_insn
, *orig_insn
= insn
;
1143 struct section
*table_sec
;
1144 unsigned long table_offset
;
1147 * Backward search using the @first_jump_src links, these help avoid
1148 * much of the 'in between' code. Which avoids us getting confused by
1152 insn
&& insn
->func
&& insn
->func
->pfunc
== func
;
1153 insn
= insn
->first_jump_src
?: prev_insn_same_sym(file
, insn
)) {
1155 if (insn
!= orig_insn
&& insn
->type
== INSN_JUMP_DYNAMIC
)
1158 /* allow small jumps within the range */
1159 if (insn
->type
== INSN_JUMP_UNCONDITIONAL
&&
1161 (insn
->jump_dest
->offset
<= insn
->offset
||
1162 insn
->jump_dest
->offset
> orig_insn
->offset
))
1165 /* look for a relocation which references .rodata */
1166 text_reloc
= find_reloc_by_dest_range(file
->elf
, insn
->sec
,
1167 insn
->offset
, insn
->len
);
1168 if (!text_reloc
|| text_reloc
->sym
->type
!= STT_SECTION
||
1169 !text_reloc
->sym
->sec
->rodata
)
1172 table_offset
= text_reloc
->addend
;
1173 table_sec
= text_reloc
->sym
->sec
;
1175 if (text_reloc
->type
== R_X86_64_PC32
)
1179 * Make sure the .rodata address isn't associated with a
1180 * symbol. GCC jump tables are anonymous data.
1182 * Also support C jump tables which are in the same format as
1183 * switch jump tables. For objtool to recognize them, they
1184 * need to be placed in the C_JUMP_TABLE_SECTION section. They
1185 * have symbols associated with them.
1187 if (find_symbol_containing(table_sec
, table_offset
) &&
1188 strcmp(table_sec
->name
, C_JUMP_TABLE_SECTION
))
1192 * Each table entry has a reloc associated with it. The reloc
1193 * should reference text in the same function as the original
1196 table_reloc
= find_reloc_by_dest(file
->elf
, table_sec
, table_offset
);
1199 dest_insn
= find_insn(file
, table_reloc
->sym
->sec
, table_reloc
->addend
);
1200 if (!dest_insn
|| !dest_insn
->func
|| dest_insn
->func
->pfunc
!= func
)
1204 * Use of RIP-relative switch jumps is quite rare, and
1205 * indicates a rare GCC quirk/bug which can leave dead code
1208 if (text_reloc
->type
== R_X86_64_PC32
)
1209 file
->ignore_unreachables
= true;
1218 * First pass: Mark the head of each jump table so that in the next pass,
1219 * we know when a given jump table ends and the next one starts.
1221 static void mark_func_jump_tables(struct objtool_file
*file
,
1222 struct symbol
*func
)
1224 struct instruction
*insn
, *last
= NULL
;
1225 struct reloc
*reloc
;
1227 func_for_each_insn(file
, func
, insn
) {
1232 * Store back-pointers for unconditional forward jumps such
1233 * that find_jump_table() can back-track using those and
1234 * avoid some potentially confusing code.
1236 if (insn
->type
== INSN_JUMP_UNCONDITIONAL
&& insn
->jump_dest
&&
1237 insn
->offset
> last
->offset
&&
1238 insn
->jump_dest
->offset
> insn
->offset
&&
1239 !insn
->jump_dest
->first_jump_src
) {
1241 insn
->jump_dest
->first_jump_src
= insn
;
1242 last
= insn
->jump_dest
;
1245 if (insn
->type
!= INSN_JUMP_DYNAMIC
)
1248 reloc
= find_jump_table(file
, func
, insn
);
1250 reloc
->jump_table_start
= true;
1251 insn
->jump_table
= reloc
;
1256 static int add_func_jump_tables(struct objtool_file
*file
,
1257 struct symbol
*func
)
1259 struct instruction
*insn
;
1262 func_for_each_insn(file
, func
, insn
) {
1263 if (!insn
->jump_table
)
1266 ret
= add_jump_table(file
, insn
, insn
->jump_table
);
1275 * For some switch statements, gcc generates a jump table in the .rodata
1276 * section which contains a list of addresses within the function to jump to.
1277 * This finds these jump tables and adds them to the insn->alts lists.
1279 static int add_jump_table_alts(struct objtool_file
*file
)
1281 struct section
*sec
;
1282 struct symbol
*func
;
1288 for_each_sec(file
, sec
) {
1289 list_for_each_entry(func
, &sec
->symbol_list
, list
) {
1290 if (func
->type
!= STT_FUNC
)
1293 mark_func_jump_tables(file
, func
);
1294 ret
= add_func_jump_tables(file
, func
);
1303 static int read_unwind_hints(struct objtool_file
*file
)
1305 struct section
*sec
, *relocsec
;
1306 struct reloc
*reloc
;
1307 struct unwind_hint
*hint
;
1308 struct instruction
*insn
;
1309 struct cfi_reg
*cfa
;
1312 sec
= find_section_by_name(file
->elf
, ".discard.unwind_hints");
1316 relocsec
= sec
->reloc
;
1318 WARN("missing .rela.discard.unwind_hints section");
1322 if (sec
->len
% sizeof(struct unwind_hint
)) {
1323 WARN("struct unwind_hint size mismatch");
1329 for (i
= 0; i
< sec
->len
/ sizeof(struct unwind_hint
); i
++) {
1330 hint
= (struct unwind_hint
*)sec
->data
->d_buf
+ i
;
1332 reloc
= find_reloc_by_dest(file
->elf
, sec
, i
* sizeof(*hint
));
1334 WARN("can't find reloc for unwind_hints[%d]", i
);
1338 insn
= find_insn(file
, reloc
->sym
->sec
, reloc
->addend
);
1340 WARN("can't find insn for unwind_hints[%d]", i
);
1344 cfa
= &insn
->cfi
.cfa
;
1346 if (hint
->type
== UNWIND_HINT_TYPE_RET_OFFSET
) {
1347 insn
->ret_offset
= hint
->sp_offset
;
1353 switch (hint
->sp_reg
) {
1354 case ORC_REG_UNDEFINED
:
1355 cfa
->base
= CFI_UNDEFINED
;
1363 case ORC_REG_SP_INDIRECT
:
1364 cfa
->base
= CFI_SP_INDIRECT
;
1367 cfa
->base
= CFI_R10
;
1370 cfa
->base
= CFI_R13
;
1379 WARN_FUNC("unsupported unwind_hint sp base reg %d",
1380 insn
->sec
, insn
->offset
, hint
->sp_reg
);
1384 cfa
->offset
= hint
->sp_offset
;
1385 insn
->cfi
.type
= hint
->type
;
1386 insn
->cfi
.end
= hint
->end
;
1392 static int read_retpoline_hints(struct objtool_file
*file
)
1394 struct section
*sec
;
1395 struct instruction
*insn
;
1396 struct reloc
*reloc
;
1398 sec
= find_section_by_name(file
->elf
, ".rela.discard.retpoline_safe");
1402 list_for_each_entry(reloc
, &sec
->reloc_list
, list
) {
1403 if (reloc
->sym
->type
!= STT_SECTION
) {
1404 WARN("unexpected relocation symbol type in %s", sec
->name
);
1408 insn
= find_insn(file
, reloc
->sym
->sec
, reloc
->addend
);
1410 WARN("bad .discard.retpoline_safe entry");
1414 if (insn
->type
!= INSN_JUMP_DYNAMIC
&&
1415 insn
->type
!= INSN_CALL_DYNAMIC
) {
1416 WARN_FUNC("retpoline_safe hint not an indirect jump/call",
1417 insn
->sec
, insn
->offset
);
1421 insn
->retpoline_safe
= true;
1427 static int read_instr_hints(struct objtool_file
*file
)
1429 struct section
*sec
;
1430 struct instruction
*insn
;
1431 struct reloc
*reloc
;
1433 sec
= find_section_by_name(file
->elf
, ".rela.discard.instr_end");
1437 list_for_each_entry(reloc
, &sec
->reloc_list
, list
) {
1438 if (reloc
->sym
->type
!= STT_SECTION
) {
1439 WARN("unexpected relocation symbol type in %s", sec
->name
);
1443 insn
= find_insn(file
, reloc
->sym
->sec
, reloc
->addend
);
1445 WARN("bad .discard.instr_end entry");
1452 sec
= find_section_by_name(file
->elf
, ".rela.discard.instr_begin");
1456 list_for_each_entry(reloc
, &sec
->reloc_list
, list
) {
1457 if (reloc
->sym
->type
!= STT_SECTION
) {
1458 WARN("unexpected relocation symbol type in %s", sec
->name
);
1462 insn
= find_insn(file
, reloc
->sym
->sec
, reloc
->addend
);
1464 WARN("bad .discard.instr_begin entry");
1474 static int read_intra_function_calls(struct objtool_file
*file
)
1476 struct instruction
*insn
;
1477 struct section
*sec
;
1478 struct reloc
*reloc
;
1480 sec
= find_section_by_name(file
->elf
, ".rela.discard.intra_function_calls");
1484 list_for_each_entry(reloc
, &sec
->reloc_list
, list
) {
1485 unsigned long dest_off
;
1487 if (reloc
->sym
->type
!= STT_SECTION
) {
1488 WARN("unexpected relocation symbol type in %s",
1493 insn
= find_insn(file
, reloc
->sym
->sec
, reloc
->addend
);
1495 WARN("bad .discard.intra_function_call entry");
1499 if (insn
->type
!= INSN_CALL
) {
1500 WARN_FUNC("intra_function_call not a direct call",
1501 insn
->sec
, insn
->offset
);
1506 * Treat intra-function CALLs as JMPs, but with a stack_op.
1507 * See add_call_destinations(), which strips stack_ops from
1510 insn
->type
= INSN_JUMP_UNCONDITIONAL
;
1512 dest_off
= insn
->offset
+ insn
->len
+ insn
->immediate
;
1513 insn
->jump_dest
= find_insn(file
, insn
->sec
, dest_off
);
1514 if (!insn
->jump_dest
) {
1515 WARN_FUNC("can't find call dest at %s+0x%lx",
1516 insn
->sec
, insn
->offset
,
1517 insn
->sec
->name
, dest_off
);
1525 static void mark_rodata(struct objtool_file
*file
)
1527 struct section
*sec
;
1531 * Search for the following rodata sections, each of which can
1532 * potentially contain jump tables:
1534 * - .rodata: can contain GCC switch tables
1535 * - .rodata.<func>: same, if -fdata-sections is being used
1536 * - .rodata..c_jump_table: contains C annotated jump tables
1538 * .rodata.str1.* sections are ignored; they don't contain jump tables.
1540 for_each_sec(file
, sec
) {
1541 if (!strncmp(sec
->name
, ".rodata", 7) &&
1542 !strstr(sec
->name
, ".str1.")) {
1548 file
->rodata
= found
;
1551 static int decode_sections(struct objtool_file
*file
)
1557 ret
= decode_instructions(file
);
1561 ret
= add_dead_ends(file
);
1566 add_uaccess_safe(file
);
1568 ret
= add_ignore_alternatives(file
);
1572 ret
= add_jump_destinations(file
);
1576 ret
= add_special_section_alts(file
);
1580 ret
= read_intra_function_calls(file
);
1584 ret
= add_call_destinations(file
);
1588 ret
= add_jump_table_alts(file
);
1592 ret
= read_unwind_hints(file
);
1596 ret
= read_retpoline_hints(file
);
1600 ret
= read_instr_hints(file
);
1607 static bool is_fentry_call(struct instruction
*insn
)
1609 if (insn
->type
== INSN_CALL
&& insn
->call_dest
&&
1610 insn
->call_dest
->type
== STT_NOTYPE
&&
1611 !strcmp(insn
->call_dest
->name
, "__fentry__"))
1617 static bool has_modified_stack_frame(struct instruction
*insn
, struct insn_state
*state
)
1619 u8 ret_offset
= insn
->ret_offset
;
1620 struct cfi_state
*cfi
= &state
->cfi
;
1623 if (cfi
->cfa
.base
!= initial_func_cfi
.cfa
.base
|| cfi
->drap
)
1626 if (cfi
->cfa
.offset
!= initial_func_cfi
.cfa
.offset
+ ret_offset
)
1629 if (cfi
->stack_size
!= initial_func_cfi
.cfa
.offset
+ ret_offset
)
1633 * If there is a ret offset hint then don't check registers
1634 * because a callee-saved register might have been pushed on
1640 for (i
= 0; i
< CFI_NUM_REGS
; i
++) {
1641 if (cfi
->regs
[i
].base
!= initial_func_cfi
.regs
[i
].base
||
1642 cfi
->regs
[i
].offset
!= initial_func_cfi
.regs
[i
].offset
)
1649 static bool has_valid_stack_frame(struct insn_state
*state
)
1651 struct cfi_state
*cfi
= &state
->cfi
;
1653 if (cfi
->cfa
.base
== CFI_BP
&& cfi
->regs
[CFI_BP
].base
== CFI_CFA
&&
1654 cfi
->regs
[CFI_BP
].offset
== -16)
1657 if (cfi
->drap
&& cfi
->regs
[CFI_BP
].base
== CFI_BP
)
1663 static int update_cfi_state_regs(struct instruction
*insn
,
1664 struct cfi_state
*cfi
,
1665 struct stack_op
*op
)
1667 struct cfi_reg
*cfa
= &cfi
->cfa
;
1669 if (cfa
->base
!= CFI_SP
&& cfa
->base
!= CFI_SP_INDIRECT
)
1673 if (op
->dest
.type
== OP_DEST_PUSH
|| op
->dest
.type
== OP_DEST_PUSHF
)
1677 if (op
->src
.type
== OP_SRC_POP
|| op
->src
.type
== OP_SRC_POPF
)
1680 /* add immediate to sp */
1681 if (op
->dest
.type
== OP_DEST_REG
&& op
->src
.type
== OP_SRC_ADD
&&
1682 op
->dest
.reg
== CFI_SP
&& op
->src
.reg
== CFI_SP
)
1683 cfa
->offset
-= op
->src
.offset
;
1688 static void save_reg(struct cfi_state
*cfi
, unsigned char reg
, int base
, int offset
)
1690 if (arch_callee_saved_reg(reg
) &&
1691 cfi
->regs
[reg
].base
== CFI_UNDEFINED
) {
1692 cfi
->regs
[reg
].base
= base
;
1693 cfi
->regs
[reg
].offset
= offset
;
1697 static void restore_reg(struct cfi_state
*cfi
, unsigned char reg
)
1699 cfi
->regs
[reg
].base
= initial_func_cfi
.regs
[reg
].base
;
1700 cfi
->regs
[reg
].offset
= initial_func_cfi
.regs
[reg
].offset
;
1704 * A note about DRAP stack alignment:
1706 * GCC has the concept of a DRAP register, which is used to help keep track of
1707 * the stack pointer when aligning the stack. r10 or r13 is used as the DRAP
1708 * register. The typical DRAP pattern is:
1710 * 4c 8d 54 24 08 lea 0x8(%rsp),%r10
1711 * 48 83 e4 c0 and $0xffffffffffffffc0,%rsp
1712 * 41 ff 72 f8 pushq -0x8(%r10)
1714 * 48 89 e5 mov %rsp,%rbp
1721 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1724 * There are some variations in the epilogues, like:
1732 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1737 * 4c 8b 55 e8 mov -0x18(%rbp),%r10
1738 * 48 8b 5d e0 mov -0x20(%rbp),%rbx
1739 * 4c 8b 65 f0 mov -0x10(%rbp),%r12
1740 * 4c 8b 6d f8 mov -0x8(%rbp),%r13
1742 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1745 * Sometimes r13 is used as the DRAP register, in which case it's saved and
1746 * restored beforehand:
1749 * 4c 8d 6c 24 10 lea 0x10(%rsp),%r13
1750 * 48 83 e4 f0 and $0xfffffffffffffff0,%rsp
1752 * 49 8d 65 f0 lea -0x10(%r13),%rsp
1756 static int update_cfi_state(struct instruction
*insn
, struct cfi_state
*cfi
,
1757 struct stack_op
*op
)
1759 struct cfi_reg
*cfa
= &cfi
->cfa
;
1760 struct cfi_reg
*regs
= cfi
->regs
;
1762 /* stack operations don't make sense with an undefined CFA */
1763 if (cfa
->base
== CFI_UNDEFINED
) {
1765 WARN_FUNC("undefined stack state", insn
->sec
, insn
->offset
);
1771 if (cfi
->type
== ORC_TYPE_REGS
|| cfi
->type
== ORC_TYPE_REGS_IRET
)
1772 return update_cfi_state_regs(insn
, cfi
, op
);
1774 switch (op
->dest
.type
) {
1777 switch (op
->src
.type
) {
1780 if (op
->src
.reg
== CFI_SP
&& op
->dest
.reg
== CFI_BP
&&
1781 cfa
->base
== CFI_SP
&&
1782 regs
[CFI_BP
].base
== CFI_CFA
&&
1783 regs
[CFI_BP
].offset
== -cfa
->offset
) {
1785 /* mov %rsp, %rbp */
1786 cfa
->base
= op
->dest
.reg
;
1787 cfi
->bp_scratch
= false;
1790 else if (op
->src
.reg
== CFI_SP
&&
1791 op
->dest
.reg
== CFI_BP
&& cfi
->drap
) {
1793 /* drap: mov %rsp, %rbp */
1794 regs
[CFI_BP
].base
= CFI_BP
;
1795 regs
[CFI_BP
].offset
= -cfi
->stack_size
;
1796 cfi
->bp_scratch
= false;
1799 else if (op
->src
.reg
== CFI_SP
&& cfa
->base
== CFI_SP
) {
1804 * This is needed for the rare case where GCC
1811 cfi
->vals
[op
->dest
.reg
].base
= CFI_CFA
;
1812 cfi
->vals
[op
->dest
.reg
].offset
= -cfi
->stack_size
;
1815 else if (op
->src
.reg
== CFI_BP
&& op
->dest
.reg
== CFI_SP
&&
1816 cfa
->base
== CFI_BP
) {
1821 * Restore the original stack pointer (Clang).
1823 cfi
->stack_size
= -cfi
->regs
[CFI_BP
].offset
;
1826 else if (op
->dest
.reg
== cfa
->base
) {
1828 /* mov %reg, %rsp */
1829 if (cfa
->base
== CFI_SP
&&
1830 cfi
->vals
[op
->src
.reg
].base
== CFI_CFA
) {
1833 * This is needed for the rare case
1834 * where GCC does something dumb like:
1836 * lea 0x8(%rsp), %rcx
1840 cfa
->offset
= -cfi
->vals
[op
->src
.reg
].offset
;
1841 cfi
->stack_size
= cfa
->offset
;
1844 cfa
->base
= CFI_UNDEFINED
;
1852 if (op
->dest
.reg
== CFI_SP
&& op
->src
.reg
== CFI_SP
) {
1855 cfi
->stack_size
-= op
->src
.offset
;
1856 if (cfa
->base
== CFI_SP
)
1857 cfa
->offset
-= op
->src
.offset
;
1861 if (op
->dest
.reg
== CFI_SP
&& op
->src
.reg
== CFI_BP
) {
1863 /* lea disp(%rbp), %rsp */
1864 cfi
->stack_size
= -(op
->src
.offset
+ regs
[CFI_BP
].offset
);
1868 if (op
->src
.reg
== CFI_SP
&& cfa
->base
== CFI_SP
) {
1870 /* drap: lea disp(%rsp), %drap */
1871 cfi
->drap_reg
= op
->dest
.reg
;
1874 * lea disp(%rsp), %reg
1876 * This is needed for the rare case where GCC
1877 * does something dumb like:
1879 * lea 0x8(%rsp), %rcx
1883 cfi
->vals
[op
->dest
.reg
].base
= CFI_CFA
;
1884 cfi
->vals
[op
->dest
.reg
].offset
= \
1885 -cfi
->stack_size
+ op
->src
.offset
;
1890 if (cfi
->drap
&& op
->dest
.reg
== CFI_SP
&&
1891 op
->src
.reg
== cfi
->drap_reg
) {
1893 /* drap: lea disp(%drap), %rsp */
1895 cfa
->offset
= cfi
->stack_size
= -op
->src
.offset
;
1896 cfi
->drap_reg
= CFI_UNDEFINED
;
1901 if (op
->dest
.reg
== cfi
->cfa
.base
) {
1902 WARN_FUNC("unsupported stack register modification",
1903 insn
->sec
, insn
->offset
);
1910 if (op
->dest
.reg
!= CFI_SP
||
1911 (cfi
->drap_reg
!= CFI_UNDEFINED
&& cfa
->base
!= CFI_SP
) ||
1912 (cfi
->drap_reg
== CFI_UNDEFINED
&& cfa
->base
!= CFI_BP
)) {
1913 WARN_FUNC("unsupported stack pointer realignment",
1914 insn
->sec
, insn
->offset
);
1918 if (cfi
->drap_reg
!= CFI_UNDEFINED
) {
1919 /* drap: and imm, %rsp */
1920 cfa
->base
= cfi
->drap_reg
;
1921 cfa
->offset
= cfi
->stack_size
= 0;
1926 * Older versions of GCC (4.8ish) realign the stack
1927 * without DRAP, with a frame pointer.
1934 if (!cfi
->drap
&& op
->dest
.reg
== cfa
->base
) {
1940 if (cfi
->drap
&& cfa
->base
== CFI_BP_INDIRECT
&&
1941 op
->dest
.reg
== cfi
->drap_reg
&&
1942 cfi
->drap_offset
== -cfi
->stack_size
) {
1944 /* drap: pop %drap */
1945 cfa
->base
= cfi
->drap_reg
;
1947 cfi
->drap_offset
= -1;
1949 } else if (regs
[op
->dest
.reg
].offset
== -cfi
->stack_size
) {
1952 restore_reg(cfi
, op
->dest
.reg
);
1955 cfi
->stack_size
-= 8;
1956 if (cfa
->base
== CFI_SP
)
1961 case OP_SRC_REG_INDIRECT
:
1962 if (cfi
->drap
&& op
->src
.reg
== CFI_BP
&&
1963 op
->src
.offset
== cfi
->drap_offset
) {
1965 /* drap: mov disp(%rbp), %drap */
1966 cfa
->base
= cfi
->drap_reg
;
1968 cfi
->drap_offset
= -1;
1971 if (cfi
->drap
&& op
->src
.reg
== CFI_BP
&&
1972 op
->src
.offset
== regs
[op
->dest
.reg
].offset
) {
1974 /* drap: mov disp(%rbp), %reg */
1975 restore_reg(cfi
, op
->dest
.reg
);
1977 } else if (op
->src
.reg
== cfa
->base
&&
1978 op
->src
.offset
== regs
[op
->dest
.reg
].offset
+ cfa
->offset
) {
1980 /* mov disp(%rbp), %reg */
1981 /* mov disp(%rsp), %reg */
1982 restore_reg(cfi
, op
->dest
.reg
);
1988 WARN_FUNC("unknown stack-related instruction",
1989 insn
->sec
, insn
->offset
);
1997 cfi
->stack_size
+= 8;
1998 if (cfa
->base
== CFI_SP
)
2001 if (op
->src
.type
!= OP_SRC_REG
)
2005 if (op
->src
.reg
== cfa
->base
&& op
->src
.reg
== cfi
->drap_reg
) {
2007 /* drap: push %drap */
2008 cfa
->base
= CFI_BP_INDIRECT
;
2009 cfa
->offset
= -cfi
->stack_size
;
2011 /* save drap so we know when to restore it */
2012 cfi
->drap_offset
= -cfi
->stack_size
;
2014 } else if (op
->src
.reg
== CFI_BP
&& cfa
->base
== cfi
->drap_reg
) {
2016 /* drap: push %rbp */
2017 cfi
->stack_size
= 0;
2019 } else if (regs
[op
->src
.reg
].base
== CFI_UNDEFINED
) {
2021 /* drap: push %reg */
2022 save_reg(cfi
, op
->src
.reg
, CFI_BP
, -cfi
->stack_size
);
2028 save_reg(cfi
, op
->src
.reg
, CFI_CFA
, -cfi
->stack_size
);
2031 /* detect when asm code uses rbp as a scratch register */
2032 if (!no_fp
&& insn
->func
&& op
->src
.reg
== CFI_BP
&&
2033 cfa
->base
!= CFI_BP
)
2034 cfi
->bp_scratch
= true;
2037 case OP_DEST_REG_INDIRECT
:
2040 if (op
->src
.reg
== cfa
->base
&& op
->src
.reg
== cfi
->drap_reg
) {
2042 /* drap: mov %drap, disp(%rbp) */
2043 cfa
->base
= CFI_BP_INDIRECT
;
2044 cfa
->offset
= op
->dest
.offset
;
2046 /* save drap offset so we know when to restore it */
2047 cfi
->drap_offset
= op
->dest
.offset
;
2050 else if (regs
[op
->src
.reg
].base
== CFI_UNDEFINED
) {
2052 /* drap: mov reg, disp(%rbp) */
2053 save_reg(cfi
, op
->src
.reg
, CFI_BP
, op
->dest
.offset
);
2056 } else if (op
->dest
.reg
== cfa
->base
) {
2058 /* mov reg, disp(%rbp) */
2059 /* mov reg, disp(%rsp) */
2060 save_reg(cfi
, op
->src
.reg
, CFI_CFA
,
2061 op
->dest
.offset
- cfi
->cfa
.offset
);
2067 if ((!cfi
->drap
&& cfa
->base
!= CFI_BP
) ||
2068 (cfi
->drap
&& cfa
->base
!= cfi
->drap_reg
)) {
2069 WARN_FUNC("leave instruction with modified stack frame",
2070 insn
->sec
, insn
->offset
);
2074 /* leave (mov %rbp, %rsp; pop %rbp) */
2076 cfi
->stack_size
= -cfi
->regs
[CFI_BP
].offset
- 8;
2077 restore_reg(cfi
, CFI_BP
);
2087 if (op
->src
.type
!= OP_SRC_POP
&& op
->src
.type
!= OP_SRC_POPF
) {
2088 WARN_FUNC("unknown stack-related memory operation",
2089 insn
->sec
, insn
->offset
);
2094 cfi
->stack_size
-= 8;
2095 if (cfa
->base
== CFI_SP
)
2101 WARN_FUNC("unknown stack-related instruction",
2102 insn
->sec
, insn
->offset
);
2109 static int handle_insn_ops(struct instruction
*insn
, struct insn_state
*state
)
2111 struct stack_op
*op
;
2113 list_for_each_entry(op
, &insn
->stack_ops
, list
) {
2114 struct cfi_state old_cfi
= state
->cfi
;
2117 res
= update_cfi_state(insn
, &state
->cfi
, op
);
2121 if (insn
->alt_group
&& memcmp(&state
->cfi
, &old_cfi
, sizeof(struct cfi_state
))) {
2122 WARN_FUNC("alternative modifies stack", insn
->sec
, insn
->offset
);
2126 if (op
->dest
.type
== OP_DEST_PUSHF
) {
2127 if (!state
->uaccess_stack
) {
2128 state
->uaccess_stack
= 1;
2129 } else if (state
->uaccess_stack
>> 31) {
2130 WARN_FUNC("PUSHF stack exhausted",
2131 insn
->sec
, insn
->offset
);
2134 state
->uaccess_stack
<<= 1;
2135 state
->uaccess_stack
|= state
->uaccess
;
2138 if (op
->src
.type
== OP_SRC_POPF
) {
2139 if (state
->uaccess_stack
) {
2140 state
->uaccess
= state
->uaccess_stack
& 1;
2141 state
->uaccess_stack
>>= 1;
2142 if (state
->uaccess_stack
== 1)
2143 state
->uaccess_stack
= 0;
2151 static bool insn_cfi_match(struct instruction
*insn
, struct cfi_state
*cfi2
)
2153 struct cfi_state
*cfi1
= &insn
->cfi
;
2156 if (memcmp(&cfi1
->cfa
, &cfi2
->cfa
, sizeof(cfi1
->cfa
))) {
2158 WARN_FUNC("stack state mismatch: cfa1=%d%+d cfa2=%d%+d",
2159 insn
->sec
, insn
->offset
,
2160 cfi1
->cfa
.base
, cfi1
->cfa
.offset
,
2161 cfi2
->cfa
.base
, cfi2
->cfa
.offset
);
2163 } else if (memcmp(&cfi1
->regs
, &cfi2
->regs
, sizeof(cfi1
->regs
))) {
2164 for (i
= 0; i
< CFI_NUM_REGS
; i
++) {
2165 if (!memcmp(&cfi1
->regs
[i
], &cfi2
->regs
[i
],
2166 sizeof(struct cfi_reg
)))
2169 WARN_FUNC("stack state mismatch: reg1[%d]=%d%+d reg2[%d]=%d%+d",
2170 insn
->sec
, insn
->offset
,
2171 i
, cfi1
->regs
[i
].base
, cfi1
->regs
[i
].offset
,
2172 i
, cfi2
->regs
[i
].base
, cfi2
->regs
[i
].offset
);
2176 } else if (cfi1
->type
!= cfi2
->type
) {
2178 WARN_FUNC("stack state mismatch: type1=%d type2=%d",
2179 insn
->sec
, insn
->offset
, cfi1
->type
, cfi2
->type
);
2181 } else if (cfi1
->drap
!= cfi2
->drap
||
2182 (cfi1
->drap
&& cfi1
->drap_reg
!= cfi2
->drap_reg
) ||
2183 (cfi1
->drap
&& cfi1
->drap_offset
!= cfi2
->drap_offset
)) {
2185 WARN_FUNC("stack state mismatch: drap1=%d(%d,%d) drap2=%d(%d,%d)",
2186 insn
->sec
, insn
->offset
,
2187 cfi1
->drap
, cfi1
->drap_reg
, cfi1
->drap_offset
,
2188 cfi2
->drap
, cfi2
->drap_reg
, cfi2
->drap_offset
);
2196 static inline bool func_uaccess_safe(struct symbol
*func
)
2199 return func
->uaccess_safe
;
2204 static inline const char *call_dest_name(struct instruction
*insn
)
2206 if (insn
->call_dest
)
2207 return insn
->call_dest
->name
;
2212 static inline bool noinstr_call_dest(struct symbol
*func
)
2215 * We can't deal with indirect function calls at present;
2216 * assume they're instrumented.
2222 * If the symbol is from a noinstr section; we good.
2224 if (func
->sec
->noinstr
)
2228 * The __ubsan_handle_*() calls are like WARN(), they only happen when
2229 * something 'BAD' happened. At the risk of taking the machine down,
2230 * let them proceed to get the message out.
2232 if (!strncmp(func
->name
, "__ubsan_handle_", 15))
2238 static int validate_call(struct instruction
*insn
, struct insn_state
*state
)
2240 if (state
->noinstr
&& state
->instr
<= 0 &&
2241 !noinstr_call_dest(insn
->call_dest
)) {
2242 WARN_FUNC("call to %s() leaves .noinstr.text section",
2243 insn
->sec
, insn
->offset
, call_dest_name(insn
));
2247 if (state
->uaccess
&& !func_uaccess_safe(insn
->call_dest
)) {
2248 WARN_FUNC("call to %s() with UACCESS enabled",
2249 insn
->sec
, insn
->offset
, call_dest_name(insn
));
2254 WARN_FUNC("call to %s() with DF set",
2255 insn
->sec
, insn
->offset
, call_dest_name(insn
));
2262 static int validate_sibling_call(struct instruction
*insn
, struct insn_state
*state
)
2264 if (has_modified_stack_frame(insn
, state
)) {
2265 WARN_FUNC("sibling call from callable instruction with modified stack frame",
2266 insn
->sec
, insn
->offset
);
2270 return validate_call(insn
, state
);
2273 static int validate_return(struct symbol
*func
, struct instruction
*insn
, struct insn_state
*state
)
2275 if (state
->noinstr
&& state
->instr
> 0) {
2276 WARN_FUNC("return with instrumentation enabled",
2277 insn
->sec
, insn
->offset
);
2281 if (state
->uaccess
&& !func_uaccess_safe(func
)) {
2282 WARN_FUNC("return with UACCESS enabled",
2283 insn
->sec
, insn
->offset
);
2287 if (!state
->uaccess
&& func_uaccess_safe(func
)) {
2288 WARN_FUNC("return with UACCESS disabled from a UACCESS-safe function",
2289 insn
->sec
, insn
->offset
);
2294 WARN_FUNC("return with DF set",
2295 insn
->sec
, insn
->offset
);
2299 if (func
&& has_modified_stack_frame(insn
, state
)) {
2300 WARN_FUNC("return with modified stack frame",
2301 insn
->sec
, insn
->offset
);
2305 if (state
->cfi
.bp_scratch
) {
2306 WARN_FUNC("BP used as a scratch register",
2307 insn
->sec
, insn
->offset
);
2315 * Alternatives should not contain any ORC entries, this in turn means they
2316 * should not contain any CFI ops, which implies all instructions should have
2317 * the same same CFI state.
2319 * It is possible to constuct alternatives that have unreachable holes that go
2320 * unreported (because they're NOPs), such holes would result in CFI_UNDEFINED
2321 * states which then results in ORC entries, which we just said we didn't want.
2323 * Avoid them by copying the CFI entry of the first instruction into the whole
2326 static void fill_alternative_cfi(struct objtool_file
*file
, struct instruction
*insn
)
2328 struct instruction
*first_insn
= insn
;
2329 int alt_group
= insn
->alt_group
;
2331 sec_for_each_insn_continue(file
, insn
) {
2332 if (insn
->alt_group
!= alt_group
)
2334 insn
->cfi
= first_insn
->cfi
;
2339 * Follow the branch starting at the given instruction, and recursively follow
2340 * any other branches (jumps). Meanwhile, track the frame pointer state at
2341 * each instruction and validate all the rules described in
2342 * tools/objtool/Documentation/stack-validation.txt.
2344 static int validate_branch(struct objtool_file
*file
, struct symbol
*func
,
2345 struct instruction
*insn
, struct insn_state state
)
2347 struct alternative
*alt
;
2348 struct instruction
*next_insn
;
2349 struct section
*sec
;
2356 next_insn
= next_insn_same_sec(file
, insn
);
2358 if (file
->c_file
&& func
&& insn
->func
&& func
!= insn
->func
->pfunc
) {
2359 WARN("%s() falls through to next function %s()",
2360 func
->name
, insn
->func
->name
);
2364 if (func
&& insn
->ignore
) {
2365 WARN_FUNC("BUG: why am I validating an ignored function?",
2370 visited
= 1 << state
.uaccess
;
2371 if (insn
->visited
) {
2372 if (!insn
->hint
&& !insn_cfi_match(insn
, &state
.cfi
))
2375 if (insn
->visited
& visited
)
2380 state
.instr
+= insn
->instr
;
2383 state
.cfi
= insn
->cfi
;
2385 insn
->cfi
= state
.cfi
;
2387 insn
->visited
|= visited
;
2389 if (!insn
->ignore_alts
&& !list_empty(&insn
->alts
)) {
2390 bool skip_orig
= false;
2392 list_for_each_entry(alt
, &insn
->alts
, list
) {
2396 ret
= validate_branch(file
, func
, alt
->insn
, state
);
2399 BT_FUNC("(alt)", insn
);
2404 if (insn
->alt_group
)
2405 fill_alternative_cfi(file
, insn
);
2411 if (handle_insn_ops(insn
, &state
))
2414 switch (insn
->type
) {
2417 return validate_return(func
, insn
, &state
);
2420 case INSN_CALL_DYNAMIC
:
2421 ret
= validate_call(insn
, &state
);
2425 if (!no_fp
&& func
&& !is_fentry_call(insn
) &&
2426 !has_valid_stack_frame(&state
)) {
2427 WARN_FUNC("call without frame pointer save/setup",
2432 if (dead_end_function(file
, insn
->call_dest
))
2437 case INSN_JUMP_CONDITIONAL
:
2438 case INSN_JUMP_UNCONDITIONAL
:
2439 if (func
&& is_sibling_call(insn
)) {
2440 ret
= validate_sibling_call(insn
, &state
);
2444 } else if (insn
->jump_dest
) {
2445 ret
= validate_branch(file
, func
,
2446 insn
->jump_dest
, state
);
2449 BT_FUNC("(branch)", insn
);
2454 if (insn
->type
== INSN_JUMP_UNCONDITIONAL
)
2459 case INSN_JUMP_DYNAMIC
:
2460 case INSN_JUMP_DYNAMIC_CONDITIONAL
:
2461 if (func
&& is_sibling_call(insn
)) {
2462 ret
= validate_sibling_call(insn
, &state
);
2467 if (insn
->type
== INSN_JUMP_DYNAMIC
)
2472 case INSN_CONTEXT_SWITCH
:
2473 if (func
&& (!next_insn
|| !next_insn
->hint
)) {
2474 WARN_FUNC("unsupported instruction in callable function",
2481 if (state
.uaccess
) {
2482 WARN_FUNC("recursive UACCESS enable", sec
, insn
->offset
);
2486 state
.uaccess
= true;
2490 if (!state
.uaccess
&& func
) {
2491 WARN_FUNC("redundant UACCESS disable", sec
, insn
->offset
);
2495 if (func_uaccess_safe(func
) && !state
.uaccess_stack
) {
2496 WARN_FUNC("UACCESS-safe disables UACCESS", sec
, insn
->offset
);
2500 state
.uaccess
= false;
2505 WARN_FUNC("recursive STD", sec
, insn
->offset
);
2511 if (!state
.df
&& func
)
2512 WARN_FUNC("redundant CLD", sec
, insn
->offset
);
2525 if (state
.cfi
.cfa
.base
== CFI_UNDEFINED
)
2527 WARN("%s: unexpected end of section", sec
->name
);
2537 static int validate_unwind_hints(struct objtool_file
*file
, struct section
*sec
)
2539 struct instruction
*insn
;
2540 struct insn_state state
;
2541 int ret
, warnings
= 0;
2546 init_insn_state(&state
, sec
);
2549 insn
= find_insn(file
, sec
, 0);
2553 insn
= list_first_entry(&file
->insn_list
, typeof(*insn
), list
);
2556 while (&insn
->list
!= &file
->insn_list
&& (!sec
|| insn
->sec
== sec
)) {
2557 if (insn
->hint
&& !insn
->visited
) {
2558 ret
= validate_branch(file
, insn
->func
, insn
, state
);
2559 if (ret
&& backtrace
)
2560 BT_FUNC("<=== (hint)", insn
);
2564 insn
= list_next_entry(insn
, list
);
2570 static int validate_retpoline(struct objtool_file
*file
)
2572 struct instruction
*insn
;
2575 for_each_insn(file
, insn
) {
2576 if (insn
->type
!= INSN_JUMP_DYNAMIC
&&
2577 insn
->type
!= INSN_CALL_DYNAMIC
)
2580 if (insn
->retpoline_safe
)
2584 * .init.text code is ran before userspace and thus doesn't
2585 * strictly need retpolines, except for modules which are
2586 * loaded late, they very much do need retpoline in their
2589 if (!strcmp(insn
->sec
->name
, ".init.text") && !module
)
2592 WARN_FUNC("indirect %s found in RETPOLINE build",
2593 insn
->sec
, insn
->offset
,
2594 insn
->type
== INSN_JUMP_DYNAMIC
? "jump" : "call");
2602 static bool is_kasan_insn(struct instruction
*insn
)
2604 return (insn
->type
== INSN_CALL
&&
2605 !strcmp(insn
->call_dest
->name
, "__asan_handle_no_return"));
2608 static bool is_ubsan_insn(struct instruction
*insn
)
2610 return (insn
->type
== INSN_CALL
&&
2611 !strcmp(insn
->call_dest
->name
,
2612 "__ubsan_handle_builtin_unreachable"));
2615 static bool ignore_unreachable_insn(struct instruction
*insn
)
2619 if (insn
->ignore
|| insn
->type
== INSN_NOP
)
2623 * Ignore any unused exceptions. This can happen when a whitelisted
2624 * function has an exception table entry.
2626 * Also ignore alternative replacement instructions. This can happen
2627 * when a whitelisted function uses one of the ALTERNATIVE macros.
2629 if (!strcmp(insn
->sec
->name
, ".fixup") ||
2630 !strcmp(insn
->sec
->name
, ".altinstr_replacement") ||
2631 !strcmp(insn
->sec
->name
, ".altinstr_aux"))
2638 * CONFIG_UBSAN_TRAP inserts a UD2 when it sees
2639 * __builtin_unreachable(). The BUG() macro has an unreachable() after
2640 * the UD2, which causes GCC's undefined trap logic to emit another UD2
2641 * (or occasionally a JMP to UD2).
2643 if (list_prev_entry(insn
, list
)->dead_end
&&
2644 (insn
->type
== INSN_BUG
||
2645 (insn
->type
== INSN_JUMP_UNCONDITIONAL
&&
2646 insn
->jump_dest
&& insn
->jump_dest
->type
== INSN_BUG
)))
2650 * Check if this (or a subsequent) instruction is related to
2651 * CONFIG_UBSAN or CONFIG_KASAN.
2653 * End the search at 5 instructions to avoid going into the weeds.
2655 for (i
= 0; i
< 5; i
++) {
2657 if (is_kasan_insn(insn
) || is_ubsan_insn(insn
))
2660 if (insn
->type
== INSN_JUMP_UNCONDITIONAL
) {
2661 if (insn
->jump_dest
&&
2662 insn
->jump_dest
->func
== insn
->func
) {
2663 insn
= insn
->jump_dest
;
2670 if (insn
->offset
+ insn
->len
>= insn
->func
->offset
+ insn
->func
->len
)
2673 insn
= list_next_entry(insn
, list
);
2679 static int validate_symbol(struct objtool_file
*file
, struct section
*sec
,
2680 struct symbol
*sym
, struct insn_state
*state
)
2682 struct instruction
*insn
;
2686 WARN("%s() is missing an ELF size annotation", sym
->name
);
2690 if (sym
->pfunc
!= sym
|| sym
->alias
!= sym
)
2693 insn
= find_insn(file
, sec
, sym
->offset
);
2694 if (!insn
|| insn
->ignore
|| insn
->visited
)
2697 state
->uaccess
= sym
->uaccess_safe
;
2699 ret
= validate_branch(file
, insn
->func
, insn
, *state
);
2700 if (ret
&& backtrace
)
2701 BT_FUNC("<=== (sym)", insn
);
2705 static int validate_section(struct objtool_file
*file
, struct section
*sec
)
2707 struct insn_state state
;
2708 struct symbol
*func
;
2711 list_for_each_entry(func
, &sec
->symbol_list
, list
) {
2712 if (func
->type
!= STT_FUNC
)
2715 init_insn_state(&state
, sec
);
2716 state
.cfi
.cfa
= initial_func_cfi
.cfa
;
2717 memcpy(&state
.cfi
.regs
, &initial_func_cfi
.regs
,
2718 CFI_NUM_REGS
* sizeof(struct cfi_reg
));
2719 state
.cfi
.stack_size
= initial_func_cfi
.cfa
.offset
;
2721 warnings
+= validate_symbol(file
, sec
, func
, &state
);
2727 static int validate_vmlinux_functions(struct objtool_file
*file
)
2729 struct section
*sec
;
2732 sec
= find_section_by_name(file
->elf
, ".noinstr.text");
2734 warnings
+= validate_section(file
, sec
);
2735 warnings
+= validate_unwind_hints(file
, sec
);
2738 sec
= find_section_by_name(file
->elf
, ".entry.text");
2740 warnings
+= validate_section(file
, sec
);
2741 warnings
+= validate_unwind_hints(file
, sec
);
2747 static int validate_functions(struct objtool_file
*file
)
2749 struct section
*sec
;
2752 for_each_sec(file
, sec
) {
2753 if (!(sec
->sh
.sh_flags
& SHF_EXECINSTR
))
2756 warnings
+= validate_section(file
, sec
);
2762 static int validate_reachable_instructions(struct objtool_file
*file
)
2764 struct instruction
*insn
;
2766 if (file
->ignore_unreachables
)
2769 for_each_insn(file
, insn
) {
2770 if (insn
->visited
|| ignore_unreachable_insn(insn
))
2773 WARN_FUNC("unreachable instruction", insn
->sec
, insn
->offset
);
2780 static struct objtool_file file
;
2782 int check(const char *_objname
, bool orc
)
2784 int ret
, warnings
= 0;
2788 file
.elf
= elf_open_read(objname
, O_RDWR
);
2792 INIT_LIST_HEAD(&file
.insn_list
);
2793 hash_init(file
.insn_hash
);
2794 file
.c_file
= !vmlinux
&& find_section_by_name(file
.elf
, ".comment");
2795 file
.ignore_unreachables
= no_unreachable
;
2798 arch_initial_func_cfi_state(&initial_func_cfi
);
2800 ret
= decode_sections(&file
);
2805 if (list_empty(&file
.insn_list
))
2808 if (vmlinux
&& !validate_dup
) {
2809 ret
= validate_vmlinux_functions(&file
);
2818 ret
= validate_retpoline(&file
);
2824 ret
= validate_functions(&file
);
2829 ret
= validate_unwind_hints(&file
, NULL
);
2835 ret
= validate_reachable_instructions(&file
);
2842 ret
= create_orc(&file
);
2846 ret
= create_orc_sections(&file
);
2851 if (file
.elf
->changed
) {
2852 ret
= elf_write(file
.elf
);
2860 * Fatal error. The binary is corrupt or otherwise broken in
2861 * some way, or objtool itself is broken. Fail the kernel