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