event.c 21.0 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 39 40 41 42 43 44
int perf_sample_size(u64 sample_type)
{
	u64 mask = sample_type & PERF_SAMPLE_MASK;
	int size = 0;
	int i;

	for (i = 0; i < 64; i++) {
45
		if (mask & (1ULL << i))
46 47 48 49 50 51 52 53
			size++;
	}

	size *= sizeof(u64);

	return size;
}

54
static struct perf_sample synth_sample = {
55 56 57 58 59 60 61 62
	.pid	   = -1,
	.tid	   = -1,
	.time	   = -1,
	.stream_id = -1,
	.cpu	   = -1,
	.period	   = 1,
};

63 64 65
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)
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
{
	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;
	}

87 88 89 90 91 92 93
	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;
		}
94 95 96 97 98 99

		if (memcmp(bf, "Name:", 5) == 0) {
			char *name = bf + 5;
			while (*name && isspace(*name))
				++name;
			size = strlen(name) - 1;
100
			memcpy(event->comm.comm, name, size++);
101 102 103 104
		} else if (memcmp(bf, "Tgid:", 5) == 0) {
			char *tgids = bf + 5;
			while (*tgids && isspace(*tgids))
				++tgids;
105
			tgid = event->comm.pid = atoi(tgids);
106 107 108
		}
	}

109
	event->comm.header.type = PERF_RECORD_COMM;
110
	size = ALIGN(size, sizeof(u64));
111 112 113 114
	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);
115
	if (!full) {
116
		event->comm.tid = pid;
117

118 119
		process(event, &synth_sample, session);
		goto out;
120 121 122 123 124 125 126 127 128 129 130 131 132 133
	}

	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;

134
		event->comm.tid = pid;
135

136
		process(event, &synth_sample, session);
137 138
	}

139 140
	closedir(tasks);
out:
141 142
	fclose(fp);

143
	return tgid;
144 145
}

146 147 148 149
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)
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
{
	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;
	}

165 166 167 168 169 170
	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;

171 172 173 174 175 176 177 178
	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 */
179
		n = hex2u64(pbf, &event->mmap.start);
180 181 182
		if (n < 0)
			continue;
		pbf += n + 1;
183
		n = hex2u64(pbf, &event->mmap.len);
184 185 186 187 188 189 190 191 192 193 194 195 196
		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;

197
			pbf += 3;
198
			n = hex2u64(pbf, &event->mmap.pgoff);
199

200 201
			size = strlen(execname);
			execname[size - 1] = '\0'; /* Remove \n */
202
			memcpy(event->mmap.filename, execname, size);
203
			size = ALIGN(size, sizeof(u64));
204 205 206 207 208 209 210 211 212
			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);
213 214 215 216 217 218 219
		}
	}

	fclose(fp);
	return 0;
}

220 221 222
int perf_event__synthesize_modules(perf_event__handler_t process,
				   struct perf_session *session,
				   struct machine *machine)
223 224
{
	struct rb_node *nd;
225
	struct map_groups *kmaps = &machine->kmaps;
226 227
	union perf_event *event = zalloc((sizeof(event->mmap) +
					  session->id_hdr_size));
228 229 230 231 232 233 234
	if (event == NULL) {
		pr_debug("Not enough memory synthesizing mmap event "
			 "for kernel modules\n");
		return -1;
	}

	event->header.type = PERF_RECORD_MMAP;
235

236 237 238 239
	/*
	 * kernel uses 0 for user space maps, see kernel/perf_event.c
	 * __perf_event_mmap
	 */
240
	if (machine__is_host(machine))
241
		event->header.misc = PERF_RECORD_MISC_KERNEL;
242
	else
243
		event->header.misc = PERF_RECORD_MISC_GUEST_KERNEL;
244 245

	for (nd = rb_first(&kmaps->maps[MAP__FUNCTION]);
246 247 248 249 250 251 252 253
	     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));
254 255 256 257 258 259 260 261 262 263
		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,
264
		       pos->dso->long_name_len + 1);
265
		process(event, &synth_sample, session);
266 267
	}

268
	free(event);
269 270 271
	return 0;
}

272 273 274
static int __event__synthesize_thread(union perf_event *comm_event,
				      union perf_event *mmap_event,
				      pid_t pid, perf_event__handler_t process,
275
				      struct perf_session *session)
276
{
277
	pid_t tgid = perf_event__synthesize_comm(comm_event, pid, 1, process,
278
					    session);
279 280
	if (tgid == -1)
		return -1;
281
	return perf_event__synthesize_mmap_events(mmap_event, pid, tgid,
282
					     process, session);
283 284
}

