2 * Copyright (C) 2015-2017 Josh Poimboeuf <jpoimboe@redhat.com>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
27 #include <linux/hashtable.h>
28 #include <linux/kernel.h>
31 struct list_head list
;
32 struct instruction
*insn
;
37 struct cfi_state initial_func_cfi
;
39 struct instruction
*find_insn(struct objtool_file
*file
,
40 struct section
*sec
, unsigned long offset
)
42 struct instruction
*insn
;
44 hash_for_each_possible(file
->insn_hash
, insn
, hash
, offset
)
45 if (insn
->sec
== sec
&& insn
->offset
== offset
)
51 static struct instruction
*next_insn_same_sec(struct objtool_file
*file
,
52 struct instruction
*insn
)
54 struct instruction
*next
= list_next_entry(insn
, list
);
56 if (!next
|| &next
->list
== &file
->insn_list
|| next
->sec
!= insn
->sec
)
62 #define func_for_each_insn(file, func, insn) \
63 for (insn = find_insn(file, func->sec, func->offset); \
64 insn && &insn->list != &file->insn_list && \
65 insn->sec == func->sec && \
66 insn->offset < func->offset + func->len; \
67 insn = list_next_entry(insn, list))
69 #define func_for_each_insn_continue_reverse(file, func, insn) \
70 for (insn = list_prev_entry(insn, list); \
71 &insn->list != &file->insn_list && \
72 insn->sec == func->sec && insn->offset >= func->offset; \
73 insn = list_prev_entry(insn, list))
75 #define sec_for_each_insn_from(file, insn) \
76 for (; insn; insn = next_insn_same_sec(file, insn))
78 #define sec_for_each_insn_continue(file, insn) \
79 for (insn = next_insn_same_sec(file, insn); insn; \
80 insn = next_insn_same_sec(file, insn))
83 * Check if the function has been manually whitelisted with the
84 * STACK_FRAME_NON_STANDARD macro, or if it should be automatically whitelisted
85 * due to its use of a context switching instruction.
87 static bool ignore_func(struct objtool_file
*file
, struct symbol
*func
)
91 /* check for STACK_FRAME_NON_STANDARD */
92 if (file
->whitelist
&& file
->whitelist
->rela
)
93 list_for_each_entry(rela
, &file
->whitelist
->rela
->rela_list
, list
) {
94 if (rela
->sym
->type
== STT_SECTION
&&
95 rela
->sym
->sec
== func
->sec
&&
96 rela
->addend
== func
->offset
)
98 if (rela
->sym
->type
== STT_FUNC
&& rela
->sym
== func
)
106 * This checks to see if the given function is a "noreturn" function.
108 * For global functions which are outside the scope of this object file, we
109 * have to keep a manual list of them.
111 * For local functions, we have to detect them manually by simply looking for
112 * the lack of a return instruction.
119 static int __dead_end_function(struct objtool_file
*file
, struct symbol
*func
,
123 struct instruction
*insn
;
127 * Unfortunately these have to be hard coded because the noreturn
128 * attribute isn't provided in ELF data.
130 static const char * const global_noreturns
[] = {
135 "__module_put_and_exit",
137 "kvm_spurious_fault",
143 if (func
->bind
== STB_WEAK
)
146 if (func
->bind
== STB_GLOBAL
)
147 for (i
= 0; i
< ARRAY_SIZE(global_noreturns
); i
++)
148 if (!strcmp(func
->name
, global_noreturns
[i
]))
154 func_for_each_insn(file
, func
, insn
) {
157 if (insn
->type
== INSN_RETURN
)
165 * A function can have a sibling call instead of a return. In that
166 * case, the function's dead-end status depends on whether the target
167 * of the sibling call returns.
169 func_for_each_insn(file
, func
, insn
) {
170 if (insn
->sec
!= func
->sec
||
171 insn
->offset
>= func
->offset
+ func
->len
)
174 if (insn
->type
== INSN_JUMP_UNCONDITIONAL
) {
175 struct instruction
*dest
= insn
->jump_dest
;
176 struct symbol
*dest_func
;
179 /* sibling call to another file */
182 if (dest
->sec
!= func
->sec
||
183 dest
->offset
< func
->offset
||
184 dest
->offset
>= func
->offset
+ func
->len
) {
185 /* local sibling call */
186 dest_func
= find_symbol_by_offset(dest
->sec
,
191 if (recursion
== 5) {
192 WARN_FUNC("infinite recursion (objtool bug!)",
193 dest
->sec
, dest
->offset
);
197 return __dead_end_function(file
, dest_func
,
202 if (insn
->type
== INSN_JUMP_DYNAMIC
&& list_empty(&insn
->alts
))
210 static int dead_end_function(struct objtool_file
*file
, struct symbol
*func
)
212 return __dead_end_function(file
, func
, 0);
215 static void clear_insn_state(struct insn_state
*state
)
219 memset(state
, 0, sizeof(*state
));
220 state
->cfa
.base
= CFI_UNDEFINED
;
221 for (i
= 0; i
< CFI_NUM_REGS
; i
++) {
222 state
->regs
[i
].base
= CFI_UNDEFINED
;
223 state
->vals
[i
].base
= CFI_UNDEFINED
;
225 state
->drap_reg
= CFI_UNDEFINED
;
226 state
->drap_offset
= -1;
230 * Call the arch-specific instruction decoder for all the instructions and add
231 * them to the global instruction list.
233 static int decode_instructions(struct objtool_file
*file
)
237 unsigned long offset
;
238 struct instruction
*insn
;
241 for_each_sec(file
, sec
) {
243 if (!(sec
->sh
.sh_flags
& SHF_EXECINSTR
))
246 if (strcmp(sec
->name
, ".altinstr_replacement") &&
247 strcmp(sec
->name
, ".altinstr_aux") &&
248 strncmp(sec
->name
, ".discard.", 9))
251 for (offset
= 0; offset
< sec
->len
; offset
+= insn
->len
) {
252 insn
= malloc(sizeof(*insn
));
254 WARN("malloc failed");
257 memset(insn
, 0, sizeof(*insn
));
258 INIT_LIST_HEAD(&insn
->alts
);
259 clear_insn_state(&insn
->state
);
262 insn
->offset
= offset
;
264 ret
= arch_decode_instruction(file
->elf
, sec
, offset
,
266 &insn
->len
, &insn
->type
,
272 if (!insn
->type
|| insn
->type
> INSN_LAST
) {
273 WARN_FUNC("invalid instruction type %d",
274 insn
->sec
, insn
->offset
, insn
->type
);
279 hash_add(file
->insn_hash
, &insn
->hash
, insn
->offset
);
280 list_add_tail(&insn
->list
, &file
->insn_list
);
283 list_for_each_entry(func
, &sec
->symbol_list
, list
) {
284 if (func
->type
!= STT_FUNC
)
287 if (!find_insn(file
, sec
, func
->offset
)) {
288 WARN("%s(): can't find starting instruction",
293 func_for_each_insn(file
, func
, insn
)
307 * Mark "ud2" instructions and manually annotated dead ends.
309 static int add_dead_ends(struct objtool_file
*file
)
313 struct instruction
*insn
;
317 * By default, "ud2" is a dead end unless otherwise annotated, because
318 * GCC 7 inserts it for certain divide-by-zero cases.
320 for_each_insn(file
, insn
)
321 if (insn
->type
== INSN_BUG
)
322 insn
->dead_end
= true;
325 * Check for manually annotated dead ends.
327 sec
= find_section_by_name(file
->elf
, ".rela.discard.unreachable");
331 list_for_each_entry(rela
, &sec
->rela_list
, list
) {
332 if (rela
->sym
->type
!= STT_SECTION
) {
333 WARN("unexpected relocation symbol type in %s", sec
->name
);
336 insn
= find_insn(file
, rela
->sym
->sec
, rela
->addend
);
338 insn
= list_prev_entry(insn
, list
);
339 else if (rela
->addend
== rela
->sym
->sec
->len
) {
341 list_for_each_entry_reverse(insn
, &file
->insn_list
, list
) {
342 if (insn
->sec
== rela
->sym
->sec
) {
349 WARN("can't find unreachable insn at %s+0x%x",
350 rela
->sym
->sec
->name
, rela
->addend
);
354 WARN("can't find unreachable insn at %s+0x%x",
355 rela
->sym
->sec
->name
, rela
->addend
);
359 insn
->dead_end
= true;
364 * These manually annotated reachable checks are needed for GCC 4.4,
365 * where the Linux unreachable() macro isn't supported. In that case
366 * GCC doesn't know the "ud2" is fatal, so it generates code as if it's
369 sec
= find_section_by_name(file
->elf
, ".rela.discard.reachable");
373 list_for_each_entry(rela
, &sec
->rela_list
, list
) {
374 if (rela
->sym
->type
!= STT_SECTION
) {
375 WARN("unexpected relocation symbol type in %s", sec
->name
);
378 insn
= find_insn(file
, rela
->sym
->sec
, rela
->addend
);
380 insn
= list_prev_entry(insn
, list
);
381 else if (rela
->addend
== rela
->sym
->sec
->len
) {
383 list_for_each_entry_reverse(insn
, &file
->insn_list
, list
) {
384 if (insn
->sec
== rela
->sym
->sec
) {
391 WARN("can't find reachable insn at %s+0x%x",
392 rela
->sym
->sec
->name
, rela
->addend
);
396 WARN("can't find reachable insn at %s+0x%x",
397 rela
->sym
->sec
->name
, rela
->addend
);
401 insn
->dead_end
= false;
408 * Warnings shouldn't be reported for ignored functions.
410 static void add_ignores(struct objtool_file
*file
)
412 struct instruction
*insn
;
416 for_each_sec(file
, sec
) {
417 list_for_each_entry(func
, &sec
->symbol_list
, list
) {
418 if (func
->type
!= STT_FUNC
)
421 if (!ignore_func(file
, func
))
424 func_for_each_insn(file
, func
, insn
)
431 * FIXME: For now, just ignore any alternatives which add retpolines. This is
432 * a temporary hack, as it doesn't allow ORC to unwind from inside a retpoline.
433 * But it at least allows objtool to understand the control flow *around* the
436 static int add_nospec_ignores(struct objtool_file
*file
)
440 struct instruction
*insn
;
442 sec
= find_section_by_name(file
->elf
, ".rela.discard.nospec");
446 list_for_each_entry(rela
, &sec
->rela_list
, list
) {
447 if (rela
->sym
->type
!= STT_SECTION
) {
448 WARN("unexpected relocation symbol type in %s", sec
->name
);
452 insn
= find_insn(file
, rela
->sym
->sec
, rela
->addend
);
454 WARN("bad .discard.nospec entry");
458 insn
->ignore_alts
= true;
465 * Find the destination instructions for all jumps.
467 static int add_jump_destinations(struct objtool_file
*file
)
469 struct instruction
*insn
;
471 struct section
*dest_sec
;
472 unsigned long dest_off
;
474 for_each_insn(file
, insn
) {
475 if (insn
->type
!= INSN_JUMP_CONDITIONAL
&&
476 insn
->type
!= INSN_JUMP_UNCONDITIONAL
)
482 rela
= find_rela_by_dest_range(insn
->sec
, insn
->offset
,
485 dest_sec
= insn
->sec
;
486 dest_off
= insn
->offset
+ insn
->len
+ insn
->immediate
;
487 } else if (rela
->sym
->type
== STT_SECTION
) {
488 dest_sec
= rela
->sym
->sec
;
489 dest_off
= rela
->addend
+ 4;
490 } else if (rela
->sym
->sec
->idx
) {
491 dest_sec
= rela
->sym
->sec
;
492 dest_off
= rela
->sym
->sym
.st_value
+ rela
->addend
+ 4;
493 } else if (strstr(rela
->sym
->name
, "_indirect_thunk_")) {
495 * Retpoline jumps are really dynamic jumps in
496 * disguise, so convert them accordingly.
498 insn
->type
= INSN_JUMP_DYNAMIC
;
506 insn
->jump_dest
= find_insn(file
, dest_sec
, dest_off
);
507 if (!insn
->jump_dest
) {
510 * This is a special case where an alt instruction
511 * jumps past the end of the section. These are
512 * handled later in handle_group_alt().
514 if (!strcmp(insn
->sec
->name
, ".altinstr_replacement"))
517 WARN_FUNC("can't find jump dest instruction at %s+0x%lx",
518 insn
->sec
, insn
->offset
, dest_sec
->name
,
528 * Find the destination instructions for all calls.
530 static int add_call_destinations(struct objtool_file
*file
)
532 struct instruction
*insn
;
533 unsigned long dest_off
;
536 for_each_insn(file
, insn
) {
537 if (insn
->type
!= INSN_CALL
)
540 rela
= find_rela_by_dest_range(insn
->sec
, insn
->offset
,
543 dest_off
= insn
->offset
+ insn
->len
+ insn
->immediate
;
544 insn
->call_dest
= find_symbol_by_offset(insn
->sec
,
547 if (!insn
->call_dest
&& !insn
->ignore
) {
548 WARN_FUNC("unsupported intra-function call",
549 insn
->sec
, insn
->offset
);
550 WARN("If this is a retpoline, please patch it in with alternatives and annotate it with ANNOTATE_NOSPEC_ALTERNATIVE.");
554 } else if (rela
->sym
->type
== STT_SECTION
) {
555 insn
->call_dest
= find_symbol_by_offset(rela
->sym
->sec
,
557 if (!insn
->call_dest
||
558 insn
->call_dest
->type
!= STT_FUNC
) {
559 WARN_FUNC("can't find call dest symbol at %s+0x%x",
560 insn
->sec
, insn
->offset
,
561 rela
->sym
->sec
->name
,
566 insn
->call_dest
= rela
->sym
;
573 * The .alternatives section requires some extra special care, over and above
574 * what other special sections require:
576 * 1. Because alternatives are patched in-place, we need to insert a fake jump
577 * instruction at the end so that validate_branch() skips all the original
578 * replaced instructions when validating the new instruction path.
580 * 2. An added wrinkle is that the new instruction length might be zero. In
581 * that case the old instructions are replaced with noops. We simulate that
582 * by creating a fake jump as the only new instruction.
584 * 3. In some cases, the alternative section includes an instruction which
585 * conditionally jumps to the _end_ of the entry. We have to modify these
586 * jumps' destinations to point back to .text rather than the end of the
587 * entry in .altinstr_replacement.
589 * 4. It has been requested that we don't validate the !POPCNT feature path
590 * which is a "very very small percentage of machines".
592 static int handle_group_alt(struct objtool_file
*file
,
593 struct special_alt
*special_alt
,
594 struct instruction
*orig_insn
,
595 struct instruction
**new_insn
)
597 struct instruction
*last_orig_insn
, *last_new_insn
, *insn
, *fake_jump
= NULL
;
598 unsigned long dest_off
;
600 last_orig_insn
= NULL
;
602 sec_for_each_insn_from(file
, insn
) {
603 if (insn
->offset
>= special_alt
->orig_off
+ special_alt
->orig_len
)
606 if (special_alt
->skip_orig
)
607 insn
->type
= INSN_NOP
;
609 insn
->alt_group
= true;
610 last_orig_insn
= insn
;
613 if (next_insn_same_sec(file
, last_orig_insn
)) {
614 fake_jump
= malloc(sizeof(*fake_jump
));
616 WARN("malloc failed");
619 memset(fake_jump
, 0, sizeof(*fake_jump
));
620 INIT_LIST_HEAD(&fake_jump
->alts
);
621 clear_insn_state(&fake_jump
->state
);
623 fake_jump
->sec
= special_alt
->new_sec
;
624 fake_jump
->offset
= -1;
625 fake_jump
->type
= INSN_JUMP_UNCONDITIONAL
;
626 fake_jump
->jump_dest
= list_next_entry(last_orig_insn
, list
);
627 fake_jump
->ignore
= true;
630 if (!special_alt
->new_len
) {
632 WARN("%s: empty alternative at end of section",
633 special_alt
->orig_sec
->name
);
637 *new_insn
= fake_jump
;
641 last_new_insn
= NULL
;
643 sec_for_each_insn_from(file
, insn
) {
644 if (insn
->offset
>= special_alt
->new_off
+ special_alt
->new_len
)
647 last_new_insn
= insn
;
649 insn
->ignore
= orig_insn
->ignore_alts
;
651 if (insn
->type
!= INSN_JUMP_CONDITIONAL
&&
652 insn
->type
!= INSN_JUMP_UNCONDITIONAL
)
655 if (!insn
->immediate
)
658 dest_off
= insn
->offset
+ insn
->len
+ insn
->immediate
;
659 if (dest_off
== special_alt
->new_off
+ special_alt
->new_len
) {
661 WARN("%s: alternative jump to end of section",
662 special_alt
->orig_sec
->name
);
665 insn
->jump_dest
= fake_jump
;
668 if (!insn
->jump_dest
) {
669 WARN_FUNC("can't find alternative jump destination",
670 insn
->sec
, insn
->offset
);
675 if (!last_new_insn
) {
676 WARN_FUNC("can't find last new alternative instruction",
677 special_alt
->new_sec
, special_alt
->new_off
);
682 list_add(&fake_jump
->list
, &last_new_insn
->list
);
688 * A jump table entry can either convert a nop to a jump or a jump to a nop.
689 * If the original instruction is a jump, make the alt entry an effective nop
690 * by just skipping the original instruction.
692 static int handle_jump_alt(struct objtool_file
*file
,
693 struct special_alt
*special_alt
,
694 struct instruction
*orig_insn
,
695 struct instruction
**new_insn
)
697 if (orig_insn
->type
== INSN_NOP
)
700 if (orig_insn
->type
!= INSN_JUMP_UNCONDITIONAL
) {
701 WARN_FUNC("unsupported instruction at jump label",
702 orig_insn
->sec
, orig_insn
->offset
);
706 *new_insn
= list_next_entry(orig_insn
, list
);
711 * Read all the special sections which have alternate instructions which can be
712 * patched in or redirected to at runtime. Each instruction having alternate
713 * instruction(s) has them added to its insn->alts list, which will be
714 * traversed in validate_branch().
716 static int add_special_section_alts(struct objtool_file
*file
)
718 struct list_head special_alts
;
719 struct instruction
*orig_insn
, *new_insn
;
720 struct special_alt
*special_alt
, *tmp
;
721 struct alternative
*alt
;
724 ret
= special_get_alts(file
->elf
, &special_alts
);
728 list_for_each_entry_safe(special_alt
, tmp
, &special_alts
, list
) {
730 orig_insn
= find_insn(file
, special_alt
->orig_sec
,
731 special_alt
->orig_off
);
733 WARN_FUNC("special: can't find orig instruction",
734 special_alt
->orig_sec
, special_alt
->orig_off
);
740 if (!special_alt
->group
|| special_alt
->new_len
) {
741 new_insn
= find_insn(file
, special_alt
->new_sec
,
742 special_alt
->new_off
);
744 WARN_FUNC("special: can't find new instruction",
745 special_alt
->new_sec
,
746 special_alt
->new_off
);
752 if (special_alt
->group
) {
753 ret
= handle_group_alt(file
, special_alt
, orig_insn
,
757 } else if (special_alt
->jump_or_nop
) {
758 ret
= handle_jump_alt(file
, special_alt
, orig_insn
,
764 alt
= malloc(sizeof(*alt
));
766 WARN("malloc failed");
771 alt
->insn
= new_insn
;
772 list_add_tail(&alt
->list
, &orig_insn
->alts
);
774 list_del(&special_alt
->list
);
782 static int add_switch_table(struct objtool_file
*file
, struct symbol
*func
,
783 struct instruction
*insn
, struct rela
*table
,
784 struct rela
*next_table
)
786 struct rela
*rela
= table
;
787 struct instruction
*alt_insn
;
788 struct alternative
*alt
;
790 list_for_each_entry_from(rela
, &file
->rodata
->rela
->rela_list
, list
) {
791 if (rela
== next_table
)
794 if (rela
->sym
->sec
!= insn
->sec
||
795 rela
->addend
<= func
->offset
||
796 rela
->addend
>= func
->offset
+ func
->len
)
799 alt_insn
= find_insn(file
, insn
->sec
, rela
->addend
);
801 WARN("%s: can't find instruction at %s+0x%x",
802 file
->rodata
->rela
->name
, insn
->sec
->name
,
807 alt
= malloc(sizeof(*alt
));
809 WARN("malloc failed");
813 alt
->insn
= alt_insn
;
814 list_add_tail(&alt
->list
, &insn
->alts
);
821 * find_switch_table() - Given a dynamic jump, find the switch jump table in
822 * .rodata associated with it.
824 * There are 3 basic patterns:
826 * 1. jmpq *[rodata addr](,%reg,8)
828 * This is the most common case by far. It jumps to an address in a simple
829 * jump table which is stored in .rodata.
831 * 2. jmpq *[rodata addr](%rip)
833 * This is caused by a rare GCC quirk, currently only seen in three driver
834 * functions in the kernel, only with certain obscure non-distro configs.
836 * As part of an optimization, GCC makes a copy of an existing switch jump
837 * table, modifies it, and then hard-codes the jump (albeit with an indirect
838 * jump) to use a single entry in the table. The rest of the jump table and
839 * some of its jump targets remain as dead code.
841 * In such a case we can just crudely ignore all unreachable instruction
842 * warnings for the entire object file. Ideally we would just ignore them
843 * for the function, but that would require redesigning the code quite a
844 * bit. And honestly that's just not worth doing: unreachable instruction
845 * warnings are of questionable value anyway, and this is such a rare issue.
847 * 3. mov [rodata addr],%reg1
848 * ... some instructions ...
849 * jmpq *(%reg1,%reg2,8)
851 * This is a fairly uncommon pattern which is new for GCC 6. As of this
852 * writing, there are 11 occurrences of it in the allmodconfig kernel.
854 * As of GCC 7 there are quite a few more of these and the 'in between' code
855 * is significant. Esp. with KASAN enabled some of the code between the mov
856 * and jmpq uses .rodata itself, which can confuse things.
858 * TODO: Once we have DWARF CFI and smarter instruction decoding logic,
859 * ensure the same register is used in the mov and jump instructions.
861 * NOTE: RETPOLINE made it harder still to decode dynamic jumps.
863 static struct rela
*find_switch_table(struct objtool_file
*file
,
865 struct instruction
*insn
)
867 struct rela
*text_rela
, *rodata_rela
;
868 struct instruction
*orig_insn
= insn
;
870 text_rela
= find_rela_by_dest_range(insn
->sec
, insn
->offset
, insn
->len
);
871 if (text_rela
&& text_rela
->sym
== file
->rodata
->sym
) {
873 rodata_rela
= find_rela_by_dest(file
->rodata
,
879 rodata_rela
= find_rela_by_dest(file
->rodata
,
880 text_rela
->addend
+ 4);
884 file
->ignore_unreachables
= true;
890 * Backward search using the @first_jump_src links, these help avoid
891 * much of the 'in between' code. Which avoids us getting confused by
894 for (insn
= list_prev_entry(insn
, list
);
896 &insn
->list
!= &file
->insn_list
&&
897 insn
->sec
== func
->sec
&&
898 insn
->offset
>= func
->offset
;
900 insn
= insn
->first_jump_src
?: list_prev_entry(insn
, list
)) {
902 if (insn
->type
== INSN_JUMP_DYNAMIC
)
905 /* allow small jumps within the range */
906 if (insn
->type
== INSN_JUMP_UNCONDITIONAL
&&
908 (insn
->jump_dest
->offset
<= insn
->offset
||
909 insn
->jump_dest
->offset
> orig_insn
->offset
))
912 /* look for a relocation which references .rodata */
913 text_rela
= find_rela_by_dest_range(insn
->sec
, insn
->offset
,
915 if (!text_rela
|| text_rela
->sym
!= file
->rodata
->sym
)
919 * Make sure the .rodata address isn't associated with a
920 * symbol. gcc jump tables are anonymous data.
922 if (find_symbol_containing(file
->rodata
, text_rela
->addend
))
925 return find_rela_by_dest(file
->rodata
, text_rela
->addend
);
932 static int add_func_switch_tables(struct objtool_file
*file
,
935 struct instruction
*insn
, *last
= NULL
, *prev_jump
= NULL
;
936 struct rela
*rela
, *prev_rela
= NULL
;
939 func_for_each_insn(file
, func
, insn
) {
944 * Store back-pointers for unconditional forward jumps such
945 * that find_switch_table() can back-track using those and
946 * avoid some potentially confusing code.
948 if (insn
->type
== INSN_JUMP_UNCONDITIONAL
&& insn
->jump_dest
&&
949 insn
->offset
> last
->offset
&&
950 insn
->jump_dest
->offset
> insn
->offset
&&
951 !insn
->jump_dest
->first_jump_src
) {
953 insn
->jump_dest
->first_jump_src
= insn
;
954 last
= insn
->jump_dest
;
957 if (insn
->type
!= INSN_JUMP_DYNAMIC
)
960 rela
= find_switch_table(file
, func
, insn
);
965 * We found a switch table, but we don't know yet how big it
966 * is. Don't add it until we reach the end of the function or
967 * the beginning of another switch table in the same function.
970 ret
= add_switch_table(file
, func
, prev_jump
, prev_rela
,
981 ret
= add_switch_table(file
, func
, prev_jump
, prev_rela
, NULL
);
990 * For some switch statements, gcc generates a jump table in the .rodata
991 * section which contains a list of addresses within the function to jump to.
992 * This finds these jump tables and adds them to the insn->alts lists.
994 static int add_switch_table_alts(struct objtool_file
*file
)
1000 if (!file
->rodata
|| !file
->rodata
->rela
)
1003 for_each_sec(file
, sec
) {
1004 list_for_each_entry(func
, &sec
->symbol_list
, list
) {
1005 if (func
->type
!= STT_FUNC
)
1008 ret
= add_func_switch_tables(file
, func
);
1017 static int read_unwind_hints(struct objtool_file
*file
)
1019 struct section
*sec
, *relasec
;
1021 struct unwind_hint
*hint
;
1022 struct instruction
*insn
;
1023 struct cfi_reg
*cfa
;
1026 sec
= find_section_by_name(file
->elf
, ".discard.unwind_hints");
1030 relasec
= sec
->rela
;
1032 WARN("missing .rela.discard.unwind_hints section");
1036 if (sec
->len
% sizeof(struct unwind_hint
)) {
1037 WARN("struct unwind_hint size mismatch");
1043 for (i
= 0; i
< sec
->len
/ sizeof(struct unwind_hint
); i
++) {
1044 hint
= (struct unwind_hint
*)sec
->data
->d_buf
+ i
;
1046 rela
= find_rela_by_dest(sec
, i
* sizeof(*hint
));
1048 WARN("can't find rela for unwind_hints[%d]", i
);
1052 insn
= find_insn(file
, rela
->sym
->sec
, rela
->addend
);
1054 WARN("can't find insn for unwind_hints[%d]", i
);
1058 cfa
= &insn
->state
.cfa
;
1060 if (hint
->type
== UNWIND_HINT_TYPE_SAVE
) {
1064 } else if (hint
->type
== UNWIND_HINT_TYPE_RESTORE
) {
1065 insn
->restore
= true;
1072 switch (hint
->sp_reg
) {
1073 case ORC_REG_UNDEFINED
:
1074 cfa
->base
= CFI_UNDEFINED
;
1082 case ORC_REG_SP_INDIRECT
:
1083 cfa
->base
= CFI_SP_INDIRECT
;
1086 cfa
->base
= CFI_R10
;
1089 cfa
->base
= CFI_R13
;
1098 WARN_FUNC("unsupported unwind_hint sp base reg %d",
1099 insn
->sec
, insn
->offset
, hint
->sp_reg
);
1103 cfa
->offset
= hint
->sp_offset
;
1104 insn
->state
.type
= hint
->type
;
1110 static int decode_sections(struct objtool_file
*file
)
1114 ret
= decode_instructions(file
);
1118 ret
= add_dead_ends(file
);
1124 ret
= add_nospec_ignores(file
);
1128 ret
= add_jump_destinations(file
);
1132 ret
= add_special_section_alts(file
);
1136 ret
= add_call_destinations(file
);
1140 ret
= add_switch_table_alts(file
);
1144 ret
= read_unwind_hints(file
);
1151 static bool is_fentry_call(struct instruction
*insn
)
1153 if (insn
->type
== INSN_CALL
&&
1154 insn
->call_dest
->type
== STT_NOTYPE
&&
1155 !strcmp(insn
->call_dest
->name
, "__fentry__"))
1161 static bool has_modified_stack_frame(struct insn_state
*state
)
1165 if (state
->cfa
.base
!= initial_func_cfi
.cfa
.base
||
1166 state
->cfa
.offset
!= initial_func_cfi
.cfa
.offset
||
1167 state
->stack_size
!= initial_func_cfi
.cfa
.offset
||
1171 for (i
= 0; i
< CFI_NUM_REGS
; i
++)
1172 if (state
->regs
[i
].base
!= initial_func_cfi
.regs
[i
].base
||
1173 state
->regs
[i
].offset
!= initial_func_cfi
.regs
[i
].offset
)
1179 static bool has_valid_stack_frame(struct insn_state
*state
)
1181 if (state
->cfa
.base
== CFI_BP
&& state
->regs
[CFI_BP
].base
== CFI_CFA
&&
1182 state
->regs
[CFI_BP
].offset
== -16)
1185 if (state
->drap
&& state
->regs
[CFI_BP
].base
== CFI_BP
)
1191 static int update_insn_state_regs(struct instruction
*insn
, struct insn_state
*state
)
1193 struct cfi_reg
*cfa
= &state
->cfa
;
1194 struct stack_op
*op
= &insn
->stack_op
;
1196 if (cfa
->base
!= CFI_SP
)
1200 if (op
->dest
.type
== OP_DEST_PUSH
)
1204 if (op
->src
.type
== OP_SRC_POP
)
1207 /* add immediate to sp */
1208 if (op
->dest
.type
== OP_DEST_REG
&& op
->src
.type
== OP_SRC_ADD
&&
1209 op
->dest
.reg
== CFI_SP
&& op
->src
.reg
== CFI_SP
)
1210 cfa
->offset
-= op
->src
.offset
;
1215 static void save_reg(struct insn_state
*state
, unsigned char reg
, int base
,
1218 if (arch_callee_saved_reg(reg
) &&
1219 state
->regs
[reg
].base
== CFI_UNDEFINED
) {
1220 state
->regs
[reg
].base
= base
;
1221 state
->regs
[reg
].offset
= offset
;
1225 static void restore_reg(struct insn_state
*state
, unsigned char reg
)
1227 state
->regs
[reg
].base
= CFI_UNDEFINED
;
1228 state
->regs
[reg
].offset
= 0;
1232 * A note about DRAP stack alignment:
1234 * GCC has the concept of a DRAP register, which is used to help keep track of
1235 * the stack pointer when aligning the stack. r10 or r13 is used as the DRAP
1236 * register. The typical DRAP pattern is:
1238 * 4c 8d 54 24 08 lea 0x8(%rsp),%r10
1239 * 48 83 e4 c0 and $0xffffffffffffffc0,%rsp
1240 * 41 ff 72 f8 pushq -0x8(%r10)
1242 * 48 89 e5 mov %rsp,%rbp
1249 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1252 * There are some variations in the epilogues, like:
1260 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1265 * 4c 8b 55 e8 mov -0x18(%rbp),%r10
1266 * 48 8b 5d e0 mov -0x20(%rbp),%rbx
1267 * 4c 8b 65 f0 mov -0x10(%rbp),%r12
1268 * 4c 8b 6d f8 mov -0x8(%rbp),%r13
1270 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1273 * Sometimes r13 is used as the DRAP register, in which case it's saved and
1274 * restored beforehand:
1277 * 4c 8d 6c 24 10 lea 0x10(%rsp),%r13
1278 * 48 83 e4 f0 and $0xfffffffffffffff0,%rsp
1280 * 49 8d 65 f0 lea -0x10(%r13),%rsp
1284 static int update_insn_state(struct instruction
*insn
, struct insn_state
*state
)
1286 struct stack_op
*op
= &insn
->stack_op
;
1287 struct cfi_reg
*cfa
= &state
->cfa
;
1288 struct cfi_reg
*regs
= state
->regs
;
1290 /* stack operations don't make sense with an undefined CFA */
1291 if (cfa
->base
== CFI_UNDEFINED
) {
1293 WARN_FUNC("undefined stack state", insn
->sec
, insn
->offset
);
1299 if (state
->type
== ORC_TYPE_REGS
|| state
->type
== ORC_TYPE_REGS_IRET
)
1300 return update_insn_state_regs(insn
, state
);
1302 switch (op
->dest
.type
) {
1305 switch (op
->src
.type
) {
1308 if (op
->src
.reg
== CFI_SP
&& op
->dest
.reg
== CFI_BP
&&
1309 cfa
->base
== CFI_SP
&&
1310 regs
[CFI_BP
].base
== CFI_CFA
&&
1311 regs
[CFI_BP
].offset
== -cfa
->offset
) {
1313 /* mov %rsp, %rbp */
1314 cfa
->base
= op
->dest
.reg
;
1315 state
->bp_scratch
= false;
1318 else if (op
->src
.reg
== CFI_SP
&&
1319 op
->dest
.reg
== CFI_BP
&& state
->drap
) {
1321 /* drap: mov %rsp, %rbp */
1322 regs
[CFI_BP
].base
= CFI_BP
;
1323 regs
[CFI_BP
].offset
= -state
->stack_size
;
1324 state
->bp_scratch
= false;
1327 else if (op
->src
.reg
== CFI_SP
&& cfa
->base
== CFI_SP
) {
1332 * This is needed for the rare case where GCC
1339 state
->vals
[op
->dest
.reg
].base
= CFI_CFA
;
1340 state
->vals
[op
->dest
.reg
].offset
= -state
->stack_size
;
1343 else if (op
->dest
.reg
== cfa
->base
) {
1345 /* mov %reg, %rsp */
1346 if (cfa
->base
== CFI_SP
&&
1347 state
->vals
[op
->src
.reg
].base
== CFI_CFA
) {
1350 * This is needed for the rare case
1351 * where GCC does something dumb like:
1353 * lea 0x8(%rsp), %rcx
1357 cfa
->offset
= -state
->vals
[op
->src
.reg
].offset
;
1358 state
->stack_size
= cfa
->offset
;
1361 cfa
->base
= CFI_UNDEFINED
;
1369 if (op
->dest
.reg
== CFI_SP
&& op
->src
.reg
== CFI_SP
) {
1372 state
->stack_size
-= op
->src
.offset
;
1373 if (cfa
->base
== CFI_SP
)
1374 cfa
->offset
-= op
->src
.offset
;
1378 if (op
->dest
.reg
== CFI_SP
&& op
->src
.reg
== CFI_BP
) {
1380 /* lea disp(%rbp), %rsp */
1381 state
->stack_size
= -(op
->src
.offset
+ regs
[CFI_BP
].offset
);
1385 if (op
->src
.reg
== CFI_SP
&& cfa
->base
== CFI_SP
) {
1387 /* drap: lea disp(%rsp), %drap */
1388 state
->drap_reg
= op
->dest
.reg
;
1391 * lea disp(%rsp), %reg
1393 * This is needed for the rare case where GCC
1394 * does something dumb like:
1396 * lea 0x8(%rsp), %rcx
1400 state
->vals
[op
->dest
.reg
].base
= CFI_CFA
;
1401 state
->vals
[op
->dest
.reg
].offset
= \
1402 -state
->stack_size
+ op
->src
.offset
;
1407 if (state
->drap
&& op
->dest
.reg
== CFI_SP
&&
1408 op
->src
.reg
== state
->drap_reg
) {
1410 /* drap: lea disp(%drap), %rsp */
1412 cfa
->offset
= state
->stack_size
= -op
->src
.offset
;
1413 state
->drap_reg
= CFI_UNDEFINED
;
1414 state
->drap
= false;
1418 if (op
->dest
.reg
== state
->cfa
.base
) {
1419 WARN_FUNC("unsupported stack register modification",
1420 insn
->sec
, insn
->offset
);
1427 if (op
->dest
.reg
!= CFI_SP
||
1428 (state
->drap_reg
!= CFI_UNDEFINED
&& cfa
->base
!= CFI_SP
) ||
1429 (state
->drap_reg
== CFI_UNDEFINED
&& cfa
->base
!= CFI_BP
)) {
1430 WARN_FUNC("unsupported stack pointer realignment",
1431 insn
->sec
, insn
->offset
);
1435 if (state
->drap_reg
!= CFI_UNDEFINED
) {
1436 /* drap: and imm, %rsp */
1437 cfa
->base
= state
->drap_reg
;
1438 cfa
->offset
= state
->stack_size
= 0;
1443 * Older versions of GCC (4.8ish) realign the stack
1444 * without DRAP, with a frame pointer.
1450 if (!state
->drap
&& op
->dest
.type
== OP_DEST_REG
&&
1451 op
->dest
.reg
== cfa
->base
) {
1457 if (state
->drap
&& cfa
->base
== CFI_BP_INDIRECT
&&
1458 op
->dest
.type
== OP_DEST_REG
&&
1459 op
->dest
.reg
== state
->drap_reg
&&
1460 state
->drap_offset
== -state
->stack_size
) {
1462 /* drap: pop %drap */
1463 cfa
->base
= state
->drap_reg
;
1465 state
->drap_offset
= -1;
1467 } else if (regs
[op
->dest
.reg
].offset
== -state
->stack_size
) {
1470 restore_reg(state
, op
->dest
.reg
);
1473 state
->stack_size
-= 8;
1474 if (cfa
->base
== CFI_SP
)
1479 case OP_SRC_REG_INDIRECT
:
1480 if (state
->drap
&& op
->src
.reg
== CFI_BP
&&
1481 op
->src
.offset
== state
->drap_offset
) {
1483 /* drap: mov disp(%rbp), %drap */
1484 cfa
->base
= state
->drap_reg
;
1486 state
->drap_offset
= -1;
1489 if (state
->drap
&& op
->src
.reg
== CFI_BP
&&
1490 op
->src
.offset
== regs
[op
->dest
.reg
].offset
) {
1492 /* drap: mov disp(%rbp), %reg */
1493 restore_reg(state
, op
->dest
.reg
);
1495 } else if (op
->src
.reg
== cfa
->base
&&
1496 op
->src
.offset
== regs
[op
->dest
.reg
].offset
+ cfa
->offset
) {
1498 /* mov disp(%rbp), %reg */
1499 /* mov disp(%rsp), %reg */
1500 restore_reg(state
, op
->dest
.reg
);
1506 WARN_FUNC("unknown stack-related instruction",
1507 insn
->sec
, insn
->offset
);
1514 state
->stack_size
+= 8;
1515 if (cfa
->base
== CFI_SP
)
1518 if (op
->src
.type
!= OP_SRC_REG
)
1522 if (op
->src
.reg
== cfa
->base
&& op
->src
.reg
== state
->drap_reg
) {
1524 /* drap: push %drap */
1525 cfa
->base
= CFI_BP_INDIRECT
;
1526 cfa
->offset
= -state
->stack_size
;
1528 /* save drap so we know when to restore it */
1529 state
->drap_offset
= -state
->stack_size
;
1531 } else if (op
->src
.reg
== CFI_BP
&& cfa
->base
== state
->drap_reg
) {
1533 /* drap: push %rbp */
1534 state
->stack_size
= 0;
1536 } else if (regs
[op
->src
.reg
].base
== CFI_UNDEFINED
) {
1538 /* drap: push %reg */
1539 save_reg(state
, op
->src
.reg
, CFI_BP
, -state
->stack_size
);
1545 save_reg(state
, op
->src
.reg
, CFI_CFA
, -state
->stack_size
);
1548 /* detect when asm code uses rbp as a scratch register */
1549 if (!no_fp
&& insn
->func
&& op
->src
.reg
== CFI_BP
&&
1550 cfa
->base
!= CFI_BP
)
1551 state
->bp_scratch
= true;
1554 case OP_DEST_REG_INDIRECT
:
1557 if (op
->src
.reg
== cfa
->base
&& op
->src
.reg
== state
->drap_reg
) {
1559 /* drap: mov %drap, disp(%rbp) */
1560 cfa
->base
= CFI_BP_INDIRECT
;
1561 cfa
->offset
= op
->dest
.offset
;
1563 /* save drap offset so we know when to restore it */
1564 state
->drap_offset
= op
->dest
.offset
;
1567 else if (regs
[op
->src
.reg
].base
== CFI_UNDEFINED
) {
1569 /* drap: mov reg, disp(%rbp) */
1570 save_reg(state
, op
->src
.reg
, CFI_BP
, op
->dest
.offset
);
1573 } else if (op
->dest
.reg
== cfa
->base
) {
1575 /* mov reg, disp(%rbp) */
1576 /* mov reg, disp(%rsp) */
1577 save_reg(state
, op
->src
.reg
, CFI_CFA
,
1578 op
->dest
.offset
- state
->cfa
.offset
);
1584 if ((!state
->drap
&& cfa
->base
!= CFI_BP
) ||
1585 (state
->drap
&& cfa
->base
!= state
->drap_reg
)) {
1586 WARN_FUNC("leave instruction with modified stack frame",
1587 insn
->sec
, insn
->offset
);
1591 /* leave (mov %rbp, %rsp; pop %rbp) */
1593 state
->stack_size
= -state
->regs
[CFI_BP
].offset
- 8;
1594 restore_reg(state
, CFI_BP
);
1604 if (op
->src
.type
!= OP_SRC_POP
) {
1605 WARN_FUNC("unknown stack-related memory operation",
1606 insn
->sec
, insn
->offset
);
1611 state
->stack_size
-= 8;
1612 if (cfa
->base
== CFI_SP
)
1618 WARN_FUNC("unknown stack-related instruction",
1619 insn
->sec
, insn
->offset
);
1626 static bool insn_state_match(struct instruction
*insn
, struct insn_state
*state
)
1628 struct insn_state
*state1
= &insn
->state
, *state2
= state
;
1631 if (memcmp(&state1
->cfa
, &state2
->cfa
, sizeof(state1
->cfa
))) {
1632 WARN_FUNC("stack state mismatch: cfa1=%d%+d cfa2=%d%+d",
1633 insn
->sec
, insn
->offset
,
1634 state1
->cfa
.base
, state1
->cfa
.offset
,
1635 state2
->cfa
.base
, state2
->cfa
.offset
);
1637 } else if (memcmp(&state1
->regs
, &state2
->regs
, sizeof(state1
->regs
))) {
1638 for (i
= 0; i
< CFI_NUM_REGS
; i
++) {
1639 if (!memcmp(&state1
->regs
[i
], &state2
->regs
[i
],
1640 sizeof(struct cfi_reg
)))
1643 WARN_FUNC("stack state mismatch: reg1[%d]=%d%+d reg2[%d]=%d%+d",
1644 insn
->sec
, insn
->offset
,
1645 i
, state1
->regs
[i
].base
, state1
->regs
[i
].offset
,
1646 i
, state2
->regs
[i
].base
, state2
->regs
[i
].offset
);
1650 } else if (state1
->type
!= state2
->type
) {
1651 WARN_FUNC("stack state mismatch: type1=%d type2=%d",
1652 insn
->sec
, insn
->offset
, state1
->type
, state2
->type
);
1654 } else if (state1
->drap
!= state2
->drap
||
1655 (state1
->drap
&& state1
->drap_reg
!= state2
->drap_reg
) ||
1656 (state1
->drap
&& state1
->drap_offset
!= state2
->drap_offset
)) {
1657 WARN_FUNC("stack state mismatch: drap1=%d(%d,%d) drap2=%d(%d,%d)",
1658 insn
->sec
, insn
->offset
,
1659 state1
->drap
, state1
->drap_reg
, state1
->drap_offset
,
1660 state2
->drap
, state2
->drap_reg
, state2
->drap_offset
);
1669 * Follow the branch starting at the given instruction, and recursively follow
1670 * any other branches (jumps). Meanwhile, track the frame pointer state at
1671 * each instruction and validate all the rules described in
1672 * tools/objtool/Documentation/stack-validation.txt.
1674 static int validate_branch(struct objtool_file
*file
, struct instruction
*first
,
1675 struct insn_state state
)
1677 struct alternative
*alt
;
1678 struct instruction
*insn
, *next_insn
;
1679 struct section
*sec
;
1680 struct symbol
*func
= NULL
;
1686 if (insn
->alt_group
&& list_empty(&insn
->alts
)) {
1687 WARN_FUNC("don't know how to handle branch to middle of alternative instruction group",
1693 next_insn
= next_insn_same_sec(file
, insn
);
1696 if (file
->c_file
&& func
&& insn
->func
&& func
!= insn
->func
) {
1697 WARN("%s() falls through to next function %s()",
1698 func
->name
, insn
->func
->name
);
1705 if (func
&& insn
->ignore
) {
1706 WARN_FUNC("BUG: why am I validating an ignored function?",
1711 if (insn
->visited
) {
1712 if (!insn
->hint
&& !insn_state_match(insn
, &state
))
1719 if (insn
->restore
) {
1720 struct instruction
*save_insn
, *i
;
1724 func_for_each_insn_continue_reverse(file
, func
, i
) {
1732 WARN_FUNC("no corresponding CFI save for CFI restore",
1737 if (!save_insn
->visited
) {
1739 * Oops, no state to copy yet.
1740 * Hopefully we can reach this
1741 * instruction from another branch
1742 * after the save insn has been
1748 WARN_FUNC("objtool isn't smart enough to handle this CFI save/restore combo",
1753 insn
->state
= save_insn
->state
;
1756 state
= insn
->state
;
1759 insn
->state
= state
;
1761 insn
->visited
= true;
1763 if (!insn
->ignore_alts
) {
1764 list_for_each_entry(alt
, &insn
->alts
, list
) {
1765 ret
= validate_branch(file
, alt
->insn
, state
);
1771 switch (insn
->type
) {
1774 if (func
&& has_modified_stack_frame(&state
)) {
1775 WARN_FUNC("return with modified stack frame",
1780 if (state
.bp_scratch
) {
1781 WARN("%s uses BP as a scratch register",
1789 if (is_fentry_call(insn
))
1792 ret
= dead_end_function(file
, insn
->call_dest
);
1799 case INSN_CALL_DYNAMIC
:
1800 if (!no_fp
&& func
&& !has_valid_stack_frame(&state
)) {
1801 WARN_FUNC("call without frame pointer save/setup",
1807 case INSN_JUMP_CONDITIONAL
:
1808 case INSN_JUMP_UNCONDITIONAL
:
1809 if (insn
->jump_dest
&&
1810 (!func
|| !insn
->jump_dest
->func
||
1811 func
== insn
->jump_dest
->func
)) {
1812 ret
= validate_branch(file
, insn
->jump_dest
,
1817 } else if (func
&& has_modified_stack_frame(&state
)) {
1818 WARN_FUNC("sibling call from callable instruction with modified stack frame",
1823 if (insn
->type
== INSN_JUMP_UNCONDITIONAL
)
1828 case INSN_JUMP_DYNAMIC
:
1829 if (func
&& list_empty(&insn
->alts
) &&
1830 has_modified_stack_frame(&state
)) {
1831 WARN_FUNC("sibling call from callable instruction with modified stack frame",
1838 case INSN_CONTEXT_SWITCH
:
1839 if (func
&& (!next_insn
|| !next_insn
->hint
)) {
1840 WARN_FUNC("unsupported instruction in callable function",
1847 if (update_insn_state(insn
, &state
))
1860 if (state
.cfa
.base
== CFI_UNDEFINED
)
1862 WARN("%s: unexpected end of section", sec
->name
);
1872 static int validate_unwind_hints(struct objtool_file
*file
)
1874 struct instruction
*insn
;
1875 int ret
, warnings
= 0;
1876 struct insn_state state
;
1881 clear_insn_state(&state
);
1883 for_each_insn(file
, insn
) {
1884 if (insn
->hint
&& !insn
->visited
) {
1885 ret
= validate_branch(file
, insn
, state
);
1893 static bool is_kasan_insn(struct instruction
*insn
)
1895 return (insn
->type
== INSN_CALL
&&
1896 !strcmp(insn
->call_dest
->name
, "__asan_handle_no_return"));
1899 static bool is_ubsan_insn(struct instruction
*insn
)
1901 return (insn
->type
== INSN_CALL
&&
1902 !strcmp(insn
->call_dest
->name
,
1903 "__ubsan_handle_builtin_unreachable"));
1906 static bool ignore_unreachable_insn(struct instruction
*insn
)
1910 if (insn
->ignore
|| insn
->type
== INSN_NOP
)
1914 * Ignore any unused exceptions. This can happen when a whitelisted
1915 * function has an exception table entry.
1917 * Also ignore alternative replacement instructions. This can happen
1918 * when a whitelisted function uses one of the ALTERNATIVE macros.
1920 if (!strcmp(insn
->sec
->name
, ".fixup") ||
1921 !strcmp(insn
->sec
->name
, ".altinstr_replacement") ||
1922 !strcmp(insn
->sec
->name
, ".altinstr_aux"))
1926 * Check if this (or a subsequent) instruction is related to
1927 * CONFIG_UBSAN or CONFIG_KASAN.
1929 * End the search at 5 instructions to avoid going into the weeds.
1933 for (i
= 0; i
< 5; i
++) {
1935 if (is_kasan_insn(insn
) || is_ubsan_insn(insn
))
1938 if (insn
->type
== INSN_JUMP_UNCONDITIONAL
) {
1939 if (insn
->jump_dest
&&
1940 insn
->jump_dest
->func
== insn
->func
) {
1941 insn
= insn
->jump_dest
;
1948 if (insn
->offset
+ insn
->len
>= insn
->func
->offset
+ insn
->func
->len
)
1951 insn
= list_next_entry(insn
, list
);
1957 static int validate_functions(struct objtool_file
*file
)
1959 struct section
*sec
;
1960 struct symbol
*func
;
1961 struct instruction
*insn
;
1962 struct insn_state state
;
1963 int ret
, warnings
= 0;
1965 clear_insn_state(&state
);
1967 state
.cfa
= initial_func_cfi
.cfa
;
1968 memcpy(&state
.regs
, &initial_func_cfi
.regs
,
1969 CFI_NUM_REGS
* sizeof(struct cfi_reg
));
1970 state
.stack_size
= initial_func_cfi
.cfa
.offset
;
1972 for_each_sec(file
, sec
) {
1973 list_for_each_entry(func
, &sec
->symbol_list
, list
) {
1974 if (func
->type
!= STT_FUNC
)
1977 insn
= find_insn(file
, sec
, func
->offset
);
1978 if (!insn
|| insn
->ignore
)
1981 ret
= validate_branch(file
, insn
, state
);
1989 static int validate_reachable_instructions(struct objtool_file
*file
)
1991 struct instruction
*insn
;
1993 if (file
->ignore_unreachables
)
1996 for_each_insn(file
, insn
) {
1997 if (insn
->visited
|| ignore_unreachable_insn(insn
))
2000 WARN_FUNC("unreachable instruction", insn
->sec
, insn
->offset
);
2007 static void cleanup(struct objtool_file
*file
)
2009 struct instruction
*insn
, *tmpinsn
;
2010 struct alternative
*alt
, *tmpalt
;
2012 list_for_each_entry_safe(insn
, tmpinsn
, &file
->insn_list
, list
) {
2013 list_for_each_entry_safe(alt
, tmpalt
, &insn
->alts
, list
) {
2014 list_del(&alt
->list
);
2017 list_del(&insn
->list
);
2018 hash_del(&insn
->hash
);
2021 elf_close(file
->elf
);
2024 int check(const char *_objname
, bool _no_fp
, bool no_unreachable
, bool orc
)
2026 struct objtool_file file
;
2027 int ret
, warnings
= 0;
2032 file
.elf
= elf_open(objname
, orc
? O_RDWR
: O_RDONLY
);
2036 INIT_LIST_HEAD(&file
.insn_list
);
2037 hash_init(file
.insn_hash
);
2038 file
.whitelist
= find_section_by_name(file
.elf
, ".discard.func_stack_frame_non_standard");
2039 file
.rodata
= find_section_by_name(file
.elf
, ".rodata");
2040 file
.c_file
= find_section_by_name(file
.elf
, ".comment");
2041 file
.ignore_unreachables
= no_unreachable
;
2044 arch_initial_func_cfi_state(&initial_func_cfi
);
2046 ret
= decode_sections(&file
);
2051 if (list_empty(&file
.insn_list
))
2054 ret
= validate_functions(&file
);
2059 ret
= validate_unwind_hints(&file
);
2065 ret
= validate_reachable_instructions(&file
);
2072 ret
= create_orc(&file
);
2076 ret
= create_orc_sections(&file
);
2080 ret
= elf_write(file
.elf
);
2088 /* ignore warnings for now until we get all the code cleaned up */
2089 if (ret
|| warnings
)