blob: 464f10c0a5ac43236833818945268ff981df1771 [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
Peter Zijlstraf0f70ad2020-03-10 18:27:24 +010075#define func_for_each_insn(file, func, insn) \
Josh Poimboeuf13810432018-05-09 22:39:15 -050076 for (insn = find_insn(file, func->sec, func->offset); \
77 insn; \
78 insn = next_insn_same_func(file, insn))
79
Peter Zijlstradbf4aeb2020-03-10 18:24:59 +010080#define sym_for_each_insn(file, sym, insn) \
81 for (insn = find_insn(file, sym->sec, sym->offset); \
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050082 insn && &insn->list != &file->insn_list && \
Peter Zijlstradbf4aeb2020-03-10 18:24:59 +010083 insn->sec == sym->sec && \
84 insn->offset < sym->offset + sym->len; \
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050085 insn = list_next_entry(insn, list))
86
Peter Zijlstradbf4aeb2020-03-10 18:24:59 +010087#define sym_for_each_insn_continue_reverse(file, sym, insn) \
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050088 for (insn = list_prev_entry(insn, list); \
89 &insn->list != &file->insn_list && \
Peter Zijlstradbf4aeb2020-03-10 18:24:59 +010090 insn->sec == sym->sec && insn->offset >= sym->offset; \
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050091 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
Josh Poimboeufa2296142020-02-10 12:32:39 -0600100static bool is_static_jump(struct instruction *insn)
101{
102 return insn->type == INSN_JUMP_CONDITIONAL ||
103 insn->type == INSN_JUMP_UNCONDITIONAL;
104}
105
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -0500106static 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
Josh Poimboeufa2296142020-02-10 12:32:39 -0600112 if (!is_static_jump(insn))
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -0500113 return false;
114
115 /* add_jump_destinations() sets insn->call_dest for sibling calls. */
116 return !!insn->call_dest;
117}
118
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500119/*
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500120 * 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.
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500127 */
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500128static bool __dead_end_function(struct objtool_file *file, struct symbol *func,
129 int recursion)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500130{
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",
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500146 "__reiserfs_panic",
147 "lbug_with_loc",
148 "fortify_panic",
Kees Cookb394d462018-01-10 14:22:38 -0800149 "usercopy_abort",
Josh Poimboeuf684fb242018-06-19 10:47:50 -0500150 "machine_real_restart",
Josh Poimboeuf4fa5ecd2019-04-04 12:17:35 -0500151 "rewind_stack_do_exit",
Brendan Higgins33adf802019-09-23 02:02:38 -0700152 "kunit_try_catch_throw",
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500153 };
154
Josh Poimboeufc9bab222019-07-17 20:36:51 -0500155 if (!func)
156 return false;
157
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500158 if (func->bind == STB_WEAK)
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500159 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500160
161 if (func->bind == STB_GLOBAL)
162 for (i = 0; i < ARRAY_SIZE(global_noreturns); i++)
163 if (!strcmp(func->name, global_noreturns[i]))
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500164 return true;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500165
Josh Poimboeuf13810432018-05-09 22:39:15 -0500166 if (!func->len)
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500167 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500168
Josh Poimboeuf13810432018-05-09 22:39:15 -0500169 insn = find_insn(file, func->sec, func->offset);
170 if (!insn->func)
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500171 return false;
Josh Poimboeuf13810432018-05-09 22:39:15 -0500172
Peter Zijlstraf0f70ad2020-03-10 18:27:24 +0100173 func_for_each_insn(file, func, insn) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500174 empty = false;
175
176 if (insn->type == INSN_RETURN)
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500177 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500178 }
179
180 if (empty)
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500181 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500182
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 */
Peter Zijlstraf0f70ad2020-03-10 18:27:24 +0100188 func_for_each_insn(file, func, insn) {
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -0500189 if (is_sibling_call(insn)) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500190 struct instruction *dest = insn->jump_dest;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500191
192 if (!dest)
193 /* sibling call to another file */
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500194 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500195
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -0500196 /* 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;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500204 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500205
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -0500206 return __dead_end_function(file, dest->func, recursion+1);
207 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500208 }
209
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500210 return true;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500211}
212
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500213static bool dead_end_function(struct objtool_file *file, struct symbol *func)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500214{
215 return __dead_end_function(file, func, 0);
216}
217
Josh Poimboeufbaa414692017-06-28 10:11:07 -0500218static 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;
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -0500224 for (i = 0; i < CFI_NUM_REGS; i++) {
Josh Poimboeufbaa414692017-06-28 10:11:07 -0500225 state->regs[i].base = CFI_UNDEFINED;
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -0500226 state->vals[i].base = CFI_UNDEFINED;
227 }
Josh Poimboeufbaa414692017-06-28 10:11:07 -0500228 state->drap_reg = CFI_UNDEFINED;
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -0500229 state->drap_offset = -1;
Josh Poimboeufbaa414692017-06-28 10:11:07 -0500230}
231
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500232/*
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;
Peter Zijlstra1e11f3f2020-03-12 09:26:29 +0100242 unsigned long nr_insns = 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500243 int ret;
244
Josh Poimboeufbaa414692017-06-28 10:11:07 -0500245 for_each_sec(file, sec) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500246
247 if (!(sec->sh.sh_flags & SHF_EXECINSTR))
248 continue;
249
Josh Poimboeuf627fce12017-07-11 10:33:42 -0500250 if (strcmp(sec->name, ".altinstr_replacement") &&
251 strcmp(sec->name, ".altinstr_aux") &&
252 strncmp(sec->name, ".discard.", 9))
253 sec->text = true;
254
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500255 for (offset = 0; offset < sec->len; offset += insn->len) {
256 insn = malloc(sizeof(*insn));
Josh Poimboeufbaa414692017-06-28 10:11:07 -0500257 if (!insn) {
258 WARN("malloc failed");
259 return -1;
260 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500261 memset(insn, 0, sizeof(*insn));
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500262 INIT_LIST_HEAD(&insn->alts);
Julien Thierry65ea47d2020-03-27 15:28:47 +0000263 INIT_LIST_HEAD(&insn->stack_ops);
Josh Poimboeufbaa414692017-06-28 10:11:07 -0500264 clear_insn_state(&insn->state);
265
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500266 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,
Josh Poimboeufbaa414692017-06-28 10:11:07 -0500272 &insn->immediate,
Julien Thierry65ea47d2020-03-27 15:28:47 +0000273 &insn->stack_ops);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500274 if (ret)
Kamalesh Babulalb7037982017-10-19 11:27:24 -0500275 goto err;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500276
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500277 hash_add(file->insn_hash, &insn->hash, insn->offset);
278 list_add_tail(&insn->list, &file->insn_list);
Peter Zijlstra1e11f3f2020-03-12 09:26:29 +0100279 nr_insns++;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500280 }
281
282 list_for_each_entry(func, &sec->symbol_list, list) {
Josh Poimboeufe10cd8f2019-07-17 20:36:48 -0500283 if (func->type != STT_FUNC || func->alias != func)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500284 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
Peter Zijlstradbf4aeb2020-03-10 18:24:59 +0100292 sym_for_each_insn(file, func, insn)
Josh Poimboeufe10cd8f2019-07-17 20:36:48 -0500293 insn->func = func;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500294 }
295 }
296
Peter Zijlstra1e11f3f2020-03-12 09:26:29 +0100297 if (stats)
298 printf("nr_insns: %lu\n", nr_insns);
299
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500300 return 0;
Kamalesh Babulalb7037982017-10-19 11:27:24 -0500301
302err:
303 free(insn);
304 return ret;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500305}
306
307/*
Josh Poimboeuf649ea4d2017-07-27 15:56:53 -0500308 * Mark "ud2" instructions and manually annotated dead ends.
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500309 */
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
Josh Poimboeuf649ea4d2017-07-27 15:56:53 -0500317 /*
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 */
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500328 sec = find_section_by_name(file->elf, ".rela.discard.unreachable");
329 if (!sec)
Josh Poimboeuf649ea4d2017-07-27 15:56:53 -0500330 goto reachable;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500331
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
Josh Poimboeuf649ea4d2017-07-27 15:56:53 -0500363reachable:
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
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500405 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;
Peter Zijlstraaaf5c622019-02-27 14:04:13 +0100416 struct rela *rela;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500417
Peter Zijlstraaaf5c622019-02-27 14:04:13 +0100418 sec = find_section_by_name(file->elf, ".rela.discard.func_stack_frame_non_standard");
419 if (!sec)
420 return;
421
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:
Josh Poimboeuf7acfe532020-02-17 21:41:54 -0600429 func = find_func_by_offset(rela->sym->sec, rela->addend);
430 if (!func)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500431 continue;
Peter Zijlstraaaf5c622019-02-27 14:04:13 +0100432 break;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500433
Peter Zijlstraaaf5c622019-02-27 14:04:13 +0100434 default:
435 WARN("unexpected relocation symbol type in %s: %d", sec->name, rela->sym->type);
436 continue;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500437 }
Peter Zijlstraaaf5c622019-02-27 14:04:13 +0100438
Peter Zijlstraf0f70ad2020-03-10 18:27:24 +0100439 func_for_each_insn(file, func, insn)
Peter Zijlstraaaf5c622019-02-27 14:04:13 +0100440 insn->ignore = true;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500441 }
442}
443
444/*
Peter Zijlstraea242132019-02-25 12:50:09 +0100445 * 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",
Al Viro36b1c702020-02-16 13:07:49 -0500492 "__sanitizer_cov_trace_switch",
Peter Zijlstraea242132019-02-25 12:50:09 +0100493 /* UBSAN */
494 "ubsan_type_mismatch_common",
495 "__ubsan_handle_type_mismatch",
496 "__ubsan_handle_type_mismatch_v1",
Peter Zijlstra9a50dca2019-10-21 15:11:49 +0200497 "__ubsan_handle_shift_out_of_bounds",
Peter Zijlstraea242132019-02-25 12:50:09 +0100498 /* misc */
499 "csum_partial_copy_generic",
500 "__memcpy_mcsafe",
Josh Poimboeufa7e47f22019-07-17 20:36:46 -0500501 "mcsafe_handle_tail",
Peter Zijlstraea242132019-02-25 12:50:09 +0100502 "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
Josh Poimboeufe10cd8f2019-07-17 20:36:48 -0500519 func->uaccess_safe = true;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500520 }
521}
522
523/*
Josh Poimboeuf258c7602018-01-11 21:46:24 +0000524 * 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 */
Peter Zijlstraff05ab22019-03-18 14:33:07 +0100529static int add_ignore_alternatives(struct objtool_file *file)
Josh Poimboeuf258c7602018-01-11 21:46:24 +0000530{
531 struct section *sec;
532 struct rela *rela;
533 struct instruction *insn;
534
Peter Zijlstraff05ab22019-03-18 14:33:07 +0100535 sec = find_section_by_name(file->elf, ".rela.discard.ignore_alts");
Josh Poimboeuf258c7602018-01-11 21:46:24 +0000536 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) {
Peter Zijlstraff05ab22019-03-18 14:33:07 +0100547 WARN("bad .discard.ignore_alts entry");
Josh Poimboeuf258c7602018-01-11 21:46:24 +0000548 return -1;
549 }
550
551 insn->ignore_alts = true;
552 }
553
554 return 0;
555}
556
557/*
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500558 * 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) {
Josh Poimboeufa2296142020-02-10 12:32:39 -0600568 if (!is_static_jump(insn))
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500569 continue;
570
Josh Poimboeufe6da9562019-05-13 12:01:31 -0500571 if (insn->ignore || insn->offset == FAKE_JUMP_OFFSET)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500572 continue;
573
Peter Zijlstra8b5fa6b2020-03-12 11:23:36 +0100574 rela = find_rela_by_dest_range(file->elf, insn->sec,
575 insn->offset, insn->len);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500576 if (!rela) {
577 dest_sec = insn->sec;
Raphael Gaultbfb08f22020-03-27 15:28:45 +0000578 dest_off = arch_jump_destination(insn);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500579 } else if (rela->sym->type == STT_SECTION) {
580 dest_sec = rela->sym->sec;
Raphael Gaultbfb08f22020-03-27 15:28:45 +0000581 dest_off = arch_dest_rela_offset(rela->addend);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500582 } else if (rela->sym->sec->idx) {
583 dest_sec = rela->sym->sec;
Raphael Gaultbfb08f22020-03-27 15:28:45 +0000584 dest_off = rela->sym->sym.st_value +
585 arch_dest_rela_offset(rela->addend);
Josh Poimboeuf39b73532018-01-11 21:46:23 +0000586 } else if (strstr(rela->sym->name, "_indirect_thunk_")) {
587 /*
588 * Retpoline jumps are really dynamic jumps in
589 * disguise, so convert them accordingly.
590 */
Josh Poimboeufb68b9902019-07-17 20:36:57 -0500591 if (insn->type == INSN_JUMP_UNCONDITIONAL)
592 insn->type = INSN_JUMP_DYNAMIC;
593 else
594 insn->type = INSN_JUMP_DYNAMIC_CONDITIONAL;
595
Peter Zijlstrab5bc2232018-01-16 10:24:06 +0100596 insn->retpoline_safe = true;
Josh Poimboeuf39b73532018-01-11 21:46:23 +0000597 continue;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500598 } else {
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -0500599 /* external sibling call */
Peter Zijlstra54262aa2019-03-06 12:58:15 +0100600 insn->call_dest = rela->sym;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500601 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 }
Josh Poimboeufcd778492018-06-01 07:23:51 -0500620
621 /*
Peter Zijlstra54262aa2019-03-06 12:58:15 +0100622 * Cross-function jump.
Josh Poimboeufcd778492018-06-01 07:23:51 -0500623 */
624 if (insn->func && insn->jump_dest->func &&
Peter Zijlstra54262aa2019-03-06 12:58:15 +0100625 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
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -0500640 * subfunction is through a jump table.
Peter Zijlstra54262aa2019-03-06 12:58:15 +0100641 */
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
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -0500650 /* internal sibling call */
Peter Zijlstra54262aa2019-03-06 12:58:15 +0100651 insn->call_dest = insn->jump_dest->func;
Peter Zijlstra54262aa2019-03-06 12:58:15 +0100652 }
Josh Poimboeufcd778492018-06-01 07:23:51 -0500653 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500654 }
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
Peter Zijlstra8b5fa6b2020-03-12 11:23:36 +0100672 rela = find_rela_by_dest_range(file->elf, insn->sec,
673 insn->offset, insn->len);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500674 if (!rela) {
Raphael Gaultbfb08f22020-03-27 15:28:45 +0000675 dest_off = arch_jump_destination(insn);
Josh Poimboeuf7acfe532020-02-17 21:41:54 -0600676 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);
Josh Poimboeufa845c7c2018-01-29 22:00:39 -0600679
Josh Poimboeuf7acfe532020-02-17 21:41:54 -0600680 if (insn->ignore)
681 continue;
682
683 if (!insn->call_dest) {
Josh Poimboeufa845c7c2018-01-29 22:00:39 -0600684 WARN_FUNC("unsupported intra-function call",
685 insn->sec, insn->offset);
Peter Zijlstrab5bc2232018-01-16 10:24:06 +0100686 if (retpoline)
687 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 -0500688 return -1;
689 }
Josh Poimboeufa845c7c2018-01-29 22:00:39 -0600690
Josh Poimboeuf7acfe532020-02-17 21:41:54 -0600691 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
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500697 } else if (rela->sym->type == STT_SECTION) {
Raphael Gaultbfb08f22020-03-27 15:28:45 +0000698 dest_off = arch_dest_rela_offset(rela->addend);
Josh Poimboeuf7acfe532020-02-17 21:41:54 -0600699 insn->call_dest = find_func_by_offset(rela->sym->sec,
Raphael Gaultbfb08f22020-03-27 15:28:45 +0000700 dest_off);
Josh Poimboeuf7acfe532020-02-17 21:41:54 -0600701 if (!insn->call_dest) {
Raphael Gaultbfb08f22020-03-27 15:28:45 +0000702 WARN_FUNC("can't find call dest symbol at %s+0x%lx",
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500703 insn->sec, insn->offset,
704 rela->sym->sec->name,
Raphael Gaultbfb08f22020-03-27 15:28:45 +0000705 dest_off);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500706 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.
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500731 */
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{
Josh Poimboeuf17bc3392018-01-29 22:00:40 -0600737 struct instruction *last_orig_insn, *last_new_insn, *insn, *fake_jump = NULL;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500738 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
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500746 insn->alt_group = true;
747 last_orig_insn = insn;
748 }
749
Josh Poimboeuf17bc3392018-01-29 22:00:40 -0600750 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);
Julien Thierry65ea47d2020-03-27 15:28:47 +0000758 INIT_LIST_HEAD(&fake_jump->stack_ops);
Josh Poimboeuf17bc3392018-01-29 22:00:40 -0600759 clear_insn_state(&fake_jump->state);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500760
Josh Poimboeuf17bc3392018-01-29 22:00:40 -0600761 fake_jump->sec = special_alt->new_sec;
Josh Poimboeufe6da9562019-05-13 12:01:31 -0500762 fake_jump->offset = FAKE_JUMP_OFFSET;
Josh Poimboeuf17bc3392018-01-29 22:00:40 -0600763 fake_jump->type = INSN_JUMP_UNCONDITIONAL;
764 fake_jump->jump_dest = list_next_entry(last_orig_insn, list);
Josh Poimboeufe6da9562019-05-13 12:01:31 -0500765 fake_jump->func = orig_insn->func;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500766 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500767
768 if (!special_alt->new_len) {
Josh Poimboeuf17bc3392018-01-29 22:00:40 -0600769 if (!fake_jump) {
770 WARN("%s: empty alternative at end of section",
771 special_alt->orig_sec->name);
772 return -1;
773 }
774
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500775 *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
Josh Poimboeufa845c7c2018-01-29 22:00:39 -0600787 insn->ignore = orig_insn->ignore_alts;
Peter Zijlstraa4d09dd2019-02-25 10:31:24 +0100788 insn->func = orig_insn->func;
Josh Poimboeufa845c7c2018-01-29 22:00:39 -0600789
Josh Poimboeufdc419722020-02-10 12:32:40 -0600790 /*
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))) &&
Peter Zijlstra8b5fa6b2020-03-12 11:23:36 +0100804 find_rela_by_dest_range(file->elf, insn->sec, insn->offset, insn->len)) {
Josh Poimboeufdc419722020-02-10 12:32:40 -0600805
806 WARN_FUNC("unsupported relocation in alternatives section",
807 insn->sec, insn->offset);
808 return -1;
809 }
810
Josh Poimboeufa2296142020-02-10 12:32:39 -0600811 if (!is_static_jump(insn))
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500812 continue;
813
814 if (!insn->immediate)
815 continue;
816
Raphael Gaultbfb08f22020-03-27 15:28:45 +0000817 dest_off = arch_jump_destination(insn);
Josh Poimboeuf17bc3392018-01-29 22:00:40 -0600818 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 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500824 insn->jump_dest = fake_jump;
Josh Poimboeuf17bc3392018-01-29 22:00:40 -0600825 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500826
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
Josh Poimboeuf17bc3392018-01-29 22:00:40 -0600840 if (fake_jump)
841 list_add(&fake_jump->list, &last_new_insn->list);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500842
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) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500888
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) {
Julien Thierry7170cf42020-03-27 15:28:41 +0000912 if (!special_alt->orig_len) {
913 WARN_FUNC("empty alternative entry",
914 orig_insn->sec, orig_insn->offset);
915 continue;
916 }
917
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500918 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
Josh Poimboeuf258c7602018-01-11 21:46:24 +0000929 alt = malloc(sizeof(*alt));
930 if (!alt) {
931 WARN("malloc failed");
932 ret = -1;
933 goto out;
934 }
935
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500936 alt->insn = new_insn;
Peter Zijlstra764eef42019-03-01 11:19:03 +0100937 alt->skip_orig = special_alt->skip_orig;
Peter Zijlstraea242132019-02-25 12:50:09 +0100938 orig_insn->ignore_alts |= special_alt->skip_alt;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500939 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
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -0500949static int add_jump_table(struct objtool_file *file, struct instruction *insn,
Jann Hornbd98c812019-07-17 20:36:54 -0500950 struct rela *table)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500951{
952 struct rela *rela = table;
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -0500953 struct instruction *dest_insn;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500954 struct alternative *alt;
Josh Poimboeuffd35c882018-05-10 17:48:49 -0500955 struct symbol *pfunc = insn->func->pfunc;
956 unsigned int prev_offset = 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500957
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -0500958 /*
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) {
Jann Hornbd98c812019-07-17 20:36:54 -0500963
964 /* Check for the end of the table: */
965 if (rela != table && rela->jump_table_start)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500966 break;
967
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -0500968 /* Make sure the table entries are consecutive: */
Josh Poimboeuffd35c882018-05-10 17:48:49 -0500969 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
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -0500977 dest_insn = find_insn(file, rela->sym->sec, rela->addend);
978 if (!dest_insn)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500979 break;
980
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -0500981 /* Make sure the destination is in the same function: */
Josh Poimboeufe65050b2019-07-17 20:36:55 -0500982 if (!dest_insn->func || dest_insn->func->pfunc != pfunc)
Josh Poimboeuf13810432018-05-09 22:39:15 -0500983 break;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500984
985 alt = malloc(sizeof(*alt));
986 if (!alt) {
987 WARN("malloc failed");
988 return -1;
989 }
990
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -0500991 alt->insn = dest_insn;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500992 list_add_tail(&alt->list, &insn->alts);
Josh Poimboeuffd35c882018-05-10 17:48:49 -0500993 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;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001000 }
1001
1002 return 0;
1003}
1004
1005/*
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001006 * find_jump_table() - Given a dynamic jump, find the switch jump table in
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001007 * .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 *
Peter Zijlstra99ce7962018-02-08 14:02:32 +01001039 * 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 *
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001043 * TODO: Once we have DWARF CFI and smarter instruction decoding logic,
1044 * ensure the same register is used in the mov and jump instructions.
Peter Zijlstra99ce7962018-02-08 14:02:32 +01001045 *
1046 * NOTE: RETPOLINE made it harder still to decode dynamic jumps.
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001047 */
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001048static struct rela *find_jump_table(struct objtool_file *file,
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001049 struct symbol *func,
1050 struct instruction *insn)
1051{
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001052 struct rela *text_rela, *table_rela;
Josh Poimboeuf113d4bc2020-02-17 21:41:53 -06001053 struct instruction *dest_insn, *orig_insn = insn;
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001054 struct section *table_sec;
Josh Poimboeuf6f5ec292018-05-14 08:53:24 -05001055 unsigned long table_offset;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001056
Peter Zijlstra99ce7962018-02-08 14:02:32 +01001057 /*
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 */
Josh Poimboeuf7dec80c2018-05-18 15:10:34 -05001062 for (;
Josh Poimboeufb401efc2020-04-01 13:23:28 -05001063 &insn->list != &file->insn_list && insn->func && insn->func->pfunc == func;
Peter Zijlstra99ce7962018-02-08 14:02:32 +01001064 insn = insn->first_jump_src ?: list_prev_entry(insn, list)) {
1065
Josh Poimboeuf7dec80c2018-05-18 15:10:34 -05001066 if (insn != orig_insn && insn->type == INSN_JUMP_DYNAMIC)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001067 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 */
Peter Zijlstra8b5fa6b2020-03-12 11:23:36 +01001077 text_rela = find_rela_by_dest_range(file->elf, insn->sec,
1078 insn->offset, insn->len);
Allan Xavier4a60aa02018-09-07 08:12:01 -05001079 if (!text_rela || text_rela->sym->type != STT_SECTION ||
1080 !text_rela->sym->sec->rodata)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001081 continue;
1082
Josh Poimboeuf6f5ec292018-05-14 08:53:24 -05001083 table_offset = text_rela->addend;
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001084 table_sec = text_rela->sym->sec;
Allan Xavier4a60aa02018-09-07 08:12:01 -05001085
Josh Poimboeuf6f5ec292018-05-14 08:53:24 -05001086 if (text_rela->type == R_X86_64_PC32)
1087 table_offset += 4;
1088
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001089 /*
1090 * Make sure the .rodata address isn't associated with a
Josh Poimboeuf87b512d2019-06-27 20:50:46 -05001091 * 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.
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001097 */
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001098 if (find_symbol_containing(table_sec, table_offset) &&
1099 strcmp(table_sec->name, C_JUMP_TABLE_SECTION))
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001100 continue;
1101
Josh Poimboeuf113d4bc2020-02-17 21:41:53 -06001102 /*
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 */
Peter Zijlstra8b5fa6b2020-03-12 11:23:36 +01001107 table_rela = find_rela_by_dest(file->elf, table_sec, table_offset);
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001108 if (!table_rela)
1109 continue;
Josh Poimboeuf113d4bc2020-02-17 21:41:53 -06001110 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;
Josh Poimboeuf7dec80c2018-05-18 15:10:34 -05001113
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001114 /*
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;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001123 }
1124
1125 return NULL;
1126}
1127
Jann Hornbd98c812019-07-17 20:36:54 -05001128/*
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)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001134{
Jann Hornbd98c812019-07-17 20:36:54 -05001135 struct instruction *insn, *last = NULL;
1136 struct rela *rela;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001137
Peter Zijlstraf0f70ad2020-03-10 18:27:24 +01001138 func_for_each_insn(file, func, insn) {
Peter Zijlstra99ce7962018-02-08 14:02:32 +01001139 if (!last)
1140 last = insn;
1141
1142 /*
1143 * Store back-pointers for unconditional forward jumps such
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001144 * that find_jump_table() can back-track using those and
Peter Zijlstra99ce7962018-02-08 14:02:32 +01001145 * 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
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001156 if (insn->type != INSN_JUMP_DYNAMIC)
1157 continue;
1158
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001159 rela = find_jump_table(file, func, insn);
Jann Hornbd98c812019-07-17 20:36:54 -05001160 if (rela) {
1161 rela->jump_table_start = true;
1162 insn->jump_table = rela;
1163 }
1164 }
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
Peter Zijlstraf0f70ad2020-03-10 18:27:24 +01001173 func_for_each_insn(file, func, insn) {
Jann Hornbd98c812019-07-17 20:36:54 -05001174 if (!insn->jump_table)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001175 continue;
1176
Jann Hornbd98c812019-07-17 20:36:54 -05001177 ret = add_jump_table(file, insn, insn->jump_table);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001178 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 */
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001190static int add_jump_table_alts(struct objtool_file *file)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001191{
1192 struct section *sec;
1193 struct symbol *func;
1194 int ret;
1195
Allan Xavier4a60aa02018-09-07 08:12:01 -05001196 if (!file->rodata)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001197 return 0;
1198
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001199 for_each_sec(file, sec) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001200 list_for_each_entry(func, &sec->symbol_list, list) {
1201 if (func->type != STT_FUNC)
1202 continue;
1203
Jann Hornbd98c812019-07-17 20:36:54 -05001204 mark_func_jump_tables(file, func);
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001205 ret = add_func_jump_tables(file, func);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001206 if (ret)
1207 return ret;
1208 }
1209 }
1210
1211 return 0;
1212}
1213
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001214static 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
Peter Zijlstra8b5fa6b2020-03-12 11:23:36 +01001243 rela = find_rela_by_dest(file->elf, sec, i * sizeof(*hint));
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001244 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
Peter Zijlstrac536ed22020-04-01 16:54:26 +02001257 if (hint->type == UNWIND_HINT_TYPE_RET_OFFSET) {
Peter Zijlstrae25eea82020-04-01 16:38:19 +02001258 insn->ret_offset = hint->sp_offset;
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001259 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;
Josh Poimboeufd31a5802018-05-18 08:47:12 +02001297 insn->state.end = hint->end;
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001298 }
1299
1300 return 0;
1301}
1302
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001303static int read_retpoline_hints(struct objtool_file *file)
1304{
Josh Poimboeuf63474dc2018-03-06 17:58:15 -06001305 struct section *sec;
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001306 struct instruction *insn;
1307 struct rela *rela;
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001308
Josh Poimboeuf63474dc2018-03-06 17:58:15 -06001309 sec = find_section_by_name(file->elf, ".rela.discard.retpoline_safe");
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001310 if (!sec)
1311 return 0;
1312
Josh Poimboeuf63474dc2018-03-06 17:58:15 -06001313 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);
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001316 return -1;
1317 }
1318
1319 insn = find_insn(file, rela->sym->sec, rela->addend);
1320 if (!insn) {
Josh Poimboeuf63474dc2018-03-06 17:58:15 -06001321 WARN("bad .discard.retpoline_safe entry");
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001322 return -1;
1323 }
1324
1325 if (insn->type != INSN_JUMP_DYNAMIC &&
1326 insn->type != INSN_CALL_DYNAMIC) {
Josh Poimboeuf63474dc2018-03-06 17:58:15 -06001327 WARN_FUNC("retpoline_safe hint not an indirect jump/call",
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001328 insn->sec, insn->offset);
1329 return -1;
1330 }
1331
1332 insn->retpoline_safe = true;
1333 }
1334
1335 return 0;
1336}
1337
Allan Xavier4a60aa02018-09-07 08:12:01 -05001338static void mark_rodata(struct objtool_file *file)
1339{
1340 struct section *sec;
1341 bool found = false;
1342
1343 /*
Josh Poimboeuf87b512d2019-06-27 20:50:46 -05001344 * 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.
Allan Xavier4a60aa02018-09-07 08:12:01 -05001352 */
1353 for_each_sec(file, sec) {
Muchun Song1ee444702020-04-12 22:44:05 +08001354 if (!strncmp(sec->name, ".rodata", 7) &&
1355 !strstr(sec->name, ".str1.")) {
Allan Xavier4a60aa02018-09-07 08:12:01 -05001356 sec->rodata = true;
1357 found = true;
1358 }
1359 }
1360
1361 file->rodata = found;
1362}
1363
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001364static int decode_sections(struct objtool_file *file)
1365{
1366 int ret;
1367
Allan Xavier4a60aa02018-09-07 08:12:01 -05001368 mark_rodata(file);
1369
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001370 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);
Peter Zijlstraea242132019-02-25 12:50:09 +01001379 add_uaccess_safe(file);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001380
Peter Zijlstraff05ab22019-03-18 14:33:07 +01001381 ret = add_ignore_alternatives(file);
Josh Poimboeuf258c7602018-01-11 21:46:24 +00001382 if (ret)
1383 return ret;
1384
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001385 ret = add_jump_destinations(file);
1386 if (ret)
1387 return ret;
1388
Josh Poimboeufa845c7c2018-01-29 22:00:39 -06001389 ret = add_special_section_alts(file);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001390 if (ret)
1391 return ret;
1392
Josh Poimboeufa845c7c2018-01-29 22:00:39 -06001393 ret = add_call_destinations(file);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001394 if (ret)
1395 return ret;
1396
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001397 ret = add_jump_table_alts(file);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001398 if (ret)
1399 return ret;
1400
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001401 ret = read_unwind_hints(file);
1402 if (ret)
1403 return ret;
1404
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001405 ret = read_retpoline_hints(file);
1406 if (ret)
1407 return ret;
1408
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001409 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
Peter Zijlstrae25eea82020-04-01 16:38:19 +02001422static bool has_modified_stack_frame(struct instruction *insn, struct insn_state *state)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001423{
Peter Zijlstrae25eea82020-04-01 16:38:19 +02001424 u8 ret_offset = insn->ret_offset;
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001425 int i;
1426
Peter Zijlstrae25eea82020-04-01 16:38:19 +02001427 if (state->cfa.base != initial_func_cfi.cfa.base || state->drap)
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001428 return true;
1429
Peter Zijlstrae25eea82020-04-01 16:38:19 +02001430 if (state->cfa.offset != initial_func_cfi.cfa.offset + ret_offset)
1431 return true;
1432
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++) {
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001437 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;
Peter Zijlstrae25eea82020-04-01 16:38:19 +02001440 }
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001441
1442 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001443}
1444
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001445static bool has_valid_stack_frame(struct insn_state *state)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001446{
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001447 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;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001455}
1456
Julien Thierry65ea47d2020-03-27 15:28:47 +00001457static int update_insn_state_regs(struct instruction *insn,
1458 struct insn_state *state,
1459 struct stack_op *op)
Josh Poimboeuf627fce12017-07-11 10:33:42 -05001460{
1461 struct cfi_reg *cfa = &state->cfa;
Josh Poimboeuf627fce12017-07-11 10:33:42 -05001462
1463 if (cfa->base != CFI_SP)
1464 return 0;
1465
1466 /* push */
Peter Zijlstraea242132019-02-25 12:50:09 +01001467 if (op->dest.type == OP_DEST_PUSH || op->dest.type == OP_DEST_PUSHF)
Josh Poimboeuf627fce12017-07-11 10:33:42 -05001468 cfa->offset += 8;
1469
1470 /* pop */
Peter Zijlstraea242132019-02-25 12:50:09 +01001471 if (op->src.type == OP_SRC_POP || op->src.type == OP_SRC_POPF)
Josh Poimboeuf627fce12017-07-11 10:33:42 -05001472 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
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001482static void save_reg(struct insn_state *state, unsigned char reg, int base,
1483 int offset)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001484{
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001485 if (arch_callee_saved_reg(reg) &&
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001486 state->regs[reg].base == CFI_UNDEFINED) {
1487 state->regs[reg].base = base;
1488 state->regs[reg].offset = offset;
1489 }
1490}
1491
1492static void restore_reg(struct insn_state *state, unsigned char reg)
1493{
Julien Thierryaff5e162020-03-27 15:28:43 +00001494 state->regs[reg].base = initial_func_cfi.regs[reg].base;
1495 state->regs[reg].offset = initial_func_cfi.regs[reg].offset;
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001496}
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 */
Julien Thierry65ea47d2020-03-27 15:28:47 +00001551static int update_insn_state(struct instruction *insn, struct insn_state *state,
1552 struct stack_op *op)
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001553{
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001554 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
Josh Poimboeuf627fce12017-07-11 10:33:42 -05001566 if (state->type == ORC_TYPE_REGS || state->type == ORC_TYPE_REGS_IRET)
Julien Thierry65ea47d2020-03-27 15:28:47 +00001567 return update_insn_state_regs(insn, state, op);
Josh Poimboeuf627fce12017-07-11 10:33:42 -05001568
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001569 switch (op->dest.type) {
1570
1571 case OP_DEST_REG:
1572 switch (op->src.type) {
1573
1574 case OP_SRC_REG:
Josh Poimboeuf0d0970e2017-09-20 16:24:32 -05001575 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) {
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001579
Josh Poimboeuf0d0970e2017-09-20 16:24:32 -05001580 /* mov %rsp, %rbp */
1581 cfa->base = op->dest.reg;
1582 state->bp_scratch = false;
1583 }
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001584
Josh Poimboeuf0d0970e2017-09-20 16:24:32 -05001585 else if (op->src.reg == CFI_SP &&
1586 op->dest.reg == CFI_BP && state->drap) {
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001587
Josh Poimboeuf0d0970e2017-09-20 16:24:32 -05001588 /* 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 }
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -05001593
Josh Poimboeuf0d0970e2017-09-20 16:24:32 -05001594 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;
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -05001608 }
1609
Josh Poimboeuf3c1f0582018-03-22 13:00:37 -05001610 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
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -05001621 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 }
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001642 }
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
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -05001663 if (op->src.reg == CFI_SP && cfa->base == CFI_SP) {
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001664
1665 /* drap: lea disp(%rsp), %drap */
1666 state->drap_reg = op->dest.reg;
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -05001667
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
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001682 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;
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001718 }
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:
Peter Zijlstraea242132019-02-25 12:50:09 +01001728 case OP_SRC_POPF:
Julien Thierrya70266b2020-03-27 15:28:39 +00001729 if (!state->drap && op->dest.reg == cfa->base) {
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001730
1731 /* pop %rbp */
1732 cfa->base = CFI_SP;
1733 }
1734
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001735 if (state->drap && cfa->base == CFI_BP_INDIRECT &&
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001736 op->dest.reg == state->drap_reg &&
1737 state->drap_offset == -state->stack_size) {
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001738
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001739 /* drap: pop %drap */
1740 cfa->base = state->drap_reg;
1741 cfa->offset = 0;
1742 state->drap_offset = -1;
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001743
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001744 } else if (regs[op->dest.reg].offset == -state->stack_size) {
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001745
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001746 /* pop %reg */
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001747 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:
1757 if (state->drap && op->src.reg == CFI_BP &&
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001758 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
1766 if (state->drap && op->src.reg == CFI_BP &&
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001767 op->src.offset == regs[op->dest.reg].offset) {
1768
1769 /* drap: mov disp(%rbp), %reg */
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001770 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:
Peter Zijlstraea242132019-02-25 12:50:09 +01001791 case OP_DEST_PUSHF:
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001792 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
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001806 /* save drap so we know when to restore it */
1807 state->drap_offset = -state->stack_size;
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001808
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 */
Josh Poimboeuf867ac9d2017-07-24 18:34:14 -05001827 if (!no_fp && insn->func && op->src.reg == CFI_BP &&
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001828 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
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001841 /* save drap offset so we know when to restore it */
1842 state->drap_offset = op->dest.offset;
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001843 }
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:
Peter Zijlstraea242132019-02-25 12:50:09 +01001882 if (op->src.type != OP_SRC_POP && op->src.type != OP_SRC_POPF) {
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001883 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
Julien Thierry65ea47d2020-03-27 15:28:47 +00001904static 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
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001940static 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
Josh Poimboeuf627fce12017-07-11 10:33:42 -05001964 } 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
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001968 } else if (state1->drap != state2->drap ||
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001969 (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)",
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001972 insn->sec, insn->offset,
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001973 state1->drap, state1->drap_reg, state1->drap_offset,
1974 state2->drap, state2->drap_reg, state2->drap_offset);
Josh Poimboeufbaa414692017-06-28 10:11:07 -05001975
1976 } else
1977 return true;
1978
1979 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001980}
1981
Peter Zijlstraea242132019-02-25 12:50:09 +01001982static inline bool func_uaccess_safe(struct symbol *func)
1983{
1984 if (func)
Josh Poimboeufe10cd8f2019-07-17 20:36:48 -05001985 return func->uaccess_safe;
Peter Zijlstraea242132019-02-25 12:50:09 +01001986
1987 return false;
1988}
1989
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -05001990static inline const char *call_dest_name(struct instruction *insn)
Peter Zijlstraea242132019-02-25 12:50:09 +01001991{
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",
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -05002002 insn->sec, insn->offset, call_dest_name(insn));
Peter Zijlstraea242132019-02-25 12:50:09 +01002003 return 1;
2004 }
2005
Peter Zijlstra2f0f9e92019-02-25 11:10:55 +01002006 if (state->df) {
2007 WARN_FUNC("call to %s() with DF set",
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -05002008 insn->sec, insn->offset, call_dest_name(insn));
Peter Zijlstra2f0f9e92019-02-25 11:10:55 +01002009 return 1;
2010 }
2011
Peter Zijlstraea242132019-02-25 12:50:09 +01002012 return 0;
2013}
2014
Peter Zijlstra54262aa2019-03-06 12:58:15 +01002015static int validate_sibling_call(struct instruction *insn, struct insn_state *state)
2016{
Peter Zijlstrae25eea82020-04-01 16:38:19 +02002017 if (has_modified_stack_frame(insn, state)) {
Peter Zijlstra54262aa2019-03-06 12:58:15 +01002018 WARN_FUNC("sibling call from callable instruction with modified stack frame",
2019 insn->sec, insn->offset);
2020 return 1;
2021 }
2022
Peter Zijlstraea242132019-02-25 12:50:09 +01002023 return validate_call(insn, state);
Peter Zijlstra54262aa2019-03-06 12:58:15 +01002024}
2025
Peter Zijlstraa92e92d2020-03-10 18:07:44 +01002026static 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
Peter Zijlstrae25eea82020-04-01 16:38:19 +02002046 if (func && has_modified_stack_frame(insn, state)) {
Peter Zijlstraa92e92d2020-03-10 18:07:44 +01002047 WARN_FUNC("return with modified stack frame",
2048 insn->sec, insn->offset);
2049 return 1;
2050 }
2051
2052 if (state->bp_scratch) {
Josh Poimboeufb2966952020-04-01 13:23:29 -05002053 WARN_FUNC("BP used as a scratch register",
2054 insn->sec, insn->offset);
Peter Zijlstraa92e92d2020-03-10 18:07:44 +01002055 return 1;
2056 }
2057
2058 return 0;
2059}
2060
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002061/*
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 */
Josh Poimboeufc705cec2019-07-17 20:36:47 -05002067static int validate_branch(struct objtool_file *file, struct symbol *func,
Peter Zijlstrab7460462020-04-02 10:15:51 +02002068 struct instruction *insn, struct insn_state state)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002069{
2070 struct alternative *alt;
Peter Zijlstrab7460462020-04-02 10:15:51 +02002071 struct instruction *next_insn;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002072 struct section *sec;
Peter Zijlstra882a0db2019-07-24 17:47:26 -05002073 u8 visited;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002074 int ret;
2075
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002076 sec = insn->sec;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002077
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);
Josh Poimboeuf12b25722017-08-10 16:37:25 -05002081 return 1;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002082 }
2083
2084 while (1) {
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002085 next_insn = next_insn_same_sec(file, insn);
2086
Josh Poimboeuf13810432018-05-09 22:39:15 -05002087 if (file->c_file && func && insn->func && func != insn->func->pfunc) {
Josh Poimboeufee976382017-08-11 12:24:15 -05002088 WARN("%s() falls through to next function %s()",
2089 func->name, insn->func->name);
2090 return 1;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002091 }
2092
Josh Poimboeuf48550222017-07-07 09:19:42 -05002093 if (func && insn->ignore) {
2094 WARN_FUNC("BUG: why am I validating an ignored function?",
2095 sec, insn->offset);
Josh Poimboeuf12b25722017-08-10 16:37:25 -05002096 return 1;
Josh Poimboeuf48550222017-07-07 09:19:42 -05002097 }
2098
Peter Zijlstra882a0db2019-07-24 17:47:26 -05002099 visited = 1 << state.uaccess;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002100 if (insn->visited) {
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002101 if (!insn->hint && !insn_state_match(insn, &state))
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002102 return 1;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002103
Peter Zijlstra882a0db2019-07-24 17:47:26 -05002104 if (insn->visited & visited)
Peter Zijlstraea242132019-02-25 12:50:09 +01002105 return 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002106 }
2107
Peter Zijlstrac536ed22020-04-01 16:54:26 +02002108 if (insn->hint)
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002109 state = insn->state;
Peter Zijlstrac536ed22020-04-01 16:54:26 +02002110 else
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002111 insn->state = state;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002112
Peter Zijlstra882a0db2019-07-24 17:47:26 -05002113 insn->visited |= visited;
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002114
Josh Poimboeufa845c7c2018-01-29 22:00:39 -06002115 if (!insn->ignore_alts) {
Peter Zijlstra764eef42019-03-01 11:19:03 +01002116 bool skip_orig = false;
2117
Josh Poimboeufa845c7c2018-01-29 22:00:39 -06002118 list_for_each_entry(alt, &insn->alts, list) {
Peter Zijlstra764eef42019-03-01 11:19:03 +01002119 if (alt->skip_orig)
2120 skip_orig = true;
2121
Josh Poimboeufc705cec2019-07-17 20:36:47 -05002122 ret = validate_branch(file, func, alt->insn, state);
Peter Zijlstra7697eee2019-03-01 11:15:49 +01002123 if (ret) {
2124 if (backtrace)
2125 BT_FUNC("(alt)", insn);
2126 return ret;
2127 }
Josh Poimboeufa845c7c2018-01-29 22:00:39 -06002128 }
Peter Zijlstra764eef42019-03-01 11:19:03 +01002129
2130 if (skip_orig)
2131 return 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002132 }
2133
2134 switch (insn->type) {
2135
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002136 case INSN_RETURN:
Peter Zijlstraa92e92d2020-03-10 18:07:44 +01002137 return validate_return(func, insn, &state);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002138
2139 case INSN_CALL:
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002140 case INSN_CALL_DYNAMIC:
Peter Zijlstraea242132019-02-25 12:50:09 +01002141 ret = validate_call(insn, &state);
2142 if (ret)
2143 return ret;
2144
Josh Poimboeufc9bab222019-07-17 20:36:51 -05002145 if (!no_fp && func && !is_fentry_call(insn) &&
2146 !has_valid_stack_frame(&state)) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002147 WARN_FUNC("call without frame pointer save/setup",
2148 sec, insn->offset);
2149 return 1;
2150 }
Josh Poimboeufc9bab222019-07-17 20:36:51 -05002151
2152 if (dead_end_function(file, insn->call_dest))
2153 return 0;
2154
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002155 break;
2156
2157 case INSN_JUMP_CONDITIONAL:
2158 case INSN_JUMP_UNCONDITIONAL:
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -05002159 if (func && is_sibling_call(insn)) {
Peter Zijlstra54262aa2019-03-06 12:58:15 +01002160 ret = validate_sibling_call(insn, &state);
2161 if (ret)
2162 return ret;
2163
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -05002164 } else if (insn->jump_dest) {
Josh Poimboeufc705cec2019-07-17 20:36:47 -05002165 ret = validate_branch(file, func,
2166 insn->jump_dest, state);
Peter Zijlstra7697eee2019-03-01 11:15:49 +01002167 if (ret) {
2168 if (backtrace)
2169 BT_FUNC("(branch)", insn);
2170 return ret;
2171 }
Josh Poimboeuf48550222017-07-07 09:19:42 -05002172 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002173
2174 if (insn->type == INSN_JUMP_UNCONDITIONAL)
2175 return 0;
2176
2177 break;
2178
2179 case INSN_JUMP_DYNAMIC:
Josh Poimboeufb68b9902019-07-17 20:36:57 -05002180 case INSN_JUMP_DYNAMIC_CONDITIONAL:
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -05002181 if (func && is_sibling_call(insn)) {
Peter Zijlstra54262aa2019-03-06 12:58:15 +01002182 ret = validate_sibling_call(insn, &state);
2183 if (ret)
2184 return ret;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002185 }
2186
Josh Poimboeufb68b9902019-07-17 20:36:57 -05002187 if (insn->type == INSN_JUMP_DYNAMIC)
2188 return 0;
2189
2190 break;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002191
Peter Zijlstrab7460462020-04-02 10:15:51 +02002192 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
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002206 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
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002214 case INSN_STACK:
Julien Thierry65ea47d2020-03-27 15:28:47 +00002215 if (handle_insn_ops(insn, &state))
Josh Poimboeuf12b25722017-08-10 16:37:25 -05002216 return 1;
Peter Zijlstraea242132019-02-25 12:50:09 +01002217 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:
Josh Poimboeufc705cec2019-07-17 20:36:47 -05002229 if (!state.uaccess && func) {
Peter Zijlstraea242132019-02-25 12:50:09 +01002230 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;
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002240 break;
2241
Peter Zijlstra2f0f9e92019-02-25 11:10:55 +01002242 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:
Josh Poimboeufc705cec2019-07-17 20:36:47 -05002250 if (!state.df && func)
Peter Zijlstra2f0f9e92019-02-25 11:10:55 +01002251 WARN_FUNC("redundant CLD", sec, insn->offset);
2252
2253 state.df = false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002254 break;
2255
2256 default:
2257 break;
2258 }
2259
2260 if (insn->dead_end)
2261 return 0;
2262
Josh Poimboeuf00d961802017-09-18 21:43:30 -05002263 if (!next_insn) {
2264 if (state.cfa.base == CFI_UNDEFINED)
2265 return 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002266 WARN("%s: unexpected end of section", sec->name);
2267 return 1;
2268 }
Josh Poimboeuf00d961802017-09-18 21:43:30 -05002269
2270 insn = next_insn;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002271 }
2272
2273 return 0;
2274}
2275
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002276static 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) {
Josh Poimboeufc705cec2019-07-17 20:36:47 -05002289 ret = validate_branch(file, insn->func, insn, state);
Peter Zijlstra7697eee2019-03-01 11:15:49 +01002290 if (ret && backtrace)
2291 BT_FUNC("<=== (hint)", insn);
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002292 warnings += ret;
2293 }
2294 }
2295
2296 return warnings;
2297}
2298
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01002299static 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
Peter Zijlstraca41b972018-01-31 10:18:28 +01002312 /*
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
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01002321 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
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002331static 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
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002344static bool ignore_unreachable_insn(struct instruction *insn)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002345{
2346 int i;
2347
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002348 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.
Josh Poimboeuf0e2bb2b2017-07-27 15:56:54 -05002354 *
2355 * Also ignore alternative replacement instructions. This can happen
2356 * when a whitelisted function uses one of the ALTERNATIVE macros.
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002357 */
Josh Poimboeuf0e2bb2b2017-07-27 15:56:54 -05002358 if (!strcmp(insn->sec->name, ".fixup") ||
2359 !strcmp(insn->sec->name, ".altinstr_replacement") ||
2360 !strcmp(insn->sec->name, ".altinstr_aux"))
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002361 return true;
2362
Josh Poimboeufbd841d62020-04-01 13:23:25 -05002363 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
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002378 /*
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
Josh Poimboeuffe24e272018-02-08 17:09:25 -06002389 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;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002397 }
2398
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002399 if (insn->offset + insn->len >= insn->func->offset + insn->func->len)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002400 break;
Josh Poimboeuffe24e272018-02-08 17:09:25 -06002401
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002402 insn = list_next_entry(insn, list);
2403 }
2404
2405 return false;
2406}
2407
Peter Zijlstra350994b2020-03-23 20:57:13 +01002408static int validate_section(struct objtool_file *file, struct section *sec)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002409{
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002410 struct symbol *func;
2411 struct instruction *insn;
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002412 struct insn_state state;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002413 int ret, warnings = 0;
2414
Peter Zijlstra350994b2020-03-23 20:57:13 +01002415 list_for_each_entry(func, &sec->symbol_list, list) {
2416 if (func->type != STT_FUNC)
2417 continue;
Josh Poimboeufe10cd8f2019-07-17 20:36:48 -05002418
Peter Zijlstra350994b2020-03-23 20:57:13 +01002419 if (!func->len) {
2420 WARN("%s() is missing an ELF size annotation",
2421 func->name);
2422 warnings++;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002423 }
Peter Zijlstra350994b2020-03-23 20:57:13 +01002424
2425 if (func->pfunc != func || func->alias != func)
2426 continue;
2427
2428 insn = find_insn(file, sec, func->offset);
2429 if (!insn || insn->ignore || insn->visited)
2430 continue;
2431
Julien Thierry0699e552020-03-27 15:28:40 +00002432 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
Peter Zijlstra350994b2020-03-23 20:57:13 +01002438 state.uaccess = func->uaccess_safe;
2439
2440 ret = validate_branch(file, func, insn, state);
2441 if (ret && backtrace)
2442 BT_FUNC("<=== (func)", insn);
2443 warnings += ret;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002444 }
2445
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002446 return warnings;
2447}
2448
Peter Zijlstra350994b2020-03-23 20:57:13 +01002449static 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
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002460static int validate_reachable_instructions(struct objtool_file *file)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002461{
2462 struct instruction *insn;
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002463
2464 if (file->ignore_unreachables)
2465 return 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002466
2467 for_each_insn(file, insn) {
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002468 if (insn->visited || ignore_unreachable_insn(insn))
2469 continue;
2470
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002471 WARN_FUNC("unreachable instruction", insn->sec, insn->offset);
2472 return 1;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002473 }
2474
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002475 return 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002476}
2477
Josh Poimboeuf0c671812019-03-18 19:09:38 -05002478static struct objtool_file file;
2479
Peter Zijlstra43a45252018-01-16 17:16:32 +01002480int check(const char *_objname, bool orc)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002481{
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002482 int ret, warnings = 0;
2483
2484 objname = _objname;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002485
Michael Forney8e144792019-07-10 16:20:11 -05002486 file.elf = elf_read(objname, orc ? O_RDWR : O_RDONLY);
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002487 if (!file.elf)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002488 return 1;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002489
2490 INIT_LIST_HEAD(&file.insn_list);
2491 hash_init(file.insn_hash);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002492 file.c_file = find_section_by_name(file.elf, ".comment");
Josh Poimboeuf867ac9d2017-07-24 18:34:14 -05002493 file.ignore_unreachables = no_unreachable;
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002494 file.hints = false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002495
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002496 arch_initial_func_cfi_state(&initial_func_cfi);
2497
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002498 ret = decode_sections(&file);
2499 if (ret < 0)
2500 goto out;
2501 warnings += ret;
2502
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002503 if (list_empty(&file.insn_list))
2504 goto out;
2505
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01002506 if (retpoline) {
2507 ret = validate_retpoline(&file);
2508 if (ret < 0)
2509 return ret;
2510 warnings += ret;
2511 }
2512
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002513 ret = validate_functions(&file);
2514 if (ret < 0)
2515 goto out;
2516 warnings += ret;
2517
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002518 ret = validate_unwind_hints(&file);
2519 if (ret < 0)
2520 goto out;
2521 warnings += ret;
2522
Josh Poimboeufbaa414692017-06-28 10:11:07 -05002523 if (!warnings) {
2524 ret = validate_reachable_instructions(&file);
2525 if (ret < 0)
2526 goto out;
2527 warnings += ret;
2528 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002529
Josh Poimboeuf627fce12017-07-11 10:33:42 -05002530 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
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002544out:
Josh Poimboeuf644592d2020-02-10 12:32:38 -06002545 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
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002554 return 0;
2555}