event.c 22.8 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__get_comm_tgid(pid_t pid, char *comm, size_t len)
47 48 49 50 51
{
	char filename[PATH_MAX];
	char bf[BUFSIZ];
	FILE *fp;
	size_t size = 0;
52
	pid_t tgid = -1;
53 54 55 56 57 58 59 60 61

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

	fp = fopen(filename, "r");
	if (fp == NULL) {
		pr_debug("couldn't open %s\n", filename);
		return 0;
	}

62
	while (!comm[0] || (tgid < 0)) {
63
		if (fgets(bf, sizeof(bf), fp) == NULL) {
64 65 66
			pr_warning("couldn't get COMM and pgid, malformed %s\n",
				   filename);
			break;
67
		}
68 69 70 71 72 73

		if (memcmp(bf, "Name:", 5) == 0) {
			char *name = bf + 5;
			while (*name && isspace(*name))
				++name;
			size = strlen(name) - 1;
74 75 76 77
			if (size >= len)
				size = len - 1;
			memcpy(comm, name, size);

78 79 80 81
		} else if (memcmp(bf, "Tgid:", 5) == 0) {
			char *tgids = bf + 5;
			while (*tgids && isspace(*tgids))
				++tgids;
82
			tgid = atoi(tgids);
83 84 85
		}
	}

86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
	fclose(fp);

	return tgid;
}

static pid_t perf_event__synthesize_comm(struct perf_tool *tool,
					 union perf_event *event, pid_t pid,
					 int full,
					 perf_event__handler_t process,
					 struct machine *machine)
{
	char filename[PATH_MAX];
	size_t size;
	DIR *tasks;
	struct dirent dirent, *next;
	pid_t tgid;

	memset(&event->comm, 0, sizeof(event->comm));

	tgid = perf_event__get_comm_tgid(pid, event->comm.comm,
					 sizeof(event->comm.comm));
	if (tgid < 0)
		goto out;

	event->comm.pid = tgid;
111
	event->comm.header.type = PERF_RECORD_COMM;
112 113

	size = strlen(event->comm.comm) + 1;
114
	size = ALIGN(size, sizeof(u64));
115
	memset(event->comm.comm + size, 0, machine->id_hdr_size);
116 117
	event->comm.header.size = (sizeof(event->comm) -
				(sizeof(event->comm.comm) - size) +
118
				machine->id_hdr_size);
119
	if (!full) {
120
		event->comm.tid = pid;
121

122
		process(tool, event, &synth_sample, machine);
123
		goto out;
124 125 126 127 128
	}

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

	tasks = opendir(filename);
129 130 131 132
	if (tasks == NULL) {
		pr_debug("couldn't open %s\n", filename);
		return 0;
	}
133 134 135 136 137 138 139

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

140 141 142 143 144 145 146 147 148 149 150
		/* already have tgid; jut want to update the comm */
		(void) perf_event__get_comm_tgid(pid, event->comm.comm,
					 sizeof(event->comm.comm));

		size = strlen(event->comm.comm) + 1;
		size = ALIGN(size, sizeof(u64));
		memset(event->comm.comm + size, 0, machine->id_hdr_size);
		event->comm.header.size = (sizeof(event->comm) -
					  (sizeof(event->comm.comm) - size) +
					  machine->id_hdr_size);

151
		event->comm.tid = pid;
152

153
		process(tool, event, &synth_sample, machine);
154 155
	}

156 157 158
	closedir(tasks);
out:
	return tgid;
159 160
}

161
static int perf_event__synthesize_mmap_events(struct perf_tool *tool,
162
					      union perf_event *event,
163 164
					      pid_t pid, pid_t tgid,
					      perf_event__handler_t process,
165
					      struct machine *machine)
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
{
	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;
	}

181 182 183 184 185 186
	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;

187 188 189 190 191 192 193 194
	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 */
195
		n = hex2u64(pbf, &event->mmap.start);
196 197 198
		if (n < 0)
			continue;
		pbf += n + 1;
