map.c 16.8 KB
Newer Older
1
#include "symbol.h"
2
#include <errno.h>
3
#include <inttypes.h>
4
#include <limits.h>
5 6 7
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
8
#include <unistd.h>
9
#include "map.h"
10
#include "thread.h"
11
#include "strlist.h"
12
#include "vdso.h"
13
#include "build-id.h"
14

15 16 17 18 19
const char *map_type__name[MAP__NR_TYPES] = {
	[MAP__FUNCTION] = "Functions",
	[MAP__VARIABLE] = "Variables",
};

20 21 22 23 24
static inline int is_anon_memory(const char *filename)
{
	return strcmp(filename, "//anon") == 0;
}

25 26
static inline int is_no_dso_memory(const char *filename)
{
27
	return !strncmp(filename, "[stack", 6) ||
28 29 30
	       !strcmp(filename, "[heap]");
}

31 32
void map__init(struct map *self, enum map_type type,
	       u64 start, u64 end, u64 pgoff, struct dso *dso)
33
{
34
	self->type     = type;
35 36 37 38 39 40 41
	self->start    = start;
	self->end      = end;
	self->pgoff    = pgoff;
	self->dso      = dso;
	self->map_ip   = map__map_ip;
	self->unmap_ip = map__unmap_ip;
	RB_CLEAR_NODE(&self->rb_node);
42
	self->groups   = NULL;
43
	self->referenced = false;
44
	self->erange_warned = false;
45 46
}

47 48
struct map *map__new(struct list_head *dsos__list, u64 start, u64 len,
		     u64 pgoff, u32 pid, char *filename,
49
		     enum map_type type)
50 51 52 53 54
{
	struct map *self = malloc(sizeof(*self));

	if (self != NULL) {
		char newfilename[PATH_MAX];
55
		struct dso *dso;
56
		int anon, no_dso, vdso;
57 58

		anon = is_anon_memory(filename);
59
		vdso = is_vdso_map(filename);
60
		no_dso = is_no_dso_memory(filename);
61 62

		if (anon) {
63
			snprintf(newfilename, sizeof(newfilename), "/tmp/perf-%d.map", pid);
64 65 66
			filename = newfilename;
		}

67 68 69 70 71 72
		if (vdso) {
			pgoff = 0;
			dso = vdso__dso_findnew(dsos__list);
		} else
			dso = __dsos__findnew(dsos__list, filename);

73
		if (dso == NULL)
74 75
			goto out_delete;

76
		map__init(self, type, start, start + len, pgoff, dso);
77

78
		if (anon || no_dso) {
79
			self->map_ip = self->unmap_ip = identity__map_ip;
80 81 82 83 84 85 86 87

			/*
			 * Set memory without DSO as loaded. All map__find_*
			 * functions still return NULL, and we avoid the
			 * unnecessary map__load warning.
			 */
			if (no_dso)
				dso__set_loaded(dso, self->type);
88
		}
89 90 91 92 93 94 95
	}
	return self;
out_delete:
	free(self);
	return NULL;
}

96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
/*
 * Constructor variant for modules (where we know from /proc/modules where
 * they are loaded) and for vmlinux, where only after we load all the
 * symbols we'll know where it starts and ends.
 */
struct map *map__new2(u64 start, struct dso *dso, enum map_type type)
{
	struct map *map = calloc(1, (sizeof(*map) +
				     (dso->kernel ? sizeof(struct kmap) : 0)));
	if (map != NULL) {
		/*
		 * ->end will be filled after we load all the symbols
		 */
		map__init(map, type, start, 0, 0, dso);
	}

	return map;
}

115 116 117 118 119
void map__delete(struct map *self)
{
	free(self);
}

120
void map__fixup_start(struct map *self)
121
{
122
	struct rb_root *symbols = &self->dso->symbols[self->type];
123
	struct rb_node *nd = rb_first(symbols);
124 125 126 127 128 129
	if (nd != NULL) {
		struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
		self->start = sym->start;
	}
}

