Linux Audio

Check our new training course

Loading...
v4.17
 
   1/*
   2 * Copyright (C) 2015-2017 Josh Poimboeuf <jpoimboe@redhat.com>
   3 *
   4 * This program is free software; you can redistribute it and/or
   5 * modify it under the terms of the GNU General Public License
   6 * as published by the Free Software Foundation; either version 2
   7 * of the License, or (at your option) any later version.
   8 *
   9 * This program is distributed in the hope that it will be useful,
  10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12 * GNU General Public License for more details.
  13 *
  14 * You should have received a copy of the GNU General Public License
  15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
  16 */
  17
  18#include <string.h>
  19#include <stdlib.h>
 
 
  20
  21#include "builtin.h"
  22#include "check.h"
  23#include "elf.h"
  24#include "special.h"
  25#include "arch.h"
  26#include "warn.h"
 
  27
 
  28#include <linux/hashtable.h>
  29#include <linux/kernel.h>
 
 
  30
  31struct alternative {
  32	struct list_head list;
  33	struct instruction *insn;
 
  34};
  35
  36const char *objname;
  37struct cfi_state initial_func_cfi;
 
 
 
 
  38
  39struct instruction *find_insn(struct objtool_file *file,
  40			      struct section *sec, unsigned long offset)
  41{
  42	struct instruction *insn;
  43
  44	hash_for_each_possible(file->insn_hash, insn, hash, offset)
  45		if (insn->sec == sec && insn->offset == offset)
  46			return insn;
 
  47
  48	return NULL;
  49}
  50
  51static struct instruction *next_insn_same_sec(struct objtool_file *file,
  52					      struct instruction *insn)
  53{
  54	struct instruction *next = list_next_entry(insn, list);
 
  55
  56	if (!next || &next->list == &file->insn_list || next->sec != insn->sec)
 
  57		return NULL;
  58
  59	return next;
  60}
  61
  62static struct instruction *next_insn_same_func(struct objtool_file *file,
  63					       struct instruction *insn)
  64{
  65	struct instruction *next = list_next_entry(insn, list);
  66	struct symbol *func = insn->func;
  67
  68	if (!func)
  69		return NULL;
  70
  71	if (&next->list != &file->insn_list && next->func == func)
  72		return next;
  73
  74	/* Check if we're already in the subfunction: */
  75	if (func == func->cfunc)
  76		return NULL;
  77
  78	/* Move to the subfunction: */
  79	return find_insn(file, func->cfunc->sec, func->cfunc->offset);
  80}
  81
  82#define func_for_each_insn_all(file, func, insn)			\
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  83	for (insn = find_insn(file, func->sec, func->offset);		\
  84	     insn;							\
  85	     insn = next_insn_same_func(file, insn))
  86
  87#define func_for_each_insn(file, func, insn)				\
  88	for (insn = find_insn(file, func->sec, func->offset);		\
  89	     insn && &insn->list != &file->insn_list &&			\
  90		insn->sec == func->sec &&				\
  91		insn->offset < func->offset + func->len;		\
  92	     insn = list_next_entry(insn, list))
  93
  94#define func_for_each_insn_continue_reverse(file, func, insn)		\
  95	for (insn = list_prev_entry(insn, list);			\
  96	     &insn->list != &file->insn_list &&				\
  97		insn->sec == func->sec && insn->offset >= func->offset;	\
  98	     insn = list_prev_entry(insn, list))
  99
 100#define sec_for_each_insn_from(file, insn)				\
 101	for (; insn; insn = next_insn_same_sec(file, insn))
 102
 103#define sec_for_each_insn_continue(file, insn)				\
 104	for (insn = next_insn_same_sec(file, insn); insn;		\
 105	     insn = next_insn_same_sec(file, insn))
 106
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 107/*
 108 * Check if the function has been manually whitelisted with the
 109 * STACK_FRAME_NON_STANDARD macro, or if it should be automatically whitelisted
 110 * due to its use of a context switching instruction.
 111 */
 112static bool ignore_func(struct objtool_file *file, struct symbol *func)
 113{
 114	struct rela *rela;
 115
 116	/* check for STACK_FRAME_NON_STANDARD */
 117	if (file->whitelist && file->whitelist->rela)
 118		list_for_each_entry(rela, &file->whitelist->rela->rela_list, list) {
 119			if (rela->sym->type == STT_SECTION &&
 120			    rela->sym->sec == func->sec &&
 121			    rela->addend == func->offset)
 122				return true;
 123			if (rela->sym->type == STT_FUNC && rela->sym == func)
 124				return true;
 125		}
 126
 127	return false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 128}
 129
 130/*
 131 * This checks to see if the given function is a "noreturn" function.
 132 *
 133 * For global functions which are outside the scope of this object file, we
 134 * have to keep a manual list of them.
 135 *
 136 * For local functions, we have to detect them manually by simply looking for
 137 * the lack of a return instruction.
 138 *
 139 * Returns:
 140 *  -1: error
 141 *   0: no dead end
 142 *   1: dead end
 143 */
 144static int __dead_end_function(struct objtool_file *file, struct symbol *func,
 145			       int recursion)
 146{
 147	int i;
 148	struct instruction *insn;
 149	bool empty = true;
 150
 151	/*
 152	 * Unfortunately these have to be hard coded because the noreturn
 153	 * attribute isn't provided in ELF data.
 154	 */
 155	static const char * const global_noreturns[] = {
 156		"__stack_chk_fail",
 157		"panic",
 158		"do_exit",
 159		"do_task_dead",
 160		"__module_put_and_exit",
 161		"complete_and_exit",
 162		"kvm_spurious_fault",
 163		"__reiserfs_panic",
 164		"lbug_with_loc",
 165		"fortify_panic",
 166		"usercopy_abort",
 167	};
 
 168
 169	if (func->bind == STB_WEAK)
 170		return 0;
 
 
 
 
 171
 172	if (func->bind == STB_GLOBAL)
 173		for (i = 0; i < ARRAY_SIZE(global_noreturns); i++)
 174			if (!strcmp(func->name, global_noreturns[i]))
 175				return 1;
 
 
 
 
 176
 177	if (!func->len)
 178		return 0;
 179
 180	insn = find_insn(file, func->sec, func->offset);
 181	if (!insn->func)
 182		return 0;
 183
 184	func_for_each_insn_all(file, func, insn) {
 185		empty = false;
 186
 187		if (insn->type == INSN_RETURN)
 188			return 0;
 189	}
 190
 191	if (empty)
 192		return 0;
 193
 194	/*
 195	 * A function can have a sibling call instead of a return.  In that
 196	 * case, the function's dead-end status depends on whether the target
 197	 * of the sibling call returns.
 198	 */
 199	func_for_each_insn_all(file, func, insn) {
 200		if (insn->type == INSN_JUMP_UNCONDITIONAL) {
 201			struct instruction *dest = insn->jump_dest;
 202
 203			if (!dest)
 204				/* sibling call to another file */
 205				return 0;
 206
 207			if (dest->func && dest->func->pfunc != insn->func->pfunc) {
 208
 209				/* local sibling call */
 210				if (recursion == 5) {
 211					/*
 212					 * Infinite recursion: two functions
 213					 * have sibling calls to each other.
 214					 * This is a very rare case.  It means
 215					 * they aren't dead ends.
 216					 */
 217					return 0;
 218				}
 219
 220				return __dead_end_function(file, dest->func,
 221							   recursion + 1);
 
 
 
 
 
 
 222			}
 223		}
 224
 225		if (insn->type == INSN_JUMP_DYNAMIC && list_empty(&insn->alts))
 226			/* sibling call */
 227			return 0;
 228	}
 229
 230	return 1;
 231}
 232
 233static int dead_end_function(struct objtool_file *file, struct symbol *func)
 234{
 235	return __dead_end_function(file, func, 0);
 236}
 237
 238static void clear_insn_state(struct insn_state *state)
 239{
 240	int i;
 241
 242	memset(state, 0, sizeof(*state));
 243	state->cfa.base = CFI_UNDEFINED;
 244	for (i = 0; i < CFI_NUM_REGS; i++) {
 245		state->regs[i].base = CFI_UNDEFINED;
 246		state->vals[i].base = CFI_UNDEFINED;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 247	}
 248	state->drap_reg = CFI_UNDEFINED;
 249	state->drap_offset = -1;
 250}
 251
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 252/*
 253 * Call the arch-specific instruction decoder for all the instructions and add
 254 * them to the global instruction list.
 255 */
 256static int decode_instructions(struct objtool_file *file)
 257{
 258	struct section *sec;
 259	struct symbol *func;
 260	unsigned long offset;
 261	struct instruction *insn;
 262	int ret;
 263
 264	for_each_sec(file, sec) {
 
 
 
 265
 266		if (!(sec->sh.sh_flags & SHF_EXECINSTR))
 267			continue;
 268
 269		if (strcmp(sec->name, ".altinstr_replacement") &&
 270		    strcmp(sec->name, ".altinstr_aux") &&
 271		    strncmp(sec->name, ".discard.", 9))
 272			sec->text = true;
 273
 274		for (offset = 0; offset < sec->len; offset += insn->len) {
 275			insn = malloc(sizeof(*insn));
 276			if (!insn) {
 277				WARN("malloc failed");
 278				return -1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 279			}
 280			memset(insn, 0, sizeof(*insn));
 281			INIT_LIST_HEAD(&insn->alts);
 282			clear_insn_state(&insn->state);
 283
 
 284			insn->sec = sec;
 285			insn->offset = offset;
 
 286
 287			ret = arch_decode_instruction(file->elf, sec, offset,
 288						      sec->len - offset,
 289						      &insn->len, &insn->type,
 290						      &insn->immediate,
 291						      &insn->stack_op);
 292			if (ret)
 293				goto err;
 294
 295			if (!insn->type || insn->type > INSN_LAST) {
 296				WARN_FUNC("invalid instruction type %d",
 297					  insn->sec, insn->offset, insn->type);
 298				ret = -1;
 299				goto err;
 300			}
 301
 302			hash_add(file->insn_hash, &insn->hash, insn->offset);
 303			list_add_tail(&insn->list, &file->insn_list);
 
 
 
 
 
 
 
 
 304		}
 305
 306		list_for_each_entry(func, &sec->symbol_list, list) {
 307			if (func->type != STT_FUNC)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 308				continue;
 309
 310			if (!find_insn(file, sec, func->offset)) {
 311				WARN("%s(): can't find starting instruction",
 312				     func->name);
 313				return -1;
 314			}
 315
 316			func_for_each_insn(file, func, insn)
 317				if (!insn->func)
 318					insn->func = func;
 
 
 
 
 
 
 
 
 
 
 319		}
 320	}
 321
 
 
 
 322	return 0;
 
 323
 324err:
 325	free(insn);
 326	return ret;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 327}
 328
 329/*
 330 * Mark "ud2" instructions and manually annotated dead ends.
 331 */
 332static int add_dead_ends(struct objtool_file *file)
 333{
 334	struct section *sec;
 335	struct rela *rela;
 336	struct instruction *insn;
 337	bool found;
 338
 339	/*
 340	 * By default, "ud2" is a dead end unless otherwise annotated, because
 341	 * GCC 7 inserts it for certain divide-by-zero cases.
 342	 */
 343	for_each_insn(file, insn)
 344		if (insn->type == INSN_BUG)
 345			insn->dead_end = true;
 346
 347	/*
 348	 * Check for manually annotated dead ends.
 349	 */
 350	sec = find_section_by_name(file->elf, ".rela.discard.unreachable");
 351	if (!sec)
 352		goto reachable;
 353
 354	list_for_each_entry(rela, &sec->rela_list, list) {
 355		if (rela->sym->type != STT_SECTION) {
 356			WARN("unexpected relocation symbol type in %s", sec->name);
 
 
 
 
 357			return -1;
 358		}
 359		insn = find_insn(file, rela->sym->sec, rela->addend);
 360		if (insn)
 361			insn = list_prev_entry(insn, list);
 362		else if (rela->addend == rela->sym->sec->len) {
 363			found = false;
 364			list_for_each_entry_reverse(insn, &file->insn_list, list) {
 365				if (insn->sec == rela->sym->sec) {
 366					found = true;
 367					break;
 368				}
 369			}
 370
 371			if (!found) {
 372				WARN("can't find unreachable insn at %s+0x%x",
 373				     rela->sym->sec->name, rela->addend);
 
 
 
 
 
 374				return -1;
 375			}
 376		} else {
 377			WARN("can't find unreachable insn at %s+0x%x",
 378			     rela->sym->sec->name, rela->addend);
 379			return -1;
 380		}
 381
 382		insn->dead_end = true;
 383	}
 384
 385reachable:
 386	/*
 387	 * These manually annotated reachable checks are needed for GCC 4.4,
 388	 * where the Linux unreachable() macro isn't supported.  In that case
 389	 * GCC doesn't know the "ud2" is fatal, so it generates code as if it's
 390	 * not a dead end.
 391	 */
 392	sec = find_section_by_name(file->elf, ".rela.discard.reachable");
 393	if (!sec)
 
 
 
 
 
 
 
 394		return 0;
 
 
 
 
 
 
 
 
 395
 396	list_for_each_entry(rela, &sec->rela_list, list) {
 397		if (rela->sym->type != STT_SECTION) {
 398			WARN("unexpected relocation symbol type in %s", sec->name);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 399			return -1;
 400		}
 401		insn = find_insn(file, rela->sym->sec, rela->addend);
 402		if (insn)
 403			insn = list_prev_entry(insn, list);
 404		else if (rela->addend == rela->sym->sec->len) {
 405			found = false;
 406			list_for_each_entry_reverse(insn, &file->insn_list, list) {
 407				if (insn->sec == rela->sym->sec) {
 408					found = true;
 409					break;
 410				}
 411			}
 412
 413			if (!found) {
 414				WARN("can't find reachable insn at %s+0x%x",
 415				     rela->sym->sec->name, rela->addend);
 
 
 416				return -1;
 417			}
 418		} else {
 419			WARN("can't find reachable insn at %s+0x%x",
 420			     rela->sym->sec->name, rela->addend);
 421			return -1;
 
 
 
 
 
 
 
 422		}
 
 423
 424		insn->dead_end = false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 425	}
 426
 427	return 0;
 428}
 429
 430/*
 431 * Warnings shouldn't be reported for ignored functions.
 432 */
 433static void add_ignores(struct objtool_file *file)
 434{
 435	struct instruction *insn;
 436	struct section *sec;
 437	struct symbol *func;
 
 438
 439	for_each_sec(file, sec) {
 440		list_for_each_entry(func, &sec->symbol_list, list) {
 441			if (func->type != STT_FUNC)
 442				continue;
 
 
 
 
 
 443
 444			if (!ignore_func(file, func))
 
 
 445				continue;
 
 446
 447			func_for_each_insn_all(file, func, insn)
 448				insn->ignore = true;
 
 
 449		}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 450	}
 451}
 452
 453/*
 454 * FIXME: For now, just ignore any alternatives which add retpolines.  This is
 455 * a temporary hack, as it doesn't allow ORC to unwind from inside a retpoline.
 456 * But it at least allows objtool to understand the control flow *around* the
 457 * retpoline.
 458 */
 459static int add_nospec_ignores(struct objtool_file *file)
 460{
 461	struct section *sec;
 462	struct rela *rela;
 463	struct instruction *insn;
 464
 465	sec = find_section_by_name(file->elf, ".rela.discard.nospec");
 466	if (!sec)
 467		return 0;
 468
 469	list_for_each_entry(rela, &sec->rela_list, list) {
 470		if (rela->sym->type != STT_SECTION) {
 471			WARN("unexpected relocation symbol type in %s", sec->name);
 472			return -1;
 473		}
 474
 475		insn = find_insn(file, rela->sym->sec, rela->addend);
 476		if (!insn) {
 477			WARN("bad .discard.nospec entry");
 478			return -1;
 479		}
 480
 481		insn->ignore_alts = true;
 482	}
 483
 484	return 0;
 485}
 486
 487/*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 488 * Find the destination instructions for all jumps.
 489 */
 490static int add_jump_destinations(struct objtool_file *file)
 491{
 492	struct instruction *insn;
 493	struct rela *rela;
 494	struct section *dest_sec;
 495	unsigned long dest_off;
 496
 497	for_each_insn(file, insn) {
 498		if (insn->type != INSN_JUMP_CONDITIONAL &&
 499		    insn->type != INSN_JUMP_UNCONDITIONAL)
 
 
 
 500			continue;
 501
 502		if (insn->ignore)
 503			continue;
 504
 505		rela = find_rela_by_dest_range(insn->sec, insn->offset,
 506					       insn->len);
 507		if (!rela) {
 508			dest_sec = insn->sec;
 509			dest_off = insn->offset + insn->len + insn->immediate;
 510		} else if (rela->sym->type == STT_SECTION) {
 511			dest_sec = rela->sym->sec;
 512			dest_off = rela->addend + 4;
 513		} else if (rela->sym->sec->idx) {
 514			dest_sec = rela->sym->sec;
 515			dest_off = rela->sym->sym.st_value + rela->addend + 4;
 516		} else if (strstr(rela->sym->name, "_indirect_thunk_")) {
 
 
 
 517			/*
 518			 * Retpoline jumps are really dynamic jumps in
 519			 * disguise, so convert them accordingly.
 520			 */
 521			insn->type = INSN_JUMP_DYNAMIC;
 522			insn->retpoline_safe = true;
 523			continue;
 
 
 
 
 524		} else {
 525			/* sibling call */
 526			insn->jump_dest = 0;
 527			continue;
 528		}
 529
 530		insn->jump_dest = find_insn(file, dest_sec, dest_off);
 531		if (!insn->jump_dest) {
 
 532
 533			/*
 534			 * This is a special case where an alt instruction
 535			 * jumps past the end of the section.  These are
 536			 * handled later in handle_group_alt().
 
 
 
 537			 */
 538			if (!strcmp(insn->sec->name, ".altinstr_replacement"))
 
 539				continue;
 
 540
 541			WARN_FUNC("can't find jump dest instruction at %s+0x%lx",
 542				  insn->sec, insn->offset, dest_sec->name,
 543				  dest_off);
 544			return -1;
 545		}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 546	}
 547
 548	return 0;
 549}
 550
 
 
 
 
 
 
 
 
 
 
 
 551/*
 552 * Find the destination instructions for all calls.
 553 */
 554static int add_call_destinations(struct objtool_file *file)
 555{
 556	struct instruction *insn;
 557	unsigned long dest_off;
 558	struct rela *rela;
 
 559
 560	for_each_insn(file, insn) {
 561		if (insn->type != INSN_CALL)
 562			continue;
 563
 564		rela = find_rela_by_dest_range(insn->sec, insn->offset,
 565					       insn->len);
 566		if (!rela) {
 567			dest_off = insn->offset + insn->len + insn->immediate;
 568			insn->call_dest = find_symbol_by_offset(insn->sec,
 569								dest_off);
 570
 571			if (!insn->call_dest && !insn->ignore) {
 572				WARN_FUNC("unsupported intra-function call",
 573					  insn->sec, insn->offset);
 574				if (retpoline)
 575					WARN("If this is a retpoline, please patch it in with alternatives and annotate it with ANNOTATE_NOSPEC_ALTERNATIVE.");
 576				return -1;
 577			}
 578
 579		} else if (rela->sym->type == STT_SECTION) {
 580			insn->call_dest = find_symbol_by_offset(rela->sym->sec,
 581								rela->addend+4);
 582			if (!insn->call_dest ||
 583			    insn->call_dest->type != STT_FUNC) {
 584				WARN_FUNC("can't find call dest symbol at %s+0x%x",
 585					  insn->sec, insn->offset,
 586					  rela->sym->sec->name,
 587					  rela->addend + 4);
 588				return -1;
 589			}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 590		} else
 591			insn->call_dest = rela->sym;
 592	}
 593
 594	return 0;
 595}
 596
 597/*
 598 * The .alternatives section requires some extra special care, over and above
 599 * what other special sections require:
 600 *
 601 * 1. Because alternatives are patched in-place, we need to insert a fake jump
 602 *    instruction at the end so that validate_branch() skips all the original
 603 *    replaced instructions when validating the new instruction path.
 604 *
 605 * 2. An added wrinkle is that the new instruction length might be zero.  In
 606 *    that case the old instructions are replaced with noops.  We simulate that
 607 *    by creating a fake jump as the only new instruction.
 608 *
 609 * 3. In some cases, the alternative section includes an instruction which
 610 *    conditionally jumps to the _end_ of the entry.  We have to modify these
 611 *    jumps' destinations to point back to .text rather than the end of the
 612 *    entry in .altinstr_replacement.
 613 *
 614 * 4. It has been requested that we don't validate the !POPCNT feature path
 615 *    which is a "very very small percentage of machines".
 616 */
 617static int handle_group_alt(struct objtool_file *file,
 618			    struct special_alt *special_alt,
 619			    struct instruction *orig_insn,
 620			    struct instruction **new_insn)
 621{
 622	struct instruction *last_orig_insn, *last_new_insn, *insn, *fake_jump = NULL;
 
 623	unsigned long dest_off;
 624
 625	last_orig_insn = NULL;
 626	insn = orig_insn;
 627	sec_for_each_insn_from(file, insn) {
 628		if (insn->offset >= special_alt->orig_off + special_alt->orig_len)
 629			break;
 630
 631		if (special_alt->skip_orig)
 632			insn->type = INSN_NOP;
 
 
 
 
 
 
 
 
 
 633
 634		insn->alt_group = true;
 635		last_orig_insn = insn;
 636	}
 
 637
 638	if (next_insn_same_sec(file, last_orig_insn)) {
 639		fake_jump = malloc(sizeof(*fake_jump));
 640		if (!fake_jump) {
 641			WARN("malloc failed");
 
 
 
 
 
 
 
 
 
 
 
 642			return -1;
 643		}
 644		memset(fake_jump, 0, sizeof(*fake_jump));
 645		INIT_LIST_HEAD(&fake_jump->alts);
 646		clear_insn_state(&fake_jump->state);
 647
 648		fake_jump->sec = special_alt->new_sec;
 649		fake_jump->offset = -1;
 650		fake_jump->type = INSN_JUMP_UNCONDITIONAL;
 651		fake_jump->jump_dest = list_next_entry(last_orig_insn, list);
 652		fake_jump->ignore = true;
 653	}
 654
 655	if (!special_alt->new_len) {
 656		if (!fake_jump) {
 657			WARN("%s: empty alternative at end of section",
 658			     special_alt->orig_sec->name);
 
 
 
 
 
 
 
 
 
 
 
 
 
 659			return -1;
 660		}
 
 661
 662		*new_insn = fake_jump;
 663		return 0;
 
 
 
 
 
 
 
 
 
 
 664	}
 665
 666	last_new_insn = NULL;
 667	insn = *new_insn;
 668	sec_for_each_insn_from(file, insn) {
 
 
 669		if (insn->offset >= special_alt->new_off + special_alt->new_len)
 670			break;
 671
 672		last_new_insn = insn;
 673
 674		insn->ignore = orig_insn->ignore_alts;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 675
 676		if (insn->type != INSN_JUMP_CONDITIONAL &&
 677		    insn->type != INSN_JUMP_UNCONDITIONAL)
 678			continue;
 679
 680		if (!insn->immediate)
 681			continue;
 682
 683		dest_off = insn->offset + insn->len + insn->immediate;
 684		if (dest_off == special_alt->new_off + special_alt->new_len) {
 685			if (!fake_jump) {
 686				WARN("%s: alternative jump to end of section",
 687				     special_alt->orig_sec->name);
 688				return -1;
 689			}
 690			insn->jump_dest = fake_jump;
 691		}
 692
 693		if (!insn->jump_dest) {
 694			WARN_FUNC("can't find alternative jump destination",
 695				  insn->sec, insn->offset);
 696			return -1;
 697		}
 698	}
 699
 700	if (!last_new_insn) {
 701		WARN_FUNC("can't find last new alternative instruction",
 702			  special_alt->new_sec, special_alt->new_off);
 703		return -1;
 704	}
 705
 706	if (fake_jump)
 707		list_add(&fake_jump->list, &last_new_insn->list);
 708
 
 
 
 709	return 0;
 710}
 711
 712/*
 713 * A jump table entry can either convert a nop to a jump or a jump to a nop.
 714 * If the original instruction is a jump, make the alt entry an effective nop
 715 * by just skipping the original instruction.
 716 */
 717static int handle_jump_alt(struct objtool_file *file,
 718			   struct special_alt *special_alt,
 719			   struct instruction *orig_insn,
 720			   struct instruction **new_insn)
 721{
 722	if (orig_insn->type == INSN_NOP)
 723		return 0;
 724
 725	if (orig_insn->type != INSN_JUMP_UNCONDITIONAL) {
 726		WARN_FUNC("unsupported instruction at jump label",
 727			  orig_insn->sec, orig_insn->offset);
 728		return -1;
 729	}
 730
 731	*new_insn = list_next_entry(orig_insn, list);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 732	return 0;
 733}
 734
 735/*
 736 * Read all the special sections which have alternate instructions which can be
 737 * patched in or redirected to at runtime.  Each instruction having alternate
 738 * instruction(s) has them added to its insn->alts list, which will be
 739 * traversed in validate_branch().
 740 */
 741static int add_special_section_alts(struct objtool_file *file)
 742{
 743	struct list_head special_alts;
 744	struct instruction *orig_insn, *new_insn;
 745	struct special_alt *special_alt, *tmp;
 746	struct alternative *alt;
 747	int ret;
 748
 749	ret = special_get_alts(file->elf, &special_alts);
 750	if (ret)
 751		return ret;
 752
 753	list_for_each_entry_safe(special_alt, tmp, &special_alts, list) {
 754
 755		orig_insn = find_insn(file, special_alt->orig_sec,
 756				      special_alt->orig_off);
 757		if (!orig_insn) {
 758			WARN_FUNC("special: can't find orig instruction",
 759				  special_alt->orig_sec, special_alt->orig_off);
 760			ret = -1;
 761			goto out;
 762		}
 763
 764		new_insn = NULL;
 765		if (!special_alt->group || special_alt->new_len) {
 766			new_insn = find_insn(file, special_alt->new_sec,
 767					     special_alt->new_off);
 768			if (!new_insn) {
 769				WARN_FUNC("special: can't find new instruction",
 770					  special_alt->new_sec,
 771					  special_alt->new_off);
 772				ret = -1;
 773				goto out;
 774			}
 775		}
 776
 777		if (special_alt->group) {
 
 
 
 
 
 778			ret = handle_group_alt(file, special_alt, orig_insn,
 779					       &new_insn);
 780			if (ret)
 781				goto out;
 782		} else if (special_alt->jump_or_nop) {
 783			ret = handle_jump_alt(file, special_alt, orig_insn,
 784					      &new_insn);
 785			if (ret)
 786				goto out;
 787		}
 788
 789		alt = malloc(sizeof(*alt));
 790		if (!alt) {
 791			WARN("malloc failed");
 792			ret = -1;
 793			goto out;
 794		}
 795
 796		alt->insn = new_insn;
 797		list_add_tail(&alt->list, &orig_insn->alts);
 
 
 
 798
 799		list_del(&special_alt->list);
 800		free(special_alt);
 801	}
 802
 
 
 
 
 
 
 803out:
 804	return ret;
 805}
 806
 807static int add_switch_table(struct objtool_file *file, struct instruction *insn,
 808			    struct rela *table, struct rela *next_table)
 809{
 810	struct rela *rela = table;
 811	struct instruction *alt_insn;
 812	struct alternative *alt;
 813	struct symbol *pfunc = insn->func->pfunc;
 814	unsigned int prev_offset = 0;
 
 
 
 
 
 
 
 
 815
 816	list_for_each_entry_from(rela, &file->rodata->rela->rela_list, list) {
 817		if (rela == next_table)
 818			break;
 819
 820		/* Make sure the switch table entries are consecutive: */
 821		if (prev_offset && rela->offset != prev_offset + 8)
 822			break;
 823
 824		/* Detect function pointers from contiguous objects: */
 825		if (rela->sym->sec == pfunc->sec &&
 826		    rela->addend == pfunc->offset)
 827			break;
 828
 829		alt_insn = find_insn(file, rela->sym->sec, rela->addend);
 830		if (!alt_insn)
 831			break;
 832
 833		/* Make sure the jmp dest is in the function or subfunction: */
 834		if (alt_insn->func->pfunc != pfunc)
 835			break;
 836
 837		alt = malloc(sizeof(*alt));
 838		if (!alt) {
 839			WARN("malloc failed");
 840			return -1;
 841		}
 842
 843		alt->insn = alt_insn;
 844		list_add_tail(&alt->list, &insn->alts);
 845		prev_offset = rela->offset;
 
 846	}
 847
 848	if (!prev_offset) {
 849		WARN_FUNC("can't find switch jump table",
 850			  insn->sec, insn->offset);
 851		return -1;
 852	}
 853
 854	return 0;
 855}
 856
 857/*
 858 * find_switch_table() - Given a dynamic jump, find the switch jump table in
 859 * .rodata associated with it.
 860 *
 861 * There are 3 basic patterns:
 862 *
 863 * 1. jmpq *[rodata addr](,%reg,8)
 864 *
 865 *    This is the most common case by far.  It jumps to an address in a simple
 866 *    jump table which is stored in .rodata.
 867 *
 868 * 2. jmpq *[rodata addr](%rip)
 869 *
 870 *    This is caused by a rare GCC quirk, currently only seen in three driver
 871 *    functions in the kernel, only with certain obscure non-distro configs.
 872 *
 873 *    As part of an optimization, GCC makes a copy of an existing switch jump
 874 *    table, modifies it, and then hard-codes the jump (albeit with an indirect
 875 *    jump) to use a single entry in the table.  The rest of the jump table and
 876 *    some of its jump targets remain as dead code.
 877 *
 878 *    In such a case we can just crudely ignore all unreachable instruction
 879 *    warnings for the entire object file.  Ideally we would just ignore them
 880 *    for the function, but that would require redesigning the code quite a
 881 *    bit.  And honestly that's just not worth doing: unreachable instruction
 882 *    warnings are of questionable value anyway, and this is such a rare issue.
 883 *
 884 * 3. mov [rodata addr],%reg1
 885 *    ... some instructions ...
 886 *    jmpq *(%reg1,%reg2,8)
 887 *
 888 *    This is a fairly uncommon pattern which is new for GCC 6.  As of this
 889 *    writing, there are 11 occurrences of it in the allmodconfig kernel.
 890 *
 891 *    As of GCC 7 there are quite a few more of these and the 'in between' code
 892 *    is significant. Esp. with KASAN enabled some of the code between the mov
 893 *    and jmpq uses .rodata itself, which can confuse things.
 894 *
 895 *    TODO: Once we have DWARF CFI and smarter instruction decoding logic,
 896 *    ensure the same register is used in the mov and jump instructions.
 897 *
 898 *    NOTE: RETPOLINE made it harder still to decode dynamic jumps.
 899 */
 900static struct rela *find_switch_table(struct objtool_file *file,
 901				      struct symbol *func,
 902				      struct instruction *insn)
 903{
 904	struct rela *text_rela, *rodata_rela;
 905	struct instruction *orig_insn = insn;
 906	unsigned long table_offset;
 907
 908	/*
 909	 * Backward search using the @first_jump_src links, these help avoid
 910	 * much of the 'in between' code. Which avoids us getting confused by
 911	 * it.
 912	 */
 913	for (;
 914	     &insn->list != &file->insn_list &&
 915	     insn->sec == func->sec &&
 916	     insn->offset >= func->offset;
 917
 918	     insn = insn->first_jump_src ?: list_prev_entry(insn, list)) {
 919
 920		if (insn != orig_insn && insn->type == INSN_JUMP_DYNAMIC)
 921			break;
 922
 923		/* allow small jumps within the range */
 924		if (insn->type == INSN_JUMP_UNCONDITIONAL &&
 925		    insn->jump_dest &&
 926		    (insn->jump_dest->offset <= insn->offset ||
 927		     insn->jump_dest->offset > orig_insn->offset))
 928		    break;
 929
 930		/* look for a relocation which references .rodata */
 931		text_rela = find_rela_by_dest_range(insn->sec, insn->offset,
 932						    insn->len);
 933		if (!text_rela || text_rela->sym != file->rodata->sym)
 934			continue;
 935
 936		table_offset = text_rela->addend;
 937		if (text_rela->type == R_X86_64_PC32)
 938			table_offset += 4;
 939
 940		/*
 941		 * Make sure the .rodata address isn't associated with a
 942		 * symbol.  gcc jump tables are anonymous data.
 943		 */
 944		if (find_symbol_containing(file->rodata, table_offset))
 945			continue;
 946
 947		rodata_rela = find_rela_by_dest(file->rodata, table_offset);
 948		if (rodata_rela) {
 949			/*
 950			 * Use of RIP-relative switch jumps is quite rare, and
 951			 * indicates a rare GCC quirk/bug which can leave dead
 952			 * code behind.
 953			 */
 954			if (text_rela->type == R_X86_64_PC32)
 955				file->ignore_unreachables = true;
 956
 957			return rodata_rela;
 958		}
 959	}
 960
 961	return NULL;
 962}
 963
 964
 965static int add_func_switch_tables(struct objtool_file *file,
 966				  struct symbol *func)
 
 
 
 967{
 968	struct instruction *insn, *last = NULL, *prev_jump = NULL;
 969	struct rela *rela, *prev_rela = NULL;
 970	int ret;
 971
 972	func_for_each_insn_all(file, func, insn) {
 973		if (!last)
 974			last = insn;
 975
 976		/*
 977		 * Store back-pointers for unconditional forward jumps such
 978		 * that find_switch_table() can back-track using those and
 979		 * avoid some potentially confusing code.
 980		 */
 981		if (insn->type == INSN_JUMP_UNCONDITIONAL && insn->jump_dest &&
 982		    insn->offset > last->offset &&
 983		    insn->jump_dest->offset > insn->offset &&
 984		    !insn->jump_dest->first_jump_src) {
 985
 986			insn->jump_dest->first_jump_src = insn;
 987			last = insn->jump_dest;
 988		}
 989
 990		if (insn->type != INSN_JUMP_DYNAMIC)
 991			continue;
 992
 993		rela = find_switch_table(file, func, insn);
 994		if (!rela)
 
 
 
 
 
 
 
 
 
 
 
 
 995			continue;
 996
 997		/*
 998		 * We found a switch table, but we don't know yet how big it
 999		 * is.  Don't add it until we reach the end of the function or
1000		 * the beginning of another switch table in the same function.
1001		 */
1002		if (prev_jump) {
1003			ret = add_switch_table(file, prev_jump, prev_rela, rela);
1004			if (ret)
1005				return ret;
1006		}
1007
1008		prev_jump = insn;
1009		prev_rela = rela;
1010	}
1011
1012	if (prev_jump) {
1013		ret = add_switch_table(file, prev_jump, prev_rela, NULL);
1014		if (ret)
1015			return ret;
 
 
1016	}
1017
1018	return 0;
 
 
 
1019}
1020
1021/*
1022 * For some switch statements, gcc generates a jump table in the .rodata
1023 * section which contains a list of addresses within the function to jump to.
1024 * This finds these jump tables and adds them to the insn->alts lists.
1025 */
1026static int add_switch_table_alts(struct objtool_file *file)
1027{
1028	struct section *sec;
1029	struct symbol *func;
1030	int ret;
1031
1032	if (!file->rodata || !file->rodata->rela)
1033		return 0;
1034
1035	for_each_sec(file, sec) {
1036		list_for_each_entry(func, &sec->symbol_list, list) {
1037			if (func->type != STT_FUNC)
1038				continue;
1039
1040			ret = add_func_switch_tables(file, func);
1041			if (ret)
1042				return ret;
1043		}
1044	}
1045
1046	return 0;
1047}
1048
 
 
 
 
 
 
 
 
 