199
		n = hex2u64(pbf, &event->mmap.len);
200 201 202 203
		if (n < 0)
			continue;
		pbf += n + 3;
		if (*pbf == 'x') { /* vm_exec */
204
			char anonstr[] = "//anon\n";
205 206 207 208 209 210
			char *execname = strchr(bf, '/');

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

211 212 213 214
			/* Catch anonymous mmaps */
			if ((execname == NULL) && !strstr(bf, "["))
				execname = anonstr;

215 216 217
			if (execname == NULL)
				continue;

218
			pbf += 3;
219
			n = hex2u64(pbf, &event->mmap.pgoff);
220

221 222
			size = strlen(execname);
			execname[size - 1] = '\0'; /* Remove \n */
223
			memcpy(event->mmap.filename, execname, size);
224
			size = ALIGN(size, sizeof(u64));
225 226 227
			event->mmap.len -= event->mmap.start;
			event->mmap.header.size = (sizeof(event->mmap) -
					        (sizeof(event->mmap.filename) - size));
228 229
			memset(event->mmap.filename + size, 0, machine->id_hdr_size);
			event->mmap.header.size += machine->id_hdr_size;
230 231 232
			event->mmap.pid = tgid;
			event->mmap.tid = pid;

233
			process(tool, event, &synth_sample, machine);
234 235 236 237 238 239 240
		}
	}

	fclose(fp);
	return 0;
}

241
int perf_event__synthesize_modules(struct perf_tool *tool,
242
				   perf_event__handler_t process,
243
				   struct machine *machine)
244 245
{
	struct rb_node *nd;
246
	struct map_groups *kmaps = &machine->kmaps;
247
	union perf_event *event = zalloc((sizeof(event->mmap) +
248
					  machine->id_hdr_size));
249 250 251 252 253 254 255
	if (event == NULL) {
		pr_debug("Not enough memory synthesizing mmap event "
			 "for kernel modules\n");
		return -1;
	}

	event->header.type = PERF_RECORD_MMAP;
256

257 258 259 260
	/*
	 * kernel uses 0 for user space maps, see kernel/perf_event.c
	 * __perf_event_mmap
	 */
261
	if (machine__is_host(machine))
262
		event->header.misc = PERF_RECORD_MISC_KERNEL;
263
	else
264
		event->header.misc = PERF_RECORD_MISC_GUEST_KERNEL;
265 266

	for (nd = rb_first(&kmaps->maps[MAP__FUNCTION]);
267 268 269 270 271 272 273 274
	     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));
275 276 277
		event->mmap.header.type = PERF_RECORD_MMAP;
		event->mmap.header.size = (sizeof(event->mmap) -
				        (sizeof(event->mmap.filename) - size));
278 279
		memset(event->mmap.filename + size, 0, machine->id_hdr_size);
		event->mmap.header.size += machine->id_hdr_size;
280 281 282 283 284
		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,
285
		       pos->dso->long_name_len + 1);
286
		process(tool, event, &synth_sample, machine);
287 288
	}

289
	free(event);
290 291 292
	return 0;
}

293 294
static int __event__synthesize_thread(union perf_event *comm_event,
				      union perf_event *mmap_event,
295 296
				      pid_t pid, int full,
					  perf_event__handler_t process,
297
				      struct perf_tool *tool,
298
				      struct machine *machine)
299
{
300
	pid_t tgid = perf_event__synthesize_comm(tool, comm_event, pid, full,
301
						 process, machine);
302 303
	if (tgid == -1)
		return -1;
304
	return perf_event__synthesize_mmap_events(tool, mmap_event, pid, tgid,
305
						  process, machine);
306 307
}

308
int perf_event__synthesize_thread_map(struct perf_tool *tool,
309
				      struct thread_map *threads,
310
				      perf_event__handler_t process,
311
				      struct machine *machine)
