event.c 20.8 KB
Newer Older
1 2 3
#include <linux/types.h>
#include "event.h"
#include "debug.h"
4
#include "session.h"
5
#include "sort.h"
6
#include "string.h"
7
#include "strlist.h"
8
#include "thread.h"
9
#include "thread_map.h"
10

11
static const char *perf_event__names[] = {
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
	[0]					= "TOTAL",
	[PERF_RECORD_MMAP]			= "MMAP",
	[PERF_RECORD_LOST]			= "LOST",
	[PERF_RECORD_COMM]			= "COMM",
	[PERF_RECORD_EXIT]			= "EXIT",
	[PERF_RECORD_THROTTLE]			= "THROTTLE",
	[PERF_RECORD_UNTHROTTLE]		= "UNTHROTTLE",
	[PERF_RECORD_FORK]			= "FORK",
	[PERF_RECORD_READ]			= "READ",
	[PERF_RECORD_SAMPLE]			= "SAMPLE",
	[PERF_RECORD_HEADER_ATTR]		= "ATTR",
	[PERF_RECORD_HEADER_EVENT_TYPE]		= "EVENT_TYPE",
	[PERF_RECORD_HEADER_TRACING_DATA]	= "TRACING_DATA",
	[PERF_RECORD_HEADER_BUILD_ID]		= "BUILD_ID",
	[PERF_RECORD_FINISHED_ROUND]		= "FINISHED_ROUND",
27 28
};

29
const char *perf_event__name(unsigned int id)
30
{
31
	if (id >= ARRAY_SIZE(perf_event__names))
32
		return "INVALID";
33
	if (!perf_event__names[id])
34
		return "UNKNOWN";
35
	return perf_event__names[id];
36 37
}

38
static struct perf_sample synth_sample = {
39 40 41 42 43 44 45 46
	.pid	   = -1,
	.tid	   = -1,
	.time	   = -1,
	.stream_id = -1,
	.cpu	   = -1,
	.period	   = 1,
};

47 48 49
static pid_t perf_event__synthesize_comm(union perf_event *event, pid_t pid,
					 int full, perf_event__handler_t process,
					 struct perf_session *session)
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
{
	char filename[PATH_MAX];
	char bf[BUFSIZ];
	FILE *fp;
	size_t size = 0;
	DIR *tasks;
	struct dirent dirent, *next;
	pid_t tgid = 0;

	snprintf(filename, sizeof(filename), "/proc/%d/status", pid);

	fp = fopen(filename, "r");
	if (fp == NULL) {
out_race:
		/*
		 * We raced with a task exiting - just return:
		 */
		pr_debug("couldn't open %s\n", filename);
		return 0;
	}

71 72 73 74 75 76 77
	memset(&event->comm, 0, sizeof(event->comm));

	while (!event->comm.comm[0] || !event->comm.pid) {
		if (fgets(bf, sizeof(bf), fp) == NULL) {
			pr_warning("couldn't get COMM and pgid, malformed %s\n", filename);
			goto out;
		}
78 79 80 81 82 83

		if (memcmp(bf, "Name:", 5) == 0) {
			char *name = bf + 5;
			while (*name && isspace(*name))
				++name;
			size = strlen(name) - 1;
84
			memcpy(event->comm.comm, name, size++);
85 86 87 88
		} else if (memcmp(bf, "Tgid:", 5) == 0) {
			char *tgids = bf + 5;
			while (*tgids && isspace(*tgids))
				++tgids;
89
			tgid = event->comm.pid = atoi(tgids);
90 91 92
		}
	}

93
	event->comm.header.type = PERF_RECORD_COMM;
94
	size = ALIGN(size, sizeof(u64));
95 96 97 98
	memset(event->comm.comm + size, 0, session->id_hdr_size);
	event->comm.header.size = (sizeof(event->comm) -
				(sizeof(event->comm.comm) - size) +
				session->id_hdr_size);
99
	if (!full) {
100
		event->comm.tid = pid;
101

102 103
		process(event, &synth_sample, session);
		goto out;
104 105 106 107 108 109 110 111 112 113 114 115 116 117
	}

	snprintf(filename, sizeof(filename), "/proc/%d/task", pid);

	tasks = opendir(filename);
	if (tasks == NULL)
		goto out_race;

	while (!readdir_r(tasks, &dirent, &next) && next) {
		char *end;
		pid = strtol(dirent.d_name, &end, 10);
		if (*end)
			continue;

118
		event->comm.tid = pid;
119

120
		process(event, &synth_sample, session);
121 122
	}

123 124
	closedir(tasks);
out:
125 126
	fclose(fp);

127
	return tgid;
128 129
}