285 286 287
int perf_event__synthesize_thread_map(struct thread_map *threads,
				      perf_event__handler_t process,
				      struct perf_session *session)
288
{
289
	union perf_event *comm_event, *mmap_event;
290
	int err = -1, thread;
291 292 293 294 295 296 297 298 299

	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;

300 301 302 303 304 305 306 307 308
	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;
		}
	}
309 310 311 312 313 314 315
	free(mmap_event);
out_free_comm:
	free(comm_event);
out:
	return err;
}

316 317
int perf_event__synthesize_threads(perf_event__handler_t process,
				   struct perf_session *session)
318 319 320
{
	DIR *proc;
	struct dirent dirent, *next;
321
	union perf_event *comm_event, *mmap_event;
322 323 324 325 326 327 328 329 330
	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;
331 332

	proc = opendir("/proc");
333 334
	if (proc == NULL)
		goto out_free_mmap;
335 336 337 338 339 340 341 342

	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;

343 344
		__event__synthesize_thread(comm_event, mmap_event, pid,
					   process, session);
345 346 347
	}

	closedir(proc);
348 349 350 351 352 353 354
	err = 0;
out_free_mmap:
	free(mmap_event);
out_free_comm:
	free(comm_event);
out:
	return err;
355
}
356

357 358 359 360 361
struct process_symbol_args {
	const char *name;
	u64	   start;
};

362 363
static int find_symbol_cb(void *arg, const char *name, char type,
			  u64 start, u64 end __used)
364 365 366
{
	struct process_symbol_args *args = arg;

367 368 369 370 371 372
	/*
	 * 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))
373 374 375 376 377 378
		return 0;

	args->start = start;
	return 1;
}

379 380 381 382
int perf_event__synthesize_kernel_mmap(perf_event__handler_t process,
				       struct perf_session *session,
				       struct machine *machine,
				       const char *symbol_name)
383 384
{
	size_t size;
385 386 387 388
	const char *filename, *mmap_name;
	char path[PATH_MAX];
	char name_buff[PATH_MAX];
	struct map *map;
389
	int err;
390 391 392 393 394 395
	/*
	 * 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, };
396 397
	union perf_event *event = zalloc((sizeof(event->mmap) +
					  session->id_hdr_size));
398 399 400 401 402
	if (event == NULL) {
		pr_debug("Not enough memory synthesizing mmap event "
			 "for kernel modules\n");
		return -1;
	}
403

404
	mmap_name = machine__mmap_name(machine, name_buff, sizeof(name_buff));
405
	if (machine__is_host(machine)) {
406 407 408 409
		/*
		 * kernel uses PERF_RECORD_MISC_USER for user space maps,
		 * see kernel/perf_event.c __perf_event_mmap
		 */
410
		event->header.misc = PERF_RECORD_MISC_KERNEL;
411 412
		filename = "/proc/kallsyms";
	} else {
413
		event->header.misc = PERF_RECORD_MISC_GUEST_KERNEL;
414
		if (machine__is_default_guest(machine))
415 416
			filename = (char *) symbol_conf.default_guest_kallsyms;
		else {
417
			sprintf(path, "%s/proc/kallsyms", machine->root_dir);
418 419 420 421 422
			filename = path;
		}
	}

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

425
	map = machine->vmlinux_maps[MAP__FUNCTION];
426
	size = snprintf(event->mmap.filename, sizeof(event->mmap.filename),
427
			"%s%s", mmap_name, symbol_name) + 1;
428
	size = ALIGN(size, sizeof(u64));
429 430 431 432 433 434 435 436 437 438 439 440
	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;
441 442
}

443 444 445
int perf_event__process_comm(union perf_event *event,
			     struct perf_sample *sample __used,
			     struct perf_session *session)
446
{
447
	struct thread *thread = perf_session__findnew(session, event->comm.tid);
448

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

451
	if (thread == NULL || thread__set_comm(thread, event->comm.comm)) {
452 453 454 455 456 457 458
		dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
		return -1;
	}

	return 0;
}

459 460 461
int perf_event__process_lost(union perf_event *event,
			     struct perf_sample *sample __used,
			     struct perf_session *session)
462
{
463
	dump_printf(": id:%" PRIu64 ": lost:%" PRIu64 "\n",
464 465
		    event->lost.id, event->lost.lost);
	session->hists.stats.total_lost += event->lost.lost;
466 467 468
	return 0;
}

469 470
static void perf_event__set_kernel_mmap_len(union perf_event *event,
					    struct map **maps)
