]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - tools/objtool/check.c
objtool: Remove SAVE/RESTORE hints
[mirror_ubuntu-jammy-kernel.git] / tools / objtool / check.c
CommitLineData
1ccea77e 1// SPDX-License-Identifier: GPL-2.0-or-later
dcc914f4
JP
2/*
3 * Copyright (C) 2015-2017 Josh Poimboeuf <jpoimboe@redhat.com>
dcc914f4
JP
4 */
5
6#include <string.h>
7#include <stdlib.h>
8
43a4525f 9#include "builtin.h"
dcc914f4
JP
10#include "check.h"
11#include "elf.h"
12#include "special.h"
13#include "arch.h"
14#include "warn.h"
15
16#include <linux/hashtable.h>
17#include <linux/kernel.h>
18
e6da9567
JP
19#define FAKE_JUMP_OFFSET -1
20
87b512de
JP
21#define C_JUMP_TABLE_SECTION ".rodata..c_jump_table"
22
dcc914f4
JP
23struct alternative {
24 struct list_head list;
25 struct instruction *insn;
764eef4b 26 bool skip_orig;
dcc914f4
JP
27};
28
29const char *objname;
baa41469 30struct cfi_state initial_func_cfi;
dcc914f4 31
627fce14
JP
32struct instruction *find_insn(struct objtool_file *file,
33 struct section *sec, unsigned long offset)
dcc914f4
JP
34{
35 struct instruction *insn;
36
37 hash_for_each_possible(file->insn_hash, insn, hash, offset)
38 if (insn->sec == sec && insn->offset == offset)
39 return insn;
40
41 return NULL;
42}
43
44static struct instruction *next_insn_same_sec(struct objtool_file *file,
45 struct instruction *insn)
46{
47 struct instruction *next = list_next_entry(insn, list);
48
baa41469 49 if (!next || &next->list == &file->insn_list || next->sec != insn->sec)
dcc914f4
JP
50 return NULL;
51
52 return next;
53}
54
13810435
JP
55static struct instruction *next_insn_same_func(struct objtool_file *file,
56 struct instruction *insn)
57{
58 struct instruction *next = list_next_entry(insn, list);
59 struct symbol *func = insn->func;
60
61 if (!func)
62 return NULL;
63
64 if (&next->list != &file->insn_list && next->func == func)
65 return next;
66
67 /* Check if we're already in the subfunction: */
68 if (func == func->cfunc)
69 return NULL;
70
71 /* Move to the subfunction: */
72 return find_insn(file, func->cfunc->sec, func->cfunc->offset);
73}
74
f0f70adb 75#define func_for_each_insn(file, func, insn) \
13810435
JP
76 for (insn = find_insn(file, func->sec, func->offset); \
77 insn; \
78 insn = next_insn_same_func(file, insn))
79
dbf4aeb0
PZ
80#define sym_for_each_insn(file, sym, insn) \
81 for (insn = find_insn(file, sym->sec, sym->offset); \
dcc914f4 82 insn && &insn->list != &file->insn_list && \
dbf4aeb0
PZ
83 insn->sec == sym->sec && \
84 insn->offset < sym->offset + sym->len; \
dcc914f4
JP
85 insn = list_next_entry(insn, list))
86
dbf4aeb0 87#define sym_for_each_insn_continue_reverse(file, sym, insn) \
dcc914f4
JP
88 for (insn = list_prev_entry(insn, list); \
89 &insn->list != &file->insn_list && \
dbf4aeb0 90 insn->sec == sym->sec && insn->offset >= sym->offset; \
dcc914f4
JP
91 insn = list_prev_entry(insn, list))
92
93#define sec_for_each_insn_from(file, insn) \
94 for (; insn; insn = next_insn_same_sec(file, insn))
95
baa41469
JP
96#define sec_for_each_insn_continue(file, insn) \
97 for (insn = next_insn_same_sec(file, insn); insn; \
98 insn = next_insn_same_sec(file, insn))
dcc914f4 99
a2296140
JP
100static bool is_static_jump(struct instruction *insn)
101{
102 return insn->type == INSN_JUMP_CONDITIONAL ||
103 insn->type == INSN_JUMP_UNCONDITIONAL;
104}
105
0c1ddd33
JP
106static bool is_sibling_call(struct instruction *insn)
107{
108 /* An indirect jump is either a sibling call or a jump to a table. */
109 if (insn->type == INSN_JUMP_DYNAMIC)
110 return list_empty(&insn->alts);
111
a2296140 112 if (!is_static_jump(insn))
0c1ddd33
JP
113 return false;
114
115 /* add_jump_destinations() sets insn->call_dest for sibling calls. */
116 return !!insn->call_dest;
117}
118
dcc914f4
JP
119/*
120 * This checks to see if the given function is a "noreturn" function.
121 *
122 * For global functions which are outside the scope of this object file, we
123 * have to keep a manual list of them.
124 *
125 * For local functions, we have to detect them manually by simply looking for
126 * the lack of a return instruction.
dcc914f4 127 */
8e25c9f8
JP
128static bool __dead_end_function(struct objtool_file *file, struct symbol *func,
129 int recursion)
dcc914f4
JP
130{
131 int i;
132 struct instruction *insn;
133 bool empty = true;
134
135 /*
136 * Unfortunately these have to be hard coded because the noreturn
137 * attribute isn't provided in ELF data.
138 */
139 static const char * const global_noreturns[] = {
140 "__stack_chk_fail",
141 "panic",
142 "do_exit",
143 "do_task_dead",
144 "__module_put_and_exit",
145 "complete_and_exit",
dcc914f4
JP
146 "__reiserfs_panic",
147 "lbug_with_loc",
148 "fortify_panic",
b394d468 149 "usercopy_abort",
684fb246 150 "machine_real_restart",
4fa5ecda 151 "rewind_stack_do_exit",
33adf80f 152 "kunit_try_catch_throw",
dcc914f4
JP
153 };
154
c9bab22b
JP
155 if (!func)
156 return false;
157
dcc914f4 158 if (func->bind == STB_WEAK)
8e25c9f8 159 return false;
dcc914f4
JP
160
161 if (func->bind == STB_GLOBAL)
162 for (i = 0; i < ARRAY_SIZE(global_noreturns); i++)
163 if (!strcmp(func->name, global_noreturns[i]))
8e25c9f8 164 return true;
dcc914f4 165
13810435 166 if (!func->len)
8e25c9f8 167 return false;
dcc914f4 168
13810435
JP
169 insn = find_insn(file, func->sec, func->offset);
170 if (!insn->func)
8e25c9f8 171 return false;
13810435 172
f0f70adb 173 func_for_each_insn(file, func, insn) {
dcc914f4
JP
174 empty = false;
175
176 if (insn->type == INSN_RETURN)
8e25c9f8 177 return false;
dcc914f4
JP
178 }
179
180 if (empty)
8e25c9f8 181 return false;
dcc914f4
JP
182
183 /*
184 * A function can have a sibling call instead of a return. In that
185 * case, the function's dead-end status depends on whether the target
186 * of the sibling call returns.
187 */
f0f70adb 188 func_for_each_insn(file, func, insn) {
0c1ddd33 189 if (is_sibling_call(insn)) {
dcc914f4 190 struct instruction *dest = insn->jump_dest;
dcc914f4
JP
191
192 if (!dest)
193 /* sibling call to another file */
8e25c9f8 194 return false;
dcc914f4 195
0c1ddd33
JP
196 /* local sibling call */
197 if (recursion == 5) {
198 /*
199 * Infinite recursion: two functions have
200 * sibling calls to each other. This is a very
201 * rare case. It means they aren't dead ends.
202 */
203 return false;
dcc914f4 204 }
dcc914f4 205
0c1ddd33
JP
206 return __dead_end_function(file, dest->func, recursion+1);
207 }
dcc914f4
JP
208 }
209
8e25c9f8 210 return true;
dcc914f4
JP
211}
212
8e25c9f8 213static bool dead_end_function(struct objtool_file *file, struct symbol *func)
dcc914f4
JP
214{
215 return __dead_end_function(file, func, 0);
216}
217
baa41469
JP
218static void clear_insn_state(struct insn_state *state)
219{
220 int i;
221
222 memset(state, 0, sizeof(*state));
223 state->cfa.base = CFI_UNDEFINED;
dd88a0a0 224 for (i = 0; i < CFI_NUM_REGS; i++) {
baa41469 225 state->regs[i].base = CFI_UNDEFINED;
dd88a0a0
JP
226 state->vals[i].base = CFI_UNDEFINED;
227 }
baa41469 228 state->drap_reg = CFI_UNDEFINED;
bf4d1a83 229 state->drap_offset = -1;
baa41469
JP
230}
231
dcc914f4
JP
232/*
233 * Call the arch-specific instruction decoder for all the instructions and add
234 * them to the global instruction list.
235 */
236static int decode_instructions(struct objtool_file *file)
237{
238 struct section *sec;
239 struct symbol *func;
240 unsigned long offset;
241 struct instruction *insn;
1e11f3fd 242 unsigned long nr_insns = 0;
dcc914f4
JP
243 int ret;
244
baa41469 245 for_each_sec(file, sec) {
dcc914f4
JP
246
247 if (!(sec->sh.sh_flags & SHF_EXECINSTR))
248 continue;
249
627fce14
JP
250 if (strcmp(sec->name, ".altinstr_replacement") &&
251 strcmp(sec->name, ".altinstr_aux") &&
252 strncmp(sec->name, ".discard.", 9))
253 sec->text = true;
254
dcc914f4
JP
255 for (offset = 0; offset < sec->len; offset += insn->len) {
256 insn = malloc(sizeof(*insn));
baa41469
JP
257 if (!insn) {
258 WARN("malloc failed");
259 return -1;
260 }
dcc914f4 261 memset(insn, 0, sizeof(*insn));
dcc914f4 262 INIT_LIST_HEAD(&insn->alts);
65ea47dc 263 INIT_LIST_HEAD(&insn->stack_ops);
baa41469
JP
264 clear_insn_state(&insn->state);
265
dcc914f4
JP
266 insn->sec = sec;
267 insn->offset = offset;
268
269 ret = arch_decode_instruction(file->elf, sec, offset,
270 sec->len - offset,
271 &insn->len, &insn->type,
baa41469 272 &insn->immediate,
65ea47dc 273 &insn->stack_ops);
dcc914f4 274 if (ret)
b7037983 275 goto err;
dcc914f4 276
dcc914f4
JP
277 hash_add(file->insn_hash, &insn->hash, insn->offset);
278 list_add_tail(&insn->list, &file->insn_list);
1e11f3fd 279 nr_insns++;
dcc914f4
JP
280 }
281
282 list_for_each_entry(func, &sec->symbol_list, list) {
e10cd8fe 283 if (func->type != STT_FUNC || func->alias != func)
dcc914f4
JP
284 continue;
285
286 if (!find_insn(file, sec, func->offset)) {
287 WARN("%s(): can't find starting instruction",
288 func->name);
289 return -1;
290 }
291
dbf4aeb0 292 sym_for_each_insn(file, func, insn)
e10cd8fe 293 insn->func = func;
dcc914f4
JP
294 }
295 }
296
1e11f3fd
PZ
297 if (stats)
298 printf("nr_insns: %lu\n", nr_insns);
299
dcc914f4 300 return 0;
b7037983
KB
301
302err:
303 free(insn);
304 return ret;
dcc914f4
JP
305}
306
307/*
649ea4d5 308 * Mark "ud2" instructions and manually annotated dead ends.
dcc914f4
JP
309 */
310static int add_dead_ends(struct objtool_file *file)
311{
312 struct section *sec;
313 struct rela *rela;
314 struct instruction *insn;
315 bool found;
316
649ea4d5
JP
317 /*
318 * By default, "ud2" is a dead end unless otherwise annotated, because
319 * GCC 7 inserts it for certain divide-by-zero cases.
320 */
321 for_each_insn(file, insn)
322 if (insn->type == INSN_BUG)
323 insn->dead_end = true;
324
325 /*
326 * Check for manually annotated dead ends.
327 */
dcc914f4
JP
328 sec = find_section_by_name(file->elf, ".rela.discard.unreachable");
329 if (!sec)
649ea4d5 330 goto reachable;
dcc914f4
JP
331
332 list_for_each_entry(rela, &sec->rela_list, list) {
333 if (rela->sym->type != STT_SECTION) {
334 WARN("unexpected relocation symbol type in %s", sec->name);
335 return -1;
336 }
337 insn = find_insn(file, rela->sym->sec, rela->addend);
338 if (insn)
339 insn = list_prev_entry(insn, list);
340 else if (rela->addend == rela->sym->sec->len) {
341 found = false;
342 list_for_each_entry_reverse(insn, &file->insn_list, list) {
343 if (insn->sec == rela->sym->sec) {
344 found = true;
345 break;
346 }
347 }
348
349 if (!found) {
350 WARN("can't find unreachable insn at %s+0x%x",
351 rela->sym->sec->name, rela->addend);
352 return -1;
353 }
354 } else {
355 WARN("can't find unreachable insn at %s+0x%x",
356 rela->sym->sec->name, rela->addend);
357 return -1;
358 }
359
360 insn->dead_end = true;
361 }
362
649ea4d5
JP
363reachable:
364 /*
365 * These manually annotated reachable checks are needed for GCC 4.4,
366 * where the Linux unreachable() macro isn't supported. In that case
367 * GCC doesn't know the "ud2" is fatal, so it generates code as if it's
368 * not a dead end.
369 */
370 sec = find_section_by_name(file->elf, ".rela.discard.reachable");
371 if (!sec)
372 return 0;
373
374 list_for_each_entry(rela, &sec->rela_list, list) {
375 if (rela->sym->type != STT_SECTION) {
376 WARN("unexpected relocation symbol type in %s", sec->name);
377 return -1;
378 }
379 insn = find_insn(file, rela->sym->sec, rela->addend);
380 if (insn)
381 insn = list_prev_entry(insn, list);
382 else if (rela->addend == rela->sym->sec->len) {
383 found = false;
384 list_for_each_entry_reverse(insn, &file->insn_list, list) {
385 if (insn->sec == rela->sym->sec) {
386 found = true;
387 break;
388 }
389 }
390
391 if (!found) {
392 WARN("can't find reachable insn at %s+0x%x",
393 rela->sym->sec->name, rela->addend);
394 return -1;
395 }
396 } else {
397 WARN("can't find reachable insn at %s+0x%x",
398 rela->sym->sec->name, rela->addend);
399 return -1;
400 }
401
402 insn->dead_end = false;
403 }
404
dcc914f4
JP
405 return 0;
406}
407
408/*
409 * Warnings shouldn't be reported for ignored functions.
410 */
411static void add_ignores(struct objtool_file *file)
412{
413 struct instruction *insn;
414 struct section *sec;
415 struct symbol *func;
aaf5c623 416 struct rela *rela;
dcc914f4 417
aaf5c623
PZ
418 sec = find_section_by_name(file->elf, ".rela.discard.func_stack_frame_non_standard");
419 if (!sec)
420 return;
dcc914f4 421
aaf5c623
PZ
422 list_for_each_entry(rela, &sec->rela_list, list) {
423 switch (rela->sym->type) {
424 case STT_FUNC:
425 func = rela->sym;
426 break;
427
428 case STT_SECTION:
7acfe531
JP
429 func = find_func_by_offset(rela->sym->sec, rela->addend);
430 if (!func)
dcc914f4 431 continue;
aaf5c623 432 break;
dcc914f4 433
aaf5c623
PZ
434 default:
435 WARN("unexpected relocation symbol type in %s: %d", sec->name, rela->sym->type);
436 continue;
dcc914f4 437 }
aaf5c623 438
f0f70adb 439 func_for_each_insn(file, func, insn)
aaf5c623 440 insn->ignore = true;
dcc914f4
JP
441 }
442}
443
ea24213d
PZ
444/*
445 * This is a whitelist of functions that is allowed to be called with AC set.
446 * The list is meant to be minimal and only contains compiler instrumentation
447 * ABI and a few functions used to implement *_{to,from}_user() functions.
448 *
449 * These functions must not directly change AC, but may PUSHF/POPF.
450 */
451static const char *uaccess_safe_builtin[] = {
452 /* KASAN */
453 "kasan_report",
454 "check_memory_region",
455 /* KASAN out-of-line */
456 "__asan_loadN_noabort",
457 "__asan_load1_noabort",
458 "__asan_load2_noabort",
459 "__asan_load4_noabort",
460 "__asan_load8_noabort",
461 "__asan_load16_noabort",
462 "__asan_storeN_noabort",
463 "__asan_store1_noabort",
464 "__asan_store2_noabort",
465 "__asan_store4_noabort",
466 "__asan_store8_noabort",
467 "__asan_store16_noabort",
468 /* KASAN in-line */
469 "__asan_report_load_n_noabort",
470 "__asan_report_load1_noabort",
471 "__asan_report_load2_noabort",
472 "__asan_report_load4_noabort",
473 "__asan_report_load8_noabort",
474 "__asan_report_load16_noabort",
475 "__asan_report_store_n_noabort",
476 "__asan_report_store1_noabort",
477 "__asan_report_store2_noabort",
478 "__asan_report_store4_noabort",
479 "__asan_report_store8_noabort",
480 "__asan_report_store16_noabort",
481 /* KCOV */
482 "write_comp_data",
483 "__sanitizer_cov_trace_pc",
484 "__sanitizer_cov_trace_const_cmp1",
485 "__sanitizer_cov_trace_const_cmp2",
486 "__sanitizer_cov_trace_const_cmp4",
487 "__sanitizer_cov_trace_const_cmp8",
488 "__sanitizer_cov_trace_cmp1",
489 "__sanitizer_cov_trace_cmp2",
490 "__sanitizer_cov_trace_cmp4",
491 "__sanitizer_cov_trace_cmp8",
36b1c700 492 "__sanitizer_cov_trace_switch",
ea24213d
PZ
493 /* UBSAN */
494 "ubsan_type_mismatch_common",
495 "__ubsan_handle_type_mismatch",
496 "__ubsan_handle_type_mismatch_v1",
9a50dcaf 497 "__ubsan_handle_shift_out_of_bounds",
ea24213d
PZ
498 /* misc */
499 "csum_partial_copy_generic",
500 "__memcpy_mcsafe",
a7e47f26 501 "mcsafe_handle_tail",
ea24213d
PZ
502 "ftrace_likely_update", /* CONFIG_TRACE_BRANCH_PROFILING */
503 NULL
504};
505
506static void add_uaccess_safe(struct objtool_file *file)
507{
508 struct symbol *func;
509 const char **name;
510
511 if (!uaccess)
512 return;
513
514 for (name = uaccess_safe_builtin; *name; name++) {
515 func = find_symbol_by_name(file->elf, *name);
516 if (!func)
517 continue;
518
e10cd8fe 519 func->uaccess_safe = true;
dcc914f4
JP
520 }
521}
522
258c7605
JP
523/*
524 * FIXME: For now, just ignore any alternatives which add retpolines. This is
525 * a temporary hack, as it doesn't allow ORC to unwind from inside a retpoline.
526 * But it at least allows objtool to understand the control flow *around* the
527 * retpoline.
528 */
ff05ab23 529static int add_ignore_alternatives(struct objtool_file *file)
258c7605
JP
530{
531 struct section *sec;
532 struct rela *rela;
533 struct instruction *insn;
534
ff05ab23 535 sec = find_section_by_name(file->elf, ".rela.discard.ignore_alts");
258c7605
JP
536 if (!sec)
537 return 0;
538
539 list_for_each_entry(rela, &sec->rela_list, list) {
540 if (rela->sym->type != STT_SECTION) {
541 WARN("unexpected relocation symbol type in %s", sec->name);
542 return -1;
543 }
544
545 insn = find_insn(file, rela->sym->sec, rela->addend);
546 if (!insn) {
ff05ab23 547 WARN("bad .discard.ignore_alts entry");
258c7605
JP
548 return -1;
549 }
550
551 insn->ignore_alts = true;
552 }
553
554 return 0;
555}
556
dcc914f4
JP
557/*
558 * Find the destination instructions for all jumps.
559 */
560static int add_jump_destinations(struct objtool_file *file)
561{
562 struct instruction *insn;
563 struct rela *rela;
564 struct section *dest_sec;
565 unsigned long dest_off;
566
567 for_each_insn(file, insn) {
a2296140 568 if (!is_static_jump(insn))
dcc914f4
JP
569 continue;
570
e6da9567 571 if (insn->ignore || insn->offset == FAKE_JUMP_OFFSET)
dcc914f4
JP
572 continue;
573
8b5fa6bc
PZ
574 rela = find_rela_by_dest_range(file->elf, insn->sec,
575 insn->offset, insn->len);
dcc914f4
JP
576 if (!rela) {
577 dest_sec = insn->sec;
bfb08f22 578 dest_off = arch_jump_destination(insn);
dcc914f4
JP
579 } else if (rela->sym->type == STT_SECTION) {
580 dest_sec = rela->sym->sec;
bfb08f22 581 dest_off = arch_dest_rela_offset(rela->addend);
dcc914f4
JP
582 } else if (rela->sym->sec->idx) {
583 dest_sec = rela->sym->sec;
bfb08f22
RG
584 dest_off = rela->sym->sym.st_value +
585 arch_dest_rela_offset(rela->addend);
39b73533
JP
586 } else if (strstr(rela->sym->name, "_indirect_thunk_")) {
587 /*
588 * Retpoline jumps are really dynamic jumps in
589 * disguise, so convert them accordingly.
590 */
b68b9907
JP
591 if (insn->type == INSN_JUMP_UNCONDITIONAL)
592 insn->type = INSN_JUMP_DYNAMIC;
593 else
594 insn->type = INSN_JUMP_DYNAMIC_CONDITIONAL;
595
b5bc2231 596 insn->retpoline_safe = true;
39b73533 597 continue;
dcc914f4 598 } else {
0c1ddd33 599 /* external sibling call */
54262aa2 600 insn->call_dest = rela->sym;
dcc914f4
JP
601 continue;
602 }
603
604 insn->jump_dest = find_insn(file, dest_sec, dest_off);
605 if (!insn->jump_dest) {
606
607 /*
608 * This is a special case where an alt instruction
609 * jumps past the end of the section. These are
610 * handled later in handle_group_alt().
611 */
612 if (!strcmp(insn->sec->name, ".altinstr_replacement"))
613 continue;
614
615 WARN_FUNC("can't find jump dest instruction at %s+0x%lx",
616 insn->sec, insn->offset, dest_sec->name,
617 dest_off);
618 return -1;
619 }
cd77849a
JP
620
621 /*
54262aa2 622 * Cross-function jump.
cd77849a
JP
623 */
624 if (insn->func && insn->jump_dest->func &&
54262aa2
PZ
625 insn->func != insn->jump_dest->func) {
626
627 /*
628 * For GCC 8+, create parent/child links for any cold
629 * subfunctions. This is _mostly_ redundant with a
630 * similar initialization in read_symbols().
631 *
632 * If a function has aliases, we want the *first* such
633 * function in the symbol table to be the subfunction's
634 * parent. In that case we overwrite the
635 * initialization done in read_symbols().
636 *
637 * However this code can't completely replace the
638 * read_symbols() code because this doesn't detect the
639 * case where the parent function's only reference to a
e7c2bc37 640 * subfunction is through a jump table.
54262aa2
PZ
641 */
642 if (!strstr(insn->func->name, ".cold.") &&
643 strstr(insn->jump_dest->func->name, ".cold.")) {
644 insn->func->cfunc = insn->jump_dest->func;
645 insn->jump_dest->func->pfunc = insn->func;
646
647 } else if (insn->jump_dest->func->pfunc != insn->func->pfunc &&
648 insn->jump_dest->offset == insn->jump_dest->func->offset) {
649
0c1ddd33 650 /* internal sibling call */
54262aa2 651 insn->call_dest = insn->jump_dest->func;
54262aa2 652 }
cd77849a 653 }
dcc914f4
JP
654 }
655
656 return 0;
657}
658
659/*
660 * Find the destination instructions for all calls.
661 */
662static int add_call_destinations(struct objtool_file *file)
663{
664 struct instruction *insn;
665 unsigned long dest_off;
666 struct rela *rela;
667
668 for_each_insn(file, insn) {
669 if (insn->type != INSN_CALL)
670 continue;
671
8b5fa6bc
PZ
672 rela = find_rela_by_dest_range(file->elf, insn->sec,
673 insn->offset, insn->len);
dcc914f4 674 if (!rela) {
bfb08f22 675 dest_off = arch_jump_destination(insn);
7acfe531
JP
676 insn->call_dest = find_func_by_offset(insn->sec, dest_off);
677 if (!insn->call_dest)
678 insn->call_dest = find_symbol_by_offset(insn->sec, dest_off);
a845c7cf 679
7acfe531
JP
680 if (insn->ignore)
681 continue;
682
683 if (!insn->call_dest) {
a845c7cf
JP
684 WARN_FUNC("unsupported intra-function call",
685 insn->sec, insn->offset);
b5bc2231
PZ
686 if (retpoline)
687 WARN("If this is a retpoline, please patch it in with alternatives and annotate it with ANNOTATE_NOSPEC_ALTERNATIVE.");
dcc914f4
JP
688 return -1;
689 }
a845c7cf 690
7acfe531
JP
691 if (insn->func && insn->call_dest->type != STT_FUNC) {
692 WARN_FUNC("unsupported call to non-function",
693 insn->sec, insn->offset);
694 return -1;
695 }
696
dcc914f4 697 } else if (rela->sym->type == STT_SECTION) {
bfb08f22 698 dest_off = arch_dest_rela_offset(rela->addend);
7acfe531 699 insn->call_dest = find_func_by_offset(rela->sym->sec,
bfb08f22 700 dest_off);
7acfe531 701 if (!insn->call_dest) {
bfb08f22 702 WARN_FUNC("can't find call dest symbol at %s+0x%lx",
dcc914f4
JP
703 insn->sec, insn->offset,
704 rela->sym->sec->name,
bfb08f22 705 dest_off);
dcc914f4
JP
706 return -1;
707 }
708 } else
709 insn->call_dest = rela->sym;
710 }
711
712 return 0;
713}
714
715/*
716 * The .alternatives section requires some extra special care, over and above
717 * what other special sections require:
718 *
719 * 1. Because alternatives are patched in-place, we need to insert a fake jump
720 * instruction at the end so that validate_branch() skips all the original
721 * replaced instructions when validating the new instruction path.
722 *
723 * 2. An added wrinkle is that the new instruction length might be zero. In
724 * that case the old instructions are replaced with noops. We simulate that
725 * by creating a fake jump as the only new instruction.
726 *
727 * 3. In some cases, the alternative section includes an instruction which
728 * conditionally jumps to the _end_ of the entry. We have to modify these
729 * jumps' destinations to point back to .text rather than the end of the
730 * entry in .altinstr_replacement.
dcc914f4
JP
731 */
732static int handle_group_alt(struct objtool_file *file,
733 struct special_alt *special_alt,
734 struct instruction *orig_insn,
735 struct instruction **new_insn)
736{
17bc3391 737 struct instruction *last_orig_insn, *last_new_insn, *insn, *fake_jump = NULL;
dcc914f4
JP
738 unsigned long dest_off;
739
740 last_orig_insn = NULL;
741 insn = orig_insn;
742 sec_for_each_insn_from(file, insn) {
743 if (insn->offset >= special_alt->orig_off + special_alt->orig_len)
744 break;
745
dcc914f4
JP
746 insn->alt_group = true;
747 last_orig_insn = insn;
748 }
749
17bc3391
JP
750 if (next_insn_same_sec(file, last_orig_insn)) {
751 fake_jump = malloc(sizeof(*fake_jump));
752 if (!fake_jump) {
753 WARN("malloc failed");
754 return -1;
755 }
756 memset(fake_jump, 0, sizeof(*fake_jump));
757 INIT_LIST_HEAD(&fake_jump->alts);
65ea47dc 758 INIT_LIST_HEAD(&fake_jump->stack_ops);
17bc3391
JP
759 clear_insn_state(&fake_jump->state);
760
761 fake_jump->sec = special_alt->new_sec;
e6da9567 762 fake_jump->offset = FAKE_JUMP_OFFSET;
17bc3391
JP
763 fake_jump->type = INSN_JUMP_UNCONDITIONAL;
764 fake_jump->jump_dest = list_next_entry(last_orig_insn, list);
e6da9567 765 fake_jump->func = orig_insn->func;
dcc914f4 766 }
dcc914f4
JP
767
768 if (!special_alt->new_len) {
17bc3391
JP
769 if (!fake_jump) {
770 WARN("%s: empty alternative at end of section",
771 special_alt->orig_sec->name);
772 return -1;
773 }
774
dcc914f4
JP
775 *new_insn = fake_jump;
776 return 0;
777 }
778
779 last_new_insn = NULL;
780 insn = *new_insn;
781 sec_for_each_insn_from(file, insn) {
782 if (insn->offset >= special_alt->new_off + special_alt->new_len)
783 break;
784
785 last_new_insn = insn;
786
a845c7cf 787 insn->ignore = orig_insn->ignore_alts;
a4d09dde 788 insn->func = orig_insn->func;
a845c7cf 789
dc419723
JP
790 /*
791 * Since alternative replacement code is copy/pasted by the
792 * kernel after applying relocations, generally such code can't
793 * have relative-address relocation references to outside the
794 * .altinstr_replacement section, unless the arch's
795 * alternatives code can adjust the relative offsets
796 * accordingly.
797 *
798 * The x86 alternatives code adjusts the offsets only when it
799 * encounters a branch instruction at the very beginning of the
800 * replacement group.
801 */
802 if ((insn->offset != special_alt->new_off ||
803 (insn->type != INSN_CALL && !is_static_jump(insn))) &&
8b5fa6bc 804 find_rela_by_dest_range(file->elf, insn->sec, insn->offset, insn->len)) {
dc419723
JP
805
806 WARN_FUNC("unsupported relocation in alternatives section",
807 insn->sec, insn->offset);
808 return -1;
809 }
810
a2296140 811 if (!is_static_jump(insn))
dcc914f4
JP
812 continue;
813
814 if (!insn->immediate)
815 continue;
816
bfb08f22 817 dest_off = arch_jump_destination(insn);
17bc3391
JP
818 if (dest_off == special_alt->new_off + special_alt->new_len) {
819 if (!fake_jump) {
820 WARN("%s: alternative jump to end of section",
821 special_alt->orig_sec->name);
822 return -1;
823 }
dcc914f4 824 insn->jump_dest = fake_jump;
17bc3391 825 }
dcc914f4
JP
826
827 if (!insn->jump_dest) {
828 WARN_FUNC("can't find alternative jump destination",
829 insn->sec, insn->offset);
830 return -1;
831 }
832 }
833
834 if (!last_new_insn) {
835 WARN_FUNC("can't find last new alternative instruction",
836 special_alt->new_sec, special_alt->new_off);
837 return -1;
838 }
839
17bc3391
JP
840 if (fake_jump)
841 list_add(&fake_jump->list, &last_new_insn->list);
dcc914f4
JP
842
843 return 0;
844}
845
846/*
847 * A jump table entry can either convert a nop to a jump or a jump to a nop.
848 * If the original instruction is a jump, make the alt entry an effective nop
849 * by just skipping the original instruction.
850 */
851static int handle_jump_alt(struct objtool_file *file,
852 struct special_alt *special_alt,
853 struct instruction *orig_insn,
854 struct instruction **new_insn)
855{
856 if (orig_insn->type == INSN_NOP)
857 return 0;
858
859 if (orig_insn->type != INSN_JUMP_UNCONDITIONAL) {
860 WARN_FUNC("unsupported instruction at jump label",
861 orig_insn->sec, orig_insn->offset);
862 return -1;
863 }
864
865 *new_insn = list_next_entry(orig_insn, list);
866 return 0;
867}
868
869/*
870 * Read all the special sections which have alternate instructions which can be
871 * patched in or redirected to at runtime. Each instruction having alternate
872 * instruction(s) has them added to its insn->alts list, which will be
873 * traversed in validate_branch().
874 */
875static int add_special_section_alts(struct objtool_file *file)
876{
877 struct list_head special_alts;
878 struct instruction *orig_insn, *new_insn;
879 struct special_alt *special_alt, *tmp;
880 struct alternative *alt;
881 int ret;
882
883 ret = special_get_alts(file->elf, &special_alts);
884 if (ret)
885 return ret;
886
887 list_for_each_entry_safe(special_alt, tmp, &special_alts, list) {
dcc914f4
JP
888
889 orig_insn = find_insn(file, special_alt->orig_sec,
890 special_alt->orig_off);
891 if (!orig_insn) {
892 WARN_FUNC("special: can't find orig instruction",
893 special_alt->orig_sec, special_alt->orig_off);
894 ret = -1;
895 goto out;
896 }
897
898 new_insn = NULL;
899 if (!special_alt->group || special_alt->new_len) {
900 new_insn = find_insn(file, special_alt->new_sec,
901 special_alt->new_off);
902 if (!new_insn) {
903 WARN_FUNC("special: can't find new instruction",
904 special_alt->new_sec,
905 special_alt->new_off);
906 ret = -1;
907 goto out;
908 }
909 }
910
911 if (special_alt->group) {
7170cf47
JT
912 if (!special_alt->orig_len) {
913 WARN_FUNC("empty alternative entry",
914 orig_insn->sec, orig_insn->offset);
915 continue;
916 }
917
dcc914f4
JP
918 ret = handle_group_alt(file, special_alt, orig_insn,
919 &new_insn);
920 if (ret)
921 goto out;
922 } else if (special_alt->jump_or_nop) {
923 ret = handle_jump_alt(file, special_alt, orig_insn,
924 &new_insn);
925 if (ret)
926 goto out;
927 }
928
258c7605
JP
929 alt = malloc(sizeof(*alt));
930 if (!alt) {
931 WARN("malloc failed");
932 ret = -1;
933 goto out;
934 }
935
dcc914f4 936 alt->insn = new_insn;
764eef4b 937 alt->skip_orig = special_alt->skip_orig;
ea24213d 938 orig_insn->ignore_alts |= special_alt->skip_alt;
dcc914f4
JP
939 list_add_tail(&alt->list, &orig_insn->alts);
940
941 list_del(&special_alt->list);
942 free(special_alt);
943 }
944
945out:
946 return ret;
947}
948
e7c2bc37 949static int add_jump_table(struct objtool_file *file, struct instruction *insn,
bd98c813 950 struct rela *table)
dcc914f4
JP
951{
952 struct rela *rela = table;
e7c2bc37 953 struct instruction *dest_insn;
dcc914f4 954 struct alternative *alt;
fd35c88b
JP
955 struct symbol *pfunc = insn->func->pfunc;
956 unsigned int prev_offset = 0;
dcc914f4 957
e7c2bc37
JP
958 /*
959 * Each @rela is a switch table relocation which points to the target
960 * instruction.
961 */
962 list_for_each_entry_from(rela, &table->sec->rela_list, list) {
bd98c813
JH
963
964 /* Check for the end of the table: */
965 if (rela != table && rela->jump_table_start)
dcc914f4
JP
966 break;
967
e7c2bc37 968 /* Make sure the table entries are consecutive: */
fd35c88b
JP
969 if (prev_offset && rela->offset != prev_offset + 8)
970 break;
971
972 /* Detect function pointers from contiguous objects: */
973 if (rela->sym->sec == pfunc->sec &&
974 rela->addend == pfunc->offset)
975 break;
976
e7c2bc37
JP
977 dest_insn = find_insn(file, rela->sym->sec, rela->addend);
978 if (!dest_insn)
dcc914f4
JP
979 break;
980
e7c2bc37 981 /* Make sure the destination is in the same function: */
e65050b9 982 if (!dest_insn->func || dest_insn->func->pfunc != pfunc)
13810435 983 break;
dcc914f4
JP
984
985 alt = malloc(sizeof(*alt));
986 if (!alt) {
987 WARN("malloc failed");
988 return -1;
989 }
990
e7c2bc37 991 alt->insn = dest_insn;
dcc914f4 992 list_add_tail(&alt->list, &insn->alts);
fd35c88b
JP
993 prev_offset = rela->offset;
994 }
995
996 if (!prev_offset) {
997 WARN_FUNC("can't find switch jump table",
998 insn->sec, insn->offset);
999 return -1;
dcc914f4
JP
1000 }
1001
1002 return 0;
1003}
1004
1005/*
e7c2bc37 1006 * find_jump_table() - Given a dynamic jump, find the switch jump table in
dcc914f4
JP
1007 * .rodata associated with it.
1008 *
1009 * There are 3 basic patterns:
1010 *
1011 * 1. jmpq *[rodata addr](,%reg,8)
1012 *
1013 * This is the most common case by far. It jumps to an address in a simple
1014 * jump table which is stored in .rodata.
1015 *
1016 * 2. jmpq *[rodata addr](%rip)
1017 *
1018 * This is caused by a rare GCC quirk, currently only seen in three driver
1019 * functions in the kernel, only with certain obscure non-distro configs.
1020 *
1021 * As part of an optimization, GCC makes a copy of an existing switch jump
1022 * table, modifies it, and then hard-codes the jump (albeit with an indirect
1023 * jump) to use a single entry in the table. The rest of the jump table and
1024 * some of its jump targets remain as dead code.
1025 *
1026 * In such a case we can just crudely ignore all unreachable instruction
1027 * warnings for the entire object file. Ideally we would just ignore them
1028 * for the function, but that would require redesigning the code quite a
1029 * bit. And honestly that's just not worth doing: unreachable instruction
1030 * warnings are of questionable value anyway, and this is such a rare issue.
1031 *
1032 * 3. mov [rodata addr],%reg1
1033 * ... some instructions ...
1034 * jmpq *(%reg1,%reg2,8)
1035 *
1036 * This is a fairly uncommon pattern which is new for GCC 6. As of this
1037 * writing, there are 11 occurrences of it in the allmodconfig kernel.
1038 *
99ce7962
PZ
1039 * As of GCC 7 there are quite a few more of these and the 'in between' code
1040 * is significant. Esp. with KASAN enabled some of the code between the mov
1041 * and jmpq uses .rodata itself, which can confuse things.
1042 *
dcc914f4
JP
1043 * TODO: Once we have DWARF CFI and smarter instruction decoding logic,
1044 * ensure the same register is used in the mov and jump instructions.
99ce7962
PZ
1045 *
1046 * NOTE: RETPOLINE made it harder still to decode dynamic jumps.
dcc914f4 1047 */
e7c2bc37 1048static struct rela *find_jump_table(struct objtool_file *file,
dcc914f4
JP
1049 struct symbol *func,
1050 struct instruction *insn)
1051{
e7c2bc37 1052 struct rela *text_rela, *table_rela;
113d4bc9 1053 struct instruction *dest_insn, *orig_insn = insn;
e7c2bc37 1054 struct section *table_sec;
6f5ec299 1055 unsigned long table_offset;
dcc914f4 1056
99ce7962
PZ
1057 /*
1058 * Backward search using the @first_jump_src links, these help avoid
1059 * much of the 'in between' code. Which avoids us getting confused by
1060 * it.
1061 */
7dec80cc 1062 for (;
b401efc1 1063 &insn->list != &file->insn_list && insn->func && insn->func->pfunc == func;
99ce7962
PZ
1064 insn = insn->first_jump_src ?: list_prev_entry(insn, list)) {
1065
7dec80cc 1066 if (insn != orig_insn && insn->type == INSN_JUMP_DYNAMIC)
dcc914f4
JP
1067 break;
1068
1069 /* allow small jumps within the range */
1070 if (insn->type == INSN_JUMP_UNCONDITIONAL &&
1071 insn->jump_dest &&
1072 (insn->jump_dest->offset <= insn->offset ||
1073 insn->jump_dest->offset > orig_insn->offset))
1074 break;
1075
1076 /* look for a relocation which references .rodata */
8b5fa6bc
PZ
1077 text_rela = find_rela_by_dest_range(file->elf, insn->sec,
1078 insn->offset, insn->len);
4a60aa05
AX
1079 if (!text_rela || text_rela->sym->type != STT_SECTION ||
1080 !text_rela->sym->sec->rodata)
dcc914f4
JP
1081 continue;
1082
6f5ec299 1083 table_offset = text_rela->addend;
e7c2bc37 1084 table_sec = text_rela->sym->sec;
4a60aa05 1085
6f5ec299
JP
1086 if (text_rela->type == R_X86_64_PC32)
1087 table_offset += 4;
1088
dcc914f4
JP
1089 /*
1090 * Make sure the .rodata address isn't associated with a
87b512de
JP
1091 * symbol. GCC jump tables are anonymous data.
1092 *
1093 * Also support C jump tables which are in the same format as
1094 * switch jump tables. For objtool to recognize them, they
1095 * need to be placed in the C_JUMP_TABLE_SECTION section. They
1096 * have symbols associated with them.
dcc914f4 1097 */
e7c2bc37
JP
1098 if (find_symbol_containing(table_sec, table_offset) &&
1099 strcmp(table_sec->name, C_JUMP_TABLE_SECTION))
1402fd8e
JP
1100 continue;
1101
113d4bc9
JP
1102 /*
1103 * Each table entry has a rela associated with it. The rela
1104 * should reference text in the same function as the original
1105 * instruction.
1106 */
8b5fa6bc 1107 table_rela = find_rela_by_dest(file->elf, table_sec, table_offset);
e7c2bc37
JP
1108 if (!table_rela)
1109 continue;
113d4bc9
JP
1110 dest_insn = find_insn(file, table_rela->sym->sec, table_rela->addend);
1111 if (!dest_insn || !dest_insn->func || dest_insn->func->pfunc != func)
1112 continue;
7dec80cc 1113
e7c2bc37
JP
1114 /*
1115 * Use of RIP-relative switch jumps is quite rare, and
1116 * indicates a rare GCC quirk/bug which can leave dead code
1117 * behind.
1118 */
1119 if (text_rela->type == R_X86_64_PC32)
1120 file->ignore_unreachables = true;
1121
1122 return table_rela;
dcc914f4
JP
1123 }
1124
1125 return NULL;
1126}
1127
bd98c813
JH
1128/*
1129 * First pass: Mark the head of each jump table so that in the next pass,
1130 * we know when a given jump table ends and the next one starts.
1131 */
1132static void mark_func_jump_tables(struct objtool_file *file,
1133 struct symbol *func)
dcc914f4 1134{
bd98c813
JH
1135 struct instruction *insn, *last = NULL;
1136 struct rela *rela;
dcc914f4 1137
f0f70adb 1138 func_for_each_insn(file, func, insn) {
99ce7962
PZ
1139 if (!last)
1140 last = insn;
1141
1142 /*
1143 * Store back-pointers for unconditional forward jumps such
e7c2bc37 1144 * that find_jump_table() can back-track using those and
99ce7962
PZ
1145 * avoid some potentially confusing code.
1146 */
1147 if (insn->type == INSN_JUMP_UNCONDITIONAL && insn->jump_dest &&
1148 insn->offset > last->offset &&
1149 insn->jump_dest->offset > insn->offset &&
1150 !insn->jump_dest->first_jump_src) {
1151
1152 insn->jump_dest->first_jump_src = insn;
1153 last = insn->jump_dest;
1154 }
1155
dcc914f4
JP
1156 if (insn->type != INSN_JUMP_DYNAMIC)
1157 continue;
1158
e7c2bc37 1159 rela = find_jump_table(file, func, insn);
bd98c813
JH
1160 if (rela) {
1161 rela->jump_table_start = true;
1162 insn->jump_table = rela;
dcc914f4 1163 }
dcc914f4 1164 }
bd98c813
JH
1165}
1166
1167static int add_func_jump_tables(struct objtool_file *file,
1168 struct symbol *func)
1169{
1170 struct instruction *insn;
1171 int ret;
1172
f0f70adb 1173 func_for_each_insn(file, func, insn) {
bd98c813
JH
1174 if (!insn->jump_table)
1175 continue;
dcc914f4 1176
bd98c813 1177 ret = add_jump_table(file, insn, insn->jump_table);
dcc914f4
JP
1178 if (ret)
1179 return ret;
1180 }
1181
1182 return 0;
1183}
1184
1185/*
1186 * For some switch statements, gcc generates a jump table in the .rodata
1187 * section which contains a list of addresses within the function to jump to.
1188 * This finds these jump tables and adds them to the insn->alts lists.
1189 */
e7c2bc37 1190static int add_jump_table_alts(struct objtool_file *file)
dcc914f4
JP
1191{
1192 struct section *sec;
1193 struct symbol *func;
1194 int ret;
1195
4a60aa05 1196 if (!file->rodata)
dcc914f4
JP
1197 return 0;
1198
baa41469 1199 for_each_sec(file, sec) {
dcc914f4
JP
1200 list_for_each_entry(func, &sec->symbol_list, list) {
1201 if (func->type != STT_FUNC)
1202 continue;
1203
bd98c813 1204 mark_func_jump_tables(file, func);
e7c2bc37 1205 ret = add_func_jump_tables(file, func);
dcc914f4
JP
1206 if (ret)
1207 return ret;
1208 }
1209 }
1210
1211 return 0;
1212}
1213
39358a03
JP
1214static int read_unwind_hints(struct objtool_file *file)
1215{
1216 struct section *sec, *relasec;
1217 struct rela *rela;
1218 struct unwind_hint *hint;
1219 struct instruction *insn;
1220 struct cfi_reg *cfa;
1221 int i;
1222
1223 sec = find_section_by_name(file->elf, ".discard.unwind_hints");
1224 if (!sec)
1225 return 0;
1226
1227 relasec = sec->rela;
1228 if (!relasec) {
1229 WARN("missing .rela.discard.unwind_hints section");
1230 return -1;
1231 }
1232
1233 if (sec->len % sizeof(struct unwind_hint)) {
1234 WARN("struct unwind_hint size mismatch");
1235 return -1;
1236 }
1237
1238 file->hints = true;
1239
1240 for (i = 0; i < sec->len / sizeof(struct unwind_hint); i++) {
1241 hint = (struct unwind_hint *)sec->data->d_buf + i;
1242
8b5fa6bc 1243 rela = find_rela_by_dest(file->elf, sec, i * sizeof(*hint));
39358a03
JP
1244 if (!rela) {
1245 WARN("can't find rela for unwind_hints[%d]", i);
1246 return -1;
1247 }
1248
1249 insn = find_insn(file, rela->sym->sec, rela->addend);
1250 if (!insn) {
1251 WARN("can't find insn for unwind_hints[%d]", i);
1252 return -1;
1253 }
1254
1255 cfa = &insn->state.cfa;
1256
c536ed2f 1257 if (hint->type == UNWIND_HINT_TYPE_RET_OFFSET) {
e25eea89 1258 insn->ret_offset = hint->sp_offset;
39358a03
JP
1259 continue;
1260 }
1261
1262 insn->hint = true;
1263
1264 switch (hint->sp_reg) {
1265 case ORC_REG_UNDEFINED:
1266 cfa->base = CFI_UNDEFINED;
1267 break;
1268 case ORC_REG_SP:
1269 cfa->base = CFI_SP;
1270 break;
1271 case ORC_REG_BP:
1272 cfa->base = CFI_BP;
1273 break;
1274 case ORC_REG_SP_INDIRECT:
1275 cfa->base = CFI_SP_INDIRECT;
1276 break;
1277 case ORC_REG_R10:
1278 cfa->base = CFI_R10;
1279 break;
1280 case ORC_REG_R13:
1281 cfa->base = CFI_R13;
1282 break;
1283 case ORC_REG_DI:
1284 cfa->base = CFI_DI;
1285 break;
1286 case ORC_REG_DX:
1287 cfa->base = CFI_DX;
1288 break;
1289 default:
1290 WARN_FUNC("unsupported unwind_hint sp base reg %d",
1291 insn->sec, insn->offset, hint->sp_reg);
1292 return -1;
1293 }
1294
1295 cfa->offset = hint->sp_offset;
1296 insn->state.type = hint->type;
d31a5802 1297 insn->state.end = hint->end;
39358a03
JP
1298 }
1299
1300 return 0;
1301}
1302
b5bc2231
PZ
1303static int read_retpoline_hints(struct objtool_file *file)
1304{
63474dc4 1305 struct section *sec;
b5bc2231
PZ
1306 struct instruction *insn;
1307 struct rela *rela;
b5bc2231 1308
63474dc4 1309 sec = find_section_by_name(file->elf, ".rela.discard.retpoline_safe");
b5bc2231
PZ
1310 if (!sec)
1311 return 0;
1312
63474dc4
JP
1313 list_for_each_entry(rela, &sec->rela_list, list) {
1314 if (rela->sym->type != STT_SECTION) {
1315 WARN("unexpected relocation symbol type in %s", sec->name);
b5bc2231
PZ
1316 return -1;
1317 }
1318
1319 insn = find_insn(file, rela->sym->sec, rela->addend);
1320 if (!insn) {
63474dc4 1321 WARN("bad .discard.retpoline_safe entry");
b5bc2231
PZ
1322 return -1;
1323 }
1324
1325 if (insn->type != INSN_JUMP_DYNAMIC &&
1326 insn->type != INSN_CALL_DYNAMIC) {
63474dc4 1327 WARN_FUNC("retpoline_safe hint not an indirect jump/call",
b5bc2231
PZ
1328 insn->sec, insn->offset);
1329 return -1;
1330 }
1331
1332 insn->retpoline_safe = true;
1333 }
1334
1335 return 0;
1336}
1337
4a60aa05
AX
1338static void mark_rodata(struct objtool_file *file)
1339{
1340 struct section *sec;
1341 bool found = false;
1342
1343 /*
87b512de
JP
1344 * Search for the following rodata sections, each of which can
1345 * potentially contain jump tables:
1346 *
1347 * - .rodata: can contain GCC switch tables
1348 * - .rodata.<func>: same, if -fdata-sections is being used
1349 * - .rodata..c_jump_table: contains C annotated jump tables
1350 *
1351 * .rodata.str1.* sections are ignored; they don't contain jump tables.
4a60aa05
AX
1352 */
1353 for_each_sec(file, sec) {
1ee44470
MS
1354 if (!strncmp(sec->name, ".rodata", 7) &&
1355 !strstr(sec->name, ".str1.")) {
4a60aa05
AX
1356 sec->rodata = true;
1357 found = true;
1358 }
1359 }
1360
1361 file->rodata = found;
1362}
1363
dcc914f4
JP
1364static int decode_sections(struct objtool_file *file)
1365{
1366 int ret;
1367
4a60aa05
AX
1368 mark_rodata(file);
1369
dcc914f4
JP
1370 ret = decode_instructions(file);
1371 if (ret)
1372 return ret;
1373
1374 ret = add_dead_ends(file);
1375 if (ret)
1376 return ret;
1377
1378 add_ignores(file);
ea24213d 1379 add_uaccess_safe(file);
dcc914f4 1380
ff05ab23 1381 ret = add_ignore_alternatives(file);
258c7605
JP
1382 if (ret)
1383 return ret;
1384
dcc914f4
JP
1385 ret = add_jump_destinations(file);
1386 if (ret)
1387 return ret;
1388
a845c7cf 1389 ret = add_special_section_alts(file);
dcc914f4
JP
1390 if (ret)
1391 return ret;
1392
a845c7cf 1393 ret = add_call_destinations(file);
dcc914f4
JP
1394 if (ret)
1395 return ret;
1396
e7c2bc37 1397 ret = add_jump_table_alts(file);
dcc914f4
JP
1398 if (ret)
1399 return ret;
1400
39358a03
JP
1401 ret = read_unwind_hints(file);
1402 if (ret)
1403 return ret;
1404
b5bc2231
PZ
1405 ret = read_retpoline_hints(file);
1406 if (ret)
1407 return ret;
1408
dcc914f4
JP
1409 return 0;
1410}
1411
1412static bool is_fentry_call(struct instruction *insn)
1413{
1414 if (insn->type == INSN_CALL &&
1415 insn->call_dest->type == STT_NOTYPE &&
1416 !strcmp(insn->call_dest->name, "__fentry__"))
1417 return true;
1418
1419 return false;
1420}
1421
e25eea89 1422static bool has_modified_stack_frame(struct instruction *insn, struct insn_state *state)
dcc914f4 1423{
e25eea89 1424 u8 ret_offset = insn->ret_offset;
baa41469
JP
1425 int i;
1426
e25eea89
PZ
1427 if (state->cfa.base != initial_func_cfi.cfa.base || state->drap)
1428 return true;
1429
1430 if (state->cfa.offset != initial_func_cfi.cfa.offset + ret_offset)
baa41469
JP
1431 return true;
1432
e25eea89
PZ
1433 if (state->stack_size != initial_func_cfi.cfa.offset + ret_offset)
1434 return true;
1435
1436 for (i = 0; i < CFI_NUM_REGS; i++) {
baa41469
JP
1437 if (state->regs[i].base != initial_func_cfi.regs[i].base ||
1438 state->regs[i].offset != initial_func_cfi.regs[i].offset)
1439 return true;
e25eea89 1440 }
baa41469
JP
1441
1442 return false;
1443}
1444
1445static bool has_valid_stack_frame(struct insn_state *state)
1446{
1447 if (state->cfa.base == CFI_BP && state->regs[CFI_BP].base == CFI_CFA &&
1448 state->regs[CFI_BP].offset == -16)
1449 return true;
1450
1451 if (state->drap && state->regs[CFI_BP].base == CFI_BP)
1452 return true;
1453
1454 return false;
dcc914f4
JP
1455}
1456
65ea47dc
JT
1457static int update_insn_state_regs(struct instruction *insn,
1458 struct insn_state *state,
1459 struct stack_op *op)
627fce14
JP
1460{
1461 struct cfi_reg *cfa = &state->cfa;
627fce14
JP
1462
1463 if (cfa->base != CFI_SP)
1464 return 0;
1465
1466 /* push */
ea24213d 1467 if (op->dest.type == OP_DEST_PUSH || op->dest.type == OP_DEST_PUSHF)
627fce14
JP
1468 cfa->offset += 8;
1469
1470 /* pop */
ea24213d 1471 if (op->src.type == OP_SRC_POP || op->src.type == OP_SRC_POPF)
627fce14
JP
1472 cfa->offset -= 8;
1473
1474 /* add immediate to sp */
1475 if (op->dest.type == OP_DEST_REG && op->src.type == OP_SRC_ADD &&
1476 op->dest.reg == CFI_SP && op->src.reg == CFI_SP)
1477 cfa->offset -= op->src.offset;
1478
1479 return 0;
1480}
1481
baa41469
JP
1482static void save_reg(struct insn_state *state, unsigned char reg, int base,
1483 int offset)
dcc914f4 1484{
bf4d1a83 1485 if (arch_callee_saved_reg(reg) &&
baa41469
JP
1486 state->regs[reg].base == CFI_UNDEFINED) {
1487 state->regs[reg].base = base;
1488 state->regs[reg].offset = offset;
1489 }
dcc914f4
JP
1490}
1491
baa41469 1492static void restore_reg(struct insn_state *state, unsigned char reg)
dcc914f4 1493{
aff5e169
JT
1494 state->regs[reg].base = initial_func_cfi.regs[reg].base;
1495 state->regs[reg].offset = initial_func_cfi.regs[reg].offset;
baa41469
JP
1496}
1497
1498/*
1499 * A note about DRAP stack alignment:
1500 *
1501 * GCC has the concept of a DRAP register, which is used to help keep track of
1502 * the stack pointer when aligning the stack. r10 or r13 is used as the DRAP
1503 * register. The typical DRAP pattern is:
1504 *
1505 * 4c 8d 54 24 08 lea 0x8(%rsp),%r10
1506 * 48 83 e4 c0 and $0xffffffffffffffc0,%rsp
1507 * 41 ff 72 f8 pushq -0x8(%r10)
1508 * 55 push %rbp
1509 * 48 89 e5 mov %rsp,%rbp
1510 * (more pushes)
1511 * 41 52 push %r10
1512 * ...
1513 * 41 5a pop %r10
1514 * (more pops)
1515 * 5d pop %rbp
1516 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1517 * c3 retq
1518 *
1519 * There are some variations in the epilogues, like:
1520 *
1521 * 5b pop %rbx
1522 * 41 5a pop %r10
1523 * 41 5c pop %r12
1524 * 41 5d pop %r13
1525 * 41 5e pop %r14
1526 * c9 leaveq
1527 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1528 * c3 retq
1529 *
1530 * and:
1531 *
1532 * 4c 8b 55 e8 mov -0x18(%rbp),%r10
1533 * 48 8b 5d e0 mov -0x20(%rbp),%rbx
1534 * 4c 8b 65 f0 mov -0x10(%rbp),%r12
1535 * 4c 8b 6d f8 mov -0x8(%rbp),%r13
1536 * c9 leaveq
1537 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1538 * c3 retq
1539 *
1540 * Sometimes r13 is used as the DRAP register, in which case it's saved and
1541 * restored beforehand:
1542 *
1543 * 41 55 push %r13
1544 * 4c 8d 6c 24 10 lea 0x10(%rsp),%r13
1545 * 48 83 e4 f0 and $0xfffffffffffffff0,%rsp
1546 * ...
1547 * 49 8d 65 f0 lea -0x10(%r13),%rsp
1548 * 41 5d pop %r13
1549 * c3 retq
1550 */
65ea47dc
JT
1551static int update_insn_state(struct instruction *insn, struct insn_state *state,
1552 struct stack_op *op)
baa41469 1553{
baa41469
JP
1554 struct cfi_reg *cfa = &state->cfa;
1555 struct cfi_reg *regs = state->regs;
1556
1557 /* stack operations don't make sense with an undefined CFA */
1558 if (cfa->base == CFI_UNDEFINED) {
1559 if (insn->func) {
1560 WARN_FUNC("undefined stack state", insn->sec, insn->offset);
1561 return -1;
1562 }
1563 return 0;
1564 }
1565
627fce14 1566 if (state->type == ORC_TYPE_REGS || state->type == ORC_TYPE_REGS_IRET)
65ea47dc 1567 return update_insn_state_regs(insn, state, op);
627fce14 1568
baa41469
JP
1569 switch (op->dest.type) {
1570
1571 case OP_DEST_REG:
1572 switch (op->src.type) {
1573
1574 case OP_SRC_REG:
0d0970ee
JP
1575 if (op->src.reg == CFI_SP && op->dest.reg == CFI_BP &&
1576 cfa->base == CFI_SP &&
1577 regs[CFI_BP].base == CFI_CFA &&
1578 regs[CFI_BP].offset == -cfa->offset) {
1579
1580 /* mov %rsp, %rbp */
1581 cfa->base = op->dest.reg;
1582 state->bp_scratch = false;
1583 }
dd88a0a0 1584
0d0970ee
JP
1585 else if (op->src.reg == CFI_SP &&
1586 op->dest.reg == CFI_BP && state->drap) {
dd88a0a0 1587
0d0970ee
JP
1588 /* drap: mov %rsp, %rbp */
1589 regs[CFI_BP].base = CFI_BP;
1590 regs[CFI_BP].offset = -state->stack_size;
1591 state->bp_scratch = false;
1592 }
dd88a0a0 1593
0d0970ee
JP
1594 else if (op->src.reg == CFI_SP && cfa->base == CFI_SP) {
1595
1596 /*
1597 * mov %rsp, %reg
1598 *
1599 * This is needed for the rare case where GCC
1600 * does:
1601 *
1602 * mov %rsp, %rax
1603 * ...
1604 * mov %rax, %rsp
1605 */
1606 state->vals[op->dest.reg].base = CFI_CFA;
1607 state->vals[op->dest.reg].offset = -state->stack_size;
dd88a0a0
JP
1608 }
1609
3c1f0583
JP
1610 else if (op->src.reg == CFI_BP && op->dest.reg == CFI_SP &&
1611 cfa->base == CFI_BP) {
1612
1613 /*
1614 * mov %rbp, %rsp
1615 *
1616 * Restore the original stack pointer (Clang).
1617 */
1618 state->stack_size = -state->regs[CFI_BP].offset;
1619 }
1620
dd88a0a0
JP
1621 else if (op->dest.reg == cfa->base) {
1622
1623 /* mov %reg, %rsp */
1624 if (cfa->base == CFI_SP &&
1625 state->vals[op->src.reg].base == CFI_CFA) {
1626
1627 /*
1628 * This is needed for the rare case
1629 * where GCC does something dumb like:
1630 *
1631 * lea 0x8(%rsp), %rcx
1632 * ...
1633 * mov %rcx, %rsp
1634 */
1635 cfa->offset = -state->vals[op->src.reg].offset;
1636 state->stack_size = cfa->offset;
1637
1638 } else {
1639 cfa->base = CFI_UNDEFINED;
1640 cfa->offset = 0;
1641 }
baa41469
JP
1642 }
1643
1644 break;
1645
1646 case OP_SRC_ADD:
1647 if (op->dest.reg == CFI_SP && op->src.reg == CFI_SP) {
1648
1649 /* add imm, %rsp */
1650 state->stack_size -= op->src.offset;
1651 if (cfa->base == CFI_SP)
1652 cfa->offset -= op->src.offset;
1653 break;
1654 }
1655
1656 if (op->dest.reg == CFI_SP && op->src.reg == CFI_BP) {
1657
1658 /* lea disp(%rbp), %rsp */
1659 state->stack_size = -(op->src.offset + regs[CFI_BP].offset);
1660 break;
1661 }
1662
dd88a0a0 1663 if (op->src.reg == CFI_SP && cfa->base == CFI_SP) {
baa41469
JP
1664
1665 /* drap: lea disp(%rsp), %drap */
1666 state->drap_reg = op->dest.reg;
dd88a0a0
JP
1667
1668 /*
1669 * lea disp(%rsp), %reg
1670 *
1671 * This is needed for the rare case where GCC
1672 * does something dumb like:
1673 *
1674 * lea 0x8(%rsp), %rcx
1675 * ...
1676 * mov %rcx, %rsp
1677 */
1678 state->vals[op->dest.reg].base = CFI_CFA;
1679 state->vals[op->dest.reg].offset = \
1680 -state->stack_size + op->src.offset;
1681
baa41469
JP
1682 break;
1683 }
1684
1685 if (state->drap && op->dest.reg == CFI_SP &&
1686 op->src.reg == state->drap_reg) {
1687
1688 /* drap: lea disp(%drap), %rsp */
1689 cfa->base = CFI_SP;
1690 cfa->offset = state->stack_size = -op->src.offset;
1691 state->drap_reg = CFI_UNDEFINED;
1692 state->drap = false;
1693 break;
1694 }
1695
1696 if (op->dest.reg == state->cfa.base) {
1697 WARN_FUNC("unsupported stack register modification",
1698 insn->sec, insn->offset);
1699 return -1;
1700 }
1701
1702 break;
1703
1704 case OP_SRC_AND:
1705 if (op->dest.reg != CFI_SP ||
1706 (state->drap_reg != CFI_UNDEFINED && cfa->base != CFI_SP) ||
1707 (state->drap_reg == CFI_UNDEFINED && cfa->base != CFI_BP)) {
1708 WARN_FUNC("unsupported stack pointer realignment",
1709 insn->sec, insn->offset);
1710 return -1;
1711 }
1712
1713 if (state->drap_reg != CFI_UNDEFINED) {
1714 /* drap: and imm, %rsp */
1715 cfa->base = state->drap_reg;
1716 cfa->offset = state->stack_size = 0;
1717 state->drap = true;
baa41469
JP
1718 }
1719
1720 /*
1721 * Older versions of GCC (4.8ish) realign the stack
1722 * without DRAP, with a frame pointer.
1723 */
1724
1725 break;
1726
1727 case OP_SRC_POP:
ea24213d 1728 case OP_SRC_POPF:
a70266b5 1729 if (!state->drap && op->dest.reg == cfa->base) {
baa41469
JP
1730
1731 /* pop %rbp */
1732 cfa->base = CFI_SP;
1733 }
1734
bf4d1a83 1735 if (state->drap && cfa->base == CFI_BP_INDIRECT &&
bf4d1a83
JP
1736 op->dest.reg == state->drap_reg &&
1737 state->drap_offset == -state->stack_size) {
baa41469 1738
bf4d1a83
JP
1739 /* drap: pop %drap */
1740 cfa->base = state->drap_reg;
1741 cfa->offset = 0;
1742 state->drap_offset = -1;
baa41469 1743
bf4d1a83 1744 } else if (regs[op->dest.reg].offset == -state->stack_size) {
baa41469 1745
bf4d1a83 1746 /* pop %reg */
baa41469
JP
1747 restore_reg(state, op->dest.reg);
1748 }
1749
1750 state->stack_size -= 8;
1751 if (cfa->base == CFI_SP)
1752 cfa->offset -= 8;
1753
1754 break;
1755
1756 case OP_SRC_REG_INDIRECT:
bf4d1a83
JP
1757 if (state->drap && op->src.reg == CFI_BP &&
1758 op->src.offset == state->drap_offset) {
1759
1760 /* drap: mov disp(%rbp), %drap */
1761 cfa->base = state->drap_reg;
1762 cfa->offset = 0;
1763 state->drap_offset = -1;
1764 }
1765
baa41469
JP
1766 if (state->drap && op->src.reg == CFI_BP &&
1767 op->src.offset == regs[op->dest.reg].offset) {
1768
1769 /* drap: mov disp(%rbp), %reg */
baa41469
JP
1770 restore_reg(state, op->dest.reg);
1771
1772 } else if (op->src.reg == cfa->base &&
1773 op->src.offset == regs[op->dest.reg].offset + cfa->offset) {
1774
1775 /* mov disp(%rbp), %reg */
1776 /* mov disp(%rsp), %reg */
1777 restore_reg(state, op->dest.reg);
1778 }
1779
1780 break;
1781
1782 default:
1783 WARN_FUNC("unknown stack-related instruction",
1784 insn->sec, insn->offset);
1785 return -1;
1786 }
1787
1788 break;
1789
1790 case OP_DEST_PUSH:
ea24213d 1791 case OP_DEST_PUSHF:
baa41469
JP
1792 state->stack_size += 8;
1793 if (cfa->base == CFI_SP)
1794 cfa->offset += 8;
1795
1796 if (op->src.type != OP_SRC_REG)
1797 break;
1798
1799 if (state->drap) {
1800 if (op->src.reg == cfa->base && op->src.reg == state->drap_reg) {
1801
1802 /* drap: push %drap */
1803 cfa->base = CFI_BP_INDIRECT;
1804 cfa->offset = -state->stack_size;
1805
bf4d1a83
JP
1806 /* save drap so we know when to restore it */
1807 state->drap_offset = -state->stack_size;
baa41469
JP
1808
1809 } else if (op->src.reg == CFI_BP && cfa->base == state->drap_reg) {
1810
1811 /* drap: push %rbp */
1812 state->stack_size = 0;
1813
1814 } else if (regs[op->src.reg].base == CFI_UNDEFINED) {
1815
1816 /* drap: push %reg */
1817 save_reg(state, op->src.reg, CFI_BP, -state->stack_size);
1818 }
1819
1820 } else {
1821
1822 /* push %reg */
1823 save_reg(state, op->src.reg, CFI_CFA, -state->stack_size);
1824 }
1825
1826 /* detect when asm code uses rbp as a scratch register */
867ac9d7 1827 if (!no_fp && insn->func && op->src.reg == CFI_BP &&
baa41469
JP
1828 cfa->base != CFI_BP)
1829 state->bp_scratch = true;
1830 break;
1831
1832 case OP_DEST_REG_INDIRECT:
1833
1834 if (state->drap) {
1835 if (op->src.reg == cfa->base && op->src.reg == state->drap_reg) {
1836
1837 /* drap: mov %drap, disp(%rbp) */
1838 cfa->base = CFI_BP_INDIRECT;
1839 cfa->offset = op->dest.offset;
1840
bf4d1a83
JP
1841 /* save drap offset so we know when to restore it */
1842 state->drap_offset = op->dest.offset;
baa41469
JP
1843 }
1844
1845 else if (regs[op->src.reg].base == CFI_UNDEFINED) {
1846
1847 /* drap: mov reg, disp(%rbp) */
1848 save_reg(state, op->src.reg, CFI_BP, op->dest.offset);
1849 }
1850
1851 } else if (op->dest.reg == cfa->base) {
1852
1853 /* mov reg, disp(%rbp) */
1854 /* mov reg, disp(%rsp) */
1855 save_reg(state, op->src.reg, CFI_CFA,
1856 op->dest.offset - state->cfa.offset);
1857 }
1858
1859 break;
1860
1861 case OP_DEST_LEAVE:
1862 if ((!state->drap && cfa->base != CFI_BP) ||
1863 (state->drap && cfa->base != state->drap_reg)) {
1864 WARN_FUNC("leave instruction with modified stack frame",
1865 insn->sec, insn->offset);
1866 return -1;
1867 }
1868
1869 /* leave (mov %rbp, %rsp; pop %rbp) */
1870
1871 state->stack_size = -state->regs[CFI_BP].offset - 8;
1872 restore_reg(state, CFI_BP);
1873
1874 if (!state->drap) {
1875 cfa->base = CFI_SP;
1876 cfa->offset -= 8;
1877 }
1878
1879 break;
1880
1881 case OP_DEST_MEM:
ea24213d 1882 if (op->src.type != OP_SRC_POP && op->src.type != OP_SRC_POPF) {
baa41469
JP
1883 WARN_FUNC("unknown stack-related memory operation",
1884 insn->sec, insn->offset);
1885 return -1;
1886 }
1887
1888 /* pop mem */
1889 state->stack_size -= 8;
1890 if (cfa->base == CFI_SP)
1891 cfa->offset -= 8;
1892
1893 break;
1894
1895 default:
1896 WARN_FUNC("unknown stack-related instruction",
1897 insn->sec, insn->offset);
1898 return -1;
1899 }
1900
1901 return 0;
1902}
1903
65ea47dc
JT
1904static int handle_insn_ops(struct instruction *insn, struct insn_state *state)
1905{
1906 struct stack_op *op;
1907
1908 list_for_each_entry(op, &insn->stack_ops, list) {
1909 int res;
1910
1911 res = update_insn_state(insn, state, op);
1912 if (res)
1913 return res;
1914
1915 if (op->dest.type == OP_DEST_PUSHF) {
1916 if (!state->uaccess_stack) {
1917 state->uaccess_stack = 1;
1918 } else if (state->uaccess_stack >> 31) {
1919 WARN_FUNC("PUSHF stack exhausted",
1920 insn->sec, insn->offset);
1921 return 1;
1922 }
1923 state->uaccess_stack <<= 1;
1924 state->uaccess_stack |= state->uaccess;
1925 }
1926
1927 if (op->src.type == OP_SRC_POPF) {
1928 if (state->uaccess_stack) {
1929 state->uaccess = state->uaccess_stack & 1;
1930 state->uaccess_stack >>= 1;
1931 if (state->uaccess_stack == 1)
1932 state->uaccess_stack = 0;
1933 }
1934 }
1935 }
1936
1937 return 0;
1938}
1939
baa41469
JP
1940static bool insn_state_match(struct instruction *insn, struct insn_state *state)
1941{
1942 struct insn_state *state1 = &insn->state, *state2 = state;
1943 int i;
1944
1945 if (memcmp(&state1->cfa, &state2->cfa, sizeof(state1->cfa))) {
1946 WARN_FUNC("stack state mismatch: cfa1=%d%+d cfa2=%d%+d",
1947 insn->sec, insn->offset,
1948 state1->cfa.base, state1->cfa.offset,
1949 state2->cfa.base, state2->cfa.offset);
1950
1951 } else if (memcmp(&state1->regs, &state2->regs, sizeof(state1->regs))) {
1952 for (i = 0; i < CFI_NUM_REGS; i++) {
1953 if (!memcmp(&state1->regs[i], &state2->regs[i],
1954 sizeof(struct cfi_reg)))
1955 continue;
1956
1957 WARN_FUNC("stack state mismatch: reg1[%d]=%d%+d reg2[%d]=%d%+d",
1958 insn->sec, insn->offset,
1959 i, state1->regs[i].base, state1->regs[i].offset,
1960 i, state2->regs[i].base, state2->regs[i].offset);
1961 break;
1962 }
1963
627fce14
JP
1964 } else if (state1->type != state2->type) {
1965 WARN_FUNC("stack state mismatch: type1=%d type2=%d",
1966 insn->sec, insn->offset, state1->type, state2->type);
1967
baa41469 1968 } else if (state1->drap != state2->drap ||
bf4d1a83
JP
1969 (state1->drap && state1->drap_reg != state2->drap_reg) ||
1970 (state1->drap && state1->drap_offset != state2->drap_offset)) {
1971 WARN_FUNC("stack state mismatch: drap1=%d(%d,%d) drap2=%d(%d,%d)",
baa41469 1972 insn->sec, insn->offset,
bf4d1a83
JP
1973 state1->drap, state1->drap_reg, state1->drap_offset,
1974 state2->drap, state2->drap_reg, state2->drap_offset);
baa41469
JP
1975
1976 } else
1977 return true;
1978
1979 return false;
dcc914f4
JP
1980}
1981
ea24213d
PZ
1982static inline bool func_uaccess_safe(struct symbol *func)
1983{
1984 if (func)
e10cd8fe 1985 return func->uaccess_safe;
ea24213d
PZ
1986
1987 return false;
1988}
1989
0c1ddd33 1990static inline const char *call_dest_name(struct instruction *insn)
ea24213d
PZ
1991{
1992 if (insn->call_dest)
1993 return insn->call_dest->name;
1994
1995 return "{dynamic}";
1996}
1997
1998static int validate_call(struct instruction *insn, struct insn_state *state)
1999{
2000 if (state->uaccess && !func_uaccess_safe(insn->call_dest)) {
2001 WARN_FUNC("call to %s() with UACCESS enabled",
0c1ddd33 2002 insn->sec, insn->offset, call_dest_name(insn));
ea24213d
PZ
2003 return 1;
2004 }
2005
2f0f9e9a
PZ
2006 if (state->df) {
2007 WARN_FUNC("call to %s() with DF set",
0c1ddd33 2008 insn->sec, insn->offset, call_dest_name(insn));
2f0f9e9a
PZ
2009 return 1;
2010 }
2011
ea24213d
PZ
2012 return 0;
2013}
2014
54262aa2
PZ
2015static int validate_sibling_call(struct instruction *insn, struct insn_state *state)
2016{
e25eea89 2017 if (has_modified_stack_frame(insn, state)) {
54262aa2
PZ
2018 WARN_FUNC("sibling call from callable instruction with modified stack frame",
2019 insn->sec, insn->offset);
2020 return 1;
2021 }
2022
ea24213d 2023 return validate_call(insn, state);
54262aa2
PZ
2024}
2025
a92e92d1
PZ
2026static int validate_return(struct symbol *func, struct instruction *insn, struct insn_state *state)
2027{
2028 if (state->uaccess && !func_uaccess_safe(func)) {
2029 WARN_FUNC("return with UACCESS enabled",
2030 insn->sec, insn->offset);
2031 return 1;
2032 }
2033
2034 if (!state->uaccess && func_uaccess_safe(func)) {
2035 WARN_FUNC("return with UACCESS disabled from a UACCESS-safe function",
2036 insn->sec, insn->offset);
2037 return 1;
2038 }
2039
2040 if (state->df) {
2041 WARN_FUNC("return with DF set",
2042 insn->sec, insn->offset);
2043 return 1;
2044 }
2045
e25eea89 2046 if (func && has_modified_stack_frame(insn, state)) {
a92e92d1
PZ
2047 WARN_FUNC("return with modified stack frame",
2048 insn->sec, insn->offset);
2049 return 1;
2050 }
2051
2052 if (state->bp_scratch) {
b2966952
JP
2053 WARN_FUNC("BP used as a scratch register",
2054 insn->sec, insn->offset);
a92e92d1
PZ
2055 return 1;
2056 }
2057
2058 return 0;
2059}
2060
dcc914f4
JP
2061/*
2062 * Follow the branch starting at the given instruction, and recursively follow
2063 * any other branches (jumps). Meanwhile, track the frame pointer state at
2064 * each instruction and validate all the rules described in
2065 * tools/objtool/Documentation/stack-validation.txt.
2066 */
c705cecc 2067static int validate_branch(struct objtool_file *file, struct symbol *func,
b7460462 2068 struct instruction *insn, struct insn_state state)
dcc914f4
JP
2069{
2070 struct alternative *alt;
b7460462 2071 struct instruction *next_insn;
dcc914f4 2072 struct section *sec;
882a0db9 2073 u8 visited;
dcc914f4
JP
2074 int ret;
2075
dcc914f4 2076 sec = insn->sec;
dcc914f4
JP
2077
2078 if (insn->alt_group && list_empty(&insn->alts)) {
2079 WARN_FUNC("don't know how to handle branch to middle of alternative instruction group",
2080 sec, insn->offset);
12b25729 2081 return 1;
dcc914f4
JP
2082 }
2083
2084 while (1) {
39358a03
JP
2085 next_insn = next_insn_same_sec(file, insn);
2086
13810435 2087 if (file->c_file && func && insn->func && func != insn->func->pfunc) {
ee97638b
JP
2088 WARN("%s() falls through to next function %s()",
2089 func->name, insn->func->name);
2090 return 1;
dcc914f4
JP
2091 }
2092
4855022a
JP
2093 if (func && insn->ignore) {
2094 WARN_FUNC("BUG: why am I validating an ignored function?",
2095 sec, insn->offset);
12b25729 2096 return 1;
4855022a
JP
2097 }
2098
882a0db9 2099 visited = 1 << state.uaccess;
dcc914f4 2100 if (insn->visited) {
39358a03 2101 if (!insn->hint && !insn_state_match(insn, &state))
dcc914f4 2102 return 1;
dcc914f4 2103
882a0db9 2104 if (insn->visited & visited)
ea24213d 2105 return 0;
dcc914f4
JP
2106 }
2107
c536ed2f 2108 if (insn->hint)
39358a03 2109 state = insn->state;
c536ed2f 2110 else
39358a03 2111 insn->state = state;
dcc914f4 2112
882a0db9 2113 insn->visited |= visited;
baa41469 2114
a845c7cf 2115 if (!insn->ignore_alts) {
764eef4b
PZ
2116 bool skip_orig = false;
2117
a845c7cf 2118 list_for_each_entry(alt, &insn->alts, list) {
764eef4b
PZ
2119 if (alt->skip_orig)
2120 skip_orig = true;
2121
c705cecc 2122 ret = validate_branch(file, func, alt->insn, state);
7697eee3
PZ
2123 if (ret) {
2124 if (backtrace)
2125 BT_FUNC("(alt)", insn);
2126 return ret;
2127 }
a845c7cf 2128 }
764eef4b
PZ
2129
2130 if (skip_orig)
2131 return 0;
dcc914f4
JP
2132 }
2133
2134 switch (insn->type) {
2135
dcc914f4 2136 case INSN_RETURN:
a92e92d1 2137 return validate_return(func, insn, &state);
dcc914f4
JP
2138
2139 case INSN_CALL:
ea24213d
PZ
2140 case INSN_CALL_DYNAMIC:
2141 ret = validate_call(insn, &state);
2142 if (ret)
2143 return ret;
dcc914f4 2144
c9bab22b
JP
2145 if (!no_fp && func && !is_fentry_call(insn) &&
2146 !has_valid_stack_frame(&state)) {
dcc914f4
JP
2147 WARN_FUNC("call without frame pointer save/setup",
2148 sec, insn->offset);
2149 return 1;
2150 }
c9bab22b
JP
2151
2152 if (dead_end_function(file, insn->call_dest))
2153 return 0;
2154
dcc914f4
JP
2155 break;
2156
2157 case INSN_JUMP_CONDITIONAL:
2158 case INSN_JUMP_UNCONDITIONAL:
0c1ddd33 2159 if (func && is_sibling_call(insn)) {
54262aa2 2160 ret = validate_sibling_call(insn, &state);
dcc914f4 2161 if (ret)
54262aa2 2162 return ret;
4855022a 2163
0c1ddd33 2164 } else if (insn->jump_dest) {
c705cecc
JP
2165 ret = validate_branch(file, func,
2166 insn->jump_dest, state);
7697eee3
PZ
2167 if (ret) {
2168 if (backtrace)
2169 BT_FUNC("(branch)", insn);
2170 return ret;
2171 }
4855022a 2172 }
dcc914f4
JP
2173
2174 if (insn->type == INSN_JUMP_UNCONDITIONAL)
2175 return 0;
2176
2177 break;
2178
2179 case INSN_JUMP_DYNAMIC:
b68b9907 2180 case INSN_JUMP_DYNAMIC_CONDITIONAL:
0c1ddd33 2181 if (func && is_sibling_call(insn)) {
54262aa2
PZ
2182 ret = validate_sibling_call(insn, &state);
2183 if (ret)
2184 return ret;
dcc914f4
JP
2185 }
2186
b68b9907
JP
2187 if (insn->type == INSN_JUMP_DYNAMIC)
2188 return 0;
2189
2190 break;
dcc914f4 2191
b7460462
PZ
2192 case INSN_EXCEPTION_RETURN:
2193 if (handle_insn_ops(insn, &state))
2194 return 1;
2195
2196 /*
2197 * This handles x86's sync_core() case, where we use an
2198 * IRET to self. All 'normal' IRET instructions are in
2199 * STT_NOTYPE entry symbols.
2200 */
2201 if (func)
2202 break;
2203
2204 return 0;
2205
39358a03
JP
2206 case INSN_CONTEXT_SWITCH:
2207 if (func && (!next_insn || !next_insn->hint)) {
2208 WARN_FUNC("unsupported instruction in callable function",
2209 sec, insn->offset);
2210 return 1;
2211 }
2212 return 0;
2213
baa41469 2214 case INSN_STACK:
65ea47dc 2215 if (handle_insn_ops(insn, &state))
12b25729 2216 return 1;
ea24213d
PZ
2217 break;
2218
2219 case INSN_STAC:
2220 if (state.uaccess) {
2221 WARN_FUNC("recursive UACCESS enable", sec, insn->offset);
2222 return 1;
2223 }
2224
2225 state.uaccess = true;
2226 break;
2227
2228 case INSN_CLAC:
c705cecc 2229 if (!state.uaccess && func) {
ea24213d
PZ
2230 WARN_FUNC("redundant UACCESS disable", sec, insn->offset);
2231 return 1;
2232 }
2233
2234 if (func_uaccess_safe(func) && !state.uaccess_stack) {
2235 WARN_FUNC("UACCESS-safe disables UACCESS", sec, insn->offset);
2236 return 1;
2237 }
2238
2239 state.uaccess = false;
baa41469
JP
2240 break;
2241
2f0f9e9a
PZ
2242 case INSN_STD:
2243 if (state.df)
2244 WARN_FUNC("recursive STD", sec, insn->offset);
2245
2246 state.df = true;
2247 break;
2248
2249 case INSN_CLD:
c705cecc 2250 if (!state.df && func)
2f0f9e9a
PZ
2251 WARN_FUNC("redundant CLD", sec, insn->offset);
2252
2253 state.df = false;
baa41469
JP
2254 break;
2255
dcc914f4
JP
2256 default:
2257 break;
2258 }
2259
2260 if (insn->dead_end)
2261 return 0;
2262
00d96180
JP
2263 if (!next_insn) {
2264 if (state.cfa.base == CFI_UNDEFINED)
2265 return 0;
dcc914f4
JP
2266 WARN("%s: unexpected end of section", sec->name);
2267 return 1;
2268 }
00d96180
JP
2269
2270 insn = next_insn;
dcc914f4
JP
2271 }
2272
2273 return 0;
2274}
2275
39358a03
JP
2276static int validate_unwind_hints(struct objtool_file *file)
2277{
2278 struct instruction *insn;
2279 int ret, warnings = 0;
2280 struct insn_state state;
2281
2282 if (!file->hints)
2283 return 0;
2284
2285 clear_insn_state(&state);
2286
2287 for_each_insn(file, insn) {
2288 if (insn->hint && !insn->visited) {
c705cecc 2289 ret = validate_branch(file, insn->func, insn, state);
7697eee3
PZ
2290 if (ret && backtrace)
2291 BT_FUNC("<=== (hint)", insn);
39358a03
JP
2292 warnings += ret;
2293 }
2294 }
2295
2296 return warnings;
2297}
2298
b5bc2231
PZ
2299static int validate_retpoline(struct objtool_file *file)
2300{
2301 struct instruction *insn;
2302 int warnings = 0;
2303
2304 for_each_insn(file, insn) {
2305 if (insn->type != INSN_JUMP_DYNAMIC &&
2306 insn->type != INSN_CALL_DYNAMIC)
2307 continue;
2308
2309 if (insn->retpoline_safe)
2310 continue;
2311
ca41b97e
PZ
2312 /*
2313 * .init.text code is ran before userspace and thus doesn't
2314 * strictly need retpolines, except for modules which are
2315 * loaded late, they very much do need retpoline in their
2316 * .init.text
2317 */
2318 if (!strcmp(insn->sec->name, ".init.text") && !module)
2319 continue;
2320
b5bc2231
PZ
2321 WARN_FUNC("indirect %s found in RETPOLINE build",
2322 insn->sec, insn->offset,
2323 insn->type == INSN_JUMP_DYNAMIC ? "jump" : "call");
2324
2325 warnings++;
2326 }
2327
2328 return warnings;
2329}
2330
dcc914f4
JP
2331static bool is_kasan_insn(struct instruction *insn)
2332{
2333 return (insn->type == INSN_CALL &&
2334 !strcmp(insn->call_dest->name, "__asan_handle_no_return"));
2335}
2336
2337static bool is_ubsan_insn(struct instruction *insn)
2338{
2339 return (insn->type == INSN_CALL &&
2340 !strcmp(insn->call_dest->name,
2341 "__ubsan_handle_builtin_unreachable"));
2342}
2343
baa41469 2344static bool ignore_unreachable_insn(struct instruction *insn)
dcc914f4
JP
2345{
2346 int i;
2347
baa41469
JP
2348 if (insn->ignore || insn->type == INSN_NOP)
2349 return true;
2350
2351 /*
2352 * Ignore any unused exceptions. This can happen when a whitelisted
2353 * function has an exception table entry.
0e2bb2bc
JP
2354 *
2355 * Also ignore alternative replacement instructions. This can happen
2356 * when a whitelisted function uses one of the ALTERNATIVE macros.
baa41469 2357 */
0e2bb2bc
JP
2358 if (!strcmp(insn->sec->name, ".fixup") ||
2359 !strcmp(insn->sec->name, ".altinstr_replacement") ||
2360 !strcmp(insn->sec->name, ".altinstr_aux"))
dcc914f4
JP
2361 return true;
2362
bd841d61
JP
2363 if (!insn->func)
2364 return false;
2365
2366 /*
2367 * CONFIG_UBSAN_TRAP inserts a UD2 when it sees
2368 * __builtin_unreachable(). The BUG() macro has an unreachable() after
2369 * the UD2, which causes GCC's undefined trap logic to emit another UD2
2370 * (or occasionally a JMP to UD2).
2371 */
2372 if (list_prev_entry(insn, list)->dead_end &&
2373 (insn->type == INSN_BUG ||
2374 (insn->type == INSN_JUMP_UNCONDITIONAL &&
2375 insn->jump_dest && insn->jump_dest->type == INSN_BUG)))
2376 return true;
2377
dcc914f4
JP
2378 /*
2379 * Check if this (or a subsequent) instruction is related to
2380 * CONFIG_UBSAN or CONFIG_KASAN.
2381 *
2382 * End the search at 5 instructions to avoid going into the weeds.
2383 */
2384 for (i = 0; i < 5; i++) {
2385
2386 if (is_kasan_insn(insn) || is_ubsan_insn(insn))
2387 return true;
2388
fe24e271
JP
2389 if (insn->type == INSN_JUMP_UNCONDITIONAL) {
2390 if (insn->jump_dest &&
2391 insn->jump_dest->func == insn->func) {
2392 insn = insn->jump_dest;
2393 continue;
2394 }
2395
2396 break;
dcc914f4
JP
2397 }
2398
baa41469 2399 if (insn->offset + insn->len >= insn->func->offset + insn->func->len)
dcc914f4 2400 break;
fe24e271 2401
dcc914f4
JP
2402 insn = list_next_entry(insn, list);
2403 }
2404
2405 return false;
2406}
2407
350994bf 2408static int validate_section(struct objtool_file *file, struct section *sec)
dcc914f4 2409{
dcc914f4
JP
2410 struct symbol *func;
2411 struct instruction *insn;
baa41469 2412 struct insn_state state;
dcc914f4
JP
2413 int ret, warnings = 0;
2414
350994bf
PZ
2415 list_for_each_entry(func, &sec->symbol_list, list) {
2416 if (func->type != STT_FUNC)
2417 continue;
e10cd8fe 2418
350994bf
PZ
2419 if (!func->len) {
2420 WARN("%s() is missing an ELF size annotation",
2421 func->name);
2422 warnings++;
2423 }
61e9b75a 2424
350994bf
PZ
2425 if (func->pfunc != func || func->alias != func)
2426 continue;
dcc914f4 2427
350994bf
PZ
2428 insn = find_insn(file, sec, func->offset);
2429 if (!insn || insn->ignore || insn->visited)
2430 continue;
dcc914f4 2431
0699e551
JT
2432 clear_insn_state(&state);
2433 state.cfa = initial_func_cfi.cfa;
2434 memcpy(&state.regs, &initial_func_cfi.regs,
2435 CFI_NUM_REGS * sizeof(struct cfi_reg));
2436 state.stack_size = initial_func_cfi.cfa.offset;
2437
350994bf 2438 state.uaccess = func->uaccess_safe;
ea24213d 2439
350994bf
PZ
2440 ret = validate_branch(file, func, insn, state);
2441 if (ret && backtrace)
2442 BT_FUNC("<=== (func)", insn);
2443 warnings += ret;
dcc914f4
JP
2444 }
2445
dcc914f4
JP
2446 return warnings;
2447}
2448
350994bf
PZ
2449static int validate_functions(struct objtool_file *file)
2450{
2451 struct section *sec;
2452 int warnings = 0;
2453
2454 for_each_sec(file, sec)
2455 warnings += validate_section(file, sec);
2456
2457 return warnings;
2458}
2459
baa41469 2460static int validate_reachable_instructions(struct objtool_file *file)
dcc914f4
JP
2461{
2462 struct instruction *insn;
baa41469
JP
2463
2464 if (file->ignore_unreachables)
2465 return 0;
dcc914f4
JP
2466
2467 for_each_insn(file, insn) {
baa41469
JP
2468 if (insn->visited || ignore_unreachable_insn(insn))
2469 continue;
2470
baa41469
JP
2471 WARN_FUNC("unreachable instruction", insn->sec, insn->offset);
2472 return 1;
dcc914f4
JP
2473 }
2474
baa41469 2475 return 0;
dcc914f4
JP
2476}
2477
0c671812
JP
2478static struct objtool_file file;
2479
43a4525f 2480int check(const char *_objname, bool orc)
dcc914f4 2481{
dcc914f4
JP
2482 int ret, warnings = 0;
2483
2484 objname = _objname;
dcc914f4 2485
8e144797 2486 file.elf = elf_read(objname, orc ? O_RDWR : O_RDONLY);
baa41469 2487 if (!file.elf)
dcc914f4 2488 return 1;
dcc914f4
JP
2489
2490 INIT_LIST_HEAD(&file.insn_list);
2491 hash_init(file.insn_hash);
dcc914f4 2492 file.c_file = find_section_by_name(file.elf, ".comment");
867ac9d7 2493 file.ignore_unreachables = no_unreachable;
39358a03 2494 file.hints = false;
dcc914f4 2495
baa41469
JP
2496 arch_initial_func_cfi_state(&initial_func_cfi);
2497
dcc914f4
JP
2498 ret = decode_sections(&file);
2499 if (ret < 0)
2500 goto out;
2501 warnings += ret;
2502
baa41469 2503 if (list_empty(&file.insn_list))
dcc914f4 2504 goto out;
dcc914f4 2505
b5bc2231
PZ
2506 if (retpoline) {
2507 ret = validate_retpoline(&file);
2508 if (ret < 0)
2509 return ret;
2510 warnings += ret;
2511 }
2512
baa41469 2513 ret = validate_functions(&file);
dcc914f4
JP
2514 if (ret < 0)
2515 goto out;
2516 warnings += ret;
2517
39358a03
JP
2518 ret = validate_unwind_hints(&file);
2519 if (ret < 0)
2520 goto out;
2521 warnings += ret;
2522
baa41469
JP
2523 if (!warnings) {
2524 ret = validate_reachable_instructions(&file);
2525 if (ret < 0)
2526 goto out;
2527 warnings += ret;
2528 }
2529
627fce14
JP
2530 if (orc) {
2531 ret = create_orc(&file);
2532 if (ret < 0)
2533 goto out;
2534
2535 ret = create_orc_sections(&file);
2536 if (ret < 0)
2537 goto out;
2538
2539 ret = elf_write(file.elf);
2540 if (ret < 0)
2541 goto out;
2542 }
2543
dcc914f4 2544out:
644592d3
JP
2545 if (ret < 0) {
2546 /*
2547 * Fatal error. The binary is corrupt or otherwise broken in
2548 * some way, or objtool itself is broken. Fail the kernel
2549 * build.
2550 */
2551 return ret;
2552 }
2553
dcc914f4
JP
2554 return 0;
2555}