Linux Audio

Check our new training course

Loading...
v3.1
 
 
 
 
  1#include <linux/types.h>
 
 
 
 
 
 
 
 
 
  2#include "event.h"
  3#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
 11static const char *perf_event__names[] = {
 12	[0]					= "TOTAL",
 13	[PERF_RECORD_MMAP]			= "MMAP",
 
 14	[PERF_RECORD_LOST]			= "LOST",
 15	[PERF_RECORD_COMM]			= "COMM",
 16	[PERF_RECORD_EXIT]			= "EXIT",
 17	[PERF_RECORD_THROTTLE]			= "THROTTLE",
 18	[PERF_RECORD_UNTHROTTLE]		= "UNTHROTTLE",
 19	[PERF_RECORD_FORK]			= "FORK",
 20	[PERF_RECORD_READ]			= "READ",
 21	[PERF_RECORD_SAMPLE]			= "SAMPLE",
 
 
 
 
 
 
 
 
 
 
 
 22	[PERF_RECORD_HEADER_ATTR]		= "ATTR",
 23	[PERF_RECORD_HEADER_EVENT_TYPE]		= "EVENT_TYPE",
 24	[PERF_RECORD_HEADER_TRACING_DATA]	= "TRACING_DATA",
 25	[PERF_RECORD_HEADER_BUILD_ID]		= "BUILD_ID",
 26	[PERF_RECORD_FINISHED_ROUND]		= "FINISHED_ROUND",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 27};
 28
 29const 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
 38static struct perf_sample synth_sample = {
 39	.pid	   = -1,
 40	.tid	   = -1,
 41	.time	   = -1,
 42	.stream_id = -1,
 43	.cpu	   = -1,
 44	.period	   = 1,
 45};
 46
 47static pid_t perf_event__synthesize_comm(union perf_event *event, pid_t pid,
 48					 int full, perf_event__handler_t process,
 49					 struct perf_session *session)
 50{
 51	char filename[PATH_MAX];
 52	char bf[BUFSIZ];
 53	FILE *fp;
 54	size_t size = 0;
 55	DIR *tasks;
 56	struct dirent dirent, *next;
 57	pid_t tgid = 0;
 58
 59	snprintf(filename, sizeof(filename), "/proc/%d/status", pid);
 60
 61	fp = fopen(filename, "r");
 62	if (fp == NULL) {
 63out_race:
 64		/*
 65		 * We raced with a task exiting - just return:
 66		 */
 67		pr_debug("couldn't open %s\n", filename);
 68		return 0;
 69	}
 70
 71	memset(&event->comm, 0, sizeof(event->comm));
 
 
 72
 73	while (!event->comm.comm[0] || !event->comm.pid) {
 74		if (fgets(bf, sizeof(bf), fp) == NULL) {
 75			pr_warning("couldn't get COMM and pgid, malformed %s\n", filename);
 76			goto out;
 77		}
 78
 79		if (memcmp(bf, "Name:", 5) == 0) {
 80			char *name = bf + 5;
 81			while (*name && isspace(*name))
 82				++name;
 83			size = strlen(name) - 1;
 84			memcpy(event->comm.comm, name, size++);
 85		} else if (memcmp(bf, "Tgid:", 5) == 0) {
 86			char *tgids = bf + 5;
 87			while (*tgids && isspace(*tgids))
 88				++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, session->id_hdr_size);
 96	event->comm.header.size = (sizeof(event->comm) -
 97				(sizeof(event->comm.comm) - size) +
 98				session->id_hdr_size);
 99	if (!full) {
100		event->comm.tid = pid;
101
102		process(event, &synth_sample, session);
103		goto out;
104	}
 
 
 
 
105
106	snprintf(filename, sizeof(filename), "/proc/%d/task", pid);
 
 
107
108	tasks = opendir(filename);
109	if (tasks == NULL)
110		goto out_race;
 
111
112	while (!readdir_r(tasks, &dirent, &next) && next) {
113		char *end;
114		pid = strtol(dirent.d_name, &end, 10);
115		if (*end)
116			continue;
117
118		event->comm.tid = pid;
 
 
119
120		process(event, &synth_sample, session);
121	}
 
 
122
123	closedir(tasks);
124out:
125	fclose(fp);
126
127	return tgid;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
128}
129
130static int perf_event__synthesize_mmap_events(union perf_event *event,
131					      pid_t pid, pid_t tgid,
132					      perf_event__handler_t process,
133					      struct perf_session *session)
134{
135	char filename[PATH_MAX];
136	FILE *fp;
137
138	snprintf(filename, sizeof(filename), "/proc/%d/maps", pid);
 
 
 
139
140	fp = fopen(filename, "r");
141	if (fp == NULL) {
142		/*
143		 * We raced with a task exiting - just return:
144		 */
145		pr_debug("couldn't open %s\n", filename);
146		return -1;
147	}
148
149	event->header.type = PERF_RECORD_MMAP;
150	/*
151	 * Just like the kernel, see __perf_event_mmap in kernel/perf_event.c
152	 */
153	event->header.misc = PERF_RECORD_MISC_USER;
154
155	while (1) {
156		char bf[BUFSIZ], *pbf = bf;
157		int n;
158		size_t size;
159		if (fgets(bf, sizeof(bf), fp) == NULL)
160			break;
161
162		/* 00400000-0040c000 r-xp 00000000 fd:01 41038  /bin/cat */
163		n = hex2u64(pbf, &event->mmap.start);
164		if (n < 0)
165			continue;
166		pbf += n + 1;
167		n = hex2u64(pbf, &event->mmap.len);
168		if (n < 0)
169			continue;
170		pbf += n + 3;
171		if (*pbf == 'x') { /* vm_exec */
172			char anonstr[] = "//anon\n";
173			char *execname = strchr(bf, '/');
174
175			/* Catch VDSO */
176			if (execname == NULL)
177				execname = strstr(bf, "[vdso]");
178
179			/* Catch anonymous mmaps */
180			if ((execname == NULL) && !strstr(bf, "["))
181				execname = anonstr;
182
183			if (execname == NULL)
184				continue;
185
186			pbf += 3;
187			n = hex2u64(pbf, &event->mmap.pgoff);
188
189			size = strlen(execname);
190			execname[size - 1] = '\0'; /* Remove \n */
191			memcpy(event->mmap.filename, execname, size);
192			size = ALIGN(size, sizeof(u64));
193			event->mmap.len -= event->mmap.start;
194			event->mmap.header.size = (sizeof(event->mmap) -
195					        (sizeof(event->mmap.filename) - size));
196			memset(event->mmap.filename + size, 0, session->id_hdr_size);
197			event->mmap.header.size += session->id_hdr_size;
198			event->mmap.pid = tgid;
199			event->mmap.tid = pid;
200
201			process(event, &synth_sample, session);
202		}
 
 
 
 
 
 
203	}
204
205	fclose(fp);
206	return 0;
 
 
 
 
 
207}
208
209int perf_event__synthesize_modules(perf_event__handler_t process,
210				   struct perf_session *session,
 
 
 
 
 
 
 
 
 
211				   struct machine *machine)
212{
213	struct rb_node *nd;
214	struct map_groups *kmaps = &machine->kmaps;
215	union perf_event *event = zalloc((sizeof(event->mmap) +
216					  session->id_hdr_size));
217	if (event == NULL) {
218		pr_debug("Not enough memory synthesizing mmap event "
219			 "for kernel modules\n");
220		return -1;
221	}
222
223	event->header.type = PERF_RECORD_MMAP;
 
 
 
 
 
 
224
225	/*
226	 * kernel uses 0 for user space maps, see kernel/perf_event.c
227	 * __perf_event_mmap
228	 */
229	if (machine__is_host(machine))
230		event->header.misc = PERF_RECORD_MISC_KERNEL;
231	else
232		event->header.misc = PERF_RECORD_MISC_GUEST_KERNEL;
233
234	for (nd = rb_first(&kmaps->maps[MAP__FUNCTION]);
235	     nd; nd = rb_next(nd)) {
236		size_t size;
237		struct map *pos = rb_entry(nd, struct map, rb_node);
238
239		if (pos->dso->kernel)
240			continue;
241
242		size = ALIGN(pos->dso->long_name_len + 1, sizeof(u64));
243		event->mmap.header.type = PERF_RECORD_MMAP;
244		event->mmap.header.size = (sizeof(event->mmap) -
245				        (sizeof(event->mmap.filename) - size));
246		memset(event->mmap.filename + size, 0, session->id_hdr_size);
247		event->mmap.header.size += session->id_hdr_size;
248		event->mmap.start = pos->start;
249		event->mmap.len   = pos->end - pos->start;
250		event->mmap.pid   = machine->pid;
251
252		memcpy(event->mmap.filename, pos->dso->long_name,
253		       pos->dso->long_name_len + 1);
254		process(event, &synth_sample, session);
255	}
256
257	free(event);
258	return 0;
 
 
 
 
259}
260
261static int __event__synthesize_thread(union perf_event *comm_event,
262				      union perf_event *mmap_event,
263				      pid_t pid, perf_event__handler_t process,
264				      struct perf_session *session)
265{
266	pid_t tgid = perf_event__synthesize_comm(comm_event, pid, 1, process,
267					    session);
268	if (tgid == -1)
269		return -1;
270	return perf_event__synthesize_mmap_events(mmap_event, pid, tgid,
271					     process, session);
272}
273
274int perf_event__synthesize_thread_map(struct thread_map *threads,
275				      perf_event__handler_t process,
276				      struct perf_session *session)
277{
278	union perf_event *comm_event, *mmap_event;
279	int err = -1, thread;
280
281	comm_event = malloc(sizeof(comm_event->comm) + session->id_hdr_size);
282	if (comm_event == NULL)
283		goto out;
284
285	mmap_event = malloc(sizeof(mmap_event->mmap) + session->id_hdr_size);
286	if (mmap_event == NULL)
287		goto out_free_comm;
288
289	err = 0;
290	for (thread = 0; thread < threads->nr; ++thread) {
291		if (__event__synthesize_thread(comm_event, mmap_event,
292					       threads->map[thread],
293					       process, session)) {
294			err = -1;
295			break;
296		}
297	}
298	free(mmap_event);
299out_free_comm:
300	free(comm_event);
301out:
302	return err;
303}
304
305int perf_event__synthesize_threads(perf_event__handler_t process,
306				   struct perf_session *session)
307{
308	DIR *proc;
309	struct dirent dirent, *next;
310	union perf_event *comm_event, *mmap_event;
311	int err = -1;
312
313	comm_event = malloc(sizeof(comm_event->comm) + session->id_hdr_size);
314	if (comm_event == NULL)
315		goto out;
316
317	mmap_event = malloc(sizeof(mmap_event->mmap) + session->id_hdr_size);
318	if (mmap_event == NULL)
319		goto out_free_comm;
320
321	proc = opendir("/proc");
322	if (proc == NULL)
323		goto out_free_mmap;
324
325	while (!readdir_r(proc, &dirent, &next) && next) {
326		char *end;
327		pid_t pid = strtol(dirent.d_name, &end, 10);
328
329		if (*end) /* only interested in proper numerical dirents */
330			continue;
331
332		__event__synthesize_thread(comm_event, mmap_event, pid,
333					   process, session);
334	}
335
336	closedir(proc);
337	err = 0;
338out_free_mmap:
339	free(mmap_event);
340out_free_comm:
341	free(comm_event);
342out:
343	return err;
344}
345
346struct process_symbol_args {
347	const char *name;
348	u64	   start;
349};
 
 
 
350
351static int find_symbol_cb(void *arg, const char *name, char type,
352			  u64 start, u64 end __used)
 
 
353{
354	struct process_symbol_args *args = arg;
 
355
356	/*
357	 * Must be a function or at least an alias, as in PARISC64, where "_text" is
358	 * an 'A' to the same address as "_stext".
359	 */
360	if (!(symbol_type__is_a(type, MAP__FUNCTION) ||
361	      type == 'A') || strcmp(name, args->name))
362		return 0;
363
364	args->start = start;
365	return 1;
 
 
 
 
366}
367
368int perf_event__synthesize_kernel_mmap(perf_event__handler_t process,
369				       struct perf_session *session,
370				       struct machine *machine,
371				       const char *symbol_name)
372{
373	size_t size;
374	const char *filename, *mmap_name;
375	char path[PATH_MAX];
376	char name_buff[PATH_MAX];
377	struct map *map;
378	int err;
379	/*
380	 * We should get this from /sys/kernel/sections/.text, but till that is
381	 * available use this, and after it is use this as a fallback for older
382	 * kernels.
383	 */
384	struct process_symbol_args args = { .name = symbol_name, };
385	union perf_event *event = zalloc((sizeof(event->mmap) +
386					  session->id_hdr_size));
387	if (event == NULL) {
388		pr_debug("Not enough memory synthesizing mmap event "
389			 "for kernel modules\n");
390		return -1;
391	}
392
393	mmap_name = machine__mmap_name(machine, name_buff, sizeof(name_buff));
394	if (machine__is_host(machine)) {
395		/*
396		 * kernel uses PERF_RECORD_MISC_USER for user space maps,
397		 * see kernel/perf_event.c __perf_event_mmap
398		 */
399		event->header.misc = PERF_RECORD_MISC_KERNEL;
400		filename = "/proc/kallsyms";
 
 
 
 
 
 
 
 
 
 
 
401	} else {
402		event->header.misc = PERF_RECORD_MISC_GUEST_KERNEL;
403		if (machine__is_default_guest(machine))
404			filename = (char *) symbol_conf.default_guest_kallsyms;
405		else {
406			sprintf(path, "%s/proc/kallsyms", machine->root_dir);
407			filename = path;
408		}
 
 
 
 
409	}
 
410
411	if (kallsyms__parse(filename, &args, find_symbol_cb) <= 0)
412		return -ENOENT;
 
 
413
414	map = machine->vmlinux_maps[MAP__FUNCTION];
415	size = snprintf(event->mmap.filename, sizeof(event->mmap.filename),
416			"%s%s", mmap_name, symbol_name) + 1;
417	size = ALIGN(size, sizeof(u64));
418	event->mmap.header.type = PERF_RECORD_MMAP;
419	event->mmap.header.size = (sizeof(event->mmap) -
420			(sizeof(event->mmap.filename) - size) + session->id_hdr_size);
421	event->mmap.pgoff = args.start;
422	event->mmap.start = map->start;
423	event->mmap.len   = map->end - event->mmap.start;
424	event->mmap.pid   = machine->pid;
425
426	err = process(event, &synth_sample, session);
427	free(event);
 
 
428
429	return err;
 
430}
431
432int perf_event__process_comm(union perf_event *event,
433			     struct perf_sample *sample __used,
434			     struct perf_session *session)
435{
436	struct thread *thread = perf_session__findnew(session, event->comm.tid);
 
437
438	dump_printf(": %s:%d\n", event->comm.comm, event->comm.tid);
439
440	if (thread == NULL || thread__set_comm(thread, event->comm.comm)) {
441		dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
442		return -1;
443	}
444
445	return 0;
 
446}
447
448int perf_event__process_lost(union perf_event *event,
449			     struct perf_sample *sample __used,
450			     struct perf_session *session)
451{
452	dump_printf(": id:%" PRIu64 ": lost:%" PRIu64 "\n",
453		    event->lost.id, event->lost.lost);
454	session->hists.stats.total_lost += event->lost.lost;
455	return 0;
456}
457
458static void perf_event__set_kernel_mmap_len(union perf_event *event,
459					    struct map **maps)
 
 
460{
461	maps[MAP__FUNCTION]->start = event->mmap.start;
462	maps[MAP__FUNCTION]->end   = event->mmap.start + event->mmap.len;
463	/*
464	 * Be a bit paranoid here, some perf.data file came with
465	 * a zero sized synthesized MMAP event for the kernel.
466	 */
467	if (maps[MAP__FUNCTION]->end == 0)
468		maps[MAP__FUNCTION]->end = ~0ULL;
469}
470
471static int perf_event__process_kernel_mmap(union perf_event *event,
472					   struct perf_session *session)
473{
474	struct map *map;
475	char kmmap_prefix[PATH_MAX];
476	struct machine *machine;
477	enum dso_kernel_type kernel_type;
478	bool is_kernel_mmap;
479
480	machine = perf_session__findnew_machine(session, event->mmap.pid);
481	if (!machine) {
482		pr_err("Can't find id %d's machine\n", event->mmap.pid);
483		goto out_problem;
484	}
485
486	machine__mmap_name(machine, kmmap_prefix, sizeof(kmmap_prefix));
487	if (machine__is_host(machine))
488		kernel_type = DSO_TYPE_KERNEL;
489	else
490		kernel_type = DSO_TYPE_GUEST_KERNEL;
 
 
491
492	is_kernel_mmap = memcmp(event->mmap.filename,
493				kmmap_prefix,
494				strlen(kmmap_prefix)) == 0;
495	if (event->mmap.filename[0] == '/' ||
496	    (!is_kernel_mmap && event->mmap.filename[0] == '[')) {
497
498		char short_module_name[1024];
499		char *name, *dot;
500
501		if (event->mmap.filename[0] == '/') {
502			name = strrchr(event->mmap.filename, '/');
503			if (name == NULL)
504				goto out_problem;
505
506			++name; /* skip / */
507			dot = strrchr(name, '.');
508			if (dot == NULL)
509				goto out_problem;
510			snprintf(short_module_name, sizeof(short_module_name),
511					"[%.*s]", (int)(dot - name), name);
512			strxfrchar(short_module_name, '-', '_');
513		} else
514			strcpy(short_module_name, event->mmap.filename);
515
516		map = machine__new_module(machine, event->mmap.start,
517					  event->mmap.filename);
518		if (map == NULL)
519			goto out_problem;
520
521		name = strdup(short_module_name);
522		if (name == NULL)
523			goto out_problem;
524
525		map->dso->short_name = name;
526		map->dso->sname_alloc = 1;
527		map->end = map->start + event->mmap.len;
528	} else if (is_kernel_mmap) {
529		const char *symbol_name = (event->mmap.filename +
530				strlen(kmmap_prefix));
531		/*
532		 * Should be there already, from the build-id table in
533		 * the header.
534		 */
535		struct dso *kernel = __dsos__findnew(&machine->kernel_dsos,
536						     kmmap_prefix);
537		if (kernel == NULL)
538			goto out_problem;
539
540		kernel->kernel = kernel_type;
541		if (__machine__create_kernel_maps(machine, kernel) < 0)
542			goto out_problem;
543
544		perf_event__set_kernel_mmap_len(event, machine->vmlinux_maps);
 
 
 
 
 
 
 
545
546		/*
547		 * Avoid using a zero address (kptr_restrict) for the ref reloc
548		 * symbol. Effectively having zero here means that at record
549		 * time /proc/sys/kernel/kptr_restrict was non zero.
550		 */
551		if (event->mmap.pgoff != 0) {
552			perf_session__set_kallsyms_ref_reloc_sym(machine->vmlinux_maps,
553								 symbol_name,
554								 event->mmap.pgoff);
555		}
556
557		if (machine__is_default_guest(machine)) {
558			/*
559			 * preload dso of guest kernel and modules
560			 */
561			dso__load(kernel, machine->vmlinux_maps[MAP__FUNCTION],
562				  NULL);
563		}
564	}
 
565	return 0;
566out_problem:
567	return -1;
568}
569
570int perf_event__process_mmap(union perf_event *event,
571			     struct perf_sample *sample __used,
572			     struct perf_session *session)
573{
574	struct machine *machine;
575	struct thread *thread;
576	struct map *map;
577	u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
578	int ret = 0;
579
580	dump_printf(" %d/%d: [%#" PRIx64 "(%#" PRIx64 ") @ %#" PRIx64 "]: %s\n",
581			event->mmap.pid, event->mmap.tid, event->mmap.start,
582			event->mmap.len, event->mmap.pgoff, event->mmap.filename);
583
584	if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL ||
585	    cpumode == PERF_RECORD_MISC_KERNEL) {
586		ret = perf_event__process_kernel_mmap(event, session);
587		if (ret < 0)
588			goto out_problem;
589		return 0;
590	}
591
592	machine = perf_session__find_host_machine(session);
593	if (machine == NULL)
594		goto out_problem;
595	thread = perf_session__findnew(session, event->mmap.pid);
596	if (thread == NULL)
597		goto out_problem;
598	map = map__new(&machine->user_dsos, event->mmap.start,
599			event->mmap.len, event->mmap.pgoff,
600			event->mmap.pid, event->mmap.filename,
601			MAP__FUNCTION);
602	if (map == NULL)
603		goto out_problem;
604
605	thread__insert_map(thread, map);
606	return 0;
 
 
 
607
608out_problem:
609	dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
610	return 0;
 
 
 
 
 
 
 
 
 
 
 
611}
612
613int perf_event__process_task(union perf_event *event,
614			     struct perf_sample *sample __used,
615			     struct perf_session *session)
616{
617	struct thread *thread = perf_session__findnew(session, event->fork.tid);
618	struct thread *parent = perf_session__findnew(session, event->fork.ptid);
619
620	dump_printf("(%d:%d):(%d:%d)\n", event->fork.pid, event->fork.tid,
621		    event->fork.ppid, event->fork.ptid);
 
 
 
 
 
622
623	if (event->header.type == PERF_RECORD_EXIT) {
624		perf_session__remove_thread(session, thread);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
625		return 0;
626	}
 
627
628	if (thread == NULL || parent == NULL ||
629	    thread__fork(thread, parent) < 0) {
630		dump_printf("problem processing PERF_RECORD_FORK, skipping event.\n");
631		return -1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
632	}
633
634	return 0;
 
 
 
 
 
 
635}
636
637int perf_event__process(union perf_event *event, struct perf_sample *sample,
638			struct perf_session *session)
639{
 
 
 
640	switch (event->header.type) {
641	case PERF_RECORD_COMM:
642		perf_event__process_comm(event, sample, session);
643		break;
644	case PERF_RECORD_MMAP:
645		perf_event__process_mmap(event, sample, session);
646		break;
647	case PERF_RECORD_FORK:
648	case PERF_RECORD_EXIT:
649		perf_event__process_task(event, sample, session);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
650		break;
651	case PERF_RECORD_LOST:
652		perf_event__process_lost(event, sample, session);
653	default:
 
 
 
 
 
654		break;
 
 
 
 
 
 
 
 
655	}
656
657	return 0;
658}
659
660void thread__find_addr_map(struct thread *self,
661			   struct perf_session *session, u8 cpumode,
662			   enum map_type type, pid_t pid, u64 addr,
663			   struct addr_location *al)
664{
665	struct map_groups *mg = &self->mg;
666	struct machine *machine = NULL;
 
 
 
 
 
 
 
 
 
 
 
 
667
668	al->thread = self;
669	al->addr = addr;
670	al->cpumode = cpumode;
671	al->filtered = false;
 
 
 
672
673	if (cpumode == PERF_RECORD_MISC_KERNEL && perf_host) {
674		al->level = 'k';
675		machine = perf_session__find_host_machine(session);
676		if (machine == NULL) {
677			al->map = NULL;
678			return;
679		}
680		mg = &machine->kmaps;
681	} else if (cpumode == PERF_RECORD_MISC_USER && perf_host) {
682		al->level = '.';
683		machine = perf_session__find_host_machine(session);
684	} else if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL && perf_guest) {
685		al->level = 'g';
686		machine = perf_session__find_machine(session, pid);
687		if (machine == NULL) {
688			al->map = NULL;
689			return;
690		}
691		mg = &machine->kmaps;
692	} else {
693		/*
694		 * 'u' means guest os user space.
695		 * TODO: We don't support guest user space. Might support late.
696		 */
697		if (cpumode == PERF_RECORD_MISC_GUEST_USER && perf_guest)
698			al->level = 'u';
699		else
700			al->level = 'H';
701		al->map = NULL;
702
703		if ((cpumode == PERF_RECORD_MISC_GUEST_USER ||
704			cpumode == PERF_RECORD_MISC_GUEST_KERNEL) &&
705			!perf_guest)
706			al->filtered = true;
707		if ((cpumode == PERF_RECORD_MISC_USER ||
708			cpumode == PERF_RECORD_MISC_KERNEL) &&
709			!perf_host)
710			al->filtered = true;
711
712		return;
713	}
714try_again:
715	al->map = map_groups__find(mg, type, al->addr);
716	if (al->map == NULL) {
717		/*
718		 * If this is outside of all known maps, and is a negative
719		 * address, try to look it up in the kernel dso, as it might be
720		 * a vsyscall or vdso (which executes in user-mode).
721		 *
722		 * XXX This is nasty, we should have a symbol list in the
723		 * "[vdso]" dso, but for now lets use the old trick of looking
724		 * in the whole kernel symbol list.
725		 */
726		if ((long long)al->addr < 0 &&
727		    cpumode == PERF_RECORD_MISC_USER &&
728		    machine && mg != &machine->kmaps) {
729			mg = &machine->kmaps;
730			goto try_again;
731		}
732	} else
733		al->addr = al->map->map_ip(al->map, al->addr);
734}
735
736void thread__find_addr_location(struct thread *self,
737				struct perf_session *session, u8 cpumode,
738				enum map_type type, pid_t pid, u64 addr,
739				struct addr_location *al,
740				symbol_filter_t filter)
741{
742	thread__find_addr_map(self, session, cpumode, type, pid, addr, al);
743	if (al->map != NULL)
744		al->sym = map__find_symbol(al->map, al->addr, filter);
745	else
746		al->sym = NULL;
 
 
 
 
 
747}
748
749int perf_event__preprocess_sample(const union perf_event *event,
750				  struct perf_session *session,
751				  struct addr_location *al,
752				  struct perf_sample *sample,
753				  symbol_filter_t filter)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
754{
755	u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
756	struct thread *thread = perf_session__findnew(session, event->ip.pid);
757
 
 
 
 
758	if (thread == NULL)
759		return -1;
760
761	if (symbol_conf.comm_list &&
762	    !strlist__has_entry(symbol_conf.comm_list, thread->comm))
763		goto out_filtered;
 
 
 
 
764
765	dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
766	/*
767	 * Have we already created the kernel maps for the host machine?
768	 *
769	 * This should have happened earlier, when we processed the kernel MMAP
770	 * events, but for older perf.data files there was no such thing, so do
771	 * it now.
772	 */
773	if (cpumode == PERF_RECORD_MISC_KERNEL &&
774	    session->host_machine.vmlinux_maps[MAP__FUNCTION] == NULL)
775		machine__create_kernel_maps(&session->host_machine);
776
777	thread__find_addr_map(thread, session, cpumode, MAP__FUNCTION,
778			      event->ip.pid, event->ip.ip, al);
779	dump_printf(" ...... dso: %s\n",
780		    al->map ? al->map->dso->long_name :
781			al->level == 'H' ? "[hypervisor]" : "<not found>");
782	al->sym = NULL;
783	al->cpu = sample->cpu;
 
 
 
 
 
 
 
 
 
784
785	if (al->map) {
786		if (symbol_conf.dso_list &&
787		    (!al->map || !al->map->dso ||
788		     !(strlist__has_entry(symbol_conf.dso_list,
789					  al->map->dso->short_name) ||
790		       (al->map->dso->short_name != al->map->dso->long_name &&
791			strlist__has_entry(symbol_conf.dso_list,
792					   al->map->dso->long_name)))))
793			goto out_filtered;
794
795		al->sym = map__find_symbol(al->map, al->addr, filter);
 
 
796	}
797
798	if (symbol_conf.sym_list && al->sym &&
799	    !strlist__has_entry(symbol_conf.sym_list, al->sym->name))
800		goto out_filtered;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
801
802	return 0;
 
 
803
804out_filtered:
805	al->filtered = true;
806	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
807}
v6.13.7
  1#include <errno.h>
  2#include <fcntl.h>
  3#include <inttypes.h>
  4#include <linux/kernel.h>
  5#include <linux/types.h>
  6#include <perf/cpumap.h>
  7#include <sys/types.h>
  8#include <sys/stat.h>
  9#include <unistd.h>
 10#include <uapi/linux/mman.h> /* To get things like MAP_HUGETLB even on older libc headers */
 11#include <linux/perf_event.h>
 12#include <linux/zalloc.h>
 13#include "cpumap.h"
 14#include "dso.h"
 15#include "event.h"
 16#include "debug.h"
 17#include "hist.h"
 18#include "machine.h"
 19#include "sort.h"
 20#include "string2.h"
 21#include "strlist.h"
 22#include "thread.h"
 23#include "thread_map.h"
 24#include "time-utils.h"
 25#include <linux/ctype.h>
 26#include "map.h"
 27#include "util/namespaces.h"
 28#include "symbol.h"
 29#include "symbol/kallsyms.h"
 30#include "asm/bug.h"
 31#include "stat.h"
 32#include "session.h"
 33#include "bpf-event.h"
 34#include "print_binary.h"
 35#include "tool.h"
 36#include "util.h"
 37
 38static const char *perf_event__names[] = {
 39	[0]					= "TOTAL",
 40	[PERF_RECORD_MMAP]			= "MMAP",
 41	[PERF_RECORD_MMAP2]			= "MMAP2",
 42	[PERF_RECORD_LOST]			= "LOST",
 43	[PERF_RECORD_COMM]			= "COMM",
 44	[PERF_RECORD_EXIT]			= "EXIT",
 45	[PERF_RECORD_THROTTLE]			= "THROTTLE",
 46	[PERF_RECORD_UNTHROTTLE]		= "UNTHROTTLE",
 47	[PERF_RECORD_FORK]			= "FORK",
 48	[PERF_RECORD_READ]			= "READ",
 49	[PERF_RECORD_SAMPLE]			= "SAMPLE",
 50	[PERF_RECORD_AUX]			= "AUX",
 51	[PERF_RECORD_ITRACE_START]		= "ITRACE_START",
 52	[PERF_RECORD_LOST_SAMPLES]		= "LOST_SAMPLES",
 53	[PERF_RECORD_SWITCH]			= "SWITCH",
 54	[PERF_RECORD_SWITCH_CPU_WIDE]		= "SWITCH_CPU_WIDE",
 55	[PERF_RECORD_NAMESPACES]		= "NAMESPACES",
 56	[PERF_RECORD_KSYMBOL]			= "KSYMBOL",
 57	[PERF_RECORD_BPF_EVENT]			= "BPF_EVENT",
 58	[PERF_RECORD_CGROUP]			= "CGROUP",
 59	[PERF_RECORD_TEXT_POKE]			= "TEXT_POKE",
 60	[PERF_RECORD_AUX_OUTPUT_HW_ID]		= "AUX_OUTPUT_HW_ID",
 61	[PERF_RECORD_HEADER_ATTR]		= "ATTR",
 62	[PERF_RECORD_HEADER_EVENT_TYPE]		= "EVENT_TYPE",
 63	[PERF_RECORD_HEADER_TRACING_DATA]	= "TRACING_DATA",
 64	[PERF_RECORD_HEADER_BUILD_ID]		= "BUILD_ID",
 65	[PERF_RECORD_FINISHED_ROUND]		= "FINISHED_ROUND",
 66	[PERF_RECORD_ID_INDEX]			= "ID_INDEX",
 67	[PERF_RECORD_AUXTRACE_INFO]		= "AUXTRACE_INFO",
 68	[PERF_RECORD_AUXTRACE]			= "AUXTRACE",
 69	[PERF_RECORD_AUXTRACE_ERROR]		= "AUXTRACE_ERROR",
 70	[PERF_RECORD_THREAD_MAP]		= "THREAD_MAP",
 71	[PERF_RECORD_CPU_MAP]			= "CPU_MAP",
 72	[PERF_RECORD_STAT_CONFIG]		= "STAT_CONFIG",
 73	[PERF_RECORD_STAT]			= "STAT",
 74	[PERF_RECORD_STAT_ROUND]		= "STAT_ROUND",
 75	[PERF_RECORD_EVENT_UPDATE]		= "EVENT_UPDATE",
 76	[PERF_RECORD_TIME_CONV]			= "TIME_CONV",
 77	[PERF_RECORD_HEADER_FEATURE]		= "FEATURE",
 78	[PERF_RECORD_COMPRESSED]		= "COMPRESSED",
 79	[PERF_RECORD_FINISHED_INIT]		= "FINISHED_INIT",
 80};
 81
 82const char *perf_event__name(unsigned int id)
 83{
 84	if (id >= ARRAY_SIZE(perf_event__names))
 85		return "INVALID";
 86	if (!perf_event__names[id])
 87		return "UNKNOWN";
 88	return perf_event__names[id];
 89}
 90
 91struct process_symbol_args {
 92	const char *name;
 93	u64	   start;
 
 
 
 
 94};
 95
 96static int find_func_symbol_cb(void *arg, const char *name, char type,
 97			       u64 start)
 98{
 99	struct process_symbol_args *args = arg;
100
101	/*
102	 * Must be a function or at least an alias, as in PARISC64, where "_text" is
103	 * an 'A' to the same address as "_stext".
104	 */
105	if (!(kallsyms__is_function(type) ||
106	      type == 'A') || strcmp(name, args->name))
 
 
 
 
 
 
 
 
 
 
107		return 0;
 
108
109	args->start = start;
110	return 1;
111}
112
113static int find_any_symbol_cb(void *arg, const char *name,
114			      char type __maybe_unused, u64 start)
115{
116	struct process_symbol_args *args = arg;
 
117
118	if (strcmp(name, args->name))
119		return 0;
 
 
 
 
 
 
 
 
 
 
 
120
121	args->start = start;
122	return 1;
123}
 
 
 
 
 