471
{
472 473
	maps[MAP__FUNCTION]->start = event->mmap.start;
	maps[MAP__FUNCTION]->end   = event->mmap.start + event->mmap.len;
474 475 476 477 478
	/*
	 * 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)
479
		maps[MAP__FUNCTION]->end = ~0ULL;
480 481
}

482 483
static int perf_event__process_kernel_mmap(union perf_event *event,
					   struct perf_session *session)
484
{
485
	struct map *map;
486
	char kmmap_prefix[PATH_MAX];
487
	struct machine *machine;
488 489 490
	enum dso_kernel_type kernel_type;
	bool is_kernel_mmap;

491
	machine = perf_session__findnew_machine(session, event->mmap.pid);
492
	if (!machine) {
493
		pr_err("Can't find id %d's machine\n", event->mmap.pid);
494 495
		goto out_problem;
	}
496

497
	machine__mmap_name(machine, kmmap_prefix, sizeof(kmmap_prefix));
498
	if (machine__is_host(machine))
499 500 501
		kernel_type = DSO_TYPE_KERNEL;
	else
		kernel_type = DSO_TYPE_GUEST_KERNEL;
502

503
	is_kernel_mmap = memcmp(event->mmap.filename,
504 505
				kmmap_prefix,
				strlen(kmmap_prefix)) == 0;
506 507
	if (event->mmap.filename[0] == '/' ||
	    (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
508

509 510
		char short_module_name[1024];
		char *name, *dot;
511

512 513
		if (event->mmap.filename[0] == '/') {
			name = strrchr(event->mmap.filename, '/');
514 515 516 517 518 519 520 521
			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),
522
					"[%.*s]", (int)(dot - name), name);
523
			strxfrchar(short_module_name, '-', '_');
524
		} else
525
			strcpy(short_module_name, event->mmap.filename);
526

527 528
		map = machine__new_module(machine, event->mmap.start,
					  event->mmap.filename);
529 530 531 532 533 534 535 536
		if (map == NULL)
			goto out_problem;

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

		map->dso->short_name = name;
537
		map->dso->sname_alloc = 1;
538
		map->end = map->start + event->mmap.len;
539
	} else if (is_kernel_mmap) {
540
		const char *symbol_name = (event->mmap.filename +
541 542 543 544 545
				strlen(kmmap_prefix));
		/*
		 * Should be there already, from the build-id table in
		 * the header.
		 */
546 547
		struct dso *kernel = __dsos__findnew(&machine->kernel_dsos,
						     kmmap_prefix);
548 549 550 551
		if (kernel == NULL)
			goto out_problem;

		kernel->kernel = kernel_type;
552
		if (__machine__create_kernel_maps(machine, kernel) < 0)
553 554
			goto out_problem;

555
		perf_event__set_kernel_mmap_len(event, machine->vmlinux_maps);
556 557 558 559 560 561 562 563 564 565 566 567

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

568
		if (machine__is_default_guest(machine)) {
569
			/*
570
			 * preload dso of guest kernel and modules
571
			 */
572 573
			dso__load(kernel, machine->vmlinux_maps[MAP__FUNCTION],
				  NULL);
574 575 576 577 578 579
		}
	}
	return 0;
out_problem:
	return -1;
}
580

581 582 583
int perf_event__process_mmap(union perf_event *event,
			     struct perf_sample *sample __used,
			     struct perf_session *session)
584
{
585
	struct machine *machine;
586 587
	struct thread *thread;
	struct map *map;
588
	u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
589
	int ret = 0;
590

591
	dump_printf(" %d/%d: [%#" PRIx64 "(%#" PRIx64 ") @ %#" PRIx64 "]: %s\n",
592 593
			event->mmap.pid, event->mmap.tid, event->mmap.start,
			event->mmap.len, event->mmap.pgoff, event->mmap.filename);
594 595 596

	if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
	    cpumode == PERF_RECORD_MISC_KERNEL) {
597
		ret = perf_event__process_kernel_mmap(event, session);
598 599
		if (ret < 0)
			goto out_problem;
600 601 602
		return 0;
	}

603
	machine = perf_session__find_host_machine(session);
604 605
	if (machine == NULL)
		goto out_problem;
606
	thread = perf_session__findnew(session, event->mmap.pid);
607 608
	if (thread == NULL)
		goto out_problem;
609 610 611
	map = map__new(&machine->user_dsos, event->mmap.start,
			event->mmap.len, event->mmap.pgoff,
			event->mmap.pid, event->mmap.filename,
612
			MAP__FUNCTION);
613
	if (map == NULL)
614 615 616 617
		goto out_problem;

	thread__insert_map(thread, map);
	return 0;
618

619 620
out_problem:
	dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
621 622 623
	return 0;
}

624 625 626
int perf_event__process_task(union perf_event *event,
			     struct perf_sample *sample __used,
			     struct perf_session *session)
