event.c 23.1 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
			if (size >= len)
				size = len - 1;
			memcpy(comm, name, size);
77
			comm[size] = '\0';
78

79 80 81 82
		} else if (memcmp(bf, "Tgid:", 5) == 0) {
			char *tgids = bf + 5;
			while (*tgids && isspace(*tgids))
				++tgids;
83
			tgid = atoi(tgids);
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 111
	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;
112
	event->comm.header.type = PERF_RECORD_COMM;
113 114

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

123 124 125
		if (process(tool, event, &synth_sample, machine) != 0)
			return -1;

126
		goto out;
127 128 129 130 131
	}

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

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

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

143 144 145 146 147 148 149 150 151 152 153
		/* 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);

154
		event->comm.tid = pid;
155

156 157 158 159
		if (process(tool, event, &synth_sample, machine) != 0) {
			tgid = -1;
			break;
		}
160 161
	}

162 163 164
	closedir(tasks);
out:
	return tgid;
165 166
}

167
static int perf_event__synthesize_mmap_events(struct perf_tool *tool,
168
					      union perf_event *event,
169 170
					      pid_t pid, pid_t tgid,
					      perf_event__handler_t process,
171
					      struct machine *machine)
172 173 174
{
	char filename[PATH_MAX];
	FILE *fp;
175
	int rc = 0;
176 177 178 179 180 181 182 183 184 185 186 187

	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;
	}

188 189 190 191 192 193
	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;

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

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

218 219 220 221
			/* Catch anonymous mmaps */
			if ((execname == NULL) && !strstr(bf, "["))
				execname = anonstr;

222 223 224
			if (execname == NULL)
				continue;

225
			pbf += 3;
226
			n = hex2u64(pbf, &event->mmap.pgoff);
227

228 229
			size = strlen(execname);
			execname[size - 1] = '\0'; /* Remove \n */
230
			memcpy(event->mmap.filename, execname, size);
231
			size = ALIGN(size, sizeof(u64));
232 233 234
			event->mmap.len -= event->mmap.start;
			event->mmap.header.size = (sizeof(event->mmap) -
					        (sizeof(event->mmap.filename) - size));
235 236
			memset(event->mmap.filename + size, 0, machine->id_hdr_size);
			event->mmap.header.size += machine->id_hdr_size;
237 238 239
			event->mmap.pid = tgid;
			event->mmap.tid = pid;

240 241 242 243
			if (process(tool, event, &synth_sample, machine) != 0) {
				rc = -1;
				break;
			}
244 245 246 247
		}
	}

	fclose(fp);
248
	return rc;
249 250
}

251
int perf_event__synthesize_modules(struct perf_tool *tool,
252
				   perf_event__handler_t process,
253
				   struct machine *machine)
254
{
255
	int rc = 0;
256
	struct rb_node *nd;
257
	struct map_groups *kmaps = &machine->kmaps;
258
	union perf_event *event = zalloc((sizeof(event->mmap) +
259
					  machine->id_hdr_size));
260 261 262 263 264 265 266
	if (event == NULL) {
		pr_debug("Not enough memory synthesizing mmap event "
			 "for kernel modules\n");
		return -1;
	}

	event->header.type = PERF_RECORD_MMAP;
267

268 269 270 271
	/*
	 * kernel uses 0 for user space maps, see kernel/perf_event.c
	 * __perf_event_mmap
	 */
272
	if (machine__is_host(machine))
273
		event->header.misc = PERF_RECORD_MISC_KERNEL;
274
	else
275
		event->header.misc = PERF_RECORD_MISC_GUEST_KERNEL;
276 277

	for (nd = rb_first(&kmaps->maps[MAP__FUNCTION]);
278 279 280 281 282 283 284 285
	     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));
286 287 288
		event->mmap.header.type = PERF_RECORD_MMAP;
		event->mmap.header.size = (sizeof(event->mmap) -
				        (sizeof(event->mmap.filename) - size));
289 290
		memset(event->mmap.filename + size, 0, machine->id_hdr_size);
		event->mmap.header.size += machine->id_hdr_size;
291 292 293 294 295
		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,
296
		       pos->dso->long_name_len + 1);