312
{
313
	union perf_event *comm_event, *mmap_event;
314
	int err = -1, thread, j;
315

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

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

324 325 326
	err = 0;
	for (thread = 0; thread < threads->nr; ++thread) {
		if (__event__synthesize_thread(comm_event, mmap_event,
327
					       threads->map[thread], 0,
328
					       process, tool, machine)) {
329 330 331
			err = -1;
			break;
		}
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357

		/*
		 * comm.pid is set to thread group id by
		 * perf_event__synthesize_comm
		 */
		if ((int) comm_event->comm.pid != threads->map[thread]) {
			bool need_leader = true;

			/* is thread group leader in thread_map? */
			for (j = 0; j < threads->nr; ++j) {
				if ((int) comm_event->comm.pid == threads->map[j]) {
					need_leader = false;
					break;
				}
			}

			/* if not, generate events for it */
			if (need_leader &&
			    __event__synthesize_thread(comm_event,
						      mmap_event,
						      comm_event->comm.pid, 0,
						      process, tool, machine)) {
				err = -1;
				break;
			}
		}
358
	}
359 360 361 362 363 364 365
	free(mmap_event);
out_free_comm:
	free(comm_event);
out:
	return err;
}

366
int perf_event__synthesize_threads(struct perf_tool *tool,
367
				   perf_event__handler_t process,
368
				   struct machine *machine)
369 370 371
{
	DIR *proc;
	struct dirent dirent, *next;
372
	union perf_event *comm_event, *mmap_event;
373 374
	int err = -1;

375
	comm_event = malloc(sizeof(comm_event->comm) + machine->id_hdr_size);
376 377 378
	if (comm_event == NULL)
		goto out;

379
	mmap_event = malloc(sizeof(mmap_event->mmap) + machine->id_hdr_size);
380 381
	if (mmap_event == NULL)
		goto out_free_comm;
382 383

	proc = opendir("/proc");
384 385
	if (proc == NULL)
		goto out_free_mmap;
386 387 388 389 390 391 392 393

	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;

394
		__event__synthesize_thread(comm_event, mmap_event, pid, 1,
395
					   process, tool, machine);
396 397 398
	}

	closedir(proc);
399 400 401 402 403 404 405
	err = 0;
out_free_mmap:
	free(mmap_event);
out_free_comm:
	free(comm_event);
out:
	return err;
406
}
407

408 409 410 411 412
struct process_symbol_args {
	const char *name;
	u64	   start;
};

413 414
static int find_symbol_cb(void *arg, const char *name, char type,
			  u64 start, u64 end __used)
415 416 417
{
	struct process_symbol_args *args = arg;

418 419 420 421 422 423
	/*
	 * 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))
424 425 426 427 428 429
		return 0;

	args->start = start;
	return 1;
}

430
int perf_event__synthesize_kernel_mmap(struct perf_tool *tool,
431
				       perf_event__handler_t process,
432 433
				       struct machine *machine,
				       const char *symbol_name)
434 435
{
	size_t size;
436 437 438 439
	const char *filename, *mmap_name;
	char path[PATH_MAX];
	char name_buff[PATH_MAX];
	struct map *map;
440
	int err;
441 442 443 444 445 446
	/*
	 * 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, };
447
	union perf_event *event = zalloc((sizeof(event->mmap) +
448
					  machine->id_hdr_size));
449 450 451 452 453
	if (event == NULL) {
		pr_debug("Not enough memory synthesizing mmap event "
			 "for kernel modules\n");
		return -1;
	}
454

455
	mmap_name = machine__mmap_name(machine, name_buff, sizeof(name_buff));
456
	if (machine__is_host(machine)) {
457 458 459 460
		/*
		 * kernel uses PERF_RECORD_MISC_USER for user space maps,
		 * see kernel/perf_event.c __perf_event_mmap
		 */
461
		event->header.misc = PERF_RECORD_MISC_KERNEL;
462 463
		filename = "/proc/kallsyms";
	} else {
464
		event->header.misc = PERF_RECORD_MISC_GUEST_KERNEL;
465
		if (machine__is_default_guest(machine))
466 467
			filename = (char *) symbol_conf.default_guest_kallsyms;
		else {
468
			sprintf(path, "%s/proc/kallsyms", machine->root_dir);
469 470 471 472 473
			filename = path;
		}
	}

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

