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

10
static const char *perf_event__names[] = {
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
	[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",
26 27
};

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

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

46
static pid_t perf_event__synthesize_comm(struct perf_tool *tool,
47
					 union perf_event *event, pid_t pid,
48
					 int full, perf_event__handler_t process,
49
					 struct machine *machine)
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
	memset(event->comm.comm + size, 0, machine->id_hdr_size);
96 97
	event->comm.header.size = (sizeof(event->comm) -
				(sizeof(event->comm.comm) - size) +
98
				machine->id_hdr_size);
99
	if (!full) {
100
		event->comm.tid = pid;
101

102
		process(tool, event, &synth_sample, machine);
103
		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(tool, event, &synth_sample, machine);
121 122
	}

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

127
	return tgid;
128 129
}

130
static int perf_event__synthesize_mmap_events(struct perf_tool *tool,
131
					      union perf_event *event,
132 133
					      pid_t pid, pid_t tgid,
					      perf_event__handler_t process,
134
					      struct machine *machine)
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
{
	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;
	}

150 151 152 153 154 155
	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;

156 157 158 159 160 161 162 163
	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 */
164
		n = hex2u64(pbf, &event->mmap.start);
165 166 167
		if (n < 0)
			continue;
		pbf += n + 1;
168
		n = hex2u64(pbf, &event->mmap.len);
169 170 171 172
		if (n < 0)
			continue;
		pbf += n + 3;
		if (*pbf == 'x') { /* vm_exec */
173
			char anonstr[] = "//anon\n";
174 175 176 177 178 179
			char *execname = strchr(bf, '/');

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

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

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

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

190 191
			size = strlen(execname);
			execname[size - 1] = '\0'; /* Remove \n */
192
			memcpy(event->mmap.filename, execname, size);
193
			size = ALIGN(size, sizeof(u64));
194 195 196
			event->mmap.len -= event->mmap.start;
			event->mmap.header.size = (sizeof(event->mmap) -
					        (sizeof(event->mmap.filename) - size));
197 198
			memset(event->mmap.filename + size, 0, machine->id_hdr_size);
			event->mmap.header.size += machine->id_hdr_size;
199 200 201
			event->mmap.pid = tgid;
			event->mmap.tid = pid;

202
			process(tool, event, &synth_sample, machine);
203 204 205 206 207 208 209
		}
	}

	fclose(fp);
	return 0;
}

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

	event->header.type = PERF_RECORD_MMAP;
225

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

	for (nd = rb_first(&kmaps->maps[MAP__FUNCTION]);
236 237 238 239 240 241 242 243
	     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));
244 245 246
		event->mmap.header.type = PERF_RECORD_MMAP;
		event->mmap.header.size = (sizeof(event->mmap) -
				        (sizeof(event->mmap.filename) - size));
247 248
		memset(event->mmap.filename + size, 0, machine->id_hdr_size);
		event->mmap.header.size += machine->id_hdr_size;
249 250 251 252 253
		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,
254
		       pos->dso->long_name_len + 1);
255
		process(tool, event, &synth_sample, machine);
256 257
	}

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

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

276
int perf_event__synthesize_thread_map(struct perf_tool *tool,
277
				      struct thread_map *threads,
278
				      perf_event__handler_t process,
279
				      struct machine *machine)
280
{
281
	union perf_event *comm_event, *mmap_event;
282
	int err = -1, thread;
283

284
	comm_event = malloc(sizeof(comm_event->comm) + machine->id_hdr_size);
285 286 287
	if (comm_event == NULL)
		goto out;

288
	mmap_event = malloc(sizeof(mmap_event->mmap) + machine->id_hdr_size);
289 290 291
	if (mmap_event == NULL)
		goto out_free_comm;

292 293 294 295
	err = 0;
	for (thread = 0; thread < threads->nr; ++thread) {
		if (__event__synthesize_thread(comm_event, mmap_event,
					       threads->map[thread],
296
					       process, tool, machine)) {
297 298 299 300
			err = -1;
			break;
		}
	}
301 302 303 304 305 306 307
	free(mmap_event);
out_free_comm:
	free(comm_event);
out:
	return err;
}