1049static int read_unwind_hints(struct objtool_file *file)
1050{
1051	struct section *sec, *relasec;
1052	struct rela *rela;
1053	struct unwind_hint *hint;
1054	struct instruction *insn;
1055	struct cfi_reg *cfa;
 
1056	int i;
1057
1058	sec = find_section_by_name(file->elf, ".discard.unwind_hints");
1059	if (!sec)
1060		return 0;
1061
1062	relasec = sec->rela;
1063	if (!relasec) {
1064		WARN("missing .rela.discard.unwind_hints section");
1065		return -1;
1066	}
1067
1068	if (sec->len % sizeof(struct unwind_hint)) {
1069		WARN("struct unwind_hint size mismatch");
1070		return -1;
1071	}
1072
1073	file->hints = true;
1074
1075	for (i = 0; i < sec->len / sizeof(struct unwind_hint); i++) {
1076		hint = (struct unwind_hint *)sec->data->d_buf + i;
1077
1078		rela = find_rela_by_dest(sec, i * sizeof(*hint));
1079		if (!rela) {
1080			WARN("can't find rela for unwind_hints[%d]", i);
1081			return -1;
1082		}
1083
1084		insn = find_insn(file, rela->sym->sec, rela->addend);
 
 
 
 
 
 
 
 
 
1085		if (!insn) {
1086			WARN("can't find insn for unwind_hints[%d]", i);
1087			return -1;
1088		}
1089
1090		cfa = &insn->state.cfa;
 
 
 
 
 
1091
1092		if (hint->type == UNWIND_HINT_TYPE_SAVE) {
 
1093			insn->save = true;
1094			continue;
 
1095
1096		} else if (hint->type == UNWIND_HINT_TYPE_RESTORE) {
1097			insn->restore = true;
1098			insn->hint = true;
1099			continue;
1100		}
1101
1102		insn->hint = true;
 
1103
1104		switch (hint->sp_reg) {
1105		case ORC_REG_UNDEFINED:
1106			cfa->base = CFI_UNDEFINED;
1107			break;
1108		case ORC_REG_SP:
1109			cfa->base = CFI_SP;
1110			break;
1111		case ORC_REG_BP:
1112			cfa->base = CFI_BP;
1113			break;
1114		case ORC_REG_SP_INDIRECT:
1115			cfa->base = CFI_SP_INDIRECT;
1116			break;
1117		case ORC_REG_R10:
1118			cfa->base = CFI_R10;
1119			break;
1120		case ORC_REG_R13:
1121			cfa->base = CFI_R13;
1122			break;
1123		case ORC_REG_DI:
1124			cfa->base = CFI_DI;
1125			break;
1126		case ORC_REG_DX:
1127			cfa->base = CFI_DX;
1128			break;
1129		default:
1130			WARN_FUNC("unsupported unwind_hint sp base reg %d",
1131				  insn->sec, insn->offset, hint->sp_reg);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1132			return -1;
1133		}
1134
1135		cfa->offset = hint->sp_offset;
1136		insn->state.type = hint->type;
1137	}
1138
1139	return 0;
1140}
1141
1142static int read_retpoline_hints(struct objtool_file *file)
1143{
1144	struct section *sec;
1145	struct instruction *insn;
1146	struct rela *rela;
1147
1148	sec = find_section_by_name(file->elf, ".rela.discard.retpoline_safe");
1149	if (!sec)
1150		return 0;
1151
1152	list_for_each_entry(rela, &sec->rela_list, list) {
1153		if (rela->sym->type != STT_SECTION) {
1154			WARN("unexpected relocation symbol type in %s", sec->name);
1155			return -1;
1156		}
1157
1158		insn = find_insn(file, rela->sym->sec, rela->addend);
1159		if (!insn) {
1160			WARN("bad .discard.retpoline_safe entry");
1161			return -1;
1162		}
1163
1164		if (insn->type != INSN_JUMP_DYNAMIC &&
1165		    insn->type != INSN_CALL_DYNAMIC) {
1166			WARN_FUNC("retpoline_safe hint not an indirect jump/call",
1167				  insn->sec, insn->offset);
 
1168			return -1;
1169		}
1170
1171		insn->retpoline_safe = true;
1172	}
1173
1174	return 0;
1175}
1176
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1177static int decode_sections(struct objtool_file *file)
1178{
1179	int ret;
1180
1181	ret = decode_instructions(file);
 
 
1182	if (ret)
1183		return ret;
1184
1185	ret = add_dead_ends(file);
 
 
 
 
 
 
 
1186	if (ret)
1187		return ret;
1188
1189	add_ignores(file);
 
 
 
 
 
1190
1191	ret = add_nospec_ignores(file);
 
 
 
1192	if (ret)
1193		return ret;
1194
 
 
 
 
 
 
 
 
 
 
1195	ret = add_jump_destinations(file);
1196	if (ret)
1197		return ret;
1198
1199	ret = add_special_section_alts(file);
 
 
 
 
1200	if (ret)
1201		return ret;
1202
1203	ret = add_call_destinations(file);
1204	if (ret)
1205		return ret;
1206
1207	ret = add_switch_table_alts(file);
 
 
 
 
 
 
 
 
1208	if (ret)
1209		return ret;
1210
1211	ret = read_unwind_hints(file);
1212	if (ret)
1213		return ret;
1214
1215	ret = read_retpoline_hints(file);
1216	if (ret)
1217		return ret;
1218
 
 
 
 
 
 
 
 
1219	return 0;
1220}
1221
1222static bool is_fentry_call(struct instruction *insn)
1223{
1224	if (insn->type == INSN_CALL &&
1225	    insn->call_dest->type == STT_NOTYPE &&
1226	    !strcmp(insn->call_dest->name, "__fentry__"))
1227		return true;
 
 
 
 
 
1228
1229	return false;
1230}
1231
1232static bool has_modified_stack_frame(struct insn_state *state)
1233{
 
1234	int i;
1235
1236	if (state->cfa.base != initial_func_cfi.cfa.base ||
1237	    state->cfa.offset != initial_func_cfi.cfa.offset ||
1238	    state->stack_size != initial_func_cfi.cfa.offset ||
1239	    state->drap)
1240		return true;
1241
1242	for (i = 0; i < CFI_NUM_REGS; i++)
1243		if (state->regs[i].base != initial_func_cfi.regs[i].base ||
1244		    state->regs[i].offset != initial_func_cfi.regs[i].offset)
 
 
 
1245			return true;
 
1246
1247	return false;
1248}
1249
 
 
 
 
 
 
 
1250static bool has_valid_stack_frame(struct insn_state *state)
1251{
1252	if (state->cfa.base == CFI_BP && state->regs[CFI_BP].base == CFI_CFA &&
1253	    state->regs[CFI_BP].offset == -16)
 
 
 
1254		return true;
1255
1256	if (state->drap && state->regs[CFI_BP].base == CFI_BP)
1257		return true;
1258
1259	return false;
1260}
1261
1262static int update_insn_state_regs(struct instruction *insn, struct insn_state *state)
 
 
1263{
1264	struct cfi_reg *cfa = &state->cfa;
1265	struct stack_op *op = &insn->stack_op;
1266
1267	if (cfa->base != CFI_SP)
1268		return 0;
1269
1270	/* push */
1271	if (op->dest.type == OP_DEST_PUSH)
1272		cfa->offset += 8;
1273
1274	/* pop */
1275	if (op->src.type == OP_SRC_POP)
1276		cfa->offset -= 8;
1277
1278	/* add immediate to sp */
1279	if (op->dest.type == OP_DEST_REG && op->src.type == OP_SRC_ADD &&
1280	    op->dest.reg == CFI_SP && op->src.reg == CFI_SP)
1281		cfa->offset -= op->src.offset;
1282
1283	return 0;
1284}
1285
1286static void save_reg(struct insn_state *state, unsigned char reg, int base,
1287		     int offset)
1288{
1289	if (arch_callee_saved_reg(reg) &&
1290	    state->regs[reg].base == CFI_UNDEFINED) {
1291		state->regs[reg].base = base;
1292		state->regs[reg].offset = offset;
1293	}
1294}
1295
1296static void restore_reg(struct insn_state *state, unsigned char reg)
1297{
1298	state->regs[reg].base = CFI_UNDEFINED;
1299	state->regs[reg].offset = 0;
1300}
1301
1302/*
1303 * A note about DRAP stack alignment:
1304 *
1305 * GCC has the concept of a DRAP register, which is used to help keep track of
1306 * the stack pointer when aligning the stack.  r10 or r13 is used as the DRAP
1307 * register.  The typical DRAP pattern is:
1308 *
1309 *   4c 8d 54 24 08		lea    0x8(%rsp),%r10
1310 *   48 83 e4 c0		and    $0xffffffffffffffc0,%rsp
1311 *   41 ff 72 f8		pushq  -0x8(%r10)
1312 *   55				push   %rbp
1313 *   48 89 e5			mov    %rsp,%rbp
1314 *				(more pushes)
1315 *   41 52			push   %r10
1316 *				...
1317 *   41 5a			pop    %r10
1318 *				(more pops)
1319 *   5d				pop    %rbp
1320 *   49 8d 62 f8		lea    -0x8(%r10),%rsp
1321 *   c3				retq
1322 *
1323 * There are some variations in the epilogues, like:
1324 *
1325 *   5b				pop    %rbx
1326 *   41 5a			pop    %r10
1327 *   41 5c			pop    %r12
1328 *   41 5d			pop    %r13
1329 *   41 5e			pop    %r14
1330 *   c9				leaveq
1331 *   49 8d 62 f8		lea    -0x8(%r10),%rsp
1332 *   c3				retq
1333 *
1334 * and:
1335 *
1336 *   4c 8b 55 e8		mov    -0x18(%rbp),%r10
1337 *   48 8b 5d e0		mov    -0x20(%rbp),%rbx
1338 *   4c 8b 65 f0		mov    -0x10(%rbp),%r12
1339 *   4c 8b 6d f8		mov    -0x8(%rbp),%r13
1340 *   c9				leaveq
1341 *   49 8d 62 f8		lea    -0x8(%r10),%rsp
1342 *   c3				retq
1343 *
1344 * Sometimes r13 is used as the DRAP register, in which case it's saved and
1345 * restored beforehand:
1346 *
1347 *   41 55			push   %r13
1348 *   4c 8d 6c 24 10		lea    0x10(%rsp),%r13
1349 *   48 83 e4 f0		and    $0xfffffffffffffff0,%rsp
1350 *				...
1351 *   49 8d 65 f0		lea    -0x10(%r13),%rsp
1352 *   41 5d			pop    %r13
1353 *   c3				retq
1354 */
1355static int update_insn_state(struct instruction *insn, struct insn_state *state)
 
 
1356{
1357	struct stack_op *op = &insn->stack_op;
1358	struct cfi_reg *cfa = &state->cfa;
1359	struct cfi_reg *regs = state->regs;
 
 
 
1360
1361	/* stack operations don't make sense with an undefined CFA */
1362	if (cfa->base == CFI_UNDEFINED) {
1363		if (insn->func) {
1364			WARN_FUNC("undefined stack state", insn->sec, insn->offset);
1365			return -1;
1366		}
1367		return 0;
1368	}
1369
1370	if (state->type == ORC_TYPE_REGS || state->type == ORC_TYPE_REGS_IRET)
1371		return update_insn_state_regs(insn, state);
 
1372
1373	switch (op->dest.type) {
1374
1375	case OP_DEST_REG:
1376		switch (op->src.type) {
1377
1378		case OP_SRC_REG:
1379			if (op->src.reg == CFI_SP && op->dest.reg == CFI_BP &&
1380			    cfa->base == CFI_SP &&
1381			    regs[CFI_BP].base == CFI_CFA &&
1382			    regs[CFI_BP].offset == -cfa->offset) {
1383
1384				/* mov %rsp, %rbp */
1385				cfa->base = op->dest.reg;
1386				state->bp_scratch = false;
1387			}
1388
1389			else if (op->src.reg == CFI_SP &&
1390				 op->dest.reg == CFI_BP && state->drap) {
1391
1392				/* drap: mov %rsp, %rbp */
1393				regs[CFI_BP].base = CFI_BP;
1394				regs[CFI_BP].offset = -state->stack_size;
1395				state->bp_scratch = false;
1396			}
1397
1398			else if (op->src.reg == CFI_SP && cfa->base == CFI_SP) {
1399
1400				/*
1401				 * mov %rsp, %reg
1402				 *
1403				 * This is needed for the rare case where GCC
1404				 * does:
1405				 *
1406				 *   mov    %rsp, %rax
1407				 *   ...
1408				 *   mov    %rax, %rsp
1409				 */
1410				state->vals[op->dest.reg].base = CFI_CFA;
1411				state->vals[op->dest.reg].offset = -state->stack_size;
1412			}
1413
1414			else if (op->src.reg == CFI_BP && op->dest.reg == CFI_SP &&
1415				 cfa->base == CFI_BP) {
1416
1417				/*
1418				 * mov %rbp, %rsp
1419				 *
1420				 * Restore the original stack pointer (Clang).
1421				 */
1422				state->stack_size = -state->regs[CFI_BP].offset;
1423			}
1424
1425			else if (op->dest.reg == cfa->base) {
1426
1427				/* mov %reg, %rsp */
1428				if (cfa->base == CFI_SP &&
1429				    state->vals[op->src.reg].base == CFI_CFA) {
1430
1431					/*
1432					 * This is needed for the rare case
1433					 * where GCC does something dumb like:
1434					 *
1435					 *   lea    0x8(%rsp), %rcx
1436					 *   ...
1437					 *   mov    %rcx, %rsp
1438					 */
1439					cfa->offset = -state->vals[op->src.reg].offset;
1440					state->stack_size = cfa->offset;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1441
1442				} else {
1443					cfa->base = CFI_UNDEFINED;
1444					cfa->offset = 0;
1445				}
1446			}
1447
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1448			break;
1449
1450		case OP_SRC_ADD:
1451			if (op->dest.reg == CFI_SP && op->src.reg == CFI_SP) {
1452
1453				/* add imm, %rsp */
1454				state->stack_size -= op->src.offset;
1455				if (cfa->base == CFI_SP)
1456					cfa->offset -= op->src.offset;
1457				break;
1458			}
1459
1460			if (op->dest.reg == CFI_SP && op->src.reg == CFI_BP) {
 
 
 
 
 
 
 
 
1461
1462				/* lea disp(%rbp), %rsp */
1463				state->stack_size = -(op->src.offset + regs[CFI_BP].offset);
 
 
 
 
 
 
 
 
 
1464				break;
1465			}
1466
1467			if (op->src.reg == CFI_SP && cfa->base == CFI_SP) {
1468
1469				/* drap: lea disp(%rsp), %drap */
1470				state->drap_reg = op->dest.reg;
1471
1472				/*
1473				 * lea disp(%rsp), %reg
1474				 *
1475				 * This is needed for the rare case where GCC
1476				 * does something dumb like:
1477				 *
1478				 *   lea    0x8(%rsp), %rcx
1479				 *   ...
1480				 *   mov    %rcx, %rsp
1481				 */
1482				state->vals[op->dest.reg].base = CFI_CFA;
1483				state->vals[op->dest.reg].offset = \
1484					-state->stack_size + op->src.offset;
1485
1486				break;
1487			}
1488
1489			if (state->drap && op->dest.reg == CFI_SP &&
1490			    op->src.reg == state->drap_reg) {
1491
1492				 /* drap: lea disp(%drap), %rsp */
1493				cfa->base = CFI_SP;
1494				cfa->offset = state->stack_size = -op->src.offset;
1495				state->drap_reg = CFI_UNDEFINED;
1496				state->drap = false;
1497				break;
1498			}
1499
1500			if (op->dest.reg == state->cfa.base) {
1501				WARN_FUNC("unsupported stack register modification",
1502					  insn->sec, insn->offset);
1503				return -1;
1504			}
1505
1506			break;
1507
1508		case OP_SRC_AND:
1509			if (op->dest.reg != CFI_SP ||
1510			    (state->drap_reg != CFI_UNDEFINED && cfa->base != CFI_SP) ||
1511			    (state->drap_reg == CFI_UNDEFINED && cfa->base != CFI_BP)) {
1512				WARN_FUNC("unsupported stack pointer realignment",
1513					  insn->sec, insn->offset);
1514				return -1;
1515			}
1516
1517			if (state->drap_reg != CFI_UNDEFINED) {
1518				/* drap: and imm, %rsp */
1519				cfa->base = state->drap_reg;
1520				cfa->offset = state->stack_size = 0;
1521				state->drap = true;
1522			}
1523
1524			/*
1525			 * Older versions of GCC (4.8ish) realign the stack
1526			 * without DRAP, with a frame pointer.
1527			 */
1528
1529			break;
1530
1531		case OP_SRC_POP:
1532			if (!state->drap && op->dest.type == OP_DEST_REG &&
1533			    op->dest.reg == cfa->base) {
 
 
 
 
 
 
 
1534
1535				/* pop %rbp */
1536				cfa->base = CFI_SP;
1537			}
1538
1539			if (state->drap && cfa->base == CFI_BP_INDIRECT &&
1540			    op->dest.type == OP_DEST_REG &&
1541			    op->dest.reg == state->drap_reg &&
1542			    state->drap_offset == -state->stack_size) {
1543
1544				/* drap: pop %drap */
1545				cfa->base = state->drap_reg;
1546				cfa->offset = 0;
1547				state->drap_offset = -1;
1548
1549			} else if (regs[op->dest.reg].offset == -state->stack_size) {
1550
1551				/* pop %reg */
1552				restore_reg(state, op->dest.reg);
1553			}
1554
1555			state->stack_size -= 8;
1556			if (cfa->base == CFI_SP)
1557				cfa->offset -= 8;
1558
1559			break;
1560
1561		case OP_SRC_REG_INDIRECT:
1562			if (state->drap && op->src.reg == CFI_BP &&
1563			    op->src.offset == state->drap_offset) {
 
 
 
 
 
 
 
 
1564
1565				/* drap: mov disp(%rbp), %drap */
1566				cfa->base = state->drap_reg;
1567				cfa->offset = 0;
1568				state->drap_offset = -1;
1569			}
1570
1571			if (state->drap && op->src.reg == CFI_BP &&
1572			    op->src.offset == regs[op->dest.reg].offset) {
1573
1574				/* drap: mov disp(%rbp), %reg */
1575				restore_reg(state, op->dest.reg);
1576
1577			} else if (op->src.reg == cfa->base &&
1578			    op->src.offset == regs[op->dest.reg].offset + cfa->offset) {
1579
1580				/* mov disp(%rbp), %reg */
1581				/* mov disp(%rsp), %reg */
1582				restore_reg(state, op->dest.reg);
 
 
 
 
 
 
1583			}
1584
1585			break;
1586
1587		default:
1588			WARN_FUNC("unknown stack-related instruction",
1589				  insn->sec, insn->offset);
1590			return -1;
1591		}
1592
1593		break;
1594
1595	case OP_DEST_PUSH:
1596		state->stack_size += 8;
 
1597		if (cfa->base == CFI_SP)
1598			cfa->offset += 8;
1599
1600		if (op->src.type != OP_SRC_REG)
1601			break;
1602
1603		if (state->drap) {
1604			if (op->src.reg == cfa->base && op->src.reg == state->drap_reg) {
1605
1606				/* drap: push %drap */
1607				cfa->base = CFI_BP_INDIRECT;
1608				cfa->offset = -state->stack_size;
1609
1610				/* save drap so we know when to restore it */
1611				state->drap_offset = -state->stack_size;
1612
1613			} else if (op->src.reg == CFI_BP && cfa->base == state->drap_reg) {
1614
1615				/* drap: push %rbp */
1616				state->stack_size = 0;
1617
1618			} else if (regs[op->src.reg].base == CFI_UNDEFINED) {
1619
1620				/* drap: push %reg */
1621				save_reg(state, op->src.reg, CFI_BP, -state->stack_size);
1622			}
1623
1624		} else {
1625
1626			/* push %reg */
1627			save_reg(state, op->src.reg, CFI_CFA, -state->stack_size);
1628		}
1629
1630		/* detect when asm code uses rbp as a scratch register */
1631		if (!no_fp && insn->func && op->src.reg == CFI_BP &&
1632		    cfa->base != CFI_BP)
1633			state->bp_scratch = true;
1634		break;
1635
1636	case OP_DEST_REG_INDIRECT:
1637
1638		if (state->drap) {
1639			if (op->src.reg == cfa->base && op->src.reg == state->drap_reg) {
1640
1641				/* drap: mov %drap, disp(%rbp) */
1642				cfa->base = CFI_BP_INDIRECT;
1643				cfa->offset = op->dest.offset;
1644
1645				/* save drap offset so we know when to restore it */
1646				state->drap_offset = op->dest.offset;
1647			}
1648
1649			else if (regs[op->src.reg].base == CFI_UNDEFINED) {
1650
1651				/* drap: mov reg, disp(%rbp) */
1652				save_reg(state, op->src.reg, CFI_BP, op->dest.offset);
1653			}
1654
1655		} else if (op->dest.reg == cfa->base) {
1656
1657			/* mov reg, disp(%rbp) */
1658			/* mov reg, disp(%rsp) */
1659			save_reg(state, op->src.reg, CFI_CFA,
1660				 op->dest.offset - state->cfa.offset);
1661		}
1662
1663		break;
1664
1665	case OP_DEST_LEAVE:
1666		if ((!state->drap && cfa->base != CFI_BP) ||
1667		    (state->drap && cfa->base != state->drap_reg)) {
1668			WARN_FUNC("leave instruction with modified stack frame",
1669				  insn->sec, insn->offset);
1670			return -1;
1671		}
1672
1673		/* leave (mov %rbp, %rsp; pop %rbp) */
1674
1675		state->stack_size = -state->regs[CFI_BP].offset - 8;
1676		restore_reg(state, CFI_BP);
1677
1678		if (!state->drap) {
1679			cfa->base = CFI_SP;
1680			cfa->offset -= 8;
1681		}
1682
1683		break;
1684
1685	case OP_DEST_MEM:
1686		if (op->src.type != OP_SRC_POP) {
1687			WARN_FUNC("unknown stack-related memory operation",
1688				  insn->sec, insn->offset);
1689			return -1;
1690		}
1691
1692		/* pop mem */
1693		state->stack_size -= 8;
1694		if (cfa->base == CFI_SP)
1695			cfa->offset -= 8;
1696
1697		break;
1698
1699	default:
1700		WARN_FUNC("unknown stack-related instruction",
1701			  insn->sec, insn->offset);
1702		return -1;
1703	}
1704
1705	return 0;
1706}
1707
1708static bool insn_state_match(struct instruction *insn, struct insn_state *state)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1709{
1710	struct insn_state *state1 = &insn->state, *state2 = state;
1711	int i;
1712
1713	if (memcmp(&state1->cfa, &state2->cfa, sizeof(state1->cfa))) {
1714		WARN_FUNC("stack state mismatch: cfa1=%d%+d cfa2=%d%+d",
1715			  insn->sec, insn->offset,
1716			  state1->cfa.base, state1->cfa.offset,
1717			  state2->cfa.base, state2->cfa.offset);
 
 
 
 
 
1718
1719	} else if (memcmp(&state1->regs, &state2->regs, sizeof(state1->regs))) {
1720		for (i = 0; i < CFI_NUM_REGS; i++) {
1721			if (!memcmp(&state1->regs[i], &state2->regs[i],
1722				    sizeof(struct cfi_reg)))
1723				continue;
1724
1725			WARN_FUNC("stack state mismatch: reg1[%d]=%d%+d reg2[%d]=%d%+d",
1726				  insn->sec, insn->offset,
1727				  i, state1->regs[i].base, state1->regs[i].offset,
1728				  i, state2->regs[i].base, state2->regs[i].offset);
1729			break;
1730		}
1731
1732	} else if (state1->type != state2->type) {
1733		WARN_FUNC("stack state mismatch: type1=%d type2=%d",
1734			  insn->sec, insn->offset, state1->type, state2->type);
1735
1736	} else if (state1->drap != state2->drap ||
1737		 (state1->drap && state1->drap_reg != state2->drap_reg) ||
1738		 (state1->drap && state1->drap_offset != state2->drap_offset)) {
1739		WARN_FUNC("stack state mismatch: drap1=%d(%d,%d) drap2=%d(%d,%d)",
1740			  insn->sec, insn->offset,
1741			  state1->drap, state1->drap_reg, state1->drap_offset,
1742			  state2->drap, state2->drap_reg, state2->drap_offset);
 
1743
1744	} else
1745		return true;
1746
1747	return false;
1748}
1749
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1750/*
1751 * Follow the branch starting at the given instruction, and recursively follow
1752 * any other branches (jumps).  Meanwhile, track the frame pointer state at
1753 * each instruction and validate all the rules described in
1754 * tools/objtool/Documentation/stack-validation.txt.
1755 */
1756static int validate_branch(struct objtool_file *file, struct instruction *first,
1757			   struct insn_state state)
1758{
1759	struct alternative *alt;
1760	struct instruction *insn, *next_insn;
1761	struct section *sec;
1762	struct symbol *func = NULL;
1763	int ret;
1764
1765	insn = first;
1766	sec = insn->sec;
1767
1768	if (insn->alt_group && list_empty(&insn->alts)) {
1769		WARN_FUNC("don't know how to handle branch to middle of alternative instruction group",
1770			  sec, insn->offset);
1771		return 1;
1772	}
1773
1774	while (1) {
1775		next_insn = next_insn_same_sec(file, insn);
 
 
 
 
 
 
1776
1777		if (file->c_file && func && insn->func && func != insn->func->pfunc) {
1778			WARN("%s() falls through to next function %s()",
1779			     func->name, insn->func->name);
1780			return 1;
1781		}
1782
1783		func = insn->func ? insn->func->pfunc : NULL;
1784
1785		if (func && insn->ignore) {
1786			WARN_FUNC("BUG: why am I validating an ignored function?",
1787				  sec, insn->offset);
1788			return 1;
1789		}
1790
1791		if (insn->visited) {
1792			if (!insn->hint && !insn_state_match(insn, &state))
 
1793				return 1;
1794
1795			return 0;
 
 
 
1796		}
1797
 
 
 
1798		if (insn->hint) {
1799			if (insn->restore) {
1800				struct instruction *save_insn, *i;
1801
1802				i = insn;
1803				save_insn = NULL;
1804				func_for_each_insn_continue_reverse(file, insn->func, i) {
 
1805					if (i->save) {
1806						save_insn = i;
1807						break;
1808					}
1809				}
1810
1811				if (!save_insn) {
1812					WARN_FUNC("no corresponding CFI save for CFI restore",
1813						  sec, insn->offset);
1814					return 1;
1815				}
1816
1817				if (!save_insn->visited) {
1818					/*
1819					 * Oops, no state to copy yet.
1820					 * Hopefully we can reach this
1821					 * instruction from another branch
1822					 * after the save insn has been
1823					 * visited.
 
 
1824					 */
1825					if (insn == first)
1826						return 0;
1827
1828					WARN_FUNC("objtool isn't smart enough to handle this CFI save/restore combo",
1829						  sec, insn->offset);
1830					return 1;
1831				}
1832
1833				insn->state = save_insn->state;
 
1834			}
1835
1836			state = insn->state;
 
 
1837
1838		} else
1839			insn->state = state;
 
 
 
 
 
1840
1841		insn->visited = true;
1842
1843		if (!insn->ignore_alts) {
1844			list_for_each_entry(alt, &insn->alts, list) {
1845				ret = validate_branch(file, alt->insn, state);
1846				if (ret)
1847					return 1;
 
 
 
 
 
 
 
 
 
 
1848			}
 
 
 
1849		}
1850
 
 
 
1851		switch (insn->type) {
1852
1853		case INSN_RETURN:
1854			if (func && has_modified_stack_frame(&state)) {
1855				WARN_FUNC("return with modified stack frame",
1856					  sec, insn->offset);
1857				return 1;
1858			}
 
 
1859
1860			if (state.bp_scratch) {
1861				WARN("%s uses BP as a scratch register",
1862				     insn->func->name);
1863				return 1;
1864			}
1865
1866			return 0;
1867
1868		case INSN_CALL:
1869			if (is_fentry_call(insn))
1870				break;
1871
1872			ret = dead_end_function(file, insn->call_dest);
1873			if (ret == 1)
1874				return 0;
1875			if (ret == -1)
1876				return 1;
1877
1878			/* fallthrough */
1879		case INSN_CALL_DYNAMIC:
1880			if (!no_fp && func && !has_valid_stack_frame(&state)) {
1881				WARN_FUNC("call without frame pointer save/setup",
1882					  sec, insn->offset);
1883				return 1;
1884			}
1885			break;
1886
1887		case INSN_JUMP_CONDITIONAL:
1888		case INSN_JUMP_UNCONDITIONAL:
1889			if (insn->jump_dest &&
1890			    (!func || !insn->jump_dest->func ||
1891			     insn->jump_dest->func->pfunc == func)) {
1892				ret = validate_branch(file, insn->jump_dest,
1893						      state);
1894				if (ret)
1895					return 1;
1896
1897			} else if (func && has_modified_stack_frame(&state)) {
1898				WARN_FUNC("sibling call from callable instruction with modified stack frame",
1899					  sec, insn->offset);
1900				return 1;
 
 
 
1901			}
1902
1903			if (insn->type == INSN_JUMP_UNCONDITIONAL)
1904				return 0;
1905
1906			break;
1907
1908		case INSN_JUMP_DYNAMIC:
1909			if (func && list_empty(&insn->alts) &&
1910			    has_modified_stack_frame(&state)) {
1911				WARN_FUNC("sibling call from callable instruction with modified stack frame",
1912					  sec, insn->offset);
1913				return 1;
1914			}
1915
1916			return 0;
 
 
 
1917
1918		case INSN_CONTEXT_SWITCH:
1919			if (func && (!next_insn || !next_insn->hint)) {
1920				WARN_FUNC("unsupported instruction in callable function",
1921					  sec, insn->offset);
1922				return 1;
 
 
1923			}
1924			return 0;
1925
1926		case INSN_STACK:
1927			if (update_insn_state(insn, &state))
 
1928				return 1;
 
1929
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1930			break;
1931
1932		default:
1933			break;
1934		}
1935
1936		if (insn->dead_end)
1937			return 0;
1938
1939		if (!next_insn) {
1940			if (state.cfa.base == CFI_UNDEFINED)
1941				return 0;
1942			WARN("%s: unexpected end of section", sec->name);
1943			return 1;
1944		}
1945
 
1946		insn = next_insn;
1947	}
1948
1949	return 0;
1950}
1951
1952static int validate_unwind_hints(struct objtool_file *file)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1953{
1954	struct instruction *insn;
1955	int ret, warnings = 0;
1956	struct insn_state state;
 
1957
1958	if (!file->hints)
1959		return 0;
1960
1961	clear_insn_state(&state);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1962
1963	for_each_insn(file, insn) {
1964		if (insn->hint && !insn->visited) {
1965			ret = validate_branch(file, insn, state);
1966			warnings += ret;
 
 
 
 
1967		}
 
1968	}
1969
1970	return warnings;
1971}
1972
1973static int validate_retpoline(struct objtool_file *file)
1974{
1975	struct instruction *insn;
1976	int warnings = 0;
1977
1978	for_each_insn(file, insn) {
1979		if (insn->type != INSN_JUMP_DYNAMIC &&
1980		    insn->type != INSN_CALL_DYNAMIC)
 
1981			continue;
1982
1983		if (insn->retpoline_safe)
1984			continue;
1985
1986		/*
1987		 * .init.text code is ran before userspace and thus doesn't
1988		 * strictly need retpolines, except for modules which are
1989		 * loaded late, they very much do need retpoline in their
1990		 * .init.text
1991		 */
1992		if (!strcmp(insn->sec->name, ".init.text") && !module)
1993			continue;
1994
1995		WARN_FUNC("indirect %s found in RETPOLINE build",
1996			  insn->sec, insn->offset,
1997			  insn->type == INSN_JUMP_DYNAMIC ? "jump" : "call");
 
 
 
 
 
 
1998
1999		warnings++;
2000	}
2001
2002	return warnings;
2003}
2004
2005static bool is_kasan_insn(struct instruction *insn)
2006{
2007	return (insn->type == INSN_CALL &&
2008		!strcmp(insn->call_dest->name, "__asan_handle_no_return"));
2009}
2010
2011static bool is_ubsan_insn(struct instruction *insn)
2012{
2013	return (insn->type == INSN_CALL &&
2014		!strcmp(insn->call_dest->name,
2015			"__ubsan_handle_builtin_unreachable"));
2016}
2017
2018static bool ignore_unreachable_insn(struct instruction *insn)
2019{
2020	int i;
 
2021
2022	if (insn->ignore || insn->type == INSN_NOP)
2023		return true;
2024
2025	/*
2026	 * Ignore any unused exceptions.  This can happen when a whitelisted
2027	 * function has an exception table entry.
2028	 *
2029	 * Also ignore alternative replacement instructions.  This can happen
2030	 * when a whitelisted function uses one of the ALTERNATIVE macros.
2031	 */
2032	if (!strcmp(insn->sec->name, ".fixup") ||
2033	    !strcmp(insn->sec->name, ".altinstr_replacement") ||
2034	    !strcmp(insn->sec->name, ".altinstr_aux"))
2035		return true;
2036
2037	/*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2038	 * Check if this (or a subsequent) instruction is related to
2039	 * CONFIG_UBSAN or CONFIG_KASAN.
2040	 *
2041	 * End the search at 5 instructions to avoid going into the weeds.
2042	 */
2043	if (!insn->func)
2044		return false;
2045	for (i = 0; i < 5; i++) {
2046
2047		if (is_kasan_insn(insn) || is_ubsan_insn(insn))
2048			return true;
2049
2050		if (insn->type == INSN_JUMP_UNCONDITIONAL) {
2051			if (insn->jump_dest &&
2052			    insn->jump_dest->func == insn->func) {
2053				insn = insn->jump_dest;
2054				continue;
2055			}
2056
2057			break;
2058		}
2059
2060		if (insn->offset + insn->len >= insn->func->offset + insn->func->len)
2061			break;
2062
2063		insn = list_next_entry(insn, list);
2064	}
2065
2066	return false;
2067}
2068
2069static int validate_functions(struct objtool_file *file)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2070{
2071	struct section *sec;
2072	struct symbol *func;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2073	struct instruction *insn;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2074	struct insn_state state;
2075	int ret, warnings = 0;
 
2076
2077	clear_insn_state(&state);
 
 
2078
2079	state.cfa = initial_func_cfi.cfa;
2080	memcpy(&state.regs, &initial_func_cfi.regs,
2081	       CFI_NUM_REGS * sizeof(struct cfi_reg));
2082	state.stack_size = initial_func_cfi.cfa.offset;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2083
2084	for_each_sec(file, sec) {
2085		list_for_each_entry(func, &sec->symbol_list, list) {
2086			if (func->type != STT_FUNC || func->pfunc != func)
2087				continue;
2088
2089			insn = find_insn(file, sec, func->offset);
2090			if (!insn || insn->ignore)
2091				continue;
2092
2093			ret = validate_branch(file, insn, state);
2094			warnings += ret;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2095		}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2096	}
2097
2098	return warnings;
2099}
2100
2101static int validate_reachable_instructions(struct objtool_file *file)
 
