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