124
125int kallsyms__get_function_start(const char *kallsyms_filename,
126				 const char *symbol_name, u64 *addr)
127{
128	struct process_symbol_args args = { .name = symbol_name, };
129
130	if (kallsyms__parse(kallsyms_filename, &args, find_func_symbol_cb) <= 0)
131		return -1;
132
133	*addr = args.start;
134	return 0;
135}
136
137int kallsyms__get_symbol_start(const char *kallsyms_filename,
138			       const char *symbol_name, u64 *addr)
139{
140	struct process_symbol_args args = { .name = symbol_name, };
141
142	if (kallsyms__parse(kallsyms_filename, &args, find_any_symbol_cb) <= 0)
143		return -1;
 
 
 
144
145	*addr = args.start;
146	return 0;
147}
148
149void perf_event__read_stat_config(struct perf_stat_config *config,
150				  struct perf_record_stat_config *event)
151{
152	unsigned i;
153
154	for (i = 0; i < event->nr; i++) {
 
 
155
156		switch (event->data[i].tag) {
157#define CASE(__term, __val)					\
158		case PERF_STAT_CONFIG_TERM__##__term:		\
159			config->__val = event->data[i].val;	\
160			break;
161
162		CASE(AGGR_MODE,  aggr_mode)
163		CASE(SCALE,      scale)
164		CASE(INTERVAL,   interval)
165		CASE(AGGR_LEVEL, aggr_level)
166#undef CASE
167		default:
168			pr_warning("unknown stat config term %" PRI_lu64 "\n",
169				   event->data[i].tag);
170		}
171	}
172}
173
174size_t perf_event__fprintf_comm(union perf_event *event, FILE *fp)
 
 
 
