event.c 20.9 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
		if (n < 0)
			continue;
		pbf += n + 3;
		if (*pbf == 'x') { /* vm_exec */
172
			char anonstr[] = "//anon\n";
173 174 175 176 177 178
			char *execname = strchr(bf, '/');

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

179 180 181 182
			/* Catch anonymous mmaps */
			if ((execname == NULL) && !strstr(bf, "["))
				execname = anonstr;

183 184 185
			if (execname == NULL)
				continue;

186
			pbf += 3;
187
			n = hex2u64(pbf, &event->mmap.pgoff);
188

189 190
			size = strlen(execname);
			execname[size - 1] = '\0'; /* Remove \n */
191
			memcpy(event->mmap.filename, execname, size);
192
			size = ALIGN(size, sizeof(u64));
193 194 195 196 197 198 199 200 201
			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);
202 203 204 205 206 207 208
		}
	}

	fclose(fp);
	return 0;
}

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

	event->header.type = PERF_RECORD_MMAP;
224

225 226 227 228
	/*
	 * kernel uses 0 for user space maps, see kernel/perf_event.c
	 * __perf_event_mmap
	 */
229
	if (machine__is_host(machine))
230
		event->header.misc = PERF_RECORD_MISC_KERNEL;
231
	else
232
		event->header.misc = PERF_RECORD_MISC_GUEST_KERNEL;
233 234

	for (nd = rb_first(&kmaps->maps[MAP__FUNCTION]);
235 236 237 238 239 240 241 242
	     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));
243 244 245 246 247 248 249 250 251 252
		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,
253
		       pos->dso->long_name_len + 1);
254
		process(event, &synth_sample, session);
255 256
	}

257
	free(event);
258 259 260
	return 0;
}

261 262 263
static int __event__synthesize_thread(union perf_event *comm_event,
				      union perf_event *mmap_event,
				      pid_t pid, perf_event__handler_t process,
264
				      struct perf_session *session)
265
{
266
	pid_t tgid = perf_event__synthesize_comm(comm_event, pid, 1, process,
267
					    session);
268 269
	if (tgid == -1)
		return -1;
270
	return perf_event__synthesize_mmap_events(mmap_event, pid, tgid,
271
					     process, session);
272 273
}

274 275 276
int perf_event__synthesize_thread_map(struct thread_map *threads,
				      perf_event__handler_t process,
				      struct perf_session *session)
277
{
278
	union perf_event *comm_event, *mmap_event;
279
	int err = -1, thread;
280 281 282 283 284 285 286 287 288

	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;

289 290 291 292 293 294 295 296 297
	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;
		}
	}
298 299 300 301 302 303 304
	free(mmap_event);
out_free_comm:
	free(comm_event);
out:
	return err;
}

305 306
int perf_event__synthesize_threads(perf_event__handler_t process,
				   struct perf_session *session)
307 308 309
{
	DIR *proc;
	struct dirent dirent, *next;
310
	union perf_event *comm_event, *mmap_event;
311 312 313 314 315 316 317 318 319
	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;
320 321

	proc = opendir("/proc");
322 323
	if (proc == NULL)
		goto out_free_mmap;
324 325 326 327 328 329 330 331

	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;

332 333
		__event__synthesize_thread(comm_event, mmap_event, pid,
					   process, session);
334 335 336
	}

	closedir(proc);
337 338 339 340 341 342 343
	err = 0;
out_free_mmap:
	free(mmap_event);
out_free_comm:
	free(comm_event);
out:
	return err;
344
}
345

346 347 348 349 350
struct process_symbol_args {
	const char *name;
	u64	   start;
};

351 352
static int find_symbol_cb(void *arg, const char *name, char type,
			  u64 start, u64 end __used)
