blob: 3f8664b0e3f94c667d3240bfa6da82bba81a52ef [file] [log] [blame]
Thomas Gleixner1ccea772019-05-19 15:51:43 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002/*
3 * Copyright (C) 2015-2017 Josh Poimboeuf <jpoimboe@redhat.com>
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05004 */
5
6#include <string.h>
7#include <stdlib.h>
8
Peter Zijlstra43a45252018-01-16 17:16:32 +01009#include "builtin.h"
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050010#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
Josh Poimboeufe6da9562019-05-13 12:01:31 -050019#define FAKE_JUMP_OFFSET -1
20
Josh Poimboeuf87b512d2019-06-27 20:50:46 -050021#define C_JUMP_TABLE_SECTION ".rodata..c_jump_table"
22
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050023struct alternative {
24 struct list_head list;
25 struct instruction *insn;
Peter Zijlstra764eef42019-03-01 11:19:03 +010026 bool skip_orig;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050027};
28
29const char *objname;
Josh Poimboeufbaa414692017-06-28 10:11:07 -050030struct cfi_state initial_func_cfi;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050031
Josh Poimboeuf627fce12017-07-11 10:33:42 -050032struct instruction *find_insn(struct objtool_file *file,
33 struct section *sec, unsigned long offset)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050034{
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
Josh Poimboeufbaa414692017-06-28 10:11:07 -050049 if (!next || &next->list == &file->insn_list || next->sec != insn->sec)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050050 return NULL;
51
52 return next;
53}
54
Josh Poimboeuf13810432018-05-09 22:39:15 -050055static 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
75#define func_for_each_insn_all(file, func, insn) \
76 for (insn = find_insn(file, func->sec, func->offset); \
77 insn; \
78 insn = next_insn_same_func(file, insn))
79
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050080#define func_for_each_insn(file, func, insn) \
81 for (insn = find_insn(file, func->sec, func->offset); \
82 insn && &insn->list != &file->insn_list && \
83 insn->sec == func->sec && \
84 insn->offset < func->offset + func->len; \
85 insn = list_next_entry(insn, list))
86
87#define func_for_each_insn_continue_reverse(file, func, insn) \
88 for (insn = list_prev_entry(insn, list); \
89 &insn->list != &file->insn_list && \
90 insn->sec == func->sec && insn->offset >= func->offset; \
91 insn = list_prev_entry(insn, list))
92
93#define sec_for_each_insn_from(file, insn) \
94 for (; insn; insn = next_insn_same_sec(file, insn))
95
Josh Poimboeufbaa414692017-06-28 10:11:07 -050096#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))
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050099
100/*
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500101 * This checks to see if the given function is a "noreturn" function.
102 *
103 * For global functions which are outside the scope of this object file, we
104 * have to keep a manual list of them.
105 *
106 * For local functions, we have to detect them manually by simply looking for
107 * the lack of a return instruction.
108 *
109 * Returns:
110 * -1: error
111 * 0: no dead end
112 * 1: dead end
113 */
114static int __dead_end_function(struct objtool_file *file, struct symbol *func,
115 int recursion)
116{
117 int i;
118 struct instruction *insn;
119 bool empty = true;
120
121 /*
122 * Unfortunately these have to be hard coded because the noreturn
123 * attribute isn't provided in ELF data.
124 */
125 static const char * const global_noreturns[] = {
126 "__stack_chk_fail",
127 "panic",
128 "do_exit",
129 "do_task_dead",
130 "__module_put_and_exit",
131 "complete_and_exit",
132 "kvm_spurious_fault",
133 "__reiserfs_panic",
134 "lbug_with_loc",
135 "fortify_panic",
Kees Cookb394d462018-01-10 14:22:38 -0800136 "usercopy_abort",
Josh Poimboeuf684fb242018-06-19 10:47:50 -0500137 "machine_real_restart",
Josh Poimboeuf4fa5ecd2019-04-04 12:17:35 -0500138 "rewind_stack_do_exit",
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500139 };
140
141 if (func->bind == STB_WEAK)
142 return 0;
143
144 if (func->bind == STB_GLOBAL)
145 for (i = 0; i < ARRAY_SIZE(global_noreturns); i++)
146 if (!strcmp(func->name, global_noreturns[i]))
147 return 1;
148
Josh Poimboeuf13810432018-05-09 22:39:15 -0500149 if (!func->len)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500150 return 0;
151
Josh Poimboeuf13810432018-05-09 22:39:15 -0500152 insn = find_insn(file, func->sec, func->offset);
153 if (!insn->func)
154 return 0;
155
156 func_for_each_insn_all(file, func, insn) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500157 empty = false;
158
159 if (insn->type == INSN_RETURN)
160 return 0;
161 }
162
163 if (empty)
164 return 0;
165
166 /*
167 * A function can have a sibling call instead of a return. In that
168 * case, the function's dead-end status depends on whether the target
169 * of the sibling call returns.
170 */
Josh Poimboeuf13810432018-05-09 22:39:15 -0500171 func_for_each_insn_all(file, func, insn) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500172 if (insn->type == INSN_JUMP_UNCONDITIONAL) {
173 struct instruction *dest = insn->jump_dest;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500174
175 if (!dest)
176 /* sibling call to another file */
177 return 0;
178
Josh Poimboeuf13810432018-05-09 22:39:15 -0500179 if (dest->func && dest->func->pfunc != insn->func->pfunc) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500180
Josh Poimboeuf13810432018-05-09 22:39:15 -0500181 /* local sibling call */
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500182 if (recursion == 5) {
Josh Poimboeuf0afd0d92018-05-09 22:39:14 -0500183 /*
184 * Infinite recursion: two functions
185 * have sibling calls to each other.
186 * This is a very rare case. It means
187 * they aren't dead ends.
188 */
189 return 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500190 }
191
Josh Poimboeuf13810432018-05-09 22:39:15 -0500192 return __dead_end_function(file, dest->func,
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500193 recursion + 1);
194 }
195 }
196
197 if (insn->type == INSN_JUMP_DYNAMIC && list_empty(&insn->alts))
198 /* sibling call */
199 return 0;
200 }
201
202 return 1;
203}
204
205static int dead_end_function(struct objtool_file *file, struct symbol *func)
206{
207 return __dead_end_function(file, func, 0);
208}
209
Josh Poimboeufbaa414692017-06-28 10:11:07 -0500210static void clear_insn_state(struct insn_state *state)
211{
212 int i;
213
214 memset(state, 0, sizeof(*state));
215 state->cfa.base = CFI_UNDEFINED;
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -0500216 for (i = 0; i < CFI_NUM_REGS; i++) {
Josh Poimboeufbaa414692017-06-28 10:11:07 -0500217 state->regs[i].base = CFI_UNDEFINED;
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -0500218 state->vals[i].base = CFI_UNDEFINED;
219 }
Josh Poimboeufbaa414692017-06-28 10:11:07 -0500220 state->drap_reg = CFI_UNDEFINED;
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -0500221 state->drap_offset = -1;
Josh Poimboeufbaa414692017-06-28 10:11:07 -0500222}
223
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500224/*
225 * Call the arch-specific instruction decoder for all the instructions and add
226 * them to the global instruction list.
227 */
228static int decode_instructions(struct objtool_file *file)
229{
230 struct section *sec;
231 struct symbol *func;
232 unsigned long offset;
233 struct instruction *insn;
234 int ret;
235
Josh Poimboeufbaa414692017-06-28 10:11:07 -0500236 for_each_sec(file, sec) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500237
238 if (!(sec->sh.sh_flags & SHF_EXECINSTR))
239 continue;
240
Josh Poimboeuf627fce12017-07-11 10:33:42 -0500241 if (strcmp(sec->name, ".altinstr_replacement") &&
242 strcmp(sec->name, ".altinstr_aux") &&
243 strncmp(sec->name, ".discard.", 9))
244 sec->text = true;
245
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500246 for (offset = 0; offset < sec->len; offset += insn->len) {
247 insn = malloc(sizeof(*insn));
Josh Poimboeufbaa414692017-06-28 10:11:07 -0500248 if (!insn) {
249 WARN("malloc failed");
250 return -1;
251 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500252 memset(insn, 0, sizeof(*insn));
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500253 INIT_LIST_HEAD(&insn->alts);
Josh Poimboeufbaa414692017-06-28 10:11:07 -0500254 clear_insn_state(&insn->state);
255
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500256 insn->sec = sec;
257 insn->offset = offset;
258
259 ret = arch_decode_instruction(file->elf, sec, offset,
260 sec->len - offset,
261 &insn->len, &insn->type,
Josh Poimboeufbaa414692017-06-28 10:11:07 -0500262 &insn->immediate,
263 &insn->stack_op);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500264 if (ret)
Kamalesh Babulalb7037982017-10-19 11:27:24 -0500265 goto err;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500266
267 if (!insn->type || insn->type > INSN_LAST) {
268 WARN_FUNC("invalid instruction type %d",
269 insn->sec, insn->offset, insn->type);
Kamalesh Babulalb7037982017-10-19 11:27:24 -0500270 ret = -1;
271 goto err;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500272 }
273
274 hash_add(file->insn_hash, &insn->hash, insn->offset);
275 list_add_tail(&insn->list, &file->insn_list);
276 }
277
278 list_for_each_entry(func, &sec->symbol_list, list) {
Josh Poimboeufe10cd8f2019-07-17 20:36:48 -0500279 if (func->type != STT_FUNC || func->alias != func)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500280 continue;
281
282 if (!find_insn(file, sec, func->offset)) {
283 WARN("%s(): can't find starting instruction",
284 func->name);
285 return -1;
286 }
287
288 func_for_each_insn(file, func, insn)
Josh Poimboeufe10cd8f2019-07-17 20:36:48 -0500289 insn->func = func;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500290 }
291 }
292
293 return 0;
Kamalesh Babulalb7037982017-10-19 11:27:24 -0500294
295err:
296 free(insn);
297 return ret;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500298}
299
300/*
Josh Poimboeuf649ea4d2017-07-27 15:56:53 -0500301 * Mark "ud2" instructions and manually annotated dead ends.
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500302 */
303static int add_dead_ends(struct objtool_file *file)
304{
305 struct section *sec;
306 struct rela *rela;
307 struct instruction *insn;
308 bool found;
309
Josh Poimboeuf649ea4d2017-07-27 15:56:53 -0500310 /*
311 * By default, "ud2" is a dead end unless otherwise annotated, because
312 * GCC 7 inserts it for certain divide-by-zero cases.
313 */
314 for_each_insn(file, insn)
315 if (insn->type == INSN_BUG)
316 insn->dead_end = true;
317
318 /*
319 * Check for manually annotated dead ends.
320 */
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500321 sec = find_section_by_name(file->elf, ".rela.discard.unreachable");
322 if (!sec)
Josh Poimboeuf649ea4d2017-07-27 15:56:53 -0500323 goto reachable;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500324
325 list_for_each_entry(rela, &sec->rela_list, list) {
326 if (rela->sym->type != STT_SECTION) {
327 WARN("unexpected relocation symbol type in %s", sec->name);
328 return -1;
329 }
330 insn = find_insn(file, rela->sym->sec, rela->addend);
331 if (insn)
332 insn = list_prev_entry(insn, list);
333 else if (rela->addend == rela->sym->sec->len) {
334 found = false;
335 list_for_each_entry_reverse(insn, &file->insn_list, list) {
336 if (insn->sec == rela->sym->sec) {
337 found = true;
338 break;
339 }
340 }
341
342 if (!found) {
343 WARN("can't find unreachable insn at %s+0x%x",
344 rela->sym->sec->name, rela->addend);
345 return -1;
346 }
347 } else {
348 WARN("can't find unreachable insn at %s+0x%x",
349 rela->sym->sec->name, rela->addend);
350 return -1;
351 }
352
353 insn->dead_end = true;
354 }
355
Josh Poimboeuf649ea4d2017-07-27 15:56:53 -0500356reachable:
357 /*
358 * These manually annotated reachable checks are needed for GCC 4.4,
359 * where the Linux unreachable() macro isn't supported. In that case
360 * GCC doesn't know the "ud2" is fatal, so it generates code as if it's
361 * not a dead end.
362 */
363 sec = find_section_by_name(file->elf, ".rela.discard.reachable");
364 if (!sec)
365 return 0;
366
367 list_for_each_entry(rela, &sec->rela_list, list) {
368 if (rela->sym->type != STT_SECTION) {
369 WARN("unexpected relocation symbol type in %s", sec->name);
370 return -1;
371 }
372 insn = find_insn(file, rela->sym->sec, rela->addend);
373 if (insn)
374 insn = list_prev_entry(insn, list);
375 else if (rela->addend == rela->sym->sec->len) {
376 found = false;
377 list_for_each_entry_reverse(insn, &file->insn_list, list) {
378 if (insn->sec == rela->sym->sec) {
379 found = true;
380 break;
381 }
382 }
383
384 if (!found) {
385 WARN("can't find reachable insn at %s+0x%x",
386 rela->sym->sec->name, rela->addend);
387 return -1;
388 }
389 } else {
390 WARN("can't find reachable insn at %s+0x%x",
391 rela->sym->sec->name, rela->addend);
392 return -1;
393 }
394
395 insn->dead_end = false;
396 }
397
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500398 return 0;
399}
400
401/*
402 * Warnings shouldn't be reported for ignored functions.
403 */
404static void add_ignores(struct objtool_file *file)
405{
406 struct instruction *insn;
407 struct section *sec;
408 struct symbol *func;
Peter Zijlstraaaf5c622019-02-27 14:04:13 +0100409 struct rela *rela;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500410
Peter Zijlstraaaf5c622019-02-27 14:04:13 +0100411 sec = find_section_by_name(file->elf, ".rela.discard.func_stack_frame_non_standard");
412 if (!sec)
413 return;
414
415 list_for_each_entry(rela, &sec->rela_list, list) {
416 switch (rela->sym->type) {
417 case STT_FUNC:
418 func = rela->sym;
419 break;
420
421 case STT_SECTION:
422 func = find_symbol_by_offset(rela->sym->sec, rela->addend);
423 if (!func || func->type != STT_FUNC)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500424 continue;
Peter Zijlstraaaf5c622019-02-27 14:04:13 +0100425 break;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500426
Peter Zijlstraaaf5c622019-02-27 14:04:13 +0100427 default:
428 WARN("unexpected relocation symbol type in %s: %d", sec->name, rela->sym->type);
429 continue;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500430 }
Peter Zijlstraaaf5c622019-02-27 14:04:13 +0100431
432 func_for_each_insn_all(file, func, insn)
433 insn->ignore = true;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500434 }
435}
436
437/*
Peter Zijlstraea242132019-02-25 12:50:09 +0100438 * This is a whitelist of functions that is allowed to be called with AC set.
439 * The list is meant to be minimal and only contains compiler instrumentation
440 * ABI and a few functions used to implement *_{to,from}_user() functions.
441 *
442 * These functions must not directly change AC, but may PUSHF/POPF.
443 */
444static const char *uaccess_safe_builtin[] = {
445 /* KASAN */
446 "kasan_report",
447 "check_memory_region",
448 /* KASAN out-of-line */
449 "__asan_loadN_noabort",
450 "__asan_load1_noabort",
451 "__asan_load2_noabort",
452 "__asan_load4_noabort",
453 "__asan_load8_noabort",
454 "__asan_load16_noabort",
455 "__asan_storeN_noabort",
456 "__asan_store1_noabort",
457 "__asan_store2_noabort",
458 "__asan_store4_noabort",
459 "__asan_store8_noabort",
460 "__asan_store16_noabort",
461 /* KASAN in-line */
462 "__asan_report_load_n_noabort",
463 "__asan_report_load1_noabort",
464 "__asan_report_load2_noabort",
465 "__asan_report_load4_noabort",
466 "__asan_report_load8_noabort",
467 "__asan_report_load16_noabort",
468 "__asan_report_store_n_noabort",
469 "__asan_report_store1_noabort",
470 "__asan_report_store2_noabort",
471 "__asan_report_store4_noabort",
472 "__asan_report_store8_noabort",
473 "__asan_report_store16_noabort",
474 /* KCOV */
475 "write_comp_data",
476 "__sanitizer_cov_trace_pc",
477 "__sanitizer_cov_trace_const_cmp1",
478 "__sanitizer_cov_trace_const_cmp2",
479 "__sanitizer_cov_trace_const_cmp4",
480 "__sanitizer_cov_trace_const_cmp8",
481 "__sanitizer_cov_trace_cmp1",
482 "__sanitizer_cov_trace_cmp2",
483 "__sanitizer_cov_trace_cmp4",
484 "__sanitizer_cov_trace_cmp8",
485 /* UBSAN */
486 "ubsan_type_mismatch_common",
487 "__ubsan_handle_type_mismatch",
488 "__ubsan_handle_type_mismatch_v1",
489 /* misc */
490 "csum_partial_copy_generic",
491 "__memcpy_mcsafe",
Josh Poimboeufa7e47f22019-07-17 20:36:46 -0500492 "mcsafe_handle_tail",
Peter Zijlstraea242132019-02-25 12:50:09 +0100493 "ftrace_likely_update", /* CONFIG_TRACE_BRANCH_PROFILING */
494 NULL
495};
496
497static void add_uaccess_safe(struct objtool_file *file)
498{
499 struct symbol *func;
500 const char **name;
501
502 if (!uaccess)
503 return;
504
505 for (name = uaccess_safe_builtin; *name; name++) {
506 func = find_symbol_by_name(file->elf, *name);
507 if (!func)
508 continue;
509
Josh Poimboeufe10cd8f2019-07-17 20:36:48 -0500510 func->uaccess_safe = true;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500511 }
512}
513
514/*
Josh Poimboeuf258c7602018-01-11 21:46:24 +0000515 * FIXME: For now, just ignore any alternatives which add retpolines. This is
516 * a temporary hack, as it doesn't allow ORC to unwind from inside a retpoline.
517 * But it at least allows objtool to understand the control flow *around* the
518 * retpoline.
519 */
Peter Zijlstraff05ab22019-03-18 14:33:07 +0100520static int add_ignore_alternatives(struct objtool_file *file)
Josh Poimboeuf258c7602018-01-11 21:46:24 +0000521{
522 struct section *sec;
523 struct rela *rela;
524 struct instruction *insn;
525
Peter Zijlstraff05ab22019-03-18 14:33:07 +0100526 sec = find_section_by_name(file->elf, ".rela.discard.ignore_alts");
Josh Poimboeuf258c7602018-01-11 21:46:24 +0000527 if (!sec)
528 return 0;
529
530 list_for_each_entry(rela, &sec->rela_list, list) {
531 if (rela->sym->type != STT_SECTION) {
532 WARN("unexpected relocation symbol type in %s", sec->name);
533 return -1;
534 }
535
536 insn = find_insn(file, rela->sym->sec, rela->addend);
537 if (!insn) {
Peter Zijlstraff05ab22019-03-18 14:33:07 +0100538 WARN("bad .discard.ignore_alts entry");
Josh Poimboeuf258c7602018-01-11 21:46:24 +0000539 return -1;
540 }
541
542 insn->ignore_alts = true;
543 }
544
545 return 0;
546}
547
548/*
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500549 * Find the destination instructions for all jumps.
550 */
551static int add_jump_destinations(struct objtool_file *file)
552{
553 struct instruction *insn;
554 struct rela *rela;
555 struct section *dest_sec;
556 unsigned long dest_off;
557
558 for_each_insn(file, insn) {
559 if (insn->type != INSN_JUMP_CONDITIONAL &&
560 insn->type != INSN_JUMP_UNCONDITIONAL)
561 continue;
562
Josh Poimboeufe6da9562019-05-13 12:01:31 -0500563 if (insn->ignore || insn->offset == FAKE_JUMP_OFFSET)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500564 continue;
565
566 rela = find_rela_by_dest_range(insn->sec, insn->offset,
567 insn->len);
568 if (!rela) {
569 dest_sec = insn->sec;
570 dest_off = insn->offset + insn->len + insn->immediate;
571 } else if (rela->sym->type == STT_SECTION) {
572 dest_sec = rela->sym->sec;
573 dest_off = rela->addend + 4;
574 } else if (rela->sym->sec->idx) {
575 dest_sec = rela->sym->sec;
576 dest_off = rela->sym->sym.st_value + rela->addend + 4;
Josh Poimboeuf39b73532018-01-11 21:46:23 +0000577 } else if (strstr(rela->sym->name, "_indirect_thunk_")) {
578 /*
579 * Retpoline jumps are really dynamic jumps in
580 * disguise, so convert them accordingly.
581 */
582 insn->type = INSN_JUMP_DYNAMIC;
Peter Zijlstrab5bc2232018-01-16 10:24:06 +0100583 insn->retpoline_safe = true;
Josh Poimboeuf39b73532018-01-11 21:46:23 +0000584 continue;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500585 } else {
586 /* sibling call */
Peter Zijlstra54262aa2019-03-06 12:58:15 +0100587 insn->call_dest = rela->sym;
588 insn->jump_dest = NULL;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500589 continue;
590 }
591
592 insn->jump_dest = find_insn(file, dest_sec, dest_off);
593 if (!insn->jump_dest) {
594
595 /*
596 * This is a special case where an alt instruction
597 * jumps past the end of the section. These are
598 * handled later in handle_group_alt().
599 */
600 if (!strcmp(insn->sec->name, ".altinstr_replacement"))
601 continue;
602
603 WARN_FUNC("can't find jump dest instruction at %s+0x%lx",
604 insn->sec, insn->offset, dest_sec->name,
605 dest_off);
606 return -1;
607 }
Josh Poimboeufcd778492018-06-01 07:23:51 -0500608
609 /*
Peter Zijlstra54262aa2019-03-06 12:58:15 +0100610 * Cross-function jump.
Josh Poimboeufcd778492018-06-01 07:23:51 -0500611 */
612 if (insn->func && insn->jump_dest->func &&
Peter Zijlstra54262aa2019-03-06 12:58:15 +0100613 insn->func != insn->jump_dest->func) {
614
615 /*
616 * For GCC 8+, create parent/child links for any cold
617 * subfunctions. This is _mostly_ redundant with a
618 * similar initialization in read_symbols().
619 *
620 * If a function has aliases, we want the *first* such
621 * function in the symbol table to be the subfunction's
622 * parent. In that case we overwrite the
623 * initialization done in read_symbols().
624 *
625 * However this code can't completely replace the
626 * read_symbols() code because this doesn't detect the
627 * case where the parent function's only reference to a
628 * subfunction is through a switch table.
629 */
630 if (!strstr(insn->func->name, ".cold.") &&
631 strstr(insn->jump_dest->func->name, ".cold.")) {
632 insn->func->cfunc = insn->jump_dest->func;
633 insn->jump_dest->func->pfunc = insn->func;
634
635 } else if (insn->jump_dest->func->pfunc != insn->func->pfunc &&
636 insn->jump_dest->offset == insn->jump_dest->func->offset) {
637
638 /* sibling class */
639 insn->call_dest = insn->jump_dest->func;
640 insn->jump_dest = NULL;
641 }
Josh Poimboeufcd778492018-06-01 07:23:51 -0500642 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500643 }
644
645 return 0;
646}
647
648/*
649 * Find the destination instructions for all calls.
650 */
651static int add_call_destinations(struct objtool_file *file)
652{
653 struct instruction *insn;
654 unsigned long dest_off;
655 struct rela *rela;
656
657 for_each_insn(file, insn) {
658 if (insn->type != INSN_CALL)
659 continue;
660
661 rela = find_rela_by_dest_range(insn->sec, insn->offset,
662 insn->len);
663 if (!rela) {
664 dest_off = insn->offset + insn->len + insn->immediate;
665 insn->call_dest = find_symbol_by_offset(insn->sec,
666 dest_off);
Josh Poimboeufa845c7c2018-01-29 22:00:39 -0600667
668 if (!insn->call_dest && !insn->ignore) {
669 WARN_FUNC("unsupported intra-function call",
670 insn->sec, insn->offset);
Peter Zijlstrab5bc2232018-01-16 10:24:06 +0100671 if (retpoline)
672 WARN("If this is a retpoline, please patch it in with alternatives and annotate it with ANNOTATE_NOSPEC_ALTERNATIVE.");
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500673 return -1;
674 }
Josh Poimboeufa845c7c2018-01-29 22:00:39 -0600675
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500676 } else if (rela->sym->type == STT_SECTION) {
677 insn->call_dest = find_symbol_by_offset(rela->sym->sec,
678 rela->addend+4);
679 if (!insn->call_dest ||
680 insn->call_dest->type != STT_FUNC) {
681 WARN_FUNC("can't find call dest symbol at %s+0x%x",
682 insn->sec, insn->offset,
683 rela->sym->sec->name,
684 rela->addend + 4);
685 return -1;
686 }
687 } else
688 insn->call_dest = rela->sym;
689 }
690
691 return 0;
692}
693
694/*
695 * The .alternatives section requires some extra special care, over and above
696 * what other special sections require:
697 *
698 * 1. Because alternatives are patched in-place, we need to insert a fake jump
699 * instruction at the end so that validate_branch() skips all the original
700 * replaced instructions when validating the new instruction path.
701 *
702 * 2. An added wrinkle is that the new instruction length might be zero. In
703 * that case the old instructions are replaced with noops. We simulate that
704 * by creating a fake jump as the only new instruction.
705 *
706 * 3. In some cases, the alternative section includes an instruction which
707 * conditionally jumps to the _end_ of the entry. We have to modify these
708 * jumps' destinations to point back to .text rather than the end of the
709 * entry in .altinstr_replacement.
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500710 */
711static int handle_group_alt(struct objtool_file *file,
712 struct special_alt *special_alt,
713 struct instruction *orig_insn,
714 struct instruction **new_insn)
715{
Josh Poimboeuf17bc3392018-01-29 22:00:40 -0600716 struct instruction *last_orig_insn, *last_new_insn, *insn, *fake_jump = NULL;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500717 unsigned long dest_off;
718
719 last_orig_insn = NULL;
720 insn = orig_insn;
721 sec_for_each_insn_from(file, insn) {
722 if (insn->offset >= special_alt->orig_off + special_alt->orig_len)
723 break;
724
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500725 insn->alt_group = true;
726 last_orig_insn = insn;
727 }
728
Josh Poimboeuf17bc3392018-01-29 22:00:40 -0600729 if (next_insn_same_sec(file, last_orig_insn)) {
730 fake_jump = malloc(sizeof(*fake_jump));
731 if (!fake_jump) {
732 WARN("malloc failed");
733 return -1;
734 }
735 memset(fake_jump, 0, sizeof(*fake_jump));
736 INIT_LIST_HEAD(&fake_jump->alts);
737 clear_insn_state(&fake_jump->state);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500738
Josh Poimboeuf17bc3392018-01-29 22:00:40 -0600739 fake_jump->sec = special_alt->new_sec;
Josh Poimboeufe6da9562019-05-13 12:01:31 -0500740 fake_jump->offset = FAKE_JUMP_OFFSET;
Josh Poimboeuf17bc3392018-01-29 22:00:40 -0600741 fake_jump->type = INSN_JUMP_UNCONDITIONAL;
742 fake_jump->jump_dest = list_next_entry(last_orig_insn, list);
Josh Poimboeufe6da9562019-05-13 12:01:31 -0500743 fake_jump->func = orig_insn->func;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500744 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500745
746 if (!special_alt->new_len) {
Josh Poimboeuf17bc3392018-01-29 22:00:40 -0600747 if (!fake_jump) {
748 WARN("%s: empty alternative at end of section",
749 special_alt->orig_sec->name);
750 return -1;
751 }
752
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500753 *new_insn = fake_jump;
754 return 0;
755 }
756
757 last_new_insn = NULL;
758 insn = *new_insn;
759 sec_for_each_insn_from(file, insn) {
760 if (insn->offset >= special_alt->new_off + special_alt->new_len)
761 break;
762
763 last_new_insn = insn;
764
Josh Poimboeufa845c7c2018-01-29 22:00:39 -0600765 insn->ignore = orig_insn->ignore_alts;
Peter Zijlstraa4d09dd2019-02-25 10:31:24 +0100766 insn->func = orig_insn->func;
Josh Poimboeufa845c7c2018-01-29 22:00:39 -0600767
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500768 if (insn->type != INSN_JUMP_CONDITIONAL &&
769 insn->type != INSN_JUMP_UNCONDITIONAL)
770 continue;
771
772 if (!insn->immediate)
773 continue;
774
775 dest_off = insn->offset + insn->len + insn->immediate;
Josh Poimboeuf17bc3392018-01-29 22:00:40 -0600776 if (dest_off == special_alt->new_off + special_alt->new_len) {
777 if (!fake_jump) {
778 WARN("%s: alternative jump to end of section",
779 special_alt->orig_sec->name);
780 return -1;
781 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500782 insn->jump_dest = fake_jump;
Josh Poimboeuf17bc3392018-01-29 22:00:40 -0600783 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500784
785 if (!insn->jump_dest) {
786 WARN_FUNC("can't find alternative jump destination",
787 insn->sec, insn->offset);
788 return -1;
789 }
790 }
791
792 if (!last_new_insn) {
793 WARN_FUNC("can't find last new alternative instruction",
794 special_alt->new_sec, special_alt->new_off);
795 return -1;
796 }
797
Josh Poimboeuf17bc3392018-01-29 22:00:40 -0600798 if (fake_jump)
799 list_add(&fake_jump->list, &last_new_insn->list);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500800
801 return 0;
802}
803
804/*
805 * A jump table entry can either convert a nop to a jump or a jump to a nop.
806 * If the original instruction is a jump, make the alt entry an effective nop
807 * by just skipping the original instruction.
808 */
809static int handle_jump_alt(struct objtool_file *file,
810 struct special_alt *special_alt,
811 struct instruction *orig_insn,
812 struct instruction **new_insn)
813{
814 if (orig_insn->type == INSN_NOP)
815 return 0;
816
817 if (orig_insn->type != INSN_JUMP_UNCONDITIONAL) {
818 WARN_FUNC("unsupported instruction at jump label",
819 orig_insn->sec, orig_insn->offset);
820 return -1;
821 }
822
823 *new_insn = list_next_entry(orig_insn, list);
824 return 0;
825}
826
827/*
828 * Read all the special sections which have alternate instructions which can be
829 * patched in or redirected to at runtime. Each instruction having alternate
830 * instruction(s) has them added to its insn->alts list, which will be
831 * traversed in validate_branch().
832 */
833static int add_special_section_alts(struct objtool_file *file)
834{
835 struct list_head special_alts;
836 struct instruction *orig_insn, *new_insn;
837 struct special_alt *special_alt, *tmp;
838 struct alternative *alt;
839 int ret;
840
841 ret = special_get_alts(file->elf, &special_alts);
842 if (ret)
843 return ret;
844
845 list_for_each_entry_safe(special_alt, tmp, &special_alts, list) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500846
847 orig_insn = find_insn(file, special_alt->orig_sec,
848 special_alt->orig_off);
849 if (!orig_insn) {
850 WARN_FUNC("special: can't find orig instruction",
851 special_alt->orig_sec, special_alt->orig_off);
852 ret = -1;
853 goto out;
854 }
855
856 new_insn = NULL;
857 if (!special_alt->group || special_alt->new_len) {
858 new_insn = find_insn(file, special_alt->new_sec,
859 special_alt->new_off);
860 if (!new_insn) {
861 WARN_FUNC("special: can't find new instruction",
862 special_alt->new_sec,
863 special_alt->new_off);
864 ret = -1;
865 goto out;
866 }
867 }
868
869 if (special_alt->group) {
870 ret = handle_group_alt(file, special_alt, orig_insn,
871 &new_insn);
872 if (ret)
873 goto out;
874 } else if (special_alt->jump_or_nop) {
875 ret = handle_jump_alt(file, special_alt, orig_insn,
876 &new_insn);
877 if (ret)
878 goto out;
879 }
880
Josh Poimboeuf258c7602018-01-11 21:46:24 +0000881 alt = malloc(sizeof(*alt));
882 if (!alt) {
883 WARN("malloc failed");
884 ret = -1;
885 goto out;
886 }
887
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500888 alt->insn = new_insn;
Peter Zijlstra764eef42019-03-01 11:19:03 +0100889 alt->skip_orig = special_alt->skip_orig;
Peter Zijlstraea242132019-02-25 12:50:09 +0100890 orig_insn->ignore_alts |= special_alt->skip_alt;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500891 list_add_tail(&alt->list, &orig_insn->alts);
892
893 list_del(&special_alt->list);
894 free(special_alt);
895 }
896
897out:
898 return ret;
899}
900
Josh Poimboeuf13810432018-05-09 22:39:15 -0500901static int add_switch_table(struct objtool_file *file, struct instruction *insn,
902 struct rela *table, struct rela *next_table)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500903{
904 struct rela *rela = table;
905 struct instruction *alt_insn;
906 struct alternative *alt;
Josh Poimboeuffd35c882018-05-10 17:48:49 -0500907 struct symbol *pfunc = insn->func->pfunc;
908 unsigned int prev_offset = 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500909
Allan Xavier4a60aa02018-09-07 08:12:01 -0500910 list_for_each_entry_from(rela, &table->rela_sec->rela_list, list) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500911 if (rela == next_table)
912 break;
913
Josh Poimboeuffd35c882018-05-10 17:48:49 -0500914 /* Make sure the switch table entries are consecutive: */
915 if (prev_offset && rela->offset != prev_offset + 8)
916 break;
917
918 /* Detect function pointers from contiguous objects: */
919 if (rela->sym->sec == pfunc->sec &&
920 rela->addend == pfunc->offset)
921 break;
922
Josh Poimboeuf13810432018-05-09 22:39:15 -0500923 alt_insn = find_insn(file, rela->sym->sec, rela->addend);
924 if (!alt_insn)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500925 break;
926
Josh Poimboeuf13810432018-05-09 22:39:15 -0500927 /* Make sure the jmp dest is in the function or subfunction: */
Josh Poimboeuffd35c882018-05-10 17:48:49 -0500928 if (alt_insn->func->pfunc != pfunc)
Josh Poimboeuf13810432018-05-09 22:39:15 -0500929 break;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500930
931 alt = malloc(sizeof(*alt));
932 if (!alt) {
933 WARN("malloc failed");
934 return -1;
935 }
936
937 alt->insn = alt_insn;
938 list_add_tail(&alt->list, &insn->alts);
Josh Poimboeuffd35c882018-05-10 17:48:49 -0500939 prev_offset = rela->offset;
940 }
941
942 if (!prev_offset) {
943 WARN_FUNC("can't find switch jump table",
944 insn->sec, insn->offset);
945 return -1;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500946 }
947
948 return 0;
949}
950
951/*
952 * find_switch_table() - Given a dynamic jump, find the switch jump table in
953 * .rodata associated with it.
954 *
955 * There are 3 basic patterns:
956 *
957 * 1. jmpq *[rodata addr](,%reg,8)
958 *
959 * This is the most common case by far. It jumps to an address in a simple
960 * jump table which is stored in .rodata.
961 *
962 * 2. jmpq *[rodata addr](%rip)
963 *
964 * This is caused by a rare GCC quirk, currently only seen in three driver
965 * functions in the kernel, only with certain obscure non-distro configs.
966 *
967 * As part of an optimization, GCC makes a copy of an existing switch jump
968 * table, modifies it, and then hard-codes the jump (albeit with an indirect
969 * jump) to use a single entry in the table. The rest of the jump table and
970 * some of its jump targets remain as dead code.
971 *
972 * In such a case we can just crudely ignore all unreachable instruction
973 * warnings for the entire object file. Ideally we would just ignore them
974 * for the function, but that would require redesigning the code quite a
975 * bit. And honestly that's just not worth doing: unreachable instruction
976 * warnings are of questionable value anyway, and this is such a rare issue.
977 *
978 * 3. mov [rodata addr],%reg1
979 * ... some instructions ...
980 * jmpq *(%reg1,%reg2,8)
981 *
982 * This is a fairly uncommon pattern which is new for GCC 6. As of this
983 * writing, there are 11 occurrences of it in the allmodconfig kernel.
984 *
Peter Zijlstra99ce7962018-02-08 14:02:32 +0100985 * As of GCC 7 there are quite a few more of these and the 'in between' code
986 * is significant. Esp. with KASAN enabled some of the code between the mov
987 * and jmpq uses .rodata itself, which can confuse things.
988 *
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500989 * TODO: Once we have DWARF CFI and smarter instruction decoding logic,
990 * ensure the same register is used in the mov and jump instructions.
Peter Zijlstra99ce7962018-02-08 14:02:32 +0100991 *
992 * NOTE: RETPOLINE made it harder still to decode dynamic jumps.
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500993 */
994static struct rela *find_switch_table(struct objtool_file *file,
995 struct symbol *func,
996 struct instruction *insn)
997{
998 struct rela *text_rela, *rodata_rela;
999 struct instruction *orig_insn = insn;
Allan Xavier4a60aa02018-09-07 08:12:01 -05001000 struct section *rodata_sec;
Josh Poimboeuf6f5ec292018-05-14 08:53:24 -05001001 unsigned long table_offset;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001002
Peter Zijlstra99ce7962018-02-08 14:02:32 +01001003 /*
1004 * Backward search using the @first_jump_src links, these help avoid
1005 * much of the 'in between' code. Which avoids us getting confused by
1006 * it.
1007 */
Josh Poimboeuf7dec80c2018-05-18 15:10:34 -05001008 for (;
Peter Zijlstra99ce7962018-02-08 14:02:32 +01001009 &insn->list != &file->insn_list &&
1010 insn->sec == func->sec &&
1011 insn->offset >= func->offset;
1012
1013 insn = insn->first_jump_src ?: list_prev_entry(insn, list)) {
1014
Josh Poimboeuf7dec80c2018-05-18 15:10:34 -05001015 if (insn != orig_insn && insn->type == INSN_JUMP_DYNAMIC)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001016 break;
1017
1018 /* allow small jumps within the range */
1019 if (insn->type == INSN_JUMP_UNCONDITIONAL &&
1020 insn->jump_dest &&
1021 (insn->jump_dest->offset <= insn->offset ||
1022 insn->jump_dest->offset > orig_insn->offset))
1023 break;
1024
1025 /* look for a relocation which references .rodata */
1026 text_rela = find_rela_by_dest_range(insn->sec, insn->offset,
1027 insn->len);
Allan Xavier4a60aa02018-09-07 08:12:01 -05001028 if (!text_rela || text_rela->sym->type != STT_SECTION ||
1029 !text_rela->sym->sec->rodata)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001030 continue;
1031
Josh Poimboeuf6f5ec292018-05-14 08:53:24 -05001032 table_offset = text_rela->addend;
Allan Xavier4a60aa02018-09-07 08:12:01 -05001033 rodata_sec = text_rela->sym->sec;
1034
Josh Poimboeuf6f5ec292018-05-14 08:53:24 -05001035 if (text_rela->type == R_X86_64_PC32)
1036 table_offset += 4;
1037
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001038 /*
1039 * Make sure the .rodata address isn't associated with a
Josh Poimboeuf87b512d2019-06-27 20:50:46 -05001040 * symbol. GCC jump tables are anonymous data.
1041 *
1042 * Also support C jump tables which are in the same format as
1043 * switch jump tables. For objtool to recognize them, they
1044 * need to be placed in the C_JUMP_TABLE_SECTION section. They
1045 * have symbols associated with them.
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001046 */
Josh Poimboeuf87b512d2019-06-27 20:50:46 -05001047 if (find_symbol_containing(rodata_sec, table_offset) &&
1048 strcmp(rodata_sec->name, C_JUMP_TABLE_SECTION))
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001049 continue;
1050
Allan Xavier4a60aa02018-09-07 08:12:01 -05001051 rodata_rela = find_rela_by_dest(rodata_sec, table_offset);
Josh Poimboeuf7dec80c2018-05-18 15:10:34 -05001052 if (rodata_rela) {
1053 /*
1054 * Use of RIP-relative switch jumps is quite rare, and
1055 * indicates a rare GCC quirk/bug which can leave dead
1056 * code behind.
1057 */
1058 if (text_rela->type == R_X86_64_PC32)
1059 file->ignore_unreachables = true;
1060
Josh Poimboeuf6f5ec292018-05-14 08:53:24 -05001061 return rodata_rela;
Josh Poimboeuf7dec80c2018-05-18 15:10:34 -05001062 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001063 }
1064
1065 return NULL;
1066}
1067
Peter Zijlstra99ce7962018-02-08 14:02:32 +01001068
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001069static int add_func_switch_tables(struct objtool_file *file,
1070 struct symbol *func)
1071{
Peter Zijlstra99ce7962018-02-08 14:02:32 +01001072 struct instruction *insn, *last = NULL, *prev_jump = NULL;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001073 struct rela *rela, *prev_rela = NULL;
1074 int ret;
1075
Josh Poimboeuf13810432018-05-09 22:39:15 -05001076 func_for_each_insn_all(file, func, insn) {
Peter Zijlstra99ce7962018-02-08 14:02:32 +01001077 if (!last)
1078 last = insn;
1079
1080 /*
1081 * Store back-pointers for unconditional forward jumps such
1082 * that find_switch_table() can back-track using those and
1083 * avoid some potentially confusing code.
1084 */
1085 if (insn->type == INSN_JUMP_UNCONDITIONAL && insn->jump_dest &&
1086 insn->offset > last->offset &&
1087 insn->jump_dest->offset > insn->offset &&
1088 !insn->jump_dest->first_jump_src) {
1089
1090 insn->jump_dest->first_jump_src = insn;
1091 last = insn->jump_dest;
1092 }
1093
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001094 if (insn->type != INSN_JUMP_DYNAMIC)
1095 continue;
1096
1097 rela = find_switch_table(file, func, insn);
1098 if (!rela)
1099 continue;
1100
1101 /*
1102 * We found a switch table, but we don't know yet how big it
1103 * is. Don't add it until we reach the end of the function or
1104 * the beginning of another switch table in the same function.
1105 */
1106 if (prev_jump) {
Josh Poimboeuf13810432018-05-09 22:39:15 -05001107 ret = add_switch_table(file, prev_jump, prev_rela, rela);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001108 if (ret)
1109 return ret;
1110 }
1111
1112 prev_jump = insn;
1113 prev_rela = rela;
1114 }
1115
1116 if (prev_jump) {
Josh Poimboeuf13810432018-05-09 22:39:15 -05001117 ret = add_switch_table(file, prev_jump, prev_rela, NULL);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001118 if (ret)
1119 return ret;
1120 }
1121
1122 return 0;
1123}
1124
1125/*
1126 * For some switch statements, gcc generates a jump table in the .rodata
1127 * section which contains a list of addresses within the function to jump to.
1128 * This finds these jump tables and adds them to the insn->alts lists.
1129 */
1130static int add_switch_table_alts(struct objtool_file *file)
1131{
1132 struct section *sec;
1133 struct symbol *func;
1134 int ret;
1135
Allan Xavier4a60aa02018-09-07 08:12:01 -05001136 if (!file->rodata)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001137 return 0;
1138
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001139 for_each_sec(file, sec) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001140 list_for_each_entry(func, &sec->symbol_list, list) {
1141 if (func->type != STT_FUNC)
1142 continue;
1143
1144 ret = add_func_switch_tables(file, func);
1145 if (ret)
1146 return ret;
1147 }
1148 }
1149
1150 return 0;
1151}
1152
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001153static int read_unwind_hints(struct objtool_file *file)
1154{
1155 struct section *sec, *relasec;
1156 struct rela *rela;
1157 struct unwind_hint *hint;
1158 struct instruction *insn;
1159 struct cfi_reg *cfa;
1160 int i;
1161
1162 sec = find_section_by_name(file->elf, ".discard.unwind_hints");
1163 if (!sec)
1164 return 0;
1165
1166 relasec = sec->rela;
1167 if (!relasec) {
1168 WARN("missing .rela.discard.unwind_hints section");
1169 return -1;
1170 }
1171
1172 if (sec->len % sizeof(struct unwind_hint)) {
1173 WARN("struct unwind_hint size mismatch");
1174 return -1;
1175 }
1176
1177 file->hints = true;
1178
1179 for (i = 0; i < sec->len / sizeof(struct unwind_hint); i++) {
1180 hint = (struct unwind_hint *)sec->data->d_buf + i;
1181
1182 rela = find_rela_by_dest(sec, i * sizeof(*hint));
1183 if (!rela) {
1184 WARN("can't find rela for unwind_hints[%d]", i);
1185 return -1;
1186 }
1187
1188 insn = find_insn(file, rela->sym->sec, rela->addend);
1189 if (!insn) {
1190 WARN("can't find insn for unwind_hints[%d]", i);
1191 return -1;
1192 }
1193
1194 cfa = &insn->state.cfa;
1195
1196 if (hint->type == UNWIND_HINT_TYPE_SAVE) {
1197 insn->save = true;
1198 continue;
1199
1200 } else if (hint->type == UNWIND_HINT_TYPE_RESTORE) {
1201 insn->restore = true;
1202 insn->hint = true;
1203 continue;
1204 }
1205
1206 insn->hint = true;
1207
1208 switch (hint->sp_reg) {
1209 case ORC_REG_UNDEFINED:
1210 cfa->base = CFI_UNDEFINED;
1211 break;
1212 case ORC_REG_SP:
1213 cfa->base = CFI_SP;
1214 break;
1215 case ORC_REG_BP:
1216 cfa->base = CFI_BP;
1217 break;
1218 case ORC_REG_SP_INDIRECT:
1219 cfa->base = CFI_SP_INDIRECT;
1220 break;
1221 case ORC_REG_R10:
1222 cfa->base = CFI_R10;
1223 break;
1224 case ORC_REG_R13:
1225 cfa->base = CFI_R13;
1226 break;
1227 case ORC_REG_DI:
1228 cfa->base = CFI_DI;
1229 break;
1230 case ORC_REG_DX:
1231 cfa->base = CFI_DX;
1232 break;
1233 default:
1234 WARN_FUNC("unsupported unwind_hint sp base reg %d",
1235 insn->sec, insn->offset, hint->sp_reg);
1236 return -1;
1237 }
1238
1239 cfa->offset = hint->sp_offset;
1240 insn->state.type = hint->type;
Josh Poimboeufd31a5802018-05-18 08:47:12 +02001241 insn->state.end = hint->end;
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001242 }
1243
1244 return 0;
1245}
1246
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001247static int read_retpoline_hints(struct objtool_file *file)
1248{
Josh Poimboeuf63474dc2018-03-06 17:58:15 -06001249 struct section *sec;
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001250 struct instruction *insn;
1251 struct rela *rela;
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001252
Josh Poimboeuf63474dc2018-03-06 17:58:15 -06001253 sec = find_section_by_name(file->elf, ".rela.discard.retpoline_safe");
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001254 if (!sec)
1255 return 0;
1256
Josh Poimboeuf63474dc2018-03-06 17:58:15 -06001257 list_for_each_entry(rela, &sec->rela_list, list) {
1258 if (rela->sym->type != STT_SECTION) {
1259 WARN("unexpected relocation symbol type in %s", sec->name);
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001260 return -1;
1261 }
1262
1263 insn = find_insn(file, rela->sym->sec, rela->addend);
1264 if (!insn) {
Josh Poimboeuf63474dc2018-03-06 17:58:15 -06001265 WARN("bad .discard.retpoline_safe entry");
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001266 return -1;
1267 }
1268
1269 if (insn->type != INSN_JUMP_DYNAMIC &&
1270 insn->type != INSN_CALL_DYNAMIC) {
Josh Poimboeuf63474dc2018-03-06 17:58:15 -06001271 WARN_FUNC("retpoline_safe hint not an indirect jump/call",
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001272 insn->sec, insn->offset);
1273 return -1;
1274 }
1275
1276 insn->retpoline_safe = true;
1277 }
1278
1279 return 0;
1280}
1281
Allan Xavier4a60aa02018-09-07 08:12:01 -05001282static void mark_rodata(struct objtool_file *file)
1283{
1284 struct section *sec;
1285 bool found = false;
1286
1287 /*
Josh Poimboeuf87b512d2019-06-27 20:50:46 -05001288 * Search for the following rodata sections, each of which can
1289 * potentially contain jump tables:
1290 *
1291 * - .rodata: can contain GCC switch tables
1292 * - .rodata.<func>: same, if -fdata-sections is being used
1293 * - .rodata..c_jump_table: contains C annotated jump tables
1294 *
1295 * .rodata.str1.* sections are ignored; they don't contain jump tables.
Allan Xavier4a60aa02018-09-07 08:12:01 -05001296 */
1297 for_each_sec(file, sec) {
Josh Poimboeuf87b512d2019-06-27 20:50:46 -05001298 if ((!strncmp(sec->name, ".rodata", 7) && !strstr(sec->name, ".str1.")) ||
1299 !strcmp(sec->name, C_JUMP_TABLE_SECTION)) {
Allan Xavier4a60aa02018-09-07 08:12:01 -05001300 sec->rodata = true;
1301 found = true;
1302 }
1303 }
1304
1305 file->rodata = found;
1306}
1307
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001308static int decode_sections(struct objtool_file *file)
1309{
1310 int ret;
1311
Allan Xavier4a60aa02018-09-07 08:12:01 -05001312 mark_rodata(file);
1313
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001314 ret = decode_instructions(file);
1315 if (ret)
1316 return ret;
1317
1318 ret = add_dead_ends(file);
1319 if (ret)
1320 return ret;
1321
1322 add_ignores(file);
Peter Zijlstraea242132019-02-25 12:50:09 +01001323 add_uaccess_safe(file);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001324
Peter Zijlstraff05ab22019-03-18 14:33:07 +01001325 ret = add_ignore_alternatives(file);
Josh Poimboeuf258c7602018-01-11 21:46:24 +00001326 if (ret)
1327 return ret;
1328
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001329 ret = add_jump_destinations(file);
1330 if (ret)
1331 return ret;
1332
Josh Poimboeufa845c7c2018-01-29 22:00:39 -06001333 ret = add_special_section_alts(file);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001334 if (ret)
1335 return ret;
1336
Josh Poimboeufa845c7c2018-01-29 22:00:39 -06001337 ret = add_call_destinations(file);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001338 if (ret)
1339 return ret;
1340
1341 ret = add_switch_table_alts(file);
1342 if (ret)
1343 return ret;
1344
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001345 ret = read_unwind_hints(file);
1346 if (ret)
1347 return ret;
1348
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001349 ret = read_retpoline_hints(file);
1350 if (ret)
1351 return ret;
1352
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001353 return 0;
1354}
1355
1356static bool is_fentry_call(struct instruction *insn)
1357{
1358 if (insn->type == INSN_CALL &&
1359 insn->call_dest->type == STT_NOTYPE &&
1360 !strcmp(insn->call_dest->name, "__fentry__"))
1361 return true;
1362
1363 return false;
1364}
1365
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001366static bool has_modified_stack_frame(struct insn_state *state)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001367{
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001368 int i;
1369
1370 if (state->cfa.base != initial_func_cfi.cfa.base ||
1371 state->cfa.offset != initial_func_cfi.cfa.offset ||
1372 state->stack_size != initial_func_cfi.cfa.offset ||
1373 state->drap)
1374 return true;
1375
1376 for (i = 0; i < CFI_NUM_REGS; i++)
1377 if (state->regs[i].base != initial_func_cfi.regs[i].base ||
1378 state->regs[i].offset != initial_func_cfi.regs[i].offset)
1379 return true;
1380
1381 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001382}
1383
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001384static bool has_valid_stack_frame(struct insn_state *state)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001385{
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001386 if (state->cfa.base == CFI_BP && state->regs[CFI_BP].base == CFI_CFA &&
1387 state->regs[CFI_BP].offset == -16)
1388 return true;
1389
1390 if (state->drap && state->regs[CFI_BP].base == CFI_BP)
1391 return true;
1392
1393 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001394}
1395
Josh Poimboeuf627fce12017-07-11 10:33:42 -05001396static int update_insn_state_regs(struct instruction *insn, struct insn_state *state)
1397{
1398 struct cfi_reg *cfa = &state->cfa;
1399 struct stack_op *op = &insn->stack_op;
1400
1401 if (cfa->base != CFI_SP)
1402 return 0;
1403
1404 /* push */
Peter Zijlstraea242132019-02-25 12:50:09 +01001405 if (op->dest.type == OP_DEST_PUSH || op->dest.type == OP_DEST_PUSHF)
Josh Poimboeuf627fce12017-07-11 10:33:42 -05001406 cfa->offset += 8;
1407
1408 /* pop */
Peter Zijlstraea242132019-02-25 12:50:09 +01001409 if (op->src.type == OP_SRC_POP || op->src.type == OP_SRC_POPF)
Josh Poimboeuf627fce12017-07-11 10:33:42 -05001410 cfa->offset -= 8;
1411
1412 /* add immediate to sp */
1413 if (op->dest.type == OP_DEST_REG && op->src.type == OP_SRC_ADD &&
1414 op->dest.reg == CFI_SP && op->src.reg == CFI_SP)
1415 cfa->offset -= op->src.offset;
1416
1417 return 0;
1418}
1419
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001420static void save_reg(struct insn_state *state, unsigned char reg, int base,
1421 int offset)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001422{
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001423 if (arch_callee_saved_reg(reg) &&
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001424 state->regs[reg].base == CFI_UNDEFINED) {
1425 state->regs[reg].base = base;
1426 state->regs[reg].offset = offset;
1427 }
1428}
1429
1430static void restore_reg(struct insn_state *state, unsigned char reg)
1431{
1432 state->regs[reg].base = CFI_UNDEFINED;
1433 state->regs[reg].offset = 0;
1434}
1435
1436/*
1437 * A note about DRAP stack alignment:
1438 *
1439 * GCC has the concept of a DRAP register, which is used to help keep track of
1440 * the stack pointer when aligning the stack. r10 or r13 is used as the DRAP
1441 * register. The typical DRAP pattern is:
1442 *
1443 * 4c 8d 54 24 08 lea 0x8(%rsp),%r10
1444 * 48 83 e4 c0 and $0xffffffffffffffc0,%rsp
1445 * 41 ff 72 f8 pushq -0x8(%r10)
1446 * 55 push %rbp
1447 * 48 89 e5 mov %rsp,%rbp
1448 * (more pushes)
1449 * 41 52 push %r10
1450 * ...
1451 * 41 5a pop %r10
1452 * (more pops)
1453 * 5d pop %rbp
1454 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1455 * c3 retq
1456 *
1457 * There are some variations in the epilogues, like:
1458 *
1459 * 5b pop %rbx
1460 * 41 5a pop %r10
1461 * 41 5c pop %r12
1462 * 41 5d pop %r13
1463 * 41 5e pop %r14
1464 * c9 leaveq
1465 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1466 * c3 retq
1467 *
1468 * and:
1469 *
1470 * 4c 8b 55 e8 mov -0x18(%rbp),%r10
1471 * 48 8b 5d e0 mov -0x20(%rbp),%rbx
1472 * 4c 8b 65 f0 mov -0x10(%rbp),%r12
1473 * 4c 8b 6d f8 mov -0x8(%rbp),%r13
1474 * c9 leaveq
1475 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1476 * c3 retq
1477 *
1478 * Sometimes r13 is used as the DRAP register, in which case it's saved and
1479 * restored beforehand:
1480 *
1481 * 41 55 push %r13
1482 * 4c 8d 6c 24 10 lea 0x10(%rsp),%r13
1483 * 48 83 e4 f0 and $0xfffffffffffffff0,%rsp
1484 * ...
1485 * 49 8d 65 f0 lea -0x10(%r13),%rsp
1486 * 41 5d pop %r13
1487 * c3 retq
1488 */
1489static int update_insn_state(struct instruction *insn, struct insn_state *state)
1490{
1491 struct stack_op *op = &insn->stack_op;
1492 struct cfi_reg *cfa = &state->cfa;
1493 struct cfi_reg *regs = state->regs;
1494
1495 /* stack operations don't make sense with an undefined CFA */
1496 if (cfa->base == CFI_UNDEFINED) {
1497 if (insn->func) {
1498 WARN_FUNC("undefined stack state", insn->sec, insn->offset);
1499 return -1;
1500 }
1501 return 0;
1502 }
1503
Josh Poimboeuf627fce12017-07-11 10:33:42 -05001504 if (state->type == ORC_TYPE_REGS || state->type == ORC_TYPE_REGS_IRET)
1505 return update_insn_state_regs(insn, state);
1506
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001507 switch (op->dest.type) {
1508
1509 case OP_DEST_REG:
1510 switch (op->src.type) {
1511
1512 case OP_SRC_REG:
Josh Poimboeuf0d0970e2017-09-20 16:24:32 -05001513 if (op->src.reg == CFI_SP && op->dest.reg == CFI_BP &&
1514 cfa->base == CFI_SP &&
1515 regs[CFI_BP].base == CFI_CFA &&
1516 regs[CFI_BP].offset == -cfa->offset) {
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001517
Josh Poimboeuf0d0970e2017-09-20 16:24:32 -05001518 /* mov %rsp, %rbp */
1519 cfa->base = op->dest.reg;
1520 state->bp_scratch = false;
1521 }
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001522
Josh Poimboeuf0d0970e2017-09-20 16:24:32 -05001523 else if (op->src.reg == CFI_SP &&
1524 op->dest.reg == CFI_BP && state->drap) {
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001525
Josh Poimboeuf0d0970e2017-09-20 16:24:32 -05001526 /* drap: mov %rsp, %rbp */
1527 regs[CFI_BP].base = CFI_BP;
1528 regs[CFI_BP].offset = -state->stack_size;
1529 state->bp_scratch = false;
1530 }
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -05001531
Josh Poimboeuf0d0970e2017-09-20 16:24:32 -05001532 else if (op->src.reg == CFI_SP && cfa->base == CFI_SP) {
1533
1534 /*
1535 * mov %rsp, %reg
1536 *
1537 * This is needed for the rare case where GCC
1538 * does:
1539 *
1540 * mov %rsp, %rax
1541 * ...
1542 * mov %rax, %rsp
1543 */
1544 state->vals[op->dest.reg].base = CFI_CFA;
1545 state->vals[op->dest.reg].offset = -state->stack_size;
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -05001546 }
1547
Josh Poimboeuf3c1f0582018-03-22 13:00:37 -05001548 else if (op->src.reg == CFI_BP && op->dest.reg == CFI_SP &&
1549 cfa->base == CFI_BP) {
1550
1551 /*
1552 * mov %rbp, %rsp
1553 *
1554 * Restore the original stack pointer (Clang).
1555 */
1556 state->stack_size = -state->regs[CFI_BP].offset;
1557 }
1558
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -05001559 else if (op->dest.reg == cfa->base) {
1560
1561 /* mov %reg, %rsp */
1562 if (cfa->base == CFI_SP &&
1563 state->vals[op->src.reg].base == CFI_CFA) {
1564
1565 /*
1566 * This is needed for the rare case
1567 * where GCC does something dumb like:
1568 *
1569 * lea 0x8(%rsp), %rcx
1570 * ...
1571 * mov %rcx, %rsp
1572 */
1573 cfa->offset = -state->vals[op->src.reg].offset;
1574 state->stack_size = cfa->offset;
1575
1576 } else {
1577 cfa->base = CFI_UNDEFINED;
1578 cfa->offset = 0;
1579 }
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001580 }
1581
1582 break;
1583
1584 case OP_SRC_ADD:
1585 if (op->dest.reg == CFI_SP && op->src.reg == CFI_SP) {
1586
1587 /* add imm, %rsp */
1588 state->stack_size -= op->src.offset;
1589 if (cfa->base == CFI_SP)
1590 cfa->offset -= op->src.offset;
1591 break;
1592 }
1593
1594 if (op->dest.reg == CFI_SP && op->src.reg == CFI_BP) {
1595
1596 /* lea disp(%rbp), %rsp */
1597 state->stack_size = -(op->src.offset + regs[CFI_BP].offset);
1598 break;
1599 }
1600
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -05001601 if (op->src.reg == CFI_SP && cfa->base == CFI_SP) {
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001602
1603 /* drap: lea disp(%rsp), %drap */
1604 state->drap_reg = op->dest.reg;
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -05001605
1606 /*
1607 * lea disp(%rsp), %reg
1608 *
1609 * This is needed for the rare case where GCC
1610 * does something dumb like:
1611 *
1612 * lea 0x8(%rsp), %rcx
1613 * ...
1614 * mov %rcx, %rsp
1615 */
1616 state->vals[op->dest.reg].base = CFI_CFA;
1617 state->vals[op->dest.reg].offset = \
1618 -state->stack_size + op->src.offset;
1619
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001620 break;
1621 }
1622
1623 if (state->drap && op->dest.reg == CFI_SP &&
1624 op->src.reg == state->drap_reg) {
1625
1626 /* drap: lea disp(%drap), %rsp */
1627 cfa->base = CFI_SP;
1628 cfa->offset = state->stack_size = -op->src.offset;
1629 state->drap_reg = CFI_UNDEFINED;
1630 state->drap = false;
1631 break;
1632 }
1633
1634 if (op->dest.reg == state->cfa.base) {
1635 WARN_FUNC("unsupported stack register modification",
1636 insn->sec, insn->offset);
1637 return -1;
1638 }
1639
1640 break;
1641
1642 case OP_SRC_AND:
1643 if (op->dest.reg != CFI_SP ||
1644 (state->drap_reg != CFI_UNDEFINED && cfa->base != CFI_SP) ||
1645 (state->drap_reg == CFI_UNDEFINED && cfa->base != CFI_BP)) {
1646 WARN_FUNC("unsupported stack pointer realignment",
1647 insn->sec, insn->offset);
1648 return -1;
1649 }
1650
1651 if (state->drap_reg != CFI_UNDEFINED) {
1652 /* drap: and imm, %rsp */
1653 cfa->base = state->drap_reg;
1654 cfa->offset = state->stack_size = 0;
1655 state->drap = true;
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001656 }
1657
1658 /*
1659 * Older versions of GCC (4.8ish) realign the stack
1660 * without DRAP, with a frame pointer.
1661 */
1662
1663 break;
1664
1665 case OP_SRC_POP:
Peter Zijlstraea242132019-02-25 12:50:09 +01001666 case OP_SRC_POPF:
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001667 if (!state->drap && op->dest.type == OP_DEST_REG &&
1668 op->dest.reg == cfa->base) {
1669
1670 /* pop %rbp */
1671 cfa->base = CFI_SP;
1672 }
1673
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001674 if (state->drap && cfa->base == CFI_BP_INDIRECT &&
1675 op->dest.type == OP_DEST_REG &&
1676 op->dest.reg == state->drap_reg &&
1677 state->drap_offset == -state->stack_size) {
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001678
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001679 /* drap: pop %drap */
1680 cfa->base = state->drap_reg;
1681 cfa->offset = 0;
1682 state->drap_offset = -1;
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001683
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001684 } else if (regs[op->dest.reg].offset == -state->stack_size) {
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001685
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001686 /* pop %reg */
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001687 restore_reg(state, op->dest.reg);
1688 }
1689
1690 state->stack_size -= 8;
1691 if (cfa->base == CFI_SP)
1692 cfa->offset -= 8;
1693
1694 break;
1695
1696 case OP_SRC_REG_INDIRECT:
1697 if (state->drap && op->src.reg == CFI_BP &&
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001698 op->src.offset == state->drap_offset) {
1699
1700 /* drap: mov disp(%rbp), %drap */
1701 cfa->base = state->drap_reg;
1702 cfa->offset = 0;
1703 state->drap_offset = -1;
1704 }
1705
1706 if (state->drap && op->src.reg == CFI_BP &&
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001707 op->src.offset == regs[op->dest.reg].offset) {
1708
1709 /* drap: mov disp(%rbp), %reg */
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001710 restore_reg(state, op->dest.reg);
1711
1712 } else if (op->src.reg == cfa->base &&
1713 op->src.offset == regs[op->dest.reg].offset + cfa->offset) {
1714
1715 /* mov disp(%rbp), %reg */
1716 /* mov disp(%rsp), %reg */
1717 restore_reg(state, op->dest.reg);
1718 }
1719
1720 break;
1721
1722 default:
1723 WARN_FUNC("unknown stack-related instruction",
1724 insn->sec, insn->offset);
1725 return -1;
1726 }
1727
1728 break;
1729
1730 case OP_DEST_PUSH:
Peter Zijlstraea242132019-02-25 12:50:09 +01001731 case OP_DEST_PUSHF:
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001732 state->stack_size += 8;
1733 if (cfa->base == CFI_SP)
1734 cfa->offset += 8;
1735
1736 if (op->src.type != OP_SRC_REG)
1737 break;
1738
1739 if (state->drap) {
1740 if (op->src.reg == cfa->base && op->src.reg == state->drap_reg) {
1741
1742 /* drap: push %drap */
1743 cfa->base = CFI_BP_INDIRECT;
1744 cfa->offset = -state->stack_size;
1745
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001746 /* save drap so we know when to restore it */
1747 state->drap_offset = -state->stack_size;
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001748
1749 } else if (op->src.reg == CFI_BP && cfa->base == state->drap_reg) {
1750
1751 /* drap: push %rbp */
1752 state->stack_size = 0;
1753
1754 } else if (regs[op->src.reg].base == CFI_UNDEFINED) {
1755
1756 /* drap: push %reg */
1757 save_reg(state, op->src.reg, CFI_BP, -state->stack_size);
1758 }
1759
1760 } else {
1761
1762 /* push %reg */
1763 save_reg(state, op->src.reg, CFI_CFA, -state->stack_size);
1764 }
1765
1766 /* detect when asm code uses rbp as a scratch register */
Josh Poimboeuf867ac9d2017-07-24 18:34:14 -05001767 if (!no_fp && insn->func && op->src.reg == CFI_BP &&
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001768 cfa->base != CFI_BP)
1769 state->bp_scratch = true;
1770 break;
1771
1772 case OP_DEST_REG_INDIRECT:
1773
1774 if (state->drap) {
1775 if (op->src.reg == cfa->base && op->src.reg == state->drap_reg) {
1776
1777 /* drap: mov %drap, disp(%rbp) */
1778 cfa->base = CFI_BP_INDIRECT;
1779 cfa->offset = op->dest.offset;
1780
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001781 /* save drap offset so we know when to restore it */
1782 state->drap_offset = op->dest.offset;
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001783 }
1784
1785 else if (regs[op->src.reg].base == CFI_UNDEFINED) {
1786
1787 /* drap: mov reg, disp(%rbp) */
1788 save_reg(state, op->src.reg, CFI_BP, op->dest.offset);
1789 }
1790
1791 } else if (op->dest.reg == cfa->base) {
1792
1793 /* mov reg, disp(%rbp) */
1794 /* mov reg, disp(%rsp) */
1795 save_reg(state, op->src.reg, CFI_CFA,
1796 op->dest.offset - state->cfa.offset);
1797 }
1798
1799 break;
1800
1801 case OP_DEST_LEAVE:
1802 if ((!state->drap && cfa->base != CFI_BP) ||
1803 (state->drap && cfa->base != state->drap_reg)) {
1804 WARN_FUNC("leave instruction with modified stack frame",
1805 insn->sec, insn->offset);
1806 return -1;
1807 }
1808
1809 /* leave (mov %rbp, %rsp; pop %rbp) */
1810
1811 state->stack_size = -state->regs[CFI_BP].offset - 8;
1812 restore_reg(state, CFI_BP);
1813
1814 if (!state->drap) {
1815 cfa->base = CFI_SP;
1816 cfa->offset -= 8;
1817 }
1818
1819 break;
1820
1821 case OP_DEST_MEM:
Peter Zijlstraea242132019-02-25 12:50:09 +01001822 if (op->src.type != OP_SRC_POP && op->src.type != OP_SRC_POPF) {
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001823 WARN_FUNC("unknown stack-related memory operation",
1824 insn->sec, insn->offset);
1825 return -1;
1826 }
1827
1828 /* pop mem */
1829 state->stack_size -= 8;
1830 if (cfa->base == CFI_SP)
1831 cfa->offset -= 8;
1832
1833 break;
1834
1835 default:
1836 WARN_FUNC("unknown stack-related instruction",
1837 insn->sec, insn->offset);
1838 return -1;
1839 }
1840
1841 return 0;
1842}
1843
1844static bool insn_state_match(struct instruction *insn, struct insn_state *state)
1845{
1846 struct insn_state *state1 = &insn->state, *state2 = state;
1847 int i;
1848
1849 if (memcmp(&state1->cfa, &state2->cfa, sizeof(state1->cfa))) {
1850 WARN_FUNC("stack state mismatch: cfa1=%d%+d cfa2=%d%+d",
1851 insn->sec, insn->offset,
1852 state1->cfa.base, state1->cfa.offset,
1853 state2->cfa.base, state2->cfa.offset);
1854
1855 } else if (memcmp(&state1->regs, &state2->regs, sizeof(state1->regs))) {
1856 for (i = 0; i < CFI_NUM_REGS; i++) {
1857 if (!memcmp(&state1->regs[i], &state2->regs[i],
1858 sizeof(struct cfi_reg)))
1859 continue;
1860
1861 WARN_FUNC("stack state mismatch: reg1[%d]=%d%+d reg2[%d]=%d%+d",
1862 insn->sec, insn->offset,
1863 i, state1->regs[i].base, state1->regs[i].offset,
1864 i, state2->regs[i].base, state2->regs[i].offset);
1865 break;
1866 }
1867
Josh Poimboeuf627fce12017-07-11 10:33:42 -05001868 } else if (state1->type != state2->type) {
1869 WARN_FUNC("stack state mismatch: type1=%d type2=%d",
1870 insn->sec, insn->offset, state1->type, state2->type);
1871
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001872 } else if (state1->drap != state2->drap ||
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001873 (state1->drap && state1->drap_reg != state2->drap_reg) ||
1874 (state1->drap && state1->drap_offset != state2->drap_offset)) {
1875 WARN_FUNC("stack state mismatch: drap1=%d(%d,%d) drap2=%d(%d,%d)",
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001876 insn->sec, insn->offset,
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001877 state1->drap, state1->drap_reg, state1->drap_offset,
1878 state2->drap, state2->drap_reg, state2->drap_offset);
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001879
1880 } else
1881 return true;
1882
1883 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001884}
1885
Peter Zijlstraea242132019-02-25 12:50:09 +01001886static inline bool func_uaccess_safe(struct symbol *func)
1887{
1888 if (func)
Josh Poimboeufe10cd8f2019-07-17 20:36:48 -05001889 return func->uaccess_safe;
Peter Zijlstraea242132019-02-25 12:50:09 +01001890
1891 return false;
1892}
1893
1894static inline const char *insn_dest_name(struct instruction *insn)
1895{
1896 if (insn->call_dest)
1897 return insn->call_dest->name;
1898
1899 return "{dynamic}";
1900}
1901
1902static int validate_call(struct instruction *insn, struct insn_state *state)
1903{
1904 if (state->uaccess && !func_uaccess_safe(insn->call_dest)) {
1905 WARN_FUNC("call to %s() with UACCESS enabled",
1906 insn->sec, insn->offset, insn_dest_name(insn));
1907 return 1;
1908 }
1909
Peter Zijlstra2f0f9e92019-02-25 11:10:55 +01001910 if (state->df) {
1911 WARN_FUNC("call to %s() with DF set",
1912 insn->sec, insn->offset, insn_dest_name(insn));
1913 return 1;
1914 }
1915
Peter Zijlstraea242132019-02-25 12:50:09 +01001916 return 0;
1917}
1918
Peter Zijlstra54262aa2019-03-06 12:58:15 +01001919static int validate_sibling_call(struct instruction *insn, struct insn_state *state)
1920{
1921 if (has_modified_stack_frame(state)) {
1922 WARN_FUNC("sibling call from callable instruction with modified stack frame",
1923 insn->sec, insn->offset);
1924 return 1;
1925 }
1926
Peter Zijlstraea242132019-02-25 12:50:09 +01001927 return validate_call(insn, state);
Peter Zijlstra54262aa2019-03-06 12:58:15 +01001928}
1929
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001930/*
1931 * Follow the branch starting at the given instruction, and recursively follow
1932 * any other branches (jumps). Meanwhile, track the frame pointer state at
1933 * each instruction and validate all the rules described in
1934 * tools/objtool/Documentation/stack-validation.txt.
1935 */
Josh Poimboeufc705cec2019-07-17 20:36:47 -05001936static int validate_branch(struct objtool_file *file, struct symbol *func,
1937 struct instruction *first, struct insn_state state)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001938{
1939 struct alternative *alt;
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001940 struct instruction *insn, *next_insn;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001941 struct section *sec;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001942 int ret;
1943
1944 insn = first;
1945 sec = insn->sec;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001946
1947 if (insn->alt_group && list_empty(&insn->alts)) {
1948 WARN_FUNC("don't know how to handle branch to middle of alternative instruction group",
1949 sec, insn->offset);
Josh Poimboeuf12b25722017-08-10 16:37:25 -05001950 return 1;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001951 }
1952
1953 while (1) {
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001954 next_insn = next_insn_same_sec(file, insn);
1955
Josh Poimboeuf13810432018-05-09 22:39:15 -05001956 if (file->c_file && func && insn->func && func != insn->func->pfunc) {
Josh Poimboeufee976382017-08-11 12:24:15 -05001957 WARN("%s() falls through to next function %s()",
1958 func->name, insn->func->name);
1959 return 1;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001960 }
1961
Josh Poimboeuf48550222017-07-07 09:19:42 -05001962 if (func && insn->ignore) {
1963 WARN_FUNC("BUG: why am I validating an ignored function?",
1964 sec, insn->offset);
Josh Poimboeuf12b25722017-08-10 16:37:25 -05001965 return 1;
Josh Poimboeuf48550222017-07-07 09:19:42 -05001966 }
1967
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001968 if (insn->visited) {
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001969 if (!insn->hint && !insn_state_match(insn, &state))
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001970 return 1;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001971
Peter Zijlstraea242132019-02-25 12:50:09 +01001972 /* If we were here with AC=0, but now have AC=1, go again */
1973 if (insn->state.uaccess || !state.uaccess)
1974 return 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001975 }
1976
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001977 if (insn->hint) {
1978 if (insn->restore) {
1979 struct instruction *save_insn, *i;
1980
1981 i = insn;
1982 save_insn = NULL;
Josh Poimboeufc705cec2019-07-17 20:36:47 -05001983 func_for_each_insn_continue_reverse(file, func, i) {
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001984 if (i->save) {
1985 save_insn = i;
1986 break;
1987 }
1988 }
1989
1990 if (!save_insn) {
1991 WARN_FUNC("no corresponding CFI save for CFI restore",
1992 sec, insn->offset);
1993 return 1;
1994 }
1995
1996 if (!save_insn->visited) {
1997 /*
1998 * Oops, no state to copy yet.
1999 * Hopefully we can reach this
2000 * instruction from another branch
2001 * after the save insn has been
2002 * visited.
2003 */
2004 if (insn == first)
2005 return 0;
2006
2007 WARN_FUNC("objtool isn't smart enough to handle this CFI save/restore combo",
2008 sec, insn->offset);
2009 return 1;
2010 }
2011
2012 insn->state = save_insn->state;
2013 }
2014
2015 state = insn->state;
2016
2017 } else
2018 insn->state = state;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002019
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002020 insn->visited = true;
2021
Josh Poimboeufa845c7c2018-01-29 22:00:39 -06002022 if (!insn->ignore_alts) {
Peter Zijlstra764eef42019-03-01 11:19:03 +01002023 bool skip_orig = false;
2024
Josh Poimboeufa845c7c2018-01-29 22:00:39 -06002025 list_for_each_entry(alt, &insn->alts, list) {
Peter Zijlstra764eef42019-03-01 11:19:03 +01002026 if (alt->skip_orig)
2027 skip_orig = true;
2028
Josh Poimboeufc705cec2019-07-17 20:36:47 -05002029 ret = validate_branch(file, func, alt->insn, state);
Peter Zijlstra7697eee2019-03-01 11:15:49 +01002030 if (ret) {
2031 if (backtrace)
2032 BT_FUNC("(alt)", insn);
2033 return ret;
2034 }
Josh Poimboeufa845c7c2018-01-29 22:00:39 -06002035 }
Peter Zijlstra764eef42019-03-01 11:19:03 +01002036
2037 if (skip_orig)
2038 return 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002039 }
2040
2041 switch (insn->type) {
2042
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002043 case INSN_RETURN:
Peter Zijlstraea242132019-02-25 12:50:09 +01002044 if (state.uaccess && !func_uaccess_safe(func)) {
2045 WARN_FUNC("return with UACCESS enabled", sec, insn->offset);
2046 return 1;
2047 }
2048
2049 if (!state.uaccess && func_uaccess_safe(func)) {
2050 WARN_FUNC("return with UACCESS disabled from a UACCESS-safe function", sec, insn->offset);
2051 return 1;
2052 }
2053
Peter Zijlstra2f0f9e92019-02-25 11:10:55 +01002054 if (state.df) {
2055 WARN_FUNC("return with DF set", sec, insn->offset);
2056 return 1;
2057 }
2058
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002059 if (func && has_modified_stack_frame(&state)) {
2060 WARN_FUNC("return with modified stack frame",
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002061 sec, insn->offset);
2062 return 1;
2063 }
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002064
2065 if (state.bp_scratch) {
2066 WARN("%s uses BP as a scratch register",
Josh Poimboeufc705cec2019-07-17 20:36:47 -05002067 func->name);
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002068 return 1;
2069 }
2070
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002071 return 0;
2072
2073 case INSN_CALL:
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002074 case INSN_CALL_DYNAMIC:
Peter Zijlstraea242132019-02-25 12:50:09 +01002075 ret = validate_call(insn, &state);
2076 if (ret)
2077 return ret;
2078
2079 if (insn->type == INSN_CALL) {
2080 if (is_fentry_call(insn))
2081 break;
2082
2083 ret = dead_end_function(file, insn->call_dest);
2084 if (ret == 1)
2085 return 0;
2086 if (ret == -1)
2087 return 1;
2088 }
2089
Josh Poimboeuf867ac9d2017-07-24 18:34:14 -05002090 if (!no_fp && func && !has_valid_stack_frame(&state)) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002091 WARN_FUNC("call without frame pointer save/setup",
2092 sec, insn->offset);
2093 return 1;
2094 }
2095 break;
2096
2097 case INSN_JUMP_CONDITIONAL:
2098 case INSN_JUMP_UNCONDITIONAL:
Peter Zijlstra54262aa2019-03-06 12:58:15 +01002099 if (func && !insn->jump_dest) {
2100 ret = validate_sibling_call(insn, &state);
2101 if (ret)
2102 return ret;
2103
2104 } else if (insn->jump_dest &&
2105 (!func || !insn->jump_dest->func ||
2106 insn->jump_dest->func->pfunc == func)) {
Josh Poimboeufc705cec2019-07-17 20:36:47 -05002107 ret = validate_branch(file, func,
2108 insn->jump_dest, state);
Peter Zijlstra7697eee2019-03-01 11:15:49 +01002109 if (ret) {
2110 if (backtrace)
2111 BT_FUNC("(branch)", insn);
2112 return ret;
2113 }
Josh Poimboeuf48550222017-07-07 09:19:42 -05002114 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002115
2116 if (insn->type == INSN_JUMP_UNCONDITIONAL)
2117 return 0;
2118
2119 break;
2120
2121 case INSN_JUMP_DYNAMIC:
Peter Zijlstra54262aa2019-03-06 12:58:15 +01002122 if (func && list_empty(&insn->alts)) {
2123 ret = validate_sibling_call(insn, &state);
2124 if (ret)
2125 return ret;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002126 }
2127
2128 return 0;
2129
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002130 case INSN_CONTEXT_SWITCH:
2131 if (func && (!next_insn || !next_insn->hint)) {
2132 WARN_FUNC("unsupported instruction in callable function",
2133 sec, insn->offset);
2134 return 1;
2135 }
2136 return 0;
2137
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002138 case INSN_STACK:
2139 if (update_insn_state(insn, &state))
Josh Poimboeuf12b25722017-08-10 16:37:25 -05002140 return 1;
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002141
Peter Zijlstraea242132019-02-25 12:50:09 +01002142 if (insn->stack_op.dest.type == OP_DEST_PUSHF) {
2143 if (!state.uaccess_stack) {
2144 state.uaccess_stack = 1;
2145 } else if (state.uaccess_stack >> 31) {
2146 WARN_FUNC("PUSHF stack exhausted", sec, insn->offset);
2147 return 1;
2148 }
2149 state.uaccess_stack <<= 1;
2150 state.uaccess_stack |= state.uaccess;
2151 }
2152
2153 if (insn->stack_op.src.type == OP_SRC_POPF) {
2154 if (state.uaccess_stack) {
2155 state.uaccess = state.uaccess_stack & 1;
2156 state.uaccess_stack >>= 1;
2157 if (state.uaccess_stack == 1)
2158 state.uaccess_stack = 0;
2159 }
2160 }
2161
2162 break;
2163
2164 case INSN_STAC:
2165 if (state.uaccess) {
2166 WARN_FUNC("recursive UACCESS enable", sec, insn->offset);
2167 return 1;
2168 }
2169
2170 state.uaccess = true;
2171 break;
2172
2173 case INSN_CLAC:
Josh Poimboeufc705cec2019-07-17 20:36:47 -05002174 if (!state.uaccess && func) {
Peter Zijlstraea242132019-02-25 12:50:09 +01002175 WARN_FUNC("redundant UACCESS disable", sec, insn->offset);
2176 return 1;
2177 }
2178
2179 if (func_uaccess_safe(func) && !state.uaccess_stack) {
2180 WARN_FUNC("UACCESS-safe disables UACCESS", sec, insn->offset);
2181 return 1;
2182 }
2183
2184 state.uaccess = false;
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002185 break;
2186
Peter Zijlstra2f0f9e92019-02-25 11:10:55 +01002187 case INSN_STD:
2188 if (state.df)
2189 WARN_FUNC("recursive STD", sec, insn->offset);
2190
2191 state.df = true;
2192 break;
2193
2194 case INSN_CLD:
Josh Poimboeufc705cec2019-07-17 20:36:47 -05002195 if (!state.df && func)
Peter Zijlstra2f0f9e92019-02-25 11:10:55 +01002196 WARN_FUNC("redundant CLD", sec, insn->offset);
2197
2198 state.df = false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002199 break;
2200
2201 default:
2202 break;
2203 }
2204
2205 if (insn->dead_end)
2206 return 0;
2207
Josh Poimboeuf00d961802017-09-18 21:43:30 -05002208 if (!next_insn) {
2209 if (state.cfa.base == CFI_UNDEFINED)
2210 return 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002211 WARN("%s: unexpected end of section", sec->name);
2212 return 1;
2213 }
Josh Poimboeuf00d961802017-09-18 21:43:30 -05002214
2215 insn = next_insn;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002216 }
2217
2218 return 0;
2219}
2220
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002221static int validate_unwind_hints(struct objtool_file *file)
2222{
2223 struct instruction *insn;
2224 int ret, warnings = 0;
2225 struct insn_state state;
2226
2227 if (!file->hints)
2228 return 0;
2229
2230 clear_insn_state(&state);
2231
2232 for_each_insn(file, insn) {
2233 if (insn->hint && !insn->visited) {
Josh Poimboeufc705cec2019-07-17 20:36:47 -05002234 ret = validate_branch(file, insn->func, insn, state);
Peter Zijlstra7697eee2019-03-01 11:15:49 +01002235 if (ret && backtrace)
2236 BT_FUNC("<=== (hint)", insn);
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002237 warnings += ret;
2238 }
2239 }
2240
2241 return warnings;
2242}
2243
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01002244static int validate_retpoline(struct objtool_file *file)
2245{
2246 struct instruction *insn;
2247 int warnings = 0;
2248
2249 for_each_insn(file, insn) {
2250 if (insn->type != INSN_JUMP_DYNAMIC &&
2251 insn->type != INSN_CALL_DYNAMIC)
2252 continue;
2253
2254 if (insn->retpoline_safe)
2255 continue;
2256
Peter Zijlstraca41b972018-01-31 10:18:28 +01002257 /*
2258 * .init.text code is ran before userspace and thus doesn't
2259 * strictly need retpolines, except for modules which are
2260 * loaded late, they very much do need retpoline in their
2261 * .init.text
2262 */
2263 if (!strcmp(insn->sec->name, ".init.text") && !module)
2264 continue;
2265
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01002266 WARN_FUNC("indirect %s found in RETPOLINE build",
2267 insn->sec, insn->offset,
2268 insn->type == INSN_JUMP_DYNAMIC ? "jump" : "call");
2269
2270 warnings++;
2271 }
2272
2273 return warnings;
2274}
2275
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002276static bool is_kasan_insn(struct instruction *insn)
2277{
2278 return (insn->type == INSN_CALL &&
2279 !strcmp(insn->call_dest->name, "__asan_handle_no_return"));
2280}
2281
2282static bool is_ubsan_insn(struct instruction *insn)
2283{
2284 return (insn->type == INSN_CALL &&
2285 !strcmp(insn->call_dest->name,
2286 "__ubsan_handle_builtin_unreachable"));
2287}
2288
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002289static bool ignore_unreachable_insn(struct instruction *insn)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002290{
2291 int i;
2292
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002293 if (insn->ignore || insn->type == INSN_NOP)
2294 return true;
2295
2296 /*
2297 * Ignore any unused exceptions. This can happen when a whitelisted
2298 * function has an exception table entry.
Josh Poimboeuf0e2bb2b2017-07-27 15:56:54 -05002299 *
2300 * Also ignore alternative replacement instructions. This can happen
2301 * when a whitelisted function uses one of the ALTERNATIVE macros.
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002302 */
Josh Poimboeuf0e2bb2b2017-07-27 15:56:54 -05002303 if (!strcmp(insn->sec->name, ".fixup") ||
2304 !strcmp(insn->sec->name, ".altinstr_replacement") ||
2305 !strcmp(insn->sec->name, ".altinstr_aux"))
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002306 return true;
2307
2308 /*
2309 * Check if this (or a subsequent) instruction is related to
2310 * CONFIG_UBSAN or CONFIG_KASAN.
2311 *
2312 * End the search at 5 instructions to avoid going into the weeds.
2313 */
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002314 if (!insn->func)
2315 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002316 for (i = 0; i < 5; i++) {
2317
2318 if (is_kasan_insn(insn) || is_ubsan_insn(insn))
2319 return true;
2320
Josh Poimboeuffe24e272018-02-08 17:09:25 -06002321 if (insn->type == INSN_JUMP_UNCONDITIONAL) {
2322 if (insn->jump_dest &&
2323 insn->jump_dest->func == insn->func) {
2324 insn = insn->jump_dest;
2325 continue;
2326 }
2327
2328 break;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002329 }
2330
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002331 if (insn->offset + insn->len >= insn->func->offset + insn->func->len)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002332 break;
Josh Poimboeuffe24e272018-02-08 17:09:25 -06002333
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002334 insn = list_next_entry(insn, list);
2335 }
2336
2337 return false;
2338}
2339
2340static int validate_functions(struct objtool_file *file)
2341{
2342 struct section *sec;
2343 struct symbol *func;
2344 struct instruction *insn;
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002345 struct insn_state state;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002346 int ret, warnings = 0;
2347
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002348 clear_insn_state(&state);
2349
2350 state.cfa = initial_func_cfi.cfa;
2351 memcpy(&state.regs, &initial_func_cfi.regs,
2352 CFI_NUM_REGS * sizeof(struct cfi_reg));
2353 state.stack_size = initial_func_cfi.cfa.offset;
2354
2355 for_each_sec(file, sec) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002356 list_for_each_entry(func, &sec->symbol_list, list) {
Josh Poimboeufe10cd8f2019-07-17 20:36:48 -05002357 if (func->type != STT_FUNC)
2358 continue;
2359
2360 if (func->pfunc != func || func->alias != func)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002361 continue;
2362
2363 insn = find_insn(file, sec, func->offset);
Josh Poimboeufc705cec2019-07-17 20:36:47 -05002364 if (!insn || insn->ignore || insn->visited)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002365 continue;
2366
Josh Poimboeufe10cd8f2019-07-17 20:36:48 -05002367 state.uaccess = func->uaccess_safe;
Peter Zijlstraea242132019-02-25 12:50:09 +01002368
Josh Poimboeufc705cec2019-07-17 20:36:47 -05002369 ret = validate_branch(file, func, insn, state);
Peter Zijlstra7697eee2019-03-01 11:15:49 +01002370 if (ret && backtrace)
2371 BT_FUNC("<=== (func)", insn);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002372 warnings += ret;
2373 }
2374 }
2375
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002376 return warnings;
2377}
2378
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002379static int validate_reachable_instructions(struct objtool_file *file)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002380{
2381 struct instruction *insn;
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002382
2383 if (file->ignore_unreachables)
2384 return 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002385
2386 for_each_insn(file, insn) {
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002387 if (insn->visited || ignore_unreachable_insn(insn))
2388 continue;
2389
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002390 WARN_FUNC("unreachable instruction", insn->sec, insn->offset);
2391 return 1;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002392 }
2393
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002394 return 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002395}
2396
2397static void cleanup(struct objtool_file *file)
2398{
2399 struct instruction *insn, *tmpinsn;
2400 struct alternative *alt, *tmpalt;
2401
2402 list_for_each_entry_safe(insn, tmpinsn, &file->insn_list, list) {
2403 list_for_each_entry_safe(alt, tmpalt, &insn->alts, list) {
2404 list_del(&alt->list);
2405 free(alt);
2406 }
2407 list_del(&insn->list);
2408 hash_del(&insn->hash);
2409 free(insn);
2410 }
2411 elf_close(file->elf);
2412}
2413
Josh Poimboeuf0c671812019-03-18 19:09:38 -05002414static struct objtool_file file;
2415
Peter Zijlstra43a45252018-01-16 17:16:32 +01002416int check(const char *_objname, bool orc)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002417{
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002418 int ret, warnings = 0;
2419
2420 objname = _objname;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002421
Michael Forney8e144792019-07-10 16:20:11 -05002422 file.elf = elf_read(objname, orc ? O_RDWR : O_RDONLY);
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002423 if (!file.elf)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002424 return 1;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002425
2426 INIT_LIST_HEAD(&file.insn_list);
2427 hash_init(file.insn_hash);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002428 file.c_file = find_section_by_name(file.elf, ".comment");
Josh Poimboeuf867ac9d2017-07-24 18:34:14 -05002429 file.ignore_unreachables = no_unreachable;
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002430 file.hints = false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002431
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002432 arch_initial_func_cfi_state(&initial_func_cfi);
2433
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002434 ret = decode_sections(&file);
2435 if (ret < 0)
2436 goto out;
2437 warnings += ret;
2438
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002439 if (list_empty(&file.insn_list))
2440 goto out;
2441
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01002442 if (retpoline) {
2443 ret = validate_retpoline(&file);
2444 if (ret < 0)
2445 return ret;
2446 warnings += ret;
2447 }
2448
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002449 ret = validate_functions(&file);
2450 if (ret < 0)
2451 goto out;
2452 warnings += ret;
2453
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002454 ret = validate_unwind_hints(&file);
2455 if (ret < 0)
2456 goto out;
2457 warnings += ret;
2458
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002459 if (!warnings) {
2460 ret = validate_reachable_instructions(&file);
2461 if (ret < 0)
2462 goto out;
2463 warnings += ret;
2464 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002465
Josh Poimboeuf627fce12017-07-11 10:33:42 -05002466 if (orc) {
2467 ret = create_orc(&file);
2468 if (ret < 0)
2469 goto out;
2470
2471 ret = create_orc_sections(&file);
2472 if (ret < 0)
2473 goto out;
2474
2475 ret = elf_write(file.elf);
2476 if (ret < 0)
2477 goto out;
2478 }
2479
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002480out:
2481 cleanup(&file);
2482
2483 /* ignore warnings for now until we get all the code cleaned up */
2484 if (ret || warnings)
2485 return 0;
2486 return 0;
2487}