476
	map = machine->vmlinux_maps[MAP__FUNCTION];
477
	size = snprintf(event->mmap.filename, sizeof(event->mmap.filename),
478
			"%s%s", mmap_name, symbol_name) + 1;
479
	size = ALIGN(size, sizeof(u64));
480 481
	event->mmap.header.type = PERF_RECORD_MMAP;
	event->mmap.header.size = (sizeof(event->mmap) -
482
			(sizeof(event->mmap.filename) - size) + machine->id_hdr_size);
483 484 485 486 487
	event->mmap.pgoff = args.start;
	event->mmap.start = map->start;
	event->mmap.len   = map->end - event->mmap.start;
	event->mmap.pid   = machine->pid;

488
	err = process(tool, event, &synth_sample, machine);
489 490 491
	free(event);

	return err;
492 493
}

494 495 496 497 498
size_t perf_event__fprintf_comm(union perf_event *event, FILE *fp)
{
	return fprintf(fp, ": %s:%d\n", event->comm.comm, event->comm.tid);
}

499
int perf_event__process_comm(struct perf_tool *tool __used,
500
			     union perf_event *event,
501
			     struct perf_sample *sample __used,
502
			     struct machine *machine)
503
{
504
	struct thread *thread = machine__findnew_thread(machine, event->comm.tid);
505

506 507
	if (dump_trace)
		perf_event__fprintf_comm(event, stdout);
508

509
	if (thread == NULL || thread__set_comm(thread, event->comm.comm)) {
510 511 512 513 514 515 516
		dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
		return -1;
	}

	return 0;
}

517
int perf_event__process_lost(struct perf_tool *tool __used,
518
			     union perf_event *event,
519
			     struct perf_sample *sample __used,
520
			     struct machine *machine __used)
521
{
522
	dump_printf(": id:%" PRIu64 ": lost:%" PRIu64 "\n",
523
		    event->lost.id, event->lost.lost);
524 525 526
	return 0;
}

527 528
static void perf_event__set_kernel_mmap_len(union perf_event *event,
					    struct map **maps)
529
{
530 531
	maps[MAP__FUNCTION]->start = event->mmap.start;
	maps[MAP__FUNCTION]->end   = event->mmap.start + event->mmap.len;
532 533 534 535 536
	/*
	 * 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)
537
		maps[MAP__FUNCTION]->end = ~0ULL;
538 539
}

540
static int perf_event__process_kernel_mmap(struct perf_tool *tool __used,
541
					   union perf_event *event,
542
					   struct machine *machine)
543
{
544
	struct map *map;
545 546 547 548
	char kmmap_prefix[PATH_MAX];
	enum dso_kernel_type kernel_type;
	bool is_kernel_mmap;

549
	machine__mmap_name(machine, kmmap_prefix, sizeof(kmmap_prefix));
550
	if (machine__is_host(machine))
551 552 553
		kernel_type = DSO_TYPE_KERNEL;
	else
		kernel_type = DSO_TYPE_GUEST_KERNEL;
554

555
	is_kernel_mmap = memcmp(event->mmap.filename,
556 557
				kmmap_prefix,
				strlen(kmmap_prefix)) == 0;
558 559
	if (event->mmap.filename[0] == '/' ||
	    (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
560

561 562
		char short_module_name[1024];
		char *name, *dot;
563

564 565
		if (event->mmap.filename[0] == '/') {
			name = strrchr(event->mmap.filename, '/');
566 567 568 569 570 571 572 573
			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),
574
					"[%.*s]", (int)(dot - name), name);
575
			strxfrchar(short_module_name, '-', '_');
576
		} else
577
			strcpy(short_module_name, event->mmap.filename);
578

579 580
		map = machine__new_module(machine, event->mmap.start,
					  event->mmap.filename);
581 582 583 584 585 586 587 588
		if (map == NULL)
			goto out_problem;

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

		map->dso->short_name = name;
589
		map->dso->sname_alloc = 1;
590
		map->end = map->start + event->mmap.len;
591
	} else if (is_kernel_mmap) {
592
		const char *symbol_name = (event->mmap.filename +
593 594 595 596 597
				strlen(kmmap_prefix));
		/*
		 * Should be there already, from the build-id table in
		 * the header.
		 */
598 599
		struct dso *kernel = __dsos__findnew(&machine->kernel_dsos,
						     kmmap_prefix);
600 601 602 603
		if (kernel == NULL)
			goto out_problem;

		kernel->kernel = kernel_type;
604
		if (__machine__create_kernel_maps(machine, kernel) < 0)
605 606
			goto out_problem;

607
		perf_event__set_kernel_mmap_len(event, machine->vmlinux_maps);
608 609 610 611 612 613 614

		/*
		 * 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) {
615 616 617
			maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps,
							 symbol_name,
							 event->mmap.pgoff);
618 619
		}

620
		if (machine__is_default_guest(machine)) {
621
			/*
622
			 * preload dso of guest kernel and modules
623
			 */
624 625
			dso__load(kernel, machine->vmlinux_maps[MAP__FUNCTION],
				  NULL);
626 627 628 629 630 631
		}
	}
	return 0;