130
void map__fixup_end(struct map *self)
131
{
132
	struct rb_root *symbols = &self->dso->symbols[self->type];
133
	struct rb_node *nd = rb_last(symbols);
134 135 136 137 138 139
	if (nd != NULL) {
		struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
		self->end = sym->end;
	}
}

140 141
#define DSO__DELETED "(deleted)"

142
int map__load(struct map *self, symbol_filter_t filter)
143
{
144
	const char *name = self->dso->long_name;
145
	int nr;
146

147 148 149
	if (dso__loaded(self->dso, self->type))
		return 0;

150
	nr = dso__load(self->dso, self, filter);
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
	if (nr < 0) {
		if (self->dso->has_build_id) {
			char sbuild_id[BUILD_ID_SIZE * 2 + 1];

			build_id__sprintf(self->dso->build_id,
					  sizeof(self->dso->build_id),
					  sbuild_id);
			pr_warning("%s with build id %s not found",
				   name, sbuild_id);
		} else
			pr_warning("Failed to open %s", name);

		pr_warning(", continuing without symbols\n");
		return -1;
	} else if (nr == 0) {
166
#ifdef LIBELF_SUPPORT
167 168 169 170 171
		const size_t len = strlen(name);
		const size_t real_len = len - sizeof(DSO__DELETED);

		if (len > sizeof(DSO__DELETED) &&
		    strcmp(name + real_len + 1, DSO__DELETED) == 0) {
172 173
			pr_warning("%.*s was updated (is prelink enabled?). "
				"Restart the long running apps that use it!\n",
174 175 176 177
				   (int)real_len, name);
		} else {
			pr_warning("no symbols found in %s, maybe install "
				   "a debug package?\n", name);
178
		}
179
#endif
180
		return -1;
181
	}
182 183 184 185 186 187
	/*
	 * Only applies to the kernel, as its symtabs aren't relative like the
	 * module ones.
	 */
	if (self->dso->kernel)
		map__reloc_vmlinux(self);
188

189 190 191
	return 0;
}

192 193
struct symbol *map__find_symbol(struct map *self, u64 addr,
				symbol_filter_t filter)
194
{
195
	if (map__load(self, filter) < 0)
196 197
		return NULL;

198
	return dso__find_symbol(self->dso, self->type, addr);
199 200
}

201 202 203
struct symbol *map__find_symbol_by_name(struct map *self, const char *name,
					symbol_filter_t filter)
{
204
	if (map__load(self, filter) < 0)
205 206 207 208 209 210 211 212
		return NULL;

	if (!dso__sorted_by_name(self->dso, self->type))
		dso__sort_by_name(self->dso, self->type);

	return dso__find_symbol_by_name(self->dso, self->type, name);
}

213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
struct map *map__clone(struct map *self)
{
	struct map *map = malloc(sizeof(*self));

	if (!map)
		return NULL;

	memcpy(map, self, sizeof(*self));

	return map;
}

int map__overlap(struct map *l, struct map *r)
{
	if (l->start > r->start) {
		struct map *t = l;
		l = r;
		r = t;
	}

	if (l->end > r->start)
		return 1;

	return 0;
}

size_t map__fprintf(struct map *self, FILE *fp)
{
241
	return fprintf(fp, " %" PRIx64 "-%" PRIx64 " %" PRIx64 " %s\n",
242 243
		       self->start, self->end, self->pgoff, self->dso->name);
}
244

245 246
size_t map__fprintf_dsoname(struct map *map, FILE *fp)
{
247
	const char *dsoname = "[unknown]";
248

249 250 251 252 253
	if (map && map->dso && (map->dso->name || map->dso->long_name)) {
		if (symbol_conf.show_kernel_path && map->dso->long_name)
			dsoname = map->dso->long_name;
		else if (map->dso->name)
			dsoname = map->dso->name;
254
	}
255 256 257 258

	return fprintf(fp, "%s", dsoname);
}

259 260 261 262 263 264 265 266 267 268 269
/*
 * objdump wants/reports absolute IPs for ET_EXEC, and RIPs for ET_DYN.
 * map->dso->adjust_symbols==1 for ET_EXEC-like cases.
 */