175{
176	const char *s;
 
177
178	if (event->header.misc & PERF_RECORD_MISC_COMM_EXEC)
179		s = " exec";
180	else
181		s = "";
182
183	return fprintf(fp, "%s: %s:%d/%d\n", s, event->comm.comm, event->comm.pid, event->comm.tid);
184}
 
 
 
 
 
 
185
186size_t perf_event__fprintf_namespaces(union perf_event *event, FILE *fp)
187{
188	size_t ret = 0;
189	struct perf_ns_link_info *ns_link_info;
190	u32 nr_namespaces, idx;
191
192	ns_link_info = event->namespaces.link_info;
193	nr_namespaces = event->namespaces.nr_namespaces;
 
 
 
 
194
195	ret += fprintf(fp, " %d/%d - nr_namespaces: %u\n\t\t[",
196		       event->namespaces.pid,
197		       event->namespaces.tid,
198		       nr_namespaces);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
199
200	for (idx = 0; idx < nr_namespaces; idx++) {
201		if (idx && (idx % 4 == 0))
202			ret += fprintf(fp, "\n\t\t ");
203
204		ret  += fprintf(fp, "%u/%s: %" PRIu64 "/%#" PRIx64 "%s", idx,
205				perf_ns__name(idx), (u64)ns_link_info[idx].dev,
206				(u64)ns_link_info[idx].ino,
207				((idx + 1) != nr_namespaces) ? ", " : "]\n");
208	}
209
210	return ret;
211}
212
213size_t perf_event__fprintf_cgroup(union perf_event *event, FILE *fp)
214{
215	return fprintf(fp, " cgroup: %" PRI_lu64 " %s\n",
216		       event->cgroup.id, event->cgroup.path);
217}
218
219int perf_event__process_comm(const struct perf_tool *tool __maybe_unused,
220			     union perf_event *event,
221			     struct perf_sample *sample,
222			     struct machine *machine)
223{
224	return machine__process_comm_event(machine, event, sample);
225}
226
227int perf_event__process_namespaces(const struct perf_tool *tool __maybe_unused,
228				   union perf_event *event,
229				   struct perf_sample *sample,
230				   struct machine *machine)
231{
232	return machine__process_namespaces_event(machine, event, sample);
233}
 
 
 
 
 
 
 