2102{
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2103	struct instruction *insn;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2104
2105	if (file->ignore_unreachables)
2106		return 0;
2107
2108	for_each_insn(file, insn) {
2109		if (insn->visited || ignore_unreachable_insn(insn))
2110			continue;
2111
2112		WARN_FUNC("unreachable instruction", insn->sec, insn->offset);
2113		return 1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2114	}
2115
2116	return 0;
2117}
2118
2119static void cleanup(struct objtool_file *file)
2120{
2121	struct instruction *insn, *tmpinsn;
2122	struct alternative *alt, *tmpalt;
2123
2124	list_for_each_entry_safe(insn, tmpinsn, &file->insn_list, list) {
2125		list_for_each_entry_safe(alt, tmpalt, &insn->alts, list) {
2126			list_del(&alt->list);
2127			free(alt);
 
 
 
 
 
 
 
2128		}
2129		list_del(&insn->list);
2130		hash_del(&insn->hash);
2131		free(insn);
2132	}
2133	elf_close(file->elf);
 
 
 
 
2134}
2135
2136int check(const char *_objname, bool orc)
 
 
 
 
 
 
 
 
 
 
2137{
2138	struct objtool_file file;
2139	int ret, warnings = 0;
2140
2141	objname = _objname;
 
 
 
 
 
 
 
2142
2143	file.elf = elf_open(objname, orc ? O_RDWR : O_RDONLY);
2144	if (!file.elf)
2145		return 1;
2146
2147	INIT_LIST_HEAD(&file.insn_list);
2148	hash_init(file.insn_hash);
2149	file.whitelist = find_section_by_name(file.elf, ".discard.func_stack_frame_non_standard");
2150	file.rodata = find_section_by_name(file.elf, ".rodata");
2151	file.c_file = find_section_by_name(file.elf, ".comment");
2152	file.ignore_unreachables = no_unreachable;
2153	file.hints = false;
2154
2155	arch_initial_func_cfi_state(&initial_func_cfi);
 
 
 
 
 
 
 
 
 
 
 
2156
2157	ret = decode_sections(&file);
2158	if (ret < 0)
2159		goto out;
 
2160	warnings += ret;
2161
2162	if (list_empty(&file.insn_list))
2163		goto out;
2164
2165	if (retpoline) {
2166		ret = validate_retpoline(&file);
2167		if (ret < 0)
2168			return ret;
2169		warnings += ret;
2170	}
2171
2172	ret = validate_functions(&file);
2173	if (ret < 0)
2174		goto out;
2175	warnings += ret;
 
2176
2177	ret = validate_unwind_hints(&file);
2178	if (ret < 0)
2179		goto out;
2180	warnings += ret;
2181
2182	if (!warnings) {
2183		ret = validate_reachable_instructions(&file);
 
 
 
 
 
 
 
2184		if (ret < 0)
2185			goto out;
2186		warnings += ret;
2187	}
2188
2189	if (orc) {
2190		ret = create_orc(&file);
 
 
 
 
 
 
 
 
 
 
 
2191		if (ret < 0)
2192			goto out;
 
 
2193
2194		ret = create_orc_sections(&file);
 
2195		if (ret < 0)
2196			goto out;
 
 
2197
2198		ret = elf_write(file.elf);
 
2199		if (ret < 0)
2200			goto out;
 
2201	}
2202
2203out:
2204	cleanup(&file);
 
 
 
 
2205
2206	/* ignore warnings for now until we get all the code cleaned up */
2207	if (ret || warnings)
2208		return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2209	return 0;
2210}
v6.13.7
   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#include <inttypes.h>
   9#include <sys/mman.h>
  10
  11#include <objtool/builtin.h>
  12#include <objtool/cfi.h>
  13#include <objtool/arch.h>
  14#include <objtool/check.h>
  15#include <objtool/special.h>
  16#include <objtool/warn.h>
  17#include <objtool/endianness.h>
  18
  19#include <linux/objtool_types.h>
  20#include <linux/hashtable.h>
  21#include <linux/kernel.h>
  22#include <linux/static_call_types.h>
  23#include <linux/string.h>
  24
  25struct alternative {
  26	struct alternative *next;
  27	struct instruction *insn;
  28	bool skip_orig;
  29};
  30
  31static unsigned long nr_cfi, nr_cfi_reused, nr_cfi_cache;
  32
  33static struct cfi_init_state initial_func_cfi;
  34static struct cfi_state init_cfi;
  35static struct cfi_state func_cfi;
  36static struct cfi_state force_undefined_cfi;
  37
  38struct instruction *find_insn(struct objtool_file *file,
  39			      struct section *sec, unsigned long offset)
  40{
  41	struct instruction *insn;
  42
  43	hash_for_each_possible(file->insn_hash, insn, hash, sec_offset_hash(sec, offset)) {
  44		if (insn->sec == sec && insn->offset == offset)
  45			return insn;
  46	}
  47
  48	return NULL;
  49}
  50
  51struct instruction *next_insn_same_sec(struct objtool_file *file,
  52				       struct instruction *insn)
  53{
  54	if (insn->idx == INSN_CHUNK_MAX)
  55		return find_insn(file, insn->sec, insn->offset + insn->len);
  56
  57	insn++;
  58	if (!insn->len)
  59		return NULL;
  60
  61	return insn;
  62}
  63
  64static struct instruction *next_insn_same_func(struct objtool_file *file,
  65					       struct instruction *insn)
  66{
  67	struct instruction *next = next_insn_same_sec(file, insn);
  68	struct symbol *func = insn_func(insn);
  69
  70	if (!func)
  71		return NULL;
  72
  73	if (next && insn_func(next) == func)
  74		return next;
  75
  76	/* Check if we're already in the subfunction: */
  77	if (func == func->cfunc)
  78		return NULL;
  79
  80	/* Move to the subfunction: */
  81	return find_insn(file, func->cfunc->sec, func->cfunc->offset);
  82}
  83
  84static struct instruction *prev_insn_same_sec(struct objtool_file *file,
  85					      struct instruction *insn)
  86{
  87	if (insn->idx == 0) {
  88		if (insn->prev_len)
  89			return find_insn(file, insn->sec, insn->offset - insn->prev_len);
  90		return NULL;
  91	}
  92
  93	return insn - 1;
  94}
  95
  96static struct instruction *prev_insn_same_sym(struct objtool_file *file,
  97					      struct instruction *insn)
  98{
  99	struct instruction *prev = prev_insn_same_sec(file, insn);
 100
 101	if (prev && insn_func(prev) == insn_func(insn))
 102		return prev;
 103
 104	return NULL;
 105}
 106
 107#define for_each_insn(file, insn)					\
 108	for (struct section *__sec, *__fake = (struct section *)1;	\
 109	     __fake; __fake = NULL)					\
 110		for_each_sec(file, __sec)				\
 111			sec_for_each_insn(file, __sec, insn)
 112
 113#define func_for_each_insn(file, func, insn)				\
 114	for (insn = find_insn(file, func->sec, func->offset);		\
 115	     insn;							\
 116	     insn = next_insn_same_func(file, insn))
 117
 118#define sym_for_each_insn(file, sym, insn)				\
 119	for (insn = find_insn(file, sym->sec, sym->offset);		\
 120	     insn && insn->offset < sym->offset + sym->len;		\
 121	     insn = next_insn_same_sec(file, insn))
 122
 123#define sym_for_each_insn_continue_reverse(file, sym, insn)		\
 124	for (insn = prev_insn_same_sec(file, insn);			\
 125	     insn && insn->offset >= sym->offset;			\
 126	     insn = prev_insn_same_sec(file, insn))
 
 
 
 127
 128#define sec_for_each_insn_from(file, insn)				\
 129	for (; insn; insn = next_insn_same_sec(file, insn))
 130
 131#define sec_for_each_insn_continue(file, insn)				\
 132	for (insn = next_insn_same_sec(file, insn); insn;		\
 133	     insn = next_insn_same_sec(file, insn))
 134
 135static inline struct symbol *insn_call_dest(struct instruction *insn)
 136{
 137	if (insn->type == INSN_JUMP_DYNAMIC ||
 138	    insn->type == INSN_CALL_DYNAMIC)
 139		return NULL;
 140
 141	return insn->_call_dest;
 142}
 143
 144static inline struct reloc *insn_jump_table(struct instruction *insn)
 145{
 146	if (insn->type == INSN_JUMP_DYNAMIC ||
 147	    insn->type == INSN_CALL_DYNAMIC)
 148		return insn->_jump_table;
 149
 150	return NULL;
 151}
 152
 153static bool is_jump_table_jump(struct instruction *insn)
 154{
 155	struct alt_group *alt_group = insn->alt_group;
 156
 157	if (insn_jump_table(insn))
 158		return true;
 159
 160	/* Retpoline alternative for a jump table? */
 161	return alt_group && alt_group->orig_group &&
 162	       insn_jump_table(alt_group->orig_group->first_insn);
 163}
 164
 165static bool is_sibling_call(struct instruction *insn)
 166{
 167	/*
 168	 * Assume only STT_FUNC calls have jump-tables.
 169	 */
 170	if (insn_func(insn)) {
 171		/* An indirect jump is either a sibling call or a jump to a table. */
 172		if (insn->type == INSN_JUMP_DYNAMIC)
 173			return !is_jump_table_jump(insn);
 174	}
 175
 176	/* add_jump_destinations() sets insn_call_dest(insn) for sibling calls. */
 177	return (is_static_jump(insn) && insn_call_dest(insn));
 178}
 179
 180/*
 181 * Checks if a string ends with another.
 182 */
 183static bool str_ends_with(const char *s, const char *sub)
 184{
 185	const int slen = strlen(s);
 186	const int sublen = strlen(sub);
 
 
 
 
 
 
 
 
 
 
 
 
 187
 188	if (sublen > slen)
 189		return 0;
 190
 191	return !memcmp(s + slen - sublen, sub, sublen);
 192}
 193
 194/*
 195 * Checks if a function is a Rust "noreturn" one.
 196 */
 197static bool is_rust_noreturn(const struct symbol *func)
 198{
 199	/*
 200	 * If it does not start with "_R", then it is not a Rust symbol.
 201	 */
 202	if (strncmp(func->name, "_R", 2))
 203		return false;
 204
 205	/*
 206	 * These are just heuristics -- we do not control the precise symbol
 207	 * name, due to the crate disambiguators (which depend on the compiler)
 208	 * as well as changes to the source code itself between versions (since
 209	 * these come from the Rust standard library).
 210	 */
 211	return str_ends_with(func->name, "_4core5sliceSp15copy_from_slice17len_mismatch_fail")		||
 212	       str_ends_with(func->name, "_4core6option13unwrap_failed")				||
 213	       str_ends_with(func->name, "_4core6result13unwrap_failed")				||
 214	       str_ends_with(func->name, "_4core9panicking5panic")					||
 215	       str_ends_with(func->name, "_4core9panicking9panic_fmt")					||
 216	       str_ends_with(func->name, "_4core9panicking14panic_explicit")				||
 217	       str_ends_with(func->name, "_4core9panicking14panic_nounwind")				||
 218	       str_ends_with(func->name, "_4core9panicking18panic_bounds_check")			||
 219	       str_ends_with(func->name, "_4core9panicking19assert_failed_inner")			||
 220	       str_ends_with(func->name, "_4core9panicking36panic_misaligned_pointer_dereference")	||
 221	       strstr(func->name, "_4core9panicking13assert_failed")					||
 222	       strstr(func->name, "_4core9panicking11panic_const24panic_const_")			||
 223	       (strstr(func->name, "_4core5slice5index24slice_") &&
 224		str_ends_with(func->name, "_fail"));
 225}
 226
 227/*
 228 * This checks to see if the given function is a "noreturn" function.
 229 *
 230 * For global functions which are outside the scope of this object file, we
 231 * have to keep a manual list of them.
 232 *
 233 * For local functions, we have to detect them manually by simply looking for
 234 * the lack of a return instruction.
 
 
 
 
 
 235 */
 236static bool __dead_end_function(struct objtool_file *file, struct symbol *func,
 237				int recursion)
 238{
 239	int i;
 240	struct instruction *insn;
 241	bool empty = true;
 242
 243#define NORETURN(func) __stringify(func),
 
 
 
 244	static const char * const global_noreturns[] = {
 245#include "noreturns.h"
 
 
 
 
 
 
 
 
 
 
 246	};
 247#undef NORETURN
 248
 249	if (!func)
 250		return false;
 251
 252	if (func->bind == STB_GLOBAL || func->bind == STB_WEAK) {
 253		if (is_rust_noreturn(func))
 254			return true;
 255
 
 256		for (i = 0; i < ARRAY_SIZE(global_noreturns); i++)
 257			if (!strcmp(func->name, global_noreturns[i]))
 258				return true;
 259	}
 260
 261	if (func->bind == STB_WEAK)
 262		return false;
 263
 264	if (!func->len)
 265		return false;
 266
 267	insn = find_insn(file, func->sec, func->offset);
 268	if (!insn || !insn_func(insn))
 269		return false;
 270
 271	func_for_each_insn(file, func, insn) {
 272		empty = false;
 273
 274		if (insn->type == INSN_RETURN)
 275			return false;
 276	}
 277
 278	if (empty)
 279		return false;
 280
 281	/*
 282	 * A function can have a sibling call instead of a return.  In that
 283	 * case, the function's dead-end status depends on whether the target
 284	 * of the sibling call returns.
 285	 */
 286	func_for_each_insn(file, func, insn) {
 287		if (is_sibling_call(insn)) {
 288			struct instruction *dest = insn->jump_dest;
 289
 290			if (!dest)
 291				/* sibling call to another file */
 292				return false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 293
 294			/* local sibling call */
 295			if (recursion == 5) {
 296				/*
 297				 * Infinite recursion: two functions have
 298				 * sibling calls to each other.  This is a very
 299				 * rare case.  It means they aren't dead ends.
 300				 */
 301				return false;
 302			}
 
 303
 304			return __dead_end_function(file, insn_func(dest), recursion+1);
 305		}
 
 306	}
 307
 308	return true;
 309}
 310
 311static bool dead_end_function(struct objtool_file *file, struct symbol *func)
 312{
 313	return __dead_end_function(file, func, 0);
 314}
 315
 316static void init_cfi_state(struct cfi_state *cfi)
 317{
 318	int i;
 319
 
 
 320	for (i = 0; i < CFI_NUM_REGS; i++) {
 321		cfi->regs[i].base = CFI_UNDEFINED;
 322		cfi->vals[i].base = CFI_UNDEFINED;
 323	}
 324	cfi->cfa.base = CFI_UNDEFINED;
 325	cfi->drap_reg = CFI_UNDEFINED;
 326	cfi->drap_offset = -1;
 327}
 328
 329static void init_insn_state(struct objtool_file *file, struct insn_state *state,
 330			    struct section *sec)
 331{
 332	memset(state, 0, sizeof(*state));
 333	init_cfi_state(&state->cfi);
 334
 335	/*
 336	 * We need the full vmlinux for noinstr validation, otherwise we can
 337	 * not correctly determine insn_call_dest(insn)->sec (external symbols
 338	 * do not have a section).
 339	 */
 340	if (opts.link && opts.noinstr && sec)
 341		state->noinstr = sec->noinstr;
 342}
 343
 344static struct cfi_state *cfi_alloc(void)
 345{
 346	struct cfi_state *cfi = calloc(1, sizeof(struct cfi_state));
 347	if (!cfi) {
 348		WARN("calloc failed");
 349		exit(1);
 350	}
 351	nr_cfi++;
 352	return cfi;
 353}
 354
 355static int cfi_bits;
 356static struct hlist_head *cfi_hash;
 357
 358static inline bool cficmp(struct cfi_state *cfi1, struct cfi_state *cfi2)
 359{
 360	return memcmp((void *)cfi1 + sizeof(cfi1->hash),
 361		      (void *)cfi2 + sizeof(cfi2->hash),
 362		      sizeof(struct cfi_state) - sizeof(struct hlist_node));
 363}
 364
 365static inline u32 cfi_key(struct cfi_state *cfi)
 366{
 367	return jhash((void *)cfi + sizeof(cfi->hash),
 368		     sizeof(*cfi) - sizeof(cfi->hash), 0);
 369}
 370
 371static struct cfi_state *cfi_hash_find_or_add(struct cfi_state *cfi)
 372{
 373	struct hlist_head *head = &cfi_hash[hash_min(cfi_key(cfi), cfi_bits)];
 374	struct cfi_state *obj;
 375
 376	hlist_for_each_entry(obj, head, hash) {
 377		if (!cficmp(cfi, obj)) {
 378			nr_cfi_cache++;
 379			return obj;
 380		}
 381	}
 382
 383	obj = cfi_alloc();
 384	*obj = *cfi;
 385	hlist_add_head(&obj->hash, head);
 386
 387	return obj;
 388}
 389
 390static void cfi_hash_add(struct cfi_state *cfi)
 391{
 392	struct hlist_head *head = &cfi_hash[hash_min(cfi_key(cfi), cfi_bits)];
 393
 394	hlist_add_head(&cfi->hash, head);
 395}
 396
 397static void *cfi_hash_alloc(unsigned long size)
 398{
 399	cfi_bits = max(10, ilog2(size));
 400	cfi_hash = mmap(NULL, sizeof(struct hlist_head) << cfi_bits,
 401			PROT_READ|PROT_WRITE,
 402			MAP_PRIVATE|MAP_ANON, -1, 0);
 403	if (cfi_hash == (void *)-1L) {
 404		WARN("mmap fail cfi_hash");
 405		cfi_hash = NULL;
 406	}  else if (opts.stats) {
 407		printf("cfi_bits: %d\n", cfi_bits);
 408	}
 409
 410	return cfi_hash;
 411}
 412
 413static unsigned long nr_insns;
 414static unsigned long nr_insns_visited;
 415
 416/*
 417 * Call the arch-specific instruction decoder for all the instructions and add
 418 * them to the global instruction list.
 419 */
 420static int decode_instructions(struct objtool_file *file)
 421{
 422	struct section *sec;
 423	struct symbol *func;
 424	unsigned long offset;
 425	struct instruction *insn;
 426	int ret;
 427
 428	for_each_sec(file, sec) {
 429		struct instruction *insns = NULL;
 430		u8 prev_len = 0;
 431		u8 idx = 0;
 432
 433		if (!(sec->sh.sh_flags & SHF_EXECINSTR))
 434			continue;
 435
 436		if (strcmp(sec->name, ".altinstr_replacement") &&
 437		    strcmp(sec->name, ".altinstr_aux") &&
 438		    strncmp(sec->name, ".discard.", 9))
 439			sec->text = true;
 440
 441		if (!strcmp(sec->name, ".noinstr.text") ||
 442		    !strcmp(sec->name, ".entry.text") ||
 443		    !strcmp(sec->name, ".cpuidle.text") ||
 444		    !strncmp(sec->name, ".text..__x86.", 13))
 445			sec->noinstr = true;
 446
 447		/*
 448		 * .init.text code is ran before userspace and thus doesn't
 449		 * strictly need retpolines, except for modules which are
 450		 * loaded late, they very much do need retpoline in their
 451		 * .init.text
 452		 */
 453		if (!strcmp(sec->name, ".init.text") && !opts.module)
 454			sec->init = true;
 455
 456		for (offset = 0; offset < sec->sh.sh_size; offset += insn->len) {
 457			if (!insns || idx == INSN_CHUNK_MAX) {
 458				insns = calloc(sizeof(*insn), INSN_CHUNK_SIZE);
 459				if (!insns) {
 460					WARN("malloc failed");
 461					return -1;
 462				}
 463				idx = 0;
 464			} else {
 465				idx++;
 466			}
 467			insn = &insns[idx];
 468			insn->idx = idx;
 
 469
 470			INIT_LIST_HEAD(&insn->call_node);
 471			insn->sec = sec;
 472			insn->offset = offset;
 473			insn->prev_len = prev_len;
 474
 475			ret = arch_decode_instruction(file, sec, offset,
 476						      sec->sh.sh_size - offset,
 477						      insn);
 
 
 478			if (ret)
 479				return ret;
 480
 481			prev_len = insn->len;
 
 
 
 
 
 482
 483			/*
 484			 * By default, "ud2" is a dead end unless otherwise
 485			 * annotated, because GCC 7 inserts it for certain
 486			 * divide-by-zero cases.
 487			 */
 488			if (insn->type == INSN_BUG)
 489				insn->dead_end = true;
 490
 491			hash_add(file->insn_hash, &insn->hash, sec_offset_hash(sec, insn->offset));
 492			nr_insns++;
 493		}
 494
 495//		printf("%s: last chunk used: %d\n", sec->name, (int)idx);
 496
 497		sec_for_each_sym(sec, func) {
 498			if (func->type != STT_NOTYPE && func->type != STT_FUNC)
 499				continue;
 500
 501			if (func->offset == sec->sh.sh_size) {
 502				/* Heuristic: likely an "end" symbol */
 503				if (func->type == STT_NOTYPE)
 504					continue;
 505				WARN("%s(): STT_FUNC at end of section",
 506				     func->name);
 507				return -1;
 508			}
 509
 510			if (func->embedded_insn || func->alias != func)
 511				continue;
 512
 513			if (!find_insn(file, sec, func->offset)) {
 514				WARN("%s(): can't find starting instruction",
 515				     func->name);
 516				return -1;
 517			}
 518
 519			sym_for_each_insn(file, func, insn) {
 520				insn->sym = func;
 521				if (func->type == STT_FUNC &&
 522				    insn->type == INSN_ENDBR &&
 523				    list_empty(&insn->call_node)) {
 524					if (insn->offset == func->offset) {
 525						list_add_tail(&insn->call_node, &file->endbr_list);
 526						file->nr_endbr++;
 527					} else {
 528						file->nr_endbr_int++;
 529					}
 530				}
 531			}
 532		}
 533	}
 534
 535	if (opts.stats)
 536		printf("nr_insns: %lu\n", nr_insns);
 537
 538	return 0;
 539}
 540
 541/*
 542 * Read the pv_ops[] .data table to find the static initialized values.
 543 */
 544static int add_pv_ops(struct objtool_file *file, const char *symname)
 545{
 546	struct symbol *sym, *func;
 547	unsigned long off, end;
 548	struct reloc *reloc;
 549	int idx;
 550
 551	sym = find_symbol_by_name(file->elf, symname);
 552	if (!sym)
 553		return 0;
 554
 555	off = sym->offset;
 556	end = off + sym->len;
 557	for (;;) {
 558		reloc = find_reloc_by_dest_range(file->elf, sym->sec, off, end - off);
 559		if (!reloc)
 560			break;
 561
 562		func = reloc->sym;
 563		if (func->type == STT_SECTION)
 564			func = find_symbol_by_offset(reloc->sym->sec,
 565						     reloc_addend(reloc));
 566
 567		idx = (reloc_offset(reloc) - sym->offset) / sizeof(unsigned long);
 568
 569		objtool_pv_add(file, idx, func);
 570
 571		off = reloc_offset(reloc) + 1;
 572		if (off > end)
 573			break;
 574	}
 575
 576	return 0;
 577}
 578
 579/*
 580 * Allocate and initialize file->pv_ops[].
 581 */
 582static int init_pv_ops(struct objtool_file *file)
 583{
 584	static const char *pv_ops_tables[] = {
 585		"pv_ops",
 586		"xen_cpu_ops",
 587		"xen_irq_ops",
 588		"xen_mmu_ops",
 589		NULL,
 590	};
 591	const char *pv_ops;
 592	struct symbol *sym;
 593	int idx, nr;
 594
 595	if (!opts.noinstr)
 596		return 0;
 597
 598	file->pv_ops = NULL;
 599
 600	sym = find_symbol_by_name(file->elf, "pv_ops");
 601	if (!sym)
 602		return 0;
 603
 604	nr = sym->len / sizeof(unsigned long);
 605	file->pv_ops = calloc(sizeof(struct pv_state), nr);
 606	if (!file->pv_ops)
 607		return -1;
 608
 609	for (idx = 0; idx < nr; idx++)
 610		INIT_LIST_HEAD(&file->pv_ops[idx].targets);
 611
 612	for (idx = 0; (pv_ops = pv_ops_tables[idx]); idx++)
 613		add_pv_ops(file, pv_ops);
 614
 615	return 0;
 616}
 617
 618static struct instruction *find_last_insn(struct objtool_file *file,
 619					  struct section *sec)
 620{
 621	struct instruction *insn = NULL;
 622	unsigned int offset;
 623	unsigned int end = (sec->sh.sh_size > 10) ? sec->sh.sh_size - 10 : 0;
 624
 625	for (offset = sec->sh.sh_size - 1; offset >= end && !insn; offset--)
 626		insn = find_insn(file, sec, offset);
 627
 628	return insn;
 629}
 630
 631/*
 632 * Mark "ud2" instructions and manually annotated dead ends.
 633 */
 634static int add_dead_ends(struct objtool_file *file)
 635{
 636	struct section *rsec;
 637	struct reloc *reloc;
 638	struct instruction *insn;
 639	uint64_t offset;
 640
 641	/*
 642	 * UD2 defaults to being a dead-end, allow them to be annotated for
 643	 * non-fatal, eg WARN.
 644	 */
 645	rsec = find_section_by_name(file->elf, ".rela.discard.reachable");
 646	if (!rsec)
 647		return 0;
 
 
 
 
 
 
 
 648
 649	for_each_reloc(rsec, reloc) {
 650		if (reloc->sym->type == STT_SECTION) {
 651			offset = reloc_addend(reloc);
 652		} else if (reloc->sym->local_label) {
 653			offset = reloc->sym->offset;
 654		} else {
 655			WARN("unexpected relocation symbol type in %s", rsec->name);
 656			return -1;
 657		}
 
 
 
 
 
 
 
 
 
 
 
 658
 659		insn = find_insn(file, reloc->sym->sec, offset);
 660		if (insn)
 661			insn = prev_insn_same_sec(file, insn);
 662		else if (offset == reloc->sym->sec->sh.sh_size) {
 663			insn = find_last_insn(file, reloc->sym->sec);
 664			if (!insn) {
 665				WARN("can't find reachable insn at %s+0x%" PRIx64,
 666				     reloc->sym->sec->name, offset);
 667				return -1;
 668			}
 669		} else {
 670			WARN("can't find reachable insn at %s+0x%" PRIx64,
 671			     reloc->sym->sec->name, offset);
 672			return -1;
 673		}
 674
 675		insn->dead_end = false;
 676	}
 677
 678	return 0;
 679}
 680
 681static int create_static_call_sections(struct objtool_file *file)
 682{
 683	struct static_call_site *site;
 684	struct section *sec;
 685	struct instruction *insn;
 686	struct symbol *key_sym;
 687	char *key_name, *tmp;
 688	int idx;
 689
 690	sec = find_section_by_name(file->elf, ".static_call_sites");
 691	if (sec) {
 692		INIT_LIST_HEAD(&file->static_call_list);
 693		WARN("file already has .static_call_sites section, skipping");
 694		return 0;
 695	}
 696
 697	if (list_empty(&file->static_call_list))
 698		return 0;
 699
 700	idx = 0;
 701	list_for_each_entry(insn, &file->static_call_list, call_node)
 702		idx++;
 703
 704	sec = elf_create_section_pair(file->elf, ".static_call_sites",
 705				      sizeof(*site), idx, idx * 2);
 706	if (!sec)
 707		return -1;
 708
 709	/* Allow modules to modify the low bits of static_call_site::key */
 710	sec->sh.sh_flags |= SHF_WRITE;
 711
 712	idx = 0;
 713	list_for_each_entry(insn, &file->static_call_list, call_node) {
 714
 715		/* populate reloc for 'addr' */
 716		if (!elf_init_reloc_text_sym(file->elf, sec,
 717					     idx * sizeof(*site), idx * 2,
 718					     insn->sec, insn->offset))
 719			return -1;
 720
 721		/* find key symbol */
 722		key_name = strdup(insn_call_dest(insn)->name);
 723		if (!key_name) {
 724			perror("strdup");
 725			return -1;
 726		}
 727		if (strncmp(key_name, STATIC_CALL_TRAMP_PREFIX_STR,
 728			    STATIC_CALL_TRAMP_PREFIX_LEN)) {
 729			WARN("static_call: trampoline name malformed: %s", key_name);
 730			free(key_name);
 731			return -1;
 732		}
 733		tmp = key_name + STATIC_CALL_TRAMP_PREFIX_LEN - STATIC_CALL_KEY_PREFIX_LEN;
 734		memcpy(tmp, STATIC_CALL_KEY_PREFIX_STR, STATIC_CALL_KEY_PREFIX_LEN);
 
 
 
 735
 736		key_sym = find_symbol_by_name(file->elf, tmp);
 737		if (!key_sym) {
 738			if (!opts.module) {
 739				WARN("static_call: can't find static_call_key symbol: %s", tmp);
 740				free(key_name);
 741				return -1;
 742			}
 743
 744			/*
 745			 * For modules(), the key might not be exported, which
 746			 * means the module can make static calls but isn't
 747			 * allowed to change them.
 748			 *
 749			 * In that case we temporarily set the key to be the
 750			 * trampoline address.  This is fixed up in
 751			 * static_call_add_module().
 752			 */
 753			key_sym = insn_call_dest(insn);
 754		}
 755		free(key_name);
 756
 757		/* populate reloc for 'key' */
 758		if (!elf_init_reloc_data_sym(file->elf, sec,
 759					     idx * sizeof(*site) + 4,
 760					     (idx * 2) + 1, key_sym,
 761					     is_sibling_call(insn) * STATIC_CALL_SITE_TAIL))
 762			return -1;
 763
 764		idx++;
 765	}
 766
 767	return 0;
 768}
 769
 770static int create_retpoline_sites_sections(struct objtool_file *file)
 771{
 772	struct instruction *insn;
 773	struct section *sec;
 774	int idx;
 775
 776	sec = find_section_by_name(file->elf, ".retpoline_sites");
 777	if (sec) {
 778		WARN("file already has .retpoline_sites, skipping");
 779		return 0;
 780	}
 781
 782	idx = 0;
 783	list_for_each_entry(insn, &file->retpoline_call_list, call_node)
 784		idx++;
 785
 786	if (!idx)
 787		return 0;
 788
 789	sec = elf_create_section_pair(file->elf, ".retpoline_sites",
 790				      sizeof(int), idx, idx);
 791	if (!sec)
 792		return -1;
 793
 794	idx = 0;
 795	list_for_each_entry(insn, &file->retpoline_call_list, call_node) {
 796
 797		if (!elf_init_reloc_text_sym(file->elf, sec,
 798					     idx * sizeof(int), idx,
 799					     insn->sec, insn->offset))
 800			return -1;
 801
 802		idx++;
 803	}
 804
 805	return 0;
 806}
 807
 808static int create_return_sites_sections(struct objtool_file *file)
 809{
 810	struct instruction *insn;
 811	struct section *sec;
 812	int idx;
 813
 814	sec = find_section_by_name(file->elf, ".return_sites");
 815	if (sec) {
 816		WARN("file already has .return_sites, skipping");
 817		return 0;
 818	}
 819
 820	idx = 0;
 821	list_for_each_entry(insn, &file->return_thunk_list, call_node)
 822		idx++;
 823
 824	if (!idx)
 825		return 0;
 826
 827	sec = elf_create_section_pair(file->elf, ".return_sites",
 828				      sizeof(int), idx, idx);
 829	if (!sec)
 830		return -1;
 831
 832	idx = 0;
 833	list_for_each_entry(insn, &file->return_thunk_list, call_node) {
 834
 835		if (!elf_init_reloc_text_sym(file->elf, sec,
 836					     idx * sizeof(int), idx,
 837					     insn->sec, insn->offset))
 838			return -1;
 839
 840		idx++;
 841	}
 842
 843	return 0;
 844}
 845
 846static int create_ibt_endbr_seal_sections(struct objtool_file *file)
 847{
 848	struct instruction *insn;
 849	struct section *sec;
 850	int idx;
 851
 852	sec = find_section_by_name(file->elf, ".ibt_endbr_seal");
 853	if (sec) {
 854		WARN("file already has .ibt_endbr_seal, skipping");
 855		return 0;
 856	}
 857
 858	idx = 0;
 859	list_for_each_entry(insn, &file->endbr_list, call_node)
 860		idx++;
 861
 862	if (opts.stats) {
 863		printf("ibt: ENDBR at function start: %d\n", file->nr_endbr);
 864		printf("ibt: ENDBR inside functions:  %d\n", file->nr_endbr_int);
 865		printf("ibt: superfluous ENDBR:       %d\n", idx);
 866	}
 867
 868	if (!idx)
 869		return 0;
 870
 871	sec = elf_create_section_pair(file->elf, ".ibt_endbr_seal",
 872				      sizeof(int), idx, idx);
 873	if (!sec)
 874		return -1;
 875
 876	idx = 0;
 877	list_for_each_entry(insn, &file->endbr_list, call_node) {
 878
 879		int *site = (int *)sec->data->d_buf + idx;
 880		struct symbol *sym = insn->sym;
 881		*site = 0;
 882
 883		if (opts.module && sym && sym->type == STT_FUNC &&
 884		    insn->offset == sym->offset &&
 885		    (!strcmp(sym->name, "init_module") ||
 886		     !strcmp(sym->name, "cleanup_module")))
 887			WARN("%s(): not an indirect call target", sym->name);
 888
 889		if (!elf_init_reloc_text_sym(file->elf, sec,
 890					     idx * sizeof(int), idx,
 891					     insn->sec, insn->offset))
 892			return -1;
 893
 894		idx++;
 895	}
 896
 897	return 0;
 898}
 899
 900static int create_cfi_sections(struct objtool_file *file)
 901{
 902	struct section *sec;
 903	struct symbol *sym;
 904	int idx;
 905
 906	sec = find_section_by_name(file->elf, ".cfi_sites");
 907	if (sec) {
 908		INIT_LIST_HEAD(&file->call_list);
 909		WARN("file already has .cfi_sites section, skipping");
 910		return 0;
 911	}
 912
 913	idx = 0;
 914	for_each_sym(file, sym) {
 915		if (sym->type != STT_FUNC)
 916			continue;
 917
 918		if (strncmp(sym->name, "__cfi_", 6))
 919			continue;
 920
 921		idx++;
 922	}
 923
 924	sec = elf_create_section_pair(file->elf, ".cfi_sites",
 925				      sizeof(unsigned int), idx, idx);
 926	if (!sec)
 927		return -1;
 928
 929	idx = 0;
 930	for_each_sym(file, sym) {
 931		if (sym->type != STT_FUNC)
 932			continue;
 933
 934		if (strncmp(sym->name, "__cfi_", 6))
 935			continue;
 936
 937		if (!elf_init_reloc_text_sym(file->elf, sec,
 938					     idx * sizeof(unsigned int), idx,
 939					     sym->sec, sym->offset))
 940			return -1;
 941
 942		idx++;
 943	}
 944
 945	return 0;
 946}
 947
 948static int create_mcount_loc_sections(struct objtool_file *file)
 949{
 950	size_t addr_size = elf_addr_size(file->elf);
 951	struct instruction *insn;
 952	struct section *sec;
 953	int idx;
 954
 955	sec = find_section_by_name(file->elf, "__mcount_loc");
 956	if (sec) {
 957		INIT_LIST_HEAD(&file->mcount_loc_list);
 958		WARN("file already has __mcount_loc section, skipping");
 959		return 0;
 960	}
 961
 962	if (list_empty(&file->mcount_loc_list))
 963		return 0;
 964
 965	idx = 0;
 966	list_for_each_entry(insn, &file->mcount_loc_list, call_node)
 967		idx++;
 968
 969	sec = elf_create_section_pair(file->elf, "__mcount_loc", addr_size,
 970				      idx, idx);
 971	if (!sec)
 972		return -1;
 973
 974	sec->sh.sh_addralign = addr_size;
 975
 976	idx = 0;
 977	list_for_each_entry(insn, &file->mcount_loc_list, call_node) {
 978
 979		struct reloc *reloc;
 980
 981		reloc = elf_init_reloc_text_sym(file->elf, sec, idx * addr_size, idx,
 982					       insn->sec, insn->offset);
 983		if (!reloc)
 984			return -1;
 985
 986		set_reloc_type(file->elf, reloc, addr_size == 8 ? R_ABS64 : R_ABS32);
 987
 988		idx++;
 989	}
 990
 991	return 0;
 992}
 993
 994static int create_direct_call_sections(struct objtool_file *file)
 995{
 996	struct instruction *insn;
 997	struct section *sec;
 998	int idx;
 999
1000	sec = find_section_by_name(file->elf, ".call_sites");
1001	if (sec) {
1002		INIT_LIST_HEAD(&file->call_list);
1003		WARN("file already has .call_sites section, skipping");
1004		return 0;
1005	}
1006
1007	if (list_empty(&file->call_list))
1008		return 0;
1009
1010	idx = 0;
1011	list_for_each_entry(insn, &file->call_list, call_node)
1012		idx++;
1013
1014	sec = elf_create_section_pair(file->elf, ".call_sites",
1015				      sizeof(unsigned int), idx, idx);
1016	if (!sec)
1017		return -1;
1018
1019	idx = 0;
1020	list_for_each_entry(insn, &file->call_list, call_node) {
1021
1022		if (!elf_init_reloc_text_sym(file->elf, sec,
1023					     idx * sizeof(unsigned int), idx,
1024					     insn->sec, insn->offset))
1025			return -1;
1026
1027		idx++;
1028	}
1029
1030	return 0;
1031}
1032
1033/*
1034 * Warnings shouldn't be reported for ignored functions.
1035 */
1036static void add_ignores(struct objtool_file *file)
1037{
1038	struct instruction *insn;
1039	struct section *rsec;
1040	struct symbol *func;
1041	struct reloc *reloc;
1042
1043	rsec = find_section_by_name(file->elf, ".rela.discard.func_stack_frame_non_standard");
1044	if (!rsec)
1045		return;
1046
1047	for_each_reloc(rsec, reloc) {
1048		switch (reloc->sym->type) {
1049		case STT_FUNC:
1050			func = reloc->sym;
1051			break;
1052
1053		case STT_SECTION:
1054			func = find_func_by_offset(reloc->sym->sec, reloc_addend(reloc));
1055			if (!func)
1056				continue;
1057			break;
1058
1059		default:
1060			WARN("unexpected relocation symbol type in %s: %d",
1061			     rsec->name, reloc->sym->type);
1062			continue;
1063		}
1064
1065		func_for_each_insn(file, func, insn)
1066			insn->ignore = true;
1067	}
1068}
1069
1070/*
1071 * This is a whitelist of functions that is allowed to be called with AC set.
1072 * The list is meant to be minimal and only contains compiler instrumentation
1073 * ABI and a few functions used to implement *_{to,from}_user() functions.
1074 *
1075 * These functions must not directly change AC, but may PUSHF/POPF.
1076 */
1077static const char *uaccess_safe_builtin[] = {
1078	/* KASAN */
1079	"kasan_report",
1080	"kasan_check_range",
1081	/* KASAN out-of-line */
1082	"__asan_loadN_noabort",
1083	"__asan_load1_noabort",
1084	"__asan_load2_noabort",
1085	"__asan_load4_noabort",
1086	"__asan_load8_noabort",
1087	"__asan_load16_noabort",
1088	"__asan_storeN_noabort",
1089	"__asan_store1_noabort",
1090	"__asan_store2_noabort",
1091	"__asan_store4_noabort",
1092	"__asan_store8_noabort",
1093	"__asan_store16_noabort",
1094	"__kasan_check_read",
1095	"__kasan_check_write",
1096	/* KASAN in-line */
1097	"__asan_report_load_n_noabort",
1098	"__asan_report_load1_noabort",
1099	"__asan_report_load2_noabort",
1100	"__asan_report_load4_noabort",
1101	"__asan_report_load8_noabort",
1102	"__asan_report_load16_noabort",
1103	"__asan_report_store_n_noabort",
1104	"__asan_report_store1_noabort",
1105	"__asan_report_store2_noabort",
1106	"__asan_report_store4_noabort",
1107	"__asan_report_store8_noabort",
1108	"__asan_report_store16_noabort",
1109	/* KCSAN */
1110	"__kcsan_check_access",
1111	"__kcsan_mb",
1112	"__kcsan_wmb",
1113	"__kcsan_rmb",
1114	"__kcsan_release",
1115	"kcsan_found_watchpoint",
1116	"kcsan_setup_watchpoint",
1117	"kcsan_check_scoped_accesses",
1118	"kcsan_disable_current",
1119	"kcsan_enable_current_nowarn",
1120	/* KCSAN/TSAN */
1121	"__tsan_func_entry",
1122	"__tsan_func_exit",
1123	"__tsan_read_range",
1124	"__tsan_write_range",
1125	"__tsan_read1",
1126	"__tsan_read2",
1127	"__tsan_read4",
1128	"__tsan_read8",
1129	"__tsan_read16",
1130	"__tsan_write1",
1131	"__tsan_write2",
1132	"__tsan_write4",
1133	"__tsan_write8",
1134	"__tsan_write16",
1135	"__tsan_read_write1",
1136	"__tsan_read_write2",
1137	"__tsan_read_write4",
1138	"__tsan_read_write8",
1139	"__tsan_read_write16",
1140	"__tsan_volatile_read1",
1141	"__tsan_volatile_read2",
1142	"__tsan_volatile_read4",
1143	"__tsan_volatile_read8",
1144	"__tsan_volatile_read16",
1145	"__tsan_volatile_write1",
1146	"__tsan_volatile_write2",
1147	"__tsan_volatile_write4",
1148	"__tsan_volatile_write8",
1149	"__tsan_volatile_write16",
1150	"__tsan_atomic8_load",
1151	"__tsan_atomic16_load",
1152	"__tsan_atomic32_load",
1153	"__tsan_atomic64_load",
1154	"__tsan_atomic8_store",
1155	"__tsan_atomic16_store",
1156	"__tsan_atomic32_store",
1157	"__tsan_atomic64_store",
1158	"__tsan_atomic8_exchange",
1159	"__tsan_atomic16_exchange",
1160	"__tsan_atomic32_exchange",
1161	"__tsan_atomic64_exchange",
1162	"__tsan_atomic8_fetch_add",
1163	"__tsan_atomic16_fetch_add",
1164	"__tsan_atomic32_fetch_add",
1165	"__tsan_atomic64_fetch_add",
1166	"__tsan_atomic8_fetch_sub",
1167	"__tsan_atomic16_fetch_sub",
1168	"__tsan_atomic32_fetch_sub",
1169	"__tsan_atomic64_fetch_sub",
1170	"__tsan_atomic8_fetch_and",
1171	"__tsan_atomic16_fetch_and",
1172	"__tsan_atomic32_fetch_and",
1173	"__tsan_atomic64_fetch_and",
1174	"__tsan_atomic8_fetch_or",
1175	"__tsan_atomic16_fetch_or",
1176	"__tsan_atomic32_fetch_or",
1177	"__tsan_atomic64_fetch_or",
1178	"__tsan_atomic8_fetch_xor",
1179	"__tsan_atomic16_fetch_xor",
1180	"__tsan_atomic32_fetch_xor",
1181	"__tsan_atomic64_fetch_xor",
1182	"__tsan_atomic8_fetch_nand",
1183	"__tsan_atomic16_fetch_nand",
1184	"__tsan_atomic32_fetch_nand",
1185	"__tsan_atomic64_fetch_nand",
1186	"__tsan_atomic8_compare_exchange_strong",
1187	"__tsan_atomic16_compare_exchange_strong",
1188	"__tsan_atomic32_compare_exchange_strong",
1189	"__tsan_atomic64_compare_exchange_strong",
1190	"__tsan_atomic8_compare_exchange_weak",
1191	"__tsan_atomic16_compare_exchange_weak",
1192	"__tsan_atomic32_compare_exchange_weak",
1193	"__tsan_atomic64_compare_exchange_weak",
1194	"__tsan_atomic8_compare_exchange_val",
1195	"__tsan_atomic16_compare_exchange_val",
1196	"__tsan_atomic32_compare_exchange_val",
1197	"__tsan_atomic64_compare_exchange_val",
1198	"__tsan_atomic_thread_fence",
1199	"__tsan_atomic_signal_fence",
1200	"__tsan_unaligned_read16",
1201	"__tsan_unaligned_write16",
1202	/* KCOV */
1203	"write_comp_data",
1204	"check_kcov_mode",
1205	"__sanitizer_cov_trace_pc",
1206	"__sanitizer_cov_trace_const_cmp1",
1207	"__sanitizer_cov_trace_const_cmp2",
1208	"__sanitizer_cov_trace_const_cmp4",
1209	"__sanitizer_cov_trace_const_cmp8",
1210	"__sanitizer_cov_trace_cmp1",
1211	"__sanitizer_cov_trace_cmp2",
1212	"__sanitizer_cov_trace_cmp4",
1213	"__sanitizer_cov_trace_cmp8",
1214	"__sanitizer_cov_trace_switch",
1215	/* KMSAN */
1216	"kmsan_copy_to_user",
1217	"kmsan_disable_current",
1218	"kmsan_enable_current",
1219	"kmsan_report",
1220	"kmsan_unpoison_entry_regs",
1221	"kmsan_unpoison_memory",
1222	"__msan_chain_origin",
1223	"__msan_get_context_state",
1224	"__msan_instrument_asm_store",
1225	"__msan_metadata_ptr_for_load_1",
1226	"__msan_metadata_ptr_for_load_2",
1227	"__msan_metadata_ptr_for_load_4",
1228	"__msan_metadata_ptr_for_load_8",
1229	"__msan_metadata_ptr_for_load_n",
1230	"__msan_metadata_ptr_for_store_1",
1231	"__msan_metadata_ptr_for_store_2",
1232	"__msan_metadata_ptr_for_store_4",
1233	"__msan_metadata_ptr_for_store_8",
1234	"__msan_metadata_ptr_for_store_n",
1235	"__msan_poison_alloca",
1236	"__msan_warning",
1237	/* UBSAN */
1238	"ubsan_type_mismatch_common",
1239	"__ubsan_handle_type_mismatch",
1240	"__ubsan_handle_type_mismatch_v1",
1241	"__ubsan_handle_shift_out_of_bounds",
1242	"__ubsan_handle_load_invalid_value",
1243	/* STACKLEAK */
1244	"stackleak_track_stack",
1245	/* misc */
1246	"csum_partial_copy_generic",
1247	"copy_mc_fragile",
1248	"copy_mc_fragile_handle_tail",
1249	"copy_mc_enhanced_fast_string",
1250	"ftrace_likely_update", /* CONFIG_TRACE_BRANCH_PROFILING */
1251	"rep_stos_alternative",
1252	"rep_movs_alternative",
1253	"__copy_user_nocache",
1254	NULL
1255};
1256
1257static void add_uaccess_safe(struct objtool_file *file)
1258{
1259	struct symbol *func;
1260	const char **name;
1261
1262	if (!opts.uaccess)
1263		return;
1264
1265	for (name = uaccess_safe_builtin; *name; name++) {
1266		func = find_symbol_by_name(file->elf, *name);
1267		if (!func)
1268			continue;
1269
1270		func->uaccess_safe = true;
1271	}
1272}
1273
1274/*
1275 * FIXME: For now, just ignore any alternatives which add retpolines.  This is
1276 * a temporary hack, as it doesn't allow ORC to unwind from inside a retpoline.
1277 * But it at least allows objtool to understand the control flow *around* the
1278 * retpoline.
1279 */
1280static int add_ignore_alternatives(struct objtool_file *file)
1281{
1282	struct section *rsec;
1283	struct reloc *reloc;
1284	struct instruction *insn;
1285
1286	rsec = find_section_by_name(file->elf, ".rela.discard.ignore_alts");
1287	if (!rsec)
1288		return 0;
1289
1290	for_each_reloc(rsec, reloc) {
1291		if (reloc->sym->type != STT_SECTION) {
1292			WARN("unexpected relocation symbol type in %s", rsec->name);
1293			return -1;
1294		}
1295
1296		insn = find_insn(file, reloc->sym->sec, reloc_addend(reloc));
1297		if (!insn) {
1298			WARN("bad .discard.ignore_alts entry");
1299			return -1;
1300		}
1301
1302		insn->ignore_alts = true;
1303	}
1304
1305	return 0;
1306}
1307
1308/*
1309 * Symbols that replace INSN_CALL_DYNAMIC, every (tail) call to such a symbol
1310 * will be added to the .retpoline_sites section.
1311 */
1312__weak bool arch_is_retpoline(struct symbol *sym)
1313{
1314	return false;
1315}
1316
1317/*
1318 * Symbols that replace INSN_RETURN, every (tail) call to such a symbol
1319 * will be added to the .return_sites section.
1320 */
1321__weak bool arch_is_rethunk(struct symbol *sym)
1322{
1323	return false;
1324}
1325
1326/*
1327 * Symbols that are embedded inside other instructions, because sometimes crazy
1328 * code exists. These are mostly ignored for validation purposes.
1329 */
1330__weak bool arch_is_embedded_insn(struct symbol *sym)
1331{
1332	return false;
1333}
1334
1335static struct reloc *insn_reloc(struct objtool_file *file, struct instruction *insn)
1336{
1337	struct reloc *reloc;
1338
1339	if (insn->no_reloc)
1340		return NULL;
1341
1342	if (!file)
1343		return NULL;
1344
1345	reloc = find_reloc_by_dest_range(file->elf, insn->sec,
1346					 insn->offset, insn->len);
1347	if (!reloc) {
1348		insn->no_reloc = 1;
1349		return NULL;
1350	}
1351
1352	return reloc;
1353}
1354
1355static void remove_insn_ops(struct instruction *insn)
1356{
1357	struct stack_op *op, *next;
1358
1359	for (op = insn->stack_ops; op; op = next) {
1360		next = op->next;
1361		free(op);
1362	}
1363	insn->stack_ops = NULL;
1364}
1365
1366static void annotate_call_site(struct objtool_file *file,
1367			       struct instruction *insn, bool sibling)
1368{
1369	struct reloc *reloc = insn_reloc(file, insn);
1370	struct symbol *sym = insn_call_dest(insn);
1371
1372	if (!sym)
1373		sym = reloc->sym;
1374
1375	/*
1376	 * Alternative replacement code is just template code which is
1377	 * sometimes copied to the original instruction. For now, don't
1378	 * annotate it. (In the future we might consider annotating the
1379	 * original instruction if/when it ever makes sense to do so.)
1380	 */
1381	if (!strcmp(insn->sec->name, ".altinstr_replacement"))
1382		return;
1383
1384	if (sym->static_call_tramp) {
1385		list_add_tail(&insn->call_node, &file->static_call_list);
1386		return;
1387	}
1388
1389	if (sym->retpoline_thunk) {
1390		list_add_tail(&insn->call_node, &file->retpoline_call_list);
1391		return;
1392	}
1393
1394	/*
1395	 * Many compilers cannot disable KCOV or sanitizer calls with a function
1396	 * attribute so they need a little help, NOP out any such calls from
1397	 * noinstr text.
1398	 */
1399	if (opts.hack_noinstr && insn->sec->noinstr && sym->profiling_func) {
1400		if (reloc)
1401			set_reloc_type(file->elf, reloc, R_NONE);
1402
1403		elf_write_insn(file->elf, insn->sec,
1404			       insn->offset, insn->len,
1405			       sibling ? arch_ret_insn(insn->len)
1406			               : arch_nop_insn(insn->len));
1407
1408		insn->type = sibling ? INSN_RETURN : INSN_NOP;
1409
1410		if (sibling) {
1411			/*
1412			 * We've replaced the tail-call JMP insn by two new
1413			 * insn: RET; INT3, except we only have a single struct
1414			 * insn here. Mark it retpoline_safe to avoid the SLS
1415			 * warning, instead of adding another insn.
1416			 */
1417			insn->retpoline_safe = true;
1418		}
1419
1420		return;
1421	}
1422
1423	if (opts.mcount && sym->fentry) {
1424		if (sibling)
1425			WARN_INSN(insn, "tail call to __fentry__ !?!?");
1426		if (opts.mnop) {
1427			if (reloc)
1428				set_reloc_type(file->elf, reloc, R_NONE);
1429
1430			elf_write_insn(file->elf, insn->sec,
1431				       insn->offset, insn->len,
1432				       arch_nop_insn(insn->len));
1433
1434			insn->type = INSN_NOP;
1435		}
1436
1437		list_add_tail(&insn->call_node, &file->mcount_loc_list);
1438		return;
1439	}
1440
1441	if (insn->type == INSN_CALL && !insn->sec->init)
1442		list_add_tail(&insn->call_node, &file->call_list);
1443
1444	if (!sibling && dead_end_function(file, sym))
1445		insn->dead_end = true;
1446}
1447
1448static void add_call_dest(struct objtool_file *file, struct instruction *insn,
1449			  struct symbol *dest, bool sibling)
1450{
1451	insn->_call_dest = dest;
1452	if (!dest)
1453		return;
1454
1455	/*
1456	 * Whatever stack impact regular CALLs have, should be undone
1457	 * by the RETURN of the called function.
1458	 *
1459	 * Annotated intra-function calls retain the stack_ops but
1460	 * are converted to JUMP, see read_intra_function_calls().
1461	 */
1462	remove_insn_ops(insn);
1463
1464	annotate_call_site(file, insn, sibling);
1465}
1466
1467static void add_retpoline_call(struct objtool_file *file, struct instruction *insn)
1468{
1469	/*
1470	 * Retpoline calls/jumps are really dynamic calls/jumps in disguise,
1471	 * so convert them accordingly.
1472	 */
1473	switch (insn->type) {
1474	case INSN_CALL:
1475		insn->type = INSN_CALL_DYNAMIC;
1476		break;
1477	case INSN_JUMP_UNCONDITIONAL:
1478		insn->type = INSN_JUMP_DYNAMIC;
1479		break;
1480	case INSN_JUMP_CONDITIONAL:
1481		insn->type = INSN_JUMP_DYNAMIC_CONDITIONAL;
1482		break;
1483	default:
1484		return;
1485	}
1486
1487	insn->retpoline_safe = true;
1488
1489	/*
1490	 * Whatever stack impact regular CALLs have, should be undone
1491	 * by the RETURN of the called function.
1492	 *
1493	 * Annotated intra-function calls retain the stack_ops but
1494	 * are converted to JUMP, see read_intra_function_calls().
1495	 */
1496	remove_insn_ops(insn);
1497
1498	annotate_call_site(file, insn, false);
1499}
1500
1501static void add_return_call(struct objtool_file *file, struct instruction *insn, bool add)
1502{
1503	/*
1504	 * Return thunk tail calls are really just returns in disguise,
1505	 * so convert them accordingly.
1506	 */
1507	insn->type = INSN_RETURN;
1508	insn->retpoline_safe = true;
1509
1510	if (add)
1511		list_add_tail(&insn->call_node, &file->return_thunk_list);
1512}
1513
1514static bool is_first_func_insn(struct objtool_file *file,
1515			       struct instruction *insn, struct symbol *sym)
1516{
1517	if (insn->offset == sym->offset)
1518		return true;
1519
1520	/* Allow direct CALL/JMP past ENDBR */
1521	if (opts.ibt) {
1522		struct instruction *prev = prev_insn_same_sym(file, insn);
1523
1524		if (prev && prev->type == INSN_ENDBR &&
1525		    insn->offset == sym->offset + prev->len)
1526			return true;
1527	}
1528
1529	return false;
1530}
1531
1532/*
1533 * A sibling call is a tail-call to another symbol -- to differentiate from a
1534 * recursive tail-call which is to the same symbol.
1535 */
1536static bool jump_is_sibling_call(struct objtool_file *file,
1537				 struct instruction *from, struct instruction *to)
1538{
1539	struct symbol *fs = from->sym;
1540	struct symbol *ts = to->sym;
1541
1542	/* Not a sibling call if from/to a symbol hole */
1543	if (!fs || !ts)
1544		return false;
1545
1546	/* Not a sibling call if not targeting the start of a symbol. */
1547	if (!is_first_func_insn(file, to, ts))
1548		return false;
1549
1550	/* Disallow sibling calls into STT_NOTYPE */
1551	if (ts->type == STT_NOTYPE)
1552		return false;
1553
1554	/* Must not be self to be a sibling */
1555	return fs->pfunc != ts->pfunc;
1556}
1557
1558/*
1559 * Find the destination instructions for all jumps.
1560 */
1561static int add_jump_destinations(struct objtool_file *file)
1562{
1563	struct instruction *insn, *jump_dest;
1564	struct reloc *reloc;
1565	struct section *dest_sec;
1566	unsigned long dest_off;
1567
1568	for_each_insn(file, insn) {
1569		if (insn->jump_dest) {
1570			/*
1571			 * handle_group_alt() may have previously set
1572			 * 'jump_dest' for some alternatives.
1573			 */
1574			continue;
1575		}
1576		if (!is_static_jump(insn))
1577			continue;
1578
1579		reloc = insn_reloc(file, insn);
1580		if (!reloc) {
 
1581			dest_sec = insn->sec;
1582			dest_off = arch_jump_destination(insn);
1583		} else if (reloc->sym->type == STT_SECTION) {
1584			dest_sec = reloc->sym->sec;
1585			dest_off = arch_dest_reloc_offset(reloc_addend(reloc));
1586		} else if (reloc->sym->retpoline_thunk) {
1587			add_retpoline_call(file, insn);
1588			continue;
1589		} else if (reloc->sym->return_thunk) {
1590			add_return_call(file, insn, true);
1591			continue;
1592		} else if (insn_func(insn)) {
1593			/*
1594			 * External sibling call or internal sibling call with
1595			 * STT_FUNC reloc.
1596			 */
1597			add_call_dest(file, insn, reloc->sym, true);
 
1598			continue;
1599		} else if (reloc->sym->sec->idx) {
1600			dest_sec = reloc->sym->sec;
1601			dest_off = reloc->sym->sym.st_value +
1602				   arch_dest_reloc_offset(reloc_addend(reloc));
1603		} else {
1604			/* non-func asm code jumping to another file */
 
1605			continue;
1606		}
1607
1608		jump_dest = find_insn(file, dest_sec, dest_off);
1609		if (!jump_dest) {
1610			struct symbol *sym = find_symbol_by_offset(dest_sec, dest_off);
1611
1612			/*
1613			 * This is a special case for retbleed_untrain_ret().
1614			 * It jumps to __x86_return_thunk(), but objtool
1615			 * can't find the thunk's starting RET
1616			 * instruction, because the RET is also in the
1617			 * middle of another instruction.  Objtool only
1618			 * knows about the outer instruction.
1619			 */
1620			if (sym && sym->embedded_insn) {
1621				add_return_call(file, insn, false);
1622				continue;
1623			}
1624
1625			WARN_INSN(insn, "can't find jump dest instruction at %s+0x%lx",
1626				  dest_sec->name, dest_off);
 
1627			return -1;
1628		}
1629
1630		/*
1631		 * An intra-TU jump in retpoline.o might not have a relocation
1632		 * for its jump dest, in which case the above
1633		 * add_{retpoline,return}_call() didn't happen.
1634		 */
1635		if (jump_dest->sym && jump_dest->offset == jump_dest->sym->offset) {
1636			if (jump_dest->sym->retpoline_thunk) {
1637				add_retpoline_call(file, insn);
1638				continue;
1639			}
1640			if (jump_dest->sym->return_thunk) {
1641				add_return_call(file, insn, true);
1642				continue;
1643			}
1644		}
1645
1646		/*
1647		 * Cross-function jump.
1648		 */
1649		if (insn_func(insn) && insn_func(jump_dest) &&
1650		    insn_func(insn) != insn_func(jump_dest)) {
1651
1652			/*
1653			 * For GCC 8+, create parent/child links for any cold
1654			 * subfunctions.  This is _mostly_ redundant with a
1655			 * similar initialization in read_symbols().
1656			 *
1657			 * If a function has aliases, we want the *first* such
1658			 * function in the symbol table to be the subfunction's
1659			 * parent.  In that case we overwrite the
1660			 * initialization done in read_symbols().
1661			 *
1662			 * However this code can't completely replace the
1663			 * read_symbols() code because this doesn't detect the
1664			 * case where the parent function's only reference to a
1665			 * subfunction is through a jump table.
1666			 */
1667			if (!strstr(insn_func(insn)->name, ".cold") &&
1668			    strstr(insn_func(jump_dest)->name, ".cold")) {
1669				insn_func(insn)->cfunc = insn_func(jump_dest);
1670				insn_func(jump_dest)->pfunc = insn_func(insn);
1671			}
1672		}
1673
1674		if (jump_is_sibling_call(file, insn, jump_dest)) {
1675			/*
1676			 * Internal sibling call without reloc or with
1677			 * STT_SECTION reloc.
1678			 */
1679			add_call_dest(file, insn, insn_func(jump_dest), true);
1680			continue;
1681		}
1682
1683		insn->jump_dest = jump_dest;
1684	}
1685
1686	return 0;
1687}
1688
1689static struct symbol *find_call_destination(struct section *sec, unsigned long offset)
1690{
1691	struct symbol *call_dest;
1692
1693	call_dest = find_func_by_offset(sec, offset);
1694	if (!call_dest)
1695		call_dest = find_symbol_by_offset(sec, offset);
1696
1697	return call_dest;
1698}
1699
1700/*
1701 * Find the destination instructions for all calls.
1702 */
1703static int add_call_destinations(struct objtool_file *file)
1704{
1705	struct instruction *insn;
1706	unsigned long dest_off;
1707	struct symbol *dest;
1708	struct reloc *reloc;
1709
1710	for_each_insn(file, insn) {
1711		if (insn->type != INSN_CALL)
1712			continue;
1713
1714		reloc = insn_reloc(file, insn);
1715		if (!reloc) {
1716			dest_off = arch_jump_destination(insn);
1717			dest = find_call_destination(insn->sec, dest_off);
1718
1719			add_call_dest(file, insn, dest, false);
1720
1721			if (insn->ignore)
1722				continue;
1723
1724			if (!insn_call_dest(insn)) {
1725				WARN_INSN(insn, "unannotated intra-function call");
1726				return -1;
1727			}
1728
1729			if (insn_func(insn) && insn_call_dest(insn)->type != STT_FUNC) {
1730				WARN_INSN(insn, "unsupported call to non-function");
 
 
 
 
 
 
 
1731				return -1;
1732			}
1733
1734		} else if (reloc->sym->type == STT_SECTION) {
1735			dest_off = arch_dest_reloc_offset(reloc_addend(reloc));
1736			dest = find_call_destination(reloc->sym->sec, dest_off);
1737			if (!dest) {
1738				WARN_INSN(insn, "can't find call dest symbol at %s+0x%lx",
1739					  reloc->sym->sec->name, dest_off);
1740				return -1;
1741			}
1742
1743			add_call_dest(file, insn, dest, false);
1744
1745		} else if (reloc->sym->retpoline_thunk) {
1746			add_retpoline_call(file, insn);
1747
1748		} else
1749			add_call_dest(file, insn, reloc->sym, false);
1750	}
1751
1752	return 0;
1753}
1754
1755/*
1756 * The .alternatives section requires some extra special care over and above
1757 * other special sections because alternatives are patched in place.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1758 */
1759static int handle_group_alt(struct objtool_file *file,
1760			    struct special_alt *special_alt,
1761			    struct instruction *orig_insn,
1762			    struct instruction **new_insn)
1763{
1764	struct instruction *last_new_insn = NULL, *insn, *nop = NULL;
1765	struct alt_group *orig_alt_group, *new_alt_group;
1766	unsigned long dest_off;
1767
1768	orig_alt_group = orig_insn->alt_group;
1769	if (!orig_alt_group) {
1770		struct instruction *last_orig_insn = NULL;
 
 
1771
1772		orig_alt_group = malloc(sizeof(*orig_alt_group));
1773		if (!orig_alt_group) {
1774			WARN("malloc failed");
1775			return -1;
1776		}
1777		orig_alt_group->cfi = calloc(special_alt->orig_len,
1778					     sizeof(struct cfi_state *));
1779		if (!orig_alt_group->cfi) {
1780			WARN("calloc failed");
1781			return -1;
1782		}
1783
1784		insn = orig_insn;
1785		sec_for_each_insn_from(file, insn) {
1786			if (insn->offset >= special_alt->orig_off + special_alt->orig_len)
1787				break;
1788
1789			insn->alt_group = orig_alt_group;
1790			last_orig_insn = insn;
1791		}
1792		orig_alt_group->orig_group = NULL;
1793		orig_alt_group->first_insn = orig_insn;
1794		orig_alt_group->last_insn = last_orig_insn;
1795		orig_alt_group->nop = NULL;
1796	} else {
1797		if (orig_alt_group->last_insn->offset + orig_alt_group->last_insn->len -
1798		    orig_alt_group->first_insn->offset != special_alt->orig_len) {
1799			WARN_INSN(orig_insn, "weirdly overlapping alternative! %ld != %d",
1800				  orig_alt_group->last_insn->offset +
1801				  orig_alt_group->last_insn->len -
1802				  orig_alt_group->first_insn->offset,
1803				  special_alt->orig_len);
1804			return -1;
1805		}
 
 
 
 
 
 
 
 
 
1806	}
1807
1808	new_alt_group = malloc(sizeof(*new_alt_group));
1809	if (!new_alt_group) {
1810		WARN("malloc failed");
1811		return -1;
1812	}
1813
1814	if (special_alt->new_len < special_alt->orig_len) {
1815		/*
1816		 * Insert a fake nop at the end to make the replacement
1817		 * alt_group the same size as the original.  This is needed to
1818		 * allow propagate_alt_cfi() to do its magic.  When the last
1819		 * instruction affects the stack, the instruction after it (the
1820		 * nop) will propagate the new state to the shared CFI array.
1821		 */
1822		nop = malloc(sizeof(*nop));
1823		if (!nop) {
1824			WARN("malloc failed");
1825			return -1;
1826		}
1827		memset(nop, 0, sizeof(*nop));
1828
1829		nop->sec = special_alt->new_sec;
1830		nop->offset = special_alt->new_off + special_alt->new_len;
1831		nop->len = special_alt->orig_len - special_alt->new_len;
1832		nop->type = INSN_NOP;
1833		nop->sym = orig_insn->sym;
1834		nop->alt_group = new_alt_group;
1835		nop->ignore = orig_insn->ignore_alts;
1836	}
1837
1838	if (!special_alt->new_len) {
1839		*new_insn = nop;
1840		goto end;
1841	}
1842
 
1843	insn = *new_insn;
1844	sec_for_each_insn_from(file, insn) {
1845		struct reloc *alt_reloc;
1846
1847		if (insn->offset >= special_alt->new_off + special_alt->new_len)
1848			break;
1849
1850		last_new_insn = insn;
1851
1852		insn->ignore = orig_insn->ignore_alts;
1853		insn->sym = orig_insn->sym;
1854		insn->alt_group = new_alt_group;
1855
1856		/*
1857		 * Since alternative replacement code is copy/pasted by the
1858		 * kernel after applying relocations, generally such code can't
1859		 * have relative-address relocation references to outside the
1860		 * .altinstr_replacement section, unless the arch's
1861		 * alternatives code can adjust the relative offsets
1862		 * accordingly.
1863		 */
1864		alt_reloc = insn_reloc(file, insn);
1865		if (alt_reloc && arch_pc_relative_reloc(alt_reloc) &&
1866		    !arch_support_alt_relocation(special_alt, insn, alt_reloc)) {
1867
1868			WARN_INSN(insn, "unsupported relocation in alternatives section");
1869			return -1;
1870		}
1871
1872		if (!is_static_jump(insn))
 
1873			continue;
1874
1875		if (!insn->immediate)
1876			continue;
1877
1878		dest_off = arch_jump_destination(insn);
1879		if (dest_off == special_alt->new_off + special_alt->new_len) {
1880			insn->jump_dest = next_insn_same_sec(file, orig_alt_group->last_insn);
1881			if (!insn->jump_dest) {
1882				WARN_INSN(insn, "can't find alternative jump destination");
1883				return -1;
1884			}
 
 
 
 
 
 
 
1885		}
1886	}
1887
1888	if (!last_new_insn) {
1889		WARN_FUNC("can't find last new alternative instruction",
1890			  special_alt->new_sec, special_alt->new_off);
1891		return -1;
1892	}
1893
1894end:
1895	new_alt_group->orig_group = orig_alt_group;
1896	new_alt_group->first_insn = *new_insn;
1897	new_alt_group->last_insn = last_new_insn;
1898	new_alt_group->nop = nop;
1899	new_alt_group->cfi = orig_alt_group->cfi;
1900	return 0;
1901}
1902
1903/*
1904 * A jump table entry can either convert a nop to a jump or a jump to a nop.
1905 * If the original instruction is a jump, make the alt entry an effective nop
1906 * by just skipping the original instruction.
1907 */
1908static int handle_jump_alt(struct objtool_file *file,
1909			   struct special_alt *special_alt,
1910			   struct instruction *orig_insn,
1911			   struct instruction **new_insn)
1912{
1913	if (orig_insn->type != INSN_JUMP_UNCONDITIONAL &&
1914	    orig_insn->type != INSN_NOP) {
1915
1916		WARN_INSN(orig_insn, "unsupported instruction at jump label");
 
 
1917		return -1;
1918	}
1919
1920	if (opts.hack_jump_label && special_alt->key_addend & 2) {
1921		struct reloc *reloc = insn_reloc(file, orig_insn);
1922
1923		if (reloc)
1924			set_reloc_type(file->elf, reloc, R_NONE);
1925		elf_write_insn(file->elf, orig_insn->sec,
1926			       orig_insn->offset, orig_insn->len,
1927			       arch_nop_insn(orig_insn->len));
1928		orig_insn->type = INSN_NOP;
1929	}
1930
1931	if (orig_insn->type == INSN_NOP) {
1932		if (orig_insn->len == 2)
1933			file->jl_nop_short++;
1934		else
1935			file->jl_nop_long++;
1936
1937		return 0;
1938	}
1939
1940	if (orig_insn->len == 2)
1941		file->jl_short++;
1942	else
1943		file->jl_long++;
1944
1945	*new_insn = next_insn_same_sec(file, orig_insn);
1946	return 0;
1947}
1948
1949/*
1950 * Read all the special sections which have alternate instructions which can be
1951 * patched in or redirected to at runtime.  Each instruction having alternate
1952 * instruction(s) has them added to its insn->alts list, which will be
1953 * traversed in validate_branch().
1954 */
1955static int add_special_section_alts(struct objtool_file *file)
1956{
1957	struct list_head special_alts;
1958	struct instruction *orig_insn, *new_insn;
1959	struct special_alt *special_alt, *tmp;
1960	struct alternative *alt;
1961	int ret;
1962
1963	ret = special_get_alts(file->elf, &special_alts);
1964	if (ret)
1965		return ret;
1966
1967	list_for_each_entry_safe(special_alt, tmp, &special_alts, list) {
1968
1969		orig_insn = find_insn(file, special_alt->orig_sec,
1970				      special_alt->orig_off);
1971		if (!orig_insn) {
1972			WARN_FUNC("special: can't find orig instruction",
1973				  special_alt->orig_sec, special_alt->orig_off);
1974			ret = -1;
1975			goto out;
1976		}
1977
1978		new_insn = NULL;
1979		if (!special_alt->group || special_alt->new_len) {
1980			new_insn = find_insn(file, special_alt->new_sec,
1981					     special_alt->new_off);
1982			if (!new_insn) {
1983				WARN_FUNC("special: can't find new instruction",
1984					  special_alt->new_sec,
1985					  special_alt->new_off);
1986				ret = -1;
1987				goto out;
1988			}
1989		}
1990
1991		if (special_alt->group) {
1992			if (!special_alt->orig_len) {
1993				WARN_INSN(orig_insn, "empty alternative entry");
1994				continue;
1995			}
1996
1997			ret = handle_group_alt(file, special_alt, orig_insn,
1998					       &new_insn);
1999			if (ret)
2000				goto out;
2001		} else if (special_alt->jump_or_nop) {
2002			ret = handle_jump_alt(file, special_alt, orig_insn,
2003					      &new_insn);
2004			if (ret)
2005				goto out;
2006		}
2007
2008		alt = malloc(sizeof(*alt));
2009		if (!alt) {
2010			WARN("malloc failed");
2011			ret = -1;
2012			goto out;
2013		}
2014
2015		alt->insn = new_insn;
2016		alt->skip_orig = special_alt->skip_orig;
2017		orig_insn->ignore_alts |= special_alt->skip_alt;
2018		alt->next = orig_insn->alts;
2019		orig_insn->alts = alt;
2020
2021		list_del(&special_alt->list);
2022		free(special_alt);
2023	}
2024
2025	if (opts.stats) {
2026		printf("jl\\\tNOP\tJMP\n");
2027		printf("short:\t%ld\t%ld\n", file->jl_nop_short, file->jl_short);
2028		printf("long:\t%ld\t%ld\n", file->jl_nop_long, file->jl_long);
2029	}
2030
2031out:
2032	return ret;
2033}
2034
2035static int add_jump_table(struct objtool_file *file, struct instruction *insn,
2036			  struct reloc *next_table)
2037{
2038	struct symbol *pfunc = insn_func(insn)->pfunc;
2039	struct reloc *table = insn_jump_table(insn);
2040	struct instruction *dest_insn;
 
2041	unsigned int prev_offset = 0;
2042	struct reloc *reloc = table;
2043	struct alternative *alt;
2044
2045	/*
2046	 * Each @reloc is a switch table relocation which points to the target
2047	 * instruction.
2048	 */
2049	for_each_reloc_from(table->sec, reloc) {
2050
2051		/* Check for the end of the table: */
2052		if (reloc != table && reloc == next_table)
2053			break;
2054
2055		/* Make sure the table entries are consecutive: */
2056		if (prev_offset && reloc_offset(reloc) != prev_offset + 8)
2057			break;
2058
2059		/* Detect function pointers from contiguous objects: */
2060		if (reloc->sym->sec == pfunc->sec &&
2061		    reloc_addend(reloc) == pfunc->offset)
2062			break;
2063
2064		dest_insn = find_insn(file, reloc->sym->sec, reloc_addend(reloc));
2065		if (!dest_insn)
2066			break;
2067
2068		/* Make sure the destination is in the same function: */
2069		if (!insn_func(dest_insn) || insn_func(dest_insn)->pfunc != pfunc)
2070			break;
2071
2072		alt = malloc(sizeof(*alt));
2073		if (!alt) {
2074			WARN("malloc failed");
2075			return -1;
2076		}
2077
2078		alt->insn = dest_insn;
2079		alt->next = insn->alts;
2080		insn->alts = alt;
2081		prev_offset = reloc_offset(reloc);
2082	}
2083
2084	if (!prev_offset) {
2085		WARN_INSN(insn, "can't find switch jump table");
 
2086		return -1;
2087	}
2088
2089	return 0;
2090}
2091
2092/*
2093 * find_jump_table() - Given a dynamic jump, find the switch jump table
2094 * associated with it.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2095 */
2096static struct reloc *find_jump_table(struct objtool_file *file,
2097				      struct symbol *func,
2098				      struct instruction *insn)
2099{
2100	struct reloc *table_reloc;
2101	struct instruction *dest_insn, *orig_insn = insn;
 
2102
2103	/*
2104	 * Backward search using the @first_jump_src links, these help avoid
2105	 * much of the 'in between' code. Which avoids us getting confused by
2106	 * it.
2107	 */
2108	for (;
2109	     insn && insn_func(insn) && insn_func(insn)->pfunc == func;
2110	     insn = insn->first_jump_src ?: prev_insn_same_sym(file, insn)) {
 
 
 
2111
2112		if (insn != orig_insn && insn->type == INSN_JUMP_DYNAMIC)
2113			break;
2114
2115		/* allow small jumps within the range */
2116		if (insn->type == INSN_JUMP_UNCONDITIONAL &&
2117		    insn->jump_dest &&
2118		    (insn->jump_dest->offset <= insn->offset ||
2119		     insn->jump_dest->offset > orig_insn->offset))
2120		    break;
2121
2122		table_reloc = arch_find_switch_table(file, insn);
2123		if (!table_reloc)
 
 
2124			continue;
2125		dest_insn = find_insn(file, table_reloc->sym->sec, reloc_addend(table_reloc));
2126		if (!dest_insn || !insn_func(dest_insn) || insn_func(dest_insn)->pfunc != func)
 
 
 
 
 
 
 
 
2127			continue;
2128
2129		return table_reloc;
 
 
 
 
 
 
 
 
 
 
 
2130	}
2131
2132	return NULL;
2133}
2134
2135/*
2136 * First pass: Mark the head of each jump table so that in the next pass,
2137 * we know when a given jump table ends and the next one starts.
2138 */
2139static void mark_func_jump_tables(struct objtool_file *file,
2140				    struct symbol *func)
2141{
2142	struct instruction *insn, *last = NULL;
2143	struct reloc *reloc;
 
2144
2145	func_for_each_insn(file, func, insn) {
2146		if (!last)
2147			last = insn;
2148
2149		/*
2150		 * Store back-pointers for unconditional forward jumps such
2151		 * that find_jump_table() can back-track using those and
2152		 * avoid some potentially confusing code.
2153		 */
2154		if (insn->type == INSN_JUMP_UNCONDITIONAL && insn->jump_dest &&
2155		    insn->offset > last->offset &&
2156		    insn->jump_dest->offset > insn->offset &&
2157		    !insn->jump_dest->first_jump_src) {
2158
2159			insn->jump_dest->first_jump_src = insn;
2160			last = insn->jump_dest;
2161		}
2162
2163		if (insn->type != INSN_JUMP_DYNAMIC)
2164			continue;
2165
2166		reloc = find_jump_table(file, func, insn);
2167		if (reloc)
2168			insn->_jump_table = reloc;
2169	}
2170}
2171
2172static int add_func_jump_tables(struct objtool_file *file,
2173				  struct symbol *func)
2174{
2175	struct instruction *insn, *insn_t1 = NULL, *insn_t2;
2176	int ret = 0;
2177
2178	func_for_each_insn(file, func, insn) {
2179		if (!insn_jump_table(insn))
2180			continue;
2181
2182		if (!insn_t1) {
2183			insn_t1 = insn;
2184			continue;
 
 
 
 
 
 
2185		}
2186
2187		insn_t2 = insn;
 
 
2188
2189		ret = add_jump_table(file, insn_t1, insn_jump_table(insn_t2));
 
2190		if (ret)
2191			return ret;
2192
2193		insn_t1 = insn_t2;
2194	}
2195
2196	if (insn_t1)
2197		ret = add_jump_table(file, insn_t1, NULL);
2198
2199	return ret;
2200}
2201
2202/*
2203 * For some switch statements, gcc generates a jump table in the .rodata
2204 * section which contains a list of addresses within the function to jump to.
2205 * This finds these jump tables and adds them to the insn->alts lists.
2206 */
2207static int add_jump_table_alts(struct objtool_file *file)
2208{
 
2209	struct symbol *func;
2210	int ret;
2211
2212	if (!file->rodata)
2213		return 0;
2214
2215	for_each_sym(file, func) {
2216		if (func->type != STT_FUNC)
2217			continue;
 
2218
2219		mark_func_jump_tables(file, func);
2220		ret = add_func_jump_tables(file, func);
2221		if (ret)
2222			return ret;
2223	}
2224
2225	return 0;
2226}
2227
2228static void set_func_state(struct cfi_state *state)
2229{
2230	state->cfa = initial_func_cfi.cfa;
2231	memcpy(&state->regs, &initial_func_cfi.regs,
2232	       CFI_NUM_REGS * sizeof(struct cfi_reg));
2233	state->stack_size = initial_func_cfi.cfa.offset;
2234	state->type = UNWIND_HINT_TYPE_CALL;
2235}
2236
2237static int read_unwind_hints(struct objtool_file *file)
2238{
2239	struct cfi_state cfi = init_cfi;
2240	struct section *sec;
2241	struct unwind_hint *hint;
2242	struct instruction *insn;
2243	struct reloc *reloc;
2244	unsigned long offset;
2245	int i;
2246
2247	sec = find_section_by_name(file->elf, ".discard.unwind_hints");
2248	if (!sec)
2249		return 0;
2250
2251	if (!sec->rsec) {
 
2252		WARN("missing .rela.discard.unwind_hints section");
2253		return -1;
2254	}
2255
2256	if (sec->sh.sh_size % sizeof(struct unwind_hint)) {
2257		WARN("struct unwind_hint size mismatch");
2258		return -1;
2259	}
2260
2261	file->hints = true;
2262
2263	for (i = 0; i < sec->sh.sh_size / sizeof(struct unwind_hint); i++) {
2264		hint = (struct unwind_hint *)sec->data->d_buf + i;
2265
2266		reloc = find_reloc_by_dest(file->elf, sec, i * sizeof(*hint));
2267		if (!reloc) {
2268			WARN("can't find reloc for unwind_hints[%d]", i);
2269			return -1;
2270		}
2271
2272		if (reloc->sym->type == STT_SECTION) {
2273			offset = reloc_addend(reloc);
2274		} else if (reloc->sym->local_label) {
2275			offset = reloc->sym->offset;
2276		} else {
2277			WARN("unexpected relocation symbol type in %s", sec->rsec->name);
2278			return -1;
2279		}
2280
2281		insn = find_insn(file, reloc->sym->sec, offset);
2282		if (!insn) {
2283			WARN("can't find insn for unwind_hints[%d]", i);
2284			return -1;
2285		}
2286
2287		insn->hint = true;
2288
2289		if (hint->type == UNWIND_HINT_TYPE_UNDEFINED) {
2290			insn->cfi = &force_undefined_cfi;
2291			continue;
2292		}
2293
2294		if (hint->type == UNWIND_HINT_TYPE_SAVE) {
2295			insn->hint = false;
2296			insn->save = true;
2297			continue;
2298		}
2299
2300		if (hint->type == UNWIND_HINT_TYPE_RESTORE) {
2301			insn->restore = true;
 
2302			continue;
2303		}
2304
2305		if (hint->type == UNWIND_HINT_TYPE_REGS_PARTIAL) {
2306			struct symbol *sym = find_symbol_by_offset(insn->sec, insn->offset);
2307
2308			if (sym && sym->bind == STB_GLOBAL) {
2309				if (opts.ibt && insn->type != INSN_ENDBR && !insn->noendbr) {
2310					WARN_INSN(insn, "UNWIND_HINT_IRET_REGS without ENDBR");
2311				}
2312			}
2313		}
2314
2315		if (hint->type == UNWIND_HINT_TYPE_FUNC) {
2316			insn->cfi = &func_cfi;
2317			continue;
2318		}
2319
2320		if (insn->cfi)
2321			cfi = *(insn->cfi);
2322
2323		if (arch_decode_hint_reg(hint->sp_reg, &cfi.cfa.base)) {
2324			WARN_INSN(insn, "unsupported unwind_hint sp base reg %d", hint->sp_reg);
2325			return -1;
2326		}
2327
2328		cfi.cfa.offset = bswap_if_needed(file->elf, hint->sp_offset);
2329		cfi.type = hint->type;
2330		cfi.signal = hint->signal;
2331
2332		insn->cfi = cfi_hash_find_or_add(&cfi);
2333	}
2334
2335	return 0;
2336}
2337
2338static int read_noendbr_hints(struct objtool_file *file)
2339{
2340	struct instruction *insn;
2341	struct section *rsec;
2342	struct reloc *reloc;
2343
2344	rsec = find_section_by_name(file->elf, ".rela.discard.noendbr");
2345	if (!rsec)
2346		return 0;
2347
2348	for_each_reloc(rsec, reloc) {
2349		insn = find_insn(file, reloc->sym->sec,
2350				 reloc->sym->offset + reloc_addend(reloc));
2351		if (!insn) {
2352			WARN("bad .discard.noendbr entry");
2353			return -1;
2354		}
2355
2356		insn->noendbr = 1;
 
2357	}
2358
2359	return 0;
2360}
2361
2362static int read_retpoline_hints(struct objtool_file *file)
2363{
2364	struct section *rsec;
2365	struct instruction *insn;
2366	struct reloc *reloc;
2367
2368	rsec = find_section_by_name(file->elf, ".rela.discard.retpoline_safe");
2369	if (!rsec)
2370		return 0;
2371
2372	for_each_reloc(rsec, reloc) {
2373		if (reloc->sym->type != STT_SECTION) {
2374			WARN("unexpected relocation symbol type in %s", rsec->name);
2375			return -1;
2376		}
2377
2378		insn = find_insn(file, reloc->sym->sec, reloc_addend(reloc));
2379		if (!insn) {
2380			WARN("bad .discard.retpoline_safe entry");
2381			return -1;
2382		}
2383
2384		if (insn->type != INSN_JUMP_DYNAMIC &&
2385		    insn->type != INSN_CALL_DYNAMIC &&
2386		    insn->type != INSN_RETURN &&
2387		    insn->type != INSN_NOP) {
2388			WARN_INSN(insn, "retpoline_safe hint not an indirect jump/call/ret/nop");
2389			return -1;
2390		}
2391
2392		insn->retpoline_safe = true;
2393	}
2394
2395	return 0;
2396}
2397
2398static int read_instr_hints(struct objtool_file *file)
2399{
2400	struct section *rsec;
2401	struct instruction *insn;
2402	struct reloc *reloc;
2403
2404	rsec = find_section_by_name(file->elf, ".rela.discard.instr_end");
2405	if (!rsec)
2406		return 0;
2407
2408	for_each_reloc(rsec, reloc) {
2409		if (reloc->sym->type != STT_SECTION) {
2410			WARN("unexpected relocation symbol type in %s", rsec->name);
2411			return -1;
2412		}
2413
2414		insn = find_insn(file, reloc->sym->sec, reloc_addend(reloc));
2415		if (!insn) {
2416			WARN("bad .discard.instr_end entry");
2417			return -1;
2418		}
2419
2420		insn->instr--;
2421	}
2422
2423	rsec = find_section_by_name(file->elf, ".rela.discard.instr_begin");
2424	if (!rsec)
2425		return 0;
2426
2427	for_each_reloc(rsec, reloc) {
2428		if (reloc->sym->type != STT_SECTION) {
2429			WARN("unexpected relocation symbol type in %s", rsec->name);
2430			return -1;
2431		}
2432
2433		insn = find_insn(file, reloc->sym->sec, reloc_addend(reloc));
2434		if (!insn) {
2435			WARN("bad .discard.instr_begin entry");
2436			return -1;
2437		}
2438
2439		insn->instr++;
2440	}
2441
2442	return 0;
2443}
2444
2445static int read_validate_unret_hints(struct objtool_file *file)
2446{
2447	struct section *rsec;
2448	struct instruction *insn;
2449	struct reloc *reloc;
2450
2451	rsec = find_section_by_name(file->elf, ".rela.discard.validate_unret");
2452	if (!rsec)
2453		return 0;
2454
2455	for_each_reloc(rsec, reloc) {
2456		if (reloc->sym->type != STT_SECTION) {
2457			WARN("unexpected relocation symbol type in %s", rsec->name);
2458			return -1;
2459		}
2460
2461		insn = find_insn(file, reloc->sym->sec, reloc_addend(reloc));
2462		if (!insn) {
2463			WARN("bad .discard.instr_end entry");
2464			return -1;
2465		}
2466		insn->unret = 1;
2467	}
2468
2469	return 0;
2470}
2471
2472
2473static int read_intra_function_calls(struct objtool_file *file)
2474{
2475	struct instruction *insn;
2476	struct section *rsec;
2477	struct reloc *reloc;
2478
2479	rsec = find_section_by_name(file->elf, ".rela.discard.intra_function_calls");
2480	if (!rsec)
2481		return 0;
2482
2483	for_each_reloc(rsec, reloc) {
2484		unsigned long dest_off;
2485
2486		if (reloc->sym->type != STT_SECTION) {
2487			WARN("unexpected relocation symbol type in %s",
2488			     rsec->name);
2489			return -1;
2490		}
2491
2492		insn = find_insn(file, reloc->sym->sec, reloc_addend(reloc));
2493		if (!insn) {
2494			WARN("bad .discard.intra_function_call entry");
2495			return -1;
2496		}
2497
2498		if (insn->type != INSN_CALL) {
2499			WARN_INSN(insn, "intra_function_call not a direct call");
2500			return -1;
2501		}
2502
2503		/*
2504		 * Treat intra-function CALLs as JMPs, but with a stack_op.
2505		 * See add_call_destinations(), which strips stack_ops from
2506		 * normal CALLs.
2507		 */
2508		insn->type = INSN_JUMP_UNCONDITIONAL;
2509
2510		dest_off = arch_jump_destination(insn);
2511		insn->jump_dest = find_insn(file, insn->sec, dest_off);
2512		if (!insn->jump_dest) {
2513			WARN_INSN(insn, "can't find call dest at %s+0x%lx",
2514				  insn->sec->name, dest_off);
2515			return -1;
2516		}
2517	}
2518
2519	return 0;
2520}
2521
2522/*
2523 * Return true if name matches an instrumentation function, where calls to that
2524 * function from noinstr code can safely be removed, but compilers won't do so.
2525 */
2526static bool is_profiling_func(const char *name)
2527{
2528	/*
2529	 * Many compilers cannot disable KCOV with a function attribute.
2530	 */
2531	if (!strncmp(name, "__sanitizer_cov_", 16))
2532		return true;
2533
2534	/*
2535	 * Some compilers currently do not remove __tsan_func_entry/exit nor
2536	 * __tsan_atomic_signal_fence (used for barrier instrumentation) with
2537	 * the __no_sanitize_thread attribute, remove them. Once the kernel's
2538	 * minimum Clang version is 14.0, this can be removed.
2539	 */
2540	if (!strncmp(name, "__tsan_func_", 12) ||
2541	    !strcmp(name, "__tsan_atomic_signal_fence"))
2542		return true;
2543
2544	return false;
2545}
2546
2547static int classify_symbols(struct objtool_file *file)
2548{
2549	struct symbol *func;
2550
2551	for_each_sym(file, func) {
2552		if (func->type == STT_NOTYPE && strstarts(func->name, ".L"))
2553			func->local_label = true;
2554
2555		if (func->bind != STB_GLOBAL)
2556			continue;
2557
2558		if (!strncmp(func->name, STATIC_CALL_TRAMP_PREFIX_STR,
2559			     strlen(STATIC_CALL_TRAMP_PREFIX_STR)))
2560			func->static_call_tramp = true;
2561
2562		if (arch_is_retpoline(func))
2563			func->retpoline_thunk = true;
2564
2565		if (arch_is_rethunk(func))
2566			func->return_thunk = true;
2567
2568		if (arch_is_embedded_insn(func))
2569			func->embedded_insn = true;
2570
2571		if (arch_ftrace_match(func->name))
2572			func->fentry = true;
2573
2574		if (is_profiling_func(func->name))
2575			func->profiling_func = true;
2576	}
2577
2578	return 0;
2579}
2580
2581static void mark_rodata(struct objtool_file *file)
2582{
2583	struct section *sec;
2584	bool found = false;
2585
2586	/*
2587	 * Search for the following rodata sections, each of which can
2588	 * potentially contain jump tables:
2589	 *
2590	 * - .rodata: can contain GCC switch tables
2591	 * - .rodata.<func>: same, if -fdata-sections is being used
2592	 * - .data.rel.ro.c_jump_table: contains C annotated jump tables
2593	 *
2594	 * .rodata.str1.* sections are ignored; they don't contain jump tables.
2595	 */
2596	for_each_sec(file, sec) {
2597		if ((!strncmp(sec->name, ".rodata", 7) &&
2598		     !strstr(sec->name, ".str1.")) ||
2599		    !strncmp(sec->name, ".data.rel.ro", 12)) {
2600			sec->rodata = true;
2601			found = true;
2602		}
2603	}
2604
2605	file->rodata = found;
2606}
2607
2608static int decode_sections(struct objtool_file *file)
2609{
2610	int ret;
2611
2612	mark_rodata(file);
2613
2614	ret = init_pv_ops(file);
2615	if (ret)
2616		return ret;
2617
2618	/*
2619	 * Must be before add_{jump_call}_destination.
2620	 */
2621	ret = classify_symbols(file);
2622	if (ret)
2623		return ret;
2624
2625	ret = decode_instructions(file);
2626	if (ret)
2627		return ret;
2628
2629	add_ignores(file);
2630	add_uaccess_safe(file);
2631
2632	ret = add_ignore_alternatives(file);
2633	if (ret)
2634		return ret;
2635
2636	/*
2637	 * Must be before read_unwind_hints() since that needs insn->noendbr.
2638	 */
2639	ret = read_noendbr_hints(file);
2640	if (ret)
2641		return ret;
2642
2643	/*
2644	 * Must be before add_jump_destinations(), which depends on 'func'
2645	 * being set for alternatives, to enable proper sibling call detection.
2646	 */
2647	if (opts.stackval || opts.orc || opts.uaccess || opts.noinstr) {
2648		ret = add_special_section_alts(file);
2649		if (ret)
2650			return ret;
2651	}
2652
2653	ret = add_jump_destinations(file);
2654	if (ret)
2655		return ret;
2656
2657	/*
2658	 * Must be before add_call_destination(); it changes INSN_CALL to
2659	 * INSN_JUMP.
2660	 */
2661	ret = read_intra_function_calls(file);
2662	if (ret)
2663		return ret;
2664
2665	ret = add_call_destinations(file);
2666	if (ret)
2667		return ret;
2668
2669	/*
2670	 * Must be after add_call_destinations() such that it can override
2671	 * dead_end_function() marks.
2672	 */
2673	ret = add_dead_ends(file);
2674	if (ret)
2675		return ret;
2676
2677	ret = add_jump_table_alts(file);
2678	if (ret)
2679		return ret;
2680
2681	ret = read_unwind_hints(file);
2682	if (ret)
2683		return ret;
2684
2685	ret = read_retpoline_hints(file);
2686	if (ret)
2687		return ret;
2688
2689	ret = read_instr_hints(file);
2690	if (ret)
2691		return ret;
2692
2693	ret = read_validate_unret_hints(file);
2694	if (ret)
2695		return ret;
2696
2697	return 0;
2698}
2699
2700static bool is_special_call(struct instruction *insn)
2701{
2702	if (insn->type == INSN_CALL) {
2703		struct symbol *dest = insn_call_dest(insn);
2704
2705		if (!dest)
2706			return false;
2707
2708		if (dest->fentry || dest->embedded_insn)
2709			return true;
2710	}
2711
2712	return false;
2713}
2714
2715static bool has_modified_stack_frame(struct instruction *insn, struct insn_state *state)
2716{
2717	struct cfi_state *cfi = &state->cfi;
2718	int i;
2719
2720	if (cfi->cfa.base != initial_func_cfi.cfa.base || cfi->drap)
2721		return true;
2722
2723	if (cfi->cfa.offset != initial_func_cfi.cfa.offset)
2724		return true;
2725
2726	if (cfi->stack_size != initial_func_cfi.cfa.offset)
2727		return true;
2728
2729	for (i = 0; i < CFI_NUM_REGS; i++) {
2730		if (cfi->regs[i].base != initial_func_cfi.regs[i].base ||
2731		    cfi->regs[i].offset != initial_func_cfi.regs[i].offset)
2732			return true;
2733	}
2734
2735	return false;
2736}
2737
2738static bool check_reg_frame_pos(const struct cfi_reg *reg,
2739				int expected_offset)
2740{
2741	return reg->base == CFI_CFA &&
2742	       reg->offset == expected_offset;
2743}
2744
2745static bool has_valid_stack_frame(struct insn_state *state)
2746{
2747	struct cfi_state *cfi = &state->cfi;
2748
2749	if (cfi->cfa.base == CFI_BP &&
2750	    check_reg_frame_pos(&cfi->regs[CFI_BP], -cfi->cfa.offset) &&
2751	    check_reg_frame_pos(&cfi->regs[CFI_RA], -cfi->cfa.offset + 8))
2752		return true;
2753
2754	if (cfi->drap && cfi->regs[CFI_BP].base == CFI_BP)
2755		return true;
2756
2757	return false;
2758}
2759
2760static int update_cfi_state_regs(struct instruction *insn,
2761				  struct cfi_state *cfi,
2762				  struct stack_op *op)
2763{
2764	struct cfi_reg *cfa = &cfi->cfa;
 
2765
2766	if (cfa->base != CFI_SP && cfa->base != CFI_SP_INDIRECT)
2767		return 0;
2768
2769	/* push */
2770	if (op->dest.type == OP_DEST_PUSH || op->dest.type == OP_DEST_PUSHF)
2771		cfa->offset += 8;
2772
2773	/* pop */
2774	if (op->src.type == OP_SRC_POP || op->src.type == OP_SRC_POPF)
2775		cfa->offset -= 8;
2776
2777	/* add immediate to sp */
2778	if (op->dest.type == OP_DEST_REG && op->src.type == OP_SRC_ADD &&
2779	    op->dest.reg == CFI_SP && op->src.reg == CFI_SP)
2780		cfa->offset -= op->src.offset;
2781
2782	return 0;
2783}
2784
2785static void save_reg(struct cfi_state *cfi, unsigned char reg, int base, int offset)
 