297 298 299 300
		if (process(tool, event, &synth_sample, machine) != 0) {
			rc = -1;
			break;
		}
301 302
	}

303
	free(event);
304
	return rc;
305 306
}

307 308
static int __event__synthesize_thread(union perf_event *comm_event,
				      union perf_event *mmap_event,
309 310
				      pid_t pid, int full,
					  perf_event__handler_t process,
311
				      struct perf_tool *tool,
312
				      struct machine *machine)
313
{
314
	pid_t tgid = perf_event__synthesize_comm(tool, comm_event, pid, full,
315
						 process, machine);
316 317
	if (tgid == -1)
		return -1;
318
	return perf_event__synthesize_mmap_events(tool, mmap_event, pid, tgid,
319
						  process, machine);
320 321
}

322
int perf_event__synthesize_thread_map(struct perf_tool *tool,
323
				      struct thread_map *threads,
324
				      perf_event__handler_t process,
325
				      struct machine *machine)
326
{
327
	union perf_event *comm_event, *mmap_event;
328
	int err = -1, thread, j;
329

330
	comm_event = malloc(sizeof(comm_event->comm) + machine->id_hdr_size);
331 332 333
	if (comm_event == NULL)
		goto out;

334
	mmap_event = malloc(sizeof(mmap_event->mmap) + machine->id_hdr_size);
335 336 337
	if (mmap_event == NULL)
		goto out_free_comm;

338 339 340
	err = 0;
	for (thread = 0; thread < threads->nr; ++thread) {
		if (__event__synthesize_thread(comm_event, mmap_event,
341
					       threads->map[thread], 0,
342
					       process, tool, machine)) {
343 344 345
			err = -1;
			break;
		}
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371

		/*
		 * 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;
			}
		}
372
	}
373 374 375 376 377 378 379
	free(mmap_event);
out_free_comm:
	free(comm_event);
out:
	return err;
}

380
int perf_event__synthesize_threads(struct perf_tool *tool,
381
				   perf_event__handler_t process,
382
				   struct machine *machine)
383 384 385
{
	DIR *proc;
	struct dirent dirent, *next;
386
	union perf_event *comm_event, *mmap_event;
387 388
	int err = -1;

389
	comm_event = malloc(sizeof(comm_event->comm) + machine->id_hdr_size);
390 391 392
	if (comm_event == NULL)
		goto out;

393
	mmap_event = malloc(sizeof(mmap_event->mmap) + machine->id_hdr_size);
394 395
	if (mmap_event == NULL)
		goto out_free_comm;
396 397

	proc = opendir("/proc");
398 399
	if (proc == NULL)
		goto out_free_mmap;
400 401 402 403 404 405 406 407

	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;

408 409 410 411 412
		if (__event__synthesize_thread(comm_event, mmap_event, pid, 1,
					   process, tool, machine) != 0) {
			err = -1;
			goto out_closedir;
		}
413 414
	}

415
	err = 0;
416 417
out_closedir:
	closedir(proc);
418 419 420 421 422 423
out_free_mmap:
	free(mmap_event);
out_free_comm:
	free(comm_event);
out:
	return err;
424
}
425

426 427 428 429 430
struct process_symbol_args {
	const char *name;
	u64	   start;
};

431
static int find_symbol_cb(void *arg, const char *name, char type,
432
			  u64 start)
433 434 435
{
	struct process_symbol_args *args = arg;

436 437 438 439 440 441
	/*
	 * 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))
442 443 444 445 446 447
		return 0;

	args->start = start;
	return 1;
}

448
int perf_event__synthesize_kernel_mmap(struct perf_tool *tool,
449
				       perf_event__handler_t process,
450 451
				       struct machine *machine,
				       const char *symbol_name)
452 453
{
	size_t size;
454 455 456 457
	const char *filename, *mmap_name;
	char path[PATH_MAX];
	char name_buff[PATH_MAX];
	struct map *map;
458
	int err;
459 460 461 462 463 464
	/*
	 * 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, };
465
	union perf_event *event = zalloc((sizeof(event->mmap) +
466
					  machine->id_hdr_size));
467 468 469 470 471
	if (event == NULL) {
		pr_debug("Not enough memory synthesizing mmap event "
			 "for kernel modules\n");
		return -1;
	}
472

473
	mmap_name = machine__mmap_name(machine, name_buff, sizeof(name_buff));
474
	if (machine__is_host(machine)) {
475 476 477 478
		/*
		 * kernel uses PERF_RECORD_MISC_USER for user space maps,
		 * see kernel/perf_event.c __perf_event_mmap
		 */
479
		event->header.misc = PERF_RECORD_MISC_KERNEL;
480 481
		filename = "/proc/kallsyms";
	} else {
482
		event->header.misc = PERF_RECORD_MISC_GUEST_KERNEL;
483
		if (machine__is_default_guest(machine))
484 485
			filename = (char *) symbol_conf.default_guest_kallsyms;
		else {
486
			sprintf(path, "%s/proc/kallsyms", machine->root_dir);
487 488 489 490 491
			filename = path;
		}
	}

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

494
	map = machine->vmlinux_maps[MAP__FUNCTION];
495
	size = snprintf(event->mmap.filename, sizeof(event->mmap.filename),
496
			"%s%s", mmap_name, symbol_name) + 1;
497
	size = ALIGN(size, sizeof(u64));
498 499
	event->mmap.header.type = PERF_RECORD_MMAP;
	event->mmap.header.size = (sizeof(event->mmap) -
500
			(sizeof(event->mmap.filename) - size) + machine->id_hdr_size);
501 502 503 504 505
	event->mmap.pgoff = args.start;
	event->mmap.start = map->start;
	event->mmap.len   = map->end - event->mmap.start;
	event->mmap.pid   = machine->pid;

506
	err = process(tool, event, &synth_sample, machine);
507 508 509
	free(event);

	return err;
510 511
}

