srcline.c 11.1 KB
Newer Older
1
#include <inttypes.h>
2 3 4 5 6 7
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include <linux/kernel.h>

8
#include "util/dso.h"
9 10
#include "util/util.h"
#include "util/debug.h"
11
#include "util/callchain.h"
12
#include "srcline.h"
13

14 15
#include "symbol.h"

16 17
bool srcline_full_filename;

18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
static const char *dso__name(struct dso *dso)
{
	const char *dso_name;

	if (dso->symsrc_filename)
		dso_name = dso->symsrc_filename;
	else
		dso_name = dso->long_name;

	if (dso_name[0] == '[')
		return NULL;

	if (!strncmp(dso_name, "/tmp/perf-", 10))
		return NULL;

	return dso_name;
}

36 37
static int inline_list__append(struct symbol *symbol, char *srcline,
			       struct inline_node *node)
38 39 40 41 42 43 44
{
	struct inline_list *ilist;

	ilist = zalloc(sizeof(*ilist));
	if (ilist == NULL)
		return -1;

45
	ilist->symbol = symbol;
46
	ilist->srcline = srcline;
47

48 49 50 51
	if (callchain_param.order == ORDER_CALLEE)
		list_add_tail(&ilist->list, &node->val);
	else
		list_add(&ilist->list, &node->val);
52 53 54 55

	return 0;
}

56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
/* basename version that takes a const input string */
static const char *gnu_basename(const char *path)
{
	const char *base = strrchr(path, '/');

	return base ? base + 1 : path;
}

static char *srcline_from_fileline(const char *file, unsigned int line)
{
	char *srcline;

	if (!file)
		return NULL;

	if (!srcline_full_filename)
		file = gnu_basename(file);

	if (asprintf(&srcline, "%s:%u", file, line) < 0)
		return NULL;

	return srcline;
}

80 81 82 83 84 85 86 87 88 89
#ifdef HAVE_LIBBFD_SUPPORT

/*
 * Implement addr2line using libbfd.
 */
#define PACKAGE "perf"
#include <bfd.h>

struct a2l_data {
	const char 	*input;
90
	u64	 	addr;
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170

	bool 		found;
	const char 	*filename;
	const char 	*funcname;
	unsigned 	line;

	bfd 		*abfd;
	asymbol 	**syms;
};

static int bfd_error(const char *string)
{
	const char *errmsg;

	errmsg = bfd_errmsg(bfd_get_error());
	fflush(stdout);

	if (string)
		pr_debug("%s: %s\n", string, errmsg);
	else
		pr_debug("%s\n", errmsg);

	return -1;
}

static int slurp_symtab(bfd *abfd, struct a2l_data *a2l)
{
	long storage;
	long symcount;
	asymbol **syms;
	bfd_boolean dynamic = FALSE;

	if ((bfd_get_file_flags(abfd) & HAS_SYMS) == 0)
		return bfd_error(bfd_get_filename(abfd));

	storage = bfd_get_symtab_upper_bound(abfd);
	if (storage == 0L) {
		storage = bfd_get_dynamic_symtab_upper_bound(abfd);
		dynamic = TRUE;
	}
	if (storage < 0L)
		return bfd_error(bfd_get_filename(abfd));

	syms = malloc(storage);
	if (dynamic)
		symcount = bfd_canonicalize_dynamic_symtab(abfd, syms);
	else
		symcount = bfd_canonicalize_symtab(abfd, syms);

	if (symcount < 0) {
		free(syms);
		return bfd_error(bfd_get_filename(abfd));
	}

	a2l->syms = syms;
	return 0;
}

static void find_address_in_section(bfd *abfd, asection *section, void *data)
{
	bfd_vma pc, vma;
	bfd_size_type size;
	struct a2l_data *a2l = data;

	if (a2l->found)
		return;

	if ((bfd_get_section_flags(abfd, section) & SEC_ALLOC) == 0)
		return;

	pc = a2l->addr;
	vma = bfd_get_section_vma(abfd, section);
	size = bfd_get_section_size(section);

	if (pc < vma || pc >= vma + size)
		return;

	a2l->found = bfd_find_nearest_line(abfd, section, a2l->syms, pc - vma,
					   &a2l->filename, &a2l->funcname,
					   &a2l->line);
171 172 173

	if (a2l->filename && !strlen(a2l->filename))
		a2l->filename = NULL;
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
}