353 354 355
{
	struct process_symbol_args *args = arg;

356 357 358 359 360 361
	/*
	 * 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))
362 363 364 365 366 367
		return 0;

	args->start = start;
	return 1;
}

368 369 370 371
int perf_event__synthesize_kernel_mmap(perf_event__handler_t process,
				       struct perf_session *session,
				       struct machine *machine,
				       const char *symbol_name)
372 373
{
	size_t size;
374 375 376 377
	const char *filename, *mmap_name;
	char path[PATH_MAX];
	char name_buff[PATH_MAX];
	struct map *map;
378
	int err;
379 380 381 382 383 384
	/*
	 * 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, };
385 386
	union perf_event *event = zalloc((sizeof(event->mmap) +
					  session->id_hdr_size));
387 388 389 390 391
	if (event == NULL) {
		pr_debug("Not enough memory synthesizing mmap event "
			 "for kernel modules\n");
		return -1;
	}
392

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

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

414
	map = machine->vmlinux_maps[MAP__FUNCTION];
415
	size = snprintf(event->mmap.filename, sizeof(event->mmap.filename),
416
			"%s%s", mmap_name, symbol_name) + 1;
417
	size = ALIGN(size, sizeof(u64));
418 419 420 421 422 423 424 425 426 427 428 429
	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;
430 431
}

432 433 434
int perf_event__process_comm(union perf_event *event,
			     struct perf_sample *sample __used,
			     struct perf_session *session)
435
{
436
	struct thread *thread = perf_session__findnew(session, event->comm.tid);
437

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

440
	if (thread == NULL || thread__set_comm(thread, event->comm.comm)) {
441 442 443 444 445 446 447
		dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
		return -1;
	}

	return 0;
}

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

458 459
static void perf_event__set_kernel_mmap_len(union perf_event *event,
					    struct map **maps)
460
{
461 462
	maps[MAP__FUNCTION]->start = event->mmap.start;
	maps[MAP__FUNCTION]->end   = event->mmap.start + event->mmap.len;
463 464 465 466 467
	/*
	 * 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)
468
		maps[MAP__FUNCTION]->end = ~0ULL;
469 470
}

471 472
static int perf_event__process_kernel_mmap(union perf_event *event,
					   struct perf_session *session)
473
{
474
	struct map *map;
475
	char kmmap_prefix[PATH_MAX];
476
	struct machine *machine;
477 478 479
	enum dso_kernel_type kernel_type;
	bool is_kernel_mmap;

480
	machine = perf_session__findnew_machine(session, event->mmap.pid);
481
	if (!machine) {
482
		pr_err("Can't find id %d's machine\n", event->mmap.pid);
483 484
		goto out_problem;
	}
485

486
	machine__mmap_name(machine, kmmap_prefix, sizeof(kmmap_prefix));
487
	if (machine__is_host(machine))
488 489 490
		kernel_type = DSO_TYPE_KERNEL;
	else
		kernel_type = DSO_TYPE_GUEST_KERNEL;
491

492
	is_kernel_mmap = memcmp(event->mmap.filename,
493 494
				kmmap_prefix,
				strlen(kmmap_prefix)) == 0;
495 496
	if (event->mmap.filename[0] == '/' ||
	    (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
497

498 499
		char short_module_name[1024];
		char *name, *dot;
500

501 502
		if (event->mmap.filename[0] == '/') {
			name = strrchr(event->mmap.filename, '/');
503 504 505 506 507 508 509 510
			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),
511
					"[%.*s]", (int)(dot - name), name);
512
			strxfrchar(short_module_name, '-', '_');
513
		} else
514
			strcpy(short_module_name, event->mmap.filename);
515

516 517
		map = machine__new_module(machine, event->mmap.start,
					  event->mmap.filename);
518 519 520 521 522 523 524 525
		if (map == NULL)
			goto out_problem;

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

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

		kernel->kernel = kernel_type;
541
		if (__machine__create_kernel_maps(machine, kernel) < 0)
542 543
			goto out_problem;

544
		perf_event__set_kernel_mmap_len(event, machine->vmlinux_maps);
545 546 547 548 549 550 551 552 553 554 555 556

		/*
		 * 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);
		}

557
		if (machine__is_default_guest(machine)) {
558
			/*
559
			 * preload dso of guest kernel and modules
560
			 */
561 562
			dso__load(kernel, machine->vmlinux_maps[MAP__FUNCTION],
				  NULL);
563 564 565 566 567 568
		}
	}
	return 0;
out_problem:
	return -1;
}
569

570 571 572
int perf_event__process_mmap(union perf_event *event,
			     struct perf_sample *sample __used,
			     struct perf_session *session)