512 513 514 515 516
size_t perf_event__fprintf_comm(union perf_event *event, FILE *fp)
{
	return fprintf(fp, ": %s:%d\n", event->comm.comm, event->comm.tid);
}

517
int perf_event__process_comm(struct perf_tool *tool __used,
518
			     union perf_event *event,
519
			     struct perf_sample *sample __used,
520
			     struct machine *machine)
521
{
522
	struct thread *thread = machine__findnew_thread(machine, event->comm.tid);
523

524 525
	if (dump_trace)
		perf_event__fprintf_comm(event, stdout);
526

527
	if (thread == NULL || thread__set_comm(thread, event->comm.comm)) {
528 529 530 531 532 533 534
		dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
		return -1;
	}

	return 0;
}

535
int perf_event__process_lost(struct perf_tool *tool __used,
536
			     union perf_event *event,
537
			     struct perf_sample *sample __used,
538
			     struct machine *machine __used)
539
{
540
	dump_printf(": id:%" PRIu64 ": lost:%" PRIu64 "\n",
541
		    event->lost.id, event->lost.lost);
542 543 544
	return 0;
}

545 546
static void perf_event__set_kernel_mmap_len(union perf_event *event,
					    struct map **maps)
547
{
548 549
	maps[MAP__FUNCTION]->start = event->mmap.start;
	maps[MAP__FUNCTION]->end   = event->mmap.start + event->mmap.len;
550 551 552 553 554
	/*
	 * 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)
555
		maps[MAP__FUNCTION]->end = ~0ULL;
556 557
}

558
static int perf_event__process_kernel_mmap(struct perf_tool *tool __used,
559
					   union perf_event *event,
560
					   struct machine *machine)
561
{
562
	struct map *map;
563 564 565 566
	char kmmap_prefix[PATH_MAX];
	enum dso_kernel_type kernel_type;
	bool is_kernel_mmap;

567
	machine__mmap_name(machine, kmmap_prefix, sizeof(kmmap_prefix));
568
	if (machine__is_host(machine))
569 570 571
		kernel_type = DSO_TYPE_KERNEL;
	else
		kernel_type = DSO_TYPE_GUEST_KERNEL;
572

573
	is_kernel_mmap = memcmp(event->mmap.filename,
574
				kmmap_prefix,
575
				strlen(kmmap_prefix) - 1) == 0;
576 577
	if (event->mmap.filename[0] == '/' ||
	    (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
578

579 580
		char short_module_name[1024];
		char *name, *dot;
581

582 583
		if (event->mmap.filename[0] == '/') {
			name = strrchr(event->mmap.filename, '/');
584 585 586 587 588 589 590 591
			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),
592
					"[%.*s]", (int)(dot - name), name);
593
			strxfrchar(short_module_name, '-', '_');
594
		} else
595
			strcpy(short_module_name, event->mmap.filename);
596

597 598
		map = machine__new_module(machine, event->mmap.start,
					  event->mmap.filename);
599 600 601 602 603 604 605 606
		if (map == NULL)
			goto out_problem;

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

		map->dso->short_name = name;
607
		map->dso->sname_alloc = 1;
608
		map->end = map->start + event->mmap.len;
609
	} else if (is_kernel_mmap) {
610
		const char *symbol_name = (event->mmap.filename +
611 612 613 614 615
				strlen(kmmap_prefix));
		/*
		 * Should be there already, from the build-id table in
		 * the header.
		 */
616 617
		struct dso *kernel = __dsos__findnew(&machine->kernel_dsos,
						     kmmap_prefix);
618 619 620 621
		if (kernel == NULL)
			goto out_problem;

		kernel->kernel = kernel_type;
622
		if (__machine__create_kernel_maps(machine, kernel) < 0)
623 624
			goto out_problem;

625
		perf_event__set_kernel_mmap_len(event, machine->vmlinux_maps);
626 627 628 629 630 631 632

		/*
		 * 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) {
633 634 635
			maps__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps,
							 symbol_name,
							 event->mmap.pgoff);
636 637
		}

638
		if (machine__is_default_guest(machine)) {
639
			/*
640
			 * preload dso of guest kernel and modules
641
			 */
642 643
			dso__load(kernel, machine->vmlinux_maps[MAP__FUNCTION],
				  NULL);
644 645 646 647 648 649
		}
	}
	return 0;
