1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2015-2017 Josh Poimboeuf <jpoimboe@redhat.com>
12 #include <objtool/builtin.h>
13 #include <objtool/cfi.h>
14 #include <objtool/arch.h>
15 #include <objtool/check.h>
16 #include <objtool/special.h>
17 #include <objtool/warn.h>
18 #include <objtool/endianness.h>
20 #include <linux/objtool.h>
21 #include <linux/hashtable.h>
22 #include <linux/kernel.h>
23 #include <linux/static_call_types.h>
26 struct list_head list
;
27 struct instruction
*insn
;
31 static unsigned long nr_cfi
, nr_cfi_reused
, nr_cfi_cache
;
33 static struct cfi_init_state initial_func_cfi
;
34 static struct cfi_state init_cfi
;
35 static struct cfi_state func_cfi
;
37 struct instruction
*find_insn(struct objtool_file
*file
,
38 struct section
*sec
, unsigned long offset
)
40 struct instruction
*insn
;
42 hash_for_each_possible(file
->insn_hash
, insn
, hash
, sec_offset_hash(sec
, offset
)) {
43 if (insn
->sec
== sec
&& insn
->offset
== offset
)
50 static struct instruction
*next_insn_same_sec(struct objtool_file
*file
,
51 struct instruction
*insn
)
53 struct instruction
*next
= list_next_entry(insn
, list
);
55 if (!next
|| &next
->list
== &file
->insn_list
|| next
->sec
!= insn
->sec
)
61 static struct instruction
*next_insn_same_func(struct objtool_file
*file
,
62 struct instruction
*insn
)
64 struct instruction
*next
= list_next_entry(insn
, list
);
65 struct symbol
*func
= insn
->func
;
70 if (&next
->list
!= &file
->insn_list
&& next
->func
== func
)
73 /* Check if we're already in the subfunction: */
74 if (func
== func
->cfunc
)
77 /* Move to the subfunction: */
78 return find_insn(file
, func
->cfunc
->sec
, func
->cfunc
->offset
);
81 static struct instruction
*prev_insn_same_sym(struct objtool_file
*file
,
82 struct instruction
*insn
)
84 struct instruction
*prev
= list_prev_entry(insn
, list
);
86 if (&prev
->list
!= &file
->insn_list
&& prev
->func
== insn
->func
)
92 #define func_for_each_insn(file, func, insn) \
93 for (insn = find_insn(file, func->sec, func->offset); \
95 insn = next_insn_same_func(file, insn))
97 #define sym_for_each_insn(file, sym, insn) \
98 for (insn = find_insn(file, sym->sec, sym->offset); \
99 insn && &insn->list != &file->insn_list && \
100 insn->sec == sym->sec && \
101 insn->offset < sym->offset + sym->len; \
102 insn = list_next_entry(insn, list))
104 #define sym_for_each_insn_continue_reverse(file, sym, insn) \
105 for (insn = list_prev_entry(insn, list); \
106 &insn->list != &file->insn_list && \
107 insn->sec == sym->sec && insn->offset >= sym->offset; \
108 insn = list_prev_entry(insn, list))
110 #define sec_for_each_insn_from(file, insn) \
111 for (; insn; insn = next_insn_same_sec(file, insn))
113 #define sec_for_each_insn_continue(file, insn) \
114 for (insn = next_insn_same_sec(file, insn); insn; \
115 insn = next_insn_same_sec(file, insn))
117 static bool is_jump_table_jump(struct instruction
*insn
)
119 struct alt_group
*alt_group
= insn
->alt_group
;
121 if (insn
->jump_table
)
124 /* Retpoline alternative for a jump table? */
125 return alt_group
&& alt_group
->orig_group
&&
126 alt_group
->orig_group
->first_insn
->jump_table
;
129 static bool is_sibling_call(struct instruction
*insn
)
132 * Assume only ELF functions can make sibling calls. This ensures
133 * sibling call detection consistency between vmlinux.o and individual
139 /* An indirect jump is either a sibling call or a jump to a table. */
140 if (insn
->type
== INSN_JUMP_DYNAMIC
)
141 return !is_jump_table_jump(insn
);
143 /* add_jump_destinations() sets insn->call_dest for sibling calls. */
144 return (is_static_jump(insn
) && insn
->call_dest
);
148 * This checks to see if the given function is a "noreturn" function.
150 * For global functions which are outside the scope of this object file, we
151 * have to keep a manual list of them.
153 * For local functions, we have to detect them manually by simply looking for
154 * the lack of a return instruction.
156 static bool __dead_end_function(struct objtool_file
*file
, struct symbol
*func
,
160 struct instruction
*insn
;
164 * Unfortunately these have to be hard coded because the noreturn
165 * attribute isn't provided in ELF data.
167 static const char * const global_noreturns
[] = {
172 "__module_put_and_exit",
178 "machine_real_restart",
179 "rewind_stack_do_exit",
180 "kunit_try_catch_throw",
182 "cpu_bringup_and_idle",
188 if (func
->bind
== STB_WEAK
)
191 if (func
->bind
== STB_GLOBAL
)
192 for (i
= 0; i
< ARRAY_SIZE(global_noreturns
); i
++)
193 if (!strcmp(func
->name
, global_noreturns
[i
]))
199 insn
= find_insn(file
, func
->sec
, func
->offset
);
203 func_for_each_insn(file
, func
, insn
) {
206 if (insn
->type
== INSN_RETURN
)
214 * A function can have a sibling call instead of a return. In that
215 * case, the function's dead-end status depends on whether the target
216 * of the sibling call returns.
218 func_for_each_insn(file
, func
, insn
) {
219 if (is_sibling_call(insn
)) {
220 struct instruction
*dest
= insn
->jump_dest
;
223 /* sibling call to another file */
226 /* local sibling call */
227 if (recursion
== 5) {
229 * Infinite recursion: two functions have
230 * sibling calls to each other. This is a very
231 * rare case. It means they aren't dead ends.
236 return __dead_end_function(file
, dest
->func
, recursion
+1);
243 static bool dead_end_function(struct objtool_file
*file
, struct symbol
*func
)
245 return __dead_end_function(file
, func
, 0);
248 static void init_cfi_state(struct cfi_state
*cfi
)
252 for (i
= 0; i
< CFI_NUM_REGS
; i
++) {
253 cfi
->regs
[i
].base
= CFI_UNDEFINED
;
254 cfi
->vals
[i
].base
= CFI_UNDEFINED
;
256 cfi
->cfa
.base
= CFI_UNDEFINED
;
257 cfi
->drap_reg
= CFI_UNDEFINED
;
258 cfi
->drap_offset
= -1;
261 static void init_insn_state(struct insn_state
*state
, struct section
*sec
)
263 memset(state
, 0, sizeof(*state
));
264 init_cfi_state(&state
->cfi
);
267 * We need the full vmlinux for noinstr validation, otherwise we can
268 * not correctly determine insn->call_dest->sec (external symbols do
269 * not have a section).
271 if (vmlinux
&& noinstr
&& sec
)
272 state
->noinstr
= sec
->noinstr
;
275 static struct cfi_state
*cfi_alloc(void)
277 struct cfi_state
*cfi
= calloc(sizeof(struct cfi_state
), 1);
279 WARN("calloc failed");
287 static struct hlist_head
*cfi_hash
;
289 static inline bool cficmp(struct cfi_state
*cfi1
, struct cfi_state
*cfi2
)
291 return memcmp((void *)cfi1
+ sizeof(cfi1
->hash
),
292 (void *)cfi2
+ sizeof(cfi2
->hash
),
293 sizeof(struct cfi_state
) - sizeof(struct hlist_node
));
296 static inline u32
cfi_key(struct cfi_state
*cfi
)
298 return jhash((void *)cfi
+ sizeof(cfi
->hash
),
299 sizeof(*cfi
) - sizeof(cfi
->hash
), 0);
302 static struct cfi_state
*cfi_hash_find_or_add(struct cfi_state
*cfi
)
304 struct hlist_head
*head
= &cfi_hash
[hash_min(cfi_key(cfi
), cfi_bits
)];
305 struct cfi_state
*obj
;
307 hlist_for_each_entry(obj
, head
, hash
) {
308 if (!cficmp(cfi
, obj
)) {
316 hlist_add_head(&obj
->hash
, head
);
321 static void cfi_hash_add(struct cfi_state
*cfi
)
323 struct hlist_head
*head
= &cfi_hash
[hash_min(cfi_key(cfi
), cfi_bits
)];
325 hlist_add_head(&cfi
->hash
, head
);
328 static void *cfi_hash_alloc(unsigned long size
)
330 cfi_bits
= max(10, ilog2(size
));
331 cfi_hash
= mmap(NULL
, sizeof(struct hlist_head
) << cfi_bits
,
332 PROT_READ
|PROT_WRITE
,
333 MAP_PRIVATE
|MAP_ANON
, -1, 0);
334 if (cfi_hash
== (void *)-1L) {
335 WARN("mmap fail cfi_hash");
338 printf("cfi_bits: %d\n", cfi_bits
);
344 static unsigned long nr_insns
;
345 static unsigned long nr_insns_visited
;
348 * Call the arch-specific instruction decoder for all the instructions and add
349 * them to the global instruction list.
351 static int decode_instructions(struct objtool_file
*file
)
355 unsigned long offset
;
356 struct instruction
*insn
;
359 for_each_sec(file
, sec
) {
361 if (!(sec
->sh
.sh_flags
& SHF_EXECINSTR
))
364 if (strcmp(sec
->name
, ".altinstr_replacement") &&
365 strcmp(sec
->name
, ".altinstr_aux") &&
366 strncmp(sec
->name
, ".discard.", 9))
369 if (!strcmp(sec
->name
, ".noinstr.text") ||
370 !strcmp(sec
->name
, ".entry.text"))
373 for (offset
= 0; offset
< sec
->sh
.sh_size
; offset
+= insn
->len
) {
374 insn
= malloc(sizeof(*insn
));
376 WARN("malloc failed");
379 memset(insn
, 0, sizeof(*insn
));
380 INIT_LIST_HEAD(&insn
->alts
);
381 INIT_LIST_HEAD(&insn
->stack_ops
);
384 insn
->offset
= offset
;
386 ret
= arch_decode_instruction(file
->elf
, sec
, offset
,
387 sec
->sh
.sh_size
- offset
,
388 &insn
->len
, &insn
->type
,
394 hash_add(file
->insn_hash
, &insn
->hash
, sec_offset_hash(sec
, insn
->offset
));
395 list_add_tail(&insn
->list
, &file
->insn_list
);
399 list_for_each_entry(func
, &sec
->symbol_list
, list
) {
400 if (func
->type
!= STT_FUNC
|| func
->alias
!= func
)
403 if (!find_insn(file
, sec
, func
->offset
)) {
404 WARN("%s(): can't find starting instruction",
409 sym_for_each_insn(file
, func
, insn
)
415 printf("nr_insns: %lu\n", nr_insns
);
424 static struct instruction
*find_last_insn(struct objtool_file
*file
,
427 struct instruction
*insn
= NULL
;
429 unsigned int end
= (sec
->sh
.sh_size
> 10) ? sec
->sh
.sh_size
- 10 : 0;
431 for (offset
= sec
->sh
.sh_size
- 1; offset
>= end
&& !insn
; offset
--)
432 insn
= find_insn(file
, sec
, offset
);
438 * Mark "ud2" instructions and manually annotated dead ends.
440 static int add_dead_ends(struct objtool_file
*file
)
444 struct instruction
*insn
;
447 * By default, "ud2" is a dead end unless otherwise annotated, because
448 * GCC 7 inserts it for certain divide-by-zero cases.
450 for_each_insn(file
, insn
)
451 if (insn
->type
== INSN_BUG
)
452 insn
->dead_end
= true;
455 * Check for manually annotated dead ends.
457 sec
= find_section_by_name(file
->elf
, ".rela.discard.unreachable");
461 list_for_each_entry(reloc
, &sec
->reloc_list
, list
) {
462 if (reloc
->sym
->type
!= STT_SECTION
) {
463 WARN("unexpected relocation symbol type in %s", sec
->name
);
466 insn
= find_insn(file
, reloc
->sym
->sec
, reloc
->addend
);
468 insn
= list_prev_entry(insn
, list
);
469 else if (reloc
->addend
== reloc
->sym
->sec
->sh
.sh_size
) {
470 insn
= find_last_insn(file
, reloc
->sym
->sec
);
472 WARN("can't find unreachable insn at %s+0x%" PRIx64
,
473 reloc
->sym
->sec
->name
, reloc
->addend
);
477 WARN("can't find unreachable insn at %s+0x%" PRIx64
,
478 reloc
->sym
->sec
->name
, reloc
->addend
);
482 insn
->dead_end
= true;
487 * These manually annotated reachable checks are needed for GCC 4.4,
488 * where the Linux unreachable() macro isn't supported. In that case
489 * GCC doesn't know the "ud2" is fatal, so it generates code as if it's
492 sec
= find_section_by_name(file
->elf
, ".rela.discard.reachable");
496 list_for_each_entry(reloc
, &sec
->reloc_list
, list
) {
497 if (reloc
->sym
->type
!= STT_SECTION
) {
498 WARN("unexpected relocation symbol type in %s", sec
->name
);
501 insn
= find_insn(file
, reloc
->sym
->sec
, reloc
->addend
);
503 insn
= list_prev_entry(insn
, list
);
504 else if (reloc
->addend
== reloc
->sym
->sec
->sh
.sh_size
) {
505 insn
= find_last_insn(file
, reloc
->sym
->sec
);
507 WARN("can't find reachable insn at %s+0x%" PRIx64
,
508 reloc
->sym
->sec
->name
, reloc
->addend
);
512 WARN("can't find reachable insn at %s+0x%" PRIx64
,
513 reloc
->sym
->sec
->name
, reloc
->addend
);
517 insn
->dead_end
= false;
523 static int create_static_call_sections(struct objtool_file
*file
)
526 struct static_call_site
*site
;
527 struct instruction
*insn
;
528 struct symbol
*key_sym
;
529 char *key_name
, *tmp
;
532 sec
= find_section_by_name(file
->elf
, ".static_call_sites");
534 INIT_LIST_HEAD(&file
->static_call_list
);
535 WARN("file already has .static_call_sites section, skipping");
539 if (list_empty(&file
->static_call_list
))
543 list_for_each_entry(insn
, &file
->static_call_list
, call_node
)
546 sec
= elf_create_section(file
->elf
, ".static_call_sites", SHF_WRITE
,
547 sizeof(struct static_call_site
), idx
);
552 list_for_each_entry(insn
, &file
->static_call_list
, call_node
) {
554 site
= (struct static_call_site
*)sec
->data
->d_buf
+ idx
;
555 memset(site
, 0, sizeof(struct static_call_site
));
557 /* populate reloc for 'addr' */
558 if (elf_add_reloc_to_insn(file
->elf
, sec
,
559 idx
* sizeof(struct static_call_site
),
561 insn
->sec
, insn
->offset
))
564 /* find key symbol */
565 key_name
= strdup(insn
->call_dest
->name
);
570 if (strncmp(key_name
, STATIC_CALL_TRAMP_PREFIX_STR
,
571 STATIC_CALL_TRAMP_PREFIX_LEN
)) {
572 WARN("static_call: trampoline name malformed: %s", key_name
);
575 tmp
= key_name
+ STATIC_CALL_TRAMP_PREFIX_LEN
- STATIC_CALL_KEY_PREFIX_LEN
;
576 memcpy(tmp
, STATIC_CALL_KEY_PREFIX_STR
, STATIC_CALL_KEY_PREFIX_LEN
);
578 key_sym
= find_symbol_by_name(file
->elf
, tmp
);
581 WARN("static_call: can't find static_call_key symbol: %s", tmp
);
586 * For modules(), the key might not be exported, which
587 * means the module can make static calls but isn't
588 * allowed to change them.
590 * In that case we temporarily set the key to be the
591 * trampoline address. This is fixed up in
592 * static_call_add_module().
594 key_sym
= insn
->call_dest
;
598 /* populate reloc for 'key' */
599 if (elf_add_reloc(file
->elf
, sec
,
600 idx
* sizeof(struct static_call_site
) + 4,
601 R_X86_64_PC32
, key_sym
,
602 is_sibling_call(insn
) * STATIC_CALL_SITE_TAIL
))
611 static int create_retpoline_sites_sections(struct objtool_file
*file
)
613 struct instruction
*insn
;
617 sec
= find_section_by_name(file
->elf
, ".retpoline_sites");
619 WARN("file already has .retpoline_sites, skipping");
624 list_for_each_entry(insn
, &file
->retpoline_call_list
, call_node
)
630 sec
= elf_create_section(file
->elf
, ".retpoline_sites", 0,
633 WARN("elf_create_section: .retpoline_sites");
638 list_for_each_entry(insn
, &file
->retpoline_call_list
, call_node
) {
640 int *site
= (int *)sec
->data
->d_buf
+ idx
;
643 if (elf_add_reloc_to_insn(file
->elf
, sec
,
646 insn
->sec
, insn
->offset
)) {
647 WARN("elf_add_reloc_to_insn: .retpoline_sites");
657 static int create_return_sites_sections(struct objtool_file
*file
)
659 struct instruction
*insn
;
663 sec
= find_section_by_name(file
->elf
, ".return_sites");
665 WARN("file already has .return_sites, skipping");
670 list_for_each_entry(insn
, &file
->return_thunk_list
, call_node
)
676 sec
= elf_create_section(file
->elf
, ".return_sites", 0,
679 WARN("elf_create_section: .return_sites");
684 list_for_each_entry(insn
, &file
->return_thunk_list
, call_node
) {
686 int *site
= (int *)sec
->data
->d_buf
+ idx
;
689 if (elf_add_reloc_to_insn(file
->elf
, sec
,
692 insn
->sec
, insn
->offset
)) {
693 WARN("elf_add_reloc_to_insn: .return_sites");
703 static int create_mcount_loc_sections(struct objtool_file
*file
)
707 struct instruction
*insn
;
710 sec
= find_section_by_name(file
->elf
, "__mcount_loc");
712 INIT_LIST_HEAD(&file
->mcount_loc_list
);
713 WARN("file already has __mcount_loc section, skipping");
717 if (list_empty(&file
->mcount_loc_list
))
721 list_for_each_entry(insn
, &file
->mcount_loc_list
, call_node
)
724 sec
= elf_create_section(file
->elf
, "__mcount_loc", 0, sizeof(unsigned long), idx
);
729 list_for_each_entry(insn
, &file
->mcount_loc_list
, call_node
) {
731 loc
= (unsigned long *)sec
->data
->d_buf
+ idx
;
732 memset(loc
, 0, sizeof(unsigned long));
734 if (elf_add_reloc_to_insn(file
->elf
, sec
,
735 idx
* sizeof(unsigned long),
737 insn
->sec
, insn
->offset
))
747 * Warnings shouldn't be reported for ignored functions.
749 static void add_ignores(struct objtool_file
*file
)
751 struct instruction
*insn
;
756 sec
= find_section_by_name(file
->elf
, ".rela.discard.func_stack_frame_non_standard");
760 list_for_each_entry(reloc
, &sec
->reloc_list
, list
) {
761 switch (reloc
->sym
->type
) {
767 func
= find_func_by_offset(reloc
->sym
->sec
, reloc
->addend
);
773 WARN("unexpected relocation symbol type in %s: %d", sec
->name
, reloc
->sym
->type
);
777 func_for_each_insn(file
, func
, insn
)
783 * This is a whitelist of functions that is allowed to be called with AC set.
784 * The list is meant to be minimal and only contains compiler instrumentation
785 * ABI and a few functions used to implement *_{to,from}_user() functions.
787 * These functions must not directly change AC, but may PUSHF/POPF.
789 static const char *uaccess_safe_builtin
[] = {
793 /* KASAN out-of-line */
794 "__asan_loadN_noabort",
795 "__asan_load1_noabort",
796 "__asan_load2_noabort",
797 "__asan_load4_noabort",
798 "__asan_load8_noabort",
799 "__asan_load16_noabort",
800 "__asan_storeN_noabort",
801 "__asan_store1_noabort",
802 "__asan_store2_noabort",
803 "__asan_store4_noabort",
804 "__asan_store8_noabort",
805 "__asan_store16_noabort",
806 "__kasan_check_read",
807 "__kasan_check_write",
809 "__asan_report_load_n_noabort",
810 "__asan_report_load1_noabort",
811 "__asan_report_load2_noabort",
812 "__asan_report_load4_noabort",
813 "__asan_report_load8_noabort",
814 "__asan_report_load16_noabort",
815 "__asan_report_store_n_noabort",
816 "__asan_report_store1_noabort",
817 "__asan_report_store2_noabort",
818 "__asan_report_store4_noabort",
819 "__asan_report_store8_noabort",
820 "__asan_report_store16_noabort",
822 "__kcsan_check_access",
823 "kcsan_found_watchpoint",
824 "kcsan_setup_watchpoint",
825 "kcsan_check_scoped_accesses",
826 "kcsan_disable_current",
827 "kcsan_enable_current_nowarn",
832 "__tsan_write_range",
843 "__tsan_read_write1",
844 "__tsan_read_write2",
845 "__tsan_read_write4",
846 "__tsan_read_write8",
847 "__tsan_read_write16",
848 "__tsan_atomic8_load",
849 "__tsan_atomic16_load",
850 "__tsan_atomic32_load",
851 "__tsan_atomic64_load",
852 "__tsan_atomic8_store",
853 "__tsan_atomic16_store",
854 "__tsan_atomic32_store",
855 "__tsan_atomic64_store",
856 "__tsan_atomic8_exchange",
857 "__tsan_atomic16_exchange",
858 "__tsan_atomic32_exchange",
859 "__tsan_atomic64_exchange",
860 "__tsan_atomic8_fetch_add",
861 "__tsan_atomic16_fetch_add",
862 "__tsan_atomic32_fetch_add",
863 "__tsan_atomic64_fetch_add",
864 "__tsan_atomic8_fetch_sub",
865 "__tsan_atomic16_fetch_sub",
866 "__tsan_atomic32_fetch_sub",
867 "__tsan_atomic64_fetch_sub",
868 "__tsan_atomic8_fetch_and",
869 "__tsan_atomic16_fetch_and",
870 "__tsan_atomic32_fetch_and",
871 "__tsan_atomic64_fetch_and",
872 "__tsan_atomic8_fetch_or",
873 "__tsan_atomic16_fetch_or",
874 "__tsan_atomic32_fetch_or",
875 "__tsan_atomic64_fetch_or",
876 "__tsan_atomic8_fetch_xor",
877 "__tsan_atomic16_fetch_xor",
878 "__tsan_atomic32_fetch_xor",
879 "__tsan_atomic64_fetch_xor",
880 "__tsan_atomic8_fetch_nand",
881 "__tsan_atomic16_fetch_nand",
882 "__tsan_atomic32_fetch_nand",
883 "__tsan_atomic64_fetch_nand",
884 "__tsan_atomic8_compare_exchange_strong",
885 "__tsan_atomic16_compare_exchange_strong",
886 "__tsan_atomic32_compare_exchange_strong",
887 "__tsan_atomic64_compare_exchange_strong",
888 "__tsan_atomic8_compare_exchange_weak",
889 "__tsan_atomic16_compare_exchange_weak",
890 "__tsan_atomic32_compare_exchange_weak",
891 "__tsan_atomic64_compare_exchange_weak",
892 "__tsan_atomic8_compare_exchange_val",
893 "__tsan_atomic16_compare_exchange_val",
894 "__tsan_atomic32_compare_exchange_val",
895 "__tsan_atomic64_compare_exchange_val",
896 "__tsan_atomic_thread_fence",
897 "__tsan_atomic_signal_fence",
901 "__sanitizer_cov_trace_pc",
902 "__sanitizer_cov_trace_const_cmp1",
903 "__sanitizer_cov_trace_const_cmp2",
904 "__sanitizer_cov_trace_const_cmp4",
905 "__sanitizer_cov_trace_const_cmp8",
906 "__sanitizer_cov_trace_cmp1",
907 "__sanitizer_cov_trace_cmp2",
908 "__sanitizer_cov_trace_cmp4",
909 "__sanitizer_cov_trace_cmp8",
910 "__sanitizer_cov_trace_switch",
912 "ubsan_type_mismatch_common",
913 "__ubsan_handle_type_mismatch",
914 "__ubsan_handle_type_mismatch_v1",
915 "__ubsan_handle_shift_out_of_bounds",
917 "csum_partial_copy_generic",
919 "copy_mc_fragile_handle_tail",
920 "copy_mc_enhanced_fast_string",
921 "ftrace_likely_update", /* CONFIG_TRACE_BRANCH_PROFILING */
925 static void add_uaccess_safe(struct objtool_file
*file
)
933 for (name
= uaccess_safe_builtin
; *name
; name
++) {
934 func
= find_symbol_by_name(file
->elf
, *name
);
938 func
->uaccess_safe
= true;
943 * FIXME: For now, just ignore any alternatives which add retpolines. This is
944 * a temporary hack, as it doesn't allow ORC to unwind from inside a retpoline.
945 * But it at least allows objtool to understand the control flow *around* the
948 static int add_ignore_alternatives(struct objtool_file
*file
)
952 struct instruction
*insn
;
954 sec
= find_section_by_name(file
->elf
, ".rela.discard.ignore_alts");
958 list_for_each_entry(reloc
, &sec
->reloc_list
, list
) {
959 if (reloc
->sym
->type
!= STT_SECTION
) {
960 WARN("unexpected relocation symbol type in %s", sec
->name
);
964 insn
= find_insn(file
, reloc
->sym
->sec
, reloc
->addend
);
966 WARN("bad .discard.ignore_alts entry");
970 insn
->ignore_alts
= true;
976 __weak
bool arch_is_retpoline(struct symbol
*sym
)
981 __weak
bool arch_is_rethunk(struct symbol
*sym
)
986 #define NEGATIVE_RELOC ((void *)-1L)
988 static struct reloc
*insn_reloc(struct objtool_file
*file
, struct instruction
*insn
)
990 if (insn
->reloc
== NEGATIVE_RELOC
)
994 insn
->reloc
= find_reloc_by_dest_range(file
->elf
, insn
->sec
,
995 insn
->offset
, insn
->len
);
997 insn
->reloc
= NEGATIVE_RELOC
;
1005 static void remove_insn_ops(struct instruction
*insn
)
1007 struct stack_op
*op
, *tmp
;
1009 list_for_each_entry_safe(op
, tmp
, &insn
->stack_ops
, list
) {
1010 list_del(&op
->list
);
1015 static void annotate_call_site(struct objtool_file
*file
,
1016 struct instruction
*insn
, bool sibling
)
1018 struct reloc
*reloc
= insn_reloc(file
, insn
);
1019 struct symbol
*sym
= insn
->call_dest
;
1025 * Alternative replacement code is just template code which is
1026 * sometimes copied to the original instruction. For now, don't
1027 * annotate it. (In the future we might consider annotating the
1028 * original instruction if/when it ever makes sense to do so.)
1030 if (!strcmp(insn
->sec
->name
, ".altinstr_replacement"))
1033 if (sym
->static_call_tramp
) {
1034 list_add_tail(&insn
->call_node
, &file
->static_call_list
);
1038 if (sym
->retpoline_thunk
) {
1039 list_add_tail(&insn
->call_node
, &file
->retpoline_call_list
);
1044 * Many compilers cannot disable KCOV with a function attribute
1045 * so they need a little help, NOP out any KCOV calls from noinstr
1048 if (insn
->sec
->noinstr
&& sym
->kcov
) {
1050 reloc
->type
= R_NONE
;
1051 elf_write_reloc(file
->elf
, reloc
);
1054 elf_write_insn(file
->elf
, insn
->sec
,
1055 insn
->offset
, insn
->len
,
1056 sibling
? arch_ret_insn(insn
->len
)
1057 : arch_nop_insn(insn
->len
));
1059 insn
->type
= sibling
? INSN_RETURN
: INSN_NOP
;
1063 * We've replaced the tail-call JMP insn by two new
1064 * insn: RET; INT3, except we only have a single struct
1065 * insn here. Mark it retpoline_safe to avoid the SLS
1066 * warning, instead of adding another insn.
1068 insn
->retpoline_safe
= true;
1074 if (mcount
&& sym
->fentry
) {
1076 WARN_FUNC("Tail call to __fentry__ !?!?", insn
->sec
, insn
->offset
);
1079 reloc
->type
= R_NONE
;
1080 elf_write_reloc(file
->elf
, reloc
);
1083 elf_write_insn(file
->elf
, insn
->sec
,
1084 insn
->offset
, insn
->len
,
1085 arch_nop_insn(insn
->len
));
1087 insn
->type
= INSN_NOP
;
1089 list_add_tail(&insn
->call_node
, &file
->mcount_loc_list
);
1094 static void add_call_dest(struct objtool_file
*file
, struct instruction
*insn
,
1095 struct symbol
*dest
, bool sibling
)
1097 insn
->call_dest
= dest
;
1102 * Whatever stack impact regular CALLs have, should be undone
1103 * by the RETURN of the called function.
1105 * Annotated intra-function calls retain the stack_ops but
1106 * are converted to JUMP, see read_intra_function_calls().
1108 remove_insn_ops(insn
);
1110 annotate_call_site(file
, insn
, sibling
);
1113 static void add_retpoline_call(struct objtool_file
*file
, struct instruction
*insn
)
1116 * Retpoline calls/jumps are really dynamic calls/jumps in disguise,
1117 * so convert them accordingly.
1119 switch (insn
->type
) {
1121 insn
->type
= INSN_CALL_DYNAMIC
;
1123 case INSN_JUMP_UNCONDITIONAL
:
1124 insn
->type
= INSN_JUMP_DYNAMIC
;
1126 case INSN_JUMP_CONDITIONAL
:
1127 insn
->type
= INSN_JUMP_DYNAMIC_CONDITIONAL
;
1133 insn
->retpoline_safe
= true;
1136 * Whatever stack impact regular CALLs have, should be undone
1137 * by the RETURN of the called function.
1139 * Annotated intra-function calls retain the stack_ops but
1140 * are converted to JUMP, see read_intra_function_calls().
1142 remove_insn_ops(insn
);
1144 annotate_call_site(file
, insn
, false);
1147 static void add_return_call(struct objtool_file
*file
, struct instruction
*insn
)
1150 * Return thunk tail calls are really just returns in disguise,
1151 * so convert them accordingly.
1153 insn
->type
= INSN_RETURN
;
1154 insn
->retpoline_safe
= true;
1156 list_add_tail(&insn
->call_node
, &file
->return_thunk_list
);
1160 * Find the destination instructions for all jumps.
1162 static int add_jump_destinations(struct objtool_file
*file
)
1164 struct instruction
*insn
;
1165 struct reloc
*reloc
;
1166 struct section
*dest_sec
;
1167 unsigned long dest_off
;
1169 for_each_insn(file
, insn
) {
1170 if (!is_static_jump(insn
))
1173 reloc
= insn_reloc(file
, insn
);
1175 dest_sec
= insn
->sec
;
1176 dest_off
= arch_jump_destination(insn
);
1177 } else if (reloc
->sym
->type
== STT_SECTION
) {
1178 dest_sec
= reloc
->sym
->sec
;
1179 dest_off
= arch_dest_reloc_offset(reloc
->addend
);
1180 } else if (reloc
->sym
->retpoline_thunk
) {
1181 add_retpoline_call(file
, insn
);
1183 } else if (reloc
->sym
->return_thunk
) {
1184 add_return_call(file
, insn
);
1186 } else if (insn
->func
) {
1187 /* internal or external sibling call (with reloc) */
1188 add_call_dest(file
, insn
, reloc
->sym
, true);
1190 } else if (reloc
->sym
->sec
->idx
) {
1191 dest_sec
= reloc
->sym
->sec
;
1192 dest_off
= reloc
->sym
->sym
.st_value
+
1193 arch_dest_reloc_offset(reloc
->addend
);
1195 /* non-func asm code jumping to another file */
1199 insn
->jump_dest
= find_insn(file
, dest_sec
, dest_off
);
1200 if (!insn
->jump_dest
) {
1203 * This is a special case where an alt instruction
1204 * jumps past the end of the section. These are
1205 * handled later in handle_group_alt().
1207 if (!strcmp(insn
->sec
->name
, ".altinstr_replacement"))
1210 WARN_FUNC("can't find jump dest instruction at %s+0x%lx",
1211 insn
->sec
, insn
->offset
, dest_sec
->name
,
1217 * Cross-function jump.
1219 if (insn
->func
&& insn
->jump_dest
->func
&&
1220 insn
->func
!= insn
->jump_dest
->func
) {
1223 * For GCC 8+, create parent/child links for any cold
1224 * subfunctions. This is _mostly_ redundant with a
1225 * similar initialization in read_symbols().
1227 * If a function has aliases, we want the *first* such
1228 * function in the symbol table to be the subfunction's
1229 * parent. In that case we overwrite the
1230 * initialization done in read_symbols().
1232 * However this code can't completely replace the
1233 * read_symbols() code because this doesn't detect the
1234 * case where the parent function's only reference to a
1235 * subfunction is through a jump table.
1237 if (!strstr(insn
->func
->name
, ".cold") &&
1238 strstr(insn
->jump_dest
->func
->name
, ".cold")) {
1239 insn
->func
->cfunc
= insn
->jump_dest
->func
;
1240 insn
->jump_dest
->func
->pfunc
= insn
->func
;
1242 } else if (insn
->jump_dest
->func
->pfunc
!= insn
->func
->pfunc
&&
1243 insn
->jump_dest
->offset
== insn
->jump_dest
->func
->offset
) {
1244 /* internal sibling call (without reloc) */
1245 add_call_dest(file
, insn
, insn
->jump_dest
->func
, true);
1253 static struct symbol
*find_call_destination(struct section
*sec
, unsigned long offset
)
1255 struct symbol
*call_dest
;
1257 call_dest
= find_func_by_offset(sec
, offset
);
1259 call_dest
= find_symbol_by_offset(sec
, offset
);
1265 * Find the destination instructions for all calls.
1267 static int add_call_destinations(struct objtool_file
*file
)
1269 struct instruction
*insn
;
1270 unsigned long dest_off
;
1271 struct symbol
*dest
;
1272 struct reloc
*reloc
;
1274 for_each_insn(file
, insn
) {
1275 if (insn
->type
!= INSN_CALL
)
1278 reloc
= insn_reloc(file
, insn
);
1280 dest_off
= arch_jump_destination(insn
);
1281 dest
= find_call_destination(insn
->sec
, dest_off
);
1283 add_call_dest(file
, insn
, dest
, false);
1288 if (!insn
->call_dest
) {
1289 WARN_FUNC("unannotated intra-function call", insn
->sec
, insn
->offset
);
1293 if (insn
->func
&& insn
->call_dest
->type
!= STT_FUNC
) {
1294 WARN_FUNC("unsupported call to non-function",
1295 insn
->sec
, insn
->offset
);
1299 } else if (reloc
->sym
->type
== STT_SECTION
) {
1300 dest_off
= arch_dest_reloc_offset(reloc
->addend
);
1301 dest
= find_call_destination(reloc
->sym
->sec
, dest_off
);
1303 WARN_FUNC("can't find call dest symbol at %s+0x%lx",
1304 insn
->sec
, insn
->offset
,
1305 reloc
->sym
->sec
->name
,
1310 add_call_dest(file
, insn
, dest
, false);
1312 } else if (reloc
->sym
->retpoline_thunk
) {
1313 add_retpoline_call(file
, insn
);
1316 add_call_dest(file
, insn
, reloc
->sym
, false);
1323 * The .alternatives section requires some extra special care over and above
1324 * other special sections because alternatives are patched in place.
1326 static int handle_group_alt(struct objtool_file
*file
,
1327 struct special_alt
*special_alt
,
1328 struct instruction
*orig_insn
,
1329 struct instruction
**new_insn
)
1331 struct instruction
*last_orig_insn
, *last_new_insn
= NULL
, *insn
, *nop
= NULL
;
1332 struct alt_group
*orig_alt_group
, *new_alt_group
;
1333 unsigned long dest_off
;
1336 orig_alt_group
= malloc(sizeof(*orig_alt_group
));
1337 if (!orig_alt_group
) {
1338 WARN("malloc failed");
1341 orig_alt_group
->cfi
= calloc(special_alt
->orig_len
,
1342 sizeof(struct cfi_state
*));
1343 if (!orig_alt_group
->cfi
) {
1344 WARN("calloc failed");
1348 last_orig_insn
= NULL
;
1350 sec_for_each_insn_from(file
, insn
) {
1351 if (insn
->offset
>= special_alt
->orig_off
+ special_alt
->orig_len
)
1354 insn
->alt_group
= orig_alt_group
;
1355 last_orig_insn
= insn
;
1357 orig_alt_group
->orig_group
= NULL
;
1358 orig_alt_group
->first_insn
= orig_insn
;
1359 orig_alt_group
->last_insn
= last_orig_insn
;
1362 new_alt_group
= malloc(sizeof(*new_alt_group
));
1363 if (!new_alt_group
) {
1364 WARN("malloc failed");
1368 if (special_alt
->new_len
< special_alt
->orig_len
) {
1370 * Insert a fake nop at the end to make the replacement
1371 * alt_group the same size as the original. This is needed to
1372 * allow propagate_alt_cfi() to do its magic. When the last
1373 * instruction affects the stack, the instruction after it (the
1374 * nop) will propagate the new state to the shared CFI array.
1376 nop
= malloc(sizeof(*nop
));
1378 WARN("malloc failed");
1381 memset(nop
, 0, sizeof(*nop
));
1382 INIT_LIST_HEAD(&nop
->alts
);
1383 INIT_LIST_HEAD(&nop
->stack_ops
);
1385 nop
->sec
= special_alt
->new_sec
;
1386 nop
->offset
= special_alt
->new_off
+ special_alt
->new_len
;
1387 nop
->len
= special_alt
->orig_len
- special_alt
->new_len
;
1388 nop
->type
= INSN_NOP
;
1389 nop
->func
= orig_insn
->func
;
1390 nop
->alt_group
= new_alt_group
;
1391 nop
->ignore
= orig_insn
->ignore_alts
;
1394 if (!special_alt
->new_len
) {
1400 sec_for_each_insn_from(file
, insn
) {
1401 struct reloc
*alt_reloc
;
1403 if (insn
->offset
>= special_alt
->new_off
+ special_alt
->new_len
)
1406 last_new_insn
= insn
;
1408 insn
->ignore
= orig_insn
->ignore_alts
;
1409 insn
->func
= orig_insn
->func
;
1410 insn
->alt_group
= new_alt_group
;
1413 * Since alternative replacement code is copy/pasted by the
1414 * kernel after applying relocations, generally such code can't
1415 * have relative-address relocation references to outside the
1416 * .altinstr_replacement section, unless the arch's
1417 * alternatives code can adjust the relative offsets
1420 alt_reloc
= insn_reloc(file
, insn
);
1422 !arch_support_alt_relocation(special_alt
, insn
, alt_reloc
)) {
1424 WARN_FUNC("unsupported relocation in alternatives section",
1425 insn
->sec
, insn
->offset
);
1429 if (!is_static_jump(insn
))
1432 if (!insn
->immediate
)
1435 dest_off
= arch_jump_destination(insn
);
1436 if (dest_off
== special_alt
->new_off
+ special_alt
->new_len
)
1437 insn
->jump_dest
= next_insn_same_sec(file
, last_orig_insn
);
1439 if (!insn
->jump_dest
) {
1440 WARN_FUNC("can't find alternative jump destination",
1441 insn
->sec
, insn
->offset
);
1446 if (!last_new_insn
) {
1447 WARN_FUNC("can't find last new alternative instruction",
1448 special_alt
->new_sec
, special_alt
->new_off
);
1453 list_add(&nop
->list
, &last_new_insn
->list
);
1455 new_alt_group
->orig_group
= orig_alt_group
;
1456 new_alt_group
->first_insn
= *new_insn
;
1457 new_alt_group
->last_insn
= nop
? : last_new_insn
;
1458 new_alt_group
->cfi
= orig_alt_group
->cfi
;
1463 * A jump table entry can either convert a nop to a jump or a jump to a nop.
1464 * If the original instruction is a jump, make the alt entry an effective nop
1465 * by just skipping the original instruction.
1467 static int handle_jump_alt(struct objtool_file
*file
,
1468 struct special_alt
*special_alt
,
1469 struct instruction
*orig_insn
,
1470 struct instruction
**new_insn
)
1472 if (orig_insn
->type
!= INSN_JUMP_UNCONDITIONAL
&&
1473 orig_insn
->type
!= INSN_NOP
) {
1475 WARN_FUNC("unsupported instruction at jump label",
1476 orig_insn
->sec
, orig_insn
->offset
);
1480 if (special_alt
->key_addend
& 2) {
1481 struct reloc
*reloc
= insn_reloc(file
, orig_insn
);
1484 reloc
->type
= R_NONE
;
1485 elf_write_reloc(file
->elf
, reloc
);
1487 elf_write_insn(file
->elf
, orig_insn
->sec
,
1488 orig_insn
->offset
, orig_insn
->len
,
1489 arch_nop_insn(orig_insn
->len
));
1490 orig_insn
->type
= INSN_NOP
;
1493 if (orig_insn
->type
== INSN_NOP
) {
1494 if (orig_insn
->len
== 2)
1495 file
->jl_nop_short
++;
1497 file
->jl_nop_long
++;
1502 if (orig_insn
->len
== 2)
1507 *new_insn
= list_next_entry(orig_insn
, list
);
1512 * Read all the special sections which have alternate instructions which can be
1513 * patched in or redirected to at runtime. Each instruction having alternate
1514 * instruction(s) has them added to its insn->alts list, which will be
1515 * traversed in validate_branch().
1517 static int add_special_section_alts(struct objtool_file
*file
)
1519 struct list_head special_alts
;
1520 struct instruction
*orig_insn
, *new_insn
;
1521 struct special_alt
*special_alt
, *tmp
;
1522 struct alternative
*alt
;
1525 ret
= special_get_alts(file
->elf
, &special_alts
);
1529 list_for_each_entry_safe(special_alt
, tmp
, &special_alts
, list
) {
1531 orig_insn
= find_insn(file
, special_alt
->orig_sec
,
1532 special_alt
->orig_off
);
1534 WARN_FUNC("special: can't find orig instruction",
1535 special_alt
->orig_sec
, special_alt
->orig_off
);
1541 if (!special_alt
->group
|| special_alt
->new_len
) {
1542 new_insn
= find_insn(file
, special_alt
->new_sec
,
1543 special_alt
->new_off
);
1545 WARN_FUNC("special: can't find new instruction",
1546 special_alt
->new_sec
,
1547 special_alt
->new_off
);
1553 if (special_alt
->group
) {
1554 if (!special_alt
->orig_len
) {
1555 WARN_FUNC("empty alternative entry",
1556 orig_insn
->sec
, orig_insn
->offset
);
1560 ret
= handle_group_alt(file
, special_alt
, orig_insn
,
1564 } else if (special_alt
->jump_or_nop
) {
1565 ret
= handle_jump_alt(file
, special_alt
, orig_insn
,
1571 alt
= malloc(sizeof(*alt
));
1573 WARN("malloc failed");
1578 alt
->insn
= new_insn
;
1579 alt
->skip_orig
= special_alt
->skip_orig
;
1580 orig_insn
->ignore_alts
|= special_alt
->skip_alt
;
1581 list_add_tail(&alt
->list
, &orig_insn
->alts
);
1583 list_del(&special_alt
->list
);
1588 printf("jl\\\tNOP\tJMP\n");
1589 printf("short:\t%ld\t%ld\n", file
->jl_nop_short
, file
->jl_short
);
1590 printf("long:\t%ld\t%ld\n", file
->jl_nop_long
, file
->jl_long
);
1597 static int add_jump_table(struct objtool_file
*file
, struct instruction
*insn
,
1598 struct reloc
*table
)
1600 struct reloc
*reloc
= table
;
1601 struct instruction
*dest_insn
;
1602 struct alternative
*alt
;
1603 struct symbol
*pfunc
= insn
->func
->pfunc
;
1604 unsigned int prev_offset
= 0;
1607 * Each @reloc is a switch table relocation which points to the target
1610 list_for_each_entry_from(reloc
, &table
->sec
->reloc_list
, list
) {
1612 /* Check for the end of the table: */
1613 if (reloc
!= table
&& reloc
->jump_table_start
)
1616 /* Make sure the table entries are consecutive: */
1617 if (prev_offset
&& reloc
->offset
!= prev_offset
+ 8)
1620 /* Detect function pointers from contiguous objects: */
1621 if (reloc
->sym
->sec
== pfunc
->sec
&&
1622 reloc
->addend
== pfunc
->offset
)
1625 dest_insn
= find_insn(file
, reloc
->sym
->sec
, reloc
->addend
);
1629 /* Make sure the destination is in the same function: */
1630 if (!dest_insn
->func
|| dest_insn
->func
->pfunc
!= pfunc
)
1633 alt
= malloc(sizeof(*alt
));
1635 WARN("malloc failed");
1639 alt
->insn
= dest_insn
;
1640 list_add_tail(&alt
->list
, &insn
->alts
);
1641 prev_offset
= reloc
->offset
;
1645 WARN_FUNC("can't find switch jump table",
1646 insn
->sec
, insn
->offset
);
1654 * find_jump_table() - Given a dynamic jump, find the switch jump table
1655 * associated with it.
1657 static struct reloc
*find_jump_table(struct objtool_file
*file
,
1658 struct symbol
*func
,
1659 struct instruction
*insn
)
1661 struct reloc
*table_reloc
;
1662 struct instruction
*dest_insn
, *orig_insn
= insn
;
1665 * Backward search using the @first_jump_src links, these help avoid
1666 * much of the 'in between' code. Which avoids us getting confused by
1670 insn
&& insn
->func
&& insn
->func
->pfunc
== func
;
1671 insn
= insn
->first_jump_src
?: prev_insn_same_sym(file
, insn
)) {
1673 if (insn
!= orig_insn
&& insn
->type
== INSN_JUMP_DYNAMIC
)
1676 /* allow small jumps within the range */
1677 if (insn
->type
== INSN_JUMP_UNCONDITIONAL
&&
1679 (insn
->jump_dest
->offset
<= insn
->offset
||
1680 insn
->jump_dest
->offset
> orig_insn
->offset
))
1683 table_reloc
= arch_find_switch_table(file
, insn
);
1686 dest_insn
= find_insn(file
, table_reloc
->sym
->sec
, table_reloc
->addend
);
1687 if (!dest_insn
|| !dest_insn
->func
|| dest_insn
->func
->pfunc
!= func
)
1697 * First pass: Mark the head of each jump table so that in the next pass,
1698 * we know when a given jump table ends and the next one starts.
1700 static void mark_func_jump_tables(struct objtool_file
*file
,
1701 struct symbol
*func
)
1703 struct instruction
*insn
, *last
= NULL
;
1704 struct reloc
*reloc
;
1706 func_for_each_insn(file
, func
, insn
) {
1711 * Store back-pointers for unconditional forward jumps such
1712 * that find_jump_table() can back-track using those and
1713 * avoid some potentially confusing code.
1715 if (insn
->type
== INSN_JUMP_UNCONDITIONAL
&& insn
->jump_dest
&&
1716 insn
->offset
> last
->offset
&&
1717 insn
->jump_dest
->offset
> insn
->offset
&&
1718 !insn
->jump_dest
->first_jump_src
) {
1720 insn
->jump_dest
->first_jump_src
= insn
;
1721 last
= insn
->jump_dest
;
1724 if (insn
->type
!= INSN_JUMP_DYNAMIC
)
1727 reloc
= find_jump_table(file
, func
, insn
);
1729 reloc
->jump_table_start
= true;
1730 insn
->jump_table
= reloc
;
1735 static int add_func_jump_tables(struct objtool_file
*file
,
1736 struct symbol
*func
)
1738 struct instruction
*insn
;
1741 func_for_each_insn(file
, func
, insn
) {
1742 if (!insn
->jump_table
)
1745 ret
= add_jump_table(file
, insn
, insn
->jump_table
);
1754 * For some switch statements, gcc generates a jump table in the .rodata
1755 * section which contains a list of addresses within the function to jump to.
1756 * This finds these jump tables and adds them to the insn->alts lists.
1758 static int add_jump_table_alts(struct objtool_file
*file
)
1760 struct section
*sec
;
1761 struct symbol
*func
;
1767 for_each_sec(file
, sec
) {
1768 list_for_each_entry(func
, &sec
->symbol_list
, list
) {
1769 if (func
->type
!= STT_FUNC
)
1772 mark_func_jump_tables(file
, func
);
1773 ret
= add_func_jump_tables(file
, func
);
1782 static void set_func_state(struct cfi_state
*state
)
1784 state
->cfa
= initial_func_cfi
.cfa
;
1785 memcpy(&state
->regs
, &initial_func_cfi
.regs
,
1786 CFI_NUM_REGS
* sizeof(struct cfi_reg
));
1787 state
->stack_size
= initial_func_cfi
.cfa
.offset
;
1790 static int read_unwind_hints(struct objtool_file
*file
)
1792 struct cfi_state cfi
= init_cfi
;
1793 struct section
*sec
, *relocsec
;
1794 struct unwind_hint
*hint
;
1795 struct instruction
*insn
;
1796 struct reloc
*reloc
;
1799 sec
= find_section_by_name(file
->elf
, ".discard.unwind_hints");
1803 relocsec
= sec
->reloc
;
1805 WARN("missing .rela.discard.unwind_hints section");
1809 if (sec
->sh
.sh_size
% sizeof(struct unwind_hint
)) {
1810 WARN("struct unwind_hint size mismatch");
1816 for (i
= 0; i
< sec
->sh
.sh_size
/ sizeof(struct unwind_hint
); i
++) {
1817 hint
= (struct unwind_hint
*)sec
->data
->d_buf
+ i
;
1819 reloc
= find_reloc_by_dest(file
->elf
, sec
, i
* sizeof(*hint
));
1821 WARN("can't find reloc for unwind_hints[%d]", i
);
1825 insn
= find_insn(file
, reloc
->sym
->sec
, reloc
->addend
);
1827 WARN("can't find insn for unwind_hints[%d]", i
);
1833 if (hint
->type
== UNWIND_HINT_TYPE_FUNC
) {
1834 insn
->cfi
= &func_cfi
;
1841 if (arch_decode_hint_reg(hint
->sp_reg
, &cfi
.cfa
.base
)) {
1842 WARN_FUNC("unsupported unwind_hint sp base reg %d",
1843 insn
->sec
, insn
->offset
, hint
->sp_reg
);
1847 cfi
.cfa
.offset
= bswap_if_needed(hint
->sp_offset
);
1848 cfi
.type
= hint
->type
;
1849 cfi
.end
= hint
->end
;
1851 insn
->cfi
= cfi_hash_find_or_add(&cfi
);
1857 static int read_retpoline_hints(struct objtool_file
*file
)
1859 struct section
*sec
;
1860 struct instruction
*insn
;
1861 struct reloc
*reloc
;
1863 sec
= find_section_by_name(file
->elf
, ".rela.discard.retpoline_safe");
1867 list_for_each_entry(reloc
, &sec
->reloc_list
, list
) {
1868 if (reloc
->sym
->type
!= STT_SECTION
) {
1869 WARN("unexpected relocation symbol type in %s", sec
->name
);
1873 insn
= find_insn(file
, reloc
->sym
->sec
, reloc
->addend
);
1875 WARN("bad .discard.retpoline_safe entry");
1879 if (insn
->type
!= INSN_JUMP_DYNAMIC
&&
1880 insn
->type
!= INSN_CALL_DYNAMIC
) {
1881 WARN_FUNC("retpoline_safe hint not an indirect jump/call",
1882 insn
->sec
, insn
->offset
);
1886 insn
->retpoline_safe
= true;
1892 static int read_instr_hints(struct objtool_file
*file
)
1894 struct section
*sec
;
1895 struct instruction
*insn
;
1896 struct reloc
*reloc
;
1898 sec
= find_section_by_name(file
->elf
, ".rela.discard.instr_end");
1902 list_for_each_entry(reloc
, &sec
->reloc_list
, list
) {
1903 if (reloc
->sym
->type
!= STT_SECTION
) {
1904 WARN("unexpected relocation symbol type in %s", sec
->name
);
1908 insn
= find_insn(file
, reloc
->sym
->sec
, reloc
->addend
);
1910 WARN("bad .discard.instr_end entry");
1917 sec
= find_section_by_name(file
->elf
, ".rela.discard.instr_begin");
1921 list_for_each_entry(reloc
, &sec
->reloc_list
, list
) {
1922 if (reloc
->sym
->type
!= STT_SECTION
) {
1923 WARN("unexpected relocation symbol type in %s", sec
->name
);
1927 insn
= find_insn(file
, reloc
->sym
->sec
, reloc
->addend
);
1929 WARN("bad .discard.instr_begin entry");
1939 static int read_intra_function_calls(struct objtool_file
*file
)
1941 struct instruction
*insn
;
1942 struct section
*sec
;
1943 struct reloc
*reloc
;
1945 sec
= find_section_by_name(file
->elf
, ".rela.discard.intra_function_calls");
1949 list_for_each_entry(reloc
, &sec
->reloc_list
, list
) {
1950 unsigned long dest_off
;
1952 if (reloc
->sym
->type
!= STT_SECTION
) {
1953 WARN("unexpected relocation symbol type in %s",
1958 insn
= find_insn(file
, reloc
->sym
->sec
, reloc
->addend
);
1960 WARN("bad .discard.intra_function_call entry");
1964 if (insn
->type
!= INSN_CALL
) {
1965 WARN_FUNC("intra_function_call not a direct call",
1966 insn
->sec
, insn
->offset
);
1971 * Treat intra-function CALLs as JMPs, but with a stack_op.
1972 * See add_call_destinations(), which strips stack_ops from
1975 insn
->type
= INSN_JUMP_UNCONDITIONAL
;
1977 dest_off
= insn
->offset
+ insn
->len
+ insn
->immediate
;
1978 insn
->jump_dest
= find_insn(file
, insn
->sec
, dest_off
);
1979 if (!insn
->jump_dest
) {
1980 WARN_FUNC("can't find call dest at %s+0x%lx",
1981 insn
->sec
, insn
->offset
,
1982 insn
->sec
->name
, dest_off
);
1990 static int classify_symbols(struct objtool_file
*file
)
1992 struct section
*sec
;
1993 struct symbol
*func
;
1995 for_each_sec(file
, sec
) {
1996 list_for_each_entry(func
, &sec
->symbol_list
, list
) {
1997 if (func
->bind
!= STB_GLOBAL
)
2000 if (!strncmp(func
->name
, STATIC_CALL_TRAMP_PREFIX_STR
,
2001 strlen(STATIC_CALL_TRAMP_PREFIX_STR
)))
2002 func
->static_call_tramp
= true;
2004 if (arch_is_retpoline(func
))
2005 func
->retpoline_thunk
= true;
2007 if (arch_is_rethunk(func
))
2008 func
->return_thunk
= true;
2010 if (!strcmp(func
->name
, "__fentry__"))
2011 func
->fentry
= true;
2013 if (!strncmp(func
->name
, "__sanitizer_cov_", 16))
2021 static void mark_rodata(struct objtool_file
*file
)
2023 struct section
*sec
;
2027 * Search for the following rodata sections, each of which can
2028 * potentially contain jump tables:
2030 * - .rodata: can contain GCC switch tables
2031 * - .rodata.<func>: same, if -fdata-sections is being used
2032 * - .rodata..c_jump_table: contains C annotated jump tables
2034 * .rodata.str1.* sections are ignored; they don't contain jump tables.
2036 for_each_sec(file
, sec
) {
2037 if (!strncmp(sec
->name
, ".rodata", 7) &&
2038 !strstr(sec
->name
, ".str1.")) {
2044 file
->rodata
= found
;
2047 static int decode_sections(struct objtool_file
*file
)
2053 ret
= decode_instructions(file
);
2057 ret
= add_dead_ends(file
);
2062 add_uaccess_safe(file
);
2064 ret
= add_ignore_alternatives(file
);
2069 * Must be before add_{jump_call}_destination.
2071 ret
= classify_symbols(file
);
2076 * Must be before add_special_section_alts() as that depends on
2077 * jump_dest being set.
2079 ret
= add_jump_destinations(file
);
2083 ret
= add_special_section_alts(file
);
2088 * Must be before add_call_destination(); it changes INSN_CALL to
2091 ret
= read_intra_function_calls(file
);
2095 ret
= add_call_destinations(file
);
2099 ret
= add_jump_table_alts(file
);
2103 ret
= read_unwind_hints(file
);
2107 ret
= read_retpoline_hints(file
);
2111 ret
= read_instr_hints(file
);
2118 static bool is_fentry_call(struct instruction
*insn
)
2120 if (insn
->type
== INSN_CALL
&&
2122 insn
->call_dest
->fentry
)
2128 static bool has_modified_stack_frame(struct instruction
*insn
, struct insn_state
*state
)
2130 struct cfi_state
*cfi
= &state
->cfi
;
2133 if (cfi
->cfa
.base
!= initial_func_cfi
.cfa
.base
|| cfi
->drap
)
2136 if (cfi
->cfa
.offset
!= initial_func_cfi
.cfa
.offset
)
2139 if (cfi
->stack_size
!= initial_func_cfi
.cfa
.offset
)
2142 for (i
= 0; i
< CFI_NUM_REGS
; i
++) {
2143 if (cfi
->regs
[i
].base
!= initial_func_cfi
.regs
[i
].base
||
2144 cfi
->regs
[i
].offset
!= initial_func_cfi
.regs
[i
].offset
)
2151 static bool check_reg_frame_pos(const struct cfi_reg
*reg
,
2152 int expected_offset
)
2154 return reg
->base
== CFI_CFA
&&
2155 reg
->offset
== expected_offset
;
2158 static bool has_valid_stack_frame(struct insn_state
*state
)
2160 struct cfi_state
*cfi
= &state
->cfi
;
2162 if (cfi
->cfa
.base
== CFI_BP
&&
2163 check_reg_frame_pos(&cfi
->regs
[CFI_BP
], -cfi
->cfa
.offset
) &&
2164 check_reg_frame_pos(&cfi
->regs
[CFI_RA
], -cfi
->cfa
.offset
+ 8))
2167 if (cfi
->drap
&& cfi
->regs
[CFI_BP
].base
== CFI_BP
)
2173 static int update_cfi_state_regs(struct instruction
*insn
,
2174 struct cfi_state
*cfi
,
2175 struct stack_op
*op
)
2177 struct cfi_reg
*cfa
= &cfi
->cfa
;
2179 if (cfa
->base
!= CFI_SP
&& cfa
->base
!= CFI_SP_INDIRECT
)
2183 if (op
->dest
.type
== OP_DEST_PUSH
|| op
->dest
.type
== OP_DEST_PUSHF
)
2187 if (op
->src
.type
== OP_SRC_POP
|| op
->src
.type
== OP_SRC_POPF
)
2190 /* add immediate to sp */
2191 if (op
->dest
.type
== OP_DEST_REG
&& op
->src
.type
== OP_SRC_ADD
&&
2192 op
->dest
.reg
== CFI_SP
&& op
->src
.reg
== CFI_SP
)
2193 cfa
->offset
-= op
->src
.offset
;
2198 static void save_reg(struct cfi_state
*cfi
, unsigned char reg
, int base
, int offset
)
2200 if (arch_callee_saved_reg(reg
) &&
2201 cfi
->regs
[reg
].base
== CFI_UNDEFINED
) {
2202 cfi
->regs
[reg
].base
= base
;
2203 cfi
->regs
[reg
].offset
= offset
;
2207 static void restore_reg(struct cfi_state
*cfi
, unsigned char reg
)
2209 cfi
->regs
[reg
].base
= initial_func_cfi
.regs
[reg
].base
;
2210 cfi
->regs
[reg
].offset
= initial_func_cfi
.regs
[reg
].offset
;
2214 * A note about DRAP stack alignment:
2216 * GCC has the concept of a DRAP register, which is used to help keep track of
2217 * the stack pointer when aligning the stack. r10 or r13 is used as the DRAP
2218 * register. The typical DRAP pattern is:
2220 * 4c 8d 54 24 08 lea 0x8(%rsp),%r10
2221 * 48 83 e4 c0 and $0xffffffffffffffc0,%rsp
2222 * 41 ff 72 f8 pushq -0x8(%r10)
2224 * 48 89 e5 mov %rsp,%rbp
2231 * 49 8d 62 f8 lea -0x8(%r10),%rsp
2234 * There are some variations in the epilogues, like:
2242 * 49 8d 62 f8 lea -0x8(%r10),%rsp
2247 * 4c 8b 55 e8 mov -0x18(%rbp),%r10
2248 * 48 8b 5d e0 mov -0x20(%rbp),%rbx
2249 * 4c 8b 65 f0 mov -0x10(%rbp),%r12
2250 * 4c 8b 6d f8 mov -0x8(%rbp),%r13
2252 * 49 8d 62 f8 lea -0x8(%r10),%rsp
2255 * Sometimes r13 is used as the DRAP register, in which case it's saved and
2256 * restored beforehand:
2259 * 4c 8d 6c 24 10 lea 0x10(%rsp),%r13
2260 * 48 83 e4 f0 and $0xfffffffffffffff0,%rsp
2262 * 49 8d 65 f0 lea -0x10(%r13),%rsp
2266 static int update_cfi_state(struct instruction
*insn
,
2267 struct instruction
*next_insn
,
2268 struct cfi_state
*cfi
, struct stack_op
*op
)
2270 struct cfi_reg
*cfa
= &cfi
->cfa
;
2271 struct cfi_reg
*regs
= cfi
->regs
;
2273 /* stack operations don't make sense with an undefined CFA */
2274 if (cfa
->base
== CFI_UNDEFINED
) {
2276 WARN_FUNC("undefined stack state", insn
->sec
, insn
->offset
);
2282 if (cfi
->type
== UNWIND_HINT_TYPE_REGS
||
2283 cfi
->type
== UNWIND_HINT_TYPE_REGS_PARTIAL
)
2284 return update_cfi_state_regs(insn
, cfi
, op
);
2286 switch (op
->dest
.type
) {
2289 switch (op
->src
.type
) {
2292 if (op
->src
.reg
== CFI_SP
&& op
->dest
.reg
== CFI_BP
&&
2293 cfa
->base
== CFI_SP
&&
2294 check_reg_frame_pos(®s
[CFI_BP
], -cfa
->offset
)) {
2296 /* mov %rsp, %rbp */
2297 cfa
->base
= op
->dest
.reg
;
2298 cfi
->bp_scratch
= false;
2301 else if (op
->src
.reg
== CFI_SP
&&
2302 op
->dest
.reg
== CFI_BP
&& cfi
->drap
) {
2304 /* drap: mov %rsp, %rbp */
2305 regs
[CFI_BP
].base
= CFI_BP
;
2306 regs
[CFI_BP
].offset
= -cfi
->stack_size
;
2307 cfi
->bp_scratch
= false;
2310 else if (op
->src
.reg
== CFI_SP
&& cfa
->base
== CFI_SP
) {
2315 * This is needed for the rare case where GCC
2322 cfi
->vals
[op
->dest
.reg
].base
= CFI_CFA
;
2323 cfi
->vals
[op
->dest
.reg
].offset
= -cfi
->stack_size
;
2326 else if (op
->src
.reg
== CFI_BP
&& op
->dest
.reg
== CFI_SP
&&
2327 (cfa
->base
== CFI_BP
|| cfa
->base
== cfi
->drap_reg
)) {
2332 * Restore the original stack pointer (Clang).
2334 cfi
->stack_size
= -cfi
->regs
[CFI_BP
].offset
;
2337 else if (op
->dest
.reg
== cfa
->base
) {
2339 /* mov %reg, %rsp */
2340 if (cfa
->base
== CFI_SP
&&
2341 cfi
->vals
[op
->src
.reg
].base
== CFI_CFA
) {
2344 * This is needed for the rare case
2345 * where GCC does something dumb like:
2347 * lea 0x8(%rsp), %rcx
2351 cfa
->offset
= -cfi
->vals
[op
->src
.reg
].offset
;
2352 cfi
->stack_size
= cfa
->offset
;
2354 } else if (cfa
->base
== CFI_SP
&&
2355 cfi
->vals
[op
->src
.reg
].base
== CFI_SP_INDIRECT
&&
2356 cfi
->vals
[op
->src
.reg
].offset
== cfa
->offset
) {
2361 * 1: mov %rsp, (%[tos])
2362 * 2: mov %[tos], %rsp
2368 * 1 - places a pointer to the previous
2369 * stack at the Top-of-Stack of the
2372 * 2 - switches to the new stack.
2374 * 3 - pops the Top-of-Stack to restore
2375 * the original stack.
2377 * Note: we set base to SP_INDIRECT
2378 * here and preserve offset. Therefore
2379 * when the unwinder reaches ToS it
2380 * will dereference SP and then add the
2381 * offset to find the next frame, IOW:
2384 cfa
->base
= CFI_SP_INDIRECT
;
2387 cfa
->base
= CFI_UNDEFINED
;
2392 else if (op
->dest
.reg
== CFI_SP
&&
2393 cfi
->vals
[op
->src
.reg
].base
== CFI_SP_INDIRECT
&&
2394 cfi
->vals
[op
->src
.reg
].offset
== cfa
->offset
) {
2397 * The same stack swizzle case 2) as above. But
2398 * because we can't change cfa->base, case 3)
2399 * will become a regular POP. Pretend we're a
2400 * PUSH so things don't go unbalanced.
2402 cfi
->stack_size
+= 8;
2409 if (op
->dest
.reg
== CFI_SP
&& op
->src
.reg
== CFI_SP
) {
2412 cfi
->stack_size
-= op
->src
.offset
;
2413 if (cfa
->base
== CFI_SP
)
2414 cfa
->offset
-= op
->src
.offset
;
2418 if (op
->dest
.reg
== CFI_SP
&& op
->src
.reg
== CFI_BP
) {
2420 /* lea disp(%rbp), %rsp */
2421 cfi
->stack_size
= -(op
->src
.offset
+ regs
[CFI_BP
].offset
);
2425 if (!cfi
->drap
&& op
->src
.reg
== CFI_SP
&&
2426 op
->dest
.reg
== CFI_BP
&& cfa
->base
== CFI_SP
&&
2427 check_reg_frame_pos(®s
[CFI_BP
], -cfa
->offset
+ op
->src
.offset
)) {
2429 /* lea disp(%rsp), %rbp */
2431 cfa
->offset
-= op
->src
.offset
;
2432 cfi
->bp_scratch
= false;
2436 if (op
->src
.reg
== CFI_SP
&& cfa
->base
== CFI_SP
) {
2438 /* drap: lea disp(%rsp), %drap */
2439 cfi
->drap_reg
= op
->dest
.reg
;
2442 * lea disp(%rsp), %reg
2444 * This is needed for the rare case where GCC
2445 * does something dumb like:
2447 * lea 0x8(%rsp), %rcx
2451 cfi
->vals
[op
->dest
.reg
].base
= CFI_CFA
;
2452 cfi
->vals
[op
->dest
.reg
].offset
= \
2453 -cfi
->stack_size
+ op
->src
.offset
;
2458 if (cfi
->drap
&& op
->dest
.reg
== CFI_SP
&&
2459 op
->src
.reg
== cfi
->drap_reg
) {
2461 /* drap: lea disp(%drap), %rsp */
2463 cfa
->offset
= cfi
->stack_size
= -op
->src
.offset
;
2464 cfi
->drap_reg
= CFI_UNDEFINED
;
2469 if (op
->dest
.reg
== cfi
->cfa
.base
&& !(next_insn
&& next_insn
->hint
)) {
2470 WARN_FUNC("unsupported stack register modification",
2471 insn
->sec
, insn
->offset
);
2478 if (op
->dest
.reg
!= CFI_SP
||
2479 (cfi
->drap_reg
!= CFI_UNDEFINED
&& cfa
->base
!= CFI_SP
) ||
2480 (cfi
->drap_reg
== CFI_UNDEFINED
&& cfa
->base
!= CFI_BP
)) {
2481 WARN_FUNC("unsupported stack pointer realignment",
2482 insn
->sec
, insn
->offset
);
2486 if (cfi
->drap_reg
!= CFI_UNDEFINED
) {
2487 /* drap: and imm, %rsp */
2488 cfa
->base
= cfi
->drap_reg
;
2489 cfa
->offset
= cfi
->stack_size
= 0;
2494 * Older versions of GCC (4.8ish) realign the stack
2495 * without DRAP, with a frame pointer.
2502 if (op
->dest
.reg
== CFI_SP
&& cfa
->base
== CFI_SP_INDIRECT
) {
2504 /* pop %rsp; # restore from a stack swizzle */
2509 if (!cfi
->drap
&& op
->dest
.reg
== cfa
->base
) {
2515 if (cfi
->drap
&& cfa
->base
== CFI_BP_INDIRECT
&&
2516 op
->dest
.reg
== cfi
->drap_reg
&&
2517 cfi
->drap_offset
== -cfi
->stack_size
) {
2519 /* drap: pop %drap */
2520 cfa
->base
= cfi
->drap_reg
;
2522 cfi
->drap_offset
= -1;
2524 } else if (cfi
->stack_size
== -regs
[op
->dest
.reg
].offset
) {
2527 restore_reg(cfi
, op
->dest
.reg
);
2530 cfi
->stack_size
-= 8;
2531 if (cfa
->base
== CFI_SP
)
2536 case OP_SRC_REG_INDIRECT
:
2537 if (!cfi
->drap
&& op
->dest
.reg
== cfa
->base
&&
2538 op
->dest
.reg
== CFI_BP
) {
2540 /* mov disp(%rsp), %rbp */
2542 cfa
->offset
= cfi
->stack_size
;
2545 if (cfi
->drap
&& op
->src
.reg
== CFI_BP
&&
2546 op
->src
.offset
== cfi
->drap_offset
) {
2548 /* drap: mov disp(%rbp), %drap */
2549 cfa
->base
= cfi
->drap_reg
;
2551 cfi
->drap_offset
= -1;
2554 if (cfi
->drap
&& op
->src
.reg
== CFI_BP
&&
2555 op
->src
.offset
== regs
[op
->dest
.reg
].offset
) {
2557 /* drap: mov disp(%rbp), %reg */
2558 restore_reg(cfi
, op
->dest
.reg
);
2560 } else if (op
->src
.reg
== cfa
->base
&&
2561 op
->src
.offset
== regs
[op
->dest
.reg
].offset
+ cfa
->offset
) {
2563 /* mov disp(%rbp), %reg */
2564 /* mov disp(%rsp), %reg */
2565 restore_reg(cfi
, op
->dest
.reg
);
2567 } else if (op
->src
.reg
== CFI_SP
&&
2568 op
->src
.offset
== regs
[op
->dest
.reg
].offset
+ cfi
->stack_size
) {
2570 /* mov disp(%rsp), %reg */
2571 restore_reg(cfi
, op
->dest
.reg
);
2577 WARN_FUNC("unknown stack-related instruction",
2578 insn
->sec
, insn
->offset
);
2586 cfi
->stack_size
+= 8;
2587 if (cfa
->base
== CFI_SP
)
2590 if (op
->src
.type
!= OP_SRC_REG
)
2594 if (op
->src
.reg
== cfa
->base
&& op
->src
.reg
== cfi
->drap_reg
) {
2596 /* drap: push %drap */
2597 cfa
->base
= CFI_BP_INDIRECT
;
2598 cfa
->offset
= -cfi
->stack_size
;
2600 /* save drap so we know when to restore it */
2601 cfi
->drap_offset
= -cfi
->stack_size
;
2603 } else if (op
->src
.reg
== CFI_BP
&& cfa
->base
== cfi
->drap_reg
) {
2605 /* drap: push %rbp */
2606 cfi
->stack_size
= 0;
2610 /* drap: push %reg */
2611 save_reg(cfi
, op
->src
.reg
, CFI_BP
, -cfi
->stack_size
);
2617 save_reg(cfi
, op
->src
.reg
, CFI_CFA
, -cfi
->stack_size
);
2620 /* detect when asm code uses rbp as a scratch register */
2621 if (!no_fp
&& insn
->func
&& op
->src
.reg
== CFI_BP
&&
2622 cfa
->base
!= CFI_BP
)
2623 cfi
->bp_scratch
= true;
2626 case OP_DEST_REG_INDIRECT
:
2629 if (op
->src
.reg
== cfa
->base
&& op
->src
.reg
== cfi
->drap_reg
) {
2631 /* drap: mov %drap, disp(%rbp) */
2632 cfa
->base
= CFI_BP_INDIRECT
;
2633 cfa
->offset
= op
->dest
.offset
;
2635 /* save drap offset so we know when to restore it */
2636 cfi
->drap_offset
= op
->dest
.offset
;
2639 /* drap: mov reg, disp(%rbp) */
2640 save_reg(cfi
, op
->src
.reg
, CFI_BP
, op
->dest
.offset
);
2643 } else if (op
->dest
.reg
== cfa
->base
) {
2645 /* mov reg, disp(%rbp) */
2646 /* mov reg, disp(%rsp) */
2647 save_reg(cfi
, op
->src
.reg
, CFI_CFA
,
2648 op
->dest
.offset
- cfi
->cfa
.offset
);
2650 } else if (op
->dest
.reg
== CFI_SP
) {
2652 /* mov reg, disp(%rsp) */
2653 save_reg(cfi
, op
->src
.reg
, CFI_CFA
,
2654 op
->dest
.offset
- cfi
->stack_size
);
2656 } else if (op
->src
.reg
== CFI_SP
&& op
->dest
.offset
== 0) {
2658 /* mov %rsp, (%reg); # setup a stack swizzle. */
2659 cfi
->vals
[op
->dest
.reg
].base
= CFI_SP_INDIRECT
;
2660 cfi
->vals
[op
->dest
.reg
].offset
= cfa
->offset
;
2666 if (op
->src
.type
!= OP_SRC_POP
&& op
->src
.type
!= OP_SRC_POPF
) {
2667 WARN_FUNC("unknown stack-related memory operation",
2668 insn
->sec
, insn
->offset
);
2673 cfi
->stack_size
-= 8;
2674 if (cfa
->base
== CFI_SP
)
2680 WARN_FUNC("unknown stack-related instruction",
2681 insn
->sec
, insn
->offset
);
2689 * The stack layouts of alternatives instructions can sometimes diverge when
2690 * they have stack modifications. That's fine as long as the potential stack
2691 * layouts don't conflict at any given potential instruction boundary.
2693 * Flatten the CFIs of the different alternative code streams (both original
2694 * and replacement) into a single shared CFI array which can be used to detect
2695 * conflicts and nicely feed a linear array of ORC entries to the unwinder.
2697 static int propagate_alt_cfi(struct objtool_file
*file
, struct instruction
*insn
)
2699 struct cfi_state
**alt_cfi
;
2702 if (!insn
->alt_group
)
2706 WARN("CFI missing");
2710 alt_cfi
= insn
->alt_group
->cfi
;
2711 group_off
= insn
->offset
- insn
->alt_group
->first_insn
->offset
;
2713 if (!alt_cfi
[group_off
]) {
2714 alt_cfi
[group_off
] = insn
->cfi
;
2716 if (cficmp(alt_cfi
[group_off
], insn
->cfi
)) {
2717 WARN_FUNC("stack layout conflict in alternatives",
2718 insn
->sec
, insn
->offset
);
2726 static int handle_insn_ops(struct instruction
*insn
,
2727 struct instruction
*next_insn
,
2728 struct insn_state
*state
)
2730 struct stack_op
*op
;
2732 list_for_each_entry(op
, &insn
->stack_ops
, list
) {
2734 if (update_cfi_state(insn
, next_insn
, &state
->cfi
, op
))
2737 if (!insn
->alt_group
)
2740 if (op
->dest
.type
== OP_DEST_PUSHF
) {
2741 if (!state
->uaccess_stack
) {
2742 state
->uaccess_stack
= 1;
2743 } else if (state
->uaccess_stack
>> 31) {
2744 WARN_FUNC("PUSHF stack exhausted",
2745 insn
->sec
, insn
->offset
);
2748 state
->uaccess_stack
<<= 1;
2749 state
->uaccess_stack
|= state
->uaccess
;
2752 if (op
->src
.type
== OP_SRC_POPF
) {
2753 if (state
->uaccess_stack
) {
2754 state
->uaccess
= state
->uaccess_stack
& 1;
2755 state
->uaccess_stack
>>= 1;
2756 if (state
->uaccess_stack
== 1)
2757 state
->uaccess_stack
= 0;
2765 static bool insn_cfi_match(struct instruction
*insn
, struct cfi_state
*cfi2
)
2767 struct cfi_state
*cfi1
= insn
->cfi
;
2771 WARN("CFI missing");
2775 if (memcmp(&cfi1
->cfa
, &cfi2
->cfa
, sizeof(cfi1
->cfa
))) {
2777 WARN_FUNC("stack state mismatch: cfa1=%d%+d cfa2=%d%+d",
2778 insn
->sec
, insn
->offset
,
2779 cfi1
->cfa
.base
, cfi1
->cfa
.offset
,
2780 cfi2
->cfa
.base
, cfi2
->cfa
.offset
);
2782 } else if (memcmp(&cfi1
->regs
, &cfi2
->regs
, sizeof(cfi1
->regs
))) {
2783 for (i
= 0; i
< CFI_NUM_REGS
; i
++) {
2784 if (!memcmp(&cfi1
->regs
[i
], &cfi2
->regs
[i
],
2785 sizeof(struct cfi_reg
)))
2788 WARN_FUNC("stack state mismatch: reg1[%d]=%d%+d reg2[%d]=%d%+d",
2789 insn
->sec
, insn
->offset
,
2790 i
, cfi1
->regs
[i
].base
, cfi1
->regs
[i
].offset
,
2791 i
, cfi2
->regs
[i
].base
, cfi2
->regs
[i
].offset
);
2795 } else if (cfi1
->type
!= cfi2
->type
) {
2797 WARN_FUNC("stack state mismatch: type1=%d type2=%d",
2798 insn
->sec
, insn
->offset
, cfi1
->type
, cfi2
->type
);
2800 } else if (cfi1
->drap
!= cfi2
->drap
||
2801 (cfi1
->drap
&& cfi1
->drap_reg
!= cfi2
->drap_reg
) ||
2802 (cfi1
->drap
&& cfi1
->drap_offset
!= cfi2
->drap_offset
)) {
2804 WARN_FUNC("stack state mismatch: drap1=%d(%d,%d) drap2=%d(%d,%d)",
2805 insn
->sec
, insn
->offset
,
2806 cfi1
->drap
, cfi1
->drap_reg
, cfi1
->drap_offset
,
2807 cfi2
->drap
, cfi2
->drap_reg
, cfi2
->drap_offset
);
2815 static inline bool func_uaccess_safe(struct symbol
*func
)
2818 return func
->uaccess_safe
;
2823 static inline const char *call_dest_name(struct instruction
*insn
)
2825 if (insn
->call_dest
)
2826 return insn
->call_dest
->name
;
2831 static inline bool noinstr_call_dest(struct symbol
*func
)
2834 * We can't deal with indirect function calls at present;
2835 * assume they're instrumented.
2841 * If the symbol is from a noinstr section; we good.
2843 if (func
->sec
->noinstr
)
2847 * The __ubsan_handle_*() calls are like WARN(), they only happen when
2848 * something 'BAD' happened. At the risk of taking the machine down,
2849 * let them proceed to get the message out.
2851 if (!strncmp(func
->name
, "__ubsan_handle_", 15))
2857 static int validate_call(struct instruction
*insn
, struct insn_state
*state
)
2859 if (state
->noinstr
&& state
->instr
<= 0 &&
2860 !noinstr_call_dest(insn
->call_dest
)) {
2861 WARN_FUNC("call to %s() leaves .noinstr.text section",
2862 insn
->sec
, insn
->offset
, call_dest_name(insn
));
2866 if (state
->uaccess
&& !func_uaccess_safe(insn
->call_dest
)) {
2867 WARN_FUNC("call to %s() with UACCESS enabled",
2868 insn
->sec
, insn
->offset
, call_dest_name(insn
));
2873 WARN_FUNC("call to %s() with DF set",
2874 insn
->sec
, insn
->offset
, call_dest_name(insn
));
2881 static int validate_sibling_call(struct instruction
*insn
, struct insn_state
*state
)
2883 if (has_modified_stack_frame(insn
, state
)) {
2884 WARN_FUNC("sibling call from callable instruction with modified stack frame",
2885 insn
->sec
, insn
->offset
);
2889 return validate_call(insn
, state
);
2892 static int validate_return(struct symbol
*func
, struct instruction
*insn
, struct insn_state
*state
)
2894 if (state
->noinstr
&& state
->instr
> 0) {
2895 WARN_FUNC("return with instrumentation enabled",
2896 insn
->sec
, insn
->offset
);
2900 if (state
->uaccess
&& !func_uaccess_safe(func
)) {
2901 WARN_FUNC("return with UACCESS enabled",
2902 insn
->sec
, insn
->offset
);
2906 if (!state
->uaccess
&& func_uaccess_safe(func
)) {
2907 WARN_FUNC("return with UACCESS disabled from a UACCESS-safe function",
2908 insn
->sec
, insn
->offset
);
2913 WARN_FUNC("return with DF set",
2914 insn
->sec
, insn
->offset
);
2918 if (func
&& has_modified_stack_frame(insn
, state
)) {
2919 WARN_FUNC("return with modified stack frame",
2920 insn
->sec
, insn
->offset
);
2924 if (state
->cfi
.bp_scratch
) {
2925 WARN_FUNC("BP used as a scratch register",
2926 insn
->sec
, insn
->offset
);
2933 static struct instruction
*next_insn_to_validate(struct objtool_file
*file
,
2934 struct instruction
*insn
)
2936 struct alt_group
*alt_group
= insn
->alt_group
;
2939 * Simulate the fact that alternatives are patched in-place. When the
2940 * end of a replacement alt_group is reached, redirect objtool flow to
2941 * the end of the original alt_group.
2943 if (alt_group
&& insn
== alt_group
->last_insn
&& alt_group
->orig_group
)
2944 return next_insn_same_sec(file
, alt_group
->orig_group
->last_insn
);
2946 return next_insn_same_sec(file
, insn
);
2950 * Follow the branch starting at the given instruction, and recursively follow
2951 * any other branches (jumps). Meanwhile, track the frame pointer state at
2952 * each instruction and validate all the rules described in
2953 * tools/objtool/Documentation/stack-validation.txt.
2955 static int validate_branch(struct objtool_file
*file
, struct symbol
*func
,
2956 struct instruction
*insn
, struct insn_state state
)
2958 struct alternative
*alt
;
2959 struct instruction
*next_insn
, *prev_insn
= NULL
;
2960 struct section
*sec
;
2967 next_insn
= next_insn_to_validate(file
, insn
);
2969 if (file
->c_file
&& func
&& insn
->func
&& func
!= insn
->func
->pfunc
) {
2970 WARN("%s() falls through to next function %s()",
2971 func
->name
, insn
->func
->name
);
2975 if (func
&& insn
->ignore
) {
2976 WARN_FUNC("BUG: why am I validating an ignored function?",
2981 visited
= 1 << state
.uaccess
;
2982 if (insn
->visited
) {
2983 if (!insn
->hint
&& !insn_cfi_match(insn
, &state
.cfi
))
2986 if (insn
->visited
& visited
)
2993 state
.instr
+= insn
->instr
;
2996 state
.cfi
= *insn
->cfi
;
2998 /* XXX track if we actually changed state.cfi */
3000 if (prev_insn
&& !cficmp(prev_insn
->cfi
, &state
.cfi
)) {
3001 insn
->cfi
= prev_insn
->cfi
;
3004 insn
->cfi
= cfi_hash_find_or_add(&state
.cfi
);
3008 insn
->visited
|= visited
;
3010 if (propagate_alt_cfi(file
, insn
))
3013 if (!insn
->ignore_alts
&& !list_empty(&insn
->alts
)) {
3014 bool skip_orig
= false;
3016 list_for_each_entry(alt
, &insn
->alts
, list
) {
3020 ret
= validate_branch(file
, func
, alt
->insn
, state
);
3023 BT_FUNC("(alt)", insn
);
3032 if (handle_insn_ops(insn
, next_insn
, &state
))
3035 switch (insn
->type
) {
3038 if (sls
&& !insn
->retpoline_safe
&&
3039 next_insn
&& next_insn
->type
!= INSN_TRAP
) {
3040 WARN_FUNC("missing int3 after ret",
3041 insn
->sec
, insn
->offset
);
3043 return validate_return(func
, insn
, &state
);
3046 case INSN_CALL_DYNAMIC
:
3047 ret
= validate_call(insn
, &state
);
3051 if (!no_fp
&& func
&& !is_fentry_call(insn
) &&
3052 !has_valid_stack_frame(&state
)) {
3053 WARN_FUNC("call without frame pointer save/setup",
3058 if (dead_end_function(file
, insn
->call_dest
))
3063 case INSN_JUMP_CONDITIONAL
:
3064 case INSN_JUMP_UNCONDITIONAL
:
3065 if (is_sibling_call(insn
)) {
3066 ret
= validate_sibling_call(insn
, &state
);
3070 } else if (insn
->jump_dest
) {
3071 ret
= validate_branch(file
, func
,
3072 insn
->jump_dest
, state
);
3075 BT_FUNC("(branch)", insn
);
3080 if (insn
->type
== INSN_JUMP_UNCONDITIONAL
)
3085 case INSN_JUMP_DYNAMIC
:
3086 if (sls
&& !insn
->retpoline_safe
&&
3087 next_insn
&& next_insn
->type
!= INSN_TRAP
) {
3088 WARN_FUNC("missing int3 after indirect jump",
3089 insn
->sec
, insn
->offset
);
3093 case INSN_JUMP_DYNAMIC_CONDITIONAL
:
3094 if (is_sibling_call(insn
)) {
3095 ret
= validate_sibling_call(insn
, &state
);
3100 if (insn
->type
== INSN_JUMP_DYNAMIC
)
3105 case INSN_CONTEXT_SWITCH
:
3106 if (func
&& (!next_insn
|| !next_insn
->hint
)) {
3107 WARN_FUNC("unsupported instruction in callable function",
3114 if (state
.uaccess
) {
3115 WARN_FUNC("recursive UACCESS enable", sec
, insn
->offset
);
3119 state
.uaccess
= true;
3123 if (!state
.uaccess
&& func
) {
3124 WARN_FUNC("redundant UACCESS disable", sec
, insn
->offset
);
3128 if (func_uaccess_safe(func
) && !state
.uaccess_stack
) {
3129 WARN_FUNC("UACCESS-safe disables UACCESS", sec
, insn
->offset
);
3133 state
.uaccess
= false;
3138 WARN_FUNC("recursive STD", sec
, insn
->offset
);
3146 if (!state
.df
&& func
) {
3147 WARN_FUNC("redundant CLD", sec
, insn
->offset
);
3162 if (state
.cfi
.cfa
.base
== CFI_UNDEFINED
)
3164 WARN("%s: unexpected end of section", sec
->name
);
3175 static int validate_unwind_hints(struct objtool_file
*file
, struct section
*sec
)
3177 struct instruction
*insn
;
3178 struct insn_state state
;
3179 int ret
, warnings
= 0;
3184 init_insn_state(&state
, sec
);
3187 insn
= find_insn(file
, sec
, 0);
3191 insn
= list_first_entry(&file
->insn_list
, typeof(*insn
), list
);
3194 while (&insn
->list
!= &file
->insn_list
&& (!sec
|| insn
->sec
== sec
)) {
3195 if (insn
->hint
&& !insn
->visited
) {
3196 ret
= validate_branch(file
, insn
->func
, insn
, state
);
3197 if (ret
&& backtrace
)
3198 BT_FUNC("<=== (hint)", insn
);
3202 insn
= list_next_entry(insn
, list
);
3208 static int validate_retpoline(struct objtool_file
*file
)
3210 struct instruction
*insn
;
3213 for_each_insn(file
, insn
) {
3214 if (insn
->type
!= INSN_JUMP_DYNAMIC
&&
3215 insn
->type
!= INSN_CALL_DYNAMIC
)
3218 if (insn
->retpoline_safe
)
3222 * .init.text code is ran before userspace and thus doesn't
3223 * strictly need retpolines, except for modules which are
3224 * loaded late, they very much do need retpoline in their
3227 if (!strcmp(insn
->sec
->name
, ".init.text") && !module
)
3230 WARN_FUNC("indirect %s found in RETPOLINE build",
3231 insn
->sec
, insn
->offset
,
3232 insn
->type
== INSN_JUMP_DYNAMIC
? "jump" : "call");
3240 static bool is_kasan_insn(struct instruction
*insn
)
3242 return (insn
->type
== INSN_CALL
&&
3243 !strcmp(insn
->call_dest
->name
, "__asan_handle_no_return"));
3246 static bool is_ubsan_insn(struct instruction
*insn
)
3248 return (insn
->type
== INSN_CALL
&&
3249 !strcmp(insn
->call_dest
->name
,
3250 "__ubsan_handle_builtin_unreachable"));
3253 static bool ignore_unreachable_insn(struct objtool_file
*file
, struct instruction
*insn
)
3256 struct instruction
*prev_insn
;
3258 if (insn
->ignore
|| insn
->type
== INSN_NOP
|| insn
->type
== INSN_TRAP
)
3262 * Ignore any unused exceptions. This can happen when a whitelisted
3263 * function has an exception table entry.
3265 * Also ignore alternative replacement instructions. This can happen
3266 * when a whitelisted function uses one of the ALTERNATIVE macros.
3268 if (!strcmp(insn
->sec
->name
, ".fixup") ||
3269 !strcmp(insn
->sec
->name
, ".altinstr_replacement") ||
3270 !strcmp(insn
->sec
->name
, ".altinstr_aux"))
3277 * CONFIG_UBSAN_TRAP inserts a UD2 when it sees
3278 * __builtin_unreachable(). The BUG() macro has an unreachable() after
3279 * the UD2, which causes GCC's undefined trap logic to emit another UD2
3280 * (or occasionally a JMP to UD2).
3282 * It may also insert a UD2 after calling a __noreturn function.
3284 prev_insn
= list_prev_entry(insn
, list
);
3285 if ((prev_insn
->dead_end
|| dead_end_function(file
, prev_insn
->call_dest
)) &&
3286 (insn
->type
== INSN_BUG
||
3287 (insn
->type
== INSN_JUMP_UNCONDITIONAL
&&
3288 insn
->jump_dest
&& insn
->jump_dest
->type
== INSN_BUG
)))
3292 * Check if this (or a subsequent) instruction is related to
3293 * CONFIG_UBSAN or CONFIG_KASAN.
3295 * End the search at 5 instructions to avoid going into the weeds.
3297 for (i
= 0; i
< 5; i
++) {
3299 if (is_kasan_insn(insn
) || is_ubsan_insn(insn
))
3302 if (insn
->type
== INSN_JUMP_UNCONDITIONAL
) {
3303 if (insn
->jump_dest
&&
3304 insn
->jump_dest
->func
== insn
->func
) {
3305 insn
= insn
->jump_dest
;
3312 if (insn
->offset
+ insn
->len
>= insn
->func
->offset
+ insn
->func
->len
)
3315 insn
= list_next_entry(insn
, list
);
3321 static int validate_symbol(struct objtool_file
*file
, struct section
*sec
,
3322 struct symbol
*sym
, struct insn_state
*state
)
3324 struct instruction
*insn
;
3328 WARN("%s() is missing an ELF size annotation", sym
->name
);
3332 if (sym
->pfunc
!= sym
|| sym
->alias
!= sym
)
3335 insn
= find_insn(file
, sec
, sym
->offset
);
3336 if (!insn
|| insn
->ignore
|| insn
->visited
)
3339 state
->uaccess
= sym
->uaccess_safe
;
3341 ret
= validate_branch(file
, insn
->func
, insn
, *state
);
3342 if (ret
&& backtrace
)
3343 BT_FUNC("<=== (sym)", insn
);
3347 static int validate_section(struct objtool_file
*file
, struct section
*sec
)
3349 struct insn_state state
;
3350 struct symbol
*func
;
3353 list_for_each_entry(func
, &sec
->symbol_list
, list
) {
3354 if (func
->type
!= STT_FUNC
)
3357 init_insn_state(&state
, sec
);
3358 set_func_state(&state
.cfi
);
3360 warnings
+= validate_symbol(file
, sec
, func
, &state
);
3366 static int validate_vmlinux_functions(struct objtool_file
*file
)
3368 struct section
*sec
;
3371 sec
= find_section_by_name(file
->elf
, ".noinstr.text");
3373 warnings
+= validate_section(file
, sec
);
3374 warnings
+= validate_unwind_hints(file
, sec
);
3377 sec
= find_section_by_name(file
->elf
, ".entry.text");
3379 warnings
+= validate_section(file
, sec
);
3380 warnings
+= validate_unwind_hints(file
, sec
);
3386 static int validate_functions(struct objtool_file
*file
)
3388 struct section
*sec
;
3391 for_each_sec(file
, sec
) {
3392 if (!(sec
->sh
.sh_flags
& SHF_EXECINSTR
))
3395 warnings
+= validate_section(file
, sec
);
3401 static int validate_reachable_instructions(struct objtool_file
*file
)
3403 struct instruction
*insn
;
3405 if (file
->ignore_unreachables
)
3408 for_each_insn(file
, insn
) {
3409 if (insn
->visited
|| ignore_unreachable_insn(file
, insn
))
3412 WARN_FUNC("unreachable instruction", insn
->sec
, insn
->offset
);
3419 int check(struct objtool_file
*file
)
3421 int ret
, warnings
= 0;
3423 arch_initial_func_cfi_state(&initial_func_cfi
);
3424 init_cfi_state(&init_cfi
);
3425 init_cfi_state(&func_cfi
);
3426 set_func_state(&func_cfi
);
3428 if (!cfi_hash_alloc(1UL << (file
->elf
->symbol_bits
- 3)))
3431 cfi_hash_add(&init_cfi
);
3432 cfi_hash_add(&func_cfi
);
3434 ret
= decode_sections(file
);
3440 if (list_empty(&file
->insn_list
))
3443 if (vmlinux
&& !validate_dup
) {
3444 ret
= validate_vmlinux_functions(file
);
3453 ret
= validate_retpoline(file
);
3459 ret
= validate_functions(file
);
3464 ret
= validate_unwind_hints(file
, NULL
);
3470 ret
= validate_reachable_instructions(file
);
3476 ret
= create_static_call_sections(file
);
3482 ret
= create_retpoline_sites_sections(file
);
3487 ret
= create_return_sites_sections(file
);
3494 ret
= create_mcount_loc_sections(file
);
3501 printf("nr_insns_visited: %ld\n", nr_insns_visited
);
3502 printf("nr_cfi: %ld\n", nr_cfi
);
3503 printf("nr_cfi_reused: %ld\n", nr_cfi_reused
);
3504 printf("nr_cfi_cache: %ld\n", nr_cfi_cache
);
3509 * For now, don't fail the kernel build on fatal warnings. These
3510 * errors are still fairly common due to the growing matrix of
3511 * supported toolchains and their recent pace of change.