130 131 132 133
static int perf_event__synthesize_mmap_events(union perf_event *event,
					      pid_t pid, pid_t tgid,
					      perf_event__handler_t process,
					      struct perf_session *session)
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
{
	char filename[PATH_MAX];
	FILE *fp;

	snprintf(filename, sizeof(filename), "/proc/%d/maps", pid);

	fp = fopen(filename, "r");
	if (fp == NULL) {
		/*
		 * We raced with a task exiting - just return:
		 */
		pr_debug("couldn't open %s\n", filename);
		return -1;
	}

149 150 151 152 153 154
	event->header.type = PERF_RECORD_MMAP;
	/*
	 * Just like the kernel, see __perf_event_mmap in kernel/perf_event.c
	 */
	event->header.misc = PERF_RECORD_MISC_USER;

155 156 157 158 159 160 161 162
	while (1) {
		char bf[BUFSIZ], *pbf = bf;
		int n;
		size_t size;
		if (fgets(bf, sizeof(bf), fp) == NULL)
			break;

		/* 00400000-0040c000 r-xp 00000000 fd:01 41038  /bin/cat */
163
		n = hex2u64(pbf, &event->mmap.start);
164 165 166
		if (n < 0)
			continue;
		pbf += n + 1;
167
		n = hex2u64(pbf, &event->mmap.len);
168 169 170 171 172 173 174 175 176 177 178 179 180
		if (n < 0)
			continue;
		pbf += n + 3;
		if (*pbf == 'x') { /* vm_exec */
			char *execname = strchr(bf, '/');

			/* Catch VDSO */
			if (execname == NULL)
				execname = strstr(bf, "[vdso]");

			if (execname == NULL)
				continue;

181
			pbf += 3;
182
			n = hex2u64(pbf, &event->mmap.pgoff);
183

184 185
			size = strlen(execname);
			execname[size - 1] = '\0'; /* Remove \n */
186
			memcpy(event->mmap.filename, execname, size);
187
			size = ALIGN(size, sizeof(u64));
188 189 190 191 192 193 194 195 196
			event->mmap.len -= event->mmap.start;
			event->mmap.header.size = (sizeof(event->mmap) -
					        (sizeof(event->mmap.filename) - size));
			memset(event->mmap.filename + size, 0, session->id_hdr_size);
			event->mmap.header.size += session->id_hdr_size;
			event->mmap.pid = tgid;
			event->mmap.tid = pid;

			process(event, &synth_sample, session);
197 198 199 200 201 202 203
		}
	}

	fclose(fp);
	return 0;
}

204 205 206
int perf_event__synthesize_modules(perf_event__handler_t process,
				   struct perf_session *session,
				   struct machine *machine)
207 208
{
	struct rb_node *nd;
209
	struct map_groups *kmaps = &machine->kmaps;
210 211
	union perf_event *event = zalloc((sizeof(event->mmap) +
					  session->id_hdr_size));
212 213 214 215 216 217 218
	if (event == NULL) {
		pr_debug("Not enough memory synthesizing mmap event "
			 "for kernel modules\n");
		return -1;
	}

	event->header.type = PERF_RECORD_MMAP;
219

220 221 222 223
	/*
	 * kernel uses 0 for user space maps, see kernel/perf_event.c
	 * __perf_event_mmap
	 */
224
	if (machine__is_host(machine))
225
		event->header.misc = PERF_RECORD_MISC_KERNEL;
226
	else
227
		event->header.misc = PERF_RECORD_MISC_GUEST_KERNEL;
228 229

	for (nd = rb_first(&kmaps->maps[MAP__FUNCTION]);
230 231 232 233 234 235 236 237
	     nd; nd = rb_next(nd)) {
		size_t size;
		struct map *pos = rb_entry(nd, struct map, rb_node);

		if (pos->dso->kernel)
			continue;

		size = ALIGN(pos->dso->long_name_len + 1, sizeof(u64));
238 239 240 241 242 243 244 245 246 247
		event->mmap.header.type = PERF_RECORD_MMAP;
		event->mmap.header.size = (sizeof(event->mmap) -
				        (sizeof(event->mmap.filename) - size));
		memset(event->mmap.filename + size, 0, session->id_hdr_size);
		event->mmap.header.size += session->id_hdr_size;
		event->mmap.start = pos->start;
		event->mmap.len   = pos->end - pos->start;
		event->mmap.pid   = machine->pid;

		memcpy(event->mmap.filename, pos->dso->long_name,
248
		       pos->dso->long_name_len + 1);
249
		process(event, &synth_sample, session);
250 251
	}

252
	free(event);
253 254 255
	return 0;
}