234
235int perf_event__process_cgroup(const struct perf_tool *tool __maybe_unused,
236			       union perf_event *event,
237			       struct perf_sample *sample,
238			       struct machine *machine)
239{
240	return machine__process_cgroup_event(machine, event, sample);
241}
242
243int perf_event__process_lost(const struct perf_tool *tool __maybe_unused,
244			     union perf_event *event,
245			     struct perf_sample *sample,
246			     struct machine *machine)
247{
248	return machine__process_lost_event(machine, event, sample);
249}
 
250
251int perf_event__process_aux(const struct perf_tool *tool __maybe_unused,
252			    union perf_event *event,
253			    struct perf_sample *sample __maybe_unused,
254			    struct machine *machine)
255{
256	return machine__process_aux_event(machine, event);
257}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
258
259int perf_event__process_itrace_start(const struct perf_tool *tool __maybe_unused,
260				     union perf_event *event,
261				     struct perf_sample *sample __maybe_unused,
262				     struct machine *machine)
263{
264	return machine__process_itrace_start_event(machine, event);
265}
266
267int perf_event__process_aux_output_hw_id(const struct perf_tool *tool __maybe_unused,
268					 union perf_event *event,
269					 struct perf_sample *sample __maybe_unused,
270					 struct machine *machine)
271{
272	return machine__process_aux_output_hw_id_event(machine, event);
 
 
 
 
 
273}
274
275int perf_event__process_lost_samples(const struct perf_tool *tool __maybe_unused,
276				     union perf_event *event,
277				     struct perf_sample *sample,
278				     struct machine *machine)
279{
280	return machine__process_lost_samples_event(machine, event, sample);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
281}
282
283int perf_event__process_switch(const struct perf_tool *tool __maybe_unused,
284			       union perf_event *event,
285			       struct perf_sample *sample __maybe_unused,
286			       struct machine *machine)
287{
288	return machine__process_switch_event(machine, event);
289}
290
291int perf_event__process_ksymbol(const struct perf_tool *tool __maybe_unused,
292				union perf_event *event,
293				struct perf_sample *sample __maybe_unused,
294				struct machine *machine)
295{
296	return machine__process_ksymbol(machine, event, sample);
297}
298
299int perf_event__process_bpf(const struct perf_tool *tool __maybe_unused,
300			    union perf_event *event,
301			    struct perf_sample *sample,
302			    struct machine *machine)
303{
304	return machine__process_bpf(machine, event, sample);
305}
306
307int perf_event__process_text_poke(const struct perf_tool *tool __maybe_unused,
308				  union perf_event *event,
309				  struct perf_sample *sample,
310				  struct machine *machine)
311{
312	return machine__process_text_poke(machine, event, sample);
313}
314
315size_t perf_event__fprintf_mmap(union perf_event *event, FILE *fp)
316{
317	return fprintf(fp, " %d/%d: [%#" PRI_lx64 "(%#" PRI_lx64 ") @ %#" PRI_lx64 "]: %c %s\n",
318		       event->mmap.pid, event->mmap.tid, event->mmap.start,
319		       event->mmap.len, event->mmap.pgoff,
320		       (event->header.misc & PERF_RECORD_MISC_MMAP_DATA) ? 'r' : 'x',
321		       event->mmap.filename);
322}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
323
324size_t perf_event__fprintf_mmap2(union perf_event *event, FILE *fp)
325{
326	if (event->header.misc & PERF_RECORD_MISC_MMAP_BUILD_ID) {
327		char sbuild_id[SBUILD_ID_SIZE];
328		struct build_id bid;
329
330		build_id__init(&bid, event->mmap2.build_id,
331			       event->mmap2.build_id_size);
332		build_id__sprintf(&bid, sbuild_id);
333
334		return fprintf(fp, " %d/%d: [%#" PRI_lx64 "(%#" PRI_lx64 ") @ %#" PRI_lx64
335				   " <%s>]: %c%c%c%c %s\n",
336			       event->mmap2.pid, event->mmap2.tid, event->mmap2.start,
337			       event->mmap2.len, event->mmap2.pgoff, sbuild_id,
338			       (event->mmap2.prot & PROT_READ) ? 'r' : '-',
339			       (event->mmap2.prot & PROT_WRITE) ? 'w' : '-',
340			       (event->mmap2.prot & PROT_EXEC) ? 'x' : '-',
341			       (event->mmap2.flags & MAP_SHARED) ? 's' : 'p',
342			       event->mmap2.filename);
343	} else {
344		return fprintf(fp, " %d/%d: [%#" PRI_lx64 "(%#" PRI_lx64 ") @ %#" PRI_lx64
345				   " %02x:%02x %"PRI_lu64" %"PRI_lu64"]: %c%c%c%c %s\n",
346			       event->mmap2.pid, event->mmap2.tid, event->mmap2.start,
347			       event->mmap2.len, event->mmap2.pgoff, event->mmap2.maj,
348			       event->mmap2.min, event->mmap2.ino,
349			       event->mmap2.ino_generation,
350			       (event->mmap2.prot & PROT_READ) ? 'r' : '-',
351			       (event->mmap2.prot & PROT_WRITE) ? 'w' : '-',
352			       (event->mmap2.prot & PROT_EXEC) ? 'x' : '-',
353			       (event->mmap2.flags & MAP_SHARED) ? 's' : 'p',
354			       event->mmap2.filename);
355	}
356}
357
358size_t perf_event__fprintf_thread_map(union perf_event *event, FILE *fp)
359{
360	struct perf_thread_map *threads = thread_map__new_event(&event->thread_map);
361	size_t ret;
362
363	ret = fprintf(fp, " nr: ");
 
 
 
 
 
 
 
 
 
 
364
365	if (threads)
366		ret += thread_map__fprintf(threads, fp);
367	else
368		ret += fprintf(fp, "failed to get threads from event\n");
369
370	perf_thread_map__put(threads);
371	return ret;
372}
373
374size_t perf_event__fprintf_cpu_map(union perf_event *event, FILE *fp)
 
 
375{
376	struct perf_cpu_map *cpus = cpu_map__new_data(&event->cpu_map.data);
377	size_t ret;
378
379	ret = fprintf(fp, ": ");
380
381	if (cpus)
382		ret += cpu_map__fprintf(cpus, fp);
383	else
384		ret += fprintf(fp, "failed to get cpumap from event\n");
385
386	perf_cpu_map__put(cpus);
387	return ret;
388}
389
390int perf_event__process_mmap(const struct perf_tool *tool __maybe_unused,
391			     union perf_event *event,
392			     struct perf_sample *sample,
393			     struct machine *machine)
394{
395	return machine__process_mmap_event(machine, event, sample);
 
 
396}
397
398int perf_event__process_mmap2(const struct perf_tool *tool __maybe_unused,
399			     union perf_event *event,
400			     struct perf_sample *sample,
401			     struct machine *machine)
402{
403	return machine__process_mmap2_event(machine, event, sample);
 
 
 
 
 
 
 
404}
405
406size_t perf_event__fprintf_task(union perf_event *event, FILE *fp)
 
