map.c 13.3 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
#include <linux/string.h>
15

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

21 22
static inline int is_anon_memory(const char *filename)
{
23
	return !strcmp(filename, "//anon") ||
24
	       !strcmp(filename, "/dev/zero (deleted)") ||
25
	       !strcmp(filename, "/anon_hugepage (deleted)");
26 27
}

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

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

50
struct map *map__new(struct list_head *dsos__list, u64 start, u64 len,
51 52
		     u64 pgoff, u32 pid, u32 d_maj, u32 d_min, u64 ino,
		     u64 ino_gen, char *filename,
53
		     enum map_type type)
54
{
55
	struct map *map = malloc(sizeof(*map));
56

57
	if (map != NULL) {
58
		char newfilename[PATH_MAX];
59
		struct dso *dso;
60
		int anon, no_dso, vdso;
61 62

		anon = is_anon_memory(filename);
63
		vdso = is_vdso_map(filename);
64
		no_dso = is_no_dso_memory(filename);
65

66 67 68 69 70
		map->maj = d_maj;
		map->min = d_min;
		map->ino = ino;
		map->ino_generation = ino_gen;

71
		if (anon) {
72
			snprintf(newfilename, sizeof(newfilename), "/tmp/perf-%d.map", pid);
73 74 75
			filename = newfilename;
		}

76 77 78 79 80 81
		if (vdso) {
			pgoff = 0;
			dso = vdso__dso_findnew(dsos__list);
		} else
			dso = __dsos__findnew(dsos__list, filename);

82
		if (dso == NULL)
83 84
			goto out_delete;

85
		map__init(map, type, start, start + len, pgoff, dso);
86

87
		if (anon || no_dso) {
88
			map->map_ip = map->unmap_ip = identity__map_ip;
89 90 91 92 93 94 95

			/*
			 * Set memory without DSO as loaded. All map__find_*
			 * functions still return NULL, and we avoid the
			 * unnecessary map__load warning.
			 */
			if (no_dso)
96
				dso__set_loaded(dso, map->type);
97
		}
98
	}
99
	return map;
100
out_delete:
101
	free(map);
102 103 104
	return NULL;
}

105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
/*
 * 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;
}

124
void map__delete(struct map *map)
125
{
126
	free(map);
127 128
}

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

139
void map__fixup_end(struct map *map)
140
{
141
	struct rb_root *symbols = &map->dso->symbols[map->type];
142
	struct rb_node *nd = rb_last(symbols);
143 144
	if (nd != NULL) {
		struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
145
		map->end = sym->end;
146 147 148
	}
}

149 150
#define DSO__DELETED "(deleted)"

151
int map__load(struct map *map, symbol_filter_t filter)
152
{
153
	const char *name = map->dso->long_name;
154
	int nr;
155

156
	if (dso__loaded(map->dso, map->type))
157 158
		return 0;

159
	nr = dso__load(map->dso, map, filter);
160
	if (nr < 0) {
161
		if (map->dso->has_build_id) {
162 163
			char sbuild_id[BUILD_ID_SIZE * 2 + 1];

164 165
			build_id__sprintf(map->dso->build_id,
					  sizeof(map->dso->build_id),
166 167 168 169 170 171 172 173 174
					  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) {
175
#ifdef HAVE_LIBELF_SUPPORT
176 177 178 179 180
		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) {
181 182
			pr_warning("%.*s was updated (is prelink enabled?). "
				"Restart the long running apps that use it!\n",
183 184 185 186
				   (int)real_len, name);
		} else {
			pr_warning("no symbols found in %s, maybe install "
				   "a debug package?\n", name);
187
		}
188
#endif
189
		return -1;
190 191
	}

192 193 194
	return 0;
}

195
struct symbol *map__find_symbol(struct map *map, u64 addr,
196
				symbol_filter_t filter)
197
{
198
	if (map__load(map, filter) < 0)
199 200
		return NULL;

201
	return dso__find_symbol(map->dso, map->type, addr);
202 203
}

204
struct symbol *map__find_symbol_by_name(struct map *map, const char *name,
205 206
					symbol_filter_t filter)
{
207
	if (map__load(map, filter) < 0)
208 209
		return NULL;

210 211
	if (!dso__sorted_by_name(map->dso, map->type))
		dso__sort_by_name(map->dso, map->type);
212

213
	return dso__find_symbol_by_name(map->dso, map->type, name);
214 215
}

216
struct map *map__clone(struct map *map)
217
{
218
	return memdup(map, sizeof(*map));
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
}

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;
}

235
size_t map__fprintf(struct map *map, FILE *fp)
236
{
237
	return fprintf(fp, " %" PRIx64 "-%" PRIx64 " %" PRIx64 " %s\n",
238
		       map->start, map->end, map->pgoff, map->dso->name);
239
}
240

241 242
size_t map__fprintf_dsoname(struct map *map, FILE *fp)
{
243
	const char *dsoname = "[unknown]";
244

245 246 247 248 249
	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;
250
	}
251 252 253 254

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

255 256
/*
 * objdump wants/reports absolute IPs for ET_EXEC, and RIPs for ET_DYN.
257 258
 * map->dso->adjust_symbols==1 for ET_EXEC-like cases except ET_REL which is
 * relative to section start.
259 260 261
 */