u64 map__rip_2objdump(struct map *map, u64 rip)
{
	u64 addr = map->dso->adjust_symbols ?
			map->unmap_ip(map, rip) :	/* RIP -> IP */
			rip;
	return addr;
}
270

271
void map_groups__init(struct map_groups *mg)
272 273 274
{
	int i;
	for (i = 0; i < MAP__NR_TYPES; ++i) {
275 276
		mg->maps[i] = RB_ROOT;
		INIT_LIST_HEAD(&mg->removed_maps[i]);
277
	}
278
	mg->machine = NULL;
279 280
}

281
static void maps__delete(struct rb_root *maps)
282
{
283
	struct rb_node *next = rb_first(maps);
284 285 286 287 288

	while (next) {
		struct map *pos = rb_entry(next, struct map, rb_node);

		next = rb_next(&pos->rb_node);
289
		rb_erase(&pos->rb_node, maps);
290 291 292 293
		map__delete(pos);
	}
}

294
static void maps__delete_removed(struct list_head *maps)
295 296 297
{
	struct map *pos, *n;

298
	list_for_each_entry_safe(pos, n, maps, node) {
299 300 301 302 303
		list_del(&pos->node);
		map__delete(pos);
	}
}

304
void map_groups__exit(struct map_groups *mg)
305 306 307 308
{
	int i;

	for (i = 0; i < MAP__NR_TYPES; ++i) {
309 310
		maps__delete(&mg->maps[i]);
		maps__delete_removed(&mg->removed_maps[i]);
311 312 313
	}
}

314
void map_groups__flush(struct map_groups *mg)
315 316 317 318
{
	int type;

	for (type = 0; type < MAP__NR_TYPES; type++) {
319
		struct rb_root *root = &mg->maps[type];
320 321 322 323 324 325 326 327 328 329 330
		struct rb_node *next = rb_first(root);

		while (next) {
			struct map *pos = rb_entry(next, struct map, rb_node);
			next = rb_next(&pos->rb_node);
			rb_erase(&pos->rb_node, root);
			/*
			 * We may have references to this map, for
			 * instance in some hist_entry instances, so
			 * just move them to a separate list.
			 */
331
			list_add_tail(&pos->node, &mg->removed_maps[pos->type]);
332 333 334 335
		}
	}
}

336
struct symbol *map_groups__find_symbol(struct map_groups *mg,
337
				       enum map_type type, u64 addr,
338
				       struct map **mapp,
339 340
				       symbol_filter_t filter)
{
341
	struct map *map = map_groups__find(mg, type, addr);
342

343 344 345
	if (map != NULL) {
		if (mapp != NULL)
			*mapp = map;
346
		return map__find_symbol(map, map->map_ip(map, addr), filter);
347 348 349 350 351
	}

	return NULL;
}

352
struct symbol *map_groups__find_symbol_by_name(struct map_groups *mg,
353 354 355 356 357 358 359
					       enum map_type type,
					       const char *name,
					       struct map **mapp,
					       symbol_filter_t filter)
{
	struct rb_node *nd;

360
	for (nd = rb_first(&mg->maps[type]); nd; nd = rb_next(nd)) {
361 362 363 364 365 366 367 368 369
		struct map *pos = rb_entry(nd, struct map, rb_node);
		struct symbol *sym = map__find_symbol_by_name(pos, name, filter);

		if (sym == NULL)
			continue;
		if (mapp != NULL)
			*mapp = pos;
		return sym;
	}
370 371 372 373

	return NULL;
}

374
size_t __map_groups__fprintf_maps(struct map_groups *mg,
375 376 377 378 379
				  enum map_type type, int verbose, FILE *fp)
{
	size_t printed = fprintf(fp, "%s:\n", map_type__name[type]);
	struct rb_node *nd;

380
	for (nd = rb_first(&mg->maps[type]); nd; nd = rb_next(nd)) {
381 382 383 384 385 386 387 388 389 390 391 392
		struct map *pos = rb_entry(nd, struct map, rb_node);
		printed += fprintf(fp, "Map:");
		printed += map__fprintf(pos, fp);
		if (verbose > 2) {
			printed += dso__fprintf(pos->dso, type, fp);
			printed += fprintf(fp, "--\n");
		}
	}