out_problem:
	return -1;
}
632

633 634 635 636 637 638 639
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);
}

640
int perf_event__process_mmap(struct perf_tool *tool,
641
			     union perf_event *event,
642
			     struct perf_sample *sample __used,
643
			     struct machine *machine)
644 645 646
{
	struct thread *thread;
	struct map *map;
647
	u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
648
	int ret = 0;
649

650 651
	if (dump_trace)
		perf_event__fprintf_mmap(event, stdout);
652 653 654

	if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
	    cpumode == PERF_RECORD_MISC_KERNEL) {
655
		ret = perf_event__process_kernel_mmap(tool, event, machine);
656 657
		if (ret < 0)
			goto out_problem;
658 659 660
		return 0;
	}

661
	thread = machine__findnew_thread(machine, event->mmap.pid);
662 663
	if (thread == NULL)
		goto out_problem;
664 665 666
	map = map__new(&machine->user_dsos, event->mmap.start,
			event->mmap.len, event->mmap.pgoff,
			event->mmap.pid, event->mmap.filename,
667
			MAP__FUNCTION);
668
	if (map == NULL)
669 670 671 672
		goto out_problem;

	thread__insert_map(thread, map);
	return 0;
673

674 675
out_problem:
	dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
676 677 678
	return 0;
}

679 680 681 682 683 684 685
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);
}

686
int perf_event__process_task(struct perf_tool *tool __used,
687
			     union perf_event *event,
688
			     struct perf_sample *sample __used,
689
			      struct machine *machine)
690
{
691 692
	struct thread *thread = machine__findnew_thread(machine, event->fork.tid);
	struct thread *parent = machine__findnew_thread(machine, event->fork.ptid);
693

694 695
	if (dump_trace)
		perf_event__fprintf_task(event, stdout);
696

697
	if (event->header.type == PERF_RECORD_EXIT) {
698
		machine__remove_thread(machine, thread);
699
		return 0;
700
	}
701 702 703 704 705 706 707 708 709

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

	return 0;
}
710

711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733
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;
}

734
int perf_event__process(struct perf_tool *tool, union perf_event *event,
735
			struct perf_sample *sample, struct machine *machine)
736 737 738
{
	switch (event->header.type) {
	case PERF_RECORD_COMM:
739
		perf_event__process_comm(tool, event, sample, machine);
740 741
		break;
	case PERF_RECORD_MMAP:
742
		perf_event__process_mmap(tool, event, sample, machine);
743 744 745
		break;
	case PERF_RECORD_FORK:
	case PERF_RECORD_EXIT:
746
		perf_event__process_task(tool, event, sample, machine);
747
		break;
748
	case PERF_RECORD_LOST:
749
		perf_event__process_lost(tool, event, sample, machine);
750 751 752 753 754 755 756
	default:
		break;
	}

	return 0;
}