256 257 258
static int __event__synthesize_thread(union perf_event *comm_event,
				      union perf_event *mmap_event,
				      pid_t pid, perf_event__handler_t process,
259
				      struct perf_session *session)
260
{
261
	pid_t tgid = perf_event__synthesize_comm(comm_event, pid, 1, process,
262
					    session);
263 264
	if (tgid == -1)
		return -1;
265
	return perf_event__synthesize_mmap_events(mmap_event, pid, tgid,
266
					     process, session);
267 268
}

269 270 271
int perf_event__synthesize_thread_map(struct thread_map *threads,
				      perf_event__handler_t process,
				      struct perf_session *session)
272
{
273
	union perf_event *comm_event, *mmap_event;
274
	int err = -1, thread;
275 276 277 278 279 280 281 282 283

	comm_event = malloc(sizeof(comm_event->comm) + session->id_hdr_size);
	if (comm_event == NULL)
		goto out;

	mmap_event = malloc(sizeof(mmap_event->mmap) + session->id_hdr_size);
	if (mmap_event == NULL)
		goto out_free_comm;

284 285 286 287 288 289 290 291 292
	err = 0;
	for (thread = 0; thread < threads->nr; ++thread) {
		if (__event__synthesize_thread(comm_event, mmap_event,
					       threads->map[thread],
					       process, session)) {
			err = -1;
			break;
		}
	}
293 294 295 296 297 298 299
	free(mmap_event);
out_free_comm:
	free(comm_event);
out:
	return err;
}

300 301
int perf_event__synthesize_threads(perf_event__handler_t process,
				   struct perf_session *session)
302 303 304
{
	DIR *proc;
	struct dirent dirent, *next;
305
	union perf_event *comm_event, *mmap_event;
306 307 308 309 310 311 312 313 314
	int err = -1;

	comm_event = malloc(sizeof(comm_event->comm) + session->id_hdr_size);
	if (comm_event == NULL)
		goto out;

	mmap_event = malloc(sizeof(mmap_event->mmap) + session->id_hdr_size);
	if (mmap_event == NULL)
		goto out_free_comm;
315 316

	proc = opendir("/proc");
317 318
	if (proc == NULL)
		goto out_free_mmap;
319 320 321 322 323 324 325 326

	while (!readdir_r(proc, &dirent, &next) && next) {
		char *end;
		pid_t pid = strtol(dirent.d_name, &end, 10);

		if (*end) /* only interested in proper numerical dirents */
			continue;

327 328
		__event__synthesize_thread(comm_event, mmap_event, pid,
					   process, session);
329 330 331
	}

	closedir(proc);
332 333 334 335 336 337 338
	err = 0;
out_free_mmap:
	free(mmap_event);
out_free_comm:
	free(comm_event);
out:
	return err;
339
}
340

341 342 343 344 345
struct process_symbol_args {
	const char *name;
	u64	   start;
};

346 347
static int find_symbol_cb(void *arg, const char *name, char type,
			  u64 start, u64 end __used)
348 349 350
{
	struct process_symbol_args *args = arg;

351 352 353 354 355 356
	/*
	 * Must be a function or at least an alias, as in PARISC64, where "_text" is
	 * an 'A' to the same address as "_stext".
	 */
	if (!(symbol_type__is_a(type, MAP__FUNCTION) ||
	      type == 'A') || strcmp(name, args->name))
357 358 359 360 361 362
		return 0;

	args->start = start;
	return 1;
}