u64 map__rip_2objdump(struct map *map, u64 rip)
{
262 263 264 265 266 267 268
	if (!map->dso->adjust_symbols)
		return rip;

	if (map->dso->rel)
		return rip - map->pgoff;

	return map->unmap_ip(map, rip);
269
}
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 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
int map_groups__find_ams(struct addr_map_symbol *ams, symbol_filter_t filter)
{
	if (ams->addr < ams->map->start || ams->addr > ams->map->end) {
		if (ams->map->groups == NULL)
			return -1;
		ams->map = map_groups__find(ams->map->groups, ams->map->type,
					    ams->addr);
		if (ams->map == NULL)
			return -1;
	}

	ams->al_addr = ams->map->map_ip(ams->map, ams->addr);
	ams->sym = map__find_symbol(ams->map, ams->al_addr, filter);

	return ams->sym ? 0 : -1;
}

391
size_t __map_groups__fprintf_maps(struct map_groups *mg,
392 393 394 395 396
				  enum map_type type, int verbose, FILE *fp)
{
	size_t printed = fprintf(fp, "%s:\n", map_type__name[type]);
	struct rb_node *nd;

397
	for (nd = rb_first(&mg->maps[type]); nd; nd = rb_next(nd)) {
398 399 400 401 402 403 404 405 406 407 408 409
		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;
}

410
size_t map_groups__fprintf_maps(struct map_groups *mg, int verbose, FILE *fp)
411 412 413
{
	size_t printed = 0, i;
	for (i = 0; i < MAP__NR_TYPES; ++i)
414
		printed += __map_groups__fprintf_maps(mg, i, verbose, fp);
415 416 417
	return printed;
}

418
static size_t __map_groups__fprintf_removed_maps(struct map_groups *mg,
419 420 421 422 423 424
						 enum map_type type,
						 int verbose, FILE *fp)
{
	struct map *pos;
	size_t printed = 0;

425
	list_for_each_entry(pos, &mg->removed_maps[type], node) {
426 427 428 429 430 431 432 433 434 435
		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;
}

436
static size_t map_groups__fprintf_removed_maps(struct map_groups *mg,
437 438 439 440
					       int verbose, FILE *fp)
{
	size_t printed = 0, i;
	for (i = 0; i < MAP__NR_TYPES; ++i)
441
		printed += __map_groups__fprintf_removed_maps(mg, i, verbose, fp);
442 443 444
	return printed;
}

445
size_t map_groups__fprintf(struct map_groups *mg, int verbose, FILE *fp)
446
{
447
	size_t printed = map_groups__fprintf_maps(mg, verbose, fp);
448
	printed += fprintf(fp, "Removed maps:\n");
449
	return printed + map_groups__fprintf_removed_maps(mg, verbose, fp);
450 451
}

452
int map_groups__fixup_overlappings(struct map_groups *mg, struct map *map,
453 454
				   int verbose, FILE *fp)
{
455
	struct rb_root *root = &mg->maps[map->type];
456
	struct rb_node *next = rb_first(root);
457
	int err = 0;
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479

	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);

480 481 482 483
			if (before == NULL) {
				err = -ENOMEM;
				goto move_map;
			}
484 485

			before->end = map->start - 1;
486
			map_groups__insert(mg, before);
487 488 489 490 491 492 493
			if (verbose >= 2)
				map__fprintf(before, fp);
		}

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

494 495 496 497
			if (after == NULL) {
				err = -ENOMEM;
				goto move_map;
			}
498 499

			after->start = map->end + 1;
500
			map_groups__insert(mg, after);
501 502 503
			if (verbose >= 2)
				map__fprintf(after, fp);
		}
504 505 506 507 508
move_map:
		/*
		 * If we have references, just move them to a separate list.
		 */
		if (pos->referenced)
509
			list_add_tail(&pos->node, &mg->removed_maps[map->type]);
510 511 512 513 514
		else
			map__delete(pos);

		if (err)
			return err;
515 516 517 518 519 520 521 522
	}

	return 0;
}

/*
 * XXX This should not really _copy_ te maps, but refcount them.
 */
523
int map_groups__clone(struct map_groups *mg,
524 525 526 527 528 529 530 531
		      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;
532
		map_groups__insert(mg, new);
533 534 535 536
	}
	return 0;
}

537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
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);
}

557
void maps__remove(struct rb_root *maps, struct map *map)
558
{
559
	rb_erase(&map->rb_node, maps);
560 561
}

562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
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;
}
581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598

struct map *maps__first(struct rb_root *maps)
{
	struct rb_node *first = rb_first(maps);

	if (first)
		return rb_entry(first, struct map, rb_node);
	return NULL;
}

struct map *maps__next(struct map *map)
{
	struct rb_node *next = rb_next(&map->rb_node);

	if (next)
		return rb_entry(next, struct map, rb_node);
	return NULL;
}