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