363 364 365 366
int perf_event__synthesize_kernel_mmap(perf_event__handler_t process,
				       struct perf_session *session,
				       struct machine *machine,
				       const char *symbol_name)
367 368
{
	size_t size;
369 370 371 372
	const char *filename, *mmap_name;
	char path[PATH_MAX];
	char name_buff[PATH_MAX];
	struct map *map;
373
	int err;
374 375 376 377 378 379
	/*
	 * We should get this from /sys/kernel/sections/.text, but till that is
	 * available use this, and after it is use this as a fallback for older
	 * kernels.
	 */
	struct process_symbol_args args = { .name = symbol_name, };
380 381
	union perf_event *event = zalloc((sizeof(event->mmap) +
					  session->id_hdr_size));
382 383 384 385 386
	if (event == NULL) {
		pr_debug("Not enough memory synthesizing mmap event "
			 "for kernel modules\n");
		return -1;
	}
387

388
	mmap_name = machine__mmap_name(machine, name_buff, sizeof(name_buff));
389
	if (machine__is_host(machine)) {
390 391 392 393
		/*
		 * kernel uses PERF_RECORD_MISC_USER for user space maps,
		 * see kernel/perf_event.c __perf_event_mmap
		 */
394
		event->header.misc = PERF_RECORD_MISC_KERNEL;
395 396
		filename = "/proc/kallsyms";
	} else {
397
		event->header.misc = PERF_RECORD_MISC_GUEST_KERNEL;
398
		if (machine__is_default_guest(machine))
399 400
			filename = (char *) symbol_conf.default_guest_kallsyms;
		else {
401
			sprintf(path, "%s/proc/kallsyms", machine->root_dir);
402 403 404 405 406
			filename = path;
		}
	}

	if (kallsyms__parse(filename, &args, find_symbol_cb) <= 0)
407 408
		return -ENOENT;

409
	map = machine->vmlinux_maps[MAP__FUNCTION];
410
	size = snprintf(event->mmap.filename, sizeof(event->mmap.filename),
411
			"%s%s", mmap_name, symbol_name) + 1;
412
	size = ALIGN(size, sizeof(u64));
413 414 415 416 417 418 419 420 421 422 423 424
	event->mmap.header.type = PERF_RECORD_MMAP;
	event->mmap.header.size = (sizeof(event->mmap) -
			(sizeof(event->mmap.filename) - size) + session->id_hdr_size);
	event->mmap.pgoff = args.start;
	event->mmap.start = map->start;
	event->mmap.len   = map->end - event->mmap.start;
	event->mmap.pid   = machine->pid;

	err = process(event, &synth_sample, session);
	free(event);

	return err;
425 426
}

427 428 429
int perf_event__process_comm(union perf_event *event,
			     struct perf_sample *sample __used,
			     struct perf_session *session)
430
{
431
	struct thread *thread = perf_session__findnew(session, event->comm.tid);
432

433
	dump_printf(": %s:%d\n", event->comm.comm, event->comm.tid);
434

435
	if (thread == NULL || thread__set_comm(thread, event->comm.comm)) {
436 437 438 439 440 441 442
		dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
		return -1;
	}

	return 0;
}

443 444 445
int perf_event__process_lost(union perf_event *event,
			     struct perf_sample *sample __used,
			     struct perf_session *session)
446
{
447
	dump_printf(": id:%" PRIu64 ": lost:%" PRIu64 "\n",
448 449
		    event->lost.id, event->lost.lost);
	session->hists.stats.total_lost += event->lost.lost;
450 451 452
	return 0;
}

453 454
static void perf_event__set_kernel_mmap_len(union perf_event *event,
					    struct map **maps)
455
{
456 457
	maps[MAP__FUNCTION]->start = event->mmap.start;
	maps[MAP__FUNCTION]->end   = event->mmap.start + event->mmap.len;
458 459 460 461 462
	/*
	 * Be a bit paranoid here, some perf.data file came with
	 * a zero sized synthesized MMAP event for the kernel.
	 */
	if (maps[MAP__FUNCTION]->end == 0)
463
		maps[MAP__FUNCTION]->end = ~0ULL;
464 465
}