static struct a2l_data *addr2line_init(const char *path)
{
	bfd *abfd;
	struct a2l_data *a2l = NULL;

	abfd = bfd_openr(path, NULL);
	if (abfd == NULL)
		return NULL;

	if (!bfd_check_format(abfd, bfd_object))
		goto out;

	a2l = zalloc(sizeof(*a2l));
	if (a2l == NULL)
		goto out;

	a2l->abfd = abfd;
	a2l->input = strdup(path);
	if (a2l->input == NULL)
		goto out;

	if (slurp_symtab(abfd, a2l))
		goto out;

	return a2l;

out:
	if (a2l) {
204
		zfree((char **)&a2l->input);
205 206 207 208 209 210 211 212 213 214
		free(a2l);
	}
	bfd_close(abfd);
	return NULL;
}

static void addr2line_cleanup(struct a2l_data *a2l)
{
	if (a2l->abfd)
		bfd_close(a2l->abfd);
215
	zfree((char **)&a2l->input);
216
	zfree(&a2l->syms);
217 218 219
	free(a2l);
}

220 221
#define MAX_INLINE_NEST 1024

222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
static struct symbol *new_inline_sym(struct dso *dso,
				     struct symbol *base_sym,
				     const char *funcname)
{
	struct symbol *inline_sym;
	char *demangled = NULL;

	if (dso) {
		demangled = dso__demangle_sym(dso, 0, funcname);
		if (demangled)
			funcname = demangled;
	}

	if (base_sym && strcmp(funcname, base_sym->name) == 0) {
		/* reuse the real, existing symbol */
		inline_sym = base_sym;
		/* ensure that we don't alias an inlined symbol, which could
		 * lead to double frees in inline_node__delete
		 */
		assert(!base_sym->inlined);
	} else {
		/* create a fake symbol for the inline frame */
		inline_sym = symbol__new(base_sym ? base_sym->start : 0,
					 base_sym ? base_sym->end : 0,
					 base_sym ? base_sym->binding : 0,
					 funcname);
		if (inline_sym)
			inline_sym->inlined = 1;
	}

	free(demangled);

	return inline_sym;
}

257
static int inline_list__append_dso_a2l(struct dso *dso,
258 259
				       struct inline_node *node,
				       struct symbol *sym)
260 261
{
	struct a2l_data *a2l = dso->a2l;
262
	struct symbol *inline_sym = new_inline_sym(dso, sym, a2l->funcname);
263
	char *srcline = NULL;
264

265 266 267 268
	if (a2l->filename)
		srcline = srcline_from_fileline(a2l->filename, a2l->line);

	return inline_list__append(inline_sym, srcline, node);
269 270
}

271
static int addr2line(const char *dso_name, u64 addr,
272
		     char **file, unsigned int *line, struct dso *dso,
273 274
		     bool unwind_inlines, struct inline_node *node,
		     struct symbol *sym)
275 276
{
	int ret = 0;
277 278 279 280 281 282
	struct a2l_data *a2l = dso->a2l;

	if (!a2l) {
		dso->a2l = addr2line_init(dso_name);
		a2l = dso->a2l;
	}
283 284 285 286 287 288 289

	if (a2l == NULL) {
		pr_warning("addr2line_init failed for %s\n", dso_name);
		return 0;
	}

	a2l->addr = addr;
290 291
	a2l->found = false;

292 293
	bfd_map_over_sections(a2l->abfd, find_address_in_section, a2l);

294 295 296 297
	if (!a2l->found)
		return 0;

	if (unwind_inlines) {
298 299
		int cnt = 0;

300
		if (node && inline_list__append_dso_a2l(dso, node, sym))
301 302
			return 0;

303 304
		while (bfd_find_inliner_info(a2l->abfd, &a2l->filename,
					     &a2l->funcname, &a2l->line) &&
305 306
		       cnt++ < MAX_INLINE_NEST) {

307 308 309
			if (a2l->filename && !strlen(a2l->filename))
				a2l->filename = NULL;

310
			if (node != NULL) {
311
				if (inline_list__append_dso_a2l(dso, node, sym))
312
					return 0;
313 314
				// found at least one inline frame
				ret = 1;
315 316
			}
		}
317 318
	}

319 320 321
	if (file) {
		*file = a2l->filename ? strdup(a2l->filename) : NULL;
		ret = *file ? 1 : 0;
322 323
	}

324 325 326
	if (line)
		*line = a2l->line;

327 328 329
	return ret;
}