407{
408	return fprintf(fp, "(%d:%d):(%d:%d)\n",
409		       event->fork.pid, event->fork.tid,
410		       event->fork.ppid, event->fork.ptid);
411}
 
 
 
 
 
 
 
412
413int perf_event__process_fork(const struct perf_tool *tool __maybe_unused,
414			     union perf_event *event,
415			     struct perf_sample *sample,
416			     struct machine *machine)
417{
418	return machine__process_fork_event(machine, event, sample);
419}
420
421int perf_event__process_exit(const struct perf_tool *tool __maybe_unused,
422			     union perf_event *event,
423			     struct perf_sample *sample,
424			     struct machine *machine)
425{
426	return machine__process_exit_event(machine, event, sample);
427}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
428
429int perf_event__exit_del_thread(const struct perf_tool *tool __maybe_unused,
430				union perf_event *event,
431				struct perf_sample *sample __maybe_unused,
432				struct machine *machine)
433{
434	struct thread *thread = machine__findnew_thread(machine,
435							event->fork.pid,
436							event->fork.tid);
437
438	dump_printf("(%d:%d):(%d:%d)\n", event->fork.pid, event->fork.tid,
439		    event->fork.ppid, event->fork.ptid);
 
 
 
 
 
 
 
 
440
441	if (thread) {
442		machine__remove_thread(machine, thread);
443		thread__put(thread);
 
 
 
 
444	}
445
446	return 0;
 
 
447}
448
449size_t perf_event__fprintf_aux(union perf_event *event, FILE *fp)
 
 
450{
451	return fprintf(fp, " offset: %#"PRI_lx64" size: %#"PRI_lx64" flags: %#"PRI_lx64" [%s%s%s]\n",
452		       event->aux.aux_offset, event->aux.aux_size,
453		       event->aux.flags,
454		       event->aux.flags & PERF_AUX_FLAG_TRUNCATED ? "T" : "",
455		       event->aux.flags & PERF_AUX_FLAG_OVERWRITE ? "O" : "",
456		       event->aux.flags & PERF_AUX_FLAG_PARTIAL   ? "P" : "");
457}
 
 
 
 
 
 
 
 
 
 
458
459size_t perf_event__fprintf_itrace_start(union perf_event *event, FILE *fp)
460{
461	return fprintf(fp, " pid: %u tid: %u\n",
462		       event->itrace_start.pid, event->itrace_start.tid);
463}
 
 
 
 
 
 
 