466 467
static int perf_event__process_kernel_mmap(union perf_event *event,
					   struct perf_session *session)
468
{
469
	struct map *map;
470
	char kmmap_prefix[PATH_MAX];
471
	struct machine *machine;
472 473 474
	enum dso_kernel_type kernel_type;
	bool is_kernel_mmap;

475
	machine = perf_session__findnew_machine(session, event->mmap.pid);
476
	if (!machine) {
477
		pr_err("Can't find id %d's machine\n", event->mmap.pid);
478 479
		goto out_problem;
	}
480

481
	machine__mmap_name(machine, kmmap_prefix, sizeof(kmmap_prefix));
482
	if (machine__is_host(machine))
483 484 485
		kernel_type = DSO_TYPE_KERNEL;
	else
		kernel_type = DSO_TYPE_GUEST_KERNEL;
486

487
	is_kernel_mmap = memcmp(event->mmap.filename,
488 489
				kmmap_prefix,
				strlen(kmmap_prefix)) == 0;
490 491
	if (event->mmap.filename[0] == '/' ||
	    (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
492

493 494
		char short_module_name[1024];
		char *name, *dot;
495

496 497
		if (event->mmap.filename[0] == '/') {
			name = strrchr(event->mmap.filename, '/');
498 499 500 501 502 503 504 505
			if (name == NULL)
				goto out_problem;

			++name; /* skip / */
			dot = strrchr(name, '.');
			if (dot == NULL)
				goto out_problem;
			snprintf(short_module_name, sizeof(short_module_name),
506
					"[%.*s]", (int)(dot - name), name);
507
			strxfrchar(short_module_name, '-', '_');
508
		} else
509
			strcpy(short_module_name, event->mmap.filename);
510

511 512
		map = machine__new_module(machine, event->mmap.start,
					  event->mmap.filename);
513 514 515 516 517 518 519 520
		if (map == NULL)
			goto out_problem;

		name = strdup(short_module_name);
		if (name == NULL)
			goto out_problem;

		map->dso->short_name = name;
521
		map->dso->sname_alloc = 1;
522
		map->end = map->start + event->mmap.len;
523
	} else if (is_kernel_mmap) {
524
		const char *symbol_name = (event->mmap.filename +
525 526 527 528 529
				strlen(kmmap_prefix));
		/*
		 * Should be there already, from the build-id table in
		 * the header.
		 */
530 531
		struct dso *kernel = __dsos__findnew(&machine->kernel_dsos,
						     kmmap_prefix);
532 533 534 535
		if (kernel == NULL)
			goto out_problem;

		kernel->kernel = kernel_type;
536
		if (__machine__create_kernel_maps(machine, kernel) < 0)
537 538
			goto out_problem;

539
		perf_event__set_kernel_mmap_len(event, machine->vmlinux_maps);
540 541 542 543 544 545 546 547 548 549 550 551

		/*
		 * Avoid using a zero address (kptr_restrict) for the ref reloc
		 * symbol. Effectively having zero here means that at record
		 * time /proc/sys/kernel/kptr_restrict was non zero.
		 */
		if (event->mmap.pgoff != 0) {
			perf_session__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps,
								 symbol_name,
								 event->mmap.pgoff);
		}

552
		if (machine__is_default_guest(machine)) {
553
			/*
554
			 * preload dso of guest kernel and modules
555
			 */
556 557
			dso__load(kernel, machine->vmlinux_maps[MAP__FUNCTION],
				  NULL);
558 559 560 561 562 563
		}
	}
	return 0;
out_problem:
	return -1;
}
564

565 566 567
int perf_event__process_mmap(union perf_event *event,
			     struct perf_sample *sample __used,
			     struct perf_session *session)