627
{
628 629
	struct thread *thread = perf_session__findnew(session, event->fork.tid);
	struct thread *parent = perf_session__findnew(session, event->fork.ptid);
630

631 632
	dump_printf("(%d:%d):(%d:%d)\n", event->fork.pid, event->fork.tid,
		    event->fork.ppid, event->fork.ptid);
633

634
	if (event->header.type == PERF_RECORD_EXIT) {
635
		perf_session__remove_thread(session, thread);
636
		return 0;
637
	}
638 639 640 641 642 643 644 645 646

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

	return 0;
}
647

648 649
int perf_event__process(union perf_event *event, struct perf_sample *sample,
			struct perf_session *session)
650 651 652
{
	switch (event->header.type) {
	case PERF_RECORD_COMM:
653
		perf_event__process_comm(event, sample, session);
654 655
		break;
	case PERF_RECORD_MMAP:
656
		perf_event__process_mmap(event, sample, session);
657 658 659
		break;
	case PERF_RECORD_FORK:
	case PERF_RECORD_EXIT:
660
		perf_event__process_task(event, sample, session);
661
		break;
662
	case PERF_RECORD_LOST:
663
		perf_event__process_lost(event, sample, session);
664 665 666 667 668 669 670
	default:
		break;
	}

	return 0;
}

671 672
void thread__find_addr_map(struct thread *self,
			   struct perf_session *session, u8 cpumode,
673
			   enum map_type type, pid_t pid, u64 addr,
674
			   struct addr_location *al)
675
{
676
	struct map_groups *mg = &self->mg;
677
	struct machine *machine = NULL;
678

679
	al->thread = self;
680
	al->addr = addr;
681 682
	al->cpumode = cpumode;
	al->filtered = false;
683

684
	if (cpumode == PERF_RECORD_MISC_KERNEL && perf_host) {
685
		al->level = 'k';
686
		machine = perf_session__find_host_machine(session);
687 688 689 690
		if (machine == NULL) {
			al->map = NULL;
			return;
		}
691
		mg = &machine->kmaps;
692
	} else if (cpumode == PERF_RECORD_MISC_USER && perf_host) {
693
		al->level = '.';
694
		machine = perf_session__find_host_machine(session);
695 696
	} else if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL && perf_guest) {
		al->level = 'g';
697
		machine = perf_session__find_machine(session, pid);
698
		if (machine == NULL) {
699 700 701
			al->map = NULL;
			return;
		}
702
		mg = &machine->kmaps;
703 704 705 706 707 708 709 710 711
	} 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';
712
		al->map = NULL;
713 714 715 716 717 718 719 720 721 722

		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;

723 724 725
		return;
	}
try_again:
726
	al->map = map_groups__find(mg, type, al->addr);
727 728 729 730 731 732 733 734 735 736
	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.
		 */
737
		if ((long long)al->addr < 0 &&
738
		    cpumode == PERF_RECORD_MISC_USER &&
739 740
		    machine && mg != &machine->kmaps) {
			mg = &machine->kmaps;
741 742
			goto try_again;
		}
743
	} else
744
		al->addr = al->map->map_ip(al->map, al->addr);
745 746 747 748
}

void thread__find_addr_location(struct thread *self,
				struct perf_session *session, u8 cpumode,
749
				enum map_type type, pid_t pid, u64 addr,
750 751 752
				struct addr_location *al,
				symbol_filter_t filter)
{
753
	thread__find_addr_map(self, session, cpumode, type, pid, addr, al);
754
	if (al->map != NULL)
755
		al->sym = map__find_symbol(al->map, al->addr, filter);
756 757
	else
		al->sym = NULL;
758 759
}

760 761 762 763 764
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)
765
{
766 767
	u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
	struct thread *thread = perf_session__findnew(session, event->ip.pid);
768

769 770 771
	if (thread == NULL)
		return -1;

772 773 774 775
	if (symbol_conf.comm_list &&
	    !strlist__has_entry(symbol_conf.comm_list, thread->comm))
		goto out_filtered;

776
	dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
777 778 779 780 781 782 783 784 785 786
	/*
	 * 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);
787

788
	thread__find_addr_map(thread, session, cpumode, MAP__FUNCTION,
789
			      event->ip.pid, event->ip.ip, al);
790 791 792
	dump_printf(" ...... dso: %s\n",
		    al->map ? al->map->dso->long_name :
			al->level == 'H' ? "[hypervisor]" : "<not found>");
793
	al->sym = NULL;
794
	al->cpu = sample->cpu;
795 796 797 798 799 800 801 802 803 804 805 806 807

	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);
	}
808 809 810 811 812 813 814 815 816

	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;
817 818
	return 0;
}