	return printed;
}

393
size_t map_groups__fprintf_maps(struct map_groups *mg, int verbose, FILE *fp)
394 395 396
{
	size_t printed = 0, i;
	for (i = 0; i < MAP__NR_TYPES; ++i)
397
		printed += __map_groups__fprintf_maps(mg, i, verbose, fp);
398 399 400
	return printed;
}

401
static size_t __map_groups__fprintf_removed_maps(struct map_groups *mg,
402 403 404 405 406 407
						 enum map_type type,
						 int verbose, FILE *fp)
{
	struct map *pos;
	size_t printed = 0;

408
	list_for_each_entry(pos, &mg->removed_maps[type], node) {
409 410 411 412 413 414 415 416 417 418
		printed += fprintf(fp, "Map:");
		printed += map__fprintf(pos, fp);
		if (verbose > 1) {
			printed += dso__fprintf(pos->dso, type, fp);
			printed += fprintf(fp, "--\n");
		}
	}
	return printed;
}

419
static size_t map_groups__fprintf_removed_maps(struct map_groups *mg,
420 421 422 423
					       int verbose, FILE *fp)
{
	size_t printed = 0, i;
	for (i = 0; i < MAP__NR_TYPES; ++i)
424
		printed += __map_groups__fprintf_removed_maps(mg, i, verbose, fp);
425 426 427
	return printed;
}

428
size_t map_groups__fprintf(struct map_groups *mg, int verbose, FILE *fp)
429
{
430
	size_t printed = map_groups__fprintf_maps(mg, verbose, fp);
431
	printed += fprintf(fp, "Removed maps:\n");
432
	return printed + map_groups__fprintf_removed_maps(mg, verbose, fp);
433 434
}

435
int map_groups__fixup_overlappings(struct map_groups *mg, struct map *map,
436 437
				   int verbose, FILE *fp)
{
438
	struct rb_root *root = &mg->maps[map->type];
439
	struct rb_node *next = rb_first(root);
440
	int err = 0;
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462

	while (next) {
		struct map *pos = rb_entry(next, struct map, rb_node);
		next = rb_next(&pos->rb_node);

		if (!map__overlap(pos, map))
			continue;

		if (verbose >= 2) {
			fputs("overlapping maps:\n", fp);
			map__fprintf(map, fp);
			map__fprintf(pos, fp);
		}

		rb_erase(&pos->rb_node, root);
		/*
		 * Now check if we need to create new maps for areas not
		 * overlapped by the new map:
		 */
		if (map->start > pos->start) {
			struct map *before = map__clone(pos);

463 464 465 466
			if (before == NULL) {
				err = -ENOMEM;
				goto move_map;
			}
467 468

			before->end = map->start - 1;
469
			map_groups__insert(mg, before);
470 471 472 473 474 475 476
			if (verbose >= 2)
				map__fprintf(before, fp);
		}

		if (map->end < pos->end) {
			struct map *after = map__clone(pos);

477 478 479 480
			if (after == NULL) {
				err = -ENOMEM;
				goto move_map;
			}
481 482

			after->start = map->end + 1;
483
			map_groups__insert(mg, after);
484 485 486
			if (verbose >= 2)
				map__fprintf(after, fp);
		}
487 488 489 490 491
move_map:
		/*
		 * If we have references, just move them to a separate list.
		 */
		if (pos->referenced)
492
			list_add_tail(&pos->node, &mg->removed_maps[map->type]);
493 494 495 496 497
		else
			map__delete(pos);

		if (err)
			return err;
498 499 500 501 502 503 504 505
	}

	return 0;
}

/*
 * XXX This should not really _copy_ te maps, but refcount them.
 */