568
{
569
	struct machine *machine;
570 571
	struct thread *thread;
	struct map *map;
572
	u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
573
	int ret = 0;
574

575
	dump_printf(" %d/%d: [%#" PRIx64 "(%#" PRIx64 ") @ %#" PRIx64 "]: %s\n",
576 577
			event->mmap.pid, event->mmap.tid, event->mmap.start,
			event->mmap.len, event->mmap.pgoff, event->mmap.filename);
578 579 580

	if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
	    cpumode == PERF_RECORD_MISC_KERNEL) {
581
		ret = perf_event__process_kernel_mmap(event, session);
582 583
		if (ret < 0)
			goto out_problem;
584 585 586
		return 0;
	}

587
	machine = perf_session__find_host_machine(session);
588 589
	if (machine == NULL)
		goto out_problem;
590
	thread = perf_session__findnew(session, event->mmap.pid);
591 592
	if (thread == NULL)
		goto out_problem;
593 594 595
	map = map__new(&machine->user_dsos, event->mmap.start,
			event->mmap.len, event->mmap.pgoff,
			event->mmap.pid, event->mmap.filename,
596
			MAP__FUNCTION);
597
	if (map == NULL)
598 599 600 601
		goto out_problem;

	thread__insert_map(thread, map);
	return 0;
602

603 604
out_problem:
	dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
605 606 607
	return 0;
}

608 609 610
int perf_event__process_task(union perf_event *event,
			     struct perf_sample *sample __used,
			     struct perf_session *session)
611
{
612 613
	struct thread *thread = perf_session__findnew(session, event->fork.tid);
	struct thread *parent = perf_session__findnew(session, event->fork.ptid);
614

615 616
	dump_printf("(%d:%d):(%d:%d)\n", event->fork.pid, event->fork.tid,
		    event->fork.ppid, event->fork.ptid);
617

618
	if (event->header.type == PERF_RECORD_EXIT) {
619
		perf_session__remove_thread(session, thread);
620
		return 0;
621
	}
622 623 624 625 626 627 628 629 630

	if (thread == NULL || parent == NULL ||
	    thread__fork(thread, parent) < 0) {
		dump_printf("problem processing PERF_RECORD_FORK, skipping event.\n");
		return -1;
	}

	return 0;
}
631

632 633
int perf_event__process(union perf_event *event, struct perf_sample *sample,
			struct perf_session *session)
634 635 636
{
	switch (event->header.type) {
	case PERF_RECORD_COMM:
637
		perf_event__process_comm(event, sample, session);
638 639
		break;
	case PERF_RECORD_MMAP:
640
		perf_event__process_mmap(event, sample, session);
641 642 643
		break;
	case PERF_RECORD_FORK:
	case PERF_RECORD_EXIT:
644
		perf_event__process_task(event, sample, session);
645
		break;
646
	case PERF_RECORD_LOST:
647
		perf_event__process_lost(event, sample, session);
648 649 650 651 652 653 654
	default:
		break;
	}

	return 0;
}

655 656
void thread__find_addr_map(struct thread *self,
			   struct perf_session *session, u8 cpumode,
657
			   enum map_type type, pid_t pid, u64 addr,
658
			   struct addr_location *al)
659
{
660
	struct map_groups *mg = &self->mg;
661
	struct machine *machine = NULL;
662

663
	al->thread = self;
664
	al->addr = addr;
665 666
	al->cpumode = cpumode;
	al->filtered = false;
667

668
	if (cpumode == PERF_RECORD_MISC_KERNEL && perf_host) {
669
		al->level = 'k';
670
		machine = perf_session__find_host_machine(session);
671 672 673 674
		if (machine == NULL) {
			al->map = NULL;
			return;
		}
675
		mg = &machine->kmaps;
676
	} else if (cpumode == PERF_RECORD_MISC_USER && perf_host) {
677
		al->level = '.';
678
		machine = perf_session__find_host_machine(session);
679 680
	} else if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL && perf_guest) {
		al->level = 'g';
681
		machine = perf_session__find_machine(session, pid);
682
		if (machine == NULL) {
683 684 685
			al->map = NULL;
			return;
		}
686
		mg = &machine->kmaps;
687 688 689 690 691 692 693 694 695
	} else {
		/*
		 * 'u' means guest os user space.
		 * TODO: We don't support guest user space. Might support late.
		 */
		if (cpumode == PERF_RECORD_MISC_GUEST_USER && perf_guest)
			al->level = 'u';
		else
			al->level = 'H';
696
		al->map = NULL;
697 698 699 700 701 702 703 704 705 706

		if ((cpumode == PERF_RECORD_MISC_GUEST_USER ||
			cpumode == PERF_RECORD_MISC_GUEST_KERNEL) &&
			!perf_guest)
			al->filtered = true;
		if ((cpumode == PERF_RECORD_MISC_USER ||
			cpumode == PERF_RECORD_MISC_KERNEL) &&
			!perf_host)
			al->filtered = true;

707 708 709
		return;
	}