308
int perf_event__synthesize_threads(struct perf_tool *tool,
309
				   perf_event__handler_t process,
310
				   struct machine *machine)
311 312 313
{
	DIR *proc;
	struct dirent dirent, *next;
314
	union perf_event *comm_event, *mmap_event;
315 316
	int err = -1;

317
	comm_event = malloc(sizeof(comm_event->comm) + machine->id_hdr_size);
318 319 320
	if (comm_event == NULL)
		goto out;

321
	mmap_event = malloc(sizeof(mmap_event->mmap) + machine->id_hdr_size);
322 323
	if (mmap_event == NULL)
		goto out_free_comm;
324 325

	proc = opendir("/proc");
326 327
	if (proc == NULL)
		goto out_free_mmap;
328 329 330 331 332 333 334 335

	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;

336
		__event__synthesize_thread(comm_event, mmap_event, pid,
337
					   process, tool, machine);
338 339 340
	}

	closedir(proc);
341 342 343 344 345 346 347
	err = 0;
out_free_mmap:
	free(mmap_event);
out_free_comm:
	free(comm_event);
out:
	return err;
348
}
349

350 351 352 353 354
struct process_symbol_args {
	const char *name;
	u64	   start;
};

355 356
static int find_symbol_cb(void *arg, const char *name, char type,
			  u64 start, u64 end __used)
357 358 359
{
	struct process_symbol_args *args = arg;

360 361 362 363 364 365
	/*
	 * 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))
366 367 368 369 370 371
		return 0;

	args->start = start;
	return 1;
}

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

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

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

418
	map = machine->vmlinux_maps[MAP__FUNCTION];
419
	size = snprintf(event->mmap.filename, sizeof(event->mmap.filename),
420
			"%s%s", mmap_name, symbol_name) + 1;
421
	size = ALIGN(size, sizeof(u64));
422 423
	event->mmap.header.type = PERF_RECORD_MMAP;
	event->mmap.header.size = (sizeof(event->mmap) -
424
			(sizeof(event->mmap.filename) - size) + machine->id_hdr_size);
425 426 427 428 429
	event->mmap.pgoff = args.start;
	event->mmap.start = map->start;
	event->mmap.len   = map->end - event->mmap.start;
	event->mmap.pid   = machine->pid;

430
	err = process(tool, event, &synth_sample, machine);
431 432 433
	free(event);

	return err;
434 435
}

436 437 438 439 440
size_t perf_event__fprintf_comm(union perf_event *event, FILE *fp)
{
	return fprintf(fp, ": %s:%d\n", event->comm.comm, event->comm.tid);
}

441
int perf_event__process_comm(struct perf_tool *tool __used,
442
			     union perf_event *event,
443
			     struct perf_sample *sample __used,
444
			     struct machine *machine)
445
{
446
	struct thread *thread = machine__findnew_thread(machine, event->comm.tid);
447

448 449
	if (dump_trace)
		perf_event__fprintf_comm(event, stdout);
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
int perf_event__process_lost(struct perf_tool *tool __used,
460
			     union perf_event *event,
461
			     struct perf_sample *sample __used,
462
			     struct machine *machine __used)
463
{
464
	dump_printf(": id:%" PRIu64 ": lost:%" PRIu64 "\n",
465
		    event->lost.id, 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
static int perf_event__process_kernel_mmap(struct perf_tool *tool __used,
483
					   union perf_event *event,
484
					   struct machine *machine)
485
{
486
	struct map *map;
487 488 489 490
	char kmmap_prefix[PATH_MAX];
	enum dso_kernel_type kernel_type;
	bool is_kernel_mmap;

491
	machine__mmap_name(machine, kmmap_prefix, sizeof(kmmap_prefix));
492
	if (machine__is_host(machine))
493 494 495
		kernel_type = DSO_TYPE_KERNEL;
	else
		kernel_type = DSO_TYPE_GUEST_KERNEL;
496

497
	is_kernel_mmap = memcmp(event->mmap.filename,
498 499
				kmmap_prefix,
				strlen(kmmap_prefix)) == 0;
500 501
	if (event->mmap.filename[0] == '/' ||
	    (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
502

503 504
		char short_module_name[1024];
		char *name, *dot;
505

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

521 522
		map = machine__new_module(machine, event->mmap.start,
					  event->mmap.filename);
523 524 525 526 527 528 529 530
		if (map == NULL)
			goto out_problem;

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

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

		kernel->kernel = kernel_type;
546
		if (__machine__create_kernel_maps(machine, kernel) < 0)
547 548
			goto out_problem;

549
		perf_event__set_kernel_mmap_len(event, machine->vmlinux_maps);
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) {
557 558 559
			maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps,
							 symbol_name,
							 event->mmap.pgoff);
560 561
		}

562
		if (machine__is_default_guest(machine)) {
563
			/*
564
			 * preload dso of guest kernel and modules
565
			 */
566 567
			dso__load(kernel, machine->vmlinux_maps[MAP__FUNCTION],
				  NULL);
568 569 570 571 572 573
		}
	}
	return 0;