506
int map_groups__clone(struct map_groups *mg,
507 508 509 510 511 512 513 514
		      struct map_groups *parent, enum map_type type)
{
	struct rb_node *nd;
	for (nd = rb_first(&parent->maps[type]); nd; nd = rb_next(nd)) {
		struct map *map = rb_entry(nd, struct map, rb_node);
		struct map *new = map__clone(map);
		if (new == NULL)
			return -ENOMEM;
515
		map_groups__insert(mg, new);
516 517 518 519
	}
	return 0;
}

520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
static u64 map__reloc_map_ip(struct map *map, u64 ip)
{
	return ip + (s64)map->pgoff;
}

static u64 map__reloc_unmap_ip(struct map *map, u64 ip)
{
	return ip - (s64)map->pgoff;
}

void map__reloc_vmlinux(struct map *self)
{
	struct kmap *kmap = map__kmap(self);
	s64 reloc;

	if (!kmap->ref_reloc_sym || !kmap->ref_reloc_sym->unrelocated_addr)
		return;

	reloc = (kmap->ref_reloc_sym->unrelocated_addr -
		 kmap->ref_reloc_sym->addr);

	if (!reloc)
		return;

	self->map_ip   = map__reloc_map_ip;
	self->unmap_ip = map__reloc_unmap_ip;
	self->pgoff    = reloc;
}

void maps__insert(struct rb_root *maps, struct map *map)
{
	struct rb_node **p = &maps->rb_node;
	struct rb_node *parent = NULL;
	const u64 ip = map->start;
	struct map *m;

	while (*p != NULL) {
		parent = *p;
		m = rb_entry(parent, struct map, rb_node);
		if (ip < m->start)
			p = &(*p)->rb_left;
		else
			p = &(*p)->rb_right;
	}

	rb_link_node(&map->rb_node, parent, p);
	rb_insert_color(&map->rb_node, maps);
}

569 570 571 572 573
void maps__remove(struct rb_root *self, struct map *map)
{
	rb_erase(&map->rb_node, self);
}

574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
struct map *maps__find(struct rb_root *maps, u64 ip)
{
	struct rb_node **p = &maps->rb_node;
	struct rb_node *parent = NULL;
	struct map *m;

	while (*p != NULL) {
		parent = *p;
		m = rb_entry(parent, struct map, rb_node);
		if (ip < m->start)
			p = &(*p)->rb_left;
		else if (ip > m->end)
			p = &(*p)->rb_right;
		else
			return m;
	}

	return NULL;
}
593

594 595 596 597 598 599 600
int machine__init(struct machine *self, const char *root_dir, pid_t pid)
{
	map_groups__init(&self->kmaps);
	RB_CLEAR_NODE(&self->rb_node);
	INIT_LIST_HEAD(&self->user_dsos);
	INIT_LIST_HEAD(&self->kernel_dsos);

601 602 603 604
	self->threads = RB_ROOT;
	INIT_LIST_HEAD(&self->dead_threads);
	self->last_match = NULL;

605 606 607
	self->kmaps.machine = self;
	self->pid	    = pid;
	self->root_dir      = strdup(root_dir);
608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
	if (self->root_dir == NULL)
		return -ENOMEM;

	if (pid != HOST_KERNEL_ID) {
		struct thread *thread = machine__findnew_thread(self, pid);
		char comm[64];

		if (thread == NULL)
			return -ENOMEM;

		snprintf(comm, sizeof(comm), "[guest/%d]", pid);
		thread__set_comm(thread, comm);
	}

	return 0;
623 624
}

625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643
static void dsos__delete(struct list_head *self)
{
	struct dso *pos, *n;

	list_for_each_entry_safe(pos, n, self, node) {
		list_del(&pos->node);
		dso__delete(pos);
	}
}

void machine__exit(struct machine *self)
{
	map_groups__exit(&self->kmaps);
	dsos__delete(&self->user_dsos);
	dsos__delete(&self->kernel_dsos);
	free(self->root_dir);
	self->root_dir = NULL;
}

644 645 646 647 648 649
void machine__delete(struct machine *self)
{
	machine__exit(self);
	free(self);
}