try_again:
710
	al->map = map_groups__find(mg, type, al->addr);
711 712 713 714 715 716 717 718 719 720
	if (al->map == NULL) {
		/*
		 * If this is outside of all known maps, and is a negative
		 * address, try to look it up in the kernel dso, as it might be
		 * a vsyscall or vdso (which executes in user-mode).
		 *
		 * XXX This is nasty, we should have a symbol list in the
		 * "[vdso]" dso, but for now lets use the old trick of looking
		 * in the whole kernel symbol list.
		 */
721
		if ((long long)al->addr < 0 &&
722
		    cpumode == PERF_RECORD_MISC_USER &&
723 724
		    machine && mg != &machine->kmaps) {
			mg = &machine->kmaps;
725 726
			goto try_again;
		}
727
	} else
728
		al->addr = al->map->map_ip(al->map, al->addr);
729 730 731 732
}

void thread__find_addr_location(struct thread *self,
				struct perf_session *session, u8 cpumode,
733
				enum map_type type, pid_t pid, u64 addr,
734 735 736
				struct addr_location *al,
				symbol_filter_t filter)
{
737
	thread__find_addr_map(self, session, cpumode, type, pid, addr, al);
738
	if (al->map != NULL)
739
		al->sym = map__find_symbol(al->map, al->addr, filter);
740 741
	else
		al->sym = NULL;
742 743
}

744 745 746 747 748
int perf_event__preprocess_sample(const union perf_event *event,
				  struct perf_session *session,
				  struct addr_location *al,
				  struct perf_sample *sample,
				  symbol_filter_t filter)
749
{
750 751
	u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
	struct thread *thread = perf_session__findnew(session, event->ip.pid);
752

753 754 755
	if (thread == NULL)
		return -1;

756 757 758 759
	if (symbol_conf.comm_list &&
	    !strlist__has_entry(symbol_conf.comm_list, thread->comm))
		goto out_filtered;

760
	dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
761 762 763 764 765 766 767 768 769 770
	/*
	 * Have we already created the kernel maps for the host machine?
	 *
	 * This should have happened earlier, when we processed the kernel MMAP
	 * events, but for older perf.data files there was no such thing, so do
	 * it now.
	 */
	if (cpumode == PERF_RECORD_MISC_KERNEL &&
	    session->host_machine.vmlinux_maps[MAP__FUNCTION] == NULL)
		machine__create_kernel_maps(&session->host_machine);
771

772
	thread__find_addr_map(thread, session, cpumode, MAP__FUNCTION,
773
			      event->ip.pid, event->ip.ip, al);
774 775 776
	dump_printf(" ...... dso: %s\n",
		    al->map ? al->map->dso->long_name :
			al->level == 'H' ? "[hypervisor]" : "<not found>");
777
	al->sym = NULL;
778
	al->cpu = sample->cpu;
779 780 781 782 783 784 785 786 787 788 789 790 791

	if (al->map) {
		if (symbol_conf.dso_list &&
		    (!al->map || !al->map->dso ||
		     !(strlist__has_entry(symbol_conf.dso_list,
					  al->map->dso->short_name) ||
		       (al->map->dso->short_name != al->map->dso->long_name &&
			strlist__has_entry(symbol_conf.dso_list,
					   al->map->dso->long_name)))))
			goto out_filtered;

		al->sym = map__find_symbol(al->map, al->addr, filter);
	}
792 793 794 795 796 797 798 799 800

	if (symbol_conf.sym_list && al->sym &&
	    !strlist__has_entry(symbol_conf.sym_list, al->sym->name))
		goto out_filtered;

	return 0;

out_filtered:
	al->filtered = true;
801 802
	return 0;
}