573
{
574
	struct machine *machine;
575 576
	struct thread *thread;
	struct map *map;
577
	u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
578
	int ret = 0;
579

580
	dump_printf(" %d/%d: [%#" PRIx64 "(%#" PRIx64 ") @ %#" PRIx64 "]: %s\n",
581 582
			event->mmap.pid, event->mmap.tid, event->mmap.start,
			event->mmap.len, event->mmap.pgoff, event->mmap.filename);
583 584 585

	if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
	    cpumode == PERF_RECORD_MISC_KERNEL) {
586
		ret = perf_event__process_kernel_mmap(event, session);
587 588
		if (ret < 0)
			goto out_problem;
589 590 591
		return 0;
	}

592
	machine = perf_session__find_host_machine(session);
593 594
	if (machine == NULL)
		goto out_problem;
595
	thread = perf_session__findnew(session, event->mmap.pid);
596 597
	if (thread == NULL)
		goto out_problem;
598 599 600
	map = map__new(&machine->user_dsos, event->mmap.start,
			event->mmap.len, event->mmap.pgoff,
			event->mmap.pid, event->mmap.filename,
601
			MAP__FUNCTION);
602
	if (map == NULL)
603 604 605 606
		goto out_problem;

	thread__insert_map(thread, map);
	return 0;
607

608 609
out_problem:
	dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
610 611 612
	return 0;
}

613 614 615
int perf_event__process_task(union perf_event *event,
			     struct perf_sample *sample __used,
			     struct perf_session *session)
616
{
617 618
	struct thread *thread = perf_session__findnew(session, event->fork.tid);
	struct thread *parent = perf_session__findnew(session, event->fork.ptid);
619

620 621
	dump_printf("(%d:%d):(%d:%d)\n", event->fork.pid, event->fork.tid,
		    event->fork.ppid, event->fork.ptid);
622

623
	if (event->header.type == PERF_RECORD_EXIT) {
624
		perf_session__remove_thread(session, thread);
625
		return 0;
626
	}
627 628 629 630 631 632 633 634 635

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

	return 0;
}
636

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

	return 0;
}

660 661
void thread__find_addr_map(struct thread *self,
			   struct perf_session *session, u8 cpumode,
662
			   enum map_type type, pid_t pid, u64 addr,
663
			   struct addr_location *al)
664
{
665
	struct map_groups *mg = &self->mg;
666
	struct machine *machine = NULL;
667

668
	al->thread = self;
669
	al->addr = addr;
670 671
	al->cpumode = cpumode;
	al->filtered = false;
672

673
	if (cpumode == PERF_RECORD_MISC_KERNEL && perf_host) {
674
		al->level = 'k';
675
		machine = perf_session__find_host_machine(session);
676 677 678 679
		if (machine == NULL) {
			al->map = NULL;
			return;
		}
680
		mg = &machine->kmaps;
681
	} else if (cpumode == PERF_RECORD_MISC_USER && perf_host) {
682
		al->level = '.';
683
		machine = perf_session__find_host_machine(session);
684 685
	} else if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL && perf_guest) {
		al->level = 'g';
686
		machine = perf_session__find_machine(session, pid);
687
		if (machine == NULL) {
688 689 690
			al->map = NULL;
			return;
		}
691
		mg = &machine->kmaps;
692 693 694 695 696 697 698 699 700
	} 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';
701
		al->map = NULL;
702 703 704 705 706 707 708 709 710 711

		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;

712 713 714
		return;
	}
try_again:
715
	al->map = map_groups__find(mg, type, al->addr);
716 717 718 719 720 721 722 723 724 725
	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.
		 */
726
		if ((long long)al->addr < 0 &&
727
		    cpumode == PERF_RECORD_MISC_USER &&
728 729
		    machine && mg != &machine->kmaps) {
			mg = &machine->kmaps;
730 731
			goto try_again;
		}
732
	} else
733
		al->addr = al->map->map_ip(al->map, al->addr);
734 735 736 737
}

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

749 750 751 752 753
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)
754
{
755 756
	u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
	struct thread *thread = perf_session__findnew(session, event->ip.pid);
757

758 759 760
	if (thread == NULL)
		return -1;

761 762 763 764
	if (symbol_conf.comm_list &&
	    !strlist__has_entry(symbol_conf.comm_list, thread->comm))
		goto out_filtered;

765
	dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
766 767 768 769 770 771 772 773 774 775
	/*
	 * 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);
776

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

	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);
	}
797 798 799 800 801 802 803 804 805

	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;
806 807
	return 0;
}