464
465size_t perf_event__fprintf_aux_output_hw_id(union perf_event *event, FILE *fp)
466{
467	return fprintf(fp, " hw_id: %#"PRI_lx64"\n",
468		       event->aux_output_hw_id.hw_id);
469}
470
471size_t perf_event__fprintf_switch(union perf_event *event, FILE *fp)
472{
473	bool out = event->header.misc & PERF_RECORD_MISC_SWITCH_OUT;
474	const char *in_out = !out ? "IN         " :
475		!(event->header.misc & PERF_RECORD_MISC_SWITCH_OUT_PREEMPT) ?
476				    "OUT        " : "OUT preempt";
477
478	if (event->header.type == PERF_RECORD_SWITCH)
479		return fprintf(fp, " %s\n", in_out);
480
481	return fprintf(fp, " %s  %s pid/tid: %5d/%-5d\n",
482		       in_out, out ? "next" : "prev",
483		       event->context_switch.next_prev_pid,
484		       event->context_switch.next_prev_tid);
485}
486
487static size_t perf_event__fprintf_lost(union perf_event *event, FILE *fp)
 
 
488{
489	return fprintf(fp, " lost %" PRI_lu64 "\n", event->lost.lost);
490}
491
492size_t perf_event__fprintf_ksymbol(union perf_event *event, FILE *fp)
493{
494	return fprintf(fp, " addr %" PRI_lx64 " len %u type %u flags 0x%x name %s\n",
495		       event->ksymbol.addr, event->ksymbol.len,
496		       event->ksymbol.ksym_type,
497		       event->ksymbol.flags, event->ksymbol.name);
498}
499
500size_t perf_event__fprintf_bpf(union perf_event *event, FILE *fp)
501{
502	return fprintf(fp, " type %u, flags %u, id %u\n",
503		       event->bpf.type, event->bpf.flags, event->bpf.id);
504}
505
506static int text_poke_printer(enum binary_printer_ops op, unsigned int val,
507			     void *extra, FILE *fp)
508{
509	bool old = *(bool *)extra;
510
511	switch ((int)op) {
512	case BINARY_PRINT_LINE_BEGIN:
513		return fprintf(fp, "            %s bytes:", old ? "Old" : "New");
514	case BINARY_PRINT_NUM_DATA:
515		return fprintf(fp, " %02x", val);
516	case BINARY_PRINT_LINE_END:
517		return fprintf(fp, "\n");
518	default:
519		return 0;
520	}
521}
522
523size_t perf_event__fprintf_text_poke(union perf_event *event, struct machine *machine, FILE *fp)
524{
525	struct perf_record_text_poke_event *tp = &event->text_poke;
526	size_t ret;
527	bool old;
528
529	ret = fprintf(fp, " %" PRI_lx64 " ", tp->addr);
530	if (machine) {
531		struct addr_location al;
532
533		addr_location__init(&al);
534		al.map = maps__find(machine__kernel_maps(machine), tp->addr);
535		if (al.map && map__load(al.map) >= 0) {
536			al.addr = map__map_ip(al.map, tp->addr);
537			al.sym = map__find_symbol(al.map, al.addr);
538			if (al.sym)
539				ret += symbol__fprintf_symname_offs(al.sym, &al, fp);
540		}
541		addr_location__exit(&al);
542	}
543	ret += fprintf(fp, " old len %u new len %u\n", tp->old_len, tp->new_len);
544	old = true;
545	ret += binary__fprintf(tp->bytes, tp->old_len, 16, text_poke_printer,
546			       &old, fp);
547	old = false;
548	ret += binary__fprintf(tp->bytes + tp->old_len, tp->new_len, 16,
549			       text_poke_printer, &old, fp);
550	return ret;
551}
552
553size_t perf_event__fprintf(union perf_event *event, struct machine *machine, FILE *fp)
 
