Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015-2017 Josh Poimboeuf <jpoimboe@redhat.com> |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public License |
| 6 | * as published by the Free Software Foundation; either version 2 |
| 7 | * of the License, or (at your option) any later version. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
| 16 | */ |
| 17 | |
| 18 | #include <string.h> |
| 19 | #include <stdlib.h> |
| 20 | |
Peter Zijlstra | 43a4525 | 2018-01-16 17:16:32 +0100 | [diff] [blame] | 21 | #include "builtin.h" |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 22 | #include "check.h" |
| 23 | #include "elf.h" |
| 24 | #include "special.h" |
| 25 | #include "arch.h" |
| 26 | #include "warn.h" |
| 27 | |
| 28 | #include <linux/hashtable.h> |
| 29 | #include <linux/kernel.h> |
| 30 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 31 | struct alternative { |
| 32 | struct list_head list; |
| 33 | struct instruction *insn; |
| 34 | }; |
| 35 | |
| 36 | const char *objname; |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 37 | struct cfi_state initial_func_cfi; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 38 | |
Josh Poimboeuf | 627fce1 | 2017-07-11 10:33:42 -0500 | [diff] [blame] | 39 | struct instruction *find_insn(struct objtool_file *file, |
| 40 | struct section *sec, unsigned long offset) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 41 | { |
| 42 | struct instruction *insn; |
| 43 | |
| 44 | hash_for_each_possible(file->insn_hash, insn, hash, offset) |
| 45 | if (insn->sec == sec && insn->offset == offset) |
| 46 | return insn; |
| 47 | |
| 48 | return NULL; |
| 49 | } |
| 50 | |
| 51 | static struct instruction *next_insn_same_sec(struct objtool_file *file, |
| 52 | struct instruction *insn) |
| 53 | { |
| 54 | struct instruction *next = list_next_entry(insn, list); |
| 55 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 56 | if (!next || &next->list == &file->insn_list || next->sec != insn->sec) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 57 | return NULL; |
| 58 | |
| 59 | return next; |
| 60 | } |
| 61 | |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 62 | static struct instruction *next_insn_same_func(struct objtool_file *file, |
| 63 | struct instruction *insn) |
| 64 | { |
| 65 | struct instruction *next = list_next_entry(insn, list); |
| 66 | struct symbol *func = insn->func; |
| 67 | |
| 68 | if (!func) |
| 69 | return NULL; |
| 70 | |
| 71 | if (&next->list != &file->insn_list && next->func == func) |
| 72 | return next; |
| 73 | |
| 74 | /* Check if we're already in the subfunction: */ |
| 75 | if (func == func->cfunc) |
| 76 | return NULL; |
| 77 | |
| 78 | /* Move to the subfunction: */ |
| 79 | return find_insn(file, func->cfunc->sec, func->cfunc->offset); |
| 80 | } |
| 81 | |
| 82 | #define func_for_each_insn_all(file, func, insn) \ |
| 83 | for (insn = find_insn(file, func->sec, func->offset); \ |
| 84 | insn; \ |
| 85 | insn = next_insn_same_func(file, insn)) |
| 86 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 87 | #define func_for_each_insn(file, func, insn) \ |
| 88 | for (insn = find_insn(file, func->sec, func->offset); \ |
| 89 | insn && &insn->list != &file->insn_list && \ |
| 90 | insn->sec == func->sec && \ |
| 91 | insn->offset < func->offset + func->len; \ |
| 92 | insn = list_next_entry(insn, list)) |
| 93 | |
| 94 | #define func_for_each_insn_continue_reverse(file, func, insn) \ |
| 95 | for (insn = list_prev_entry(insn, list); \ |
| 96 | &insn->list != &file->insn_list && \ |
| 97 | insn->sec == func->sec && insn->offset >= func->offset; \ |
| 98 | insn = list_prev_entry(insn, list)) |
| 99 | |
| 100 | #define sec_for_each_insn_from(file, insn) \ |
| 101 | for (; insn; insn = next_insn_same_sec(file, insn)) |
| 102 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 103 | #define sec_for_each_insn_continue(file, insn) \ |
| 104 | for (insn = next_insn_same_sec(file, insn); insn; \ |
| 105 | insn = next_insn_same_sec(file, insn)) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 106 | |
| 107 | /* |
| 108 | * Check if the function has been manually whitelisted with the |
| 109 | * STACK_FRAME_NON_STANDARD macro, or if it should be automatically whitelisted |
| 110 | * due to its use of a context switching instruction. |
| 111 | */ |
| 112 | static bool ignore_func(struct objtool_file *file, struct symbol *func) |
| 113 | { |
| 114 | struct rela *rela; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 115 | |
| 116 | /* check for STACK_FRAME_NON_STANDARD */ |
| 117 | if (file->whitelist && file->whitelist->rela) |
| 118 | list_for_each_entry(rela, &file->whitelist->rela->rela_list, list) { |
| 119 | if (rela->sym->type == STT_SECTION && |
| 120 | rela->sym->sec == func->sec && |
| 121 | rela->addend == func->offset) |
| 122 | return true; |
| 123 | if (rela->sym->type == STT_FUNC && rela->sym == func) |
| 124 | return true; |
| 125 | } |
| 126 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 127 | return false; |
| 128 | } |
| 129 | |
| 130 | /* |
| 131 | * This checks to see if the given function is a "noreturn" function. |
| 132 | * |
| 133 | * For global functions which are outside the scope of this object file, we |
| 134 | * have to keep a manual list of them. |
| 135 | * |
| 136 | * For local functions, we have to detect them manually by simply looking for |
| 137 | * the lack of a return instruction. |
| 138 | * |
| 139 | * Returns: |
| 140 | * -1: error |
| 141 | * 0: no dead end |
| 142 | * 1: dead end |
| 143 | */ |
| 144 | static int __dead_end_function(struct objtool_file *file, struct symbol *func, |
| 145 | int recursion) |
| 146 | { |
| 147 | int i; |
| 148 | struct instruction *insn; |
| 149 | bool empty = true; |
| 150 | |
| 151 | /* |
| 152 | * Unfortunately these have to be hard coded because the noreturn |
| 153 | * attribute isn't provided in ELF data. |
| 154 | */ |
| 155 | static const char * const global_noreturns[] = { |
| 156 | "__stack_chk_fail", |
| 157 | "panic", |
| 158 | "do_exit", |
| 159 | "do_task_dead", |
| 160 | "__module_put_and_exit", |
| 161 | "complete_and_exit", |
| 162 | "kvm_spurious_fault", |
| 163 | "__reiserfs_panic", |
| 164 | "lbug_with_loc", |
| 165 | "fortify_panic", |
Kees Cook | b394d46 | 2018-01-10 14:22:38 -0800 | [diff] [blame] | 166 | "usercopy_abort", |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 167 | }; |
| 168 | |
| 169 | if (func->bind == STB_WEAK) |
| 170 | return 0; |
| 171 | |
| 172 | if (func->bind == STB_GLOBAL) |
| 173 | for (i = 0; i < ARRAY_SIZE(global_noreturns); i++) |
| 174 | if (!strcmp(func->name, global_noreturns[i])) |
| 175 | return 1; |
| 176 | |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 177 | if (!func->len) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 178 | return 0; |
| 179 | |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 180 | insn = find_insn(file, func->sec, func->offset); |
| 181 | if (!insn->func) |
| 182 | return 0; |
| 183 | |
| 184 | func_for_each_insn_all(file, func, insn) { |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 185 | empty = false; |
| 186 | |
| 187 | if (insn->type == INSN_RETURN) |
| 188 | return 0; |
| 189 | } |
| 190 | |
| 191 | if (empty) |
| 192 | return 0; |
| 193 | |
| 194 | /* |
| 195 | * A function can have a sibling call instead of a return. In that |
| 196 | * case, the function's dead-end status depends on whether the target |
| 197 | * of the sibling call returns. |
| 198 | */ |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 199 | func_for_each_insn_all(file, func, insn) { |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 200 | if (insn->type == INSN_JUMP_UNCONDITIONAL) { |
| 201 | struct instruction *dest = insn->jump_dest; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 202 | |
| 203 | if (!dest) |
| 204 | /* sibling call to another file */ |
| 205 | return 0; |
| 206 | |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 207 | if (dest->func && dest->func->pfunc != insn->func->pfunc) { |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 208 | |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 209 | /* local sibling call */ |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 210 | if (recursion == 5) { |
Josh Poimboeuf | 0afd0d9 | 2018-05-09 22:39:14 -0500 | [diff] [blame] | 211 | /* |
| 212 | * Infinite recursion: two functions |
| 213 | * have sibling calls to each other. |
| 214 | * This is a very rare case. It means |
| 215 | * they aren't dead ends. |
| 216 | */ |
| 217 | return 0; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 218 | } |
| 219 | |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 220 | return __dead_end_function(file, dest->func, |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 221 | recursion + 1); |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | if (insn->type == INSN_JUMP_DYNAMIC && list_empty(&insn->alts)) |
| 226 | /* sibling call */ |
| 227 | return 0; |
| 228 | } |
| 229 | |
| 230 | return 1; |
| 231 | } |
| 232 | |
| 233 | static int dead_end_function(struct objtool_file *file, struct symbol *func) |
| 234 | { |
| 235 | return __dead_end_function(file, func, 0); |
| 236 | } |
| 237 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 238 | static void clear_insn_state(struct insn_state *state) |
| 239 | { |
| 240 | int i; |
| 241 | |
| 242 | memset(state, 0, sizeof(*state)); |
| 243 | state->cfa.base = CFI_UNDEFINED; |
Josh Poimboeuf | dd88a0a | 2017-08-29 12:51:03 -0500 | [diff] [blame] | 244 | for (i = 0; i < CFI_NUM_REGS; i++) { |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 245 | state->regs[i].base = CFI_UNDEFINED; |
Josh Poimboeuf | dd88a0a | 2017-08-29 12:51:03 -0500 | [diff] [blame] | 246 | state->vals[i].base = CFI_UNDEFINED; |
| 247 | } |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 248 | state->drap_reg = CFI_UNDEFINED; |
Josh Poimboeuf | bf4d1a8 | 2017-08-10 16:37:26 -0500 | [diff] [blame] | 249 | state->drap_offset = -1; |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 250 | } |
| 251 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 252 | /* |
| 253 | * Call the arch-specific instruction decoder for all the instructions and add |
| 254 | * them to the global instruction list. |
| 255 | */ |
| 256 | static int decode_instructions(struct objtool_file *file) |
| 257 | { |
| 258 | struct section *sec; |
| 259 | struct symbol *func; |
| 260 | unsigned long offset; |
| 261 | struct instruction *insn; |
| 262 | int ret; |
| 263 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 264 | for_each_sec(file, sec) { |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 265 | |
| 266 | if (!(sec->sh.sh_flags & SHF_EXECINSTR)) |
| 267 | continue; |
| 268 | |
Josh Poimboeuf | 627fce1 | 2017-07-11 10:33:42 -0500 | [diff] [blame] | 269 | if (strcmp(sec->name, ".altinstr_replacement") && |
| 270 | strcmp(sec->name, ".altinstr_aux") && |
| 271 | strncmp(sec->name, ".discard.", 9)) |
| 272 | sec->text = true; |
| 273 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 274 | for (offset = 0; offset < sec->len; offset += insn->len) { |
| 275 | insn = malloc(sizeof(*insn)); |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 276 | if (!insn) { |
| 277 | WARN("malloc failed"); |
| 278 | return -1; |
| 279 | } |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 280 | memset(insn, 0, sizeof(*insn)); |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 281 | INIT_LIST_HEAD(&insn->alts); |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 282 | clear_insn_state(&insn->state); |
| 283 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 284 | insn->sec = sec; |
| 285 | insn->offset = offset; |
| 286 | |
| 287 | ret = arch_decode_instruction(file->elf, sec, offset, |
| 288 | sec->len - offset, |
| 289 | &insn->len, &insn->type, |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 290 | &insn->immediate, |
| 291 | &insn->stack_op); |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 292 | if (ret) |
Kamalesh Babulal | b703798 | 2017-10-19 11:27:24 -0500 | [diff] [blame] | 293 | goto err; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 294 | |
| 295 | if (!insn->type || insn->type > INSN_LAST) { |
| 296 | WARN_FUNC("invalid instruction type %d", |
| 297 | insn->sec, insn->offset, insn->type); |
Kamalesh Babulal | b703798 | 2017-10-19 11:27:24 -0500 | [diff] [blame] | 298 | ret = -1; |
| 299 | goto err; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | hash_add(file->insn_hash, &insn->hash, insn->offset); |
| 303 | list_add_tail(&insn->list, &file->insn_list); |
| 304 | } |
| 305 | |
| 306 | list_for_each_entry(func, &sec->symbol_list, list) { |
| 307 | if (func->type != STT_FUNC) |
| 308 | continue; |
| 309 | |
| 310 | if (!find_insn(file, sec, func->offset)) { |
| 311 | WARN("%s(): can't find starting instruction", |
| 312 | func->name); |
| 313 | return -1; |
| 314 | } |
| 315 | |
| 316 | func_for_each_insn(file, func, insn) |
| 317 | if (!insn->func) |
| 318 | insn->func = func; |
| 319 | } |
| 320 | } |
| 321 | |
| 322 | return 0; |
Kamalesh Babulal | b703798 | 2017-10-19 11:27:24 -0500 | [diff] [blame] | 323 | |
| 324 | err: |
| 325 | free(insn); |
| 326 | return ret; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | /* |
Josh Poimboeuf | 649ea4d | 2017-07-27 15:56:53 -0500 | [diff] [blame] | 330 | * Mark "ud2" instructions and manually annotated dead ends. |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 331 | */ |
| 332 | static int add_dead_ends(struct objtool_file *file) |
| 333 | { |
| 334 | struct section *sec; |
| 335 | struct rela *rela; |
| 336 | struct instruction *insn; |
| 337 | bool found; |
| 338 | |
Josh Poimboeuf | 649ea4d | 2017-07-27 15:56:53 -0500 | [diff] [blame] | 339 | /* |
| 340 | * By default, "ud2" is a dead end unless otherwise annotated, because |
| 341 | * GCC 7 inserts it for certain divide-by-zero cases. |
| 342 | */ |
| 343 | for_each_insn(file, insn) |
| 344 | if (insn->type == INSN_BUG) |
| 345 | insn->dead_end = true; |
| 346 | |
| 347 | /* |
| 348 | * Check for manually annotated dead ends. |
| 349 | */ |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 350 | sec = find_section_by_name(file->elf, ".rela.discard.unreachable"); |
| 351 | if (!sec) |
Josh Poimboeuf | 649ea4d | 2017-07-27 15:56:53 -0500 | [diff] [blame] | 352 | goto reachable; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 353 | |
| 354 | list_for_each_entry(rela, &sec->rela_list, list) { |
| 355 | if (rela->sym->type != STT_SECTION) { |
| 356 | WARN("unexpected relocation symbol type in %s", sec->name); |
| 357 | return -1; |
| 358 | } |
| 359 | insn = find_insn(file, rela->sym->sec, rela->addend); |
| 360 | if (insn) |
| 361 | insn = list_prev_entry(insn, list); |
| 362 | else if (rela->addend == rela->sym->sec->len) { |
| 363 | found = false; |
| 364 | list_for_each_entry_reverse(insn, &file->insn_list, list) { |
| 365 | if (insn->sec == rela->sym->sec) { |
| 366 | found = true; |
| 367 | break; |
| 368 | } |
| 369 | } |
| 370 | |
| 371 | if (!found) { |
| 372 | WARN("can't find unreachable insn at %s+0x%x", |
| 373 | rela->sym->sec->name, rela->addend); |
| 374 | return -1; |
| 375 | } |
| 376 | } else { |
| 377 | WARN("can't find unreachable insn at %s+0x%x", |
| 378 | rela->sym->sec->name, rela->addend); |
| 379 | return -1; |
| 380 | } |
| 381 | |
| 382 | insn->dead_end = true; |
| 383 | } |
| 384 | |
Josh Poimboeuf | 649ea4d | 2017-07-27 15:56:53 -0500 | [diff] [blame] | 385 | reachable: |
| 386 | /* |
| 387 | * These manually annotated reachable checks are needed for GCC 4.4, |
| 388 | * where the Linux unreachable() macro isn't supported. In that case |
| 389 | * GCC doesn't know the "ud2" is fatal, so it generates code as if it's |
| 390 | * not a dead end. |
| 391 | */ |
| 392 | sec = find_section_by_name(file->elf, ".rela.discard.reachable"); |
| 393 | if (!sec) |
| 394 | return 0; |
| 395 | |
| 396 | list_for_each_entry(rela, &sec->rela_list, list) { |
| 397 | if (rela->sym->type != STT_SECTION) { |
| 398 | WARN("unexpected relocation symbol type in %s", sec->name); |
| 399 | return -1; |
| 400 | } |
| 401 | insn = find_insn(file, rela->sym->sec, rela->addend); |
| 402 | if (insn) |
| 403 | insn = list_prev_entry(insn, list); |
| 404 | else if (rela->addend == rela->sym->sec->len) { |
| 405 | found = false; |
| 406 | list_for_each_entry_reverse(insn, &file->insn_list, list) { |
| 407 | if (insn->sec == rela->sym->sec) { |
| 408 | found = true; |
| 409 | break; |
| 410 | } |
| 411 | } |
| 412 | |
| 413 | if (!found) { |
| 414 | WARN("can't find reachable insn at %s+0x%x", |
| 415 | rela->sym->sec->name, rela->addend); |
| 416 | return -1; |
| 417 | } |
| 418 | } else { |
| 419 | WARN("can't find reachable insn at %s+0x%x", |
| 420 | rela->sym->sec->name, rela->addend); |
| 421 | return -1; |
| 422 | } |
| 423 | |
| 424 | insn->dead_end = false; |
| 425 | } |
| 426 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 427 | return 0; |
| 428 | } |
| 429 | |
| 430 | /* |
| 431 | * Warnings shouldn't be reported for ignored functions. |
| 432 | */ |
| 433 | static void add_ignores(struct objtool_file *file) |
| 434 | { |
| 435 | struct instruction *insn; |
| 436 | struct section *sec; |
| 437 | struct symbol *func; |
| 438 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 439 | for_each_sec(file, sec) { |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 440 | list_for_each_entry(func, &sec->symbol_list, list) { |
| 441 | if (func->type != STT_FUNC) |
| 442 | continue; |
| 443 | |
| 444 | if (!ignore_func(file, func)) |
| 445 | continue; |
| 446 | |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 447 | func_for_each_insn_all(file, func, insn) |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 448 | insn->ignore = true; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 449 | } |
| 450 | } |
| 451 | } |
| 452 | |
| 453 | /* |
Josh Poimboeuf | 258c760 | 2018-01-11 21:46:24 +0000 | [diff] [blame] | 454 | * FIXME: For now, just ignore any alternatives which add retpolines. This is |
| 455 | * a temporary hack, as it doesn't allow ORC to unwind from inside a retpoline. |
| 456 | * But it at least allows objtool to understand the control flow *around* the |
| 457 | * retpoline. |
| 458 | */ |
| 459 | static int add_nospec_ignores(struct objtool_file *file) |
| 460 | { |
| 461 | struct section *sec; |
| 462 | struct rela *rela; |
| 463 | struct instruction *insn; |
| 464 | |
| 465 | sec = find_section_by_name(file->elf, ".rela.discard.nospec"); |
| 466 | if (!sec) |
| 467 | return 0; |
| 468 | |
| 469 | list_for_each_entry(rela, &sec->rela_list, list) { |
| 470 | if (rela->sym->type != STT_SECTION) { |
| 471 | WARN("unexpected relocation symbol type in %s", sec->name); |
| 472 | return -1; |
| 473 | } |
| 474 | |
| 475 | insn = find_insn(file, rela->sym->sec, rela->addend); |
| 476 | if (!insn) { |
| 477 | WARN("bad .discard.nospec entry"); |
| 478 | return -1; |
| 479 | } |
| 480 | |
| 481 | insn->ignore_alts = true; |
| 482 | } |
| 483 | |
| 484 | return 0; |
| 485 | } |
| 486 | |
| 487 | /* |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 488 | * Find the destination instructions for all jumps. |
| 489 | */ |
| 490 | static int add_jump_destinations(struct objtool_file *file) |
| 491 | { |
| 492 | struct instruction *insn; |
| 493 | struct rela *rela; |
| 494 | struct section *dest_sec; |
| 495 | unsigned long dest_off; |
| 496 | |
| 497 | for_each_insn(file, insn) { |
| 498 | if (insn->type != INSN_JUMP_CONDITIONAL && |
| 499 | insn->type != INSN_JUMP_UNCONDITIONAL) |
| 500 | continue; |
| 501 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 502 | if (insn->ignore) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 503 | continue; |
| 504 | |
| 505 | rela = find_rela_by_dest_range(insn->sec, insn->offset, |
| 506 | insn->len); |
| 507 | if (!rela) { |
| 508 | dest_sec = insn->sec; |
| 509 | dest_off = insn->offset + insn->len + insn->immediate; |
| 510 | } else if (rela->sym->type == STT_SECTION) { |
| 511 | dest_sec = rela->sym->sec; |
| 512 | dest_off = rela->addend + 4; |
| 513 | } else if (rela->sym->sec->idx) { |
| 514 | dest_sec = rela->sym->sec; |
| 515 | dest_off = rela->sym->sym.st_value + rela->addend + 4; |
Josh Poimboeuf | 39b7353 | 2018-01-11 21:46:23 +0000 | [diff] [blame] | 516 | } else if (strstr(rela->sym->name, "_indirect_thunk_")) { |
| 517 | /* |
| 518 | * Retpoline jumps are really dynamic jumps in |
| 519 | * disguise, so convert them accordingly. |
| 520 | */ |
| 521 | insn->type = INSN_JUMP_DYNAMIC; |
Peter Zijlstra | b5bc223 | 2018-01-16 10:24:06 +0100 | [diff] [blame] | 522 | insn->retpoline_safe = true; |
Josh Poimboeuf | 39b7353 | 2018-01-11 21:46:23 +0000 | [diff] [blame] | 523 | continue; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 524 | } else { |
| 525 | /* sibling call */ |
| 526 | insn->jump_dest = 0; |
| 527 | continue; |
| 528 | } |
| 529 | |
| 530 | insn->jump_dest = find_insn(file, dest_sec, dest_off); |
| 531 | if (!insn->jump_dest) { |
| 532 | |
| 533 | /* |
| 534 | * This is a special case where an alt instruction |
| 535 | * jumps past the end of the section. These are |
| 536 | * handled later in handle_group_alt(). |
| 537 | */ |
| 538 | if (!strcmp(insn->sec->name, ".altinstr_replacement")) |
| 539 | continue; |
| 540 | |
| 541 | WARN_FUNC("can't find jump dest instruction at %s+0x%lx", |
| 542 | insn->sec, insn->offset, dest_sec->name, |
| 543 | dest_off); |
| 544 | return -1; |
| 545 | } |
| 546 | } |
| 547 | |
| 548 | return 0; |
| 549 | } |
| 550 | |
| 551 | /* |
| 552 | * Find the destination instructions for all calls. |
| 553 | */ |
| 554 | static int add_call_destinations(struct objtool_file *file) |
| 555 | { |
| 556 | struct instruction *insn; |
| 557 | unsigned long dest_off; |
| 558 | struct rela *rela; |
| 559 | |
| 560 | for_each_insn(file, insn) { |
| 561 | if (insn->type != INSN_CALL) |
| 562 | continue; |
| 563 | |
| 564 | rela = find_rela_by_dest_range(insn->sec, insn->offset, |
| 565 | insn->len); |
| 566 | if (!rela) { |
| 567 | dest_off = insn->offset + insn->len + insn->immediate; |
| 568 | insn->call_dest = find_symbol_by_offset(insn->sec, |
| 569 | dest_off); |
Josh Poimboeuf | a845c7c | 2018-01-29 22:00:39 -0600 | [diff] [blame] | 570 | |
| 571 | if (!insn->call_dest && !insn->ignore) { |
| 572 | WARN_FUNC("unsupported intra-function call", |
| 573 | insn->sec, insn->offset); |
Peter Zijlstra | b5bc223 | 2018-01-16 10:24:06 +0100 | [diff] [blame] | 574 | if (retpoline) |
| 575 | WARN("If this is a retpoline, please patch it in with alternatives and annotate it with ANNOTATE_NOSPEC_ALTERNATIVE."); |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 576 | return -1; |
| 577 | } |
Josh Poimboeuf | a845c7c | 2018-01-29 22:00:39 -0600 | [diff] [blame] | 578 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 579 | } else if (rela->sym->type == STT_SECTION) { |
| 580 | insn->call_dest = find_symbol_by_offset(rela->sym->sec, |
| 581 | rela->addend+4); |
| 582 | if (!insn->call_dest || |
| 583 | insn->call_dest->type != STT_FUNC) { |
| 584 | WARN_FUNC("can't find call dest symbol at %s+0x%x", |
| 585 | insn->sec, insn->offset, |
| 586 | rela->sym->sec->name, |
| 587 | rela->addend + 4); |
| 588 | return -1; |
| 589 | } |
| 590 | } else |
| 591 | insn->call_dest = rela->sym; |
| 592 | } |
| 593 | |
| 594 | return 0; |
| 595 | } |
| 596 | |
| 597 | /* |
| 598 | * The .alternatives section requires some extra special care, over and above |
| 599 | * what other special sections require: |
| 600 | * |
| 601 | * 1. Because alternatives are patched in-place, we need to insert a fake jump |
| 602 | * instruction at the end so that validate_branch() skips all the original |
| 603 | * replaced instructions when validating the new instruction path. |
| 604 | * |
| 605 | * 2. An added wrinkle is that the new instruction length might be zero. In |
| 606 | * that case the old instructions are replaced with noops. We simulate that |
| 607 | * by creating a fake jump as the only new instruction. |
| 608 | * |
| 609 | * 3. In some cases, the alternative section includes an instruction which |
| 610 | * conditionally jumps to the _end_ of the entry. We have to modify these |
| 611 | * jumps' destinations to point back to .text rather than the end of the |
| 612 | * entry in .altinstr_replacement. |
| 613 | * |
| 614 | * 4. It has been requested that we don't validate the !POPCNT feature path |
| 615 | * which is a "very very small percentage of machines". |
| 616 | */ |
| 617 | static int handle_group_alt(struct objtool_file *file, |
| 618 | struct special_alt *special_alt, |
| 619 | struct instruction *orig_insn, |
| 620 | struct instruction **new_insn) |
| 621 | { |
Josh Poimboeuf | 17bc339 | 2018-01-29 22:00:40 -0600 | [diff] [blame] | 622 | struct instruction *last_orig_insn, *last_new_insn, *insn, *fake_jump = NULL; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 623 | unsigned long dest_off; |
| 624 | |
| 625 | last_orig_insn = NULL; |
| 626 | insn = orig_insn; |
| 627 | sec_for_each_insn_from(file, insn) { |
| 628 | if (insn->offset >= special_alt->orig_off + special_alt->orig_len) |
| 629 | break; |
| 630 | |
| 631 | if (special_alt->skip_orig) |
| 632 | insn->type = INSN_NOP; |
| 633 | |
| 634 | insn->alt_group = true; |
| 635 | last_orig_insn = insn; |
| 636 | } |
| 637 | |
Josh Poimboeuf | 17bc339 | 2018-01-29 22:00:40 -0600 | [diff] [blame] | 638 | if (next_insn_same_sec(file, last_orig_insn)) { |
| 639 | fake_jump = malloc(sizeof(*fake_jump)); |
| 640 | if (!fake_jump) { |
| 641 | WARN("malloc failed"); |
| 642 | return -1; |
| 643 | } |
| 644 | memset(fake_jump, 0, sizeof(*fake_jump)); |
| 645 | INIT_LIST_HEAD(&fake_jump->alts); |
| 646 | clear_insn_state(&fake_jump->state); |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 647 | |
Josh Poimboeuf | 17bc339 | 2018-01-29 22:00:40 -0600 | [diff] [blame] | 648 | fake_jump->sec = special_alt->new_sec; |
| 649 | fake_jump->offset = -1; |
| 650 | fake_jump->type = INSN_JUMP_UNCONDITIONAL; |
| 651 | fake_jump->jump_dest = list_next_entry(last_orig_insn, list); |
| 652 | fake_jump->ignore = true; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 653 | } |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 654 | |
| 655 | if (!special_alt->new_len) { |
Josh Poimboeuf | 17bc339 | 2018-01-29 22:00:40 -0600 | [diff] [blame] | 656 | if (!fake_jump) { |
| 657 | WARN("%s: empty alternative at end of section", |
| 658 | special_alt->orig_sec->name); |
| 659 | return -1; |
| 660 | } |
| 661 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 662 | *new_insn = fake_jump; |
| 663 | return 0; |
| 664 | } |
| 665 | |
| 666 | last_new_insn = NULL; |
| 667 | insn = *new_insn; |
| 668 | sec_for_each_insn_from(file, insn) { |
| 669 | if (insn->offset >= special_alt->new_off + special_alt->new_len) |
| 670 | break; |
| 671 | |
| 672 | last_new_insn = insn; |
| 673 | |
Josh Poimboeuf | a845c7c | 2018-01-29 22:00:39 -0600 | [diff] [blame] | 674 | insn->ignore = orig_insn->ignore_alts; |
| 675 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 676 | if (insn->type != INSN_JUMP_CONDITIONAL && |
| 677 | insn->type != INSN_JUMP_UNCONDITIONAL) |
| 678 | continue; |
| 679 | |
| 680 | if (!insn->immediate) |
| 681 | continue; |
| 682 | |
| 683 | dest_off = insn->offset + insn->len + insn->immediate; |
Josh Poimboeuf | 17bc339 | 2018-01-29 22:00:40 -0600 | [diff] [blame] | 684 | if (dest_off == special_alt->new_off + special_alt->new_len) { |
| 685 | if (!fake_jump) { |
| 686 | WARN("%s: alternative jump to end of section", |
| 687 | special_alt->orig_sec->name); |
| 688 | return -1; |
| 689 | } |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 690 | insn->jump_dest = fake_jump; |
Josh Poimboeuf | 17bc339 | 2018-01-29 22:00:40 -0600 | [diff] [blame] | 691 | } |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 692 | |
| 693 | if (!insn->jump_dest) { |
| 694 | WARN_FUNC("can't find alternative jump destination", |
| 695 | insn->sec, insn->offset); |
| 696 | return -1; |
| 697 | } |
| 698 | } |
| 699 | |
| 700 | if (!last_new_insn) { |
| 701 | WARN_FUNC("can't find last new alternative instruction", |
| 702 | special_alt->new_sec, special_alt->new_off); |
| 703 | return -1; |
| 704 | } |
| 705 | |
Josh Poimboeuf | 17bc339 | 2018-01-29 22:00:40 -0600 | [diff] [blame] | 706 | if (fake_jump) |
| 707 | list_add(&fake_jump->list, &last_new_insn->list); |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 708 | |
| 709 | return 0; |
| 710 | } |
| 711 | |
| 712 | /* |
| 713 | * A jump table entry can either convert a nop to a jump or a jump to a nop. |
| 714 | * If the original instruction is a jump, make the alt entry an effective nop |
| 715 | * by just skipping the original instruction. |
| 716 | */ |
| 717 | static int handle_jump_alt(struct objtool_file *file, |
| 718 | struct special_alt *special_alt, |
| 719 | struct instruction *orig_insn, |
| 720 | struct instruction **new_insn) |
| 721 | { |
| 722 | if (orig_insn->type == INSN_NOP) |
| 723 | return 0; |
| 724 | |
| 725 | if (orig_insn->type != INSN_JUMP_UNCONDITIONAL) { |
| 726 | WARN_FUNC("unsupported instruction at jump label", |
| 727 | orig_insn->sec, orig_insn->offset); |
| 728 | return -1; |
| 729 | } |
| 730 | |
| 731 | *new_insn = list_next_entry(orig_insn, list); |
| 732 | return 0; |
| 733 | } |
| 734 | |
| 735 | /* |
| 736 | * Read all the special sections which have alternate instructions which can be |
| 737 | * patched in or redirected to at runtime. Each instruction having alternate |
| 738 | * instruction(s) has them added to its insn->alts list, which will be |
| 739 | * traversed in validate_branch(). |
| 740 | */ |
| 741 | static int add_special_section_alts(struct objtool_file *file) |
| 742 | { |
| 743 | struct list_head special_alts; |
| 744 | struct instruction *orig_insn, *new_insn; |
| 745 | struct special_alt *special_alt, *tmp; |
| 746 | struct alternative *alt; |
| 747 | int ret; |
| 748 | |
| 749 | ret = special_get_alts(file->elf, &special_alts); |
| 750 | if (ret) |
| 751 | return ret; |
| 752 | |
| 753 | list_for_each_entry_safe(special_alt, tmp, &special_alts, list) { |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 754 | |
| 755 | orig_insn = find_insn(file, special_alt->orig_sec, |
| 756 | special_alt->orig_off); |
| 757 | if (!orig_insn) { |
| 758 | WARN_FUNC("special: can't find orig instruction", |
| 759 | special_alt->orig_sec, special_alt->orig_off); |
| 760 | ret = -1; |
| 761 | goto out; |
| 762 | } |
| 763 | |
| 764 | new_insn = NULL; |
| 765 | if (!special_alt->group || special_alt->new_len) { |
| 766 | new_insn = find_insn(file, special_alt->new_sec, |
| 767 | special_alt->new_off); |
| 768 | if (!new_insn) { |
| 769 | WARN_FUNC("special: can't find new instruction", |
| 770 | special_alt->new_sec, |
| 771 | special_alt->new_off); |
| 772 | ret = -1; |
| 773 | goto out; |
| 774 | } |
| 775 | } |
| 776 | |
| 777 | if (special_alt->group) { |
| 778 | ret = handle_group_alt(file, special_alt, orig_insn, |
| 779 | &new_insn); |
| 780 | if (ret) |
| 781 | goto out; |
| 782 | } else if (special_alt->jump_or_nop) { |
| 783 | ret = handle_jump_alt(file, special_alt, orig_insn, |
| 784 | &new_insn); |
| 785 | if (ret) |
| 786 | goto out; |
| 787 | } |
| 788 | |
Josh Poimboeuf | 258c760 | 2018-01-11 21:46:24 +0000 | [diff] [blame] | 789 | alt = malloc(sizeof(*alt)); |
| 790 | if (!alt) { |
| 791 | WARN("malloc failed"); |
| 792 | ret = -1; |
| 793 | goto out; |
| 794 | } |
| 795 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 796 | alt->insn = new_insn; |
| 797 | list_add_tail(&alt->list, &orig_insn->alts); |
| 798 | |
| 799 | list_del(&special_alt->list); |
| 800 | free(special_alt); |
| 801 | } |
| 802 | |
| 803 | out: |
| 804 | return ret; |
| 805 | } |
| 806 | |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 807 | static int add_switch_table(struct objtool_file *file, struct instruction *insn, |
| 808 | struct rela *table, struct rela *next_table) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 809 | { |
| 810 | struct rela *rela = table; |
| 811 | struct instruction *alt_insn; |
| 812 | struct alternative *alt; |
Josh Poimboeuf | fd35c88 | 2018-05-10 17:48:49 -0500 | [diff] [blame^] | 813 | struct symbol *pfunc = insn->func->pfunc; |
| 814 | unsigned int prev_offset = 0; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 815 | |
| 816 | list_for_each_entry_from(rela, &file->rodata->rela->rela_list, list) { |
| 817 | if (rela == next_table) |
| 818 | break; |
| 819 | |
Josh Poimboeuf | fd35c88 | 2018-05-10 17:48:49 -0500 | [diff] [blame^] | 820 | /* Make sure the switch table entries are consecutive: */ |
| 821 | if (prev_offset && rela->offset != prev_offset + 8) |
| 822 | break; |
| 823 | |
| 824 | /* Detect function pointers from contiguous objects: */ |
| 825 | if (rela->sym->sec == pfunc->sec && |
| 826 | rela->addend == pfunc->offset) |
| 827 | break; |
| 828 | |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 829 | alt_insn = find_insn(file, rela->sym->sec, rela->addend); |
| 830 | if (!alt_insn) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 831 | break; |
| 832 | |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 833 | /* Make sure the jmp dest is in the function or subfunction: */ |
Josh Poimboeuf | fd35c88 | 2018-05-10 17:48:49 -0500 | [diff] [blame^] | 834 | if (alt_insn->func->pfunc != pfunc) |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 835 | break; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 836 | |
| 837 | alt = malloc(sizeof(*alt)); |
| 838 | if (!alt) { |
| 839 | WARN("malloc failed"); |
| 840 | return -1; |
| 841 | } |
| 842 | |
| 843 | alt->insn = alt_insn; |
| 844 | list_add_tail(&alt->list, &insn->alts); |
Josh Poimboeuf | fd35c88 | 2018-05-10 17:48:49 -0500 | [diff] [blame^] | 845 | prev_offset = rela->offset; |
| 846 | } |
| 847 | |
| 848 | if (!prev_offset) { |
| 849 | WARN_FUNC("can't find switch jump table", |
| 850 | insn->sec, insn->offset); |
| 851 | return -1; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 852 | } |
| 853 | |
| 854 | return 0; |
| 855 | } |
| 856 | |
| 857 | /* |
| 858 | * find_switch_table() - Given a dynamic jump, find the switch jump table in |
| 859 | * .rodata associated with it. |
| 860 | * |
| 861 | * There are 3 basic patterns: |
| 862 | * |
| 863 | * 1. jmpq *[rodata addr](,%reg,8) |
| 864 | * |
| 865 | * This is the most common case by far. It jumps to an address in a simple |
| 866 | * jump table which is stored in .rodata. |
| 867 | * |
| 868 | * 2. jmpq *[rodata addr](%rip) |
| 869 | * |
| 870 | * This is caused by a rare GCC quirk, currently only seen in three driver |
| 871 | * functions in the kernel, only with certain obscure non-distro configs. |
| 872 | * |
| 873 | * As part of an optimization, GCC makes a copy of an existing switch jump |
| 874 | * table, modifies it, and then hard-codes the jump (albeit with an indirect |
| 875 | * jump) to use a single entry in the table. The rest of the jump table and |
| 876 | * some of its jump targets remain as dead code. |
| 877 | * |
| 878 | * In such a case we can just crudely ignore all unreachable instruction |
| 879 | * warnings for the entire object file. Ideally we would just ignore them |
| 880 | * for the function, but that would require redesigning the code quite a |
| 881 | * bit. And honestly that's just not worth doing: unreachable instruction |
| 882 | * warnings are of questionable value anyway, and this is such a rare issue. |
| 883 | * |
| 884 | * 3. mov [rodata addr],%reg1 |
| 885 | * ... some instructions ... |
| 886 | * jmpq *(%reg1,%reg2,8) |
| 887 | * |
| 888 | * This is a fairly uncommon pattern which is new for GCC 6. As of this |
| 889 | * writing, there are 11 occurrences of it in the allmodconfig kernel. |
| 890 | * |
Peter Zijlstra | 99ce796 | 2018-02-08 14:02:32 +0100 | [diff] [blame] | 891 | * As of GCC 7 there are quite a few more of these and the 'in between' code |
| 892 | * is significant. Esp. with KASAN enabled some of the code between the mov |
| 893 | * and jmpq uses .rodata itself, which can confuse things. |
| 894 | * |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 895 | * TODO: Once we have DWARF CFI and smarter instruction decoding logic, |
| 896 | * ensure the same register is used in the mov and jump instructions. |
Peter Zijlstra | 99ce796 | 2018-02-08 14:02:32 +0100 | [diff] [blame] | 897 | * |
| 898 | * NOTE: RETPOLINE made it harder still to decode dynamic jumps. |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 899 | */ |
| 900 | static struct rela *find_switch_table(struct objtool_file *file, |
| 901 | struct symbol *func, |
| 902 | struct instruction *insn) |
| 903 | { |
| 904 | struct rela *text_rela, *rodata_rela; |
| 905 | struct instruction *orig_insn = insn; |
| 906 | |
| 907 | text_rela = find_rela_by_dest_range(insn->sec, insn->offset, insn->len); |
Josh Poimboeuf | fd35c88 | 2018-05-10 17:48:49 -0500 | [diff] [blame^] | 908 | if (text_rela && text_rela->sym == file->rodata->sym && |
| 909 | !find_symbol_containing(file->rodata, text_rela->addend)) { |
| 910 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 911 | /* case 1 */ |
| 912 | rodata_rela = find_rela_by_dest(file->rodata, |
| 913 | text_rela->addend); |
| 914 | if (rodata_rela) |
| 915 | return rodata_rela; |
| 916 | |
| 917 | /* case 2 */ |
| 918 | rodata_rela = find_rela_by_dest(file->rodata, |
| 919 | text_rela->addend + 4); |
| 920 | if (!rodata_rela) |
| 921 | return NULL; |
Peter Zijlstra | 99ce796 | 2018-02-08 14:02:32 +0100 | [diff] [blame] | 922 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 923 | file->ignore_unreachables = true; |
| 924 | return rodata_rela; |
| 925 | } |
| 926 | |
| 927 | /* case 3 */ |
Peter Zijlstra | 99ce796 | 2018-02-08 14:02:32 +0100 | [diff] [blame] | 928 | /* |
| 929 | * Backward search using the @first_jump_src links, these help avoid |
| 930 | * much of the 'in between' code. Which avoids us getting confused by |
| 931 | * it. |
| 932 | */ |
| 933 | for (insn = list_prev_entry(insn, list); |
| 934 | |
| 935 | &insn->list != &file->insn_list && |
| 936 | insn->sec == func->sec && |
| 937 | insn->offset >= func->offset; |
| 938 | |
| 939 | insn = insn->first_jump_src ?: list_prev_entry(insn, list)) { |
| 940 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 941 | if (insn->type == INSN_JUMP_DYNAMIC) |
| 942 | break; |
| 943 | |
| 944 | /* allow small jumps within the range */ |
| 945 | if (insn->type == INSN_JUMP_UNCONDITIONAL && |
| 946 | insn->jump_dest && |
| 947 | (insn->jump_dest->offset <= insn->offset || |
| 948 | insn->jump_dest->offset > orig_insn->offset)) |
| 949 | break; |
| 950 | |
| 951 | /* look for a relocation which references .rodata */ |
| 952 | text_rela = find_rela_by_dest_range(insn->sec, insn->offset, |
| 953 | insn->len); |
| 954 | if (!text_rela || text_rela->sym != file->rodata->sym) |
| 955 | continue; |
| 956 | |
| 957 | /* |
| 958 | * Make sure the .rodata address isn't associated with a |
| 959 | * symbol. gcc jump tables are anonymous data. |
| 960 | */ |
| 961 | if (find_symbol_containing(file->rodata, text_rela->addend)) |
| 962 | continue; |
| 963 | |
Josh Poimboeuf | 1402fd8 | 2018-02-28 07:19:21 -0600 | [diff] [blame] | 964 | rodata_rela = find_rela_by_dest(file->rodata, text_rela->addend); |
| 965 | if (!rodata_rela) |
| 966 | continue; |
| 967 | |
| 968 | return rodata_rela; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 969 | } |
| 970 | |
| 971 | return NULL; |
| 972 | } |
| 973 | |
Peter Zijlstra | 99ce796 | 2018-02-08 14:02:32 +0100 | [diff] [blame] | 974 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 975 | static int add_func_switch_tables(struct objtool_file *file, |
| 976 | struct symbol *func) |
| 977 | { |
Peter Zijlstra | 99ce796 | 2018-02-08 14:02:32 +0100 | [diff] [blame] | 978 | struct instruction *insn, *last = NULL, *prev_jump = NULL; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 979 | struct rela *rela, *prev_rela = NULL; |
| 980 | int ret; |
| 981 | |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 982 | func_for_each_insn_all(file, func, insn) { |
Peter Zijlstra | 99ce796 | 2018-02-08 14:02:32 +0100 | [diff] [blame] | 983 | if (!last) |
| 984 | last = insn; |
| 985 | |
| 986 | /* |
| 987 | * Store back-pointers for unconditional forward jumps such |
| 988 | * that find_switch_table() can back-track using those and |
| 989 | * avoid some potentially confusing code. |
| 990 | */ |
| 991 | if (insn->type == INSN_JUMP_UNCONDITIONAL && insn->jump_dest && |
| 992 | insn->offset > last->offset && |
| 993 | insn->jump_dest->offset > insn->offset && |
| 994 | !insn->jump_dest->first_jump_src) { |
| 995 | |
| 996 | insn->jump_dest->first_jump_src = insn; |
| 997 | last = insn->jump_dest; |
| 998 | } |
| 999 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1000 | if (insn->type != INSN_JUMP_DYNAMIC) |
| 1001 | continue; |
| 1002 | |
| 1003 | rela = find_switch_table(file, func, insn); |
| 1004 | if (!rela) |
| 1005 | continue; |
| 1006 | |
| 1007 | /* |
| 1008 | * We found a switch table, but we don't know yet how big it |
| 1009 | * is. Don't add it until we reach the end of the function or |
| 1010 | * the beginning of another switch table in the same function. |
| 1011 | */ |
| 1012 | if (prev_jump) { |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 1013 | ret = add_switch_table(file, prev_jump, prev_rela, rela); |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1014 | if (ret) |
| 1015 | return ret; |
| 1016 | } |
| 1017 | |
| 1018 | prev_jump = insn; |
| 1019 | prev_rela = rela; |
| 1020 | } |
| 1021 | |
| 1022 | if (prev_jump) { |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 1023 | ret = add_switch_table(file, prev_jump, prev_rela, NULL); |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1024 | if (ret) |
| 1025 | return ret; |
| 1026 | } |
| 1027 | |
| 1028 | return 0; |
| 1029 | } |
| 1030 | |
| 1031 | /* |
| 1032 | * For some switch statements, gcc generates a jump table in the .rodata |
| 1033 | * section which contains a list of addresses within the function to jump to. |
| 1034 | * This finds these jump tables and adds them to the insn->alts lists. |
| 1035 | */ |
| 1036 | static int add_switch_table_alts(struct objtool_file *file) |
| 1037 | { |
| 1038 | struct section *sec; |
| 1039 | struct symbol *func; |
| 1040 | int ret; |
| 1041 | |
| 1042 | if (!file->rodata || !file->rodata->rela) |
| 1043 | return 0; |
| 1044 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1045 | for_each_sec(file, sec) { |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1046 | list_for_each_entry(func, &sec->symbol_list, list) { |
| 1047 | if (func->type != STT_FUNC) |
| 1048 | continue; |
| 1049 | |
| 1050 | ret = add_func_switch_tables(file, func); |
| 1051 | if (ret) |
| 1052 | return ret; |
| 1053 | } |
| 1054 | } |
| 1055 | |
| 1056 | return 0; |
| 1057 | } |
| 1058 | |
Josh Poimboeuf | 39358a0 | 2017-07-11 10:33:43 -0500 | [diff] [blame] | 1059 | static int read_unwind_hints(struct objtool_file *file) |
| 1060 | { |
| 1061 | struct section *sec, *relasec; |
| 1062 | struct rela *rela; |
| 1063 | struct unwind_hint *hint; |
| 1064 | struct instruction *insn; |
| 1065 | struct cfi_reg *cfa; |
| 1066 | int i; |
| 1067 | |
| 1068 | sec = find_section_by_name(file->elf, ".discard.unwind_hints"); |
| 1069 | if (!sec) |
| 1070 | return 0; |
| 1071 | |
| 1072 | relasec = sec->rela; |
| 1073 | if (!relasec) { |
| 1074 | WARN("missing .rela.discard.unwind_hints section"); |
| 1075 | return -1; |
| 1076 | } |
| 1077 | |
| 1078 | if (sec->len % sizeof(struct unwind_hint)) { |
| 1079 | WARN("struct unwind_hint size mismatch"); |
| 1080 | return -1; |
| 1081 | } |
| 1082 | |
| 1083 | file->hints = true; |
| 1084 | |
| 1085 | for (i = 0; i < sec->len / sizeof(struct unwind_hint); i++) { |
| 1086 | hint = (struct unwind_hint *)sec->data->d_buf + i; |
| 1087 | |
| 1088 | rela = find_rela_by_dest(sec, i * sizeof(*hint)); |
| 1089 | if (!rela) { |
| 1090 | WARN("can't find rela for unwind_hints[%d]", i); |
| 1091 | return -1; |
| 1092 | } |
| 1093 | |
| 1094 | insn = find_insn(file, rela->sym->sec, rela->addend); |
| 1095 | if (!insn) { |
| 1096 | WARN("can't find insn for unwind_hints[%d]", i); |
| 1097 | return -1; |
| 1098 | } |
| 1099 | |
| 1100 | cfa = &insn->state.cfa; |
| 1101 | |
| 1102 | if (hint->type == UNWIND_HINT_TYPE_SAVE) { |
| 1103 | insn->save = true; |
| 1104 | continue; |
| 1105 | |
| 1106 | } else if (hint->type == UNWIND_HINT_TYPE_RESTORE) { |
| 1107 | insn->restore = true; |
| 1108 | insn->hint = true; |
| 1109 | continue; |
| 1110 | } |
| 1111 | |
| 1112 | insn->hint = true; |
| 1113 | |
| 1114 | switch (hint->sp_reg) { |
| 1115 | case ORC_REG_UNDEFINED: |
| 1116 | cfa->base = CFI_UNDEFINED; |
| 1117 | break; |
| 1118 | case ORC_REG_SP: |
| 1119 | cfa->base = CFI_SP; |
| 1120 | break; |
| 1121 | case ORC_REG_BP: |
| 1122 | cfa->base = CFI_BP; |
| 1123 | break; |
| 1124 | case ORC_REG_SP_INDIRECT: |
| 1125 | cfa->base = CFI_SP_INDIRECT; |
| 1126 | break; |
| 1127 | case ORC_REG_R10: |
| 1128 | cfa->base = CFI_R10; |
| 1129 | break; |
| 1130 | case ORC_REG_R13: |
| 1131 | cfa->base = CFI_R13; |
| 1132 | break; |
| 1133 | case ORC_REG_DI: |
| 1134 | cfa->base = CFI_DI; |
| 1135 | break; |
| 1136 | case ORC_REG_DX: |
| 1137 | cfa->base = CFI_DX; |
| 1138 | break; |
| 1139 | default: |
| 1140 | WARN_FUNC("unsupported unwind_hint sp base reg %d", |
| 1141 | insn->sec, insn->offset, hint->sp_reg); |
| 1142 | return -1; |
| 1143 | } |
| 1144 | |
| 1145 | cfa->offset = hint->sp_offset; |
| 1146 | insn->state.type = hint->type; |
| 1147 | } |
| 1148 | |
| 1149 | return 0; |
| 1150 | } |
| 1151 | |
Peter Zijlstra | b5bc223 | 2018-01-16 10:24:06 +0100 | [diff] [blame] | 1152 | static int read_retpoline_hints(struct objtool_file *file) |
| 1153 | { |
Josh Poimboeuf | 63474dc | 2018-03-06 17:58:15 -0600 | [diff] [blame] | 1154 | struct section *sec; |
Peter Zijlstra | b5bc223 | 2018-01-16 10:24:06 +0100 | [diff] [blame] | 1155 | struct instruction *insn; |
| 1156 | struct rela *rela; |
Peter Zijlstra | b5bc223 | 2018-01-16 10:24:06 +0100 | [diff] [blame] | 1157 | |
Josh Poimboeuf | 63474dc | 2018-03-06 17:58:15 -0600 | [diff] [blame] | 1158 | sec = find_section_by_name(file->elf, ".rela.discard.retpoline_safe"); |
Peter Zijlstra | b5bc223 | 2018-01-16 10:24:06 +0100 | [diff] [blame] | 1159 | if (!sec) |
| 1160 | return 0; |
| 1161 | |
Josh Poimboeuf | 63474dc | 2018-03-06 17:58:15 -0600 | [diff] [blame] | 1162 | list_for_each_entry(rela, &sec->rela_list, list) { |
| 1163 | if (rela->sym->type != STT_SECTION) { |
| 1164 | WARN("unexpected relocation symbol type in %s", sec->name); |
Peter Zijlstra | b5bc223 | 2018-01-16 10:24:06 +0100 | [diff] [blame] | 1165 | return -1; |
| 1166 | } |
| 1167 | |
| 1168 | insn = find_insn(file, rela->sym->sec, rela->addend); |
| 1169 | if (!insn) { |
Josh Poimboeuf | 63474dc | 2018-03-06 17:58:15 -0600 | [diff] [blame] | 1170 | WARN("bad .discard.retpoline_safe entry"); |
Peter Zijlstra | b5bc223 | 2018-01-16 10:24:06 +0100 | [diff] [blame] | 1171 | return -1; |
| 1172 | } |
| 1173 | |
| 1174 | if (insn->type != INSN_JUMP_DYNAMIC && |
| 1175 | insn->type != INSN_CALL_DYNAMIC) { |
Josh Poimboeuf | 63474dc | 2018-03-06 17:58:15 -0600 | [diff] [blame] | 1176 | WARN_FUNC("retpoline_safe hint not an indirect jump/call", |
Peter Zijlstra | b5bc223 | 2018-01-16 10:24:06 +0100 | [diff] [blame] | 1177 | insn->sec, insn->offset); |
| 1178 | return -1; |
| 1179 | } |
| 1180 | |
| 1181 | insn->retpoline_safe = true; |
| 1182 | } |
| 1183 | |
| 1184 | return 0; |
| 1185 | } |
| 1186 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1187 | static int decode_sections(struct objtool_file *file) |
| 1188 | { |
| 1189 | int ret; |
| 1190 | |
| 1191 | ret = decode_instructions(file); |
| 1192 | if (ret) |
| 1193 | return ret; |
| 1194 | |
| 1195 | ret = add_dead_ends(file); |
| 1196 | if (ret) |
| 1197 | return ret; |
| 1198 | |
| 1199 | add_ignores(file); |
| 1200 | |
Josh Poimboeuf | 258c760 | 2018-01-11 21:46:24 +0000 | [diff] [blame] | 1201 | ret = add_nospec_ignores(file); |
| 1202 | if (ret) |
| 1203 | return ret; |
| 1204 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1205 | ret = add_jump_destinations(file); |
| 1206 | if (ret) |
| 1207 | return ret; |
| 1208 | |
Josh Poimboeuf | a845c7c | 2018-01-29 22:00:39 -0600 | [diff] [blame] | 1209 | ret = add_special_section_alts(file); |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1210 | if (ret) |
| 1211 | return ret; |
| 1212 | |
Josh Poimboeuf | a845c7c | 2018-01-29 22:00:39 -0600 | [diff] [blame] | 1213 | ret = add_call_destinations(file); |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1214 | if (ret) |
| 1215 | return ret; |
| 1216 | |
| 1217 | ret = add_switch_table_alts(file); |
| 1218 | if (ret) |
| 1219 | return ret; |
| 1220 | |
Josh Poimboeuf | 39358a0 | 2017-07-11 10:33:43 -0500 | [diff] [blame] | 1221 | ret = read_unwind_hints(file); |
| 1222 | if (ret) |
| 1223 | return ret; |
| 1224 | |
Peter Zijlstra | b5bc223 | 2018-01-16 10:24:06 +0100 | [diff] [blame] | 1225 | ret = read_retpoline_hints(file); |
| 1226 | if (ret) |
| 1227 | return ret; |
| 1228 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1229 | return 0; |
| 1230 | } |
| 1231 | |
| 1232 | static bool is_fentry_call(struct instruction *insn) |
| 1233 | { |
| 1234 | if (insn->type == INSN_CALL && |
| 1235 | insn->call_dest->type == STT_NOTYPE && |
| 1236 | !strcmp(insn->call_dest->name, "__fentry__")) |
| 1237 | return true; |
| 1238 | |
| 1239 | return false; |
| 1240 | } |
| 1241 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1242 | static bool has_modified_stack_frame(struct insn_state *state) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1243 | { |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1244 | int i; |
| 1245 | |
| 1246 | if (state->cfa.base != initial_func_cfi.cfa.base || |
| 1247 | state->cfa.offset != initial_func_cfi.cfa.offset || |
| 1248 | state->stack_size != initial_func_cfi.cfa.offset || |
| 1249 | state->drap) |
| 1250 | return true; |
| 1251 | |
| 1252 | for (i = 0; i < CFI_NUM_REGS; i++) |
| 1253 | if (state->regs[i].base != initial_func_cfi.regs[i].base || |
| 1254 | state->regs[i].offset != initial_func_cfi.regs[i].offset) |
| 1255 | return true; |
| 1256 | |
| 1257 | return false; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1258 | } |
| 1259 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1260 | static bool has_valid_stack_frame(struct insn_state *state) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1261 | { |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1262 | if (state->cfa.base == CFI_BP && state->regs[CFI_BP].base == CFI_CFA && |
| 1263 | state->regs[CFI_BP].offset == -16) |
| 1264 | return true; |
| 1265 | |
| 1266 | if (state->drap && state->regs[CFI_BP].base == CFI_BP) |
| 1267 | return true; |
| 1268 | |
| 1269 | return false; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1270 | } |
| 1271 | |
Josh Poimboeuf | 627fce1 | 2017-07-11 10:33:42 -0500 | [diff] [blame] | 1272 | static int update_insn_state_regs(struct instruction *insn, struct insn_state *state) |
| 1273 | { |
| 1274 | struct cfi_reg *cfa = &state->cfa; |
| 1275 | struct stack_op *op = &insn->stack_op; |
| 1276 | |
| 1277 | if (cfa->base != CFI_SP) |
| 1278 | return 0; |
| 1279 | |
| 1280 | /* push */ |
| 1281 | if (op->dest.type == OP_DEST_PUSH) |
| 1282 | cfa->offset += 8; |
| 1283 | |
| 1284 | /* pop */ |
| 1285 | if (op->src.type == OP_SRC_POP) |
| 1286 | cfa->offset -= 8; |
| 1287 | |
| 1288 | /* add immediate to sp */ |
| 1289 | if (op->dest.type == OP_DEST_REG && op->src.type == OP_SRC_ADD && |
| 1290 | op->dest.reg == CFI_SP && op->src.reg == CFI_SP) |
| 1291 | cfa->offset -= op->src.offset; |
| 1292 | |
| 1293 | return 0; |
| 1294 | } |
| 1295 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1296 | static void save_reg(struct insn_state *state, unsigned char reg, int base, |
| 1297 | int offset) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1298 | { |
Josh Poimboeuf | bf4d1a8 | 2017-08-10 16:37:26 -0500 | [diff] [blame] | 1299 | if (arch_callee_saved_reg(reg) && |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1300 | state->regs[reg].base == CFI_UNDEFINED) { |
| 1301 | state->regs[reg].base = base; |
| 1302 | state->regs[reg].offset = offset; |
| 1303 | } |
| 1304 | } |
| 1305 | |
| 1306 | static void restore_reg(struct insn_state *state, unsigned char reg) |
| 1307 | { |
| 1308 | state->regs[reg].base = CFI_UNDEFINED; |
| 1309 | state->regs[reg].offset = 0; |
| 1310 | } |
| 1311 | |
| 1312 | /* |
| 1313 | * A note about DRAP stack alignment: |
| 1314 | * |
| 1315 | * GCC has the concept of a DRAP register, which is used to help keep track of |
| 1316 | * the stack pointer when aligning the stack. r10 or r13 is used as the DRAP |
| 1317 | * register. The typical DRAP pattern is: |
| 1318 | * |
| 1319 | * 4c 8d 54 24 08 lea 0x8(%rsp),%r10 |
| 1320 | * 48 83 e4 c0 and $0xffffffffffffffc0,%rsp |
| 1321 | * 41 ff 72 f8 pushq -0x8(%r10) |
| 1322 | * 55 push %rbp |
| 1323 | * 48 89 e5 mov %rsp,%rbp |
| 1324 | * (more pushes) |
| 1325 | * 41 52 push %r10 |
| 1326 | * ... |
| 1327 | * 41 5a pop %r10 |
| 1328 | * (more pops) |
| 1329 | * 5d pop %rbp |
| 1330 | * 49 8d 62 f8 lea -0x8(%r10),%rsp |
| 1331 | * c3 retq |
| 1332 | * |
| 1333 | * There are some variations in the epilogues, like: |
| 1334 | * |
| 1335 | * 5b pop %rbx |
| 1336 | * 41 5a pop %r10 |
| 1337 | * 41 5c pop %r12 |
| 1338 | * 41 5d pop %r13 |
| 1339 | * 41 5e pop %r14 |
| 1340 | * c9 leaveq |
| 1341 | * 49 8d 62 f8 lea -0x8(%r10),%rsp |
| 1342 | * c3 retq |
| 1343 | * |
| 1344 | * and: |
| 1345 | * |
| 1346 | * 4c 8b 55 e8 mov -0x18(%rbp),%r10 |
| 1347 | * 48 8b 5d e0 mov -0x20(%rbp),%rbx |
| 1348 | * 4c 8b 65 f0 mov -0x10(%rbp),%r12 |
| 1349 | * 4c 8b 6d f8 mov -0x8(%rbp),%r13 |
| 1350 | * c9 leaveq |
| 1351 | * 49 8d 62 f8 lea -0x8(%r10),%rsp |
| 1352 | * c3 retq |
| 1353 | * |
| 1354 | * Sometimes r13 is used as the DRAP register, in which case it's saved and |
| 1355 | * restored beforehand: |
| 1356 | * |
| 1357 | * 41 55 push %r13 |
| 1358 | * 4c 8d 6c 24 10 lea 0x10(%rsp),%r13 |
| 1359 | * 48 83 e4 f0 and $0xfffffffffffffff0,%rsp |
| 1360 | * ... |
| 1361 | * 49 8d 65 f0 lea -0x10(%r13),%rsp |
| 1362 | * 41 5d pop %r13 |
| 1363 | * c3 retq |
| 1364 | */ |
| 1365 | static int update_insn_state(struct instruction *insn, struct insn_state *state) |
| 1366 | { |
| 1367 | struct stack_op *op = &insn->stack_op; |
| 1368 | struct cfi_reg *cfa = &state->cfa; |
| 1369 | struct cfi_reg *regs = state->regs; |
| 1370 | |
| 1371 | /* stack operations don't make sense with an undefined CFA */ |
| 1372 | if (cfa->base == CFI_UNDEFINED) { |
| 1373 | if (insn->func) { |
| 1374 | WARN_FUNC("undefined stack state", insn->sec, insn->offset); |
| 1375 | return -1; |
| 1376 | } |
| 1377 | return 0; |
| 1378 | } |
| 1379 | |
Josh Poimboeuf | 627fce1 | 2017-07-11 10:33:42 -0500 | [diff] [blame] | 1380 | if (state->type == ORC_TYPE_REGS || state->type == ORC_TYPE_REGS_IRET) |
| 1381 | return update_insn_state_regs(insn, state); |
| 1382 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1383 | switch (op->dest.type) { |
| 1384 | |
| 1385 | case OP_DEST_REG: |
| 1386 | switch (op->src.type) { |
| 1387 | |
| 1388 | case OP_SRC_REG: |
Josh Poimboeuf | 0d0970e | 2017-09-20 16:24:32 -0500 | [diff] [blame] | 1389 | if (op->src.reg == CFI_SP && op->dest.reg == CFI_BP && |
| 1390 | cfa->base == CFI_SP && |
| 1391 | regs[CFI_BP].base == CFI_CFA && |
| 1392 | regs[CFI_BP].offset == -cfa->offset) { |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1393 | |
Josh Poimboeuf | 0d0970e | 2017-09-20 16:24:32 -0500 | [diff] [blame] | 1394 | /* mov %rsp, %rbp */ |
| 1395 | cfa->base = op->dest.reg; |
| 1396 | state->bp_scratch = false; |
| 1397 | } |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1398 | |
Josh Poimboeuf | 0d0970e | 2017-09-20 16:24:32 -0500 | [diff] [blame] | 1399 | else if (op->src.reg == CFI_SP && |
| 1400 | op->dest.reg == CFI_BP && state->drap) { |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1401 | |
Josh Poimboeuf | 0d0970e | 2017-09-20 16:24:32 -0500 | [diff] [blame] | 1402 | /* drap: mov %rsp, %rbp */ |
| 1403 | regs[CFI_BP].base = CFI_BP; |
| 1404 | regs[CFI_BP].offset = -state->stack_size; |
| 1405 | state->bp_scratch = false; |
| 1406 | } |
Josh Poimboeuf | dd88a0a | 2017-08-29 12:51:03 -0500 | [diff] [blame] | 1407 | |
Josh Poimboeuf | 0d0970e | 2017-09-20 16:24:32 -0500 | [diff] [blame] | 1408 | else if (op->src.reg == CFI_SP && cfa->base == CFI_SP) { |
| 1409 | |
| 1410 | /* |
| 1411 | * mov %rsp, %reg |
| 1412 | * |
| 1413 | * This is needed for the rare case where GCC |
| 1414 | * does: |
| 1415 | * |
| 1416 | * mov %rsp, %rax |
| 1417 | * ... |
| 1418 | * mov %rax, %rsp |
| 1419 | */ |
| 1420 | state->vals[op->dest.reg].base = CFI_CFA; |
| 1421 | state->vals[op->dest.reg].offset = -state->stack_size; |
Josh Poimboeuf | dd88a0a | 2017-08-29 12:51:03 -0500 | [diff] [blame] | 1422 | } |
| 1423 | |
Josh Poimboeuf | 3c1f058 | 2018-03-22 13:00:37 -0500 | [diff] [blame] | 1424 | else if (op->src.reg == CFI_BP && op->dest.reg == CFI_SP && |
| 1425 | cfa->base == CFI_BP) { |
| 1426 | |
| 1427 | /* |
| 1428 | * mov %rbp, %rsp |
| 1429 | * |
| 1430 | * Restore the original stack pointer (Clang). |
| 1431 | */ |
| 1432 | state->stack_size = -state->regs[CFI_BP].offset; |
| 1433 | } |
| 1434 | |
Josh Poimboeuf | dd88a0a | 2017-08-29 12:51:03 -0500 | [diff] [blame] | 1435 | else if (op->dest.reg == cfa->base) { |
| 1436 | |
| 1437 | /* mov %reg, %rsp */ |
| 1438 | if (cfa->base == CFI_SP && |
| 1439 | state->vals[op->src.reg].base == CFI_CFA) { |
| 1440 | |
| 1441 | /* |
| 1442 | * This is needed for the rare case |
| 1443 | * where GCC does something dumb like: |
| 1444 | * |
| 1445 | * lea 0x8(%rsp), %rcx |
| 1446 | * ... |
| 1447 | * mov %rcx, %rsp |
| 1448 | */ |
| 1449 | cfa->offset = -state->vals[op->src.reg].offset; |
| 1450 | state->stack_size = cfa->offset; |
| 1451 | |
| 1452 | } else { |
| 1453 | cfa->base = CFI_UNDEFINED; |
| 1454 | cfa->offset = 0; |
| 1455 | } |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1456 | } |
| 1457 | |
| 1458 | break; |
| 1459 | |
| 1460 | case OP_SRC_ADD: |
| 1461 | if (op->dest.reg == CFI_SP && op->src.reg == CFI_SP) { |
| 1462 | |
| 1463 | /* add imm, %rsp */ |
| 1464 | state->stack_size -= op->src.offset; |
| 1465 | if (cfa->base == CFI_SP) |
| 1466 | cfa->offset -= op->src.offset; |
| 1467 | break; |
| 1468 | } |
| 1469 | |
| 1470 | if (op->dest.reg == CFI_SP && op->src.reg == CFI_BP) { |
| 1471 | |
| 1472 | /* lea disp(%rbp), %rsp */ |
| 1473 | state->stack_size = -(op->src.offset + regs[CFI_BP].offset); |
| 1474 | break; |
| 1475 | } |
| 1476 | |
Josh Poimboeuf | dd88a0a | 2017-08-29 12:51:03 -0500 | [diff] [blame] | 1477 | if (op->src.reg == CFI_SP && cfa->base == CFI_SP) { |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1478 | |
| 1479 | /* drap: lea disp(%rsp), %drap */ |
| 1480 | state->drap_reg = op->dest.reg; |
Josh Poimboeuf | dd88a0a | 2017-08-29 12:51:03 -0500 | [diff] [blame] | 1481 | |
| 1482 | /* |
| 1483 | * lea disp(%rsp), %reg |
| 1484 | * |
| 1485 | * This is needed for the rare case where GCC |
| 1486 | * does something dumb like: |
| 1487 | * |
| 1488 | * lea 0x8(%rsp), %rcx |
| 1489 | * ... |
| 1490 | * mov %rcx, %rsp |
| 1491 | */ |
| 1492 | state->vals[op->dest.reg].base = CFI_CFA; |
| 1493 | state->vals[op->dest.reg].offset = \ |
| 1494 | -state->stack_size + op->src.offset; |
| 1495 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1496 | break; |
| 1497 | } |
| 1498 | |
| 1499 | if (state->drap && op->dest.reg == CFI_SP && |
| 1500 | op->src.reg == state->drap_reg) { |
| 1501 | |
| 1502 | /* drap: lea disp(%drap), %rsp */ |
| 1503 | cfa->base = CFI_SP; |
| 1504 | cfa->offset = state->stack_size = -op->src.offset; |
| 1505 | state->drap_reg = CFI_UNDEFINED; |
| 1506 | state->drap = false; |
| 1507 | break; |
| 1508 | } |
| 1509 | |
| 1510 | if (op->dest.reg == state->cfa.base) { |
| 1511 | WARN_FUNC("unsupported stack register modification", |
| 1512 | insn->sec, insn->offset); |
| 1513 | return -1; |
| 1514 | } |
| 1515 | |
| 1516 | break; |
| 1517 | |
| 1518 | case OP_SRC_AND: |
| 1519 | if (op->dest.reg != CFI_SP || |
| 1520 | (state->drap_reg != CFI_UNDEFINED && cfa->base != CFI_SP) || |
| 1521 | (state->drap_reg == CFI_UNDEFINED && cfa->base != CFI_BP)) { |
| 1522 | WARN_FUNC("unsupported stack pointer realignment", |
| 1523 | insn->sec, insn->offset); |
| 1524 | return -1; |
| 1525 | } |
| 1526 | |
| 1527 | if (state->drap_reg != CFI_UNDEFINED) { |
| 1528 | /* drap: and imm, %rsp */ |
| 1529 | cfa->base = state->drap_reg; |
| 1530 | cfa->offset = state->stack_size = 0; |
| 1531 | state->drap = true; |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1532 | } |
| 1533 | |
| 1534 | /* |
| 1535 | * Older versions of GCC (4.8ish) realign the stack |
| 1536 | * without DRAP, with a frame pointer. |
| 1537 | */ |
| 1538 | |
| 1539 | break; |
| 1540 | |
| 1541 | case OP_SRC_POP: |
| 1542 | if (!state->drap && op->dest.type == OP_DEST_REG && |
| 1543 | op->dest.reg == cfa->base) { |
| 1544 | |
| 1545 | /* pop %rbp */ |
| 1546 | cfa->base = CFI_SP; |
| 1547 | } |
| 1548 | |
Josh Poimboeuf | bf4d1a8 | 2017-08-10 16:37:26 -0500 | [diff] [blame] | 1549 | if (state->drap && cfa->base == CFI_BP_INDIRECT && |
| 1550 | op->dest.type == OP_DEST_REG && |
| 1551 | op->dest.reg == state->drap_reg && |
| 1552 | state->drap_offset == -state->stack_size) { |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1553 | |
Josh Poimboeuf | bf4d1a8 | 2017-08-10 16:37:26 -0500 | [diff] [blame] | 1554 | /* drap: pop %drap */ |
| 1555 | cfa->base = state->drap_reg; |
| 1556 | cfa->offset = 0; |
| 1557 | state->drap_offset = -1; |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1558 | |
Josh Poimboeuf | bf4d1a8 | 2017-08-10 16:37:26 -0500 | [diff] [blame] | 1559 | } else if (regs[op->dest.reg].offset == -state->stack_size) { |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1560 | |
Josh Poimboeuf | bf4d1a8 | 2017-08-10 16:37:26 -0500 | [diff] [blame] | 1561 | /* pop %reg */ |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1562 | restore_reg(state, op->dest.reg); |
| 1563 | } |
| 1564 | |
| 1565 | state->stack_size -= 8; |
| 1566 | if (cfa->base == CFI_SP) |
| 1567 | cfa->offset -= 8; |
| 1568 | |
| 1569 | break; |
| 1570 | |
| 1571 | case OP_SRC_REG_INDIRECT: |
| 1572 | if (state->drap && op->src.reg == CFI_BP && |
Josh Poimboeuf | bf4d1a8 | 2017-08-10 16:37:26 -0500 | [diff] [blame] | 1573 | op->src.offset == state->drap_offset) { |
| 1574 | |
| 1575 | /* drap: mov disp(%rbp), %drap */ |
| 1576 | cfa->base = state->drap_reg; |
| 1577 | cfa->offset = 0; |
| 1578 | state->drap_offset = -1; |
| 1579 | } |
| 1580 | |
| 1581 | if (state->drap && op->src.reg == CFI_BP && |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1582 | op->src.offset == regs[op->dest.reg].offset) { |
| 1583 | |
| 1584 | /* drap: mov disp(%rbp), %reg */ |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1585 | restore_reg(state, op->dest.reg); |
| 1586 | |
| 1587 | } else if (op->src.reg == cfa->base && |
| 1588 | op->src.offset == regs[op->dest.reg].offset + cfa->offset) { |
| 1589 | |
| 1590 | /* mov disp(%rbp), %reg */ |
| 1591 | /* mov disp(%rsp), %reg */ |
| 1592 | restore_reg(state, op->dest.reg); |
| 1593 | } |
| 1594 | |
| 1595 | break; |
| 1596 | |
| 1597 | default: |
| 1598 | WARN_FUNC("unknown stack-related instruction", |
| 1599 | insn->sec, insn->offset); |
| 1600 | return -1; |
| 1601 | } |
| 1602 | |
| 1603 | break; |
| 1604 | |
| 1605 | case OP_DEST_PUSH: |
| 1606 | state->stack_size += 8; |
| 1607 | if (cfa->base == CFI_SP) |
| 1608 | cfa->offset += 8; |
| 1609 | |
| 1610 | if (op->src.type != OP_SRC_REG) |
| 1611 | break; |
| 1612 | |
| 1613 | if (state->drap) { |
| 1614 | if (op->src.reg == cfa->base && op->src.reg == state->drap_reg) { |
| 1615 | |
| 1616 | /* drap: push %drap */ |
| 1617 | cfa->base = CFI_BP_INDIRECT; |
| 1618 | cfa->offset = -state->stack_size; |
| 1619 | |
Josh Poimboeuf | bf4d1a8 | 2017-08-10 16:37:26 -0500 | [diff] [blame] | 1620 | /* save drap so we know when to restore it */ |
| 1621 | state->drap_offset = -state->stack_size; |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1622 | |
| 1623 | } else if (op->src.reg == CFI_BP && cfa->base == state->drap_reg) { |
| 1624 | |
| 1625 | /* drap: push %rbp */ |
| 1626 | state->stack_size = 0; |
| 1627 | |
| 1628 | } else if (regs[op->src.reg].base == CFI_UNDEFINED) { |
| 1629 | |
| 1630 | /* drap: push %reg */ |
| 1631 | save_reg(state, op->src.reg, CFI_BP, -state->stack_size); |
| 1632 | } |
| 1633 | |
| 1634 | } else { |
| 1635 | |
| 1636 | /* push %reg */ |
| 1637 | save_reg(state, op->src.reg, CFI_CFA, -state->stack_size); |
| 1638 | } |
| 1639 | |
| 1640 | /* detect when asm code uses rbp as a scratch register */ |
Josh Poimboeuf | 867ac9d | 2017-07-24 18:34:14 -0500 | [diff] [blame] | 1641 | if (!no_fp && insn->func && op->src.reg == CFI_BP && |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1642 | cfa->base != CFI_BP) |
| 1643 | state->bp_scratch = true; |
| 1644 | break; |
| 1645 | |
| 1646 | case OP_DEST_REG_INDIRECT: |
| 1647 | |
| 1648 | if (state->drap) { |
| 1649 | if (op->src.reg == cfa->base && op->src.reg == state->drap_reg) { |
| 1650 | |
| 1651 | /* drap: mov %drap, disp(%rbp) */ |
| 1652 | cfa->base = CFI_BP_INDIRECT; |
| 1653 | cfa->offset = op->dest.offset; |
| 1654 | |
Josh Poimboeuf | bf4d1a8 | 2017-08-10 16:37:26 -0500 | [diff] [blame] | 1655 | /* save drap offset so we know when to restore it */ |
| 1656 | state->drap_offset = op->dest.offset; |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1657 | } |
| 1658 | |
| 1659 | else if (regs[op->src.reg].base == CFI_UNDEFINED) { |
| 1660 | |
| 1661 | /* drap: mov reg, disp(%rbp) */ |
| 1662 | save_reg(state, op->src.reg, CFI_BP, op->dest.offset); |
| 1663 | } |
| 1664 | |
| 1665 | } else if (op->dest.reg == cfa->base) { |
| 1666 | |
| 1667 | /* mov reg, disp(%rbp) */ |
| 1668 | /* mov reg, disp(%rsp) */ |
| 1669 | save_reg(state, op->src.reg, CFI_CFA, |
| 1670 | op->dest.offset - state->cfa.offset); |
| 1671 | } |
| 1672 | |
| 1673 | break; |
| 1674 | |
| 1675 | case OP_DEST_LEAVE: |
| 1676 | if ((!state->drap && cfa->base != CFI_BP) || |
| 1677 | (state->drap && cfa->base != state->drap_reg)) { |
| 1678 | WARN_FUNC("leave instruction with modified stack frame", |
| 1679 | insn->sec, insn->offset); |
| 1680 | return -1; |
| 1681 | } |
| 1682 | |
| 1683 | /* leave (mov %rbp, %rsp; pop %rbp) */ |
| 1684 | |
| 1685 | state->stack_size = -state->regs[CFI_BP].offset - 8; |
| 1686 | restore_reg(state, CFI_BP); |
| 1687 | |
| 1688 | if (!state->drap) { |
| 1689 | cfa->base = CFI_SP; |
| 1690 | cfa->offset -= 8; |
| 1691 | } |
| 1692 | |
| 1693 | break; |
| 1694 | |
| 1695 | case OP_DEST_MEM: |
| 1696 | if (op->src.type != OP_SRC_POP) { |
| 1697 | WARN_FUNC("unknown stack-related memory operation", |
| 1698 | insn->sec, insn->offset); |
| 1699 | return -1; |
| 1700 | } |
| 1701 | |
| 1702 | /* pop mem */ |
| 1703 | state->stack_size -= 8; |
| 1704 | if (cfa->base == CFI_SP) |
| 1705 | cfa->offset -= 8; |
| 1706 | |
| 1707 | break; |
| 1708 | |
| 1709 | default: |
| 1710 | WARN_FUNC("unknown stack-related instruction", |
| 1711 | insn->sec, insn->offset); |
| 1712 | return -1; |
| 1713 | } |
| 1714 | |
| 1715 | return 0; |
| 1716 | } |
| 1717 | |
| 1718 | static bool insn_state_match(struct instruction *insn, struct insn_state *state) |
| 1719 | { |
| 1720 | struct insn_state *state1 = &insn->state, *state2 = state; |
| 1721 | int i; |
| 1722 | |
| 1723 | if (memcmp(&state1->cfa, &state2->cfa, sizeof(state1->cfa))) { |
| 1724 | WARN_FUNC("stack state mismatch: cfa1=%d%+d cfa2=%d%+d", |
| 1725 | insn->sec, insn->offset, |
| 1726 | state1->cfa.base, state1->cfa.offset, |
| 1727 | state2->cfa.base, state2->cfa.offset); |
| 1728 | |
| 1729 | } else if (memcmp(&state1->regs, &state2->regs, sizeof(state1->regs))) { |
| 1730 | for (i = 0; i < CFI_NUM_REGS; i++) { |
| 1731 | if (!memcmp(&state1->regs[i], &state2->regs[i], |
| 1732 | sizeof(struct cfi_reg))) |
| 1733 | continue; |
| 1734 | |
| 1735 | WARN_FUNC("stack state mismatch: reg1[%d]=%d%+d reg2[%d]=%d%+d", |
| 1736 | insn->sec, insn->offset, |
| 1737 | i, state1->regs[i].base, state1->regs[i].offset, |
| 1738 | i, state2->regs[i].base, state2->regs[i].offset); |
| 1739 | break; |
| 1740 | } |
| 1741 | |
Josh Poimboeuf | 627fce1 | 2017-07-11 10:33:42 -0500 | [diff] [blame] | 1742 | } else if (state1->type != state2->type) { |
| 1743 | WARN_FUNC("stack state mismatch: type1=%d type2=%d", |
| 1744 | insn->sec, insn->offset, state1->type, state2->type); |
| 1745 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1746 | } else if (state1->drap != state2->drap || |
Josh Poimboeuf | bf4d1a8 | 2017-08-10 16:37:26 -0500 | [diff] [blame] | 1747 | (state1->drap && state1->drap_reg != state2->drap_reg) || |
| 1748 | (state1->drap && state1->drap_offset != state2->drap_offset)) { |
| 1749 | 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] | 1750 | insn->sec, insn->offset, |
Josh Poimboeuf | bf4d1a8 | 2017-08-10 16:37:26 -0500 | [diff] [blame] | 1751 | state1->drap, state1->drap_reg, state1->drap_offset, |
| 1752 | state2->drap, state2->drap_reg, state2->drap_offset); |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1753 | |
| 1754 | } else |
| 1755 | return true; |
| 1756 | |
| 1757 | return false; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1758 | } |
| 1759 | |
| 1760 | /* |
| 1761 | * Follow the branch starting at the given instruction, and recursively follow |
| 1762 | * any other branches (jumps). Meanwhile, track the frame pointer state at |
| 1763 | * each instruction and validate all the rules described in |
| 1764 | * tools/objtool/Documentation/stack-validation.txt. |
| 1765 | */ |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1766 | static int validate_branch(struct objtool_file *file, struct instruction *first, |
| 1767 | struct insn_state state) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1768 | { |
| 1769 | struct alternative *alt; |
Josh Poimboeuf | 39358a0 | 2017-07-11 10:33:43 -0500 | [diff] [blame] | 1770 | struct instruction *insn, *next_insn; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1771 | struct section *sec; |
| 1772 | struct symbol *func = NULL; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1773 | int ret; |
| 1774 | |
| 1775 | insn = first; |
| 1776 | sec = insn->sec; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1777 | |
| 1778 | if (insn->alt_group && list_empty(&insn->alts)) { |
| 1779 | WARN_FUNC("don't know how to handle branch to middle of alternative instruction group", |
| 1780 | sec, insn->offset); |
Josh Poimboeuf | 12b2572 | 2017-08-10 16:37:25 -0500 | [diff] [blame] | 1781 | return 1; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1782 | } |
| 1783 | |
| 1784 | while (1) { |
Josh Poimboeuf | 39358a0 | 2017-07-11 10:33:43 -0500 | [diff] [blame] | 1785 | next_insn = next_insn_same_sec(file, insn); |
| 1786 | |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 1787 | if (file->c_file && func && insn->func && func != insn->func->pfunc) { |
Josh Poimboeuf | ee97638 | 2017-08-11 12:24:15 -0500 | [diff] [blame] | 1788 | WARN("%s() falls through to next function %s()", |
| 1789 | func->name, insn->func->name); |
| 1790 | return 1; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1791 | } |
| 1792 | |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 1793 | func = insn->func ? insn->func->pfunc : NULL; |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1794 | |
Josh Poimboeuf | 4855022 | 2017-07-07 09:19:42 -0500 | [diff] [blame] | 1795 | if (func && insn->ignore) { |
| 1796 | WARN_FUNC("BUG: why am I validating an ignored function?", |
| 1797 | sec, insn->offset); |
Josh Poimboeuf | 12b2572 | 2017-08-10 16:37:25 -0500 | [diff] [blame] | 1798 | return 1; |
Josh Poimboeuf | 4855022 | 2017-07-07 09:19:42 -0500 | [diff] [blame] | 1799 | } |
| 1800 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1801 | if (insn->visited) { |
Josh Poimboeuf | 39358a0 | 2017-07-11 10:33:43 -0500 | [diff] [blame] | 1802 | if (!insn->hint && !insn_state_match(insn, &state)) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1803 | return 1; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1804 | |
| 1805 | return 0; |
| 1806 | } |
| 1807 | |
Josh Poimboeuf | 39358a0 | 2017-07-11 10:33:43 -0500 | [diff] [blame] | 1808 | if (insn->hint) { |
| 1809 | if (insn->restore) { |
| 1810 | struct instruction *save_insn, *i; |
| 1811 | |
| 1812 | i = insn; |
| 1813 | save_insn = NULL; |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 1814 | func_for_each_insn_continue_reverse(file, insn->func, i) { |
Josh Poimboeuf | 39358a0 | 2017-07-11 10:33:43 -0500 | [diff] [blame] | 1815 | if (i->save) { |
| 1816 | save_insn = i; |
| 1817 | break; |
| 1818 | } |
| 1819 | } |
| 1820 | |
| 1821 | if (!save_insn) { |
| 1822 | WARN_FUNC("no corresponding CFI save for CFI restore", |
| 1823 | sec, insn->offset); |
| 1824 | return 1; |
| 1825 | } |
| 1826 | |
| 1827 | if (!save_insn->visited) { |
| 1828 | /* |
| 1829 | * Oops, no state to copy yet. |
| 1830 | * Hopefully we can reach this |
| 1831 | * instruction from another branch |
| 1832 | * after the save insn has been |
| 1833 | * visited. |
| 1834 | */ |
| 1835 | if (insn == first) |
| 1836 | return 0; |
| 1837 | |
| 1838 | WARN_FUNC("objtool isn't smart enough to handle this CFI save/restore combo", |
| 1839 | sec, insn->offset); |
| 1840 | return 1; |
| 1841 | } |
| 1842 | |
| 1843 | insn->state = save_insn->state; |
| 1844 | } |
| 1845 | |
| 1846 | state = insn->state; |
| 1847 | |
| 1848 | } else |
| 1849 | insn->state = state; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1850 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1851 | insn->visited = true; |
| 1852 | |
Josh Poimboeuf | a845c7c | 2018-01-29 22:00:39 -0600 | [diff] [blame] | 1853 | if (!insn->ignore_alts) { |
| 1854 | list_for_each_entry(alt, &insn->alts, list) { |
| 1855 | ret = validate_branch(file, alt->insn, state); |
| 1856 | if (ret) |
| 1857 | return 1; |
| 1858 | } |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1859 | } |
| 1860 | |
| 1861 | switch (insn->type) { |
| 1862 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1863 | case INSN_RETURN: |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1864 | if (func && has_modified_stack_frame(&state)) { |
| 1865 | WARN_FUNC("return with modified stack frame", |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1866 | sec, insn->offset); |
| 1867 | return 1; |
| 1868 | } |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1869 | |
| 1870 | if (state.bp_scratch) { |
| 1871 | WARN("%s uses BP as a scratch register", |
| 1872 | insn->func->name); |
| 1873 | return 1; |
| 1874 | } |
| 1875 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1876 | return 0; |
| 1877 | |
| 1878 | case INSN_CALL: |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1879 | if (is_fentry_call(insn)) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1880 | break; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1881 | |
| 1882 | ret = dead_end_function(file, insn->call_dest); |
| 1883 | if (ret == 1) |
| 1884 | return 0; |
| 1885 | if (ret == -1) |
| 1886 | return 1; |
| 1887 | |
| 1888 | /* fallthrough */ |
| 1889 | case INSN_CALL_DYNAMIC: |
Josh Poimboeuf | 867ac9d | 2017-07-24 18:34:14 -0500 | [diff] [blame] | 1890 | if (!no_fp && func && !has_valid_stack_frame(&state)) { |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1891 | WARN_FUNC("call without frame pointer save/setup", |
| 1892 | sec, insn->offset); |
| 1893 | return 1; |
| 1894 | } |
| 1895 | break; |
| 1896 | |
| 1897 | case INSN_JUMP_CONDITIONAL: |
| 1898 | case INSN_JUMP_UNCONDITIONAL: |
Josh Poimboeuf | 4855022 | 2017-07-07 09:19:42 -0500 | [diff] [blame] | 1899 | if (insn->jump_dest && |
| 1900 | (!func || !insn->jump_dest->func || |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 1901 | insn->jump_dest->func->pfunc == func)) { |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1902 | ret = validate_branch(file, insn->jump_dest, |
| 1903 | state); |
| 1904 | if (ret) |
| 1905 | return 1; |
Josh Poimboeuf | 4855022 | 2017-07-07 09:19:42 -0500 | [diff] [blame] | 1906 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1907 | } else if (func && has_modified_stack_frame(&state)) { |
| 1908 | WARN_FUNC("sibling call from callable instruction with modified stack frame", |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1909 | sec, insn->offset); |
| 1910 | return 1; |
Josh Poimboeuf | 4855022 | 2017-07-07 09:19:42 -0500 | [diff] [blame] | 1911 | } |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1912 | |
| 1913 | if (insn->type == INSN_JUMP_UNCONDITIONAL) |
| 1914 | return 0; |
| 1915 | |
| 1916 | break; |
| 1917 | |
| 1918 | case INSN_JUMP_DYNAMIC: |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1919 | if (func && list_empty(&insn->alts) && |
| 1920 | has_modified_stack_frame(&state)) { |
| 1921 | WARN_FUNC("sibling call from callable instruction with modified stack frame", |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1922 | sec, insn->offset); |
| 1923 | return 1; |
| 1924 | } |
| 1925 | |
| 1926 | return 0; |
| 1927 | |
Josh Poimboeuf | 39358a0 | 2017-07-11 10:33:43 -0500 | [diff] [blame] | 1928 | case INSN_CONTEXT_SWITCH: |
| 1929 | if (func && (!next_insn || !next_insn->hint)) { |
| 1930 | WARN_FUNC("unsupported instruction in callable function", |
| 1931 | sec, insn->offset); |
| 1932 | return 1; |
| 1933 | } |
| 1934 | return 0; |
| 1935 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1936 | case INSN_STACK: |
| 1937 | if (update_insn_state(insn, &state)) |
Josh Poimboeuf | 12b2572 | 2017-08-10 16:37:25 -0500 | [diff] [blame] | 1938 | return 1; |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 1939 | |
| 1940 | break; |
| 1941 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1942 | default: |
| 1943 | break; |
| 1944 | } |
| 1945 | |
| 1946 | if (insn->dead_end) |
| 1947 | return 0; |
| 1948 | |
Josh Poimboeuf | 00d9618 | 2017-09-18 21:43:30 -0500 | [diff] [blame] | 1949 | if (!next_insn) { |
| 1950 | if (state.cfa.base == CFI_UNDEFINED) |
| 1951 | return 0; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1952 | WARN("%s: unexpected end of section", sec->name); |
| 1953 | return 1; |
| 1954 | } |
Josh Poimboeuf | 00d9618 | 2017-09-18 21:43:30 -0500 | [diff] [blame] | 1955 | |
| 1956 | insn = next_insn; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 1957 | } |
| 1958 | |
| 1959 | return 0; |
| 1960 | } |
| 1961 | |
Josh Poimboeuf | 39358a0 | 2017-07-11 10:33:43 -0500 | [diff] [blame] | 1962 | static int validate_unwind_hints(struct objtool_file *file) |
| 1963 | { |
| 1964 | struct instruction *insn; |
| 1965 | int ret, warnings = 0; |
| 1966 | struct insn_state state; |
| 1967 | |
| 1968 | if (!file->hints) |
| 1969 | return 0; |
| 1970 | |
| 1971 | clear_insn_state(&state); |
| 1972 | |
| 1973 | for_each_insn(file, insn) { |
| 1974 | if (insn->hint && !insn->visited) { |
| 1975 | ret = validate_branch(file, insn, state); |
| 1976 | warnings += ret; |
| 1977 | } |
| 1978 | } |
| 1979 | |
| 1980 | return warnings; |
| 1981 | } |
| 1982 | |
Peter Zijlstra | b5bc223 | 2018-01-16 10:24:06 +0100 | [diff] [blame] | 1983 | static int validate_retpoline(struct objtool_file *file) |
| 1984 | { |
| 1985 | struct instruction *insn; |
| 1986 | int warnings = 0; |
| 1987 | |
| 1988 | for_each_insn(file, insn) { |
| 1989 | if (insn->type != INSN_JUMP_DYNAMIC && |
| 1990 | insn->type != INSN_CALL_DYNAMIC) |
| 1991 | continue; |
| 1992 | |
| 1993 | if (insn->retpoline_safe) |
| 1994 | continue; |
| 1995 | |
Peter Zijlstra | ca41b97 | 2018-01-31 10:18:28 +0100 | [diff] [blame] | 1996 | /* |
| 1997 | * .init.text code is ran before userspace and thus doesn't |
| 1998 | * strictly need retpolines, except for modules which are |
| 1999 | * loaded late, they very much do need retpoline in their |
| 2000 | * .init.text |
| 2001 | */ |
| 2002 | if (!strcmp(insn->sec->name, ".init.text") && !module) |
| 2003 | continue; |
| 2004 | |
Peter Zijlstra | b5bc223 | 2018-01-16 10:24:06 +0100 | [diff] [blame] | 2005 | WARN_FUNC("indirect %s found in RETPOLINE build", |
| 2006 | insn->sec, insn->offset, |
| 2007 | insn->type == INSN_JUMP_DYNAMIC ? "jump" : "call"); |
| 2008 | |
| 2009 | warnings++; |
| 2010 | } |
| 2011 | |
| 2012 | return warnings; |
| 2013 | } |
| 2014 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2015 | static bool is_kasan_insn(struct instruction *insn) |
| 2016 | { |
| 2017 | return (insn->type == INSN_CALL && |
| 2018 | !strcmp(insn->call_dest->name, "__asan_handle_no_return")); |
| 2019 | } |
| 2020 | |
| 2021 | static bool is_ubsan_insn(struct instruction *insn) |
| 2022 | { |
| 2023 | return (insn->type == INSN_CALL && |
| 2024 | !strcmp(insn->call_dest->name, |
| 2025 | "__ubsan_handle_builtin_unreachable")); |
| 2026 | } |
| 2027 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 2028 | static bool ignore_unreachable_insn(struct instruction *insn) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2029 | { |
| 2030 | int i; |
| 2031 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 2032 | if (insn->ignore || insn->type == INSN_NOP) |
| 2033 | return true; |
| 2034 | |
| 2035 | /* |
| 2036 | * Ignore any unused exceptions. This can happen when a whitelisted |
| 2037 | * function has an exception table entry. |
Josh Poimboeuf | 0e2bb2b | 2017-07-27 15:56:54 -0500 | [diff] [blame] | 2038 | * |
| 2039 | * Also ignore alternative replacement instructions. This can happen |
| 2040 | * when a whitelisted function uses one of the ALTERNATIVE macros. |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 2041 | */ |
Josh Poimboeuf | 0e2bb2b | 2017-07-27 15:56:54 -0500 | [diff] [blame] | 2042 | if (!strcmp(insn->sec->name, ".fixup") || |
| 2043 | !strcmp(insn->sec->name, ".altinstr_replacement") || |
| 2044 | !strcmp(insn->sec->name, ".altinstr_aux")) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2045 | return true; |
| 2046 | |
| 2047 | /* |
| 2048 | * Check if this (or a subsequent) instruction is related to |
| 2049 | * CONFIG_UBSAN or CONFIG_KASAN. |
| 2050 | * |
| 2051 | * End the search at 5 instructions to avoid going into the weeds. |
| 2052 | */ |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 2053 | if (!insn->func) |
| 2054 | return false; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2055 | for (i = 0; i < 5; i++) { |
| 2056 | |
| 2057 | if (is_kasan_insn(insn) || is_ubsan_insn(insn)) |
| 2058 | return true; |
| 2059 | |
Josh Poimboeuf | fe24e27 | 2018-02-08 17:09:25 -0600 | [diff] [blame] | 2060 | if (insn->type == INSN_JUMP_UNCONDITIONAL) { |
| 2061 | if (insn->jump_dest && |
| 2062 | insn->jump_dest->func == insn->func) { |
| 2063 | insn = insn->jump_dest; |
| 2064 | continue; |
| 2065 | } |
| 2066 | |
| 2067 | break; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2068 | } |
| 2069 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 2070 | if (insn->offset + insn->len >= insn->func->offset + insn->func->len) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2071 | break; |
Josh Poimboeuf | fe24e27 | 2018-02-08 17:09:25 -0600 | [diff] [blame] | 2072 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2073 | insn = list_next_entry(insn, list); |
| 2074 | } |
| 2075 | |
| 2076 | return false; |
| 2077 | } |
| 2078 | |
| 2079 | static int validate_functions(struct objtool_file *file) |
| 2080 | { |
| 2081 | struct section *sec; |
| 2082 | struct symbol *func; |
| 2083 | struct instruction *insn; |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 2084 | struct insn_state state; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2085 | int ret, warnings = 0; |
| 2086 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 2087 | clear_insn_state(&state); |
| 2088 | |
| 2089 | state.cfa = initial_func_cfi.cfa; |
| 2090 | memcpy(&state.regs, &initial_func_cfi.regs, |
| 2091 | CFI_NUM_REGS * sizeof(struct cfi_reg)); |
| 2092 | state.stack_size = initial_func_cfi.cfa.offset; |
| 2093 | |
| 2094 | for_each_sec(file, sec) { |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2095 | list_for_each_entry(func, &sec->symbol_list, list) { |
Josh Poimboeuf | 1381043 | 2018-05-09 22:39:15 -0500 | [diff] [blame] | 2096 | if (func->type != STT_FUNC || func->pfunc != func) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2097 | continue; |
| 2098 | |
| 2099 | insn = find_insn(file, sec, func->offset); |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 2100 | if (!insn || insn->ignore) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2101 | continue; |
| 2102 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 2103 | ret = validate_branch(file, insn, state); |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2104 | warnings += ret; |
| 2105 | } |
| 2106 | } |
| 2107 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2108 | return warnings; |
| 2109 | } |
| 2110 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 2111 | static int validate_reachable_instructions(struct objtool_file *file) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2112 | { |
| 2113 | struct instruction *insn; |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 2114 | |
| 2115 | if (file->ignore_unreachables) |
| 2116 | return 0; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2117 | |
| 2118 | for_each_insn(file, insn) { |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 2119 | if (insn->visited || ignore_unreachable_insn(insn)) |
| 2120 | continue; |
| 2121 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 2122 | WARN_FUNC("unreachable instruction", insn->sec, insn->offset); |
| 2123 | return 1; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2124 | } |
| 2125 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 2126 | return 0; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2127 | } |
| 2128 | |
| 2129 | static void cleanup(struct objtool_file *file) |
| 2130 | { |
| 2131 | struct instruction *insn, *tmpinsn; |
| 2132 | struct alternative *alt, *tmpalt; |
| 2133 | |
| 2134 | list_for_each_entry_safe(insn, tmpinsn, &file->insn_list, list) { |
| 2135 | list_for_each_entry_safe(alt, tmpalt, &insn->alts, list) { |
| 2136 | list_del(&alt->list); |
| 2137 | free(alt); |
| 2138 | } |
| 2139 | list_del(&insn->list); |
| 2140 | hash_del(&insn->hash); |
| 2141 | free(insn); |
| 2142 | } |
| 2143 | elf_close(file->elf); |
| 2144 | } |
| 2145 | |
Peter Zijlstra | 43a4525 | 2018-01-16 17:16:32 +0100 | [diff] [blame] | 2146 | int check(const char *_objname, bool orc) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2147 | { |
| 2148 | struct objtool_file file; |
| 2149 | int ret, warnings = 0; |
| 2150 | |
| 2151 | objname = _objname; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2152 | |
Josh Poimboeuf | 627fce1 | 2017-07-11 10:33:42 -0500 | [diff] [blame] | 2153 | file.elf = elf_open(objname, orc ? O_RDWR : O_RDONLY); |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 2154 | if (!file.elf) |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2155 | return 1; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2156 | |
| 2157 | INIT_LIST_HEAD(&file.insn_list); |
| 2158 | hash_init(file.insn_hash); |
| 2159 | file.whitelist = find_section_by_name(file.elf, ".discard.func_stack_frame_non_standard"); |
| 2160 | file.rodata = find_section_by_name(file.elf, ".rodata"); |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2161 | file.c_file = find_section_by_name(file.elf, ".comment"); |
Josh Poimboeuf | 867ac9d | 2017-07-24 18:34:14 -0500 | [diff] [blame] | 2162 | file.ignore_unreachables = no_unreachable; |
Josh Poimboeuf | 39358a0 | 2017-07-11 10:33:43 -0500 | [diff] [blame] | 2163 | file.hints = false; |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2164 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 2165 | arch_initial_func_cfi_state(&initial_func_cfi); |
| 2166 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2167 | ret = decode_sections(&file); |
| 2168 | if (ret < 0) |
| 2169 | goto out; |
| 2170 | warnings += ret; |
| 2171 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 2172 | if (list_empty(&file.insn_list)) |
| 2173 | goto out; |
| 2174 | |
Peter Zijlstra | b5bc223 | 2018-01-16 10:24:06 +0100 | [diff] [blame] | 2175 | if (retpoline) { |
| 2176 | ret = validate_retpoline(&file); |
| 2177 | if (ret < 0) |
| 2178 | return ret; |
| 2179 | warnings += ret; |
| 2180 | } |
| 2181 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2182 | ret = validate_functions(&file); |
| 2183 | if (ret < 0) |
| 2184 | goto out; |
| 2185 | warnings += ret; |
| 2186 | |
Josh Poimboeuf | 39358a0 | 2017-07-11 10:33:43 -0500 | [diff] [blame] | 2187 | ret = validate_unwind_hints(&file); |
| 2188 | if (ret < 0) |
| 2189 | goto out; |
| 2190 | warnings += ret; |
| 2191 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 2192 | if (!warnings) { |
| 2193 | ret = validate_reachable_instructions(&file); |
| 2194 | if (ret < 0) |
| 2195 | goto out; |
| 2196 | warnings += ret; |
| 2197 | } |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2198 | |
Josh Poimboeuf | 627fce1 | 2017-07-11 10:33:42 -0500 | [diff] [blame] | 2199 | if (orc) { |
| 2200 | ret = create_orc(&file); |
| 2201 | if (ret < 0) |
| 2202 | goto out; |
| 2203 | |
| 2204 | ret = create_orc_sections(&file); |
| 2205 | if (ret < 0) |
| 2206 | goto out; |
| 2207 | |
| 2208 | ret = elf_write(file.elf); |
| 2209 | if (ret < 0) |
| 2210 | goto out; |
| 2211 | } |
| 2212 | |
Josh Poimboeuf | dcc914f | 2017-06-28 10:11:05 -0500 | [diff] [blame] | 2213 | out: |
| 2214 | cleanup(&file); |
| 2215 | |
| 2216 | /* ignore warnings for now until we get all the code cleaned up */ |
| 2217 | if (ret || warnings) |
| 2218 | return 0; |
| 2219 | return 0; |
| 2220 | } |