2786{
2787	if (arch_callee_saved_reg(reg) &&
2788	    cfi->regs[reg].base == CFI_UNDEFINED) {
2789		cfi->regs[reg].base = base;
2790		cfi->regs[reg].offset = offset;
2791	}
2792}
2793
2794static void restore_reg(struct cfi_state *cfi, unsigned char reg)
2795{
2796	cfi->regs[reg].base = initial_func_cfi.regs[reg].base;
2797	cfi->regs[reg].offset = initial_func_cfi.regs[reg].offset;
2798}
2799
2800/*
2801 * A note about DRAP stack alignment:
2802 *
2803 * GCC has the concept of a DRAP register, which is used to help keep track of
2804 * the stack pointer when aligning the stack.  r10 or r13 is used as the DRAP
2805 * register.  The typical DRAP pattern is:
2806 *
2807 *   4c 8d 54 24 08		lea    0x8(%rsp),%r10
2808 *   48 83 e4 c0		and    $0xffffffffffffffc0,%rsp
2809 *   41 ff 72 f8		pushq  -0x8(%r10)
2810 *   55				push   %rbp
2811 *   48 89 e5			mov    %rsp,%rbp
2812 *				(more pushes)
2813 *   41 52			push   %r10
2814 *				...
2815 *   41 5a			pop    %r10
2816 *				(more pops)
2817 *   5d				pop    %rbp
2818 *   49 8d 62 f8		lea    -0x8(%r10),%rsp
2819 *   c3				retq
2820 *
2821 * There are some variations in the epilogues, like:
2822 *
2823 *   5b				pop    %rbx
2824 *   41 5a			pop    %r10
2825 *   41 5c			pop    %r12
2826 *   41 5d			pop    %r13
2827 *   41 5e			pop    %r14
2828 *   c9				leaveq
2829 *   49 8d 62 f8		lea    -0x8(%r10),%rsp
2830 *   c3				retq
2831 *
2832 * and:
2833 *
2834 *   4c 8b 55 e8		mov    -0x18(%rbp),%r10
2835 *   48 8b 5d e0		mov    -0x20(%rbp),%rbx
2836 *   4c 8b 65 f0		mov    -0x10(%rbp),%r12
2837 *   4c 8b 6d f8		mov    -0x8(%rbp),%r13
2838 *   c9				leaveq
2839 *   49 8d 62 f8		lea    -0x8(%r10),%rsp
2840 *   c3				retq
2841 *
2842 * Sometimes r13 is used as the DRAP register, in which case it's saved and
2843 * restored beforehand:
2844 *
2845 *   41 55			push   %r13
2846 *   4c 8d 6c 24 10		lea    0x10(%rsp),%r13
2847 *   48 83 e4 f0		and    $0xfffffffffffffff0,%rsp
2848 *				...
2849 *   49 8d 65 f0		lea    -0x10(%r13),%rsp
2850 *   41 5d			pop    %r13
2851 *   c3				retq
2852 */
2853static int update_cfi_state(struct instruction *insn,
2854			    struct instruction *next_insn,
2855			    struct cfi_state *cfi, struct stack_op *op)
2856{
2857	struct cfi_reg *cfa = &cfi->cfa;
2858	struct cfi_reg *regs = cfi->regs;
2859
2860	/* ignore UNWIND_HINT_UNDEFINED regions */
2861	if (cfi->force_undefined)
2862		return 0;
2863
2864	/* stack operations don't make sense with an undefined CFA */
2865	if (cfa->base == CFI_UNDEFINED) {
2866		if (insn_func(insn)) {
2867			WARN_INSN(insn, "undefined stack state");
2868			return -1;
2869		}
2870		return 0;
2871	}
2872
2873	if (cfi->type == UNWIND_HINT_TYPE_REGS ||
2874	    cfi->type == UNWIND_HINT_TYPE_REGS_PARTIAL)
2875		return update_cfi_state_regs(insn, cfi, op);
2876
2877	switch (op->dest.type) {
2878
2879	case OP_DEST_REG:
2880		switch (op->src.type) {
2881
2882		case OP_SRC_REG:
2883			if (op->src.reg == CFI_SP && op->dest.reg == CFI_BP &&
2884			    cfa->base == CFI_SP &&
2885			    check_reg_frame_pos(&regs[CFI_BP], -cfa->offset)) {
 
2886
2887				/* mov %rsp, %rbp */
2888				cfa->base = op->dest.reg;
2889				cfi->bp_scratch = false;
2890			}
2891
2892			else if (op->src.reg == CFI_SP &&
2893				 op->dest.reg == CFI_BP && cfi->drap) {
2894
2895				/* drap: mov %rsp, %rbp */
2896				regs[CFI_BP].base = CFI_BP;
2897				regs[CFI_BP].offset = -cfi->stack_size;
2898				cfi->bp_scratch = false;
2899			}
2900
2901			else if (op->src.reg == CFI_SP && cfa->base == CFI_SP) {
2902
2903				/*
2904				 * mov %rsp, %reg
2905				 *
2906				 * This is needed for the rare case where GCC
2907				 * does:
2908				 *
2909				 *   mov    %rsp, %rax
2910				 *   ...
2911				 *   mov    %rax, %rsp
2912				 */
2913				cfi->vals[op->dest.reg].base = CFI_CFA;
2914				cfi->vals[op->dest.reg].offset = -cfi->stack_size;
2915			}
2916
2917			else if (op->src.reg == CFI_BP && op->dest.reg == CFI_SP &&
2918				 (cfa->base == CFI_BP || cfa->base == cfi->drap_reg)) {
2919
2920				/*
2921				 * mov %rbp, %rsp
2922				 *
2923				 * Restore the original stack pointer (Clang).
2924				 */
2925				cfi->stack_size = -cfi->regs[CFI_BP].offset;
2926			}
2927
2928			else if (op->dest.reg == cfa->base) {
2929
2930				/* mov %reg, %rsp */
2931				if (cfa->base == CFI_SP &&
2932				    cfi->vals[op->src.reg].base == CFI_CFA) {
2933
2934					/*
2935					 * This is needed for the rare case
2936					 * where GCC does something dumb like:
2937					 *
2938					 *   lea    0x8(%rsp), %rcx
2939					 *   ...
2940					 *   mov    %rcx, %rsp
2941					 */
2942					cfa->offset = -cfi->vals[op->src.reg].offset;
2943					cfi->stack_size = cfa->offset;
2944
2945				} else if (cfa->base == CFI_SP &&
2946					   cfi->vals[op->src.reg].base == CFI_SP_INDIRECT &&
2947					   cfi->vals[op->src.reg].offset == cfa->offset) {
2948
2949					/*
2950					 * Stack swizzle:
2951					 *
2952					 * 1: mov %rsp, (%[tos])
2953					 * 2: mov %[tos], %rsp
2954					 *    ...
2955					 * 3: pop %rsp
2956					 *
2957					 * Where:
2958					 *
2959					 * 1 - places a pointer to the previous
2960					 *     stack at the Top-of-Stack of the
2961					 *     new stack.
2962					 *
2963					 * 2 - switches to the new stack.
2964					 *
2965					 * 3 - pops the Top-of-Stack to restore
2966					 *     the original stack.
2967					 *
2968					 * Note: we set base to SP_INDIRECT
2969					 * here and preserve offset. Therefore
2970					 * when the unwinder reaches ToS it
2971					 * will dereference SP and then add the
2972					 * offset to find the next frame, IOW:
2973					 * (%rsp) + offset.
2974					 */
2975					cfa->base = CFI_SP_INDIRECT;
2976
2977				} else {
2978					cfa->base = CFI_UNDEFINED;
2979					cfa->offset = 0;
2980				}
2981			}
2982
2983			else if (op->dest.reg == CFI_SP &&
2984				 cfi->vals[op->src.reg].base == CFI_SP_INDIRECT &&
2985				 cfi->vals[op->src.reg].offset == cfa->offset) {
2986
2987				/*
2988				 * The same stack swizzle case 2) as above. But
2989				 * because we can't change cfa->base, case 3)
2990				 * will become a regular POP. Pretend we're a
2991				 * PUSH so things don't go unbalanced.
2992				 */
2993				cfi->stack_size += 8;
2994			}
2995
2996
2997			break;
2998
2999		case OP_SRC_ADD:
3000			if (op->dest.reg == CFI_SP && op->src.reg == CFI_SP) {
3001
3002				/* add imm, %rsp */
3003				cfi->stack_size -= op->src.offset;
3004				if (cfa->base == CFI_SP)
3005					cfa->offset -= op->src.offset;
3006				break;
3007			}
3008
3009			if (op->dest.reg == CFI_BP && op->src.reg == CFI_SP &&
3010			    insn->sym->frame_pointer) {
3011				/* addi.d fp,sp,imm on LoongArch */
3012				if (cfa->base == CFI_SP && cfa->offset == op->src.offset) {
3013					cfa->base = CFI_BP;
3014					cfa->offset = 0;
3015				}
3016				break;
3017			}
3018
3019			if (op->dest.reg == CFI_SP && op->src.reg == CFI_BP) {
3020				/* addi.d sp,fp,imm on LoongArch */
3021				if (cfa->base == CFI_BP && cfa->offset == 0) {
3022					if (insn->sym->frame_pointer) {
3023						cfa->base = CFI_SP;
3024						cfa->offset = -op->src.offset;
3025					}
3026				} else {
3027					/* lea disp(%rbp), %rsp */
3028					cfi->stack_size = -(op->src.offset + regs[CFI_BP].offset);
3029				}
3030				break;
3031			}
3032
3033			if (op->src.reg == CFI_SP && cfa->base == CFI_SP) {
3034
3035				/* drap: lea disp(%rsp), %drap */
3036				cfi->drap_reg = op->dest.reg;
3037
3038				/*
3039				 * lea disp(%rsp), %reg
3040				 *
3041				 * This is needed for the rare case where GCC
3042				 * does something dumb like:
3043				 *
3044				 *   lea    0x8(%rsp), %rcx
3045				 *   ...
3046				 *   mov    %rcx, %rsp
3047				 */
3048				cfi->vals[op->dest.reg].base = CFI_CFA;
3049				cfi->vals[op->dest.reg].offset = \
3050					-cfi->stack_size + op->src.offset;
3051
3052				break;
3053			}
3054
3055			if (cfi->drap && op->dest.reg == CFI_SP &&
3056			    op->src.reg == cfi->drap_reg) {
3057
3058				 /* drap: lea disp(%drap), %rsp */
3059				cfa->base = CFI_SP;
3060				cfa->offset = cfi->stack_size = -op->src.offset;
3061				cfi->drap_reg = CFI_UNDEFINED;
3062				cfi->drap = false;
3063				break;
3064			}
3065
3066			if (op->dest.reg == cfi->cfa.base && !(next_insn && next_insn->hint)) {
3067				WARN_INSN(insn, "unsupported stack register modification");
 
3068				return -1;
3069			}
3070
3071			break;
3072
3073		case OP_SRC_AND:
3074			if (op->dest.reg != CFI_SP ||
3075			    (cfi->drap_reg != CFI_UNDEFINED && cfa->base != CFI_SP) ||
3076			    (cfi->drap_reg == CFI_UNDEFINED && cfa->base != CFI_BP)) {
3077				WARN_INSN(insn, "unsupported stack pointer realignment");
 
3078				return -1;
3079			}
3080
3081			if (cfi->drap_reg != CFI_UNDEFINED) {
3082				/* drap: and imm, %rsp */
3083				cfa->base = cfi->drap_reg;
3084				cfa->offset = cfi->stack_size = 0;
3085				cfi->drap = true;
3086			}
3087
3088			/*
3089			 * Older versions of GCC (4.8ish) realign the stack
3090			 * without DRAP, with a frame pointer.
3091			 */
3092
3093			break;
3094
3095		case OP_SRC_POP:
3096		case OP_SRC_POPF:
3097			if (op->dest.reg == CFI_SP && cfa->base == CFI_SP_INDIRECT) {
3098
3099				/* pop %rsp; # restore from a stack swizzle */
3100				cfa->base = CFI_SP;
3101				break;
3102			}
3103
3104			if (!cfi->drap && op->dest.reg == cfa->base) {
3105
3106				/* pop %rbp */
3107				cfa->base = CFI_SP;
3108			}
3109
3110			if (cfi->drap && cfa->base == CFI_BP_INDIRECT &&
3111			    op->dest.reg == cfi->drap_reg &&
3112			    cfi->drap_offset == -cfi->stack_size) {
 
3113
3114				/* drap: pop %drap */
3115				cfa->base = cfi->drap_reg;
3116				cfa->offset = 0;
3117				cfi->drap_offset = -1;
3118
3119			} else if (cfi->stack_size == -regs[op->dest.reg].offset) {
3120
3121				/* pop %reg */
3122				restore_reg(cfi, op->dest.reg);
3123			}
3124
3125			cfi->stack_size -= 8;
3126			if (cfa->base == CFI_SP)
3127				cfa->offset -= 8;
3128
3129			break;
3130
3131		case OP_SRC_REG_INDIRECT:
3132			if (!cfi->drap && op->dest.reg == cfa->base &&
3133			    op->dest.reg == CFI_BP) {
3134
3135				/* mov disp(%rsp), %rbp */
3136				cfa->base = CFI_SP;
3137				cfa->offset = cfi->stack_size;
3138			}
3139
3140			if (cfi->drap && op->src.reg == CFI_BP &&
3141			    op->src.offset == cfi->drap_offset) {
3142
3143				/* drap: mov disp(%rbp), %drap */
3144				cfa->base = cfi->drap_reg;
3145				cfa->offset = 0;
3146				cfi->drap_offset = -1;
3147			}
3148
3149			if (cfi->drap && op->src.reg == CFI_BP &&
3150			    op->src.offset == regs[op->dest.reg].offset) {
3151
3152				/* drap: mov disp(%rbp), %reg */
3153				restore_reg(cfi, op->dest.reg);
3154
3155			} else if (op->src.reg == cfa->base &&
3156			    op->src.offset == regs[op->dest.reg].offset + cfa->offset) {
3157
3158				/* mov disp(%rbp), %reg */
3159				/* mov disp(%rsp), %reg */
3160				restore_reg(cfi, op->dest.reg);
3161
3162			} else if (op->src.reg == CFI_SP &&
3163				   op->src.offset == regs[op->dest.reg].offset + cfi->stack_size) {
3164
3165				/* mov disp(%rsp), %reg */
3166				restore_reg(cfi, op->dest.reg);
3167			}
3168
3169			break;
3170
3171		default:
3172			WARN_INSN(insn, "unknown stack-related instruction");
 
3173			return -1;
3174		}
3175
3176		break;
3177
3178	case OP_DEST_PUSH:
3179	case OP_DEST_PUSHF:
3180		cfi->stack_size += 8;
3181		if (cfa->base == CFI_SP)
3182			cfa->offset += 8;
3183
3184		if (op->src.type != OP_SRC_REG)
3185			break;
3186
3187		if (cfi->drap) {
3188			if (op->src.reg == cfa->base && op->src.reg == cfi->drap_reg) {
3189
3190				/* drap: push %drap */
3191				cfa->base = CFI_BP_INDIRECT;
3192				cfa->offset = -cfi->stack_size;
3193
3194				/* save drap so we know when to restore it */
3195				cfi->drap_offset = -cfi->stack_size;
3196
3197			} else if (op->src.reg == CFI_BP && cfa->base == cfi->drap_reg) {
3198
3199				/* drap: push %rbp */
3200				cfi->stack_size = 0;
3201
3202			} else {
3203
3204				/* drap: push %reg */
3205				save_reg(cfi, op->src.reg, CFI_BP, -cfi->stack_size);
3206			}
3207
3208		} else {
3209
3210			/* push %reg */
3211			save_reg(cfi, op->src.reg, CFI_CFA, -cfi->stack_size);
3212		}
3213
3214		/* detect when asm code uses rbp as a scratch register */
3215		if (opts.stackval && insn_func(insn) && op->src.reg == CFI_BP &&
3216		    cfa->base != CFI_BP)
3217			cfi->bp_scratch = true;
3218		break;
3219
3220	case OP_DEST_REG_INDIRECT:
3221
3222		if (cfi->drap) {
3223			if (op->src.reg == cfa->base && op->src.reg == cfi->drap_reg) {
3224
3225				/* drap: mov %drap, disp(%rbp) */
3226				cfa->base = CFI_BP_INDIRECT;
3227				cfa->offset = op->dest.offset;
3228
3229				/* save drap offset so we know when to restore it */
3230				cfi->drap_offset = op->dest.offset;
3231			} else {
 
 
3232
3233				/* drap: mov reg, disp(%rbp) */
3234				save_reg(cfi, op->src.reg, CFI_BP, op->dest.offset);
3235			}
3236
3237		} else if (op->dest.reg == cfa->base) {
3238
3239			/* mov reg, disp(%rbp) */
3240			/* mov reg, disp(%rsp) */
3241			save_reg(cfi, op->src.reg, CFI_CFA,
3242				 op->dest.offset - cfi->cfa.offset);
 
3243
3244		} else if (op->dest.reg == CFI_SP) {
3245
3246			/* mov reg, disp(%rsp) */
3247			save_reg(cfi, op->src.reg, CFI_CFA,
3248				 op->dest.offset - cfi->stack_size);
 
 
 
 
 
 
3249
3250		} else if (op->src.reg == CFI_SP && op->dest.offset == 0) {
 
3251
3252			/* mov %rsp, (%reg); # setup a stack swizzle. */
3253			cfi->vals[op->dest.reg].base = CFI_SP_INDIRECT;
3254			cfi->vals[op->dest.reg].offset = cfa->offset;
3255		}
3256
3257		break;
3258
3259	case OP_DEST_MEM:
3260		if (op->src.type != OP_SRC_POP && op->src.type != OP_SRC_POPF) {
3261			WARN_INSN(insn, "unknown stack-related memory operation");
 
3262			return -1;
3263		}
3264
3265		/* pop mem */
3266		cfi->stack_size -= 8;
3267		if (cfa->base == CFI_SP)
3268			cfa->offset -= 8;
3269
3270		break;
3271
3272	default:
3273		WARN_INSN(insn, "unknown stack-related instruction");
 
3274		return -1;
3275	}
3276
3277	return 0;
3278}
3279
3280/*
3281 * The stack layouts of alternatives instructions can sometimes diverge when
3282 * they have stack modifications.  That's fine as long as the potential stack
3283 * layouts don't conflict at any given potential instruction boundary.
3284 *
3285 * Flatten the CFIs of the different alternative code streams (both original
3286 * and replacement) into a single shared CFI array which can be used to detect
3287 * conflicts and nicely feed a linear array of ORC entries to the unwinder.
3288 */
3289static int propagate_alt_cfi(struct objtool_file *file, struct instruction *insn)
3290{
3291	struct cfi_state **alt_cfi;
3292	int group_off;
3293
3294	if (!insn->alt_group)
3295		return 0;
3296
3297	if (!insn->cfi) {
3298		WARN("CFI missing");
3299		return -1;
3300	}
3301
3302	alt_cfi = insn->alt_group->cfi;
3303	group_off = insn->offset - insn->alt_group->first_insn->offset;
3304
3305	if (!alt_cfi[group_off]) {
3306		alt_cfi[group_off] = insn->cfi;
3307	} else {
3308		if (cficmp(alt_cfi[group_off], insn->cfi)) {
3309			struct alt_group *orig_group = insn->alt_group->orig_group ?: insn->alt_group;
3310			struct instruction *orig = orig_group->first_insn;
3311			char *where = offstr(insn->sec, insn->offset);
3312			WARN_INSN(orig, "stack layout conflict in alternatives: %s", where);
3313			free(where);
3314			return -1;
3315		}
3316	}
3317
3318	return 0;
3319}
3320
3321static int handle_insn_ops(struct instruction *insn,
3322			   struct instruction *next_insn,
3323			   struct insn_state *state)
3324{
3325	struct stack_op *op;
3326
3327	for (op = insn->stack_ops; op; op = op->next) {
3328
3329		if (update_cfi_state(insn, next_insn, &state->cfi, op))
3330			return 1;
3331
3332		if (!insn->alt_group)
3333			continue;
3334
3335		if (op->dest.type == OP_DEST_PUSHF) {
3336			if (!state->uaccess_stack) {
3337				state->uaccess_stack = 1;
3338			} else if (state->uaccess_stack >> 31) {
3339				WARN_INSN(insn, "PUSHF stack exhausted");
3340				return 1;
3341			}
3342			state->uaccess_stack <<= 1;
3343			state->uaccess_stack  |= state->uaccess;
3344		}
3345
3346		if (op->src.type == OP_SRC_POPF) {
3347			if (state->uaccess_stack) {
3348				state->uaccess = state->uaccess_stack & 1;
3349				state->uaccess_stack >>= 1;
3350				if (state->uaccess_stack == 1)
3351					state->uaccess_stack = 0;
3352			}
3353		}
3354	}
3355
3356	return 0;
3357}
3358
3359static bool insn_cfi_match(struct instruction *insn, struct cfi_state *cfi2)
3360{
3361	struct cfi_state *cfi1 = insn->cfi;
3362	int i;
3363
3364	if (!cfi1) {
3365		WARN("CFI missing");
3366		return false;
3367	}
3368
3369	if (memcmp(&cfi1->cfa, &cfi2->cfa, sizeof(cfi1->cfa))) {
3370
3371		WARN_INSN(insn, "stack state mismatch: cfa1=%d%+d cfa2=%d%+d",
3372			  cfi1->cfa.base, cfi1->cfa.offset,
3373			  cfi2->cfa.base, cfi2->cfa.offset);
3374
3375	} else if (memcmp(&cfi1->regs, &cfi2->regs, sizeof(cfi1->regs))) {
3376		for (i = 0; i < CFI_NUM_REGS; i++) {
3377			if (!memcmp(&cfi1->regs[i], &cfi2->regs[i],
3378				    sizeof(struct cfi_reg)))
3379				continue;
3380
3381			WARN_INSN(insn, "stack state mismatch: reg1[%d]=%d%+d reg2[%d]=%d%+d",
3382				  i, cfi1->regs[i].base, cfi1->regs[i].offset,
3383				  i, cfi2->regs[i].base, cfi2->regs[i].offset);
 
3384			break;
3385		}
3386
3387	} else if (cfi1->type != cfi2->type) {
3388
3389		WARN_INSN(insn, "stack state mismatch: type1=%d type2=%d",
3390			  cfi1->type, cfi2->type);
3391
3392	} else if (cfi1->drap != cfi2->drap ||
3393		   (cfi1->drap && cfi1->drap_reg != cfi2->drap_reg) ||
3394		   (cfi1->drap && cfi1->drap_offset != cfi2->drap_offset)) {
3395
3396		WARN_INSN(insn, "stack state mismatch: drap1=%d(%d,%d) drap2=%d(%d,%d)",
3397			  cfi1->drap, cfi1->drap_reg, cfi1->drap_offset,
3398			  cfi2->drap, cfi2->drap_reg, cfi2->drap_offset);
3399
3400	} else
3401		return true;
3402
3403	return false;
3404}
3405
3406static inline bool func_uaccess_safe(struct symbol *func)
3407{
3408	if (func)
3409		return func->uaccess_safe;
3410
3411	return false;
3412}
3413
3414static inline const char *call_dest_name(struct instruction *insn)
3415{
3416	static char pvname[19];
3417	struct reloc *reloc;
3418	int idx;
3419
3420	if (insn_call_dest(insn))
3421		return insn_call_dest(insn)->name;
3422
3423	reloc = insn_reloc(NULL, insn);
3424	if (reloc && !strcmp(reloc->sym->name, "pv_ops")) {
3425		idx = (reloc_addend(reloc) / sizeof(void *));
3426		snprintf(pvname, sizeof(pvname), "pv_ops[%d]", idx);
3427		return pvname;
3428	}
3429
3430	return "{dynamic}";
3431}
3432
3433static bool pv_call_dest(struct objtool_file *file, struct instruction *insn)
3434{
3435	struct symbol *target;
3436	struct reloc *reloc;
3437	int idx;
3438
3439	reloc = insn_reloc(file, insn);
3440	if (!reloc || strcmp(reloc->sym->name, "pv_ops"))
3441		return false;
3442
3443	idx = (arch_dest_reloc_offset(reloc_addend(reloc)) / sizeof(void *));
3444
3445	if (file->pv_ops[idx].clean)
3446		return true;
3447
3448	file->pv_ops[idx].clean = true;
3449
3450	list_for_each_entry(target, &file->pv_ops[idx].targets, pv_target) {
3451		if (!target->sec->noinstr) {
3452			WARN("pv_ops[%d]: %s", idx, target->name);
3453			file->pv_ops[idx].clean = false;
3454		}
3455	}
3456
3457	return file->pv_ops[idx].clean;
3458}
3459
3460static inline bool noinstr_call_dest(struct objtool_file *file,
3461				     struct instruction *insn,
3462				     struct symbol *func)
3463{
3464	/*
3465	 * We can't deal with indirect function calls at present;
3466	 * assume they're instrumented.
3467	 */
3468	if (!func) {
3469		if (file->pv_ops)
3470			return pv_call_dest(file, insn);
3471
3472		return false;
3473	}
3474
3475	/*
3476	 * If the symbol is from a noinstr section; we good.
3477	 */
3478	if (func->sec->noinstr)
3479		return true;
3480
3481	/*
3482	 * If the symbol is a static_call trampoline, we can't tell.
3483	 */
3484	if (func->static_call_tramp)
3485		return true;
3486
3487	/*
3488	 * The __ubsan_handle_*() calls are like WARN(), they only happen when
3489	 * something 'BAD' happened. At the risk of taking the machine down,
3490	 * let them proceed to get the message out.
3491	 */
3492	if (!strncmp(func->name, "__ubsan_handle_", 15))
3493		return true;
3494
3495	return false;
3496}
3497
3498static int validate_call(struct objtool_file *file,
3499			 struct instruction *insn,
3500			 struct insn_state *state)
3501{
3502	if (state->noinstr && state->instr <= 0 &&
3503	    !noinstr_call_dest(file, insn, insn_call_dest(insn))) {
3504		WARN_INSN(insn, "call to %s() leaves .noinstr.text section", call_dest_name(insn));
3505		return 1;
3506	}
3507
3508	if (state->uaccess && !func_uaccess_safe(insn_call_dest(insn))) {
3509		WARN_INSN(insn, "call to %s() with UACCESS enabled", call_dest_name(insn));
3510		return 1;
3511	}
3512
3513	if (state->df) {
3514		WARN_INSN(insn, "call to %s() with DF set", call_dest_name(insn));
3515		return 1;
3516	}
3517
3518	return 0;
3519}
3520
3521static int validate_sibling_call(struct objtool_file *file,
3522				 struct instruction *insn,
3523				 struct insn_state *state)
3524{
3525	if (insn_func(insn) && has_modified_stack_frame(insn, state)) {
3526		WARN_INSN(insn, "sibling call from callable instruction with modified stack frame");
3527		return 1;
3528	}
3529
3530	return validate_call(file, insn, state);
3531}
3532
3533static int validate_return(struct symbol *func, struct instruction *insn, struct insn_state *state)
3534{
3535	if (state->noinstr && state->instr > 0) {
3536		WARN_INSN(insn, "return with instrumentation enabled");
3537		return 1;
3538	}
3539
3540	if (state->uaccess && !func_uaccess_safe(func)) {
3541		WARN_INSN(insn, "return with UACCESS enabled");
3542		return 1;
3543	}
3544
3545	if (!state->uaccess && func_uaccess_safe(func)) {
3546		WARN_INSN(insn, "return with UACCESS disabled from a UACCESS-safe function");
3547		return 1;
3548	}
3549
3550	if (state->df) {
3551		WARN_INSN(insn, "return with DF set");
3552		return 1;
3553	}
3554
3555	if (func && has_modified_stack_frame(insn, state)) {
3556		WARN_INSN(insn, "return with modified stack frame");
3557		return 1;
3558	}
3559
3560	if (state->cfi.bp_scratch) {
3561		WARN_INSN(insn, "BP used as a scratch register");
3562		return 1;
3563	}
3564
3565	return 0;
3566}
3567
3568static struct instruction *next_insn_to_validate(struct objtool_file *file,
3569						 struct instruction *insn)
3570{
3571	struct alt_group *alt_group = insn->alt_group;
3572
3573	/*
3574	 * Simulate the fact that alternatives are patched in-place.  When the
3575	 * end of a replacement alt_group is reached, redirect objtool flow to
3576	 * the end of the original alt_group.
3577	 *
3578	 * insn->alts->insn -> alt_group->first_insn
3579	 *		       ...
3580	 *		       alt_group->last_insn
3581	 *		       [alt_group->nop]      -> next(orig_group->last_insn)
3582	 */
3583	if (alt_group) {
3584		if (alt_group->nop) {
3585			/* ->nop implies ->orig_group */
3586			if (insn == alt_group->last_insn)
3587				return alt_group->nop;
3588			if (insn == alt_group->nop)
3589				goto next_orig;
3590		}
3591		if (insn == alt_group->last_insn && alt_group->orig_group)
3592			goto next_orig;
3593	}
3594
3595	return next_insn_same_sec(file, insn);
3596
3597next_orig:
3598	return next_insn_same_sec(file, alt_group->orig_group->last_insn);
3599}
3600
3601/*
3602 * Follow the branch starting at the given instruction, and recursively follow
3603 * any other branches (jumps).  Meanwhile, track the frame pointer state at
3604 * each instruction and validate all the rules described in
3605 * tools/objtool/Documentation/objtool.txt.
3606 */
3607static int validate_branch(struct objtool_file *file, struct symbol *func,
3608			   struct instruction *insn, struct insn_state state)
3609{
3610	struct alternative *alt;
3611	struct instruction *next_insn, *prev_insn = NULL;
3612	struct section *sec;
3613	u8 visited;
3614	int ret;
3615
 
3616	sec = insn->sec;
3617
 
 
 
 
 
 
3618	while (1) {
3619		next_insn = next_insn_to_validate(file, insn);
3620
3621		if (func && insn_func(insn) && func != insn_func(insn)->pfunc) {
3622			/* Ignore KCFI type preambles, which always fall through */
3623			if (!strncmp(func->name, "__cfi_", 6) ||
3624			    !strncmp(func->name, "__pfx_", 6))
3625				return 0;
3626
 
3627			WARN("%s() falls through to next function %s()",
3628			     func->name, insn_func(insn)->name);
3629			return 1;
3630		}
3631
 
 
3632		if (func && insn->ignore) {
3633			WARN_INSN(insn, "BUG: why am I validating an ignored function?");
 
3634			return 1;
3635		}
3636
3637		visited = VISITED_BRANCH << state.uaccess;
3638		if (insn->visited & VISITED_BRANCH_MASK) {
3639			if (!insn->hint && !insn_cfi_match(insn, &state.cfi))
3640				return 1;
3641
3642			if (insn->visited & visited)
3643				return 0;
3644		} else {
3645			nr_insns_visited++;
3646		}
3647
3648		if (state.noinstr)
3649			state.instr += insn->instr;
3650
3651		if (insn->hint) {
3652			if (insn->restore) {
3653				struct instruction *save_insn, *i;
3654
3655				i = insn;
3656				save_insn = NULL;
3657
3658				sym_for_each_insn_continue_reverse(file, func, i) {
3659					if (i->save) {
3660						save_insn = i;
3661						break;
3662					}
3663				}
3664
3665				if (!save_insn) {
3666					WARN_INSN(insn, "no corresponding CFI save for CFI restore");
 
3667					return 1;
3668				}
3669
3670				if (!save_insn->visited) {
3671					/*
3672					 * If the restore hint insn is at the
3673					 * beginning of a basic block and was
3674					 * branched to from elsewhere, and the
3675					 * save insn hasn't been visited yet,
3676					 * defer following this branch for now.
3677					 * It will be seen later via the
3678					 * straight-line path.
3679					 */
3680					if (!prev_insn)
3681						return 0;
3682
3683					WARN_INSN(insn, "objtool isn't smart enough to handle this CFI save/restore combo");
 
3684					return 1;
3685				}
3686
3687				insn->cfi = save_insn->cfi;
3688				nr_cfi_reused++;
3689			}
3690
3691			state.cfi = *insn->cfi;
3692		} else {
3693			/* XXX track if we actually changed state.cfi */
3694
3695			if (prev_insn && !cficmp(prev_insn->cfi, &state.cfi)) {
3696				insn->cfi = prev_insn->cfi;
3697				nr_cfi_reused++;
3698			} else {
3699				insn->cfi = cfi_hash_find_or_add(&state.cfi);
3700			}
3701		}
3702
3703		insn->visited |= visited;
3704
3705		if (propagate_alt_cfi(file, insn))
3706			return 1;
3707
3708		if (!insn->ignore_alts && insn->alts) {
3709			bool skip_orig = false;
3710
3711			for (alt = insn->alts; alt; alt = alt->next) {
3712				if (alt->skip_orig)
3713					skip_orig = true;
3714
3715				ret = validate_branch(file, func, alt->insn, state);
3716				if (ret) {
3717					BT_INSN(insn, "(alt)");
3718					return ret;
3719				}
3720			}
3721
3722			if (skip_orig)
3723				return 0;
3724		}
3725
3726		if (handle_insn_ops(insn, next_insn, &state))
3727			return 1;
3728
3729		switch (insn->type) {
3730
3731		case INSN_RETURN:
3732			return validate_return(func, insn, &state);
3733
3734		case INSN_CALL:
3735		case INSN_CALL_DYNAMIC:
3736			ret = validate_call(file, insn, &state);
3737			if (ret)
3738				return ret;
3739
3740			if (opts.stackval && func && !is_special_call(insn) &&
3741			    !has_valid_stack_frame(&state)) {
3742				WARN_INSN(insn, "call without frame pointer save/setup");
3743				return 1;
3744			}
3745
3746			if (insn->dead_end)
 
 
 
 
 
 
 
3747				return 0;
 
 
3748
 
 
 
 
 
 
 
3749			break;
3750
3751		case INSN_JUMP_CONDITIONAL:
3752		case INSN_JUMP_UNCONDITIONAL:
3753			if (is_sibling_call(insn)) {
3754				ret = validate_sibling_call(file, insn, &state);
 
 
 
3755				if (ret)
3756					return ret;
3757
3758			} else if (insn->jump_dest) {
3759				ret = validate_branch(file, func,
3760						      insn->jump_dest, state);
3761				if (ret) {
3762					BT_INSN(insn, "(branch)");
3763					return ret;
3764				}
3765			}
3766
3767			if (insn->type == INSN_JUMP_UNCONDITIONAL)
3768				return 0;
3769
3770			break;
3771
3772		case INSN_JUMP_DYNAMIC:
3773		case INSN_JUMP_DYNAMIC_CONDITIONAL:
3774			if (is_sibling_call(insn)) {
3775				ret = validate_sibling_call(file, insn, &state);
3776				if (ret)
3777					return ret;
3778			}
3779
3780			if (insn->type == INSN_JUMP_DYNAMIC)
3781				return 0;
3782
3783			break;
3784
3785		case INSN_CONTEXT_SWITCH:
3786			if (func) {
3787				if (!next_insn || !next_insn->hint) {
3788					WARN_INSN(insn, "unsupported instruction in callable function");
3789					return 1;
3790				}
3791				break;
3792			}
3793			return 0;
3794
3795		case INSN_STAC:
3796			if (state.uaccess) {
3797				WARN_INSN(insn, "recursive UACCESS enable");
3798				return 1;
3799			}
3800
3801			state.uaccess = true;
3802			break;
3803
3804		case INSN_CLAC:
3805			if (!state.uaccess && func) {
3806				WARN_INSN(insn, "redundant UACCESS disable");
3807				return 1;
3808			}
3809
3810			if (func_uaccess_safe(func) && !state.uaccess_stack) {
3811				WARN_INSN(insn, "UACCESS-safe disables UACCESS");
3812				return 1;
3813			}
3814
3815			state.uaccess = false;
3816			break;
3817
3818		case INSN_STD:
3819			if (state.df) {
3820				WARN_INSN(insn, "recursive STD");
3821				return 1;
3822			}
3823
3824			state.df = true;
3825			break;
3826
3827		case INSN_CLD:
3828			if (!state.df && func) {
3829				WARN_INSN(insn, "redundant CLD");
3830				return 1;
3831			}
3832
3833			state.df = false;
3834			break;
3835
3836		default:
3837			break;
3838		}
3839
3840		if (insn->dead_end)
3841			return 0;
3842
3843		if (!next_insn) {
3844			if (state.cfi.cfa.base == CFI_UNDEFINED)
3845				return 0;
3846			WARN("%s: unexpected end of section", sec->name);
3847			return 1;
3848		}
3849
3850		prev_insn = insn;
3851		insn = next_insn;
3852	}
3853
3854	return 0;
3855}
3856
3857static int validate_unwind_hint(struct objtool_file *file,
3858				  struct instruction *insn,
3859				  struct insn_state *state)
3860{
3861	if (insn->hint && !insn->visited && !insn->ignore) {
3862		int ret = validate_branch(file, insn_func(insn), insn, *state);
3863		if (ret)
3864			BT_INSN(insn, "<=== (hint)");
3865		return ret;
3866	}
3867
3868	return 0;
3869}
3870
3871static int validate_unwind_hints(struct objtool_file *file, struct section *sec)
3872{
3873	struct instruction *insn;
 
3874	struct insn_state state;
3875	int warnings = 0;
3876
3877	if (!file->hints)
3878		return 0;
3879
3880	init_insn_state(file, &state, sec);
3881
3882	if (sec) {
3883		sec_for_each_insn(file, sec, insn)
3884			warnings += validate_unwind_hint(file, insn, &state);
3885	} else {
3886		for_each_insn(file, insn)
3887			warnings += validate_unwind_hint(file, insn, &state);
3888	}
3889
3890	return warnings;
3891}
3892
3893/*
3894 * Validate rethunk entry constraint: must untrain RET before the first RET.
3895 *
3896 * Follow every branch (intra-function) and ensure VALIDATE_UNRET_END comes
3897 * before an actual RET instruction.
3898 */
3899static int validate_unret(struct objtool_file *file, struct instruction *insn)
3900{
3901	struct instruction *next, *dest;
3902	int ret;
3903
3904	for (;;) {
3905		next = next_insn_to_validate(file, insn);
3906
3907		if (insn->visited & VISITED_UNRET)
3908			return 0;
3909
3910		insn->visited |= VISITED_UNRET;
3911
3912		if (!insn->ignore_alts && insn->alts) {
3913			struct alternative *alt;
3914			bool skip_orig = false;
3915
3916			for (alt = insn->alts; alt; alt = alt->next) {
3917				if (alt->skip_orig)
3918					skip_orig = true;
3919
3920				ret = validate_unret(file, alt->insn);
3921				if (ret) {
3922					BT_INSN(insn, "(alt)");
3923					return ret;
3924				}
3925			}
3926
3927			if (skip_orig)
3928				return 0;
3929		}
3930
3931		switch (insn->type) {
3932
3933		case INSN_CALL_DYNAMIC:
3934		case INSN_JUMP_DYNAMIC:
3935		case INSN_JUMP_DYNAMIC_CONDITIONAL:
3936			WARN_INSN(insn, "early indirect call");
3937			return 1;
3938
3939		case INSN_JUMP_UNCONDITIONAL:
3940		case INSN_JUMP_CONDITIONAL:
3941			if (!is_sibling_call(insn)) {
3942				if (!insn->jump_dest) {
3943					WARN_INSN(insn, "unresolved jump target after linking?!?");
3944					return -1;
3945				}
3946				ret = validate_unret(file, insn->jump_dest);
3947				if (ret) {
3948					BT_INSN(insn, "(branch%s)",
3949						insn->type == INSN_JUMP_CONDITIONAL ? "-cond" : "");
3950					return ret;
3951				}
3952
3953				if (insn->type == INSN_JUMP_UNCONDITIONAL)
3954					return 0;
3955
3956				break;
3957			}
3958
3959			/* fallthrough */
3960		case INSN_CALL:
3961			dest = find_insn(file, insn_call_dest(insn)->sec,
3962					 insn_call_dest(insn)->offset);
3963			if (!dest) {
3964				WARN("Unresolved function after linking!?: %s",
3965				     insn_call_dest(insn)->name);
3966				return -1;
3967			}
3968
3969			ret = validate_unret(file, dest);
3970			if (ret) {
3971				BT_INSN(insn, "(call)");
3972				return ret;
3973			}
3974			/*
3975			 * If a call returns without error, it must have seen UNTRAIN_RET.
3976			 * Therefore any non-error return is a success.
3977			 */
3978			return 0;
3979
3980		case INSN_RETURN:
3981			WARN_INSN(insn, "RET before UNTRAIN");
3982			return 1;
3983
3984		case INSN_NOP:
3985			if (insn->retpoline_safe)
3986				return 0;
3987			break;
3988
3989		default:
3990			break;
3991		}
3992
3993		if (!next) {
3994			WARN_INSN(insn, "teh end!");
3995			return -1;
3996		}
3997		insn = next;
3998	}
3999
4000	return 0;
4001}
4002
4003/*
4004 * Validate that all branches starting at VALIDATE_UNRET_BEGIN encounter
4005 * VALIDATE_UNRET_END before RET.
4006 */
4007static int validate_unrets(struct objtool_file *file)
4008{
4009	struct instruction *insn;
4010	int ret, warnings = 0;
4011
4012	for_each_insn(file, insn) {
4013		if (!insn->unret)
4014			continue;
4015
4016		ret = validate_unret(file, insn);
4017		if (ret < 0) {
4018			WARN_INSN(insn, "Failed UNRET validation");
4019			return ret;
4020		}
4021		warnings += ret;
4022	}
4023
4024	return warnings;
4025}
4026
4027static int validate_retpoline(struct objtool_file *file)
4028{
4029	struct instruction *insn;
4030	int warnings = 0;
4031
4032	for_each_insn(file, insn) {
4033		if (insn->type != INSN_JUMP_DYNAMIC &&
4034		    insn->type != INSN_CALL_DYNAMIC &&
4035		    insn->type != INSN_RETURN)
4036			continue;
4037
4038		if (insn->retpoline_safe)
4039			continue;
4040
4041		if (insn->sec->init)
 
 
 
 
 
 
4042			continue;
4043
4044		if (insn->type == INSN_RETURN) {
4045			if (opts.rethunk) {
4046				WARN_INSN(insn, "'naked' return found in MITIGATION_RETHUNK build");
4047			} else
4048				continue;
4049		} else {
4050			WARN_INSN(insn, "indirect %s found in MITIGATION_RETPOLINE build",
4051				  insn->type == INSN_JUMP_DYNAMIC ? "jump" : "call");
4052		}
4053
4054		warnings++;
4055	}
4056
4057	return warnings;
4058}
4059
4060static bool is_kasan_insn(struct instruction *insn)
4061{
4062	return (insn->type == INSN_CALL &&
4063		!strcmp(insn_call_dest(insn)->name, "__asan_handle_no_return"));
4064}
4065
4066static bool is_ubsan_insn(struct instruction *insn)
4067{
4068	return (insn->type == INSN_CALL &&
4069		!strcmp(insn_call_dest(insn)->name,
4070			"__ubsan_handle_builtin_unreachable"));
4071}
4072
4073static bool ignore_unreachable_insn(struct objtool_file *file, struct instruction *insn)
4074{
4075	int i;
4076	struct instruction *prev_insn;
4077
4078	if (insn->ignore || insn->type == INSN_NOP || insn->type == INSN_TRAP)
4079		return true;
4080
4081	/*
4082	 * Ignore alternative replacement instructions.  This can happen
 
 
 
4083	 * when a whitelisted function uses one of the ALTERNATIVE macros.
4084	 */
4085	if (!strcmp(insn->sec->name, ".altinstr_replacement") ||
 
4086	    !strcmp(insn->sec->name, ".altinstr_aux"))
4087		return true;
4088
4089	/*
4090	 * Whole archive runs might encounter dead code from weak symbols.
4091	 * This is where the linker will have dropped the weak symbol in
4092	 * favour of a regular symbol, but leaves the code in place.
4093	 *
4094	 * In this case we'll find a piece of code (whole function) that is not
4095	 * covered by a !section symbol. Ignore them.
4096	 */
4097	if (opts.link && !insn_func(insn)) {
4098		int size = find_symbol_hole_containing(insn->sec, insn->offset);
4099		unsigned long end = insn->offset + size;
4100
4101		if (!size) /* not a hole */
4102			return false;
4103
4104		if (size < 0) /* hole until the end */
4105			return true;
4106
4107		sec_for_each_insn_continue(file, insn) {
4108			/*
4109			 * If we reach a visited instruction at or before the
4110			 * end of the hole, ignore the unreachable.
4111			 */
4112			if (insn->visited)
4113				return true;
4114
4115			if (insn->offset >= end)
4116				break;
4117
4118			/*
4119			 * If this hole jumps to a .cold function, mark it ignore too.
4120			 */
4121			if (insn->jump_dest && insn_func(insn->jump_dest) &&
4122			    strstr(insn_func(insn->jump_dest)->name, ".cold")) {
4123				struct instruction *dest = insn->jump_dest;
4124				func_for_each_insn(file, insn_func(dest), dest)
4125					dest->ignore = true;
4126			}
4127		}
4128
4129		return false;
4130	}
4131
4132	if (!insn_func(insn))
4133		return false;
4134
4135	if (insn_func(insn)->static_call_tramp)
4136		return true;
4137
4138	/*
4139	 * CONFIG_UBSAN_TRAP inserts a UD2 when it sees
4140	 * __builtin_unreachable().  The BUG() macro has an unreachable() after
4141	 * the UD2, which causes GCC's undefined trap logic to emit another UD2
4142	 * (or occasionally a JMP to UD2).
4143	 *
4144	 * It may also insert a UD2 after calling a __noreturn function.
4145	 */
4146	prev_insn = prev_insn_same_sec(file, insn);
4147	if (prev_insn->dead_end &&
4148	    (insn->type == INSN_BUG ||
4149	     (insn->type == INSN_JUMP_UNCONDITIONAL &&
4150	      insn->jump_dest && insn->jump_dest->type == INSN_BUG)))
4151		return true;
4152
4153	/*
4154	 * Check if this (or a subsequent) instruction is related to
4155	 * CONFIG_UBSAN or CONFIG_KASAN.
4156	 *
4157	 * End the search at 5 instructions to avoid going into the weeds.
4158	 */
 
 
4159	for (i = 0; i < 5; i++) {
4160
4161		if (is_kasan_insn(insn) || is_ubsan_insn(insn))
4162			return true;
4163
4164		if (insn->type == INSN_JUMP_UNCONDITIONAL) {
4165			if (insn->jump_dest &&
4166			    insn_func(insn->jump_dest) == insn_func(insn)) {
4167				insn = insn->jump_dest;
4168				continue;
4169			}
4170
4171			break;
4172		}
4173
4174		if (insn->offset + insn->len >= insn_func(insn)->offset + insn_func(insn)->len)
4175			break;
4176
4177		insn = next_insn_same_sec(file, insn);
4178	}
4179
4180	return false;
4181}
4182
4183static int add_prefix_symbol(struct objtool_file *file, struct symbol *func)
4184{
4185	struct instruction *insn, *prev;
4186	struct cfi_state *cfi;
4187
4188	insn = find_insn(file, func->sec, func->offset);
4189	if (!insn)
4190		return -1;
4191
4192	for (prev = prev_insn_same_sec(file, insn);
4193	     prev;
4194	     prev = prev_insn_same_sec(file, prev)) {
4195		u64 offset;
4196
4197		if (prev->type != INSN_NOP)
4198			return -1;
4199
4200		offset = func->offset - prev->offset;
4201
4202		if (offset > opts.prefix)
4203			return -1;
4204
4205		if (offset < opts.prefix)
4206			continue;
4207
4208		elf_create_prefix_symbol(file->elf, func, opts.prefix);
4209		break;
4210	}
4211
4212	if (!prev)
4213		return -1;
4214
4215	if (!insn->cfi) {
4216		/*
4217		 * This can happen if stack validation isn't enabled or the
4218		 * function is annotated with STACK_FRAME_NON_STANDARD.
4219		 */
4220		return 0;
4221	}
4222
4223	/* Propagate insn->cfi to the prefix code */
4224	cfi = cfi_hash_find_or_add(insn->cfi);
4225	for (; prev != insn; prev = next_insn_same_sec(file, prev))
4226		prev->cfi = cfi;
4227
4228	return 0;
4229}
4230
4231static int add_prefix_symbols(struct objtool_file *file)
4232{
4233	struct section *sec;
4234	struct symbol *func;
4235
4236	for_each_sec(file, sec) {
4237		if (!(sec->sh.sh_flags & SHF_EXECINSTR))
4238			continue;
4239
4240		sec_for_each_sym(sec, func) {
4241			if (func->type != STT_FUNC)
4242				continue;
4243
4244			add_prefix_symbol(file, func);
4245		}
4246	}
4247
4248	return 0;
4249}
4250
4251static int validate_symbol(struct objtool_file *file, struct section *sec,
4252			   struct symbol *sym, struct insn_state *state)
4253{
4254	struct instruction *insn;
4255	int ret;
4256
4257	if (!sym->len) {
4258		WARN("%s() is missing an ELF size annotation", sym->name);
4259		return 1;
4260	}
4261
4262	if (sym->pfunc != sym || sym->alias != sym)
4263		return 0;
4264
4265	insn = find_insn(file, sec, sym->offset);
4266	if (!insn || insn->ignore || insn->visited)
4267		return 0;
4268
4269	state->uaccess = sym->uaccess_safe;
4270
4271	ret = validate_branch(file, insn_func(insn), insn, *state);
4272	if (ret)
4273		BT_INSN(insn, "<=== (sym)");
4274	return ret;
4275}
4276
4277static int validate_section(struct objtool_file *file, struct section *sec)
4278{
4279	struct insn_state state;
4280	struct symbol *func;
4281	int warnings = 0;
4282
4283	sec_for_each_sym(sec, func) {
4284		if (func->type != STT_FUNC)
4285			continue;
4286
4287		init_insn_state(file, &state, sec);
4288		set_func_state(&state.cfi);
4289
4290		warnings += validate_symbol(file, sec, func, &state);
4291	}
4292
4293	return warnings;
4294}
4295
4296static int validate_noinstr_sections(struct objtool_file *file)
4297{
4298	struct section *sec;
4299	int warnings = 0;
4300
4301	sec = find_section_by_name(file->elf, ".noinstr.text");
4302	if (sec) {
4303		warnings += validate_section(file, sec);
4304		warnings += validate_unwind_hints(file, sec);
4305	}
4306
4307	sec = find_section_by_name(file->elf, ".entry.text");
4308	if (sec) {
4309		warnings += validate_section(file, sec);
4310		warnings += validate_unwind_hints(file, sec);
4311	}
4312
4313	sec = find_section_by_name(file->elf, ".cpuidle.text");
4314	if (sec) {
4315		warnings += validate_section(file, sec);
4316		warnings += validate_unwind_hints(file, sec);
4317	}
4318
4319	return warnings;
4320}
4321
4322static int validate_functions(struct objtool_file *file)
4323{
4324	struct section *sec;
4325	int warnings = 0;
4326
4327	for_each_sec(file, sec) {
4328		if (!(sec->sh.sh_flags & SHF_EXECINSTR))
4329			continue;
 
4330
4331		warnings += validate_section(file, sec);
4332	}
 
4333
4334	return warnings;
4335}
4336
4337static void mark_endbr_used(struct instruction *insn)
4338{
4339	if (!list_empty(&insn->call_node))
4340		list_del_init(&insn->call_node);
4341}
4342
4343static bool noendbr_range(struct objtool_file *file, struct instruction *insn)
4344{
4345	struct symbol *sym = find_symbol_containing(insn->sec, insn->offset-1);
4346	struct instruction *first;
4347
4348	if (!sym)
4349		return false;
4350
4351	first = find_insn(file, sym->sec, sym->offset);
4352	if (!first)
4353		return false;
4354
4355	if (first->type != INSN_ENDBR && !first->noendbr)
4356		return false;
4357
4358	return insn->offset == sym->offset + sym->len;
4359}
4360
4361static int __validate_ibt_insn(struct objtool_file *file, struct instruction *insn,
4362			       struct instruction *dest)
4363{
4364	if (dest->type == INSN_ENDBR) {
4365		mark_endbr_used(dest);
4366		return 0;
4367	}
4368
4369	if (insn_func(dest) && insn_func(insn) &&
4370	    insn_func(dest)->pfunc == insn_func(insn)->pfunc) {
4371		/*
4372		 * Anything from->to self is either _THIS_IP_ or
4373		 * IRET-to-self.
4374		 *
4375		 * There is no sane way to annotate _THIS_IP_ since the
4376		 * compiler treats the relocation as a constant and is
4377		 * happy to fold in offsets, skewing any annotation we
4378		 * do, leading to vast amounts of false-positives.
4379		 *
4380		 * There's also compiler generated _THIS_IP_ through
4381		 * KCOV and such which we have no hope of annotating.
4382		 *
4383		 * As such, blanket accept self-references without
4384		 * issue.
4385		 */
4386		return 0;
4387	}
4388
4389	/*
4390	 * Accept anything ANNOTATE_NOENDBR.
4391	 */
4392	if (dest->noendbr)
4393		return 0;
4394
4395	/*
4396	 * Accept if this is the instruction after a symbol
4397	 * that is (no)endbr -- typical code-range usage.
4398	 */
4399	if (noendbr_range(file, dest))
4400		return 0;
4401
4402	WARN_INSN(insn, "relocation to !ENDBR: %s", offstr(dest->sec, dest->offset));
4403	return 1;
4404}
4405
4406static int validate_ibt_insn(struct objtool_file *file, struct instruction *insn)
4407{
4408	struct instruction *dest;
4409	struct reloc *reloc;
4410	unsigned long off;
4411	int warnings = 0;
4412
4413	/*
4414	 * Looking for function pointer load relocations.  Ignore
4415	 * direct/indirect branches:
4416	 */
4417	switch (insn->type) {
4418
4419	case INSN_CALL:
4420	case INSN_CALL_DYNAMIC:
4421	case INSN_JUMP_CONDITIONAL:
4422	case INSN_JUMP_UNCONDITIONAL:
4423	case INSN_JUMP_DYNAMIC:
4424	case INSN_JUMP_DYNAMIC_CONDITIONAL:
4425	case INSN_RETURN:
4426	case INSN_NOP:
4427		return 0;
4428
4429	case INSN_LEA_RIP:
4430		if (!insn_reloc(file, insn)) {
4431			/* local function pointer reference without reloc */
4432
4433			off = arch_jump_destination(insn);
4434
4435			dest = find_insn(file, insn->sec, off);
4436			if (!dest) {
4437				WARN_INSN(insn, "corrupt function pointer reference");
4438				return 1;
4439			}
4440
4441			return __validate_ibt_insn(file, insn, dest);
4442		}
4443		break;
4444
4445	default:
4446		break;
4447	}
4448
4449	for (reloc = insn_reloc(file, insn);
4450	     reloc;
4451	     reloc = find_reloc_by_dest_range(file->elf, insn->sec,
4452					      reloc_offset(reloc) + 1,
4453					      (insn->offset + insn->len) - (reloc_offset(reloc) + 1))) {
4454
4455		off = reloc->sym->offset;
4456		if (reloc_type(reloc) == R_X86_64_PC32 ||
4457		    reloc_type(reloc) == R_X86_64_PLT32)
4458			off += arch_dest_reloc_offset(reloc_addend(reloc));
4459		else
4460			off += reloc_addend(reloc);
4461
4462		dest = find_insn(file, reloc->sym->sec, off);
4463		if (!dest)
4464			continue;
4465
4466		warnings += __validate_ibt_insn(file, insn, dest);
4467	}
4468
4469	return warnings;
4470}
4471
4472static int validate_ibt_data_reloc(struct objtool_file *file,
4473				   struct reloc *reloc)
4474{
4475	struct instruction *dest;
4476
4477	dest = find_insn(file, reloc->sym->sec,
4478			 reloc->sym->offset + reloc_addend(reloc));
4479	if (!dest)
4480		return 0;
4481
4482	if (dest->type == INSN_ENDBR) {
4483		mark_endbr_used(dest);
4484		return 0;
4485	}
4486
4487	if (dest->noendbr)
4488		return 0;
4489
4490	WARN_FUNC("data relocation to !ENDBR: %s",
4491		  reloc->sec->base, reloc_offset(reloc),
4492		  offstr(dest->sec, dest->offset));
4493
4494	return 1;
4495}
4496
4497/*
4498 * Validate IBT rules and remove used ENDBR instructions from the seal list.
4499 * Unused ENDBR instructions will be annotated for sealing (i.e., replaced with
4500 * NOPs) later, in create_ibt_endbr_seal_sections().
4501 */
4502static int validate_ibt(struct objtool_file *file)
4503{
4504	struct section *sec;
4505	struct reloc *reloc;
4506	struct instruction *insn;
4507	int warnings = 0;
4508
4509	for_each_insn(file, insn)
4510		warnings += validate_ibt_insn(file, insn);
4511
4512	for_each_sec(file, sec) {
4513
4514		/* Already done by validate_ibt_insn() */
4515		if (sec->sh.sh_flags & SHF_EXECINSTR)
4516			continue;
4517
4518		if (!sec->rsec)
4519			continue;
4520
4521		/*
4522		 * These sections can reference text addresses, but not with
4523		 * the intent to indirect branch to them.
4524		 */
4525		if ((!strncmp(sec->name, ".discard", 8) &&
4526		     strcmp(sec->name, ".discard.ibt_endbr_noseal"))	||
4527		    !strncmp(sec->name, ".debug", 6)			||
4528		    !strcmp(sec->name, ".altinstructions")		||
4529		    !strcmp(sec->name, ".ibt_endbr_seal")		||
4530		    !strcmp(sec->name, ".orc_unwind_ip")		||
4531		    !strcmp(sec->name, ".parainstructions")		||
4532		    !strcmp(sec->name, ".retpoline_sites")		||
4533		    !strcmp(sec->name, ".smp_locks")			||
4534		    !strcmp(sec->name, ".static_call_sites")		||
4535		    !strcmp(sec->name, "_error_injection_whitelist")	||
4536		    !strcmp(sec->name, "_kprobe_blacklist")		||
4537		    !strcmp(sec->name, "__bug_table")			||
4538		    !strcmp(sec->name, "__ex_table")			||
4539		    !strcmp(sec->name, "__jump_table")			||
4540		    !strcmp(sec->name, "__mcount_loc")			||
4541		    !strcmp(sec->name, ".kcfi_traps")			||
4542		    !strcmp(sec->name, ".llvm.call-graph-profile")	||
4543		    !strcmp(sec->name, ".llvm_bb_addr_map")		||
4544		    !strcmp(sec->name, "__tracepoints")			||
4545		    strstr(sec->name, "__patchable_function_entries"))
4546			continue;
4547
4548		for_each_reloc(sec->rsec, reloc)
4549			warnings += validate_ibt_data_reloc(file, reloc);
4550	}
4551
4552	return warnings;
4553}
4554
4555static int validate_sls(struct objtool_file *file)
4556{
4557	struct instruction *insn, *next_insn;
4558	int warnings = 0;
4559
4560	for_each_insn(file, insn) {
4561		next_insn = next_insn_same_sec(file, insn);
4562
4563		if (insn->retpoline_safe)
4564			continue;
4565
4566		switch (insn->type) {
4567		case INSN_RETURN:
4568			if (!next_insn || next_insn->type != INSN_TRAP) {
4569				WARN_INSN(insn, "missing int3 after ret");
4570				warnings++;
4571			}
4572
4573			break;
4574		case INSN_JUMP_DYNAMIC:
4575			if (!next_insn || next_insn->type != INSN_TRAP) {
4576				WARN_INSN(insn, "missing int3 after indirect jump");
4577				warnings++;
4578			}
4579			break;
4580		default:
4581			break;
4582		}
4583	}
4584
4585	return warnings;
4586}
4587
4588static bool ignore_noreturn_call(struct instruction *insn)
4589{
4590	struct symbol *call_dest = insn_call_dest(insn);
4591
4592	/*
4593	 * FIXME: hack, we need a real noreturn solution
4594	 *
4595	 * Problem is, exc_double_fault() may or may not return, depending on
4596	 * whether CONFIG_X86_ESPFIX64 is set.  But objtool has no visibility
4597	 * to the kernel config.
4598	 *
4599	 * Other potential ways to fix it:
4600	 *
4601	 *   - have compiler communicate __noreturn functions somehow
4602	 *   - remove CONFIG_X86_ESPFIX64
4603	 *   - read the .config file
4604	 *   - add a cmdline option
4605	 *   - create a generic objtool annotation format (vs a bunch of custom
4606	 *     formats) and annotate it
4607	 */
4608	if (!strcmp(call_dest->name, "exc_double_fault")) {
4609		/* prevent further unreachable warnings for the caller */
4610		insn->sym->warned = 1;
4611		return true;
4612	}
4613
4614	return false;
4615}
4616
4617static int validate_reachable_instructions(struct objtool_file *file)
4618{
4619	struct instruction *insn, *prev_insn;
4620	struct symbol *call_dest;
4621	int warnings = 0;
4622
4623	if (file->ignore_unreachables)
4624		return 0;
4625
4626	for_each_insn(file, insn) {
4627		if (insn->visited || ignore_unreachable_insn(file, insn))
4628			continue;
4629
4630		prev_insn = prev_insn_same_sec(file, insn);
4631		if (prev_insn && prev_insn->dead_end) {
4632			call_dest = insn_call_dest(prev_insn);
4633			if (call_dest && !ignore_noreturn_call(prev_insn)) {
4634				WARN_INSN(insn, "%s() is missing a __noreturn annotation",
4635					  call_dest->name);
4636				warnings++;
4637				continue;
4638			}
4639		}
4640
4641		WARN_INSN(insn, "unreachable instruction");
4642		warnings++;
4643	}
4644
4645	return warnings;
4646}
4647
4648/* 'funcs' is a space-separated list of function names */
4649static int disas_funcs(const char *funcs)
4650{
4651	const char *objdump_str, *cross_compile;
4652	int size, ret;
4653	char *cmd;
4654
4655	cross_compile = getenv("CROSS_COMPILE");
4656
4657	objdump_str = "%sobjdump -wdr %s | gawk -M -v _funcs='%s' '"
4658			"BEGIN { split(_funcs, funcs); }"
4659			"/^$/ { func_match = 0; }"
4660			"/<.*>:/ { "
4661				"f = gensub(/.*<(.*)>:/, \"\\\\1\", 1);"
4662				"for (i in funcs) {"
4663					"if (funcs[i] == f) {"
4664						"func_match = 1;"
4665						"base = strtonum(\"0x\" $1);"
4666						"break;"
4667					"}"
4668				"}"
4669			"}"
4670			"{"
4671				"if (func_match) {"
4672					"addr = strtonum(\"0x\" $1);"
4673					"printf(\"%%04x \", addr - base);"
4674					"print;"
4675				"}"
4676			"}' 1>&2";
4677
4678	/* fake snprintf() to calculate the size */
4679	size = snprintf(NULL, 0, objdump_str, cross_compile, objname, funcs) + 1;
4680	if (size <= 0) {
4681		WARN("objdump string size calculation failed");
4682		return -1;
4683	}
4684
4685	cmd = malloc(size);
4686
4687	/* real snprintf() */
4688	snprintf(cmd, size, objdump_str, cross_compile, objname, funcs);
4689	ret = system(cmd);
4690	if (ret) {
4691		WARN("disassembly failed: %d", ret);
4692		return -1;
4693	}
4694
4695	return 0;
4696}
4697
4698static int disas_warned_funcs(struct objtool_file *file)
4699{
4700	struct symbol *sym;
4701	char *funcs = NULL, *tmp;
4702
4703	for_each_sym(file, sym) {
4704		if (sym->warned) {
4705			if (!funcs) {
4706				funcs = malloc(strlen(sym->name) + 1);
4707				strcpy(funcs, sym->name);
4708			} else {
4709				tmp = malloc(strlen(funcs) + strlen(sym->name) + 2);
4710				sprintf(tmp, "%s %s", funcs, sym->name);
4711				free(funcs);
4712				funcs = tmp;
4713			}
4714		}
 
 
 
4715	}
4716
4717	if (funcs)
4718		disas_funcs(funcs);
4719
4720	return 0;
4721}
4722
4723struct insn_chunk {
4724	void *addr;
4725	struct insn_chunk *next;
4726};
4727
4728/*
4729 * Reduce peak RSS usage by freeing insns memory before writing the ELF file,
4730 * which can trigger more allocations for .debug_* sections whose data hasn't
4731 * been read yet.
4732 */
4733static void free_insns(struct objtool_file *file)
4734{
4735	struct instruction *insn;
4736	struct insn_chunk *chunks = NULL, *chunk;
4737
4738	for_each_insn(file, insn) {
4739		if (!insn->idx) {
4740			chunk = malloc(sizeof(*chunk));
4741			chunk->addr = insn;
4742			chunk->next = chunks;
4743			chunks = chunk;
4744		}
4745	}
4746
4747	for (chunk = chunks; chunk; chunk = chunk->next)
4748		free(chunk->addr);
4749}
4750
4751int check(struct objtool_file *file)
4752{
4753	int ret, warnings = 0;
 
 
 
 
4754
4755	arch_initial_func_cfi_state(&initial_func_cfi);
4756	init_cfi_state(&init_cfi);
4757	init_cfi_state(&func_cfi);
4758	set_func_state(&func_cfi);
4759	init_cfi_state(&force_undefined_cfi);
4760	force_undefined_cfi.force_undefined = true;
4761
4762	if (!cfi_hash_alloc(1UL << (file->elf->symbol_bits - 3)))
4763		goto out;
4764
4765	cfi_hash_add(&init_cfi);
4766	cfi_hash_add(&func_cfi);
4767
4768	ret = decode_sections(file);
4769	if (ret < 0)
4770		goto out;
4771
4772	warnings += ret;
4773
4774	if (!nr_insns)
4775		goto out;
4776
4777	if (opts.retpoline) {
4778		ret = validate_retpoline(file);
4779		if (ret < 0)
4780			return ret;
4781		warnings += ret;
4782	}
4783
4784	if (opts.stackval || opts.orc || opts.uaccess) {
4785		ret = validate_functions(file);
4786		if (ret < 0)
4787			goto out;
4788		warnings += ret;
4789
4790		ret = validate_unwind_hints(file, NULL);
4791		if (ret < 0)
4792			goto out;
4793		warnings += ret;
4794
4795		if (!warnings) {
4796			ret = validate_reachable_instructions(file);
4797			if (ret < 0)
4798				goto out;
4799			warnings += ret;
4800		}
4801
4802	} else if (opts.noinstr) {
4803		ret = validate_noinstr_sections(file);
4804		if (ret < 0)
4805			goto out;
4806		warnings += ret;
4807	}
4808
4809	if (opts.unret) {
4810		/*
4811		 * Must be after validate_branch() and friends, it plays
4812		 * further games with insn->visited.
4813		 */
4814		ret = validate_unrets(file);
4815		if (ret < 0)
4816			return ret;
4817		warnings += ret;
4818	}
4819
4820	if (opts.ibt) {
4821		ret = validate_ibt(file);
4822		if (ret < 0)
4823			goto out;
4824		warnings += ret;
4825	}
4826
4827	if (opts.sls) {
4828		ret = validate_sls(file);
4829		if (ret < 0)
4830			goto out;
4831		warnings += ret;
4832	}
4833
4834	if (opts.static_call) {
4835		ret = create_static_call_sections(file);
4836		if (ret < 0)
4837			goto out;
4838		warnings += ret;
4839	}
4840
4841	if (opts.retpoline) {
4842		ret = create_retpoline_sites_sections(file);
4843		if (ret < 0)
4844			goto out;
4845		warnings += ret;
4846	}
4847
4848	if (opts.cfi) {
4849		ret = create_cfi_sections(file);
4850		if (ret < 0)
4851			goto out;
4852		warnings += ret;
4853	}
4854
4855	if (opts.rethunk) {
4856		ret = create_return_sites_sections(file);
4857		if (ret < 0)
4858			goto out;
4859		warnings += ret;
4860
4861		if (opts.hack_skylake) {
4862			ret = create_direct_call_sections(file);
4863			if (ret < 0)
4864				goto out;
4865			warnings += ret;
4866		}
4867	}
4868
4869	if (opts.mcount) {
4870		ret = create_mcount_loc_sections(file);
4871		if (ret < 0)
4872			goto out;
4873		warnings += ret;
4874	}
4875
4876	if (opts.prefix) {
4877		ret = add_prefix_symbols(file);
4878		if (ret < 0)
4879			return ret;
4880		warnings += ret;
4881	}
4882
4883	if (opts.ibt) {
4884		ret = create_ibt_endbr_seal_sections(file);
4885		if (ret < 0)
4886			goto out;
4887		warnings += ret;
4888	}
4889
4890	if (opts.orc && nr_insns) {
4891		ret = orc_create(file);
4892		if (ret < 0)
4893			goto out;
4894		warnings += ret;
4895	}
4896
4897	free_insns(file);
4898
4899	if (opts.verbose)
4900		disas_warned_funcs(file);
4901
4902	if (opts.stats) {
4903		printf("nr_insns_visited: %ld\n", nr_insns_visited);
4904		printf("nr_cfi: %ld\n", nr_cfi);
4905		printf("nr_cfi_reused: %ld\n", nr_cfi_reused);
4906		printf("nr_cfi_cache: %ld\n", nr_cfi_cache);
4907	}
4908
4909out:
4910	/*
4911	 *  For now, don't fail the kernel build on fatal warnings.  These
4912	 *  errors are still fairly common due to the growing matrix of
4913	 *  supported toolchains and their recent pace of change.
4914	 */
4915	return 0;
4916}