xref: /openbmc/linux/tools/perf/util/session.c (revision 1d037ca1)
1 #define _FILE_OFFSET_BITS 64
2 
3 #include <linux/kernel.h>
4 
5 #include <byteswap.h>
6 #include <unistd.h>
7 #include <sys/types.h>
8 #include <sys/mman.h>
9 
10 #include "evlist.h"
11 #include "evsel.h"
12 #include "session.h"
13 #include "tool.h"
14 #include "sort.h"
15 #include "util.h"
16 #include "cpumap.h"
17 #include "event-parse.h"
18 #include "perf_regs.h"
19 #include "unwind.h"
20 #include "vdso.h"
21 
22 static int perf_session__open(struct perf_session *self, bool force)
23 {
24 	struct stat input_stat;
25 
26 	if (!strcmp(self->filename, "-")) {
27 		self->fd_pipe = true;
28 		self->fd = STDIN_FILENO;
29 
30 		if (perf_session__read_header(self, self->fd) < 0)
31 			pr_err("incompatible file format (rerun with -v to learn more)");
32 
33 		return 0;
34 	}
35 
36 	self->fd = open(self->filename, O_RDONLY);
37 	if (self->fd < 0) {
38 		int err = errno;
39 
40 		pr_err("failed to open %s: %s", self->filename, strerror(err));
41 		if (err == ENOENT && !strcmp(self->filename, "perf.data"))
42 			pr_err("  (try 'perf record' first)");
43 		pr_err("\n");
44 		return -errno;
45 	}
46 
47 	if (fstat(self->fd, &input_stat) < 0)
48 		goto out_close;
49 
50 	if (!force && input_stat.st_uid && (input_stat.st_uid != geteuid())) {
51 		pr_err("file %s not owned by current user or root\n",
52 		       self->filename);
53 		goto out_close;
54 	}
55 
56 	if (!input_stat.st_size) {
57 		pr_info("zero-sized file (%s), nothing to do!\n",
58 			self->filename);
59 		goto out_close;
60 	}
61 
62 	if (perf_session__read_header(self, self->fd) < 0) {
63 		pr_err("incompatible file format (rerun with -v to learn more)");
64 		goto out_close;
65 	}
66 
67 	if (!perf_evlist__valid_sample_type(self->evlist)) {
68 		pr_err("non matching sample_type");
69 		goto out_close;
70 	}
71 
72 	if (!perf_evlist__valid_sample_id_all(self->evlist)) {
73 		pr_err("non matching sample_id_all");
74 		goto out_close;
75 	}
76 
77 	self->size = input_stat.st_size;
78 	return 0;
79 
80 out_close:
81 	close(self->fd);
82 	self->fd = -1;
83 	return -1;
84 }
85 
86 void perf_session__set_id_hdr_size(struct perf_session *session)
87 {
88 	u16 id_hdr_size = perf_evlist__id_hdr_size(session->evlist);
89 
90 	session->host_machine.id_hdr_size = id_hdr_size;
91 	machines__set_id_hdr_size(&session->machines, id_hdr_size);
92 }
93 
94 int perf_session__create_kernel_maps(struct perf_session *self)
95 {
96 	int ret = machine__create_kernel_maps(&self->host_machine);
97 
98 	if (ret >= 0)
99 		ret = machines__create_guest_kernel_maps(&self->machines);
100 	return ret;
101 }
102 
103 static void perf_session__destroy_kernel_maps(struct perf_session *self)
104 {
105 	machine__destroy_kernel_maps(&self->host_machine);
106 	machines__destroy_guest_kernel_maps(&self->machines);
107 }
108 
109 struct perf_session *perf_session__new(const char *filename, int mode,
110 				       bool force, bool repipe,
111 				       struct perf_tool *tool)
112 {
113 	struct perf_session *self;
114 	struct stat st;
115 	size_t len;
116 
117 	if (!filename || !strlen(filename)) {
118 		if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
119 			filename = "-";
120 		else
121 			filename = "perf.data";
122 	}
123 
124 	len = strlen(filename);
125 	self = zalloc(sizeof(*self) + len);
126 
127 	if (self == NULL)
128 		goto out;
129 
130 	memcpy(self->filename, filename, len);
131 	/*
132 	 * On 64bit we can mmap the data file in one go. No need for tiny mmap
133 	 * slices. On 32bit we use 32MB.
134 	 */
135 #if BITS_PER_LONG == 64
136 	self->mmap_window = ULLONG_MAX;
137 #else
138 	self->mmap_window = 32 * 1024 * 1024ULL;
139 #endif
140 	self->machines = RB_ROOT;
141 	self->repipe = repipe;
142 	INIT_LIST_HEAD(&self->ordered_samples.samples);
143 	INIT_LIST_HEAD(&self->ordered_samples.sample_cache);
144 	INIT_LIST_HEAD(&self->ordered_samples.to_free);
145 	machine__init(&self->host_machine, "", HOST_KERNEL_ID);
146 	hists__init(&self->hists);
147 
148 	if (mode == O_RDONLY) {
149 		if (perf_session__open(self, force) < 0)
150 			goto out_delete;
151 		perf_session__set_id_hdr_size(self);
152 	} else if (mode == O_WRONLY) {
153 		/*
154 		 * In O_RDONLY mode this will be performed when reading the
155 		 * kernel MMAP event, in perf_event__process_mmap().
156 		 */
157 		if (perf_session__create_kernel_maps(self) < 0)
158 			goto out_delete;
159 	}
160 
161 	if (tool && tool->ordering_requires_timestamps &&
162 	    tool->ordered_samples && !perf_evlist__sample_id_all(self->evlist)) {
163 		dump_printf("WARNING: No sample_id_all support, falling back to unordered processing\n");
164 		tool->ordered_samples = false;
165 	}
166 
167 out:
168 	return self;
169 out_delete:
170 	perf_session__delete(self);
171 	return NULL;
172 }
173 
174 static void machine__delete_dead_threads(struct machine *machine)
175 {
176 	struct thread *n, *t;
177 
178 	list_for_each_entry_safe(t, n, &machine->dead_threads, node) {
179 		list_del(&t->node);
180 		thread__delete(t);
181 	}
182 }
183 
184 static void perf_session__delete_dead_threads(struct perf_session *session)
185 {
186 	machine__delete_dead_threads(&session->host_machine);
187 }
188 
189 static void machine__delete_threads(struct machine *self)
190 {
191 	struct rb_node *nd = rb_first(&self->threads);
192 
193 	while (nd) {
194 		struct thread *t = rb_entry(nd, struct thread, rb_node);
195 
196 		rb_erase(&t->rb_node, &self->threads);
197 		nd = rb_next(nd);
198 		thread__delete(t);
199 	}
200 }
201 
202 static void perf_session__delete_threads(struct perf_session *session)
203 {
204 	machine__delete_threads(&session->host_machine);
205 }
206 
207 void perf_session__delete(struct perf_session *self)
208 {
209 	perf_session__destroy_kernel_maps(self);
210 	perf_session__delete_dead_threads(self);
211 	perf_session__delete_threads(self);
212 	machine__exit(&self->host_machine);
213 	close(self->fd);
214 	free(self);
215 	vdso__exit();
216 }
217 
218 void machine__remove_thread(struct machine *self, struct thread *th)
219 {
220 	self->last_match = NULL;
221 	rb_erase(&th->rb_node, &self->threads);
222 	/*
223 	 * We may have references to this thread, for instance in some hist_entry
224 	 * instances, so just move them to a separate list.
225 	 */
226 	list_add_tail(&th->node, &self->dead_threads);
227 }
228 
229 static bool symbol__match_parent_regex(struct symbol *sym)
230 {
231 	if (sym->name && !regexec(&parent_regex, sym->name, 0, NULL, 0))
232 		return 1;
233 
234 	return 0;
235 }
236 
237 static const u8 cpumodes[] = {
238 	PERF_RECORD_MISC_USER,
239 	PERF_RECORD_MISC_KERNEL,
240 	PERF_RECORD_MISC_GUEST_USER,
241 	PERF_RECORD_MISC_GUEST_KERNEL
242 };
243 #define NCPUMODES (sizeof(cpumodes)/sizeof(u8))
244 
245 static void ip__resolve_ams(struct machine *self, struct thread *thread,
246 			    struct addr_map_symbol *ams,
247 			    u64 ip)
248 {
249 	struct addr_location al;
250 	size_t i;
251 	u8 m;
252 
253 	memset(&al, 0, sizeof(al));
254 
255 	for (i = 0; i < NCPUMODES; i++) {
256 		m = cpumodes[i];
257 		/*
258 		 * We cannot use the header.misc hint to determine whether a
259 		 * branch stack address is user, kernel, guest, hypervisor.
260 		 * Branches may straddle the kernel/user/hypervisor boundaries.
261 		 * Thus, we have to try consecutively until we find a match
262 		 * or else, the symbol is unknown
263 		 */
264 		thread__find_addr_location(thread, self, m, MAP__FUNCTION,
265 				ip, &al, NULL);
266 		if (al.sym)
267 			goto found;
268 	}
269 found:
270 	ams->addr = ip;
271 	ams->al_addr = al.addr;
272 	ams->sym = al.sym;
273 	ams->map = al.map;
274 }
275 
276 struct branch_info *machine__resolve_bstack(struct machine *self,
277 					    struct thread *thr,
278 					    struct branch_stack *bs)
279 {
280 	struct branch_info *bi;
281 	unsigned int i;
282 
283 	bi = calloc(bs->nr, sizeof(struct branch_info));
284 	if (!bi)
285 		return NULL;
286 
287 	for (i = 0; i < bs->nr; i++) {
288 		ip__resolve_ams(self, thr, &bi[i].to, bs->entries[i].to);
289 		ip__resolve_ams(self, thr, &bi[i].from, bs->entries[i].from);
290 		bi[i].flags = bs->entries[i].flags;
291 	}
292 	return bi;
293 }
294 
295 static int machine__resolve_callchain_sample(struct machine *machine,
296 					     struct thread *thread,
297 					     struct ip_callchain *chain,
298 					     struct symbol **parent)
299 
300 {
301 	u8 cpumode = PERF_RECORD_MISC_USER;
302 	unsigned int i;
303 	int err;
304 
305 	callchain_cursor_reset(&callchain_cursor);
306 
307 	if (chain->nr > PERF_MAX_STACK_DEPTH) {
308 		pr_warning("corrupted callchain. skipping...\n");
309 		return 0;
310 	}
311 
312 	for (i = 0; i < chain->nr; i++) {
313 		u64 ip;
314 		struct addr_location al;
315 
316 		if (callchain_param.order == ORDER_CALLEE)
317 			ip = chain->ips[i];
318 		else
319 			ip = chain->ips[chain->nr - i - 1];
320 
321 		if (ip >= PERF_CONTEXT_MAX) {
322 			switch (ip) {
323 			case PERF_CONTEXT_HV:
324 				cpumode = PERF_RECORD_MISC_HYPERVISOR;
325 				break;
326 			case PERF_CONTEXT_KERNEL:
327 				cpumode = PERF_RECORD_MISC_KERNEL;
328 				break;
329 			case PERF_CONTEXT_USER:
330 				cpumode = PERF_RECORD_MISC_USER;
331 				break;
332 			default:
333 				pr_debug("invalid callchain context: "
334 					 "%"PRId64"\n", (s64) ip);
335 				/*
336 				 * It seems the callchain is corrupted.
337 				 * Discard all.
338 				 */
339 				callchain_cursor_reset(&callchain_cursor);
340 				return 0;
341 			}
342 			continue;
343 		}
344 
345 		al.filtered = false;
346 		thread__find_addr_location(thread, machine, cpumode,
347 					   MAP__FUNCTION, ip, &al, NULL);
348 		if (al.sym != NULL) {
349 			if (sort__has_parent && !*parent &&
350 			    symbol__match_parent_regex(al.sym))
351 				*parent = al.sym;
352 			if (!symbol_conf.use_callchain)
353 				break;
354 		}
355 
356 		err = callchain_cursor_append(&callchain_cursor,
357 					      ip, al.map, al.sym);
358 		if (err)
359 			return err;
360 	}
361 
362 	return 0;
363 }
364 
365 static int unwind_entry(struct unwind_entry *entry, void *arg)
366 {
367 	struct callchain_cursor *cursor = arg;
368 	return callchain_cursor_append(cursor, entry->ip,
369 				       entry->map, entry->sym);
370 }
371 
372 int machine__resolve_callchain(struct machine *machine,
373 			       struct perf_evsel *evsel,
374 			       struct thread *thread,
375 			       struct perf_sample *sample,
376 			       struct symbol **parent)
377 
378 {
379 	int ret;
380 
381 	callchain_cursor_reset(&callchain_cursor);
382 
383 	ret = machine__resolve_callchain_sample(machine, thread,
384 						sample->callchain, parent);
385 	if (ret)
386 		return ret;
387 
388 	/* Can we do dwarf post unwind? */
389 	if (!((evsel->attr.sample_type & PERF_SAMPLE_REGS_USER) &&
390 	      (evsel->attr.sample_type & PERF_SAMPLE_STACK_USER)))
391 		return 0;
392 
393 	/* Bail out if nothing was captured. */
394 	if ((!sample->user_regs.regs) ||
395 	    (!sample->user_stack.size))
396 		return 0;
397 
398 	return unwind__get_entries(unwind_entry, &callchain_cursor, machine,
399 				   thread, evsel->attr.sample_regs_user,
400 				   sample);
401 
402 }
403 
404 static int process_event_synth_tracing_data_stub(union perf_event *event
405 						 __maybe_unused,
406 						 struct perf_session *session
407 						__maybe_unused)
408 {
409 	dump_printf(": unhandled!\n");
410 	return 0;
411 }
412 
413 static int process_event_synth_attr_stub(union perf_event *event __maybe_unused,
414 					 struct perf_evlist **pevlist
415 					 __maybe_unused)
416 {
417 	dump_printf(": unhandled!\n");
418 	return 0;
419 }
420 
421 static int process_event_sample_stub(struct perf_tool *tool __maybe_unused,
422 				     union perf_event *event __maybe_unused,
423 				     struct perf_sample *sample __maybe_unused,
424 				     struct perf_evsel *evsel __maybe_unused,
425 				     struct machine *machine __maybe_unused)
426 {
427 	dump_printf(": unhandled!\n");
428 	return 0;
429 }
430 
431 static int process_event_stub(struct perf_tool *tool __maybe_unused,
432 			      union perf_event *event __maybe_unused,
433 			      struct perf_sample *sample __maybe_unused,
434 			      struct machine *machine __maybe_unused)
435 {
436 	dump_printf(": unhandled!\n");
437 	return 0;
438 }
439 
440 static int process_finished_round_stub(struct perf_tool *tool __maybe_unused,
441 				       union perf_event *event __maybe_unused,
442 				       struct perf_session *perf_session
443 				       __maybe_unused)
444 {
445 	dump_printf(": unhandled!\n");
446 	return 0;
447 }
448 
449 static int process_event_type_stub(struct perf_tool *tool __maybe_unused,
450 				   union perf_event *event __maybe_unused)
451 {
452 	dump_printf(": unhandled!\n");
453 	return 0;
454 }
455 
456 static int process_finished_round(struct perf_tool *tool,
457 				  union perf_event *event,
458 				  struct perf_session *session);
459 
460 static void perf_tool__fill_defaults(struct perf_tool *tool)
461 {
462 	if (tool->sample == NULL)
463 		tool->sample = process_event_sample_stub;
464 	if (tool->mmap == NULL)
465 		tool->mmap = process_event_stub;
466 	if (tool->comm == NULL)
467 		tool->comm = process_event_stub;
468 	if (tool->fork == NULL)
469 		tool->fork = process_event_stub;
470 	if (tool->exit == NULL)
471 		tool->exit = process_event_stub;
472 	if (tool->lost == NULL)
473 		tool->lost = perf_event__process_lost;
474 	if (tool->read == NULL)
475 		tool->read = process_event_sample_stub;
476 	if (tool->throttle == NULL)
477 		tool->throttle = process_event_stub;
478 	if (tool->unthrottle == NULL)
479 		tool->unthrottle = process_event_stub;
480 	if (tool->attr == NULL)
481 		tool->attr = process_event_synth_attr_stub;
482 	if (tool->event_type == NULL)
483 		tool->event_type = process_event_type_stub;
484 	if (tool->tracing_data == NULL)
485 		tool->tracing_data = process_event_synth_tracing_data_stub;
486 	if (tool->build_id == NULL)
487 		tool->build_id = process_finished_round_stub;
488 	if (tool->finished_round == NULL) {
489 		if (tool->ordered_samples)
490 			tool->finished_round = process_finished_round;
491 		else
492 			tool->finished_round = process_finished_round_stub;
493 	}
494 }
495 
496 void mem_bswap_32(void *src, int byte_size)
497 {
498 	u32 *m = src;
499 	while (byte_size > 0) {
500 		*m = bswap_32(*m);
501 		byte_size -= sizeof(u32);
502 		++m;
503 	}
504 }
505 
506 void mem_bswap_64(void *src, int byte_size)
507 {
508 	u64 *m = src;
509 
510 	while (byte_size > 0) {
511 		*m = bswap_64(*m);
512 		byte_size -= sizeof(u64);
513 		++m;
514 	}
515 }
516 
517 static void swap_sample_id_all(union perf_event *event, void *data)
518 {
519 	void *end = (void *) event + event->header.size;
520 	int size = end - data;
521 
522 	BUG_ON(size % sizeof(u64));
523 	mem_bswap_64(data, size);
524 }
525 
526 static void perf_event__all64_swap(union perf_event *event,
527 				   bool sample_id_all __maybe_unused)
528 {
529 	struct perf_event_header *hdr = &event->header;
530 	mem_bswap_64(hdr + 1, event->header.size - sizeof(*hdr));
531 }
532 
533 static void perf_event__comm_swap(union perf_event *event, bool sample_id_all)
534 {
535 	event->comm.pid = bswap_32(event->comm.pid);
536 	event->comm.tid = bswap_32(event->comm.tid);
537 
538 	if (sample_id_all) {
539 		void *data = &event->comm.comm;
540 
541 		data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
542 		swap_sample_id_all(event, data);
543 	}
544 }
545 
546 static void perf_event__mmap_swap(union perf_event *event,
547 				  bool sample_id_all)
548 {
549 	event->mmap.pid	  = bswap_32(event->mmap.pid);
550 	event->mmap.tid	  = bswap_32(event->mmap.tid);
551 	event->mmap.start = bswap_64(event->mmap.start);
552 	event->mmap.len	  = bswap_64(event->mmap.len);
553 	event->mmap.pgoff = bswap_64(event->mmap.pgoff);
554 
555 	if (sample_id_all) {
556 		void *data = &event->mmap.filename;
557 
558 		data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
559 		swap_sample_id_all(event, data);
560 	}
561 }
562 
563 static void perf_event__task_swap(union perf_event *event, bool sample_id_all)
564 {
565 	event->fork.pid	 = bswap_32(event->fork.pid);
566 	event->fork.tid	 = bswap_32(event->fork.tid);
567 	event->fork.ppid = bswap_32(event->fork.ppid);
568 	event->fork.ptid = bswap_32(event->fork.ptid);
569 	event->fork.time = bswap_64(event->fork.time);
570 
571 	if (sample_id_all)
572 		swap_sample_id_all(event, &event->fork + 1);
573 }
574 
575 static void perf_event__read_swap(union perf_event *event, bool sample_id_all)
576 {
577 	event->read.pid		 = bswap_32(event->read.pid);
578 	event->read.tid		 = bswap_32(event->read.tid);
579 	event->read.value	 = bswap_64(event->read.value);
580 	event->read.time_enabled = bswap_64(event->read.time_enabled);
581 	event->read.time_running = bswap_64(event->read.time_running);
582 	event->read.id		 = bswap_64(event->read.id);
583 
584 	if (sample_id_all)
585 		swap_sample_id_all(event, &event->read + 1);
586 }
587 
588 static u8 revbyte(u8 b)
589 {
590 	int rev = (b >> 4) | ((b & 0xf) << 4);
591 	rev = ((rev & 0xcc) >> 2) | ((rev & 0x33) << 2);
592 	rev = ((rev & 0xaa) >> 1) | ((rev & 0x55) << 1);
593 	return (u8) rev;
594 }
595 
596 /*
597  * XXX this is hack in attempt to carry flags bitfield
598  * throught endian village. ABI says:
599  *
600  * Bit-fields are allocated from right to left (least to most significant)
601  * on little-endian implementations and from left to right (most to least
602  * significant) on big-endian implementations.
603  *
604  * The above seems to be byte specific, so we need to reverse each
605  * byte of the bitfield. 'Internet' also says this might be implementation
606  * specific and we probably need proper fix and carry perf_event_attr
607  * bitfield flags in separate data file FEAT_ section. Thought this seems
608  * to work for now.
609  */
610 static void swap_bitfield(u8 *p, unsigned len)
611 {
612 	unsigned i;
613 
614 	for (i = 0; i < len; i++) {
615 		*p = revbyte(*p);
616 		p++;
617 	}
618 }
619 
620 /* exported for swapping attributes in file header */
621 void perf_event__attr_swap(struct perf_event_attr *attr)
622 {
623 	attr->type		= bswap_32(attr->type);
624 	attr->size		= bswap_32(attr->size);
625 	attr->config		= bswap_64(attr->config);
626 	attr->sample_period	= bswap_64(attr->sample_period);
627 	attr->sample_type	= bswap_64(attr->sample_type);
628 	attr->read_format	= bswap_64(attr->read_format);
629 	attr->wakeup_events	= bswap_32(attr->wakeup_events);
630 	attr->bp_type		= bswap_32(attr->bp_type);
631 	attr->bp_addr		= bswap_64(attr->bp_addr);
632 	attr->bp_len		= bswap_64(attr->bp_len);
633 
634 	swap_bitfield((u8 *) (&attr->read_format + 1), sizeof(u64));
635 }
636 
637 static void perf_event__hdr_attr_swap(union perf_event *event,
638 				      bool sample_id_all __maybe_unused)
639 {
640 	size_t size;
641 
642 	perf_event__attr_swap(&event->attr.attr);
643 
644 	size = event->header.size;
645 	size -= (void *)&event->attr.id - (void *)event;
646 	mem_bswap_64(event->attr.id, size);
647 }
648 
649 static void perf_event__event_type_swap(union perf_event *event,
650 					bool sample_id_all __maybe_unused)
651 {
652 	event->event_type.event_type.event_id =
653 		bswap_64(event->event_type.event_type.event_id);
654 }
655 
656 static void perf_event__tracing_data_swap(union perf_event *event,
657 					  bool sample_id_all __maybe_unused)
658 {
659 	event->tracing_data.size = bswap_32(event->tracing_data.size);
660 }
661 
662 typedef void (*perf_event__swap_op)(union perf_event *event,
663 				    bool sample_id_all);
664 
665 static perf_event__swap_op perf_event__swap_ops[] = {
666 	[PERF_RECORD_MMAP]		  = perf_event__mmap_swap,
667 	[PERF_RECORD_COMM]		  = perf_event__comm_swap,
668 	[PERF_RECORD_FORK]		  = perf_event__task_swap,
669 	[PERF_RECORD_EXIT]		  = perf_event__task_swap,
670 	[PERF_RECORD_LOST]		  = perf_event__all64_swap,
671 	[PERF_RECORD_READ]		  = perf_event__read_swap,
672 	[PERF_RECORD_SAMPLE]		  = perf_event__all64_swap,
673 	[PERF_RECORD_HEADER_ATTR]	  = perf_event__hdr_attr_swap,
674 	[PERF_RECORD_HEADER_EVENT_TYPE]	  = perf_event__event_type_swap,
675 	[PERF_RECORD_HEADER_TRACING_DATA] = perf_event__tracing_data_swap,
676 	[PERF_RECORD_HEADER_BUILD_ID]	  = NULL,
677 	[PERF_RECORD_HEADER_MAX]	  = NULL,
678 };
679 
680 struct sample_queue {
681 	u64			timestamp;
682 	u64			file_offset;
683 	union perf_event	*event;
684 	struct list_head	list;
685 };
686 
687 static void perf_session_free_sample_buffers(struct perf_session *session)
688 {
689 	struct ordered_samples *os = &session->ordered_samples;
690 
691 	while (!list_empty(&os->to_free)) {
692 		struct sample_queue *sq;
693 
694 		sq = list_entry(os->to_free.next, struct sample_queue, list);
695 		list_del(&sq->list);
696 		free(sq);
697 	}
698 }
699 
700 static int perf_session_deliver_event(struct perf_session *session,
701 				      union perf_event *event,
702 				      struct perf_sample *sample,
703 				      struct perf_tool *tool,
704 				      u64 file_offset);
705 
706 static int flush_sample_queue(struct perf_session *s,
707 			       struct perf_tool *tool)
708 {
709 	struct ordered_samples *os = &s->ordered_samples;
710 	struct list_head *head = &os->samples;
711 	struct sample_queue *tmp, *iter;
712 	struct perf_sample sample;
713 	u64 limit = os->next_flush;
714 	u64 last_ts = os->last_sample ? os->last_sample->timestamp : 0ULL;
715 	unsigned idx = 0, progress_next = os->nr_samples / 16;
716 	int ret;
717 
718 	if (!tool->ordered_samples || !limit)
719 		return 0;
720 
721 	list_for_each_entry_safe(iter, tmp, head, list) {
722 		if (iter->timestamp > limit)
723 			break;
724 
725 		ret = perf_evlist__parse_sample(s->evlist, iter->event, &sample,
726 						s->header.needs_swap);
727 		if (ret)
728 			pr_err("Can't parse sample, err = %d\n", ret);
729 		else {
730 			ret = perf_session_deliver_event(s, iter->event, &sample, tool,
731 							 iter->file_offset);
732 			if (ret)
733 				return ret;
734 		}
735 
736 		os->last_flush = iter->timestamp;
737 		list_del(&iter->list);
738 		list_add(&iter->list, &os->sample_cache);
739 		if (++idx >= progress_next) {
740 			progress_next += os->nr_samples / 16;
741 			ui_progress__update(idx, os->nr_samples,
742 					    "Processing time ordered events...");
743 		}
744 	}
745 
746 	if (list_empty(head)) {
747 		os->last_sample = NULL;
748 	} else if (last_ts <= limit) {
749 		os->last_sample =
750 			list_entry(head->prev, struct sample_queue, list);
751 	}
752 
753 	os->nr_samples = 0;
754 
755 	return 0;
756 }
757 
758 /*
759  * When perf record finishes a pass on every buffers, it records this pseudo
760  * event.
761  * We record the max timestamp t found in the pass n.
762  * Assuming these timestamps are monotonic across cpus, we know that if
763  * a buffer still has events with timestamps below t, they will be all
764  * available and then read in the pass n + 1.
765  * Hence when we start to read the pass n + 2, we can safely flush every
766  * events with timestamps below t.
767  *
768  *    ============ PASS n =================
769  *       CPU 0         |   CPU 1
770  *                     |
771  *    cnt1 timestamps  |   cnt2 timestamps
772  *          1          |         2
773  *          2          |         3
774  *          -          |         4  <--- max recorded
775  *
776  *    ============ PASS n + 1 ==============
777  *       CPU 0         |   CPU 1
778  *                     |
779  *    cnt1 timestamps  |   cnt2 timestamps
780  *          3          |         5
781  *          4          |         6
782  *          5          |         7 <---- max recorded
783  *
784  *      Flush every events below timestamp 4
785  *
786  *    ============ PASS n + 2 ==============
787  *       CPU 0         |   CPU 1
788  *                     |
789  *    cnt1 timestamps  |   cnt2 timestamps
790  *          6          |         8
791  *          7          |         9
792  *          -          |         10
793  *
794  *      Flush every events below timestamp 7
795  *      etc...
796  */
797 static int process_finished_round(struct perf_tool *tool,
798 				  union perf_event *event __maybe_unused,
799 				  struct perf_session *session)
800 {
801 	int ret = flush_sample_queue(session, tool);
802 	if (!ret)
803 		session->ordered_samples.next_flush = session->ordered_samples.max_timestamp;
804 
805 	return ret;
806 }
807 
808 /* The queue is ordered by time */
809 static void __queue_event(struct sample_queue *new, struct perf_session *s)
810 {
811 	struct ordered_samples *os = &s->ordered_samples;
812 	struct sample_queue *sample = os->last_sample;
813 	u64 timestamp = new->timestamp;
814 	struct list_head *p;
815 
816 	++os->nr_samples;
817 	os->last_sample = new;
818 
819 	if (!sample) {
820 		list_add(&new->list, &os->samples);
821 		os->max_timestamp = timestamp;
822 		return;
823 	}
824 
825 	/*
826 	 * last_sample might point to some random place in the list as it's
827 	 * the last queued event. We expect that the new event is close to
828 	 * this.
829 	 */
830 	if (sample->timestamp <= timestamp) {
831 		while (sample->timestamp <= timestamp) {
832 			p = sample->list.next;
833 			if (p == &os->samples) {
834 				list_add_tail(&new->list, &os->samples);
835 				os->max_timestamp = timestamp;
836 				return;
837 			}
838 			sample = list_entry(p, struct sample_queue, list);
839 		}
840 		list_add_tail(&new->list, &sample->list);
841 	} else {
842 		while (sample->timestamp > timestamp) {
843 			p = sample->list.prev;
844 			if (p == &os->samples) {
845 				list_add(&new->list, &os->samples);
846 				return;
847 			}
848 			sample = list_entry(p, struct sample_queue, list);
849 		}
850 		list_add(&new->list, &sample->list);
851 	}
852 }
853 
854 #define MAX_SAMPLE_BUFFER	(64 * 1024 / sizeof(struct sample_queue))
855 
856 static int perf_session_queue_event(struct perf_session *s, union perf_event *event,
857 				    struct perf_sample *sample, u64 file_offset)
858 {
859 	struct ordered_samples *os = &s->ordered_samples;
860 	struct list_head *sc = &os->sample_cache;
861 	u64 timestamp = sample->time;
862 	struct sample_queue *new;
863 
864 	if (!timestamp || timestamp == ~0ULL)
865 		return -ETIME;
866 
867 	if (timestamp < s->ordered_samples.last_flush) {
868 		printf("Warning: Timestamp below last timeslice flush\n");
869 		return -EINVAL;
870 	}
871 
872 	if (!list_empty(sc)) {
873 		new = list_entry(sc->next, struct sample_queue, list);
874 		list_del(&new->list);
875 	} else if (os->sample_buffer) {
876 		new = os->sample_buffer + os->sample_buffer_idx;
877 		if (++os->sample_buffer_idx == MAX_SAMPLE_BUFFER)
878 			os->sample_buffer = NULL;
879 	} else {
880 		os->sample_buffer = malloc(MAX_SAMPLE_BUFFER * sizeof(*new));
881 		if (!os->sample_buffer)
882 			return -ENOMEM;
883 		list_add(&os->sample_buffer->list, &os->to_free);
884 		os->sample_buffer_idx = 2;
885 		new = os->sample_buffer + 1;
886 	}
887 
888 	new->timestamp = timestamp;
889 	new->file_offset = file_offset;
890 	new->event = event;
891 
892 	__queue_event(new, s);
893 
894 	return 0;
895 }
896 
897 static void callchain__printf(struct perf_sample *sample)
898 {
899 	unsigned int i;
900 
901 	printf("... chain: nr:%" PRIu64 "\n", sample->callchain->nr);
902 
903 	for (i = 0; i < sample->callchain->nr; i++)
904 		printf("..... %2d: %016" PRIx64 "\n",
905 		       i, sample->callchain->ips[i]);
906 }
907 
908 static void branch_stack__printf(struct perf_sample *sample)
909 {
910 	uint64_t i;
911 
912 	printf("... branch stack: nr:%" PRIu64 "\n", sample->branch_stack->nr);
913 
914 	for (i = 0; i < sample->branch_stack->nr; i++)
915 		printf("..... %2"PRIu64": %016" PRIx64 " -> %016" PRIx64 "\n",
916 			i, sample->branch_stack->entries[i].from,
917 			sample->branch_stack->entries[i].to);
918 }
919 
920 static void regs_dump__printf(u64 mask, u64 *regs)
921 {
922 	unsigned rid, i = 0;
923 
924 	for_each_set_bit(rid, (unsigned long *) &mask, sizeof(mask) * 8) {
925 		u64 val = regs[i++];
926 
927 		printf(".... %-5s 0x%" PRIx64 "\n",
928 		       perf_reg_name(rid), val);
929 	}
930 }
931 
932 static void regs_user__printf(struct perf_sample *sample, u64 mask)
933 {
934 	struct regs_dump *user_regs = &sample->user_regs;
935 
936 	if (user_regs->regs) {
937 		printf("... user regs: mask 0x%" PRIx64 "\n", mask);
938 		regs_dump__printf(mask, user_regs->regs);
939 	}
940 }
941 
942 static void stack_user__printf(struct stack_dump *dump)
943 {
944 	printf("... ustack: size %" PRIu64 ", offset 0x%x\n",
945 	       dump->size, dump->offset);
946 }
947 
948 static void perf_session__print_tstamp(struct perf_session *session,
949 				       union perf_event *event,
950 				       struct perf_sample *sample)
951 {
952 	u64 sample_type = perf_evlist__sample_type(session->evlist);
953 
954 	if (event->header.type != PERF_RECORD_SAMPLE &&
955 	    !perf_evlist__sample_id_all(session->evlist)) {
956 		fputs("-1 -1 ", stdout);
957 		return;
958 	}
959 
960 	if ((sample_type & PERF_SAMPLE_CPU))
961 		printf("%u ", sample->cpu);
962 
963 	if (sample_type & PERF_SAMPLE_TIME)
964 		printf("%" PRIu64 " ", sample->time);
965 }
966 
967 static void dump_event(struct perf_session *session, union perf_event *event,
968 		       u64 file_offset, struct perf_sample *sample)
969 {
970 	if (!dump_trace)
971 		return;
972 
973 	printf("\n%#" PRIx64 " [%#x]: event: %d\n",
974 	       file_offset, event->header.size, event->header.type);
975 
976 	trace_event(event);
977 
978 	if (sample)
979 		perf_session__print_tstamp(session, event, sample);
980 
981 	printf("%#" PRIx64 " [%#x]: PERF_RECORD_%s", file_offset,
982 	       event->header.size, perf_event__name(event->header.type));
983 }
984 
985 static void dump_sample(struct perf_evsel *evsel, union perf_event *event,
986 			struct perf_sample *sample)
987 {
988 	u64 sample_type;
989 
990 	if (!dump_trace)
991 		return;
992 
993 	printf("(IP, %d): %d/%d: %#" PRIx64 " period: %" PRIu64 " addr: %#" PRIx64 "\n",
994 	       event->header.misc, sample->pid, sample->tid, sample->ip,
995 	       sample->period, sample->addr);
996 
997 	sample_type = evsel->attr.sample_type;
998 
999 	if (sample_type & PERF_SAMPLE_CALLCHAIN)
1000 		callchain__printf(sample);
1001 
1002 	if (sample_type & PERF_SAMPLE_BRANCH_STACK)
1003 		branch_stack__printf(sample);
1004 
1005 	if (sample_type & PERF_SAMPLE_REGS_USER)
1006 		regs_user__printf(sample, evsel->attr.sample_regs_user);
1007 
1008 	if (sample_type & PERF_SAMPLE_STACK_USER)
1009 		stack_user__printf(&sample->user_stack);
1010 }
1011 
1012 static struct machine *
1013 	perf_session__find_machine_for_cpumode(struct perf_session *session,
1014 					       union perf_event *event)
1015 {
1016 	const u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
1017 
1018 	if (perf_guest &&
1019 	    ((cpumode == PERF_RECORD_MISC_GUEST_KERNEL) ||
1020 	     (cpumode == PERF_RECORD_MISC_GUEST_USER))) {
1021 		u32 pid;
1022 
1023 		if (event->header.type == PERF_RECORD_MMAP)
1024 			pid = event->mmap.pid;
1025 		else
1026 			pid = event->ip.pid;
1027 
1028 		return perf_session__findnew_machine(session, pid);
1029 	}
1030 
1031 	return perf_session__find_host_machine(session);
1032 }
1033 
1034 static int perf_session_deliver_event(struct perf_session *session,
1035 				      union perf_event *event,
1036 				      struct perf_sample *sample,
1037 				      struct perf_tool *tool,
1038 				      u64 file_offset)
1039 {
1040 	struct perf_evsel *evsel;
1041 	struct machine *machine;
1042 
1043 	dump_event(session, event, file_offset, sample);
1044 
1045 	evsel = perf_evlist__id2evsel(session->evlist, sample->id);
1046 	if (evsel != NULL && event->header.type != PERF_RECORD_SAMPLE) {
1047 		/*
1048 		 * XXX We're leaving PERF_RECORD_SAMPLE unnacounted here
1049 		 * because the tools right now may apply filters, discarding
1050 		 * some of the samples. For consistency, in the future we
1051 		 * should have something like nr_filtered_samples and remove
1052 		 * the sample->period from total_sample_period, etc, KISS for
1053 		 * now tho.
1054 		 *
1055 		 * Also testing against NULL allows us to handle files without
1056 		 * attr.sample_id_all and/or without PERF_SAMPLE_ID. In the
1057 		 * future probably it'll be a good idea to restrict event
1058 		 * processing via perf_session to files with both set.
1059 		 */
1060 		hists__inc_nr_events(&evsel->hists, event->header.type);
1061 	}
1062 
1063 	machine = perf_session__find_machine_for_cpumode(session, event);
1064 
1065 	switch (event->header.type) {
1066 	case PERF_RECORD_SAMPLE:
1067 		dump_sample(evsel, event, sample);
1068 		if (evsel == NULL) {
1069 			++session->hists.stats.nr_unknown_id;
1070 			return 0;
1071 		}
1072 		if (machine == NULL) {
1073 			++session->hists.stats.nr_unprocessable_samples;
1074 			return 0;
1075 		}
1076 		return tool->sample(tool, event, sample, evsel, machine);
1077 	case PERF_RECORD_MMAP:
1078 		return tool->mmap(tool, event, sample, machine);
1079 	case PERF_RECORD_COMM:
1080 		return tool->comm(tool, event, sample, machine);
1081 	case PERF_RECORD_FORK:
1082 		return tool->fork(tool, event, sample, machine);
1083 	case PERF_RECORD_EXIT:
1084 		return tool->exit(tool, event, sample, machine);
1085 	case PERF_RECORD_LOST:
1086 		if (tool->lost == perf_event__process_lost)
1087 			session->hists.stats.total_lost += event->lost.lost;
1088 		return tool->lost(tool, event, sample, machine);
1089 	case PERF_RECORD_READ:
1090 		return tool->read(tool, event, sample, evsel, machine);
1091 	case PERF_RECORD_THROTTLE:
1092 		return tool->throttle(tool, event, sample, machine);
1093 	case PERF_RECORD_UNTHROTTLE:
1094 		return tool->unthrottle(tool, event, sample, machine);
1095 	default:
1096 		++session->hists.stats.nr_unknown_events;
1097 		return -1;
1098 	}
1099 }
1100 
1101 static int perf_session__preprocess_sample(struct perf_session *session,
1102 					   union perf_event *event, struct perf_sample *sample)
1103 {
1104 	if (event->header.type != PERF_RECORD_SAMPLE ||
1105 	    !(perf_evlist__sample_type(session->evlist) & PERF_SAMPLE_CALLCHAIN))
1106 		return 0;
1107 
1108 	if (!ip_callchain__valid(sample->callchain, event)) {
1109 		pr_debug("call-chain problem with event, skipping it.\n");
1110 		++session->hists.stats.nr_invalid_chains;
1111 		session->hists.stats.total_invalid_chains += sample->period;
1112 		return -EINVAL;
1113 	}
1114 	return 0;
1115 }
1116 
1117 static int perf_session__process_user_event(struct perf_session *session, union perf_event *event,
1118 					    struct perf_tool *tool, u64 file_offset)
1119 {
1120 	int err;
1121 
1122 	dump_event(session, event, file_offset, NULL);
1123 
1124 	/* These events are processed right away */
1125 	switch (event->header.type) {
1126 	case PERF_RECORD_HEADER_ATTR:
1127 		err = tool->attr(event, &session->evlist);
1128 		if (err == 0)
1129 			perf_session__set_id_hdr_size(session);
1130 		return err;
1131 	case PERF_RECORD_HEADER_EVENT_TYPE:
1132 		return tool->event_type(tool, event);
1133 	case PERF_RECORD_HEADER_TRACING_DATA:
1134 		/* setup for reading amidst mmap */
1135 		lseek(session->fd, file_offset, SEEK_SET);
1136 		return tool->tracing_data(event, session);
1137 	case PERF_RECORD_HEADER_BUILD_ID:
1138 		return tool->build_id(tool, event, session);
1139 	case PERF_RECORD_FINISHED_ROUND:
1140 		return tool->finished_round(tool, event, session);
1141 	default:
1142 		return -EINVAL;
1143 	}
1144 }
1145 
1146 static void event_swap(union perf_event *event, bool sample_id_all)
1147 {
1148 	perf_event__swap_op swap;
1149 
1150 	swap = perf_event__swap_ops[event->header.type];
1151 	if (swap)
1152 		swap(event, sample_id_all);
1153 }
1154 
1155 static int perf_session__process_event(struct perf_session *session,
1156 				       union perf_event *event,
1157 				       struct perf_tool *tool,
1158 				       u64 file_offset)
1159 {
1160 	struct perf_sample sample;
1161 	int ret;
1162 
1163 	if (session->header.needs_swap)
1164 		event_swap(event, perf_evlist__sample_id_all(session->evlist));
1165 
1166 	if (event->header.type >= PERF_RECORD_HEADER_MAX)
1167 		return -EINVAL;
1168 
1169 	hists__inc_nr_events(&session->hists, event->header.type);
1170 
1171 	if (event->header.type >= PERF_RECORD_USER_TYPE_START)
1172 		return perf_session__process_user_event(session, event, tool, file_offset);
1173 
1174 	/*
1175 	 * For all kernel events we get the sample data
1176 	 */
1177 	ret = perf_evlist__parse_sample(session->evlist, event, &sample,
1178 					session->header.needs_swap);
1179 	if (ret)
1180 		return ret;
1181 
1182 	/* Preprocess sample records - precheck callchains */
1183 	if (perf_session__preprocess_sample(session, event, &sample))
1184 		return 0;
1185 
1186 	if (tool->ordered_samples) {
1187 		ret = perf_session_queue_event(session, event, &sample,
1188 					       file_offset);
1189 		if (ret != -ETIME)
1190 			return ret;
1191 	}
1192 
1193 	return perf_session_deliver_event(session, event, &sample, tool,
1194 					  file_offset);
1195 }
1196 
1197 void perf_event_header__bswap(struct perf_event_header *self)
1198 {
1199 	self->type = bswap_32(self->type);
1200 	self->misc = bswap_16(self->misc);
1201 	self->size = bswap_16(self->size);
1202 }
1203 
1204 struct thread *perf_session__findnew(struct perf_session *session, pid_t pid)
1205 {
1206 	return machine__findnew_thread(&session->host_machine, pid);
1207 }
1208 
1209 static struct thread *perf_session__register_idle_thread(struct perf_session *self)
1210 {
1211 	struct thread *thread = perf_session__findnew(self, 0);
1212 
1213 	if (thread == NULL || thread__set_comm(thread, "swapper")) {
1214 		pr_err("problem inserting idle task.\n");
1215 		thread = NULL;
1216 	}
1217 
1218 	return thread;
1219 }
1220 
1221 static void perf_session__warn_about_errors(const struct perf_session *session,
1222 					    const struct perf_tool *tool)
1223 {
1224 	if (tool->lost == perf_event__process_lost &&
1225 	    session->hists.stats.nr_events[PERF_RECORD_LOST] != 0) {
1226 		ui__warning("Processed %d events and lost %d chunks!\n\n"
1227 			    "Check IO/CPU overload!\n\n",
1228 			    session->hists.stats.nr_events[0],
1229 			    session->hists.stats.nr_events[PERF_RECORD_LOST]);
1230 	}
1231 
1232 	if (session->hists.stats.nr_unknown_events != 0) {
1233 		ui__warning("Found %u unknown events!\n\n"
1234 			    "Is this an older tool processing a perf.data "
1235 			    "file generated by a more recent tool?\n\n"
1236 			    "If that is not the case, consider "
1237 			    "reporting to linux-kernel@vger.kernel.org.\n\n",
1238 			    session->hists.stats.nr_unknown_events);
1239 	}
1240 
1241 	if (session->hists.stats.nr_unknown_id != 0) {
1242 		ui__warning("%u samples with id not present in the header\n",
1243 			    session->hists.stats.nr_unknown_id);
1244 	}
1245 
1246  	if (session->hists.stats.nr_invalid_chains != 0) {
1247  		ui__warning("Found invalid callchains!\n\n"
1248  			    "%u out of %u events were discarded for this reason.\n\n"
1249  			    "Consider reporting to linux-kernel@vger.kernel.org.\n\n",
1250  			    session->hists.stats.nr_invalid_chains,
1251  			    session->hists.stats.nr_events[PERF_RECORD_SAMPLE]);
1252  	}
1253 
1254 	if (session->hists.stats.nr_unprocessable_samples != 0) {
1255 		ui__warning("%u unprocessable samples recorded.\n"
1256 			    "Do you have a KVM guest running and not using 'perf kvm'?\n",
1257 			    session->hists.stats.nr_unprocessable_samples);
1258 	}
1259 }
1260 
1261 #define session_done()	(*(volatile int *)(&session_done))
1262 volatile int session_done;
1263 
1264 static int __perf_session__process_pipe_events(struct perf_session *self,
1265 					       struct perf_tool *tool)
1266 {
1267 	union perf_event *event;
1268 	uint32_t size, cur_size = 0;
1269 	void *buf = NULL;
1270 	int skip = 0;
1271 	u64 head;
1272 	int err;
1273 	void *p;
1274 
1275 	perf_tool__fill_defaults(tool);
1276 
1277 	head = 0;
1278 	cur_size = sizeof(union perf_event);
1279 
1280 	buf = malloc(cur_size);
1281 	if (!buf)
1282 		return -errno;
1283 more:
1284 	event = buf;
1285 	err = readn(self->fd, event, sizeof(struct perf_event_header));
1286 	if (err <= 0) {
1287 		if (err == 0)
1288 			goto done;
1289 
1290 		pr_err("failed to read event header\n");
1291 		goto out_err;
1292 	}
1293 
1294 	if (self->header.needs_swap)
1295 		perf_event_header__bswap(&event->header);
1296 
1297 	size = event->header.size;
1298 	if (size == 0)
1299 		size = 8;
1300 
1301 	if (size > cur_size) {
1302 		void *new = realloc(buf, size);
1303 		if (!new) {
1304 			pr_err("failed to allocate memory to read event\n");
1305 			goto out_err;
1306 		}
1307 		buf = new;
1308 		cur_size = size;
1309 		event = buf;
1310 	}
1311 	p = event;
1312 	p += sizeof(struct perf_event_header);
1313 
1314 	if (size - sizeof(struct perf_event_header)) {
1315 		err = readn(self->fd, p, size - sizeof(struct perf_event_header));
1316 		if (err <= 0) {
1317 			if (err == 0) {
1318 				pr_err("unexpected end of event stream\n");
1319 				goto done;
1320 			}
1321 
1322 			pr_err("failed to read event data\n");
1323 			goto out_err;
1324 		}
1325 	}
1326 
1327 	if ((skip = perf_session__process_event(self, event, tool, head)) < 0) {
1328 		pr_err("%#" PRIx64 " [%#x]: failed to process type: %d\n",
1329 		       head, event->header.size, event->header.type);
1330 		err = -EINVAL;
1331 		goto out_err;
1332 	}
1333 
1334 	head += size;
1335 
1336 	if (skip > 0)
1337 		head += skip;
1338 
1339 	if (!session_done())
1340 		goto more;
1341 done:
1342 	err = 0;
1343 out_err:
1344 	free(buf);
1345 	perf_session__warn_about_errors(self, tool);
1346 	perf_session_free_sample_buffers(self);
1347 	return err;
1348 }
1349 
1350 static union perf_event *
1351 fetch_mmaped_event(struct perf_session *session,
1352 		   u64 head, size_t mmap_size, char *buf)
1353 {
1354 	union perf_event *event;
1355 
1356 	/*
1357 	 * Ensure we have enough space remaining to read
1358 	 * the size of the event in the headers.
1359 	 */
1360 	if (head + sizeof(event->header) > mmap_size)
1361 		return NULL;
1362 
1363 	event = (union perf_event *)(buf + head);
1364 
1365 	if (session->header.needs_swap)
1366 		perf_event_header__bswap(&event->header);
1367 
1368 	if (head + event->header.size > mmap_size)
1369 		return NULL;
1370 
1371 	return event;
1372 }
1373 
1374 int __perf_session__process_events(struct perf_session *session,
1375 				   u64 data_offset, u64 data_size,
1376 				   u64 file_size, struct perf_tool *tool)
1377 {
1378 	u64 head, page_offset, file_offset, file_pos, progress_next;
1379 	int err, mmap_prot, mmap_flags, map_idx = 0;
1380 	size_t	page_size, mmap_size;
1381 	char *buf, *mmaps[8];
1382 	union perf_event *event;
1383 	uint32_t size;
1384 
1385 	perf_tool__fill_defaults(tool);
1386 
1387 	page_size = sysconf(_SC_PAGESIZE);
1388 
1389 	page_offset = page_size * (data_offset / page_size);
1390 	file_offset = page_offset;
1391 	head = data_offset - page_offset;
1392 
1393 	if (data_offset + data_size < file_size)
1394 		file_size = data_offset + data_size;
1395 
1396 	progress_next = file_size / 16;
1397 
1398 	mmap_size = session->mmap_window;
1399 	if (mmap_size > file_size)
1400 		mmap_size = file_size;
1401 
1402 	memset(mmaps, 0, sizeof(mmaps));
1403 
1404 	mmap_prot  = PROT_READ;
1405 	mmap_flags = MAP_SHARED;
1406 
1407 	if (session->header.needs_swap) {
1408 		mmap_prot  |= PROT_WRITE;
1409 		mmap_flags = MAP_PRIVATE;
1410 	}
1411 remap:
1412 	buf = mmap(NULL, mmap_size, mmap_prot, mmap_flags, session->fd,
1413 		   file_offset);
1414 	if (buf == MAP_FAILED) {
1415 		pr_err("failed to mmap file\n");
1416 		err = -errno;
1417 		goto out_err;
1418 	}
1419 	mmaps[map_idx] = buf;
1420 	map_idx = (map_idx + 1) & (ARRAY_SIZE(mmaps) - 1);
1421 	file_pos = file_offset + head;
1422 
1423 more:
1424 	event = fetch_mmaped_event(session, head, mmap_size, buf);
1425 	if (!event) {
1426 		if (mmaps[map_idx]) {
1427 			munmap(mmaps[map_idx], mmap_size);
1428 			mmaps[map_idx] = NULL;
1429 		}
1430 
1431 		page_offset = page_size * (head / page_size);
1432 		file_offset += page_offset;
1433 		head -= page_offset;
1434 		goto remap;
1435 	}
1436 
1437 	size = event->header.size;
1438 
1439 	if (size == 0 ||
1440 	    perf_session__process_event(session, event, tool, file_pos) < 0) {
1441 		pr_err("%#" PRIx64 " [%#x]: failed to process type: %d\n",
1442 		       file_offset + head, event->header.size,
1443 		       event->header.type);
1444 		err = -EINVAL;
1445 		goto out_err;
1446 	}
1447 
1448 	head += size;
1449 	file_pos += size;
1450 
1451 	if (file_pos >= progress_next) {
1452 		progress_next += file_size / 16;
1453 		ui_progress__update(file_pos, file_size,
1454 				    "Processing events...");
1455 	}
1456 
1457 	if (file_pos < file_size)
1458 		goto more;
1459 
1460 	err = 0;
1461 	/* do the final flush for ordered samples */
1462 	session->ordered_samples.next_flush = ULLONG_MAX;
1463 	err = flush_sample_queue(session, tool);
1464 out_err:
1465 	perf_session__warn_about_errors(session, tool);
1466 	perf_session_free_sample_buffers(session);
1467 	return err;
1468 }
1469 
1470 int perf_session__process_events(struct perf_session *self,
1471 				 struct perf_tool *tool)
1472 {
1473 	int err;
1474 
1475 	if (perf_session__register_idle_thread(self) == NULL)
1476 		return -ENOMEM;
1477 
1478 	if (!self->fd_pipe)
1479 		err = __perf_session__process_events(self,
1480 						     self->header.data_offset,
1481 						     self->header.data_size,
1482 						     self->size, tool);
1483 	else
1484 		err = __perf_session__process_pipe_events(self, tool);
1485 
1486 	return err;
1487 }
1488 
1489 bool perf_session__has_traces(struct perf_session *session, const char *msg)
1490 {
1491 	if (!(perf_evlist__sample_type(session->evlist) & PERF_SAMPLE_RAW)) {
1492 		pr_err("No trace sample to read. Did you call 'perf %s'?\n", msg);
1493 		return false;
1494 	}
1495 
1496 	return true;
1497 }
1498 
1499 int maps__set_kallsyms_ref_reloc_sym(struct map **maps,
1500 				     const char *symbol_name, u64 addr)
1501 {
1502 	char *bracket;
1503 	enum map_type i;
1504 	struct ref_reloc_sym *ref;
1505 
1506 	ref = zalloc(sizeof(struct ref_reloc_sym));
1507 	if (ref == NULL)
1508 		return -ENOMEM;
1509 
1510 	ref->name = strdup(symbol_name);
1511 	if (ref->name == NULL) {
1512 		free(ref);
1513 		return -ENOMEM;
1514 	}
1515 
1516 	bracket = strchr(ref->name, ']');
1517 	if (bracket)
1518 		*bracket = '\0';
1519 
1520 	ref->addr = addr;
1521 
1522 	for (i = 0; i < MAP__NR_TYPES; ++i) {
1523 		struct kmap *kmap = map__kmap(maps[i]);
1524 		kmap->ref_reloc_sym = ref;
1525 	}
1526 
1527 	return 0;
1528 }
1529 
1530 size_t perf_session__fprintf_dsos(struct perf_session *self, FILE *fp)
1531 {
1532 	return __dsos__fprintf(&self->host_machine.kernel_dsos, fp) +
1533 	       __dsos__fprintf(&self->host_machine.user_dsos, fp) +
1534 	       machines__fprintf_dsos(&self->machines, fp);
1535 }
1536 
1537 size_t perf_session__fprintf_dsos_buildid(struct perf_session *self, FILE *fp,
1538 					  bool with_hits)
1539 {
1540 	size_t ret = machine__fprintf_dsos_buildid(&self->host_machine, fp, with_hits);
1541 	return ret + machines__fprintf_dsos_buildid(&self->machines, fp, with_hits);
1542 }
1543 
1544 size_t perf_session__fprintf_nr_events(struct perf_session *session, FILE *fp)
1545 {
1546 	struct perf_evsel *pos;
1547 	size_t ret = fprintf(fp, "Aggregated stats:\n");
1548 
1549 	ret += hists__fprintf_nr_events(&session->hists, fp);
1550 
1551 	list_for_each_entry(pos, &session->evlist->entries, node) {
1552 		ret += fprintf(fp, "%s stats:\n", perf_evsel__name(pos));
1553 		ret += hists__fprintf_nr_events(&pos->hists, fp);
1554 	}
1555 
1556 	return ret;
1557 }
1558 
1559 size_t perf_session__fprintf(struct perf_session *session, FILE *fp)
1560 {
1561 	/*
1562 	 * FIXME: Here we have to actually print all the machines in this
1563 	 * session, not just the host...
1564 	 */
1565 	return machine__fprintf(&session->host_machine, fp);
1566 }
1567 
1568 void perf_session__remove_thread(struct perf_session *session,
1569 				 struct thread *th)
1570 {
1571 	/*
1572 	 * FIXME: This one makes no sense, we need to remove the thread from
1573 	 * the machine it belongs to, perf_session can have many machines, so
1574 	 * doing it always on ->host_machine is wrong.  Fix when auditing all
1575 	 * the 'perf kvm' code.
1576 	 */
1577 	machine__remove_thread(&session->host_machine, th);
1578 }
1579 
1580 struct perf_evsel *perf_session__find_first_evtype(struct perf_session *session,
1581 					      unsigned int type)
1582 {
1583 	struct perf_evsel *pos;
1584 
1585 	list_for_each_entry(pos, &session->evlist->entries, node) {
1586 		if (pos->attr.type == type)
1587 			return pos;
1588 	}
1589 	return NULL;
1590 }
1591 
1592 void perf_evsel__print_ip(struct perf_evsel *evsel, union perf_event *event,
1593 			  struct perf_sample *sample, struct machine *machine,
1594 			  int print_sym, int print_dso, int print_symoffset)
1595 {
1596 	struct addr_location al;
1597 	struct callchain_cursor_node *node;
1598 
1599 	if (perf_event__preprocess_sample(event, machine, &al, sample,
1600 					  NULL) < 0) {
1601 		error("problem processing %d event, skipping it.\n",
1602 			event->header.type);
1603 		return;
1604 	}
1605 
1606 	if (symbol_conf.use_callchain && sample->callchain) {
1607 
1608 
1609 		if (machine__resolve_callchain(machine, evsel, al.thread,
1610 					       sample, NULL) != 0) {
1611 			if (verbose)
1612 				error("Failed to resolve callchain. Skipping\n");
1613 			return;
1614 		}
1615 		callchain_cursor_commit(&callchain_cursor);
1616 
1617 		while (1) {
1618 			node = callchain_cursor_current(&callchain_cursor);
1619 			if (!node)
1620 				break;
1621 
1622 			printf("\t%16" PRIx64, node->ip);
1623 			if (print_sym) {
1624 				printf(" ");
1625 				symbol__fprintf_symname(node->sym, stdout);
1626 			}
1627 			if (print_dso) {
1628 				printf(" (");
1629 				map__fprintf_dsoname(node->map, stdout);
1630 				printf(")");
1631 			}
1632 			printf("\n");
1633 
1634 			callchain_cursor_advance(&callchain_cursor);
1635 		}
1636 
1637 	} else {
1638 		printf("%16" PRIx64, sample->ip);
1639 		if (print_sym) {
1640 			printf(" ");
1641 			if (print_symoffset)
1642 				symbol__fprintf_symname_offs(al.sym, &al,
1643 							     stdout);
1644 			else
1645 				symbol__fprintf_symname(al.sym, stdout);
1646 		}
1647 
1648 		if (print_dso) {
1649 			printf(" (");
1650 			map__fprintf_dsoname(al.map, stdout);
1651 			printf(")");
1652 		}
1653 	}
1654 }
1655 
1656 int perf_session__cpu_bitmap(struct perf_session *session,
1657 			     const char *cpu_list, unsigned long *cpu_bitmap)
1658 {
1659 	int i;
1660 	struct cpu_map *map;
1661 
1662 	for (i = 0; i < PERF_TYPE_MAX; ++i) {
1663 		struct perf_evsel *evsel;
1664 
1665 		evsel = perf_session__find_first_evtype(session, i);
1666 		if (!evsel)
1667 			continue;
1668 
1669 		if (!(evsel->attr.sample_type & PERF_SAMPLE_CPU)) {
1670 			pr_err("File does not contain CPU events. "
1671 			       "Remove -c option to proceed.\n");
1672 			return -1;
1673 		}
1674 	}
1675 
1676 	map = cpu_map__new(cpu_list);
1677 	if (map == NULL) {
1678 		pr_err("Invalid cpu_list\n");
1679 		return -1;
1680 	}
1681 
1682 	for (i = 0; i < map->nr; i++) {
1683 		int cpu = map->map[i];
1684 
1685 		if (cpu >= MAX_NR_CPUS) {
1686 			pr_err("Requested CPU %d too large. "
1687 			       "Consider raising MAX_NR_CPUS\n", cpu);
1688 			return -1;
1689 		}
1690 
1691 		set_bit(cpu, cpu_bitmap);
1692 	}
1693 
1694 	return 0;
1695 }
1696 
1697 void perf_session__fprintf_info(struct perf_session *session, FILE *fp,
1698 				bool full)
1699 {
1700 	struct stat st;
1701 	int ret;
1702 
1703 	if (session == NULL || fp == NULL)
1704 		return;
1705 
1706 	ret = fstat(session->fd, &st);
1707 	if (ret == -1)
1708 		return;
1709 
1710 	fprintf(fp, "# ========\n");
1711 	fprintf(fp, "# captured on: %s", ctime(&st.st_ctime));
1712 	perf_header__fprintf_info(session, fp, full);
1713 	fprintf(fp, "# ========\n#\n");
1714 }
1715 
1716 
1717 int __perf_session__set_tracepoints_handlers(struct perf_session *session,
1718 					     const struct perf_evsel_str_handler *assocs,
1719 					     size_t nr_assocs)
1720 {
1721 	struct perf_evlist *evlist = session->evlist;
1722 	struct event_format *format;
1723 	struct perf_evsel *evsel;
1724 	char *tracepoint, *name;
1725 	size_t i;
1726 	int err;
1727 
1728 	for (i = 0; i < nr_assocs; i++) {
1729 		err = -ENOMEM;
1730 		tracepoint = strdup(assocs[i].name);
1731 		if (tracepoint == NULL)
1732 			goto out;
1733 
1734 		err = -ENOENT;
1735 		name = strchr(tracepoint, ':');
1736 		if (name == NULL)
1737 			goto out_free;
1738 
1739 		*name++ = '\0';
1740 		format = pevent_find_event_by_name(session->pevent,
1741 						   tracepoint, name);
1742 		if (format == NULL) {
1743 			/*
1744 			 * Adding a handler for an event not in the session,
1745 			 * just ignore it.
1746 			 */
1747 			goto next;
1748 		}
1749 
1750 		evsel = perf_evlist__find_tracepoint_by_id(evlist, format->id);
1751 		if (evsel == NULL)
1752 			goto next;
1753 
1754 		err = -EEXIST;
1755 		if (evsel->handler.func != NULL)
1756 			goto out_free;
1757 		evsel->handler.func = assocs[i].handler;
1758 next:
1759 		free(tracepoint);
1760 	}
1761 
1762 	err = 0;
1763 out:
1764 	return err;
1765 
1766 out_free:
1767 	free(tracepoint);
1768 	goto out;
1769 }
1770