out_problem:
	return -1;
}
574

575 576 577 578 579 580 581
size_t perf_event__fprintf_mmap(union perf_event *event, FILE *fp)
{
	return fprintf(fp, " %d/%d: [%#" PRIx64 "(%#" PRIx64 ") @ %#" PRIx64 "]: %s\n",
		       event->mmap.pid, event->mmap.tid, event->mmap.start,
		       event->mmap.len, event->mmap.pgoff, event->mmap.filename);
}

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

592 593
	if (dump_trace)
		perf_event__fprintf_mmap(event, stdout);
594 595 596

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

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

	thread__insert_map(thread, map);
	return 0;
615

616 617
out_problem:
	dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
618 619 620
	return 0;
}

621 622 623 624 625 626 627
size_t perf_event__fprintf_task(union perf_event *event, FILE *fp)
{
	return fprintf(fp, "(%d:%d):(%d:%d)\n",
		       event->fork.pid, event->fork.tid,
		       event->fork.ppid, event->fork.ptid);
}

628
int perf_event__process_task(struct perf_tool *tool __used,
629
			     union perf_event *event,
630
			     struct perf_sample *sample __used,
631
			      struct machine *machine)
632
{
633 634
	struct thread *thread = machine__findnew_thread(machine, event->fork.tid);
	struct thread *parent = machine__findnew_thread(machine, event->fork.ptid);
635

636 637
	if (dump_trace)
		perf_event__fprintf_task(event, stdout);
638

639
	if (event->header.type == PERF_RECORD_EXIT) {
640
		machine__remove_thread(machine, thread);
641
		return 0;
642
	}
643 644 645 646 647 648 649 650 651

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

	return 0;
}
652

653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
size_t perf_event__fprintf(union perf_event *event, FILE *fp)
{
	size_t ret = fprintf(fp, "PERF_RECORD_%s",
			     perf_event__name(event->header.type));

	switch (event->header.type) {
	case PERF_RECORD_COMM:
		ret += perf_event__fprintf_comm(event, fp);
		break;
	case PERF_RECORD_FORK:
	case PERF_RECORD_EXIT:
		ret += perf_event__fprintf_task(event, fp);
		break;
	case PERF_RECORD_MMAP:
		ret += perf_event__fprintf_mmap(event, fp);
		break;
	default:
		ret += fprintf(fp, "\n");
	}

	return ret;
}

676
int perf_event__process(struct perf_tool *tool, union perf_event *event,
677
			struct perf_sample *sample, struct machine *machine)
