blob: 12b8f0f01176b76e5c993beaa36ff7af1e568c45 [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
Vasily Gorbik77860322020-11-13 00:03:32 +01009#include <arch/elf.h>
10#include <objtool/builtin.h>
11#include <objtool/cfi.h>
12#include <objtool/arch.h>
13#include <objtool/check.h>
14#include <objtool/special.h>
15#include <objtool/warn.h>
16#include <objtool/endianness.h>
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050017
Julien Thierryee819ae2020-09-04 16:30:27 +010018#include <linux/objtool.h>
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050019#include <linux/hashtable.h>
20#include <linux/kernel.h>
Josh Poimboeuf1e7e4782020-08-18 15:57:45 +020021#include <linux/static_call_types.h>
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050022
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
Peter Zijlstraa3608f52020-03-25 15:34:50 +010029struct cfi_init_state initial_func_cfi;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050030
Josh Poimboeuf627fce12017-07-11 10:33:42 -050031struct instruction *find_insn(struct objtool_file *file,
32 struct section *sec, unsigned long offset)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050033{
34 struct instruction *insn;
35
Peter Zijlstra87ecb582020-03-16 15:47:27 +010036 hash_for_each_possible(file->insn_hash, insn, hash, sec_offset_hash(sec, offset)) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050037 if (insn->sec == sec && insn->offset == offset)
38 return insn;
Peter Zijlstra87ecb582020-03-16 15:47:27 +010039 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050040
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 Poimboeufbaa41462017-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
Josh Poimboeuf1119d262020-04-28 16:45:16 -050075static struct instruction *prev_insn_same_sym(struct objtool_file *file,
76 struct instruction *insn)
77{
78 struct instruction *prev = list_prev_entry(insn, list);
79
80 if (&prev->list != &file->insn_list && prev->func == insn->func)
81 return prev;
82
83 return NULL;
84}
85
Peter Zijlstraf0f70ad2020-03-10 18:27:24 +010086#define func_for_each_insn(file, func, insn) \
Josh Poimboeuf13810432018-05-09 22:39:15 -050087 for (insn = find_insn(file, func->sec, func->offset); \
88 insn; \
89 insn = next_insn_same_func(file, insn))
90
Peter Zijlstradbf4aeb2020-03-10 18:24:59 +010091#define sym_for_each_insn(file, sym, insn) \
92 for (insn = find_insn(file, sym->sec, sym->offset); \
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050093 insn && &insn->list != &file->insn_list && \
Peter Zijlstradbf4aeb2020-03-10 18:24:59 +010094 insn->sec == sym->sec && \
95 insn->offset < sym->offset + sym->len; \
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050096 insn = list_next_entry(insn, list))
97
Peter Zijlstradbf4aeb2020-03-10 18:24:59 +010098#define sym_for_each_insn_continue_reverse(file, sym, insn) \
Josh Poimboeufdcc914f2017-06-28 10:11:05 -050099 for (insn = list_prev_entry(insn, list); \
100 &insn->list != &file->insn_list && \
Peter Zijlstradbf4aeb2020-03-10 18:24:59 +0100101 insn->sec == sym->sec && insn->offset >= sym->offset; \
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500102 insn = list_prev_entry(insn, list))
103
104#define sec_for_each_insn_from(file, insn) \
105 for (; insn; insn = next_insn_same_sec(file, insn))
106
Josh Poimboeufbaa41462017-06-28 10:11:07 -0500107#define sec_for_each_insn_continue(file, insn) \
108 for (insn = next_insn_same_sec(file, insn); insn; \
109 insn = next_insn_same_sec(file, insn))
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500110
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -0500111static bool is_sibling_call(struct instruction *insn)
112{
Josh Poimboeufecf11ba2021-01-21 15:29:22 -0600113 /*
114 * Assume only ELF functions can make sibling calls. This ensures
115 * sibling call detection consistency between vmlinux.o and individual
116 * objects.
117 */
118 if (!insn->func)
119 return false;
120
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -0500121 /* An indirect jump is either a sibling call or a jump to a table. */
122 if (insn->type == INSN_JUMP_DYNAMIC)
123 return list_empty(&insn->alts);
124
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -0500125 /* add_jump_destinations() sets insn->call_dest for sibling calls. */
Josh Poimboeufecf11ba2021-01-21 15:29:22 -0600126 return (is_static_jump(insn) && insn->call_dest);
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -0500127}
128
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500129/*
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500130 * This checks to see if the given function is a "noreturn" function.
131 *
132 * For global functions which are outside the scope of this object file, we
133 * have to keep a manual list of them.
134 *
135 * For local functions, we have to detect them manually by simply looking for
136 * the lack of a return instruction.
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500137 */
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500138static bool __dead_end_function(struct objtool_file *file, struct symbol *func,
139 int recursion)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500140{
141 int i;
142 struct instruction *insn;
143 bool empty = true;
144
145 /*
146 * Unfortunately these have to be hard coded because the noreturn
147 * attribute isn't provided in ELF data.
148 */
149 static const char * const global_noreturns[] = {
150 "__stack_chk_fail",
151 "panic",
152 "do_exit",
153 "do_task_dead",
154 "__module_put_and_exit",
155 "complete_and_exit",
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500156 "__reiserfs_panic",
157 "lbug_with_loc",
158 "fortify_panic",
Kees Cookb394d462018-01-10 14:22:38 -0800159 "usercopy_abort",
Josh Poimboeuf684fb242018-06-19 10:47:50 -0500160 "machine_real_restart",
Josh Poimboeuf4fa5ecd2019-04-04 12:17:35 -0500161 "rewind_stack_do_exit",
Brendan Higgins33adf802019-09-23 02:02:38 -0700162 "kunit_try_catch_throw",
Josh Poimboeufc26acfb2021-01-21 15:29:25 -0600163 "xen_start_kernel",
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500164 };
165
Josh Poimboeufc9bab222019-07-17 20:36:51 -0500166 if (!func)
167 return false;
168
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500169 if (func->bind == STB_WEAK)
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500170 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500171
172 if (func->bind == STB_GLOBAL)
173 for (i = 0; i < ARRAY_SIZE(global_noreturns); i++)
174 if (!strcmp(func->name, global_noreturns[i]))
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500175 return true;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500176
Josh Poimboeuf13810432018-05-09 22:39:15 -0500177 if (!func->len)
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500178 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500179
Josh Poimboeuf13810432018-05-09 22:39:15 -0500180 insn = find_insn(file, func->sec, func->offset);
181 if (!insn->func)
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500182 return false;
Josh Poimboeuf13810432018-05-09 22:39:15 -0500183
Peter Zijlstraf0f70ad2020-03-10 18:27:24 +0100184 func_for_each_insn(file, func, insn) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500185 empty = false;
186
187 if (insn->type == INSN_RETURN)
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500188 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500189 }
190
191 if (empty)
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500192 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500193
194 /*
195 * A function can have a sibling call instead of a return. In that
196 * case, the function's dead-end status depends on whether the target
197 * of the sibling call returns.
198 */
Peter Zijlstraf0f70ad2020-03-10 18:27:24 +0100199 func_for_each_insn(file, func, insn) {
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -0500200 if (is_sibling_call(insn)) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500201 struct instruction *dest = insn->jump_dest;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500202
203 if (!dest)
204 /* sibling call to another file */
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500205 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500206
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -0500207 /* local sibling call */
208 if (recursion == 5) {
209 /*
210 * Infinite recursion: two functions have
211 * sibling calls to each other. This is a very
212 * rare case. It means they aren't dead ends.
213 */
214 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500215 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500216
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -0500217 return __dead_end_function(file, dest->func, recursion+1);
218 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500219 }
220
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500221 return true;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500222}
223
Josh Poimboeuf8e25c9f2019-07-17 20:36:50 -0500224static bool dead_end_function(struct objtool_file *file, struct symbol *func)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500225{
226 return __dead_end_function(file, func, 0);
227}
228
Peter Zijlstrae7c02192020-03-25 14:04:45 +0100229static void init_cfi_state(struct cfi_state *cfi)
Josh Poimboeufbaa41462017-06-28 10:11:07 -0500230{
231 int i;
232
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -0500233 for (i = 0; i < CFI_NUM_REGS; i++) {
Peter Zijlstrae7c02192020-03-25 14:04:45 +0100234 cfi->regs[i].base = CFI_UNDEFINED;
235 cfi->vals[i].base = CFI_UNDEFINED;
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -0500236 }
Peter Zijlstrae7c02192020-03-25 14:04:45 +0100237 cfi->cfa.base = CFI_UNDEFINED;
238 cfi->drap_reg = CFI_UNDEFINED;
239 cfi->drap_offset = -1;
240}
241
Peter Zijlstra932f8e92020-03-23 18:26:03 +0100242static void init_insn_state(struct insn_state *state, struct section *sec)
Peter Zijlstrae7c02192020-03-25 14:04:45 +0100243{
244 memset(state, 0, sizeof(*state));
245 init_cfi_state(&state->cfi);
Peter Zijlstra932f8e92020-03-23 18:26:03 +0100246
247 /*
248 * We need the full vmlinux for noinstr validation, otherwise we can
249 * not correctly determine insn->call_dest->sec (external symbols do
250 * not have a section).
251 */
Sami Tolvanen41425eb2020-09-30 14:36:59 -0700252 if (vmlinux && noinstr && sec)
Peter Zijlstra932f8e92020-03-23 18:26:03 +0100253 state->noinstr = sec->noinstr;
Josh Poimboeufbaa41462017-06-28 10:11:07 -0500254}
255
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500256/*
257 * Call the arch-specific instruction decoder for all the instructions and add
258 * them to the global instruction list.
259 */
260static int decode_instructions(struct objtool_file *file)
261{
262 struct section *sec;
263 struct symbol *func;
264 unsigned long offset;
265 struct instruction *insn;
Peter Zijlstra1e11f3f2020-03-12 09:26:29 +0100266 unsigned long nr_insns = 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500267 int ret;
268
Josh Poimboeufbaa41462017-06-28 10:11:07 -0500269 for_each_sec(file, sec) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500270
271 if (!(sec->sh.sh_flags & SHF_EXECINSTR))
272 continue;
273
Josh Poimboeuf627fce12017-07-11 10:33:42 -0500274 if (strcmp(sec->name, ".altinstr_replacement") &&
275 strcmp(sec->name, ".altinstr_aux") &&
276 strncmp(sec->name, ".discard.", 9))
277 sec->text = true;
278
Thomas Gleixner0cc9ac8d2020-03-25 17:18:17 +0100279 if (!strcmp(sec->name, ".noinstr.text") ||
280 !strcmp(sec->name, ".entry.text"))
Peter Zijlstrac4a33932020-03-10 18:57:41 +0100281 sec->noinstr = true;
282
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500283 for (offset = 0; offset < sec->len; offset += insn->len) {
284 insn = malloc(sizeof(*insn));
Josh Poimboeufbaa41462017-06-28 10:11:07 -0500285 if (!insn) {
286 WARN("malloc failed");
287 return -1;
288 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500289 memset(insn, 0, sizeof(*insn));
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500290 INIT_LIST_HEAD(&insn->alts);
Julien Thierry65ea47d2020-03-27 15:28:47 +0000291 INIT_LIST_HEAD(&insn->stack_ops);
Peter Zijlstrae7c02192020-03-25 14:04:45 +0100292 init_cfi_state(&insn->cfi);
Josh Poimboeufbaa41462017-06-28 10:11:07 -0500293
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500294 insn->sec = sec;
295 insn->offset = offset;
296
297 ret = arch_decode_instruction(file->elf, sec, offset,
298 sec->len - offset,
299 &insn->len, &insn->type,
Josh Poimboeufbaa41462017-06-28 10:11:07 -0500300 &insn->immediate,
Julien Thierry65ea47d2020-03-27 15:28:47 +0000301 &insn->stack_ops);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500302 if (ret)
Kamalesh Babulalb7037982017-10-19 11:27:24 -0500303 goto err;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500304
Peter Zijlstra87ecb582020-03-16 15:47:27 +0100305 hash_add(file->insn_hash, &insn->hash, sec_offset_hash(sec, insn->offset));
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500306 list_add_tail(&insn->list, &file->insn_list);
Peter Zijlstra1e11f3f2020-03-12 09:26:29 +0100307 nr_insns++;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500308 }
309
310 list_for_each_entry(func, &sec->symbol_list, list) {
Josh Poimboeufe10cd8f2019-07-17 20:36:48 -0500311 if (func->type != STT_FUNC || func->alias != func)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500312 continue;
313
314 if (!find_insn(file, sec, func->offset)) {
315 WARN("%s(): can't find starting instruction",
316 func->name);
317 return -1;
318 }
319
Peter Zijlstradbf4aeb2020-03-10 18:24:59 +0100320 sym_for_each_insn(file, func, insn)
Josh Poimboeufe10cd8f2019-07-17 20:36:48 -0500321 insn->func = func;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500322 }
323 }
324
Peter Zijlstra1e11f3f2020-03-12 09:26:29 +0100325 if (stats)
326 printf("nr_insns: %lu\n", nr_insns);
327
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500328 return 0;
Kamalesh Babulalb7037982017-10-19 11:27:24 -0500329
330err:
331 free(insn);
332 return ret;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500333}
334
Sami Tolvanen6b5dd712020-04-21 15:08:43 -0700335static struct instruction *find_last_insn(struct objtool_file *file,
336 struct section *sec)
337{
338 struct instruction *insn = NULL;
339 unsigned int offset;
340 unsigned int end = (sec->len > 10) ? sec->len - 10 : 0;
341
342 for (offset = sec->len - 1; offset >= end && !insn; offset--)
343 insn = find_insn(file, sec, offset);
344
345 return insn;
346}
347
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500348/*
Josh Poimboeuf649ea4d2017-07-27 15:56:53 -0500349 * Mark "ud2" instructions and manually annotated dead ends.
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500350 */
351static int add_dead_ends(struct objtool_file *file)
352{
353 struct section *sec;
Matt Helsleyf1974222020-05-29 14:01:13 -0700354 struct reloc *reloc;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500355 struct instruction *insn;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500356
Josh Poimboeuf649ea4d2017-07-27 15:56:53 -0500357 /*
358 * By default, "ud2" is a dead end unless otherwise annotated, because
359 * GCC 7 inserts it for certain divide-by-zero cases.
360 */
361 for_each_insn(file, insn)
362 if (insn->type == INSN_BUG)
363 insn->dead_end = true;
364
365 /*
366 * Check for manually annotated dead ends.
367 */
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500368 sec = find_section_by_name(file->elf, ".rela.discard.unreachable");
369 if (!sec)
Josh Poimboeuf649ea4d2017-07-27 15:56:53 -0500370 goto reachable;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500371
Matt Helsleyf1974222020-05-29 14:01:13 -0700372 list_for_each_entry(reloc, &sec->reloc_list, list) {
373 if (reloc->sym->type != STT_SECTION) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500374 WARN("unexpected relocation symbol type in %s", sec->name);
375 return -1;
376 }
Matt Helsleyf1974222020-05-29 14:01:13 -0700377 insn = find_insn(file, reloc->sym->sec, reloc->addend);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500378 if (insn)
379 insn = list_prev_entry(insn, list);
Matt Helsleyf1974222020-05-29 14:01:13 -0700380 else if (reloc->addend == reloc->sym->sec->len) {
381 insn = find_last_insn(file, reloc->sym->sec);
Sami Tolvanen6b5dd712020-04-21 15:08:43 -0700382 if (!insn) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500383 WARN("can't find unreachable insn at %s+0x%x",
Matt Helsleyf1974222020-05-29 14:01:13 -0700384 reloc->sym->sec->name, reloc->addend);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500385 return -1;
386 }
387 } else {
388 WARN("can't find unreachable insn at %s+0x%x",
Matt Helsleyf1974222020-05-29 14:01:13 -0700389 reloc->sym->sec->name, reloc->addend);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500390 return -1;
391 }
392
393 insn->dead_end = true;
394 }
395
Josh Poimboeuf649ea4d2017-07-27 15:56:53 -0500396reachable:
397 /*
398 * These manually annotated reachable checks are needed for GCC 4.4,
399 * where the Linux unreachable() macro isn't supported. In that case
400 * GCC doesn't know the "ud2" is fatal, so it generates code as if it's
401 * not a dead end.
402 */
403 sec = find_section_by_name(file->elf, ".rela.discard.reachable");
404 if (!sec)
405 return 0;
406
Matt Helsleyf1974222020-05-29 14:01:13 -0700407 list_for_each_entry(reloc, &sec->reloc_list, list) {
408 if (reloc->sym->type != STT_SECTION) {
Josh Poimboeuf649ea4d2017-07-27 15:56:53 -0500409 WARN("unexpected relocation symbol type in %s", sec->name);
410 return -1;
411 }
Matt Helsleyf1974222020-05-29 14:01:13 -0700412 insn = find_insn(file, reloc->sym->sec, reloc->addend);
Josh Poimboeuf649ea4d2017-07-27 15:56:53 -0500413 if (insn)
414 insn = list_prev_entry(insn, list);
Matt Helsleyf1974222020-05-29 14:01:13 -0700415 else if (reloc->addend == reloc->sym->sec->len) {
416 insn = find_last_insn(file, reloc->sym->sec);
Sami Tolvanen6b5dd712020-04-21 15:08:43 -0700417 if (!insn) {
Josh Poimboeuf649ea4d2017-07-27 15:56:53 -0500418 WARN("can't find reachable insn at %s+0x%x",
Matt Helsleyf1974222020-05-29 14:01:13 -0700419 reloc->sym->sec->name, reloc->addend);
Josh Poimboeuf649ea4d2017-07-27 15:56:53 -0500420 return -1;
421 }
422 } else {
423 WARN("can't find reachable insn at %s+0x%x",
Matt Helsleyf1974222020-05-29 14:01:13 -0700424 reloc->sym->sec->name, reloc->addend);
Josh Poimboeuf649ea4d2017-07-27 15:56:53 -0500425 return -1;
426 }
427
428 insn->dead_end = false;
429 }
430
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500431 return 0;
432}
433
Josh Poimboeuf1e7e4782020-08-18 15:57:45 +0200434static int create_static_call_sections(struct objtool_file *file)
435{
436 struct section *sec, *reloc_sec;
437 struct reloc *reloc;
438 struct static_call_site *site;
439 struct instruction *insn;
440 struct symbol *key_sym;
441 char *key_name, *tmp;
442 int idx;
443
444 sec = find_section_by_name(file->elf, ".static_call_sites");
445 if (sec) {
446 INIT_LIST_HEAD(&file->static_call_list);
447 WARN("file already has .static_call_sites section, skipping");
448 return 0;
449 }
450
451 if (list_empty(&file->static_call_list))
452 return 0;
453
454 idx = 0;
455 list_for_each_entry(insn, &file->static_call_list, static_call_node)
456 idx++;
457
458 sec = elf_create_section(file->elf, ".static_call_sites", SHF_WRITE,
459 sizeof(struct static_call_site), idx);
460 if (!sec)
461 return -1;
462
463 reloc_sec = elf_create_reloc_section(file->elf, sec, SHT_RELA);
464 if (!reloc_sec)
465 return -1;
466
467 idx = 0;
468 list_for_each_entry(insn, &file->static_call_list, static_call_node) {
469
470 site = (struct static_call_site *)sec->data->d_buf + idx;
471 memset(site, 0, sizeof(struct static_call_site));
472
473 /* populate reloc for 'addr' */
474 reloc = malloc(sizeof(*reloc));
Josh Poimboeuf44f6a7c2020-12-14 16:04:20 -0600475
Josh Poimboeuf1e7e4782020-08-18 15:57:45 +0200476 if (!reloc) {
477 perror("malloc");
478 return -1;
479 }
480 memset(reloc, 0, sizeof(*reloc));
Josh Poimboeuf44f6a7c2020-12-14 16:04:20 -0600481
482 insn_to_reloc_sym_addend(insn->sec, insn->offset, reloc);
483 if (!reloc->sym) {
484 WARN_FUNC("static call tramp: missing containing symbol",
485 insn->sec, insn->offset);
486 return -1;
487 }
488
Josh Poimboeuf1e7e4782020-08-18 15:57:45 +0200489 reloc->type = R_X86_64_PC32;
490 reloc->offset = idx * sizeof(struct static_call_site);
491 reloc->sec = reloc_sec;
492 elf_add_reloc(file->elf, reloc);
493
494 /* find key symbol */
495 key_name = strdup(insn->call_dest->name);
496 if (!key_name) {
497 perror("strdup");
498 return -1;
499 }
500 if (strncmp(key_name, STATIC_CALL_TRAMP_PREFIX_STR,
501 STATIC_CALL_TRAMP_PREFIX_LEN)) {
502 WARN("static_call: trampoline name malformed: %s", key_name);
503 return -1;
504 }
505 tmp = key_name + STATIC_CALL_TRAMP_PREFIX_LEN - STATIC_CALL_KEY_PREFIX_LEN;
506 memcpy(tmp, STATIC_CALL_KEY_PREFIX_STR, STATIC_CALL_KEY_PREFIX_LEN);
507
508 key_sym = find_symbol_by_name(file->elf, tmp);
509 if (!key_sym) {
Josh Poimboeuf73f44fe2021-01-27 17:18:37 -0600510 if (!module) {
511 WARN("static_call: can't find static_call_key symbol: %s", tmp);
512 return -1;
513 }
514
515 /*
516 * For modules(), the key might not be exported, which
517 * means the module can make static calls but isn't
518 * allowed to change them.
519 *
520 * In that case we temporarily set the key to be the
521 * trampoline address. This is fixed up in
522 * static_call_add_module().
523 */
524 key_sym = insn->call_dest;
Josh Poimboeuf1e7e4782020-08-18 15:57:45 +0200525 }
526 free(key_name);
527
528 /* populate reloc for 'key' */
529 reloc = malloc(sizeof(*reloc));
530 if (!reloc) {
531 perror("malloc");
532 return -1;
533 }
534 memset(reloc, 0, sizeof(*reloc));
535 reloc->sym = key_sym;
Peter Zijlstra5b06fd32020-08-18 15:57:49 +0200536 reloc->addend = is_sibling_call(insn) ? STATIC_CALL_SITE_TAIL : 0;
Josh Poimboeuf1e7e4782020-08-18 15:57:45 +0200537 reloc->type = R_X86_64_PC32;
538 reloc->offset = idx * sizeof(struct static_call_site) + 4;
539 reloc->sec = reloc_sec;
540 elf_add_reloc(file->elf, reloc);
541
542 idx++;
543 }
544
545 if (elf_rebuild_reloc_section(file->elf, reloc_sec))
546 return -1;
547
548 return 0;
549}
550
Peter Zijlstra99d00212020-08-06 15:14:09 -0700551static int create_mcount_loc_sections(struct objtool_file *file)
552{
553 struct section *sec, *reloc_sec;
554 struct reloc *reloc;
555 unsigned long *loc;
556 struct instruction *insn;
557 int idx;
558
559 sec = find_section_by_name(file->elf, "__mcount_loc");
560 if (sec) {
561 INIT_LIST_HEAD(&file->mcount_loc_list);
562 WARN("file already has __mcount_loc section, skipping");
563 return 0;
564 }
565
566 if (list_empty(&file->mcount_loc_list))
567 return 0;
568
569 idx = 0;
570 list_for_each_entry(insn, &file->mcount_loc_list, mcount_loc_node)
571 idx++;
572
573 sec = elf_create_section(file->elf, "__mcount_loc", 0, sizeof(unsigned long), idx);
574 if (!sec)
575 return -1;
576
577 reloc_sec = elf_create_reloc_section(file->elf, sec, SHT_RELA);
578 if (!reloc_sec)
579 return -1;
580
581 idx = 0;
582 list_for_each_entry(insn, &file->mcount_loc_list, mcount_loc_node) {
583
584 loc = (unsigned long *)sec->data->d_buf + idx;
585 memset(loc, 0, sizeof(unsigned long));
586
587 reloc = malloc(sizeof(*reloc));
588 if (!reloc) {
589 perror("malloc");
590 return -1;
591 }
592 memset(reloc, 0, sizeof(*reloc));
593
Sami Tolvanen18a14572020-10-28 10:16:26 -0700594 if (insn->sec->sym) {
595 reloc->sym = insn->sec->sym;
596 reloc->addend = insn->offset;
597 } else {
598 reloc->sym = find_symbol_containing(insn->sec, insn->offset);
599
600 if (!reloc->sym) {
601 WARN("missing symbol for insn at offset 0x%lx\n",
602 insn->offset);
603 return -1;
604 }
605
606 reloc->addend = insn->offset - reloc->sym->offset;
607 }
608
Peter Zijlstra99d00212020-08-06 15:14:09 -0700609 reloc->type = R_X86_64_64;
610 reloc->offset = idx * sizeof(unsigned long);
611 reloc->sec = reloc_sec;
612 elf_add_reloc(file->elf, reloc);
613
614 idx++;
615 }
616
617 if (elf_rebuild_reloc_section(file->elf, reloc_sec))
618 return -1;
619
620 return 0;
621}
622
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500623/*
624 * Warnings shouldn't be reported for ignored functions.
625 */
626static void add_ignores(struct objtool_file *file)
627{
628 struct instruction *insn;
629 struct section *sec;
630 struct symbol *func;
Matt Helsleyf1974222020-05-29 14:01:13 -0700631 struct reloc *reloc;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500632
Peter Zijlstraaaf5c622019-02-27 14:04:13 +0100633 sec = find_section_by_name(file->elf, ".rela.discard.func_stack_frame_non_standard");
634 if (!sec)
635 return;
636
Matt Helsleyf1974222020-05-29 14:01:13 -0700637 list_for_each_entry(reloc, &sec->reloc_list, list) {
638 switch (reloc->sym->type) {
Peter Zijlstraaaf5c622019-02-27 14:04:13 +0100639 case STT_FUNC:
Matt Helsleyf1974222020-05-29 14:01:13 -0700640 func = reloc->sym;
Peter Zijlstraaaf5c622019-02-27 14:04:13 +0100641 break;
642
643 case STT_SECTION:
Matt Helsleyf1974222020-05-29 14:01:13 -0700644 func = find_func_by_offset(reloc->sym->sec, reloc->addend);
Josh Poimboeuf7acfe532020-02-17 21:41:54 -0600645 if (!func)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500646 continue;
Peter Zijlstraaaf5c622019-02-27 14:04:13 +0100647 break;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500648
Peter Zijlstraaaf5c622019-02-27 14:04:13 +0100649 default:
Matt Helsleyf1974222020-05-29 14:01:13 -0700650 WARN("unexpected relocation symbol type in %s: %d", sec->name, reloc->sym->type);
Peter Zijlstraaaf5c622019-02-27 14:04:13 +0100651 continue;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500652 }
Peter Zijlstraaaf5c622019-02-27 14:04:13 +0100653
Peter Zijlstraf0f70ad2020-03-10 18:27:24 +0100654 func_for_each_insn(file, func, insn)
Peter Zijlstraaaf5c622019-02-27 14:04:13 +0100655 insn->ignore = true;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500656 }
657}
658
659/*
Peter Zijlstraea242132019-02-25 12:50:09 +0100660 * This is a whitelist of functions that is allowed to be called with AC set.
661 * The list is meant to be minimal and only contains compiler instrumentation
662 * ABI and a few functions used to implement *_{to,from}_user() functions.
663 *
664 * These functions must not directly change AC, but may PUSHF/POPF.
665 */
666static const char *uaccess_safe_builtin[] = {
667 /* KASAN */
668 "kasan_report",
Andrey Konovalovf00748b2021-02-24 12:05:05 -0800669 "kasan_check_range",
Peter Zijlstraea242132019-02-25 12:50:09 +0100670 /* KASAN out-of-line */
671 "__asan_loadN_noabort",
672 "__asan_load1_noabort",
673 "__asan_load2_noabort",
674 "__asan_load4_noabort",
675 "__asan_load8_noabort",
676 "__asan_load16_noabort",
677 "__asan_storeN_noabort",
678 "__asan_store1_noabort",
679 "__asan_store2_noabort",
680 "__asan_store4_noabort",
681 "__asan_store8_noabort",
682 "__asan_store16_noabort",
Jann Hornb0b8e562020-09-29 00:49:16 +0200683 "__kasan_check_read",
684 "__kasan_check_write",
Peter Zijlstraea242132019-02-25 12:50:09 +0100685 /* KASAN in-line */
686 "__asan_report_load_n_noabort",
687 "__asan_report_load1_noabort",
688 "__asan_report_load2_noabort",
689 "__asan_report_load4_noabort",
690 "__asan_report_load8_noabort",
691 "__asan_report_load16_noabort",
692 "__asan_report_store_n_noabort",
693 "__asan_report_store1_noabort",
694 "__asan_report_store2_noabort",
695 "__asan_report_store4_noabort",
696 "__asan_report_store8_noabort",
697 "__asan_report_store16_noabort",
Marco Elver5f5c9712019-11-14 19:02:57 +0100698 /* KCSAN */
Marco Elver99676832020-03-25 17:41:57 +0100699 "__kcsan_check_access",
Marco Elver5f5c9712019-11-14 19:02:57 +0100700 "kcsan_found_watchpoint",
701 "kcsan_setup_watchpoint",
Marco Elver99676832020-03-25 17:41:57 +0100702 "kcsan_check_scoped_accesses",
Marco Elver50a19ad2020-04-24 17:47:30 +0200703 "kcsan_disable_current",
704 "kcsan_enable_current_nowarn",
Marco Elver5f5c9712019-11-14 19:02:57 +0100705 /* KCSAN/TSAN */
706 "__tsan_func_entry",
707 "__tsan_func_exit",
708 "__tsan_read_range",
709 "__tsan_write_range",
710 "__tsan_read1",
711 "__tsan_read2",
712 "__tsan_read4",
713 "__tsan_read8",
714 "__tsan_read16",
715 "__tsan_write1",
716 "__tsan_write2",
717 "__tsan_write4",
718 "__tsan_write8",
719 "__tsan_write16",
Marco Elvera81b3752020-07-24 09:00:02 +0200720 "__tsan_read_write1",
721 "__tsan_read_write2",
722 "__tsan_read_write4",
723 "__tsan_read_write8",
724 "__tsan_read_write16",
Marco Elver883957b2020-07-03 15:40:30 +0200725 "__tsan_atomic8_load",
726 "__tsan_atomic16_load",
727 "__tsan_atomic32_load",
728 "__tsan_atomic64_load",
729 "__tsan_atomic8_store",
730 "__tsan_atomic16_store",
731 "__tsan_atomic32_store",
732 "__tsan_atomic64_store",
733 "__tsan_atomic8_exchange",
734 "__tsan_atomic16_exchange",
735 "__tsan_atomic32_exchange",
736 "__tsan_atomic64_exchange",
737 "__tsan_atomic8_fetch_add",
738 "__tsan_atomic16_fetch_add",
739 "__tsan_atomic32_fetch_add",
740 "__tsan_atomic64_fetch_add",
741 "__tsan_atomic8_fetch_sub",
742 "__tsan_atomic16_fetch_sub",
743 "__tsan_atomic32_fetch_sub",
744 "__tsan_atomic64_fetch_sub",
745 "__tsan_atomic8_fetch_and",
746 "__tsan_atomic16_fetch_and",
747 "__tsan_atomic32_fetch_and",
748 "__tsan_atomic64_fetch_and",
749 "__tsan_atomic8_fetch_or",
750 "__tsan_atomic16_fetch_or",
751 "__tsan_atomic32_fetch_or",
752 "__tsan_atomic64_fetch_or",
753 "__tsan_atomic8_fetch_xor",
754 "__tsan_atomic16_fetch_xor",
755 "__tsan_atomic32_fetch_xor",
756 "__tsan_atomic64_fetch_xor",
757 "__tsan_atomic8_fetch_nand",
758 "__tsan_atomic16_fetch_nand",
759 "__tsan_atomic32_fetch_nand",
760 "__tsan_atomic64_fetch_nand",
761 "__tsan_atomic8_compare_exchange_strong",
762 "__tsan_atomic16_compare_exchange_strong",
763 "__tsan_atomic32_compare_exchange_strong",
764 "__tsan_atomic64_compare_exchange_strong",
765 "__tsan_atomic8_compare_exchange_weak",
766 "__tsan_atomic16_compare_exchange_weak",
767 "__tsan_atomic32_compare_exchange_weak",
768 "__tsan_atomic64_compare_exchange_weak",
769 "__tsan_atomic8_compare_exchange_val",
770 "__tsan_atomic16_compare_exchange_val",
771 "__tsan_atomic32_compare_exchange_val",
772 "__tsan_atomic64_compare_exchange_val",
773 "__tsan_atomic_thread_fence",
774 "__tsan_atomic_signal_fence",
Peter Zijlstraea242132019-02-25 12:50:09 +0100775 /* KCOV */
776 "write_comp_data",
Josh Poimboeufae033f02020-04-29 14:09:04 -0500777 "check_kcov_mode",
Peter Zijlstraea242132019-02-25 12:50:09 +0100778 "__sanitizer_cov_trace_pc",
779 "__sanitizer_cov_trace_const_cmp1",
780 "__sanitizer_cov_trace_const_cmp2",
781 "__sanitizer_cov_trace_const_cmp4",
782 "__sanitizer_cov_trace_const_cmp8",
783 "__sanitizer_cov_trace_cmp1",
784 "__sanitizer_cov_trace_cmp2",
785 "__sanitizer_cov_trace_cmp4",
786 "__sanitizer_cov_trace_cmp8",
Al Viro36b1c702020-02-16 13:07:49 -0500787 "__sanitizer_cov_trace_switch",
Peter Zijlstraea242132019-02-25 12:50:09 +0100788 /* UBSAN */
789 "ubsan_type_mismatch_common",
790 "__ubsan_handle_type_mismatch",
791 "__ubsan_handle_type_mismatch_v1",
Peter Zijlstra9a50dca2019-10-21 15:11:49 +0200792 "__ubsan_handle_shift_out_of_bounds",
Peter Zijlstraea242132019-02-25 12:50:09 +0100793 /* misc */
794 "csum_partial_copy_generic",
Dan Williamsec6347b2020-10-05 20:40:16 -0700795 "copy_mc_fragile",
796 "copy_mc_fragile_handle_tail",
Dan Williams5da8e4a2020-10-05 20:40:25 -0700797 "copy_mc_enhanced_fast_string",
Peter Zijlstraea242132019-02-25 12:50:09 +0100798 "ftrace_likely_update", /* CONFIG_TRACE_BRANCH_PROFILING */
799 NULL
800};
801
802static void add_uaccess_safe(struct objtool_file *file)
803{
804 struct symbol *func;
805 const char **name;
806
807 if (!uaccess)
808 return;
809
810 for (name = uaccess_safe_builtin; *name; name++) {
811 func = find_symbol_by_name(file->elf, *name);
812 if (!func)
813 continue;
814
Josh Poimboeufe10cd8f2019-07-17 20:36:48 -0500815 func->uaccess_safe = true;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500816 }
817}
818
819/*
Josh Poimboeuf258c7602018-01-11 21:46:24 +0000820 * FIXME: For now, just ignore any alternatives which add retpolines. This is
821 * a temporary hack, as it doesn't allow ORC to unwind from inside a retpoline.
822 * But it at least allows objtool to understand the control flow *around* the
823 * retpoline.
824 */
Peter Zijlstraff05ab22019-03-18 14:33:07 +0100825static int add_ignore_alternatives(struct objtool_file *file)
Josh Poimboeuf258c7602018-01-11 21:46:24 +0000826{
827 struct section *sec;
Matt Helsleyf1974222020-05-29 14:01:13 -0700828 struct reloc *reloc;
Josh Poimboeuf258c7602018-01-11 21:46:24 +0000829 struct instruction *insn;
830
Peter Zijlstraff05ab22019-03-18 14:33:07 +0100831 sec = find_section_by_name(file->elf, ".rela.discard.ignore_alts");
Josh Poimboeuf258c7602018-01-11 21:46:24 +0000832 if (!sec)
833 return 0;
834
Matt Helsleyf1974222020-05-29 14:01:13 -0700835 list_for_each_entry(reloc, &sec->reloc_list, list) {
836 if (reloc->sym->type != STT_SECTION) {
Josh Poimboeuf258c7602018-01-11 21:46:24 +0000837 WARN("unexpected relocation symbol type in %s", sec->name);
838 return -1;
839 }
840
Matt Helsleyf1974222020-05-29 14:01:13 -0700841 insn = find_insn(file, reloc->sym->sec, reloc->addend);
Josh Poimboeuf258c7602018-01-11 21:46:24 +0000842 if (!insn) {
Peter Zijlstraff05ab22019-03-18 14:33:07 +0100843 WARN("bad .discard.ignore_alts entry");
Josh Poimboeuf258c7602018-01-11 21:46:24 +0000844 return -1;
845 }
846
847 insn->ignore_alts = true;
848 }
849
850 return 0;
851}
852
853/*
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500854 * Find the destination instructions for all jumps.
855 */
856static int add_jump_destinations(struct objtool_file *file)
857{
858 struct instruction *insn;
Matt Helsleyf1974222020-05-29 14:01:13 -0700859 struct reloc *reloc;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500860 struct section *dest_sec;
861 unsigned long dest_off;
862
863 for_each_insn(file, insn) {
Josh Poimboeufa2296142020-02-10 12:32:39 -0600864 if (!is_static_jump(insn))
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500865 continue;
866
Matt Helsleyf1974222020-05-29 14:01:13 -0700867 reloc = find_reloc_by_dest_range(file->elf, insn->sec,
Josh Poimboeufecf11ba2021-01-21 15:29:22 -0600868 insn->offset, insn->len);
Matt Helsleyf1974222020-05-29 14:01:13 -0700869 if (!reloc) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500870 dest_sec = insn->sec;
Raphael Gaultbfb08f22020-03-27 15:28:45 +0000871 dest_off = arch_jump_destination(insn);
Matt Helsleyf1974222020-05-29 14:01:13 -0700872 } else if (reloc->sym->type == STT_SECTION) {
873 dest_sec = reloc->sym->sec;
874 dest_off = arch_dest_reloc_offset(reloc->addend);
Josh Poimboeuf1f9a1b72021-01-21 15:29:18 -0600875 } else if (!strncmp(reloc->sym->name, "__x86_indirect_thunk_", 21) ||
876 !strncmp(reloc->sym->name, "__x86_retpoline_", 16)) {
Josh Poimboeuf39b73532018-01-11 21:46:23 +0000877 /*
878 * Retpoline jumps are really dynamic jumps in
879 * disguise, so convert them accordingly.
880 */
Josh Poimboeufb68b9902019-07-17 20:36:57 -0500881 if (insn->type == INSN_JUMP_UNCONDITIONAL)
882 insn->type = INSN_JUMP_DYNAMIC;
883 else
884 insn->type = INSN_JUMP_DYNAMIC_CONDITIONAL;
885
Peter Zijlstrab5bc2232018-01-16 10:24:06 +0100886 insn->retpoline_safe = true;
Josh Poimboeuf39b73532018-01-11 21:46:23 +0000887 continue;
Josh Poimboeufecf11ba2021-01-21 15:29:22 -0600888 } else if (insn->func) {
889 /* internal or external sibling call (with reloc) */
Matt Helsleyf1974222020-05-29 14:01:13 -0700890 insn->call_dest = reloc->sym;
Peter Zijlstra5b06fd32020-08-18 15:57:49 +0200891 if (insn->call_dest->static_call_tramp) {
892 list_add_tail(&insn->static_call_node,
893 &file->static_call_list);
894 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500895 continue;
Josh Poimboeufecf11ba2021-01-21 15:29:22 -0600896 } else if (reloc->sym->sec->idx) {
897 dest_sec = reloc->sym->sec;
898 dest_off = reloc->sym->sym.st_value +
899 arch_dest_reloc_offset(reloc->addend);
900 } else {
901 /* non-func asm code jumping to another file */
902 continue;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500903 }
904
905 insn->jump_dest = find_insn(file, dest_sec, dest_off);
906 if (!insn->jump_dest) {
907
908 /*
909 * This is a special case where an alt instruction
910 * jumps past the end of the section. These are
911 * handled later in handle_group_alt().
912 */
913 if (!strcmp(insn->sec->name, ".altinstr_replacement"))
914 continue;
915
916 WARN_FUNC("can't find jump dest instruction at %s+0x%lx",
917 insn->sec, insn->offset, dest_sec->name,
918 dest_off);
919 return -1;
920 }
Josh Poimboeufcd778492018-06-01 07:23:51 -0500921
922 /*
Peter Zijlstra54262aa2019-03-06 12:58:15 +0100923 * Cross-function jump.
Josh Poimboeufcd778492018-06-01 07:23:51 -0500924 */
925 if (insn->func && insn->jump_dest->func &&
Peter Zijlstra54262aa2019-03-06 12:58:15 +0100926 insn->func != insn->jump_dest->func) {
927
928 /*
929 * For GCC 8+, create parent/child links for any cold
930 * subfunctions. This is _mostly_ redundant with a
931 * similar initialization in read_symbols().
932 *
933 * If a function has aliases, we want the *first* such
934 * function in the symbol table to be the subfunction's
935 * parent. In that case we overwrite the
936 * initialization done in read_symbols().
937 *
938 * However this code can't completely replace the
939 * read_symbols() code because this doesn't detect the
940 * case where the parent function's only reference to a
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -0500941 * subfunction is through a jump table.
Peter Zijlstra54262aa2019-03-06 12:58:15 +0100942 */
Josh Poimboeuf34ca59e2021-01-21 15:29:19 -0600943 if (!strstr(insn->func->name, ".cold") &&
944 strstr(insn->jump_dest->func->name, ".cold")) {
Peter Zijlstra54262aa2019-03-06 12:58:15 +0100945 insn->func->cfunc = insn->jump_dest->func;
946 insn->jump_dest->func->pfunc = insn->func;
947
948 } else if (insn->jump_dest->func->pfunc != insn->func->pfunc &&
949 insn->jump_dest->offset == insn->jump_dest->func->offset) {
950
Josh Poimboeufecf11ba2021-01-21 15:29:22 -0600951 /* internal sibling call (without reloc) */
Peter Zijlstra54262aa2019-03-06 12:58:15 +0100952 insn->call_dest = insn->jump_dest->func;
Peter Zijlstra5b06fd32020-08-18 15:57:49 +0200953 if (insn->call_dest->static_call_tramp) {
954 list_add_tail(&insn->static_call_node,
955 &file->static_call_list);
956 }
Peter Zijlstra54262aa2019-03-06 12:58:15 +0100957 }
Josh Poimboeufcd778492018-06-01 07:23:51 -0500958 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500959 }
960
961 return 0;
962}
963
Alexandre Chartre8aa8eb22020-04-14 12:36:12 +0200964static void remove_insn_ops(struct instruction *insn)
965{
966 struct stack_op *op, *tmp;
967
968 list_for_each_entry_safe(op, tmp, &insn->stack_ops, list) {
969 list_del(&op->list);
970 free(op);
971 }
972}
973
Julien Thierry2b232a22020-09-15 08:53:18 +0100974static struct symbol *find_call_destination(struct section *sec, unsigned long offset)
975{
976 struct symbol *call_dest;
977
978 call_dest = find_func_by_offset(sec, offset);
979 if (!call_dest)
980 call_dest = find_symbol_by_offset(sec, offset);
981
982 return call_dest;
983}
984
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500985/*
986 * Find the destination instructions for all calls.
987 */
988static int add_call_destinations(struct objtool_file *file)
989{
990 struct instruction *insn;
991 unsigned long dest_off;
Matt Helsleyf1974222020-05-29 14:01:13 -0700992 struct reloc *reloc;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -0500993
994 for_each_insn(file, insn) {
995 if (insn->type != INSN_CALL)
996 continue;
997
Matt Helsleyf1974222020-05-29 14:01:13 -0700998 reloc = find_reloc_by_dest_range(file->elf, insn->sec,
Peter Zijlstra8b5fa6b2020-03-12 11:23:36 +0100999 insn->offset, insn->len);
Matt Helsleyf1974222020-05-29 14:01:13 -07001000 if (!reloc) {
Raphael Gaultbfb08f22020-03-27 15:28:45 +00001001 dest_off = arch_jump_destination(insn);
Julien Thierry2b232a22020-09-15 08:53:18 +01001002 insn->call_dest = find_call_destination(insn->sec, dest_off);
Josh Poimboeufa845c7c2018-01-29 22:00:39 -06001003
Josh Poimboeuf7acfe532020-02-17 21:41:54 -06001004 if (insn->ignore)
1005 continue;
1006
1007 if (!insn->call_dest) {
Alexandre Chartre8aa8eb22020-04-14 12:36:12 +02001008 WARN_FUNC("unannotated intra-function call", insn->sec, insn->offset);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001009 return -1;
1010 }
Josh Poimboeufa845c7c2018-01-29 22:00:39 -06001011
Josh Poimboeuf7acfe532020-02-17 21:41:54 -06001012 if (insn->func && insn->call_dest->type != STT_FUNC) {
1013 WARN_FUNC("unsupported call to non-function",
1014 insn->sec, insn->offset);
1015 return -1;
1016 }
1017
Matt Helsleyf1974222020-05-29 14:01:13 -07001018 } else if (reloc->sym->type == STT_SECTION) {
1019 dest_off = arch_dest_reloc_offset(reloc->addend);
Julien Thierry2b232a22020-09-15 08:53:18 +01001020 insn->call_dest = find_call_destination(reloc->sym->sec,
1021 dest_off);
Josh Poimboeuf7acfe532020-02-17 21:41:54 -06001022 if (!insn->call_dest) {
Raphael Gaultbfb08f22020-03-27 15:28:45 +00001023 WARN_FUNC("can't find call dest symbol at %s+0x%lx",
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001024 insn->sec, insn->offset,
Matt Helsleyf1974222020-05-29 14:01:13 -07001025 reloc->sym->sec->name,
Raphael Gaultbfb08f22020-03-27 15:28:45 +00001026 dest_off);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001027 return -1;
1028 }
1029 } else
Matt Helsleyf1974222020-05-29 14:01:13 -07001030 insn->call_dest = reloc->sym;
Alexandre Chartre8aa8eb22020-04-14 12:36:12 +02001031
1032 /*
Peter Zijlstra0f1441b2020-06-12 16:05:26 +02001033 * Many compilers cannot disable KCOV with a function attribute
1034 * so they need a little help, NOP out any KCOV calls from noinstr
1035 * text.
1036 */
1037 if (insn->sec->noinstr &&
1038 !strncmp(insn->call_dest->name, "__sanitizer_cov_", 16)) {
Peter Zijlstrad832c002020-06-18 17:55:29 +02001039 if (reloc) {
1040 reloc->type = R_NONE;
1041 elf_write_reloc(file->elf, reloc);
Peter Zijlstra0f1441b2020-06-12 16:05:26 +02001042 }
1043
1044 elf_write_insn(file->elf, insn->sec,
1045 insn->offset, insn->len,
1046 arch_nop_insn(insn->len));
1047 insn->type = INSN_NOP;
1048 }
1049
Peter Zijlstra99d00212020-08-06 15:14:09 -07001050 if (mcount && !strcmp(insn->call_dest->name, "__fentry__")) {
1051 if (reloc) {
1052 reloc->type = R_NONE;
1053 elf_write_reloc(file->elf, reloc);
1054 }
1055
1056 elf_write_insn(file->elf, insn->sec,
1057 insn->offset, insn->len,
1058 arch_nop_insn(insn->len));
1059
1060 insn->type = INSN_NOP;
1061
1062 list_add_tail(&insn->mcount_loc_node,
1063 &file->mcount_loc_list);
1064 }
1065
Peter Zijlstra0f1441b2020-06-12 16:05:26 +02001066 /*
Alexandre Chartre8aa8eb22020-04-14 12:36:12 +02001067 * Whatever stack impact regular CALLs have, should be undone
1068 * by the RETURN of the called function.
1069 *
1070 * Annotated intra-function calls retain the stack_ops but
1071 * are converted to JUMP, see read_intra_function_calls().
1072 */
1073 remove_insn_ops(insn);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001074 }
1075
1076 return 0;
1077}
1078
1079/*
Josh Poimboeufc9c324d2020-12-18 14:26:21 -06001080 * The .alternatives section requires some extra special care over and above
1081 * other special sections because alternatives are patched in place.
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001082 */
1083static int handle_group_alt(struct objtool_file *file,
1084 struct special_alt *special_alt,
1085 struct instruction *orig_insn,
1086 struct instruction **new_insn)
1087{
Josh Poimboeufc9c324d2020-12-18 14:26:21 -06001088 struct instruction *last_orig_insn, *last_new_insn = NULL, *insn, *nop = NULL;
Josh Poimboeufb23cc712020-12-18 14:19:32 -06001089 struct alt_group *orig_alt_group, *new_alt_group;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001090 unsigned long dest_off;
1091
Josh Poimboeufb23cc712020-12-18 14:19:32 -06001092
1093 orig_alt_group = malloc(sizeof(*orig_alt_group));
1094 if (!orig_alt_group) {
1095 WARN("malloc failed");
1096 return -1;
1097 }
Josh Poimboeufc9c324d2020-12-18 14:26:21 -06001098 orig_alt_group->cfi = calloc(special_alt->orig_len,
1099 sizeof(struct cfi_state *));
1100 if (!orig_alt_group->cfi) {
1101 WARN("calloc failed");
1102 return -1;
1103 }
1104
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001105 last_orig_insn = NULL;
1106 insn = orig_insn;
1107 sec_for_each_insn_from(file, insn) {
1108 if (insn->offset >= special_alt->orig_off + special_alt->orig_len)
1109 break;
1110
Josh Poimboeufb23cc712020-12-18 14:19:32 -06001111 insn->alt_group = orig_alt_group;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001112 last_orig_insn = insn;
1113 }
Josh Poimboeufb23cc712020-12-18 14:19:32 -06001114 orig_alt_group->orig_group = NULL;
1115 orig_alt_group->first_insn = orig_insn;
1116 orig_alt_group->last_insn = last_orig_insn;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001117
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001118
Josh Poimboeufb23cc712020-12-18 14:19:32 -06001119 new_alt_group = malloc(sizeof(*new_alt_group));
1120 if (!new_alt_group) {
1121 WARN("malloc failed");
1122 return -1;
1123 }
1124
Josh Poimboeufc9c324d2020-12-18 14:26:21 -06001125 if (special_alt->new_len < special_alt->orig_len) {
1126 /*
1127 * Insert a fake nop at the end to make the replacement
1128 * alt_group the same size as the original. This is needed to
1129 * allow propagate_alt_cfi() to do its magic. When the last
1130 * instruction affects the stack, the instruction after it (the
1131 * nop) will propagate the new state to the shared CFI array.
1132 */
1133 nop = malloc(sizeof(*nop));
1134 if (!nop) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001135 WARN("malloc failed");
1136 return -1;
1137 }
Josh Poimboeufc9c324d2020-12-18 14:26:21 -06001138 memset(nop, 0, sizeof(*nop));
1139 INIT_LIST_HEAD(&nop->alts);
1140 INIT_LIST_HEAD(&nop->stack_ops);
1141 init_cfi_state(&nop->cfi);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001142
Josh Poimboeufc9c324d2020-12-18 14:26:21 -06001143 nop->sec = special_alt->new_sec;
1144 nop->offset = special_alt->new_off + special_alt->new_len;
1145 nop->len = special_alt->orig_len - special_alt->new_len;
1146 nop->type = INSN_NOP;
1147 nop->func = orig_insn->func;
1148 nop->alt_group = new_alt_group;
1149 nop->ignore = orig_insn->ignore_alts;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001150 }
1151
1152 if (!special_alt->new_len) {
Josh Poimboeufc9c324d2020-12-18 14:26:21 -06001153 *new_insn = nop;
1154 goto end;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001155 }
1156
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001157 insn = *new_insn;
1158 sec_for_each_insn_from(file, insn) {
Julien Thierry45245f52020-09-04 16:30:23 +01001159 struct reloc *alt_reloc;
1160
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001161 if (insn->offset >= special_alt->new_off + special_alt->new_len)
1162 break;
1163
1164 last_new_insn = insn;
1165
Josh Poimboeufa845c7c2018-01-29 22:00:39 -06001166 insn->ignore = orig_insn->ignore_alts;
Peter Zijlstraa4d09dd2019-02-25 10:31:24 +01001167 insn->func = orig_insn->func;
Josh Poimboeufb23cc712020-12-18 14:19:32 -06001168 insn->alt_group = new_alt_group;
Josh Poimboeufa845c7c2018-01-29 22:00:39 -06001169
Josh Poimboeufdc419722020-02-10 12:32:40 -06001170 /*
1171 * Since alternative replacement code is copy/pasted by the
1172 * kernel after applying relocations, generally such code can't
1173 * have relative-address relocation references to outside the
1174 * .altinstr_replacement section, unless the arch's
1175 * alternatives code can adjust the relative offsets
1176 * accordingly.
Josh Poimboeufdc419722020-02-10 12:32:40 -06001177 */
Julien Thierry45245f52020-09-04 16:30:23 +01001178 alt_reloc = find_reloc_by_dest_range(file->elf, insn->sec,
1179 insn->offset, insn->len);
1180 if (alt_reloc &&
1181 !arch_support_alt_relocation(special_alt, insn, alt_reloc)) {
Josh Poimboeufdc419722020-02-10 12:32:40 -06001182
1183 WARN_FUNC("unsupported relocation in alternatives section",
1184 insn->sec, insn->offset);
1185 return -1;
1186 }
1187
Josh Poimboeufa2296142020-02-10 12:32:39 -06001188 if (!is_static_jump(insn))
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001189 continue;
1190
1191 if (!insn->immediate)
1192 continue;
1193
Raphael Gaultbfb08f22020-03-27 15:28:45 +00001194 dest_off = arch_jump_destination(insn);
Josh Poimboeufc9c324d2020-12-18 14:26:21 -06001195 if (dest_off == special_alt->new_off + special_alt->new_len)
1196 insn->jump_dest = next_insn_same_sec(file, last_orig_insn);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001197
1198 if (!insn->jump_dest) {
1199 WARN_FUNC("can't find alternative jump destination",
1200 insn->sec, insn->offset);
1201 return -1;
1202 }
1203 }
1204
1205 if (!last_new_insn) {
1206 WARN_FUNC("can't find last new alternative instruction",
1207 special_alt->new_sec, special_alt->new_off);
1208 return -1;
1209 }
1210
Josh Poimboeufc9c324d2020-12-18 14:26:21 -06001211 if (nop)
1212 list_add(&nop->list, &last_new_insn->list);
1213end:
Josh Poimboeufb23cc712020-12-18 14:19:32 -06001214 new_alt_group->orig_group = orig_alt_group;
1215 new_alt_group->first_insn = *new_insn;
Josh Poimboeufc9c324d2020-12-18 14:26:21 -06001216 new_alt_group->last_insn = nop ? : last_new_insn;
1217 new_alt_group->cfi = orig_alt_group->cfi;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001218 return 0;
1219}
1220
1221/*
1222 * A jump table entry can either convert a nop to a jump or a jump to a nop.
1223 * If the original instruction is a jump, make the alt entry an effective nop
1224 * by just skipping the original instruction.
1225 */
1226static int handle_jump_alt(struct objtool_file *file,
1227 struct special_alt *special_alt,
1228 struct instruction *orig_insn,
1229 struct instruction **new_insn)
1230{
1231 if (orig_insn->type == INSN_NOP)
1232 return 0;
1233
1234 if (orig_insn->type != INSN_JUMP_UNCONDITIONAL) {
1235 WARN_FUNC("unsupported instruction at jump label",
1236 orig_insn->sec, orig_insn->offset);
1237 return -1;
1238 }
1239
1240 *new_insn = list_next_entry(orig_insn, list);
1241 return 0;
1242}
1243
1244/*
1245 * Read all the special sections which have alternate instructions which can be
1246 * patched in or redirected to at runtime. Each instruction having alternate
1247 * instruction(s) has them added to its insn->alts list, which will be
1248 * traversed in validate_branch().
1249 */
1250static int add_special_section_alts(struct objtool_file *file)
1251{
1252 struct list_head special_alts;
1253 struct instruction *orig_insn, *new_insn;
1254 struct special_alt *special_alt, *tmp;
1255 struct alternative *alt;
1256 int ret;
1257
1258 ret = special_get_alts(file->elf, &special_alts);
1259 if (ret)
1260 return ret;
1261
1262 list_for_each_entry_safe(special_alt, tmp, &special_alts, list) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001263
1264 orig_insn = find_insn(file, special_alt->orig_sec,
1265 special_alt->orig_off);
1266 if (!orig_insn) {
1267 WARN_FUNC("special: can't find orig instruction",
1268 special_alt->orig_sec, special_alt->orig_off);
1269 ret = -1;
1270 goto out;
1271 }
1272
1273 new_insn = NULL;
1274 if (!special_alt->group || special_alt->new_len) {
1275 new_insn = find_insn(file, special_alt->new_sec,
1276 special_alt->new_off);
1277 if (!new_insn) {
1278 WARN_FUNC("special: can't find new instruction",
1279 special_alt->new_sec,
1280 special_alt->new_off);
1281 ret = -1;
1282 goto out;
1283 }
1284 }
1285
1286 if (special_alt->group) {
Julien Thierry7170cf42020-03-27 15:28:41 +00001287 if (!special_alt->orig_len) {
1288 WARN_FUNC("empty alternative entry",
1289 orig_insn->sec, orig_insn->offset);
1290 continue;
1291 }
1292
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001293 ret = handle_group_alt(file, special_alt, orig_insn,
1294 &new_insn);
1295 if (ret)
1296 goto out;
1297 } else if (special_alt->jump_or_nop) {
1298 ret = handle_jump_alt(file, special_alt, orig_insn,
1299 &new_insn);
1300 if (ret)
1301 goto out;
1302 }
1303
Josh Poimboeuf258c7602018-01-11 21:46:24 +00001304 alt = malloc(sizeof(*alt));
1305 if (!alt) {
1306 WARN("malloc failed");
1307 ret = -1;
1308 goto out;
1309 }
1310
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001311 alt->insn = new_insn;
Peter Zijlstra764eef42019-03-01 11:19:03 +01001312 alt->skip_orig = special_alt->skip_orig;
Peter Zijlstraea242132019-02-25 12:50:09 +01001313 orig_insn->ignore_alts |= special_alt->skip_alt;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001314 list_add_tail(&alt->list, &orig_insn->alts);
1315
1316 list_del(&special_alt->list);
1317 free(special_alt);
1318 }
1319
1320out:
1321 return ret;
1322}
1323
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001324static int add_jump_table(struct objtool_file *file, struct instruction *insn,
Matt Helsleyf1974222020-05-29 14:01:13 -07001325 struct reloc *table)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001326{
Matt Helsleyf1974222020-05-29 14:01:13 -07001327 struct reloc *reloc = table;
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001328 struct instruction *dest_insn;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001329 struct alternative *alt;
Josh Poimboeuffd35c882018-05-10 17:48:49 -05001330 struct symbol *pfunc = insn->func->pfunc;
1331 unsigned int prev_offset = 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001332
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001333 /*
Matt Helsleyf1974222020-05-29 14:01:13 -07001334 * Each @reloc is a switch table relocation which points to the target
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001335 * instruction.
1336 */
Matt Helsleyf1974222020-05-29 14:01:13 -07001337 list_for_each_entry_from(reloc, &table->sec->reloc_list, list) {
Jann Hornbd98c812019-07-17 20:36:54 -05001338
1339 /* Check for the end of the table: */
Matt Helsleyf1974222020-05-29 14:01:13 -07001340 if (reloc != table && reloc->jump_table_start)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001341 break;
1342
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001343 /* Make sure the table entries are consecutive: */
Matt Helsleyf1974222020-05-29 14:01:13 -07001344 if (prev_offset && reloc->offset != prev_offset + 8)
Josh Poimboeuffd35c882018-05-10 17:48:49 -05001345 break;
1346
1347 /* Detect function pointers from contiguous objects: */
Matt Helsleyf1974222020-05-29 14:01:13 -07001348 if (reloc->sym->sec == pfunc->sec &&
1349 reloc->addend == pfunc->offset)
Josh Poimboeuffd35c882018-05-10 17:48:49 -05001350 break;
1351
Matt Helsleyf1974222020-05-29 14:01:13 -07001352 dest_insn = find_insn(file, reloc->sym->sec, reloc->addend);
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001353 if (!dest_insn)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001354 break;
1355
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001356 /* Make sure the destination is in the same function: */
Josh Poimboeufe65050b2019-07-17 20:36:55 -05001357 if (!dest_insn->func || dest_insn->func->pfunc != pfunc)
Josh Poimboeuf13810432018-05-09 22:39:15 -05001358 break;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001359
1360 alt = malloc(sizeof(*alt));
1361 if (!alt) {
1362 WARN("malloc failed");
1363 return -1;
1364 }
1365
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001366 alt->insn = dest_insn;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001367 list_add_tail(&alt->list, &insn->alts);
Matt Helsleyf1974222020-05-29 14:01:13 -07001368 prev_offset = reloc->offset;
Josh Poimboeuffd35c882018-05-10 17:48:49 -05001369 }
1370
1371 if (!prev_offset) {
1372 WARN_FUNC("can't find switch jump table",
1373 insn->sec, insn->offset);
1374 return -1;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001375 }
1376
1377 return 0;
1378}
1379
1380/*
Raphael Gaultd871f7b2020-09-04 16:30:24 +01001381 * find_jump_table() - Given a dynamic jump, find the switch jump table
1382 * associated with it.
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001383 */
Matt Helsleyf1974222020-05-29 14:01:13 -07001384static struct reloc *find_jump_table(struct objtool_file *file,
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001385 struct symbol *func,
1386 struct instruction *insn)
1387{
Raphael Gaultd871f7b2020-09-04 16:30:24 +01001388 struct reloc *table_reloc;
Josh Poimboeuf113d4bc2020-02-17 21:41:53 -06001389 struct instruction *dest_insn, *orig_insn = insn;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001390
Peter Zijlstra99ce7962018-02-08 14:02:32 +01001391 /*
1392 * Backward search using the @first_jump_src links, these help avoid
1393 * much of the 'in between' code. Which avoids us getting confused by
1394 * it.
1395 */
Josh Poimboeuf7dec80c2018-05-18 15:10:34 -05001396 for (;
Josh Poimboeuf1119d262020-04-28 16:45:16 -05001397 insn && insn->func && insn->func->pfunc == func;
1398 insn = insn->first_jump_src ?: prev_insn_same_sym(file, insn)) {
Peter Zijlstra99ce7962018-02-08 14:02:32 +01001399
Josh Poimboeuf7dec80c2018-05-18 15:10:34 -05001400 if (insn != orig_insn && insn->type == INSN_JUMP_DYNAMIC)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001401 break;
1402
1403 /* allow small jumps within the range */
1404 if (insn->type == INSN_JUMP_UNCONDITIONAL &&
1405 insn->jump_dest &&
1406 (insn->jump_dest->offset <= insn->offset ||
1407 insn->jump_dest->offset > orig_insn->offset))
1408 break;
1409
Raphael Gaultd871f7b2020-09-04 16:30:24 +01001410 table_reloc = arch_find_switch_table(file, insn);
Matt Helsleyf1974222020-05-29 14:01:13 -07001411 if (!table_reloc)
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001412 continue;
Matt Helsleyf1974222020-05-29 14:01:13 -07001413 dest_insn = find_insn(file, table_reloc->sym->sec, table_reloc->addend);
Josh Poimboeuf113d4bc2020-02-17 21:41:53 -06001414 if (!dest_insn || !dest_insn->func || dest_insn->func->pfunc != func)
1415 continue;
Josh Poimboeuf7dec80c2018-05-18 15:10:34 -05001416
Matt Helsleyf1974222020-05-29 14:01:13 -07001417 return table_reloc;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001418 }
1419
1420 return NULL;
1421}
1422
Jann Hornbd98c812019-07-17 20:36:54 -05001423/*
1424 * First pass: Mark the head of each jump table so that in the next pass,
1425 * we know when a given jump table ends and the next one starts.
1426 */
1427static void mark_func_jump_tables(struct objtool_file *file,
1428 struct symbol *func)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001429{
Jann Hornbd98c812019-07-17 20:36:54 -05001430 struct instruction *insn, *last = NULL;
Matt Helsleyf1974222020-05-29 14:01:13 -07001431 struct reloc *reloc;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001432
Peter Zijlstraf0f70ad2020-03-10 18:27:24 +01001433 func_for_each_insn(file, func, insn) {
Peter Zijlstra99ce7962018-02-08 14:02:32 +01001434 if (!last)
1435 last = insn;
1436
1437 /*
1438 * Store back-pointers for unconditional forward jumps such
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001439 * that find_jump_table() can back-track using those and
Peter Zijlstra99ce7962018-02-08 14:02:32 +01001440 * avoid some potentially confusing code.
1441 */
1442 if (insn->type == INSN_JUMP_UNCONDITIONAL && insn->jump_dest &&
1443 insn->offset > last->offset &&
1444 insn->jump_dest->offset > insn->offset &&
1445 !insn->jump_dest->first_jump_src) {
1446
1447 insn->jump_dest->first_jump_src = insn;
1448 last = insn->jump_dest;
1449 }
1450
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001451 if (insn->type != INSN_JUMP_DYNAMIC)
1452 continue;
1453
Matt Helsleyf1974222020-05-29 14:01:13 -07001454 reloc = find_jump_table(file, func, insn);
1455 if (reloc) {
1456 reloc->jump_table_start = true;
1457 insn->jump_table = reloc;
Jann Hornbd98c812019-07-17 20:36:54 -05001458 }
1459 }
1460}
1461
1462static int add_func_jump_tables(struct objtool_file *file,
1463 struct symbol *func)
1464{
1465 struct instruction *insn;
1466 int ret;
1467
Peter Zijlstraf0f70ad2020-03-10 18:27:24 +01001468 func_for_each_insn(file, func, insn) {
Jann Hornbd98c812019-07-17 20:36:54 -05001469 if (!insn->jump_table)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001470 continue;
1471
Jann Hornbd98c812019-07-17 20:36:54 -05001472 ret = add_jump_table(file, insn, insn->jump_table);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001473 if (ret)
1474 return ret;
1475 }
1476
1477 return 0;
1478}
1479
1480/*
1481 * For some switch statements, gcc generates a jump table in the .rodata
1482 * section which contains a list of addresses within the function to jump to.
1483 * This finds these jump tables and adds them to the insn->alts lists.
1484 */
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001485static int add_jump_table_alts(struct objtool_file *file)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001486{
1487 struct section *sec;
1488 struct symbol *func;
1489 int ret;
1490
Allan Xavier4a60aa02018-09-07 08:12:01 -05001491 if (!file->rodata)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001492 return 0;
1493
Josh Poimboeufbaa41462017-06-28 10:11:07 -05001494 for_each_sec(file, sec) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001495 list_for_each_entry(func, &sec->symbol_list, list) {
1496 if (func->type != STT_FUNC)
1497 continue;
1498
Jann Hornbd98c812019-07-17 20:36:54 -05001499 mark_func_jump_tables(file, func);
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001500 ret = add_func_jump_tables(file, func);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001501 if (ret)
1502 return ret;
1503 }
1504 }
1505
1506 return 0;
1507}
1508
Josh Poimboeufb735bd32021-01-21 15:29:24 -06001509static void set_func_state(struct cfi_state *state)
1510{
1511 state->cfa = initial_func_cfi.cfa;
1512 memcpy(&state->regs, &initial_func_cfi.regs,
1513 CFI_NUM_REGS * sizeof(struct cfi_reg));
1514 state->stack_size = initial_func_cfi.cfa.offset;
1515}
1516
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001517static int read_unwind_hints(struct objtool_file *file)
1518{
Matt Helsleyf1974222020-05-29 14:01:13 -07001519 struct section *sec, *relocsec;
1520 struct reloc *reloc;
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001521 struct unwind_hint *hint;
1522 struct instruction *insn;
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001523 int i;
1524
1525 sec = find_section_by_name(file->elf, ".discard.unwind_hints");
1526 if (!sec)
1527 return 0;
1528
Matt Helsleyf1974222020-05-29 14:01:13 -07001529 relocsec = sec->reloc;
1530 if (!relocsec) {
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001531 WARN("missing .rela.discard.unwind_hints section");
1532 return -1;
1533 }
1534
1535 if (sec->len % sizeof(struct unwind_hint)) {
1536 WARN("struct unwind_hint size mismatch");
1537 return -1;
1538 }
1539
1540 file->hints = true;
1541
1542 for (i = 0; i < sec->len / sizeof(struct unwind_hint); i++) {
1543 hint = (struct unwind_hint *)sec->data->d_buf + i;
1544
Matt Helsleyf1974222020-05-29 14:01:13 -07001545 reloc = find_reloc_by_dest(file->elf, sec, i * sizeof(*hint));
1546 if (!reloc) {
1547 WARN("can't find reloc for unwind_hints[%d]", i);
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001548 return -1;
1549 }
1550
Matt Helsleyf1974222020-05-29 14:01:13 -07001551 insn = find_insn(file, reloc->sym->sec, reloc->addend);
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001552 if (!insn) {
1553 WARN("can't find insn for unwind_hints[%d]", i);
1554 return -1;
1555 }
1556
Josh Poimboeufb735bd32021-01-21 15:29:24 -06001557 insn->hint = true;
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001558
Josh Poimboeufb735bd32021-01-21 15:29:24 -06001559 if (hint->type == UNWIND_HINT_TYPE_FUNC) {
1560 set_func_state(&insn->cfi);
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001561 continue;
1562 }
1563
Julien Thierryedea9e62020-09-04 16:30:28 +01001564 if (arch_decode_hint_reg(insn, hint->sp_reg)) {
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001565 WARN_FUNC("unsupported unwind_hint sp base reg %d",
1566 insn->sec, insn->offset, hint->sp_reg);
1567 return -1;
1568 }
1569
Josh Poimboeufb735bd32021-01-21 15:29:24 -06001570 insn->cfi.cfa.offset = bswap_if_needed(hint->sp_offset);
Peter Zijlstrae7c02192020-03-25 14:04:45 +01001571 insn->cfi.type = hint->type;
1572 insn->cfi.end = hint->end;
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001573 }
1574
1575 return 0;
1576}
1577
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001578static int read_retpoline_hints(struct objtool_file *file)
1579{
Josh Poimboeuf63474dc2018-03-06 17:58:15 -06001580 struct section *sec;
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001581 struct instruction *insn;
Matt Helsleyf1974222020-05-29 14:01:13 -07001582 struct reloc *reloc;
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001583
Josh Poimboeuf63474dc2018-03-06 17:58:15 -06001584 sec = find_section_by_name(file->elf, ".rela.discard.retpoline_safe");
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001585 if (!sec)
1586 return 0;
1587
Matt Helsleyf1974222020-05-29 14:01:13 -07001588 list_for_each_entry(reloc, &sec->reloc_list, list) {
1589 if (reloc->sym->type != STT_SECTION) {
Josh Poimboeuf63474dc2018-03-06 17:58:15 -06001590 WARN("unexpected relocation symbol type in %s", sec->name);
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001591 return -1;
1592 }
1593
Matt Helsleyf1974222020-05-29 14:01:13 -07001594 insn = find_insn(file, reloc->sym->sec, reloc->addend);
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001595 if (!insn) {
Josh Poimboeuf63474dc2018-03-06 17:58:15 -06001596 WARN("bad .discard.retpoline_safe entry");
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001597 return -1;
1598 }
1599
1600 if (insn->type != INSN_JUMP_DYNAMIC &&
1601 insn->type != INSN_CALL_DYNAMIC) {
Josh Poimboeuf63474dc2018-03-06 17:58:15 -06001602 WARN_FUNC("retpoline_safe hint not an indirect jump/call",
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001603 insn->sec, insn->offset);
1604 return -1;
1605 }
1606
1607 insn->retpoline_safe = true;
1608 }
1609
1610 return 0;
1611}
1612
Peter Zijlstrac4a33932020-03-10 18:57:41 +01001613static int read_instr_hints(struct objtool_file *file)
1614{
1615 struct section *sec;
1616 struct instruction *insn;
Matt Helsleyf1974222020-05-29 14:01:13 -07001617 struct reloc *reloc;
Peter Zijlstrac4a33932020-03-10 18:57:41 +01001618
1619 sec = find_section_by_name(file->elf, ".rela.discard.instr_end");
1620 if (!sec)
1621 return 0;
1622
Matt Helsleyf1974222020-05-29 14:01:13 -07001623 list_for_each_entry(reloc, &sec->reloc_list, list) {
1624 if (reloc->sym->type != STT_SECTION) {
Peter Zijlstrac4a33932020-03-10 18:57:41 +01001625 WARN("unexpected relocation symbol type in %s", sec->name);
1626 return -1;
1627 }
1628
Matt Helsleyf1974222020-05-29 14:01:13 -07001629 insn = find_insn(file, reloc->sym->sec, reloc->addend);
Peter Zijlstrac4a33932020-03-10 18:57:41 +01001630 if (!insn) {
1631 WARN("bad .discard.instr_end entry");
1632 return -1;
1633 }
1634
1635 insn->instr--;
1636 }
1637
1638 sec = find_section_by_name(file->elf, ".rela.discard.instr_begin");
1639 if (!sec)
1640 return 0;
1641
Matt Helsleyf1974222020-05-29 14:01:13 -07001642 list_for_each_entry(reloc, &sec->reloc_list, list) {
1643 if (reloc->sym->type != STT_SECTION) {
Peter Zijlstrac4a33932020-03-10 18:57:41 +01001644 WARN("unexpected relocation symbol type in %s", sec->name);
1645 return -1;
1646 }
1647
Matt Helsleyf1974222020-05-29 14:01:13 -07001648 insn = find_insn(file, reloc->sym->sec, reloc->addend);
Peter Zijlstrac4a33932020-03-10 18:57:41 +01001649 if (!insn) {
1650 WARN("bad .discard.instr_begin entry");
1651 return -1;
1652 }
1653
1654 insn->instr++;
1655 }
1656
1657 return 0;
1658}
1659
Alexandre Chartre8aa8eb22020-04-14 12:36:12 +02001660static int read_intra_function_calls(struct objtool_file *file)
1661{
1662 struct instruction *insn;
1663 struct section *sec;
Matt Helsleyf1974222020-05-29 14:01:13 -07001664 struct reloc *reloc;
Alexandre Chartre8aa8eb22020-04-14 12:36:12 +02001665
1666 sec = find_section_by_name(file->elf, ".rela.discard.intra_function_calls");
1667 if (!sec)
1668 return 0;
1669
Matt Helsleyf1974222020-05-29 14:01:13 -07001670 list_for_each_entry(reloc, &sec->reloc_list, list) {
Alexandre Chartre8aa8eb22020-04-14 12:36:12 +02001671 unsigned long dest_off;
1672
Matt Helsleyf1974222020-05-29 14:01:13 -07001673 if (reloc->sym->type != STT_SECTION) {
Alexandre Chartre8aa8eb22020-04-14 12:36:12 +02001674 WARN("unexpected relocation symbol type in %s",
1675 sec->name);
1676 return -1;
1677 }
1678
Matt Helsleyf1974222020-05-29 14:01:13 -07001679 insn = find_insn(file, reloc->sym->sec, reloc->addend);
Alexandre Chartre8aa8eb22020-04-14 12:36:12 +02001680 if (!insn) {
1681 WARN("bad .discard.intra_function_call entry");
1682 return -1;
1683 }
1684
1685 if (insn->type != INSN_CALL) {
1686 WARN_FUNC("intra_function_call not a direct call",
1687 insn->sec, insn->offset);
1688 return -1;
1689 }
1690
1691 /*
1692 * Treat intra-function CALLs as JMPs, but with a stack_op.
1693 * See add_call_destinations(), which strips stack_ops from
1694 * normal CALLs.
1695 */
1696 insn->type = INSN_JUMP_UNCONDITIONAL;
1697
1698 dest_off = insn->offset + insn->len + insn->immediate;
1699 insn->jump_dest = find_insn(file, insn->sec, dest_off);
1700 if (!insn->jump_dest) {
1701 WARN_FUNC("can't find call dest at %s+0x%lx",
1702 insn->sec, insn->offset,
1703 insn->sec->name, dest_off);
1704 return -1;
1705 }
1706 }
1707
1708 return 0;
1709}
1710
Josh Poimboeuf1e7e4782020-08-18 15:57:45 +02001711static int read_static_call_tramps(struct objtool_file *file)
1712{
1713 struct section *sec;
1714 struct symbol *func;
1715
1716 for_each_sec(file, sec) {
1717 list_for_each_entry(func, &sec->symbol_list, list) {
1718 if (func->bind == STB_GLOBAL &&
1719 !strncmp(func->name, STATIC_CALL_TRAMP_PREFIX_STR,
1720 strlen(STATIC_CALL_TRAMP_PREFIX_STR)))
1721 func->static_call_tramp = true;
1722 }
1723 }
1724
1725 return 0;
1726}
1727
Allan Xavier4a60aa02018-09-07 08:12:01 -05001728static void mark_rodata(struct objtool_file *file)
1729{
1730 struct section *sec;
1731 bool found = false;
1732
1733 /*
Josh Poimboeuf87b512d2019-06-27 20:50:46 -05001734 * Search for the following rodata sections, each of which can
1735 * potentially contain jump tables:
1736 *
1737 * - .rodata: can contain GCC switch tables
1738 * - .rodata.<func>: same, if -fdata-sections is being used
1739 * - .rodata..c_jump_table: contains C annotated jump tables
1740 *
1741 * .rodata.str1.* sections are ignored; they don't contain jump tables.
Allan Xavier4a60aa02018-09-07 08:12:01 -05001742 */
1743 for_each_sec(file, sec) {
Muchun Song1ee444702020-04-12 22:44:05 +08001744 if (!strncmp(sec->name, ".rodata", 7) &&
1745 !strstr(sec->name, ".str1.")) {
Allan Xavier4a60aa02018-09-07 08:12:01 -05001746 sec->rodata = true;
1747 found = true;
1748 }
1749 }
1750
1751 file->rodata = found;
1752}
1753
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001754static int decode_sections(struct objtool_file *file)
1755{
1756 int ret;
1757
Allan Xavier4a60aa02018-09-07 08:12:01 -05001758 mark_rodata(file);
1759
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001760 ret = decode_instructions(file);
1761 if (ret)
1762 return ret;
1763
1764 ret = add_dead_ends(file);
1765 if (ret)
1766 return ret;
1767
1768 add_ignores(file);
Peter Zijlstraea242132019-02-25 12:50:09 +01001769 add_uaccess_safe(file);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001770
Peter Zijlstraff05ab22019-03-18 14:33:07 +01001771 ret = add_ignore_alternatives(file);
Josh Poimboeuf258c7602018-01-11 21:46:24 +00001772 if (ret)
1773 return ret;
1774
Peter Zijlstra5b06fd32020-08-18 15:57:49 +02001775 ret = read_static_call_tramps(file);
1776 if (ret)
1777 return ret;
1778
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001779 ret = add_jump_destinations(file);
1780 if (ret)
1781 return ret;
1782
Josh Poimboeufa845c7c2018-01-29 22:00:39 -06001783 ret = add_special_section_alts(file);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001784 if (ret)
1785 return ret;
1786
Alexandre Chartre8aa8eb22020-04-14 12:36:12 +02001787 ret = read_intra_function_calls(file);
1788 if (ret)
1789 return ret;
1790
Josh Poimboeufa845c7c2018-01-29 22:00:39 -06001791 ret = add_call_destinations(file);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001792 if (ret)
1793 return ret;
1794
Josh Poimboeufe7c2bc32019-07-17 20:36:53 -05001795 ret = add_jump_table_alts(file);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001796 if (ret)
1797 return ret;
1798
Josh Poimboeuf39358a02017-07-11 10:33:43 -05001799 ret = read_unwind_hints(file);
1800 if (ret)
1801 return ret;
1802
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01001803 ret = read_retpoline_hints(file);
1804 if (ret)
1805 return ret;
1806
Peter Zijlstrac4a33932020-03-10 18:57:41 +01001807 ret = read_instr_hints(file);
1808 if (ret)
1809 return ret;
1810
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001811 return 0;
1812}
1813
1814static bool is_fentry_call(struct instruction *insn)
1815{
Alexandre Chartre87cf61f2020-04-14 12:36:10 +02001816 if (insn->type == INSN_CALL && insn->call_dest &&
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001817 insn->call_dest->type == STT_NOTYPE &&
1818 !strcmp(insn->call_dest->name, "__fentry__"))
1819 return true;
1820
1821 return false;
1822}
1823
Peter Zijlstrae25eea82020-04-01 16:38:19 +02001824static bool has_modified_stack_frame(struct instruction *insn, struct insn_state *state)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001825{
Peter Zijlstrae7c02192020-03-25 14:04:45 +01001826 struct cfi_state *cfi = &state->cfi;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05001827 int i;
1828
Peter Zijlstrae7c02192020-03-25 14:04:45 +01001829 if (cfi->cfa.base != initial_func_cfi.cfa.base || cfi->drap)
Josh Poimboeufbaa41462017-06-28 10:11:07 -05001830 return true;
1831
Josh Poimboeufb735bd32021-01-21 15:29:24 -06001832 if (cfi->cfa.offset != initial_func_cfi.cfa.offset)
Peter Zijlstrae25eea82020-04-01 16:38:19 +02001833 return true;
1834
Josh Poimboeufb735bd32021-01-21 15:29:24 -06001835 if (cfi->stack_size != initial_func_cfi.cfa.offset)
Peter Zijlstrae25eea82020-04-01 16:38:19 +02001836 return true;
1837
1838 for (i = 0; i < CFI_NUM_REGS; i++) {
Peter Zijlstrae7c02192020-03-25 14:04:45 +01001839 if (cfi->regs[i].base != initial_func_cfi.regs[i].base ||
1840 cfi->regs[i].offset != initial_func_cfi.regs[i].offset)
Josh Poimboeufbaa41462017-06-28 10:11:07 -05001841 return true;
Peter Zijlstrae25eea82020-04-01 16:38:19 +02001842 }
Josh Poimboeufbaa41462017-06-28 10:11:07 -05001843
1844 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001845}
1846
Julien Thierryfb084fd2020-10-14 08:38:00 +01001847static bool check_reg_frame_pos(const struct cfi_reg *reg,
1848 int expected_offset)
1849{
1850 return reg->base == CFI_CFA &&
1851 reg->offset == expected_offset;
1852}
1853
Josh Poimboeufbaa41462017-06-28 10:11:07 -05001854static bool has_valid_stack_frame(struct insn_state *state)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001855{
Peter Zijlstrae7c02192020-03-25 14:04:45 +01001856 struct cfi_state *cfi = &state->cfi;
1857
Julien Thierryfb084fd2020-10-14 08:38:00 +01001858 if (cfi->cfa.base == CFI_BP &&
1859 check_reg_frame_pos(&cfi->regs[CFI_BP], -cfi->cfa.offset) &&
1860 check_reg_frame_pos(&cfi->regs[CFI_RA], -cfi->cfa.offset + 8))
Josh Poimboeufbaa41462017-06-28 10:11:07 -05001861 return true;
1862
Peter Zijlstrae7c02192020-03-25 14:04:45 +01001863 if (cfi->drap && cfi->regs[CFI_BP].base == CFI_BP)
Josh Poimboeufbaa41462017-06-28 10:11:07 -05001864 return true;
1865
1866 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001867}
1868
Peter Zijlstrae7c02192020-03-25 14:04:45 +01001869static int update_cfi_state_regs(struct instruction *insn,
1870 struct cfi_state *cfi,
Julien Thierry65ea47d2020-03-27 15:28:47 +00001871 struct stack_op *op)
Josh Poimboeuf627fce12017-07-11 10:33:42 -05001872{
Peter Zijlstrae7c02192020-03-25 14:04:45 +01001873 struct cfi_reg *cfa = &cfi->cfa;
Josh Poimboeuf627fce12017-07-11 10:33:42 -05001874
Josh Poimboeufd8dd25a2020-04-25 05:03:00 -05001875 if (cfa->base != CFI_SP && cfa->base != CFI_SP_INDIRECT)
Josh Poimboeuf627fce12017-07-11 10:33:42 -05001876 return 0;
1877
1878 /* push */
Peter Zijlstraea242132019-02-25 12:50:09 +01001879 if (op->dest.type == OP_DEST_PUSH || op->dest.type == OP_DEST_PUSHF)
Josh Poimboeuf627fce12017-07-11 10:33:42 -05001880 cfa->offset += 8;
1881
1882 /* pop */
Peter Zijlstraea242132019-02-25 12:50:09 +01001883 if (op->src.type == OP_SRC_POP || op->src.type == OP_SRC_POPF)
Josh Poimboeuf627fce12017-07-11 10:33:42 -05001884 cfa->offset -= 8;
1885
1886 /* add immediate to sp */
1887 if (op->dest.type == OP_DEST_REG && op->src.type == OP_SRC_ADD &&
1888 op->dest.reg == CFI_SP && op->src.reg == CFI_SP)
1889 cfa->offset -= op->src.offset;
1890
1891 return 0;
1892}
1893
Peter Zijlstrae7c02192020-03-25 14:04:45 +01001894static void save_reg(struct cfi_state *cfi, unsigned char reg, int base, int offset)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05001895{
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05001896 if (arch_callee_saved_reg(reg) &&
Peter Zijlstrae7c02192020-03-25 14:04:45 +01001897 cfi->regs[reg].base == CFI_UNDEFINED) {
1898 cfi->regs[reg].base = base;
1899 cfi->regs[reg].offset = offset;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05001900 }
1901}
1902
Peter Zijlstrae7c02192020-03-25 14:04:45 +01001903static void restore_reg(struct cfi_state *cfi, unsigned char reg)
Josh Poimboeufbaa41462017-06-28 10:11:07 -05001904{
Peter Zijlstrae7c02192020-03-25 14:04:45 +01001905 cfi->regs[reg].base = initial_func_cfi.regs[reg].base;
1906 cfi->regs[reg].offset = initial_func_cfi.regs[reg].offset;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05001907}
1908
1909/*
1910 * A note about DRAP stack alignment:
1911 *
1912 * GCC has the concept of a DRAP register, which is used to help keep track of
1913 * the stack pointer when aligning the stack. r10 or r13 is used as the DRAP
1914 * register. The typical DRAP pattern is:
1915 *
1916 * 4c 8d 54 24 08 lea 0x8(%rsp),%r10
1917 * 48 83 e4 c0 and $0xffffffffffffffc0,%rsp
1918 * 41 ff 72 f8 pushq -0x8(%r10)
1919 * 55 push %rbp
1920 * 48 89 e5 mov %rsp,%rbp
1921 * (more pushes)
1922 * 41 52 push %r10
1923 * ...
1924 * 41 5a pop %r10
1925 * (more pops)
1926 * 5d pop %rbp
1927 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1928 * c3 retq
1929 *
1930 * There are some variations in the epilogues, like:
1931 *
1932 * 5b pop %rbx
1933 * 41 5a pop %r10
1934 * 41 5c pop %r12
1935 * 41 5d pop %r13
1936 * 41 5e pop %r14
1937 * c9 leaveq
1938 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1939 * c3 retq
1940 *
1941 * and:
1942 *
1943 * 4c 8b 55 e8 mov -0x18(%rbp),%r10
1944 * 48 8b 5d e0 mov -0x20(%rbp),%rbx
1945 * 4c 8b 65 f0 mov -0x10(%rbp),%r12
1946 * 4c 8b 6d f8 mov -0x8(%rbp),%r13
1947 * c9 leaveq
1948 * 49 8d 62 f8 lea -0x8(%r10),%rsp
1949 * c3 retq
1950 *
1951 * Sometimes r13 is used as the DRAP register, in which case it's saved and
1952 * restored beforehand:
1953 *
1954 * 41 55 push %r13
1955 * 4c 8d 6c 24 10 lea 0x10(%rsp),%r13
1956 * 48 83 e4 f0 and $0xfffffffffffffff0,%rsp
1957 * ...
1958 * 49 8d 65 f0 lea -0x10(%r13),%rsp
1959 * 41 5d pop %r13
1960 * c3 retq
1961 */
Peter Zijlstrad54dba42021-02-11 13:03:28 +01001962static int update_cfi_state(struct instruction *insn,
1963 struct instruction *next_insn,
1964 struct cfi_state *cfi, struct stack_op *op)
Josh Poimboeufbaa41462017-06-28 10:11:07 -05001965{
Peter Zijlstrae7c02192020-03-25 14:04:45 +01001966 struct cfi_reg *cfa = &cfi->cfa;
1967 struct cfi_reg *regs = cfi->regs;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05001968
1969 /* stack operations don't make sense with an undefined CFA */
1970 if (cfa->base == CFI_UNDEFINED) {
1971 if (insn->func) {
1972 WARN_FUNC("undefined stack state", insn->sec, insn->offset);
1973 return -1;
1974 }
1975 return 0;
1976 }
1977
Julien Thierryee819ae2020-09-04 16:30:27 +01001978 if (cfi->type == UNWIND_HINT_TYPE_REGS ||
1979 cfi->type == UNWIND_HINT_TYPE_REGS_PARTIAL)
Peter Zijlstrae7c02192020-03-25 14:04:45 +01001980 return update_cfi_state_regs(insn, cfi, op);
Josh Poimboeuf627fce12017-07-11 10:33:42 -05001981
Josh Poimboeufbaa41462017-06-28 10:11:07 -05001982 switch (op->dest.type) {
1983
1984 case OP_DEST_REG:
1985 switch (op->src.type) {
1986
1987 case OP_SRC_REG:
Josh Poimboeuf0d0970e2017-09-20 16:24:32 -05001988 if (op->src.reg == CFI_SP && op->dest.reg == CFI_BP &&
1989 cfa->base == CFI_SP &&
Julien Thierryfb084fd2020-10-14 08:38:00 +01001990 check_reg_frame_pos(&regs[CFI_BP], -cfa->offset)) {
Josh Poimboeufbaa41462017-06-28 10:11:07 -05001991
Josh Poimboeuf0d0970e2017-09-20 16:24:32 -05001992 /* mov %rsp, %rbp */
1993 cfa->base = op->dest.reg;
Peter Zijlstrae7c02192020-03-25 14:04:45 +01001994 cfi->bp_scratch = false;
Josh Poimboeuf0d0970e2017-09-20 16:24:32 -05001995 }
Josh Poimboeufbaa41462017-06-28 10:11:07 -05001996
Josh Poimboeuf0d0970e2017-09-20 16:24:32 -05001997 else if (op->src.reg == CFI_SP &&
Peter Zijlstrae7c02192020-03-25 14:04:45 +01001998 op->dest.reg == CFI_BP && cfi->drap) {
Josh Poimboeufbaa41462017-06-28 10:11:07 -05001999
Josh Poimboeuf0d0970e2017-09-20 16:24:32 -05002000 /* drap: mov %rsp, %rbp */
2001 regs[CFI_BP].base = CFI_BP;
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002002 regs[CFI_BP].offset = -cfi->stack_size;
2003 cfi->bp_scratch = false;
Josh Poimboeuf0d0970e2017-09-20 16:24:32 -05002004 }
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -05002005
Josh Poimboeuf0d0970e2017-09-20 16:24:32 -05002006 else if (op->src.reg == CFI_SP && cfa->base == CFI_SP) {
2007
2008 /*
2009 * mov %rsp, %reg
2010 *
2011 * This is needed for the rare case where GCC
2012 * does:
2013 *
2014 * mov %rsp, %rax
2015 * ...
2016 * mov %rax, %rsp
2017 */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002018 cfi->vals[op->dest.reg].base = CFI_CFA;
2019 cfi->vals[op->dest.reg].offset = -cfi->stack_size;
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -05002020 }
2021
Josh Poimboeuf3c1f0582018-03-22 13:00:37 -05002022 else if (op->src.reg == CFI_BP && op->dest.reg == CFI_SP &&
2023 cfa->base == CFI_BP) {
2024
2025 /*
2026 * mov %rbp, %rsp
2027 *
2028 * Restore the original stack pointer (Clang).
2029 */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002030 cfi->stack_size = -cfi->regs[CFI_BP].offset;
Josh Poimboeuf3c1f0582018-03-22 13:00:37 -05002031 }
2032
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -05002033 else if (op->dest.reg == cfa->base) {
2034
2035 /* mov %reg, %rsp */
2036 if (cfa->base == CFI_SP &&
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002037 cfi->vals[op->src.reg].base == CFI_CFA) {
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -05002038
2039 /*
2040 * This is needed for the rare case
2041 * where GCC does something dumb like:
2042 *
2043 * lea 0x8(%rsp), %rcx
2044 * ...
2045 * mov %rcx, %rsp
2046 */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002047 cfa->offset = -cfi->vals[op->src.reg].offset;
2048 cfi->stack_size = cfa->offset;
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -05002049
Peter Zijlstraaafeb142021-02-03 12:02:17 +01002050 } else if (cfa->base == CFI_SP &&
2051 cfi->vals[op->src.reg].base == CFI_SP_INDIRECT &&
2052 cfi->vals[op->src.reg].offset == cfa->offset) {
2053
2054 /*
2055 * Stack swizzle:
2056 *
2057 * 1: mov %rsp, (%[tos])
2058 * 2: mov %[tos], %rsp
2059 * ...
2060 * 3: pop %rsp
2061 *
2062 * Where:
2063 *
2064 * 1 - places a pointer to the previous
2065 * stack at the Top-of-Stack of the
2066 * new stack.
2067 *
2068 * 2 - switches to the new stack.
2069 *
2070 * 3 - pops the Top-of-Stack to restore
2071 * the original stack.
2072 *
2073 * Note: we set base to SP_INDIRECT
2074 * here and preserve offset. Therefore
2075 * when the unwinder reaches ToS it
2076 * will dereference SP and then add the
2077 * offset to find the next frame, IOW:
2078 * (%rsp) + offset.
2079 */
2080 cfa->base = CFI_SP_INDIRECT;
2081
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -05002082 } else {
2083 cfa->base = CFI_UNDEFINED;
2084 cfa->offset = 0;
2085 }
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002086 }
2087
Peter Zijlstra724c8a22021-02-18 17:14:10 +01002088 else if (op->dest.reg == CFI_SP &&
2089 cfi->vals[op->src.reg].base == CFI_SP_INDIRECT &&
2090 cfi->vals[op->src.reg].offset == cfa->offset) {
2091
2092 /*
2093 * The same stack swizzle case 2) as above. But
2094 * because we can't change cfa->base, case 3)
2095 * will become a regular POP. Pretend we're a
2096 * PUSH so things don't go unbalanced.
2097 */
2098 cfi->stack_size += 8;
2099 }
2100
2101
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002102 break;
2103
2104 case OP_SRC_ADD:
2105 if (op->dest.reg == CFI_SP && op->src.reg == CFI_SP) {
2106
2107 /* add imm, %rsp */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002108 cfi->stack_size -= op->src.offset;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002109 if (cfa->base == CFI_SP)
2110 cfa->offset -= op->src.offset;
2111 break;
2112 }
2113
2114 if (op->dest.reg == CFI_SP && op->src.reg == CFI_BP) {
2115
2116 /* lea disp(%rbp), %rsp */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002117 cfi->stack_size = -(op->src.offset + regs[CFI_BP].offset);
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002118 break;
2119 }
2120
Julien Thierry468af562020-10-14 08:38:01 +01002121 if (!cfi->drap && op->src.reg == CFI_SP &&
2122 op->dest.reg == CFI_BP && cfa->base == CFI_SP &&
2123 check_reg_frame_pos(&regs[CFI_BP], -cfa->offset + op->src.offset)) {
2124
2125 /* lea disp(%rsp), %rbp */
2126 cfa->base = CFI_BP;
2127 cfa->offset -= op->src.offset;
2128 cfi->bp_scratch = false;
2129 break;
2130 }
2131
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -05002132 if (op->src.reg == CFI_SP && cfa->base == CFI_SP) {
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002133
2134 /* drap: lea disp(%rsp), %drap */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002135 cfi->drap_reg = op->dest.reg;
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -05002136
2137 /*
2138 * lea disp(%rsp), %reg
2139 *
2140 * This is needed for the rare case where GCC
2141 * does something dumb like:
2142 *
2143 * lea 0x8(%rsp), %rcx
2144 * ...
2145 * mov %rcx, %rsp
2146 */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002147 cfi->vals[op->dest.reg].base = CFI_CFA;
2148 cfi->vals[op->dest.reg].offset = \
2149 -cfi->stack_size + op->src.offset;
Josh Poimboeufdd88a0a2017-08-29 12:51:03 -05002150
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002151 break;
2152 }
2153
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002154 if (cfi->drap && op->dest.reg == CFI_SP &&
2155 op->src.reg == cfi->drap_reg) {
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002156
2157 /* drap: lea disp(%drap), %rsp */
2158 cfa->base = CFI_SP;
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002159 cfa->offset = cfi->stack_size = -op->src.offset;
2160 cfi->drap_reg = CFI_UNDEFINED;
2161 cfi->drap = false;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002162 break;
2163 }
2164
Peter Zijlstrad54dba42021-02-11 13:03:28 +01002165 if (op->dest.reg == cfi->cfa.base && !(next_insn && next_insn->hint)) {
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002166 WARN_FUNC("unsupported stack register modification",
2167 insn->sec, insn->offset);
2168 return -1;
2169 }
2170
2171 break;
2172
2173 case OP_SRC_AND:
2174 if (op->dest.reg != CFI_SP ||
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002175 (cfi->drap_reg != CFI_UNDEFINED && cfa->base != CFI_SP) ||
2176 (cfi->drap_reg == CFI_UNDEFINED && cfa->base != CFI_BP)) {
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002177 WARN_FUNC("unsupported stack pointer realignment",
2178 insn->sec, insn->offset);
2179 return -1;
2180 }
2181
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002182 if (cfi->drap_reg != CFI_UNDEFINED) {
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002183 /* drap: and imm, %rsp */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002184 cfa->base = cfi->drap_reg;
2185 cfa->offset = cfi->stack_size = 0;
2186 cfi->drap = true;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002187 }
2188
2189 /*
2190 * Older versions of GCC (4.8ish) realign the stack
2191 * without DRAP, with a frame pointer.
2192 */
2193
2194 break;
2195
2196 case OP_SRC_POP:
Peter Zijlstraea242132019-02-25 12:50:09 +01002197 case OP_SRC_POPF:
Peter Zijlstraaafeb142021-02-03 12:02:17 +01002198 if (op->dest.reg == CFI_SP && cfa->base == CFI_SP_INDIRECT) {
2199
2200 /* pop %rsp; # restore from a stack swizzle */
2201 cfa->base = CFI_SP;
2202 break;
2203 }
2204
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002205 if (!cfi->drap && op->dest.reg == cfa->base) {
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002206
2207 /* pop %rbp */
2208 cfa->base = CFI_SP;
2209 }
2210
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002211 if (cfi->drap && cfa->base == CFI_BP_INDIRECT &&
2212 op->dest.reg == cfi->drap_reg &&
2213 cfi->drap_offset == -cfi->stack_size) {
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002214
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05002215 /* drap: pop %drap */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002216 cfa->base = cfi->drap_reg;
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05002217 cfa->offset = 0;
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002218 cfi->drap_offset = -1;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002219
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002220 } else if (regs[op->dest.reg].offset == -cfi->stack_size) {
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002221
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05002222 /* pop %reg */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002223 restore_reg(cfi, op->dest.reg);
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002224 }
2225
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002226 cfi->stack_size -= 8;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002227 if (cfa->base == CFI_SP)
2228 cfa->offset -= 8;
2229
2230 break;
2231
2232 case OP_SRC_REG_INDIRECT:
Julien Thierry201ef5a2020-10-14 08:38:02 +01002233 if (!cfi->drap && op->dest.reg == cfa->base &&
2234 op->dest.reg == CFI_BP) {
2235
2236 /* mov disp(%rsp), %rbp */
2237 cfa->base = CFI_SP;
2238 cfa->offset = cfi->stack_size;
2239 }
2240
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002241 if (cfi->drap && op->src.reg == CFI_BP &&
2242 op->src.offset == cfi->drap_offset) {
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05002243
2244 /* drap: mov disp(%rbp), %drap */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002245 cfa->base = cfi->drap_reg;
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05002246 cfa->offset = 0;
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002247 cfi->drap_offset = -1;
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05002248 }
2249
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002250 if (cfi->drap && op->src.reg == CFI_BP &&
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002251 op->src.offset == regs[op->dest.reg].offset) {
2252
2253 /* drap: mov disp(%rbp), %reg */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002254 restore_reg(cfi, op->dest.reg);
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002255
2256 } else if (op->src.reg == cfa->base &&
2257 op->src.offset == regs[op->dest.reg].offset + cfa->offset) {
2258
2259 /* mov disp(%rbp), %reg */
2260 /* mov disp(%rsp), %reg */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002261 restore_reg(cfi, op->dest.reg);
Julien Thierry201ef5a2020-10-14 08:38:02 +01002262
2263 } else if (op->src.reg == CFI_SP &&
2264 op->src.offset == regs[op->dest.reg].offset + cfi->stack_size) {
2265
2266 /* mov disp(%rsp), %reg */
2267 restore_reg(cfi, op->dest.reg);
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002268 }
2269
2270 break;
2271
2272 default:
2273 WARN_FUNC("unknown stack-related instruction",
2274 insn->sec, insn->offset);
2275 return -1;
2276 }
2277
2278 break;
2279
2280 case OP_DEST_PUSH:
Peter Zijlstraea242132019-02-25 12:50:09 +01002281 case OP_DEST_PUSHF:
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002282 cfi->stack_size += 8;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002283 if (cfa->base == CFI_SP)
2284 cfa->offset += 8;
2285
2286 if (op->src.type != OP_SRC_REG)
2287 break;
2288
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002289 if (cfi->drap) {
2290 if (op->src.reg == cfa->base && op->src.reg == cfi->drap_reg) {
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002291
2292 /* drap: push %drap */
2293 cfa->base = CFI_BP_INDIRECT;
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002294 cfa->offset = -cfi->stack_size;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002295
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05002296 /* save drap so we know when to restore it */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002297 cfi->drap_offset = -cfi->stack_size;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002298
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002299 } else if (op->src.reg == CFI_BP && cfa->base == cfi->drap_reg) {
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002300
2301 /* drap: push %rbp */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002302 cfi->stack_size = 0;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002303
Julien Thierryf4f80392020-09-15 08:53:16 +01002304 } else {
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002305
2306 /* drap: push %reg */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002307 save_reg(cfi, op->src.reg, CFI_BP, -cfi->stack_size);
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002308 }
2309
2310 } else {
2311
2312 /* push %reg */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002313 save_reg(cfi, op->src.reg, CFI_CFA, -cfi->stack_size);
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002314 }
2315
2316 /* detect when asm code uses rbp as a scratch register */
Josh Poimboeuf867ac9d2017-07-24 18:34:14 -05002317 if (!no_fp && insn->func && op->src.reg == CFI_BP &&
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002318 cfa->base != CFI_BP)
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002319 cfi->bp_scratch = true;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002320 break;
2321
2322 case OP_DEST_REG_INDIRECT:
2323
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002324 if (cfi->drap) {
2325 if (op->src.reg == cfa->base && op->src.reg == cfi->drap_reg) {
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002326
2327 /* drap: mov %drap, disp(%rbp) */
2328 cfa->base = CFI_BP_INDIRECT;
2329 cfa->offset = op->dest.offset;
2330
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05002331 /* save drap offset so we know when to restore it */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002332 cfi->drap_offset = op->dest.offset;
Julien Thierryf4f80392020-09-15 08:53:16 +01002333 } else {
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002334
2335 /* drap: mov reg, disp(%rbp) */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002336 save_reg(cfi, op->src.reg, CFI_BP, op->dest.offset);
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002337 }
2338
2339 } else if (op->dest.reg == cfa->base) {
2340
2341 /* mov reg, disp(%rbp) */
2342 /* mov reg, disp(%rsp) */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002343 save_reg(cfi, op->src.reg, CFI_CFA,
2344 op->dest.offset - cfi->cfa.offset);
Julien Thierry201ef5a2020-10-14 08:38:02 +01002345
2346 } else if (op->dest.reg == CFI_SP) {
2347
2348 /* mov reg, disp(%rsp) */
2349 save_reg(cfi, op->src.reg, CFI_CFA,
2350 op->dest.offset - cfi->stack_size);
Peter Zijlstraaafeb142021-02-03 12:02:17 +01002351
2352 } else if (op->src.reg == CFI_SP && op->dest.offset == 0) {
2353
2354 /* mov %rsp, (%reg); # setup a stack swizzle. */
2355 cfi->vals[op->dest.reg].base = CFI_SP_INDIRECT;
2356 cfi->vals[op->dest.reg].offset = cfa->offset;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002357 }
2358
2359 break;
2360
2361 case OP_DEST_LEAVE:
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002362 if ((!cfi->drap && cfa->base != CFI_BP) ||
2363 (cfi->drap && cfa->base != cfi->drap_reg)) {
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002364 WARN_FUNC("leave instruction with modified stack frame",
2365 insn->sec, insn->offset);
2366 return -1;
2367 }
2368
2369 /* leave (mov %rbp, %rsp; pop %rbp) */
2370
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002371 cfi->stack_size = -cfi->regs[CFI_BP].offset - 8;
2372 restore_reg(cfi, CFI_BP);
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002373
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002374 if (!cfi->drap) {
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002375 cfa->base = CFI_SP;
2376 cfa->offset -= 8;
2377 }
2378
2379 break;
2380
2381 case OP_DEST_MEM:
Peter Zijlstraea242132019-02-25 12:50:09 +01002382 if (op->src.type != OP_SRC_POP && op->src.type != OP_SRC_POPF) {
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002383 WARN_FUNC("unknown stack-related memory operation",
2384 insn->sec, insn->offset);
2385 return -1;
2386 }
2387
2388 /* pop mem */
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002389 cfi->stack_size -= 8;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002390 if (cfa->base == CFI_SP)
2391 cfa->offset -= 8;
2392
2393 break;
2394
2395 default:
2396 WARN_FUNC("unknown stack-related instruction",
2397 insn->sec, insn->offset);
2398 return -1;
2399 }
2400
2401 return 0;
2402}
2403
Josh Poimboeufc9c324d2020-12-18 14:26:21 -06002404/*
2405 * The stack layouts of alternatives instructions can sometimes diverge when
2406 * they have stack modifications. That's fine as long as the potential stack
2407 * layouts don't conflict at any given potential instruction boundary.
2408 *
2409 * Flatten the CFIs of the different alternative code streams (both original
2410 * and replacement) into a single shared CFI array which can be used to detect
2411 * conflicts and nicely feed a linear array of ORC entries to the unwinder.
2412 */
2413static int propagate_alt_cfi(struct objtool_file *file, struct instruction *insn)
2414{
2415 struct cfi_state **alt_cfi;
2416 int group_off;
2417
2418 if (!insn->alt_group)
2419 return 0;
2420
2421 alt_cfi = insn->alt_group->cfi;
2422 group_off = insn->offset - insn->alt_group->first_insn->offset;
2423
2424 if (!alt_cfi[group_off]) {
2425 alt_cfi[group_off] = &insn->cfi;
2426 } else {
2427 if (memcmp(alt_cfi[group_off], &insn->cfi, sizeof(struct cfi_state))) {
2428 WARN_FUNC("stack layout conflict in alternatives",
2429 insn->sec, insn->offset);
2430 return -1;
2431 }
2432 }
2433
2434 return 0;
2435}
2436
Peter Zijlstrad54dba42021-02-11 13:03:28 +01002437static int handle_insn_ops(struct instruction *insn,
2438 struct instruction *next_insn,
2439 struct insn_state *state)
Julien Thierry65ea47d2020-03-27 15:28:47 +00002440{
2441 struct stack_op *op;
2442
2443 list_for_each_entry(op, &insn->stack_ops, list) {
Julien Thierry65ea47d2020-03-27 15:28:47 +00002444
Peter Zijlstrad54dba42021-02-11 13:03:28 +01002445 if (update_cfi_state(insn, next_insn, &state->cfi, op))
Josh Poimboeufc9c324d2020-12-18 14:26:21 -06002446 return 1;
Peter Zijlstraab3852a2020-05-08 12:34:33 +02002447
Julien Thierry65ea47d2020-03-27 15:28:47 +00002448 if (op->dest.type == OP_DEST_PUSHF) {
2449 if (!state->uaccess_stack) {
2450 state->uaccess_stack = 1;
2451 } else if (state->uaccess_stack >> 31) {
2452 WARN_FUNC("PUSHF stack exhausted",
2453 insn->sec, insn->offset);
2454 return 1;
2455 }
2456 state->uaccess_stack <<= 1;
2457 state->uaccess_stack |= state->uaccess;
2458 }
2459
2460 if (op->src.type == OP_SRC_POPF) {
2461 if (state->uaccess_stack) {
2462 state->uaccess = state->uaccess_stack & 1;
2463 state->uaccess_stack >>= 1;
2464 if (state->uaccess_stack == 1)
2465 state->uaccess_stack = 0;
2466 }
2467 }
2468 }
2469
2470 return 0;
2471}
2472
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002473static bool insn_cfi_match(struct instruction *insn, struct cfi_state *cfi2)
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002474{
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002475 struct cfi_state *cfi1 = &insn->cfi;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002476 int i;
2477
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002478 if (memcmp(&cfi1->cfa, &cfi2->cfa, sizeof(cfi1->cfa))) {
2479
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002480 WARN_FUNC("stack state mismatch: cfa1=%d%+d cfa2=%d%+d",
2481 insn->sec, insn->offset,
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002482 cfi1->cfa.base, cfi1->cfa.offset,
2483 cfi2->cfa.base, cfi2->cfa.offset);
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002484
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002485 } else if (memcmp(&cfi1->regs, &cfi2->regs, sizeof(cfi1->regs))) {
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002486 for (i = 0; i < CFI_NUM_REGS; i++) {
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002487 if (!memcmp(&cfi1->regs[i], &cfi2->regs[i],
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002488 sizeof(struct cfi_reg)))
2489 continue;
2490
2491 WARN_FUNC("stack state mismatch: reg1[%d]=%d%+d reg2[%d]=%d%+d",
2492 insn->sec, insn->offset,
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002493 i, cfi1->regs[i].base, cfi1->regs[i].offset,
2494 i, cfi2->regs[i].base, cfi2->regs[i].offset);
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002495 break;
2496 }
2497
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002498 } else if (cfi1->type != cfi2->type) {
Josh Poimboeuf627fce12017-07-11 10:33:42 -05002499
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002500 WARN_FUNC("stack state mismatch: type1=%d type2=%d",
2501 insn->sec, insn->offset, cfi1->type, cfi2->type);
2502
2503 } else if (cfi1->drap != cfi2->drap ||
2504 (cfi1->drap && cfi1->drap_reg != cfi2->drap_reg) ||
2505 (cfi1->drap && cfi1->drap_offset != cfi2->drap_offset)) {
2506
Josh Poimboeufbf4d1a82017-08-10 16:37:26 -05002507 WARN_FUNC("stack state mismatch: drap1=%d(%d,%d) drap2=%d(%d,%d)",
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002508 insn->sec, insn->offset,
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002509 cfi1->drap, cfi1->drap_reg, cfi1->drap_offset,
2510 cfi2->drap, cfi2->drap_reg, cfi2->drap_offset);
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002511
2512 } else
2513 return true;
2514
2515 return false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002516}
2517
Peter Zijlstraea242132019-02-25 12:50:09 +01002518static inline bool func_uaccess_safe(struct symbol *func)
2519{
2520 if (func)
Josh Poimboeufe10cd8f2019-07-17 20:36:48 -05002521 return func->uaccess_safe;
Peter Zijlstraea242132019-02-25 12:50:09 +01002522
2523 return false;
2524}
2525
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -05002526static inline const char *call_dest_name(struct instruction *insn)
Peter Zijlstraea242132019-02-25 12:50:09 +01002527{
2528 if (insn->call_dest)
2529 return insn->call_dest->name;
2530
2531 return "{dynamic}";
2532}
2533
Peter Zijlstra6b643a02020-06-03 20:09:06 +02002534static inline bool noinstr_call_dest(struct symbol *func)
2535{
2536 /*
2537 * We can't deal with indirect function calls at present;
2538 * assume they're instrumented.
2539 */
2540 if (!func)
2541 return false;
2542
2543 /*
2544 * If the symbol is from a noinstr section; we good.
2545 */
2546 if (func->sec->noinstr)
2547 return true;
2548
2549 /*
2550 * The __ubsan_handle_*() calls are like WARN(), they only happen when
2551 * something 'BAD' happened. At the risk of taking the machine down,
2552 * let them proceed to get the message out.
2553 */
2554 if (!strncmp(func->name, "__ubsan_handle_", 15))
2555 return true;
2556
2557 return false;
2558}
2559
Peter Zijlstraea242132019-02-25 12:50:09 +01002560static int validate_call(struct instruction *insn, struct insn_state *state)
2561{
Peter Zijlstrac4a33932020-03-10 18:57:41 +01002562 if (state->noinstr && state->instr <= 0 &&
Peter Zijlstra6b643a02020-06-03 20:09:06 +02002563 !noinstr_call_dest(insn->call_dest)) {
Peter Zijlstrac4a33932020-03-10 18:57:41 +01002564 WARN_FUNC("call to %s() leaves .noinstr.text section",
2565 insn->sec, insn->offset, call_dest_name(insn));
2566 return 1;
2567 }
2568
Peter Zijlstraea242132019-02-25 12:50:09 +01002569 if (state->uaccess && !func_uaccess_safe(insn->call_dest)) {
2570 WARN_FUNC("call to %s() with UACCESS enabled",
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -05002571 insn->sec, insn->offset, call_dest_name(insn));
Peter Zijlstraea242132019-02-25 12:50:09 +01002572 return 1;
2573 }
2574
Peter Zijlstra2f0f9e92019-02-25 11:10:55 +01002575 if (state->df) {
2576 WARN_FUNC("call to %s() with DF set",
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -05002577 insn->sec, insn->offset, call_dest_name(insn));
Peter Zijlstra2f0f9e92019-02-25 11:10:55 +01002578 return 1;
2579 }
2580
Peter Zijlstraea242132019-02-25 12:50:09 +01002581 return 0;
2582}
2583
Peter Zijlstra54262aa2019-03-06 12:58:15 +01002584static int validate_sibling_call(struct instruction *insn, struct insn_state *state)
2585{
Peter Zijlstrae25eea82020-04-01 16:38:19 +02002586 if (has_modified_stack_frame(insn, state)) {
Peter Zijlstra54262aa2019-03-06 12:58:15 +01002587 WARN_FUNC("sibling call from callable instruction with modified stack frame",
2588 insn->sec, insn->offset);
2589 return 1;
2590 }
2591
Peter Zijlstraea242132019-02-25 12:50:09 +01002592 return validate_call(insn, state);
Peter Zijlstra54262aa2019-03-06 12:58:15 +01002593}
2594
Peter Zijlstraa92e92d2020-03-10 18:07:44 +01002595static int validate_return(struct symbol *func, struct instruction *insn, struct insn_state *state)
2596{
Peter Zijlstrac4a33932020-03-10 18:57:41 +01002597 if (state->noinstr && state->instr > 0) {
2598 WARN_FUNC("return with instrumentation enabled",
2599 insn->sec, insn->offset);
2600 return 1;
2601 }
2602
Peter Zijlstraa92e92d2020-03-10 18:07:44 +01002603 if (state->uaccess && !func_uaccess_safe(func)) {
2604 WARN_FUNC("return with UACCESS enabled",
2605 insn->sec, insn->offset);
2606 return 1;
2607 }
2608
2609 if (!state->uaccess && func_uaccess_safe(func)) {
2610 WARN_FUNC("return with UACCESS disabled from a UACCESS-safe function",
2611 insn->sec, insn->offset);
2612 return 1;
2613 }
2614
2615 if (state->df) {
2616 WARN_FUNC("return with DF set",
2617 insn->sec, insn->offset);
2618 return 1;
2619 }
2620
Peter Zijlstrae25eea82020-04-01 16:38:19 +02002621 if (func && has_modified_stack_frame(insn, state)) {
Peter Zijlstraa92e92d2020-03-10 18:07:44 +01002622 WARN_FUNC("return with modified stack frame",
2623 insn->sec, insn->offset);
2624 return 1;
2625 }
2626
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002627 if (state->cfi.bp_scratch) {
Josh Poimboeufb2966952020-04-01 13:23:29 -05002628 WARN_FUNC("BP used as a scratch register",
2629 insn->sec, insn->offset);
Peter Zijlstraa92e92d2020-03-10 18:07:44 +01002630 return 1;
2631 }
2632
2633 return 0;
2634}
2635
Josh Poimboeufc9c324d2020-12-18 14:26:21 -06002636static struct instruction *next_insn_to_validate(struct objtool_file *file,
2637 struct instruction *insn)
Peter Zijlstra7117f162020-04-28 19:37:01 +02002638{
Josh Poimboeufb23cc712020-12-18 14:19:32 -06002639 struct alt_group *alt_group = insn->alt_group;
Peter Zijlstra7117f162020-04-28 19:37:01 +02002640
Josh Poimboeufc9c324d2020-12-18 14:26:21 -06002641 /*
2642 * Simulate the fact that alternatives are patched in-place. When the
2643 * end of a replacement alt_group is reached, redirect objtool flow to
2644 * the end of the original alt_group.
2645 */
2646 if (alt_group && insn == alt_group->last_insn && alt_group->orig_group)
2647 return next_insn_same_sec(file, alt_group->orig_group->last_insn);
2648
2649 return next_insn_same_sec(file, insn);
Peter Zijlstra7117f162020-04-28 19:37:01 +02002650}
2651
2652/*
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002653 * Follow the branch starting at the given instruction, and recursively follow
2654 * any other branches (jumps). Meanwhile, track the frame pointer state at
2655 * each instruction and validate all the rules described in
2656 * tools/objtool/Documentation/stack-validation.txt.
2657 */
Josh Poimboeufc705cec2019-07-17 20:36:47 -05002658static int validate_branch(struct objtool_file *file, struct symbol *func,
Peter Zijlstrab7460462020-04-02 10:15:51 +02002659 struct instruction *insn, struct insn_state state)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002660{
2661 struct alternative *alt;
Peter Zijlstrab7460462020-04-02 10:15:51 +02002662 struct instruction *next_insn;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002663 struct section *sec;
Peter Zijlstra882a0db2019-07-24 17:47:26 -05002664 u8 visited;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002665 int ret;
2666
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002667 sec = insn->sec;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002668
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002669 while (1) {
Josh Poimboeufc9c324d2020-12-18 14:26:21 -06002670 next_insn = next_insn_to_validate(file, insn);
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002671
Josh Poimboeuf13810432018-05-09 22:39:15 -05002672 if (file->c_file && func && insn->func && func != insn->func->pfunc) {
Josh Poimboeufee976382017-08-11 12:24:15 -05002673 WARN("%s() falls through to next function %s()",
2674 func->name, insn->func->name);
2675 return 1;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002676 }
2677
Josh Poimboeuf48550222017-07-07 09:19:42 -05002678 if (func && insn->ignore) {
2679 WARN_FUNC("BUG: why am I validating an ignored function?",
2680 sec, insn->offset);
Josh Poimboeuf12b25722017-08-10 16:37:25 -05002681 return 1;
Josh Poimboeuf48550222017-07-07 09:19:42 -05002682 }
2683
Peter Zijlstra882a0db2019-07-24 17:47:26 -05002684 visited = 1 << state.uaccess;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002685 if (insn->visited) {
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002686 if (!insn->hint && !insn_cfi_match(insn, &state.cfi))
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002687 return 1;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002688
Peter Zijlstra882a0db2019-07-24 17:47:26 -05002689 if (insn->visited & visited)
Peter Zijlstraea242132019-02-25 12:50:09 +01002690 return 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002691 }
2692
Peter Zijlstrac4a33932020-03-10 18:57:41 +01002693 if (state.noinstr)
2694 state.instr += insn->instr;
2695
Peter Zijlstrac536ed22020-04-01 16:54:26 +02002696 if (insn->hint)
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002697 state.cfi = insn->cfi;
Peter Zijlstrac536ed22020-04-01 16:54:26 +02002698 else
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002699 insn->cfi = state.cfi;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002700
Peter Zijlstra882a0db2019-07-24 17:47:26 -05002701 insn->visited |= visited;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002702
Josh Poimboeufc9c324d2020-12-18 14:26:21 -06002703 if (propagate_alt_cfi(file, insn))
2704 return 1;
2705
Peter Zijlstra7117f162020-04-28 19:37:01 +02002706 if (!insn->ignore_alts && !list_empty(&insn->alts)) {
Peter Zijlstra764eef42019-03-01 11:19:03 +01002707 bool skip_orig = false;
2708
Josh Poimboeufa845c7c2018-01-29 22:00:39 -06002709 list_for_each_entry(alt, &insn->alts, list) {
Peter Zijlstra764eef42019-03-01 11:19:03 +01002710 if (alt->skip_orig)
2711 skip_orig = true;
2712
Josh Poimboeufc705cec2019-07-17 20:36:47 -05002713 ret = validate_branch(file, func, alt->insn, state);
Peter Zijlstra7697eee2019-03-01 11:15:49 +01002714 if (ret) {
2715 if (backtrace)
2716 BT_FUNC("(alt)", insn);
2717 return ret;
2718 }
Josh Poimboeufa845c7c2018-01-29 22:00:39 -06002719 }
Peter Zijlstra764eef42019-03-01 11:19:03 +01002720
2721 if (skip_orig)
2722 return 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002723 }
2724
Peter Zijlstrad54dba42021-02-11 13:03:28 +01002725 if (handle_insn_ops(insn, next_insn, &state))
Peter Zijlstra60041bc2020-04-24 16:16:41 +02002726 return 1;
2727
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002728 switch (insn->type) {
2729
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002730 case INSN_RETURN:
Peter Zijlstraa92e92d2020-03-10 18:07:44 +01002731 return validate_return(func, insn, &state);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002732
2733 case INSN_CALL:
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002734 case INSN_CALL_DYNAMIC:
Peter Zijlstraea242132019-02-25 12:50:09 +01002735 ret = validate_call(insn, &state);
2736 if (ret)
2737 return ret;
2738
Josh Poimboeufc9bab222019-07-17 20:36:51 -05002739 if (!no_fp && func && !is_fentry_call(insn) &&
2740 !has_valid_stack_frame(&state)) {
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002741 WARN_FUNC("call without frame pointer save/setup",
2742 sec, insn->offset);
2743 return 1;
2744 }
Josh Poimboeufc9bab222019-07-17 20:36:51 -05002745
2746 if (dead_end_function(file, insn->call_dest))
2747 return 0;
2748
Josh Poimboeuf1e7e4782020-08-18 15:57:45 +02002749 if (insn->type == INSN_CALL && insn->call_dest->static_call_tramp) {
2750 list_add_tail(&insn->static_call_node,
2751 &file->static_call_list);
2752 }
2753
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002754 break;
2755
2756 case INSN_JUMP_CONDITIONAL:
2757 case INSN_JUMP_UNCONDITIONAL:
Josh Poimboeufecf11ba2021-01-21 15:29:22 -06002758 if (is_sibling_call(insn)) {
Peter Zijlstra54262aa2019-03-06 12:58:15 +01002759 ret = validate_sibling_call(insn, &state);
2760 if (ret)
2761 return ret;
2762
Josh Poimboeuf0c1ddd32019-07-17 20:36:52 -05002763 } else if (insn->jump_dest) {
Josh Poimboeufc705cec2019-07-17 20:36:47 -05002764 ret = validate_branch(file, func,
2765 insn->jump_dest, state);
Peter Zijlstra7697eee2019-03-01 11:15:49 +01002766 if (ret) {
2767 if (backtrace)
2768 BT_FUNC("(branch)", insn);
2769 return ret;
2770 }
Josh Poimboeuf48550222017-07-07 09:19:42 -05002771 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002772
2773 if (insn->type == INSN_JUMP_UNCONDITIONAL)
2774 return 0;
2775
2776 break;
2777
2778 case INSN_JUMP_DYNAMIC:
Josh Poimboeufb68b9902019-07-17 20:36:57 -05002779 case INSN_JUMP_DYNAMIC_CONDITIONAL:
Josh Poimboeufecf11ba2021-01-21 15:29:22 -06002780 if (is_sibling_call(insn)) {
Peter Zijlstra54262aa2019-03-06 12:58:15 +01002781 ret = validate_sibling_call(insn, &state);
2782 if (ret)
2783 return ret;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002784 }
2785
Josh Poimboeufb68b9902019-07-17 20:36:57 -05002786 if (insn->type == INSN_JUMP_DYNAMIC)
2787 return 0;
2788
2789 break;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002790
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002791 case INSN_CONTEXT_SWITCH:
2792 if (func && (!next_insn || !next_insn->hint)) {
2793 WARN_FUNC("unsupported instruction in callable function",
2794 sec, insn->offset);
2795 return 1;
2796 }
2797 return 0;
2798
Peter Zijlstraea242132019-02-25 12:50:09 +01002799 case INSN_STAC:
2800 if (state.uaccess) {
2801 WARN_FUNC("recursive UACCESS enable", sec, insn->offset);
2802 return 1;
2803 }
2804
2805 state.uaccess = true;
2806 break;
2807
2808 case INSN_CLAC:
Josh Poimboeufc705cec2019-07-17 20:36:47 -05002809 if (!state.uaccess && func) {
Peter Zijlstraea242132019-02-25 12:50:09 +01002810 WARN_FUNC("redundant UACCESS disable", sec, insn->offset);
2811 return 1;
2812 }
2813
2814 if (func_uaccess_safe(func) && !state.uaccess_stack) {
2815 WARN_FUNC("UACCESS-safe disables UACCESS", sec, insn->offset);
2816 return 1;
2817 }
2818
2819 state.uaccess = false;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002820 break;
2821
Peter Zijlstra2f0f9e92019-02-25 11:10:55 +01002822 case INSN_STD:
Josh Poimboeuf6f567c92021-01-21 15:29:17 -06002823 if (state.df) {
Peter Zijlstra2f0f9e92019-02-25 11:10:55 +01002824 WARN_FUNC("recursive STD", sec, insn->offset);
Josh Poimboeuf6f567c92021-01-21 15:29:17 -06002825 return 1;
2826 }
Peter Zijlstra2f0f9e92019-02-25 11:10:55 +01002827
2828 state.df = true;
2829 break;
2830
2831 case INSN_CLD:
Josh Poimboeuf6f567c92021-01-21 15:29:17 -06002832 if (!state.df && func) {
Peter Zijlstra2f0f9e92019-02-25 11:10:55 +01002833 WARN_FUNC("redundant CLD", sec, insn->offset);
Josh Poimboeuf6f567c92021-01-21 15:29:17 -06002834 return 1;
2835 }
Peter Zijlstra2f0f9e92019-02-25 11:10:55 +01002836
2837 state.df = false;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002838 break;
2839
2840 default:
2841 break;
2842 }
2843
2844 if (insn->dead_end)
2845 return 0;
2846
Josh Poimboeuf00d96182017-09-18 21:43:30 -05002847 if (!next_insn) {
Peter Zijlstrae7c02192020-03-25 14:04:45 +01002848 if (state.cfi.cfa.base == CFI_UNDEFINED)
Josh Poimboeuf00d96182017-09-18 21:43:30 -05002849 return 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002850 WARN("%s: unexpected end of section", sec->name);
2851 return 1;
2852 }
Josh Poimboeuf00d96182017-09-18 21:43:30 -05002853
2854 insn = next_insn;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002855 }
2856
2857 return 0;
2858}
2859
Peter Zijlstra932f8e92020-03-23 18:26:03 +01002860static int validate_unwind_hints(struct objtool_file *file, struct section *sec)
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002861{
2862 struct instruction *insn;
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002863 struct insn_state state;
Peter Zijlstra932f8e92020-03-23 18:26:03 +01002864 int ret, warnings = 0;
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002865
2866 if (!file->hints)
2867 return 0;
2868
Peter Zijlstra932f8e92020-03-23 18:26:03 +01002869 init_insn_state(&state, sec);
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002870
Peter Zijlstra932f8e92020-03-23 18:26:03 +01002871 if (sec) {
2872 insn = find_insn(file, sec, 0);
2873 if (!insn)
2874 return 0;
2875 } else {
2876 insn = list_first_entry(&file->insn_list, typeof(*insn), list);
2877 }
2878
2879 while (&insn->list != &file->insn_list && (!sec || insn->sec == sec)) {
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002880 if (insn->hint && !insn->visited) {
Josh Poimboeufc705cec2019-07-17 20:36:47 -05002881 ret = validate_branch(file, insn->func, insn, state);
Peter Zijlstra7697eee2019-03-01 11:15:49 +01002882 if (ret && backtrace)
2883 BT_FUNC("<=== (hint)", insn);
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002884 warnings += ret;
2885 }
Peter Zijlstra932f8e92020-03-23 18:26:03 +01002886
2887 insn = list_next_entry(insn, list);
Josh Poimboeuf39358a02017-07-11 10:33:43 -05002888 }
2889
2890 return warnings;
2891}
2892
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01002893static int validate_retpoline(struct objtool_file *file)
2894{
2895 struct instruction *insn;
2896 int warnings = 0;
2897
2898 for_each_insn(file, insn) {
2899 if (insn->type != INSN_JUMP_DYNAMIC &&
2900 insn->type != INSN_CALL_DYNAMIC)
2901 continue;
2902
2903 if (insn->retpoline_safe)
2904 continue;
2905
Peter Zijlstraca41b972018-01-31 10:18:28 +01002906 /*
2907 * .init.text code is ran before userspace and thus doesn't
2908 * strictly need retpolines, except for modules which are
2909 * loaded late, they very much do need retpoline in their
2910 * .init.text
2911 */
2912 if (!strcmp(insn->sec->name, ".init.text") && !module)
2913 continue;
2914
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01002915 WARN_FUNC("indirect %s found in RETPOLINE build",
2916 insn->sec, insn->offset,
2917 insn->type == INSN_JUMP_DYNAMIC ? "jump" : "call");
2918
2919 warnings++;
2920 }
2921
2922 return warnings;
2923}
2924
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002925static bool is_kasan_insn(struct instruction *insn)
2926{
2927 return (insn->type == INSN_CALL &&
2928 !strcmp(insn->call_dest->name, "__asan_handle_no_return"));
2929}
2930
2931static bool is_ubsan_insn(struct instruction *insn)
2932{
2933 return (insn->type == INSN_CALL &&
2934 !strcmp(insn->call_dest->name,
2935 "__ubsan_handle_builtin_unreachable"));
2936}
2937
Ilie Halip14db1f02020-09-19 09:41:18 +03002938static bool ignore_unreachable_insn(struct objtool_file *file, struct instruction *insn)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002939{
2940 int i;
Ilie Halip14db1f02020-09-19 09:41:18 +03002941 struct instruction *prev_insn;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002942
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002943 if (insn->ignore || insn->type == INSN_NOP)
2944 return true;
2945
2946 /*
2947 * Ignore any unused exceptions. This can happen when a whitelisted
2948 * function has an exception table entry.
Josh Poimboeuf0e2bb2b2017-07-27 15:56:54 -05002949 *
2950 * Also ignore alternative replacement instructions. This can happen
2951 * when a whitelisted function uses one of the ALTERNATIVE macros.
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002952 */
Josh Poimboeuf0e2bb2b2017-07-27 15:56:54 -05002953 if (!strcmp(insn->sec->name, ".fixup") ||
2954 !strcmp(insn->sec->name, ".altinstr_replacement") ||
2955 !strcmp(insn->sec->name, ".altinstr_aux"))
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002956 return true;
2957
Josh Poimboeufbd841d62020-04-01 13:23:25 -05002958 if (!insn->func)
2959 return false;
2960
2961 /*
2962 * CONFIG_UBSAN_TRAP inserts a UD2 when it sees
2963 * __builtin_unreachable(). The BUG() macro has an unreachable() after
2964 * the UD2, which causes GCC's undefined trap logic to emit another UD2
2965 * (or occasionally a JMP to UD2).
Ilie Halip14db1f02020-09-19 09:41:18 +03002966 *
2967 * It may also insert a UD2 after calling a __noreturn function.
Josh Poimboeufbd841d62020-04-01 13:23:25 -05002968 */
Ilie Halip14db1f02020-09-19 09:41:18 +03002969 prev_insn = list_prev_entry(insn, list);
2970 if ((prev_insn->dead_end || dead_end_function(file, prev_insn->call_dest)) &&
Josh Poimboeufbd841d62020-04-01 13:23:25 -05002971 (insn->type == INSN_BUG ||
2972 (insn->type == INSN_JUMP_UNCONDITIONAL &&
2973 insn->jump_dest && insn->jump_dest->type == INSN_BUG)))
2974 return true;
2975
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002976 /*
2977 * Check if this (or a subsequent) instruction is related to
2978 * CONFIG_UBSAN or CONFIG_KASAN.
2979 *
2980 * End the search at 5 instructions to avoid going into the weeds.
2981 */
2982 for (i = 0; i < 5; i++) {
2983
2984 if (is_kasan_insn(insn) || is_ubsan_insn(insn))
2985 return true;
2986
Josh Poimboeuffe24e272018-02-08 17:09:25 -06002987 if (insn->type == INSN_JUMP_UNCONDITIONAL) {
2988 if (insn->jump_dest &&
2989 insn->jump_dest->func == insn->func) {
2990 insn = insn->jump_dest;
2991 continue;
2992 }
2993
2994 break;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002995 }
2996
Josh Poimboeufbaa41462017-06-28 10:11:07 -05002997 if (insn->offset + insn->len >= insn->func->offset + insn->func->len)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05002998 break;
Josh Poimboeuffe24e272018-02-08 17:09:25 -06002999
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05003000 insn = list_next_entry(insn, list);
3001 }
3002
3003 return false;
3004}
3005
Peter Zijlstra4b5e2e72020-03-23 21:17:50 +01003006static int validate_symbol(struct objtool_file *file, struct section *sec,
3007 struct symbol *sym, struct insn_state *state)
3008{
3009 struct instruction *insn;
3010 int ret;
3011
3012 if (!sym->len) {
3013 WARN("%s() is missing an ELF size annotation", sym->name);
3014 return 1;
3015 }
3016
3017 if (sym->pfunc != sym || sym->alias != sym)
3018 return 0;
3019
3020 insn = find_insn(file, sec, sym->offset);
3021 if (!insn || insn->ignore || insn->visited)
3022 return 0;
3023
3024 state->uaccess = sym->uaccess_safe;
3025
3026 ret = validate_branch(file, insn->func, insn, *state);
3027 if (ret && backtrace)
3028 BT_FUNC("<=== (sym)", insn);
3029 return ret;
3030}
3031
Peter Zijlstra350994b2020-03-23 20:57:13 +01003032static int validate_section(struct objtool_file *file, struct section *sec)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05003033{
Josh Poimboeufbaa41462017-06-28 10:11:07 -05003034 struct insn_state state;
Peter Zijlstra4b5e2e72020-03-23 21:17:50 +01003035 struct symbol *func;
3036 int warnings = 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05003037
Peter Zijlstra350994b2020-03-23 20:57:13 +01003038 list_for_each_entry(func, &sec->symbol_list, list) {
3039 if (func->type != STT_FUNC)
3040 continue;
Josh Poimboeufe10cd8f2019-07-17 20:36:48 -05003041
Peter Zijlstra932f8e92020-03-23 18:26:03 +01003042 init_insn_state(&state, sec);
Josh Poimboeufb735bd32021-01-21 15:29:24 -06003043 set_func_state(&state.cfi);
Julien Thierry0699e552020-03-27 15:28:40 +00003044
Peter Zijlstra4b5e2e72020-03-23 21:17:50 +01003045 warnings += validate_symbol(file, sec, func, &state);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05003046 }
3047
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05003048 return warnings;
3049}
3050
Peter Zijlstrac4a33932020-03-10 18:57:41 +01003051static int validate_vmlinux_functions(struct objtool_file *file)
3052{
3053 struct section *sec;
Peter Zijlstra932f8e92020-03-23 18:26:03 +01003054 int warnings = 0;
Peter Zijlstrac4a33932020-03-10 18:57:41 +01003055
3056 sec = find_section_by_name(file->elf, ".noinstr.text");
Thomas Gleixner0cc9ac8d2020-03-25 17:18:17 +01003057 if (sec) {
3058 warnings += validate_section(file, sec);
3059 warnings += validate_unwind_hints(file, sec);
3060 }
Peter Zijlstrac4a33932020-03-10 18:57:41 +01003061
Thomas Gleixner0cc9ac8d2020-03-25 17:18:17 +01003062 sec = find_section_by_name(file->elf, ".entry.text");
3063 if (sec) {
3064 warnings += validate_section(file, sec);
3065 warnings += validate_unwind_hints(file, sec);
3066 }
Peter Zijlstra932f8e92020-03-23 18:26:03 +01003067
3068 return warnings;
Peter Zijlstrac4a33932020-03-10 18:57:41 +01003069}
3070
Peter Zijlstra350994b2020-03-23 20:57:13 +01003071static int validate_functions(struct objtool_file *file)
3072{
3073 struct section *sec;
3074 int warnings = 0;
3075
Peter Zijlstrada837bd2020-03-23 21:11:14 +01003076 for_each_sec(file, sec) {
3077 if (!(sec->sh.sh_flags & SHF_EXECINSTR))
3078 continue;
3079
Peter Zijlstra350994b2020-03-23 20:57:13 +01003080 warnings += validate_section(file, sec);
Peter Zijlstrada837bd2020-03-23 21:11:14 +01003081 }
Peter Zijlstra350994b2020-03-23 20:57:13 +01003082
3083 return warnings;
3084}
3085
Josh Poimboeufbaa41462017-06-28 10:11:07 -05003086static int validate_reachable_instructions(struct objtool_file *file)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05003087{
3088 struct instruction *insn;
Josh Poimboeufbaa41462017-06-28 10:11:07 -05003089
3090 if (file->ignore_unreachables)
3091 return 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05003092
3093 for_each_insn(file, insn) {
Ilie Halip14db1f02020-09-19 09:41:18 +03003094 if (insn->visited || ignore_unreachable_insn(file, insn))
Josh Poimboeufbaa41462017-06-28 10:11:07 -05003095 continue;
3096
Josh Poimboeufbaa41462017-06-28 10:11:07 -05003097 WARN_FUNC("unreachable instruction", insn->sec, insn->offset);
3098 return 1;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05003099 }
3100
Josh Poimboeufbaa41462017-06-28 10:11:07 -05003101 return 0;
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05003102}
3103
Julien Thierryd44becb2020-08-25 13:47:40 +01003104int check(struct objtool_file *file)
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05003105{
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05003106 int ret, warnings = 0;
3107
Josh Poimboeufbaa41462017-06-28 10:11:07 -05003108 arch_initial_func_cfi_state(&initial_func_cfi);
3109
Julien Thierry6545eb02020-08-25 13:47:39 +01003110 ret = decode_sections(file);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05003111 if (ret < 0)
3112 goto out;
3113 warnings += ret;
3114
Julien Thierry6545eb02020-08-25 13:47:39 +01003115 if (list_empty(&file->insn_list))
Josh Poimboeufbaa41462017-06-28 10:11:07 -05003116 goto out;
3117
Peter Zijlstrac4a33932020-03-10 18:57:41 +01003118 if (vmlinux && !validate_dup) {
Julien Thierry6545eb02020-08-25 13:47:39 +01003119 ret = validate_vmlinux_functions(file);
Peter Zijlstrac4a33932020-03-10 18:57:41 +01003120 if (ret < 0)
3121 goto out;
3122
3123 warnings += ret;
3124 goto out;
3125 }
3126
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01003127 if (retpoline) {
Julien Thierry6545eb02020-08-25 13:47:39 +01003128 ret = validate_retpoline(file);
Peter Zijlstrab5bc2232018-01-16 10:24:06 +01003129 if (ret < 0)
3130 return ret;
3131 warnings += ret;
3132 }
3133
Julien Thierry6545eb02020-08-25 13:47:39 +01003134 ret = validate_functions(file);
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05003135 if (ret < 0)
3136 goto out;
3137 warnings += ret;
3138
Julien Thierry6545eb02020-08-25 13:47:39 +01003139 ret = validate_unwind_hints(file, NULL);
Josh Poimboeuf39358a02017-07-11 10:33:43 -05003140 if (ret < 0)
3141 goto out;
3142 warnings += ret;
3143
Josh Poimboeufbaa41462017-06-28 10:11:07 -05003144 if (!warnings) {
Julien Thierry6545eb02020-08-25 13:47:39 +01003145 ret = validate_reachable_instructions(file);
Josh Poimboeufbaa41462017-06-28 10:11:07 -05003146 if (ret < 0)
3147 goto out;
3148 warnings += ret;
3149 }
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05003150
Julien Thierry6545eb02020-08-25 13:47:39 +01003151 ret = create_static_call_sections(file);
Josh Poimboeuf1e7e4782020-08-18 15:57:45 +02003152 if (ret < 0)
3153 goto out;
3154 warnings += ret;
3155
Peter Zijlstra99d00212020-08-06 15:14:09 -07003156 if (mcount) {
3157 ret = create_mcount_loc_sections(file);
3158 if (ret < 0)
3159 goto out;
3160 warnings += ret;
3161 }
3162
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05003163out:
Josh Poimboeuf655cf862021-01-14 16:32:42 -06003164 /*
3165 * For now, don't fail the kernel build on fatal warnings. These
3166 * errors are still fairly common due to the growing matrix of
3167 * supported toolchains and their recent pace of change.
3168 */
Josh Poimboeufdcc914f2017-06-28 10:11:05 -05003169 return 0;
3170}