out_problem:
	return -1;
}
650

651 652 653 654 655 656 657
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);
}

658
int perf_event__process_mmap(struct perf_tool *tool,
659
			     union perf_event *event,
660
			     struct perf_sample *sample __used,
661
			     struct machine *machine)
662 663 664
{
	struct thread *thread;
	struct map *map;
665
	u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
666
	int ret = 0;
667

668 669
	if (dump_trace)
		perf_event__fprintf_mmap(event, stdout);
670 671 672

	if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
	    cpumode == PERF_RECORD_MISC_KERNEL) {
673
		ret = perf_event__process_kernel_mmap(tool, event, machine);
674 675
		if (ret < 0)
			goto out_problem;
676 677 678
		return 0;
	}

679
	thread = machine__findnew_thread(machine, event->mmap.pid);
680 681
	if (thread == NULL)
		goto out_problem;
682 683 684
	map = map__new(&machine->user_dsos, event->mmap.start,
			event->mmap.len, event->mmap.pgoff,
			event->mmap.pid, event->mmap.filename,
685
			MAP__FUNCTION);
686
	if (map == NULL)
687 688 689 690
		goto out_problem;

	thread__insert_map(thread, map);
	return 0;
691

692 693
out_problem:
	dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
694 695 696
	return 0;
}

697 698 699 700 701 702 703
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);
}

704
int perf_event__process_task(struct perf_tool *tool __used,
705
			     union perf_event *event,
706
			     struct perf_sample *sample __used,
707
			      struct machine *machine)
708
{
709 710
	struct thread *thread = machine__findnew_thread(machine, event->fork.tid);
	struct thread *parent = machine__findnew_thread(machine, event->fork.ptid);
711

712 713
	if (dump_trace)
		perf_event__fprintf_task(event, stdout);
714

715
	if (event->header.type == PERF_RECORD_EXIT) {
716
		machine__remove_thread(machine, thread);
717
		return 0;
718
	}
719 720 721 722 723 724 725 726 727

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

	return 0;
}
728

729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751
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;
}

752
int perf_event__process(struct perf_tool *tool, union perf_event *event,
753
			struct perf_sample *sample, struct machine *machine)