650 651
struct machine *machines__add(struct rb_root *self, pid_t pid,
			      const char *root_dir)
652
{
653
	struct rb_node **p = &self->rb_node;
654
	struct rb_node *parent = NULL;
655
	struct machine *pos, *machine = malloc(sizeof(*machine));
656

657
	if (!machine)
658 659
		return NULL;

660 661 662 663
	if (machine__init(machine, root_dir, pid) != 0) {
		free(machine);
		return NULL;
	}
664 665 666

	while (*p != NULL) {
		parent = *p;
667
		pos = rb_entry(parent, struct machine, rb_node);
668 669 670 671 672 673
		if (pid < pos->pid)
			p = &(*p)->rb_left;
		else
			p = &(*p)->rb_right;
	}

674 675
	rb_link_node(&machine->rb_node, parent, p);
	rb_insert_color(&machine->rb_node, self);
676

677
	return machine;
678 679
}

680
struct machine *machines__find(struct rb_root *self, pid_t pid)
681
{
682
	struct rb_node **p = &self->rb_node;
683
	struct rb_node *parent = NULL;
684 685
	struct machine *machine;
	struct machine *default_machine = NULL;
686 687 688

	while (*p != NULL) {
		parent = *p;
689 690
		machine = rb_entry(parent, struct machine, rb_node);
		if (pid < machine->pid)
691
			p = &(*p)->rb_left;
692
		else if (pid > machine->pid)
693 694
			p = &(*p)->rb_right;
		else
695 696 697
			return machine;
		if (!machine->pid)
			default_machine = machine;
698 699
	}

700
	return default_machine;
701 702
}

703
struct machine *machines__findnew(struct rb_root *self, pid_t pid)
704 705
{
	char path[PATH_MAX];
706
	const char *root_dir = "";
707
	struct machine *machine = machines__find(self, pid);
708

709 710 711 712 713 714 715 716
	if (machine && (machine->pid == pid))
		goto out;

	if ((pid != HOST_KERNEL_ID) &&
	    (pid != DEFAULT_GUEST_KERNEL_ID) &&
	    (symbol_conf.guestmount)) {
		sprintf(path, "%s/%d", symbol_conf.guestmount, pid);
		if (access(path, R_OK)) {
717 718 719 720 721 722 723 724 725
			static struct strlist *seen;

			if (!seen)
				seen = strlist__new(true, NULL);

			if (!strlist__has_entry(seen, path)) {
				pr_err("Can't access file %s\n", path);
				strlist__add(seen, path);
			}
726 727
			machine = NULL;
			goto out;
728
		}
729
		root_dir = path;
730 731
	}

732 733
	machine = machines__add(self, pid, root_dir);

734
out:
735
	return machine;
736 737
}

738
void machines__process(struct rb_root *self, machine__process_t process, void *data)
739 740 741
{
	struct rb_node *nd;

742 743
	for (nd = rb_first(self); nd; nd = rb_next(nd)) {
		struct machine *pos = rb_entry(nd, struct machine, rb_node);
744 745 746 747
		process(pos, data);
	}
}

748
char *machine__mmap_name(struct machine *self, char *bf, size_t size)
749
{
750
	if (machine__is_host(self))
751
		snprintf(bf, size, "[%s]", "kernel.kallsyms");
752
	else if (machine__is_default_guest(self))
753
		snprintf(bf, size, "[%s]", "guest.kernel.kallsyms");
754
	else
755
		snprintf(bf, size, "[%s.%d]", "guest.kernel.kallsyms", self->pid);
756

757
	return bf;
758
}
759 760 761 762 763 764 765 766 767 768 769 770 771

void machines__set_id_hdr_size(struct rb_root *machines, u16 id_hdr_size)
{
	struct rb_node *node;
	struct machine *machine;

	for (node = rb_first(machines); node; node = rb_next(node)) {
		machine = rb_entry(node, struct machine, rb_node);
		machine->id_hdr_size = id_hdr_size;
	}

	return;
}