678 679 680
{
	switch (event->header.type) {
	case PERF_RECORD_COMM:
681
		perf_event__process_comm(tool, event, sample, machine);
682 683
		break;
	case PERF_RECORD_MMAP:
684
		perf_event__process_mmap(tool, event, sample, machine);
685 686 687
		break;
	case PERF_RECORD_FORK:
	case PERF_RECORD_EXIT:
688
		perf_event__process_task(tool, event, sample, machine);
689
		break;
690
	case PERF_RECORD_LOST:
691
		perf_event__process_lost(tool, event, sample, machine);
692 693 694 695 696 697 698
	default:
		break;
	}

	return 0;
}

699
void thread__find_addr_map(struct thread *self,
700 701
			   struct machine *machine, u8 cpumode,
			   enum map_type type, u64 addr,
702
			   struct addr_location *al)
703
{
704
	struct map_groups *mg = &self->mg;
705

706
	al->thread = self;
707
	al->addr = addr;
708 709
	al->cpumode = cpumode;
	al->filtered = false;
710

711 712 713 714 715
	if (machine == NULL) {
		al->map = NULL;
		return;
	}

716
	if (cpumode == PERF_RECORD_MISC_KERNEL && perf_host) {
717
		al->level = 'k';
718
		mg = &machine->kmaps;
719
	} else if (cpumode == PERF_RECORD_MISC_USER && perf_host) {
720
		al->level = '.';
721 722
	} else if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL && perf_guest) {
		al->level = 'g';
723
		mg = &machine->kmaps;
724 725 726 727 728 729 730 731 732
	} 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';
733
		al->map = NULL;
734 735 736 737 738 739 740 741 742 743

		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;

744 745 746
		return;
	}
try_again:
747
	al->map = map_groups__find(mg, type, al->addr);
748 749 750 751 752 753 754 755 756 757
	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.
		 */
758
		if ((long long)al->addr < 0 &&
759
		    cpumode == PERF_RECORD_MISC_USER &&
760 761
		    machine && mg != &machine->kmaps) {
			mg = &machine->kmaps;
762 763
			goto try_again;
		}
764
	} else
765
		al->addr = al->map->map_ip(al->map, al->addr);
766 767
}

768 769
void thread__find_addr_location(struct thread *thread, struct machine *machine,
				u8 cpumode, enum map_type type, u64 addr,
770 771 772
				struct addr_location *al,
				symbol_filter_t filter)
{
773
	thread__find_addr_map(thread, machine, cpumode, type, addr, al);
774
	if (al->map != NULL)
775
		al->sym = map__find_symbol(al->map, al->addr, filter);
776 777
	else
		al->sym = NULL;
778 779
}

780
int perf_event__preprocess_sample(const union perf_event *event,
781
				  struct machine *machine,
782 783 784
				  struct addr_location *al,
				  struct perf_sample *sample,
				  symbol_filter_t filter)
785
{
786
	u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
787
	struct thread *thread = machine__findnew_thread(machine, event->ip.pid);
788

789 790 791
	if (thread == NULL)
		return -1;

792 793 794 795
	if (symbol_conf.comm_list &&
	    !strlist__has_entry(symbol_conf.comm_list, thread->comm))
		goto out_filtered;

796
	dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
797
	/*
798
	 * Have we already created the kernel maps for this machine?
799 800 801 802 803 804
	 *
	 * 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 &&
805 806
	    machine->vmlinux_maps[MAP__FUNCTION] == NULL)
		machine__create_kernel_maps(machine);
807

808 809
	thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION,
			      event->ip.ip, al);
810 811 812
	dump_printf(" ...... dso: %s\n",
		    al->map ? al->map->dso->long_name :
			al->level == 'H' ? "[hypervisor]" : "<not found>");
813
	al->sym = NULL;
814
	al->cpu = sample->cpu;
815 816 817 818 819 820 821 822 823 824 825 826 827

	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);
	}
828 829 830 831 832 833 834 835 836

	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;
837 838
	return 0;
}