757
void thread__find_addr_map(struct thread *self,
758 759
			   struct machine *machine, u8 cpumode,
			   enum map_type type, u64 addr,
760
			   struct addr_location *al)
761
{
762
	struct map_groups *mg = &self->mg;
763

764
	al->thread = self;
765
	al->addr = addr;
766 767
	al->cpumode = cpumode;
	al->filtered = false;
768

769 770 771 772 773
	if (machine == NULL) {
		al->map = NULL;
		return;
	}

774
	if (cpumode == PERF_RECORD_MISC_KERNEL && perf_host) {
775
		al->level = 'k';
776
		mg = &machine->kmaps;
777
	} else if (cpumode == PERF_RECORD_MISC_USER && perf_host) {
778
		al->level = '.';
779 780
	} else if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL && perf_guest) {
		al->level = 'g';
781
		mg = &machine->kmaps;
782 783 784 785 786 787 788 789 790
	} 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';
791
		al->map = NULL;
792 793 794 795 796 797 798 799 800 801

		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;

802 803 804
		return;
	}
try_again:
805
	al->map = map_groups__find(mg, type, al->addr);
806 807 808 809 810 811 812 813 814 815
	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.
		 */
816
		if ((long long)al->addr < 0 &&
817
		    cpumode == PERF_RECORD_MISC_USER &&
818 819
		    machine && mg != &machine->kmaps) {
			mg = &machine->kmaps;
820 821
			goto try_again;
		}
822
	} else
823
		al->addr = al->map->map_ip(al->map, al->addr);
824 825
}

826 827
void thread__find_addr_location(struct thread *thread, struct machine *machine,
				u8 cpumode, enum map_type type, u64 addr,
828 829 830
				struct addr_location *al,
				symbol_filter_t filter)
{
831
	thread__find_addr_map(thread, machine, cpumode, type, addr, al);
832
	if (al->map != NULL)
833
		al->sym = map__find_symbol(al->map, al->addr, filter);
834 835
	else
		al->sym = NULL;
836 837
}

838
int perf_event__preprocess_sample(const union perf_event *event,
839
				  struct machine *machine,
840 841 842
				  struct addr_location *al,
				  struct perf_sample *sample,
				  symbol_filter_t filter)
843
{
844
	u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
845
	struct thread *thread = machine__findnew_thread(machine, event->ip.pid);
846

847 848 849
	if (thread == NULL)
		return -1;

850 851 852 853
	if (symbol_conf.comm_list &&
	    !strlist__has_entry(symbol_conf.comm_list, thread->comm))
		goto out_filtered;

854
	dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
855
	/*
856
	 * Have we already created the kernel maps for this machine?
857 858 859 860 861 862
	 *
	 * 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 &&
863 864
	    machine->vmlinux_maps[MAP__FUNCTION] == NULL)
		machine__create_kernel_maps(machine);
865

866 867
	thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION,
			      event->ip.ip, al);
868 869 870
	dump_printf(" ...... dso: %s\n",
		    al->map ? al->map->dso->long_name :
			al->level == 'H' ? "[hypervisor]" : "<not found>");
871
	al->sym = NULL;
872
	al->cpu = sample->cpu;
873 874

	if (al->map) {
875 876
		struct dso *dso = al->map->dso;

877
		if (symbol_conf.dso_list &&
878 879 880 881 882
		    (!dso || !(strlist__has_entry(symbol_conf.dso_list,
						  dso->short_name) ||
			       (dso->short_name != dso->long_name &&
				strlist__has_entry(symbol_conf.dso_list,
						   dso->long_name)))))
883 884 885 886
			goto out_filtered;

		al->sym = map__find_symbol(al->map, al->addr, filter);
	}
887 888 889 890 891 892 893 894 895

	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;
896 897
	return 0;
}