330 331 332 333 334 335 336 337 338 339 340 341
void dso__free_a2l(struct dso *dso)
{
	struct a2l_data *a2l = dso->a2l;

	if (!a2l)
		return;

	addr2line_cleanup(a2l);

	dso->a2l = NULL;
}

342
static struct inline_node *addr2inlines(const char *dso_name, u64 addr,
343
					struct dso *dso, struct symbol *sym)
344 345 346 347 348 349 350 351 352 353 354 355
{
	struct inline_node *node;

	node = zalloc(sizeof(*node));
	if (node == NULL) {
		perror("not enough memory for the inline node");
		return NULL;
	}

	INIT_LIST_HEAD(&node->val);
	node->addr = addr;

356
	if (!addr2line(dso_name, addr, NULL, NULL, dso, TRUE, node, sym))
357 358 359 360 361 362 363 364 365 366 367 368
		goto out_free_inline_node;

	if (list_empty(&node->val))
		goto out_free_inline_node;

	return node;

out_free_inline_node:
	inline_node__delete(node);
	return NULL;
}

369 370
#else /* HAVE_LIBBFD_SUPPORT */

371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
static int filename_split(char *filename, unsigned int *line_nr)
{
	char *sep;

	sep = strchr(filename, '\n');
	if (sep)
		*sep = '\0';

	if (!strcmp(filename, "??:0"))
		return 0;

	sep = strchr(filename, ':');
	if (sep) {
		*sep++ = '\0';
		*line_nr = strtoul(sep, NULL, 0);
		return 1;
	}

	return 0;
}

392
static int addr2line(const char *dso_name, u64 addr,
393
		     char **file, unsigned int *line_nr,
394
		     struct dso *dso __maybe_unused,
395
		     bool unwind_inlines __maybe_unused,
396 397
		     struct inline_node *node __maybe_unused,
		     struct symbol *sym __maybe_unused)
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
{
	FILE *fp;
	char cmd[PATH_MAX];
	char *filename = NULL;
	size_t len;
	int ret = 0;

	scnprintf(cmd, sizeof(cmd), "addr2line -e %s %016"PRIx64,
		  dso_name, addr);

	fp = popen(cmd, "r");
	if (fp == NULL) {
		pr_warning("popen failed for %s\n", dso_name);
		return 0;
	}

	if (getline(&filename, &len, fp) < 0 || !len) {
		pr_warning("addr2line has no output for %s\n", dso_name);
		goto out;
	}

419 420
	ret = filename_split(filename, line_nr);
	if (ret != 1) {
421 422 423 424
		free(filename);
		goto out;
	}

425 426
	*file = filename;

427 428 429 430
out:
	pclose(fp);
	return ret;
}
431 432 433 434 435

void dso__free_a2l(struct dso *dso __maybe_unused)
{
}

436
static struct inline_node *addr2inlines(const char *dso_name, u64 addr,
437 438
					struct dso *dso __maybe_unused,
					struct symbol *sym)