554{
555	size_t ret = fprintf(fp, "PERF_RECORD_%s",
556			     perf_event__name(event->header.type));
557
558	switch (event->header.type) {
559	case PERF_RECORD_COMM:
560		ret += perf_event__fprintf_comm(event, fp);
 
 
 
561		break;
562	case PERF_RECORD_FORK:
563	case PERF_RECORD_EXIT:
564		ret += perf_event__fprintf_task(event, fp);
565		break;
566	case PERF_RECORD_MMAP:
567		ret += perf_event__fprintf_mmap(event, fp);
568		break;
569	case PERF_RECORD_NAMESPACES:
570		ret += perf_event__fprintf_namespaces(event, fp);
571		break;
572	case PERF_RECORD_CGROUP:
573		ret += perf_event__fprintf_cgroup(event, fp);
574		break;
575	case PERF_RECORD_MMAP2:
576		ret += perf_event__fprintf_mmap2(event, fp);
577		break;
578	case PERF_RECORD_AUX:
579		ret += perf_event__fprintf_aux(event, fp);
580		break;
581	case PERF_RECORD_ITRACE_START:
582		ret += perf_event__fprintf_itrace_start(event, fp);
583		break;
584	case PERF_RECORD_SWITCH:
585	case PERF_RECORD_SWITCH_CPU_WIDE:
586		ret += perf_event__fprintf_switch(event, fp);
587		break;
588	case PERF_RECORD_LOST:
589		ret += perf_event__fprintf_lost(event, fp);
590		break;
591	case PERF_RECORD_KSYMBOL:
592		ret += perf_event__fprintf_ksymbol(event, fp);
593		break;
594	case PERF_RECORD_BPF_EVENT:
595		ret += perf_event__fprintf_bpf(event, fp);
596		break;
597	case PERF_RECORD_TEXT_POKE:
598		ret += perf_event__fprintf_text_poke(event, machine, fp);
599		break;
600	case PERF_RECORD_AUX_OUTPUT_HW_ID:
601		ret += perf_event__fprintf_aux_output_hw_id(event, fp);
602		break;
603	default:
604		ret += fprintf(fp, "\n");
605	}
606
607	return ret;
608}
609
610int perf_event__process(const struct perf_tool *tool __maybe_unused,
611			union perf_event *event,
612			struct perf_sample *sample,
613			struct machine *machine)
614{
615	return machine__process_event(machine, event, sample);
616}
617
618struct map *thread__find_map(struct thread *thread, u8 cpumode, u64 addr,
619			     struct addr_location *al)
620{
621	struct maps *maps = thread__maps(thread);
622	struct machine *machine = maps__machine(maps);
623	bool load_map = false;
624
625	maps__zput(al->maps);
626	map__zput(al->map);
627	thread__zput(al->thread);
628	al->thread = thread__get(thread);
629
 
630	al->addr = addr;
631	al->cpumode = cpumode;
632	al->filtered = 0;
633
634	if (machine == NULL)
635		return NULL;
636
637	if (cpumode == PERF_RECORD_MISC_KERNEL && perf_host) {
638		al->level = 'k';
639		maps = machine__kernel_maps(machine);
640		load_map = !symbol_conf.lazy_load_kernel_maps;
 
 
 
 
641	} else if (cpumode == PERF_RECORD_MISC_USER && perf_host) {
642		al->level = '.';
 
643	} else if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL && perf_guest) {
644		al->level = 'g';
645		maps = machine__kernel_maps(machine);
646		load_map = !symbol_conf.lazy_load_kernel_maps;
647	} else if (cpumode == PERF_RECORD_MISC_GUEST_USER && perf_guest) {
648		al->level = 'u';
 
 
649	} else {
650		al->level = 'H';
 
 
 
 
 
 
 
 
651
652		if ((cpumode == PERF_RECORD_MISC_GUEST_USER ||
653			cpumode == PERF_RECORD_MISC_GUEST_KERNEL) &&
654			!perf_guest)
655			al->filtered |= (1 << HIST_FILTER__GUEST);
656		if ((cpumode == PERF_RECORD_MISC_USER ||
657			cpumode == PERF_RECORD_MISC_KERNEL) &&
658			!perf_host)
659			al->filtered |= (1 << HIST_FILTER__HOST);
660
661		return NULL;
662	}
663	al->maps = maps__get(maps);
664	al->map = maps__find(maps, al->addr);
665	if (al->map != NULL) {
666		/*
667		 * Kernel maps might be changed when loading symbols so loading
668		 * must be done prior to using kernel maps.
 
 
 
 
 
669		 */
670		if (load_map)
671			map__load(al->map);
672		al->addr = map__map_ip(al->map, al->addr);
673	}
674
675	return al->map;
 
 
676}
677
678/*
679 * For branch stacks or branch samples, the sample cpumode might not be correct
680 * because it applies only to the sample 'ip' and not necessary to 'addr' or
681 * branch stack addresses. If possible, use a fallback to deal with those cases.
682 */
683struct map *thread__find_map_fb(struct thread *thread, u8 cpumode, u64 addr,
684				struct addr_location *al)
685{
686	struct map *map = thread__find_map(thread, cpumode, addr, al);
687	struct machine *machine = maps__machine(thread__maps(thread));
688	u8 addr_cpumode = machine__addr_cpumode(machine, cpumode, addr);
689
690	if (map || addr_cpumode == cpumode)
691		return map;
692
693	return thread__find_map(thread, addr_cpumode, addr, al);
694}
695
696struct symbol *thread__find_symbol(struct thread *thread, u8 cpumode,
697				   u64 addr, struct addr_location *al)
698{
699	al->sym = NULL;
700	if (thread__find_map(thread, cpumode, addr, al))
701		al->sym = map__find_symbol(al->map, al->addr);
702	return al->sym;
703}
704
705struct symbol *thread__find_symbol_fb(struct thread *thread, u8 cpumode,
706				      u64 addr, struct addr_location *al)
707{
708	al->sym = NULL;
709	if (thread__find_map_fb(thread, cpumode, addr, al))
710		al->sym = map__find_symbol(al->map, al->addr);
711	return al->sym;
712}
713
714static bool check_address_range(struct intlist *addr_list, int addr_range,
715				unsigned long addr)
716{
717	struct int_node *pos;
718
719	intlist__for_each_entry(pos, addr_list) {
720		if (addr >= pos->i && addr < pos->i + addr_range)
721			return true;
722	}
723
724	return false;
725}
726
727/*
728 * Callers need to drop the reference to al->thread, obtained in
729 * machine__findnew_thread()
730 */
731int machine__resolve(struct machine *machine, struct addr_location *al,
732		     struct perf_sample *sample)
733{
734	struct thread *thread;
735	struct dso *dso;
736
737	if (symbol_conf.guest_code && !machine__is_host(machine))
738		thread = machine__findnew_guest_code(machine, sample->pid);
739	else
740		thread = machine__findnew_thread(machine, sample->pid, sample->tid);
741	if (thread == NULL)
742		return -1;
743
744	dump_printf(" ... thread: %s:%d\n", thread__comm_str(thread), thread__tid(thread));
745	thread__find_map(thread, sample->cpumode, sample->ip, al);
746	dso = al->map ? map__dso(al->map) : NULL;
747	dump_printf(" ...... dso: %s\n",
748		dso
749		? dso__long_name(dso)
750		: (al->level == 'H' ? "[hypervisor]" : "<not found>"));
751
752	if (thread__is_filtered(thread))
753		al->filtered |= (1 << HIST_FILTER__THREAD);
754
755	thread__put(thread);
756	thread = NULL;
 
 
 
 
 
 
757
 
 
 
 
 
758	al->sym = NULL;
759	al->cpu = sample->cpu;
760	al->socket = -1;
761	al->srcline = NULL;
762
763	if (al->cpu >= 0) {
764		struct perf_env *env = machine->env;
765
766		if (env && env->cpu)
767			al->socket = env->cpu[al->cpu].socket_id;
768	}
769
770	if (al->map) {
771		if (symbol_conf.dso_list &&
772		    (!dso || !(strlist__has_entry(symbol_conf.dso_list,
773						  dso__short_name(dso)) ||
774			       (dso__short_name(dso) != dso__long_name(dso) &&
775				strlist__has_entry(symbol_conf.dso_list,
776						   dso__long_name(dso)))))) {
777			al->filtered |= (1 << HIST_FILTER__DSO);
778		}
779
780		al->sym = map__find_symbol(al->map, al->addr);
781	} else if (symbol_conf.dso_list) {
782		al->filtered |= (1 << HIST_FILTER__DSO);
783	}
784
785	if (symbol_conf.sym_list) {
786		int ret = 0;
787		char al_addr_str[32];
788		size_t sz = sizeof(al_addr_str);
789
790		if (al->sym) {
791			ret = strlist__has_entry(symbol_conf.sym_list,
792						al->sym->name);
793		}
794		if (!ret && al->sym) {
795			snprintf(al_addr_str, sz, "0x%"PRIx64,
796				 map__unmap_ip(al->map, al->sym->start));
797			ret = strlist__has_entry(symbol_conf.sym_list,
798						al_addr_str);
799		}
800		if (!ret && symbol_conf.addr_list && al->map) {
801			unsigned long addr = map__unmap_ip(al->map, al->addr);
802
803			ret = intlist__has_entry(symbol_conf.addr_list, addr);
804			if (!ret && symbol_conf.addr_range) {
805				ret = check_address_range(symbol_conf.addr_list,
806							  symbol_conf.addr_range,
807							  addr);
808			}
809		}
810
811		if (!ret)
812			al->filtered |= (1 << HIST_FILTER__SYMBOL);
813	}
814
 
 
815	return 0;
816}
817
818bool is_bts_event(struct perf_event_attr *attr)
819{
820	return attr->type == PERF_TYPE_HARDWARE &&
821	       (attr->config & PERF_COUNT_HW_BRANCH_INSTRUCTIONS) &&
822	       attr->sample_period == 1;
823}
824
825bool sample_addr_correlates_sym(struct perf_event_attr *attr)
826{
827	if (attr->type == PERF_TYPE_SOFTWARE &&
828	    (attr->config == PERF_COUNT_SW_PAGE_FAULTS ||
829	     attr->config == PERF_COUNT_SW_PAGE_FAULTS_MIN ||
830	     attr->config == PERF_COUNT_SW_PAGE_FAULTS_MAJ))
831		return true;
832
833	if (is_bts_event(attr))
834		return true;
835
836	return false;
837}
838
839void thread__resolve(struct thread *thread, struct addr_location *al,
840		     struct perf_sample *sample)
841{
842	thread__find_map_fb(thread, sample->cpumode, sample->addr, al);
843
844	al->cpu = sample->cpu;
845	al->sym = NULL;
846
847	if (al->map)
848		al->sym = map__find_symbol(al->map, al->addr);
849}