754 755 756
{
	switch (event->header.type) {
	case PERF_RECORD_COMM:
757
		perf_event__process_comm(tool, event, sample, machine);
758 759
		break;
	case PERF_RECORD_MMAP:
760
		perf_event__process_mmap(tool, event, sample, machine);
761 762 763
		break;
	case PERF_RECORD_FORK:
	case PERF_RECORD_EXIT:
764
		perf_event__process_task(tool, event, sample, machine);
765
		break;
766
	case PERF_RECORD_LOST:
767
		perf_event__process_lost(tool, event, sample, machine);
768 769 770 771 772 773 774
	default:
		break;
	}

	return 0;
}

775
void thread__find_addr_map(struct thread *self,
776 777
			   struct machine *machine, u8 cpumode,
			   enum map_type type, u64 addr,
778
			   struct addr_location *al)
779
{
780
	struct map_groups *mg = &self->mg;
781

782
	al->thread = self;
783
	al->addr = addr;
784 785
	al->cpumode = cpumode;
	al->filtered = false;
786

787 788 789 790 791
	if (machine == NULL) {
		al->map = NULL;
		return;
	}

792
	if (cpumode == PERF_RECORD_MISC_KERNEL && perf_host) {
793
		al->level = 'k';
794
		mg = &machine->kmaps;
795
	} else if (cpumode == PERF_RECORD_MISC_USER && perf_host) {
796
		al->level = '.';
797 798
	} else if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL && perf_guest) {
		al->level = 'g';
799
		mg = &machine->kmaps;
800 801 802 803 804 805 806 807 808
	} 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';
809
		al->map = NULL;
810 811 812 813 814 815 816 817 818 819

		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;

820 821 822
		return;
	}
try_again:
823
	al->map = map_groups__find(mg, type, al->addr);
824 825 826 827 828 829 830 831 832 833
	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.
		 */
834
		if ((long long)al->addr < 0 &&
835
		    cpumode == PERF_RECORD_MISC_USER &&
836 837
		    machine && mg != &machine->kmaps) {
			mg = &machine->kmaps;
838 839
			goto try_again;
		}
840
	} else
841
		al->addr = al->map->map_ip(al->map, al->addr);
842 843
}

844 845
void thread__find_addr_location(struct thread *thread, struct machine *machine,
				u8 cpumode, enum map_type type, u64 addr,
846 847 848
				struct addr_location *al,
				symbol_filter_t filter)
{
849
	thread__find_addr_map(thread, machine, cpumode, type, addr, al);
850
	if (al->map != NULL)
851
		al->sym = map__find_symbol(al->map, al->addr, filter);
852 853
	else
		al->sym = NULL;
854 855
}

856
int perf_event__preprocess_sample(const union perf_event *event,
857
				  struct machine *machine,
858 859 860
				  struct addr_location *al,
				  struct perf_sample *sample,
				  symbol_filter_t filter)
861
{
862
	u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
863
	struct thread *thread = machine__findnew_thread(machine, event->ip.pid);
864

865 866 867
	if (thread == NULL)
		return -1;

868 869 870 871
	if (symbol_conf.comm_list &&
	    !strlist__has_entry(symbol_conf.comm_list, thread->comm))
		goto out_filtered;

872
	dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
873
	/*
874
	 * Have we already created the kernel maps for this machine?
875 876 877 878 879 880
	 *
	 * 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 &&
881 882
	    machine->vmlinux_maps[MAP__FUNCTION] == NULL)
		machine__create_kernel_maps(machine);
883

884 885
	thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION,
			      event->ip.ip, al);
886 887 888
	dump_printf(" ...... dso: %s\n",
		    al->map ? al->map->dso->long_name :
			al->level == 'H' ? "[hypervisor]" : "<not found>");
889
	al->sym = NULL;
890
	al->cpu = sample->cpu;
891 892

	if (al->map) {
893 894
		struct dso *dso = al->map->dso;

895
		if (symbol_conf.dso_list &&
896 897 898 899 900
		    (!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)))))
901 902 903 904
			goto out_filtered;

		al->sym = map__find_symbol(al->map, al->addr, filter);
	}
905 906 907 908 909 910 911 912 913

	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;
914 915
	return 0;
}