439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
{
	FILE *fp;
	char cmd[PATH_MAX];
	struct inline_node *node;
	char *filename = NULL;
	size_t len;
	unsigned int line_nr = 0;

	scnprintf(cmd, sizeof(cmd), "addr2line -e %s -i %016"PRIx64,
		  dso_name, addr);

	fp = popen(cmd, "r");
	if (fp == NULL) {
		pr_err("popen failed for %s\n", dso_name);
		return NULL;
	}

	node = zalloc(sizeof(*node));
	if (node == NULL) {
		perror("not enough memory for the inline node");
		goto out;
	}

	INIT_LIST_HEAD(&node->val);
	node->addr = addr;

	while (getline(&filename, &len, fp) != -1) {
466
		char *srcline;
467

468 469 470 471 472
		if (filename_split(filename, &line_nr) != 1) {
			free(filename);
			goto out;
		}

473 474
		srcline = srcline_from_fileline(filename, line_nr);
		if (inline_list__append(sym, srcline, node) != 0)
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
			goto out;

		filename = NULL;
	}

out:
	pclose(fp);

	if (list_empty(&node->val)) {
		inline_node__delete(node);
		return NULL;
	}

	return node;
}

491
#endif /* HAVE_LIBBFD_SUPPORT */
492

493 494 495 496 497 498
/*
 * Number of addr2line failures (without success) before disabling it for that
 * dso.
 */
#define A2L_FAIL_LIMIT 123

499
char *__get_srcline(struct dso *dso, u64 addr, struct symbol *sym,
500
		  bool show_sym, bool show_addr, bool unwind_inlines)
501
{
502 503
	char *file = NULL;
	unsigned line = 0;
504
	char *srcline;
505
	const char *dso_name;
506

507
	if (!dso->has_srcline)
508
		goto out;
509

510 511
	dso_name = dso__name(dso);
	if (dso_name == NULL)
512 513
		goto out;

514 515
	if (!addr2line(dso_name, addr, &file, &line, dso,
		       unwind_inlines, NULL, sym))
516
		goto out;
517

518 519 520 521
	srcline = srcline_from_fileline(file, line);
	free(file);

	if (!srcline)
522 523 524
		goto out;

	dso->a2l_fails = 0;
525 526

	return srcline;
527 528

out:
529 530 531 532
	if (dso->a2l_fails && ++dso->a2l_fails > A2L_FAIL_LIMIT) {
		dso->has_srcline = 0;
		dso__free_a2l(dso);
	}
533 534 535 536 537

	if (!show_addr)
		return (show_sym && sym) ?
			    strndup(sym->name, sym->namelen) : NULL;

538
	if (sym) {
539
		if (asprintf(&srcline, "%s+%" PRIu64, show_sym ? sym->name : "",
540 541
					addr - sym->start) < 0)
			return SRCLINE_UNKNOWN;
542
	} else if (asprintf(&srcline, "%s[%" PRIx64 "]", dso->short_name, addr) < 0)
543 544
		return SRCLINE_UNKNOWN;
	return srcline;
545 546 547 548 549 550 551
}

void free_srcline(char *srcline)
{
	if (srcline && strcmp(srcline, SRCLINE_UNKNOWN) != 0)
		free(srcline);
}
552 553

char *get_srcline(struct dso *dso, u64 addr, struct symbol *sym,
554
		  bool show_sym, bool show_addr)
555
{
556
	return __get_srcline(dso, addr, sym, show_sym, show_addr, false);
557
}
558

559 560
struct inline_node *dso__parse_addr_inlines(struct dso *dso, u64 addr,
					    struct symbol *sym)
561 562 563 564 565 566 567
{
	const char *dso_name;

	dso_name = dso__name(dso);
	if (dso_name == NULL)
		return NULL;

568
	return addr2inlines(dso_name, addr, dso, sym);
569 570 571 572 573 574 575 576
}

void inline_node__delete(struct inline_node *node)
{
	struct inline_list *ilist, *tmp;

	list_for_each_entry_safe(ilist, tmp, &node->val, list) {
		list_del_init(&ilist->list);
577
		free_srcline(ilist->srcline);
578 579 580
		/* only the inlined symbols are owned by the list */
		if (ilist->symbol && ilist->symbol->inlined)
			symbol__delete(ilist->symbol);
581 582 583 584 585
		free(ilist);
	}

	free(node);
}
新手
引导
客服 返回
顶部