session.c 26.0 KB
Newer Older
1 2
#define _FILE_OFFSET_BITS 64

3 4
#include <linux/kernel.h>

5
#include <byteswap.h>
6 7
#include <unistd.h>
#include <sys/types.h>
8
#include <sys/mman.h>
9 10

#include "session.h"
11
#include "sort.h"
12 13 14 15 16 17
#include "util.h"

static int perf_session__open(struct perf_session *self, bool force)
{
	struct stat input_stat;

18 19 20 21 22 23 24 25 26 27
	if (!strcmp(self->filename, "-")) {
		self->fd_pipe = true;
		self->fd = STDIN_FILENO;

		if (perf_header__read(self, self->fd) < 0)
			pr_err("incompatible file format");

		return 0;
	}

28
	self->fd = open(self->filename, O_RDONLY);
29
	if (self->fd < 0) {
30 31 32 33
		int err = errno;

		pr_err("failed to open %s: %s", self->filename, strerror(err));
		if (err == ENOENT && !strcmp(self->filename, "perf.data"))
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
			pr_err("  (try 'perf record' first)");
		pr_err("\n");
		return -errno;
	}

	if (fstat(self->fd, &input_stat) < 0)
		goto out_close;

	if (!force && input_stat.st_uid && (input_stat.st_uid != geteuid())) {
		pr_err("file %s not owned by current user or root\n",
		       self->filename);
		goto out_close;
	}

	if (!input_stat.st_size) {
		pr_info("zero-sized file (%s), nothing to do!\n",
			self->filename);
		goto out_close;
	}

54
	if (perf_header__read(self, self->fd) < 0) {
55 56 57 58 59 60 61 62 63 64 65 66 67
		pr_err("incompatible file format");
		goto out_close;
	}

	self->size = input_stat.st_size;
	return 0;

out_close:
	close(self->fd);
	self->fd = -1;
	return -1;
}

68 69 70 71 72
void perf_session__update_sample_type(struct perf_session *self)
{
	self->sample_type = perf_header__sample_type(&self->header);
}

73 74 75 76 77
void perf_session__set_sample_type(struct perf_session *session, u64 type)
{
	session->sample_type = type;
}

78 79
int perf_session__create_kernel_maps(struct perf_session *self)
{
80
	int ret = machine__create_kernel_maps(&self->host_machine);
81 82

	if (ret >= 0)
83
		ret = machines__create_guest_kernel_maps(&self->machines);
84 85 86
	return ret;
}

87 88 89 90 91 92
static void perf_session__destroy_kernel_maps(struct perf_session *self)
{
	machine__destroy_kernel_maps(&self->host_machine);
	machines__destroy_guest_kernel_maps(&self->machines);
}

T
Tom Zanussi 已提交
93
struct perf_session *perf_session__new(const char *filename, int mode, bool force, bool repipe)
94
{
95
	size_t len = filename ? strlen(filename) + 1 : 0;
96 97 98 99 100 101
	struct perf_session *self = zalloc(sizeof(*self) + len);

	if (self == NULL)
		goto out;

	if (perf_header__init(&self->header) < 0)
102
		goto out_free;
103 104

	memcpy(self->filename, filename, len);
105
	self->threads = RB_ROOT;
106
	INIT_LIST_HEAD(&self->dead_threads);
107
	self->hists_tree = RB_ROOT;
108
	self->last_match = NULL;
109 110 111 112 113 114 115 116 117
	/*
	 * On 64bit we can mmap the data file in one go. No need for tiny mmap
	 * slices. On 32bit we use 32MB.
	 */
#if BITS_PER_LONG == 64
	self->mmap_window = ULLONG_MAX;
#else
	self->mmap_window = 32 * 1024 * 1024ULL;
#endif
118
	self->machines = RB_ROOT;
T
Tom Zanussi 已提交
119
	self->repipe = repipe;
120
	INIT_LIST_HEAD(&self->ordered_samples.samples);
121
	INIT_LIST_HEAD(&self->ordered_samples.sample_cache);
122
	INIT_LIST_HEAD(&self->ordered_samples.to_free);
123
	machine__init(&self->host_machine, "", HOST_KERNEL_ID);
124

125 126 127 128 129 130 131 132 133 134 135
	if (mode == O_RDONLY) {
		if (perf_session__open(self, force) < 0)
			goto out_delete;
	} else if (mode == O_WRONLY) {
		/*
		 * In O_RDONLY mode this will be performed when reading the
		 * kernel MMAP event, in event__process_mmap().
		 */
		if (perf_session__create_kernel_maps(self) < 0)
			goto out_delete;
	}
136

137
	perf_session__update_sample_type(self);
138 139
out:
	return self;
140
out_free:
141 142
	free(self);
	return NULL;
143 144 145
out_delete:
	perf_session__delete(self);
	return NULL;
146 147
}

148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
static void perf_session__delete_dead_threads(struct perf_session *self)
{
	struct thread *n, *t;

	list_for_each_entry_safe(t, n, &self->dead_threads, node) {
		list_del(&t->node);
		thread__delete(t);
	}
}

static void perf_session__delete_threads(struct perf_session *self)
{
	struct rb_node *nd = rb_first(&self->threads);

	while (nd) {
		struct thread *t = rb_entry(nd, struct thread, rb_node);

		rb_erase(&t->rb_node, &self->threads);
		nd = rb_next(nd);
		thread__delete(t);
	}
}

171 172 173
void perf_session__delete(struct perf_session *self)
{
	perf_header__exit(&self->header);
174
	perf_session__destroy_kernel_maps(self);
175 176 177
	perf_session__delete_dead_threads(self);
	perf_session__delete_threads(self);
	machine__exit(&self->host_machine);
178 179 180
	close(self->fd);
	free(self);
}
181

182 183
void perf_session__remove_thread(struct perf_session *self, struct thread *th)
{
184
	self->last_match = NULL;
185 186 187 188 189 190 191 192
	rb_erase(&th->rb_node, &self->threads);
	/*
	 * We may have references to this thread, for instance in some hist_entry
	 * instances, so just move them to a separate list.
	 */
	list_add_tail(&th->node, &self->dead_threads);
}

193 194 195 196 197 198 199 200
static bool symbol__match_parent_regex(struct symbol *sym)
{
	if (sym->name && !regexec(&parent_regex, sym->name, 0, NULL, 0))
		return 1;

	return 0;
}

201 202 203 204
struct map_symbol *perf_session__resolve_callchain(struct perf_session *self,
						   struct thread *thread,
						   struct ip_callchain *chain,
						   struct symbol **parent)
205 206 207
{
	u8 cpumode = PERF_RECORD_MISC_USER;
	unsigned int i;
208
	struct map_symbol *syms = calloc(chain->nr, sizeof(*syms));
209

210 211
	if (!syms)
		return NULL;
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230

	for (i = 0; i < chain->nr; i++) {
		u64 ip = chain->ips[i];
		struct addr_location al;

		if (ip >= PERF_CONTEXT_MAX) {
			switch (ip) {
			case PERF_CONTEXT_HV:
				cpumode = PERF_RECORD_MISC_HYPERVISOR;	break;
			case PERF_CONTEXT_KERNEL:
				cpumode = PERF_RECORD_MISC_KERNEL;	break;
			case PERF_CONTEXT_USER:
				cpumode = PERF_RECORD_MISC_USER;	break;
			default:
				break;
			}
			continue;
		}

231
		al.filtered = false;
232
		thread__find_addr_location(thread, self, cpumode,
233
				MAP__FUNCTION, thread->pid, ip, &al, NULL);
234 235 236 237
		if (al.sym != NULL) {
			if (sort__has_parent && !*parent &&
			    symbol__match_parent_regex(al.sym))
				*parent = al.sym;
238
			if (!symbol_conf.use_callchain)
239
				break;
240 241
			syms[i].map = al.map;
			syms[i].sym = al.sym;
242 243 244 245 246
		}
	}

	return syms;
}
247

248 249 250 251 252 253 254
static int process_event_synth_stub(event_t *event __used,
				    struct perf_session *session __used)
{
	dump_printf(": unhandled!\n");
	return 0;
}

255
static int process_event_stub(event_t *event __used,
256
			      struct sample_data *sample __used,
257 258 259 260 261 262
			      struct perf_session *session __used)
{
	dump_printf(": unhandled!\n");
	return 0;
}

263 264 265 266 267 268 269 270 271 272 273 274
static int process_finished_round_stub(event_t *event __used,
				       struct perf_session *session __used,
				       struct perf_event_ops *ops __used)
{
	dump_printf(": unhandled!\n");
	return 0;
}

static int process_finished_round(event_t *event,
				  struct perf_session *session,
				  struct perf_event_ops *ops);

275 276
static void perf_event_ops__fill_defaults(struct perf_event_ops *handler)
{
277 278 279 280 281 282 283 284 285 286 287
	if (handler->sample == NULL)
		handler->sample = process_event_stub;
	if (handler->mmap == NULL)
		handler->mmap = process_event_stub;
	if (handler->comm == NULL)
		handler->comm = process_event_stub;
	if (handler->fork == NULL)
		handler->fork = process_event_stub;
	if (handler->exit == NULL)
		handler->exit = process_event_stub;
	if (handler->lost == NULL)
288
		handler->lost = event__process_lost;
289 290 291 292 293 294
	if (handler->read == NULL)
		handler->read = process_event_stub;
	if (handler->throttle == NULL)
		handler->throttle = process_event_stub;
	if (handler->unthrottle == NULL)
		handler->unthrottle = process_event_stub;
295
	if (handler->attr == NULL)
296
		handler->attr = process_event_synth_stub;
297
	if (handler->event_type == NULL)
298
		handler->event_type = process_event_synth_stub;
299
	if (handler->tracing_data == NULL)
300
		handler->tracing_data = process_event_synth_stub;
301
	if (handler->build_id == NULL)
302
		handler->build_id = process_event_synth_stub;
303 304 305 306 307 308
	if (handler->finished_round == NULL) {
		if (handler->ordered_samples)
			handler->finished_round = process_finished_round;
		else
			handler->finished_round = process_finished_round_stub;
	}
309 310
}

311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
void mem_bswap_64(void *src, int byte_size)
{
	u64 *m = src;

	while (byte_size > 0) {
		*m = bswap_64(*m);
		byte_size -= sizeof(u64);
		++m;
	}
}

static void event__all64_swap(event_t *self)
{
	struct perf_event_header *hdr = &self->header;
	mem_bswap_64(hdr + 1, self->header.size - sizeof(*hdr));
}

static void event__comm_swap(event_t *self)
{
	self->comm.pid = bswap_32(self->comm.pid);
	self->comm.tid = bswap_32(self->comm.tid);
}

static void event__mmap_swap(event_t *self)
{
	self->mmap.pid	 = bswap_32(self->mmap.pid);
	self->mmap.tid	 = bswap_32(self->mmap.tid);
	self->mmap.start = bswap_64(self->mmap.start);
	self->mmap.len	 = bswap_64(self->mmap.len);
	self->mmap.pgoff = bswap_64(self->mmap.pgoff);
}

static void event__task_swap(event_t *self)
{
	self->fork.pid	= bswap_32(self->fork.pid);
	self->fork.tid	= bswap_32(self->fork.tid);
	self->fork.ppid	= bswap_32(self->fork.ppid);
	self->fork.ptid	= bswap_32(self->fork.ptid);
	self->fork.time	= bswap_64(self->fork.time);
}

static void event__read_swap(event_t *self)
{
	self->read.pid		= bswap_32(self->read.pid);
	self->read.tid		= bswap_32(self->read.tid);
	self->read.value	= bswap_64(self->read.value);
	self->read.time_enabled	= bswap_64(self->read.time_enabled);
	self->read.time_running	= bswap_64(self->read.time_running);
	self->read.id		= bswap_64(self->read.id);
}

362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
static void event__attr_swap(event_t *self)
{
	size_t size;

	self->attr.attr.type		= bswap_32(self->attr.attr.type);
	self->attr.attr.size		= bswap_32(self->attr.attr.size);
	self->attr.attr.config		= bswap_64(self->attr.attr.config);
	self->attr.attr.sample_period	= bswap_64(self->attr.attr.sample_period);
	self->attr.attr.sample_type	= bswap_64(self->attr.attr.sample_type);
	self->attr.attr.read_format	= bswap_64(self->attr.attr.read_format);
	self->attr.attr.wakeup_events	= bswap_32(self->attr.attr.wakeup_events);
	self->attr.attr.bp_type		= bswap_32(self->attr.attr.bp_type);
	self->attr.attr.bp_addr		= bswap_64(self->attr.attr.bp_addr);
	self->attr.attr.bp_len		= bswap_64(self->attr.attr.bp_len);

	size = self->header.size;
	size -= (void *)&self->attr.id - (void *)self;
	mem_bswap_64(self->attr.id, size);
}

382 383 384 385 386 387
static void event__event_type_swap(event_t *self)
{
	self->event_type.event_type.event_id =
		bswap_64(self->event_type.event_type.event_id);
}

388 389 390 391 392
static void event__tracing_data_swap(event_t *self)
{
	self->tracing_data.size = bswap_32(self->tracing_data.size);
}

393 394 395 396 397 398 399 400 401 402
typedef void (*event__swap_op)(event_t *self);

static event__swap_op event__swap_ops[] = {
	[PERF_RECORD_MMAP]   = event__mmap_swap,
	[PERF_RECORD_COMM]   = event__comm_swap,
	[PERF_RECORD_FORK]   = event__task_swap,
	[PERF_RECORD_EXIT]   = event__task_swap,
	[PERF_RECORD_LOST]   = event__all64_swap,
	[PERF_RECORD_READ]   = event__read_swap,
	[PERF_RECORD_SAMPLE] = event__all64_swap,
403
	[PERF_RECORD_HEADER_ATTR]   = event__attr_swap,
404
	[PERF_RECORD_HEADER_EVENT_TYPE]   = event__event_type_swap,
405
	[PERF_RECORD_HEADER_TRACING_DATA]   = event__tracing_data_swap,
406
	[PERF_RECORD_HEADER_BUILD_ID]   = NULL,
407
	[PERF_RECORD_HEADER_MAX]    = NULL,
408 409
};

410 411
struct sample_queue {
	u64			timestamp;
412
	event_t			*event;
413 414 415
	struct list_head	list;
};

416 417 418 419
static void perf_session_free_sample_buffers(struct perf_session *session)
{
	struct ordered_samples *os = &session->ordered_samples;

420
	while (!list_empty(&os->to_free)) {
421 422
		struct sample_queue *sq;

423
		sq = list_entry(os->to_free.next, struct sample_queue, list);
424 425 426 427 428
		list_del(&sq->list);
		free(sq);
	}
}

429 430 431
static void flush_sample_queue(struct perf_session *s,
			       struct perf_event_ops *ops)
{
432 433
	struct ordered_samples *os = &s->ordered_samples;
	struct list_head *head = &os->samples;
434
	struct sample_queue *tmp, *iter;
435
	struct sample_data sample;
436 437
	u64 limit = os->next_flush;
	u64 last_ts = os->last_sample ? os->last_sample->timestamp : 0ULL;
438

439
	if (!ops->ordered_samples || !limit)
440 441 442 443
		return;

	list_for_each_entry_safe(iter, tmp, head, list) {
		if (iter->timestamp > limit)
444
			break;
445

446 447
		event__parse_sample(iter->event, s->sample_type, &sample);
		ops->sample(iter->event, &sample, s);
448

449
		os->last_flush = iter->timestamp;
450
		list_del(&iter->list);
451
		list_add(&iter->list, &os->sample_cache);
452
	}
453 454 455 456 457 458 459

	if (list_empty(head)) {
		os->last_sample = NULL;
	} else if (last_ts <= limit) {
		os->last_sample =
			list_entry(head->prev, struct sample_queue, list);
	}
460 461
}

462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510
/*
 * When perf record finishes a pass on every buffers, it records this pseudo
 * event.
 * We record the max timestamp t found in the pass n.
 * Assuming these timestamps are monotonic across cpus, we know that if
 * a buffer still has events with timestamps below t, they will be all
 * available and then read in the pass n + 1.
 * Hence when we start to read the pass n + 2, we can safely flush every
 * events with timestamps below t.
 *
 *    ============ PASS n =================
 *       CPU 0         |   CPU 1
 *                     |
 *    cnt1 timestamps  |   cnt2 timestamps
 *          1          |         2
 *          2          |         3
 *          -          |         4  <--- max recorded
 *
 *    ============ PASS n + 1 ==============
 *       CPU 0         |   CPU 1
 *                     |
 *    cnt1 timestamps  |   cnt2 timestamps
 *          3          |         5
 *          4          |         6
 *          5          |         7 <---- max recorded
 *
 *      Flush every events below timestamp 4
 *
 *    ============ PASS n + 2 ==============
 *       CPU 0         |   CPU 1
 *                     |
 *    cnt1 timestamps  |   cnt2 timestamps
 *          6          |         8
 *          7          |         9
 *          -          |         10
 *
 *      Flush every events below timestamp 7
 *      etc...
 */
static int process_finished_round(event_t *event __used,
				  struct perf_session *session,
				  struct perf_event_ops *ops)
{
	flush_sample_queue(session, ops);
	session->ordered_samples.next_flush = session->ordered_samples.max_timestamp;

	return 0;
}

511 512 513 514
/* The queue is ordered by time */
static void __queue_sample_event(struct sample_queue *new,
				 struct perf_session *s)
{
515 516 517 518
	struct ordered_samples *os = &s->ordered_samples;
	struct sample_queue *sample = os->last_sample;
	u64 timestamp = new->timestamp;
	struct list_head *p;
519

520
	os->last_sample = new;
521

522 523 524
	if (!sample) {
		list_add(&new->list, &os->samples);
		os->max_timestamp = timestamp;
525 526 527 528
		return;
	}

	/*
529 530 531
	 * last_sample might point to some random place in the list as it's
	 * the last queued event. We expect that the new event is close to
	 * this.
532
	 */
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554
	if (sample->timestamp <= timestamp) {
		while (sample->timestamp <= timestamp) {
			p = sample->list.next;
			if (p == &os->samples) {
				list_add_tail(&new->list, &os->samples);
				os->max_timestamp = timestamp;
				return;
			}
			sample = list_entry(p, struct sample_queue, list);
		}
		list_add_tail(&new->list, &sample->list);
	} else {
		while (sample->timestamp > timestamp) {
			p = sample->list.prev;
			if (p == &os->samples) {
				list_add(&new->list, &os->samples);
				return;
			}
			sample = list_entry(p, struct sample_queue, list);
		}
		list_add(&new->list, &sample->list);
	}
555 556
}

557 558
#define MAX_SAMPLE_BUFFER	(64 * 1024 / sizeof(struct sample_queue))

559
static int queue_sample_event(event_t *event, struct sample_data *data,
560
			      struct perf_session *s)
561
{
562 563
	struct ordered_samples *os = &s->ordered_samples;
	struct list_head *sc = &os->sample_cache;
564 565 566 567 568 569 570 571
	u64 timestamp = data->time;
	struct sample_queue *new;

	if (timestamp < s->ordered_samples.last_flush) {
		printf("Warning: Timestamp below last timeslice flush\n");
		return -EINVAL;
	}

572 573 574
	if (!list_empty(sc)) {
		new = list_entry(sc->next, struct sample_queue, list);
		list_del(&new->list);
575 576 577 578
	} else if (os->sample_buffer) {
		new = os->sample_buffer + os->sample_buffer_idx;
		if (++os->sample_buffer_idx == MAX_SAMPLE_BUFFER)
			os->sample_buffer = NULL;
579
	} else {
580 581
		os->sample_buffer = malloc(MAX_SAMPLE_BUFFER * sizeof(*new));
		if (!os->sample_buffer)
582
			return -ENOMEM;
583 584 585
		list_add(&os->sample_buffer->list, &os->to_free);
		os->sample_buffer_idx = 2;
		new = os->sample_buffer + 1;
586
	}
587 588

	new->timestamp = timestamp;
589
	new->event = event;
590 591 592 593 594 595

	__queue_sample_event(new, s);

	return 0;
}

596 597 598
static int perf_session__process_sample(event_t *event,
					struct sample_data *sample,
					struct perf_session *s,
599 600 601
					struct perf_event_ops *ops)
{
	if (!ops->ordered_samples)
602 603 604 605 606
		return ops->sample(event, sample, s);

	queue_sample_event(event, sample, s);
	return 0;
}
607

608 609 610
static void callchain__dump(struct sample_data *sample)
{
	unsigned int i;
611

612 613
	if (!dump_trace)
		return;
614

615 616 617 618
	printf("... chain: nr:%Lu\n", sample->callchain->nr);

	for (i = 0; i < sample->callchain->nr; i++)
		printf("..... %2d: %016Lx\n", i, sample->callchain->ips[i]);
619 620
}

621 622 623
static int perf_session__process_event(struct perf_session *self,
				       event_t *event,
				       struct perf_event_ops *ops,
624
				       u64 file_offset)
625
{
626 627
	struct sample_data sample;

628 629
	trace_event(event);

630 631 632 633 634 635
	if (self->header.needs_swap && event__swap_ops[event->header.type])
		event__swap_ops[event->header.type](event);

	if (event->header.type == PERF_RECORD_SAMPLE)
		event__parse_sample(event, self->sample_type, &sample);

636
	if (event->header.type < PERF_RECORD_HEADER_MAX) {
637
		dump_printf("%#Lx [%#x]: PERF_RECORD_%s",
638
			    file_offset, event->header.size,
639
			    event__name[event->header.type]);
640
		hists__inc_nr_events(&self->hists, event->header.type);
641 642 643 644
	}

	switch (event->header.type) {
	case PERF_RECORD_SAMPLE:
645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661
		dump_printf("(IP, %d): %d/%d: %#Lx period: %Ld\n", event->header.misc,
			    sample.pid, sample.tid, sample.ip, sample.period);

		if (self->sample_type & PERF_SAMPLE_CALLCHAIN) {
			if (!ip_callchain__valid(sample.callchain, event)) {
				pr_debug("call-chain problem with event, "
					 "skipping it.\n");
				++self->hists.stats.nr_invalid_chains;
				self->hists.stats.total_invalid_chains += sample.period;
				return 0;
			}

			callchain__dump(&sample);
		}

		return perf_session__process_sample(event, &sample, self, ops);

662
	case PERF_RECORD_MMAP:
663
		return ops->mmap(event, &sample, self);
664
	case PERF_RECORD_COMM:
665
		return ops->comm(event, &sample, self);
666
	case PERF_RECORD_FORK:
667
		return ops->fork(event, &sample, self);
668
	case PERF_RECORD_EXIT:
669
		return ops->exit(event, &sample, self);
670
	case PERF_RECORD_LOST:
671
		return ops->lost(event, &sample, self);
672
	case PERF_RECORD_READ:
673
		return ops->read(event, &sample, self);
674
	case PERF_RECORD_THROTTLE:
675
		return ops->throttle(event, &sample, self);
676
	case PERF_RECORD_UNTHROTTLE:
677
		return ops->unthrottle(event, &sample, self);
678 679
	case PERF_RECORD_HEADER_ATTR:
		return ops->attr(event, self);
680 681
	case PERF_RECORD_HEADER_EVENT_TYPE:
		return ops->event_type(event, self);
682 683
	case PERF_RECORD_HEADER_TRACING_DATA:
		/* setup for reading amidst mmap */
684
		lseek(self->fd, file_offset, SEEK_SET);
685
		return ops->tracing_data(event, self);
686 687
	case PERF_RECORD_HEADER_BUILD_ID:
		return ops->build_id(event, self);
688 689
	case PERF_RECORD_FINISHED_ROUND:
		return ops->finished_round(event, self, ops);
690
	default:
691
		++self->hists.stats.nr_unknown_events;
692 693 694 695
		return -1;
	}
}

696 697 698 699 700 701 702
void perf_event_header__bswap(struct perf_event_header *self)
{
	self->type = bswap_32(self->type);
	self->misc = bswap_16(self->misc);
	self->size = bswap_16(self->size);
}

703 704 705 706 707 708 709 710 711 712 713 714
static struct thread *perf_session__register_idle_thread(struct perf_session *self)
{
	struct thread *thread = perf_session__findnew(self, 0);

	if (thread == NULL || thread__set_comm(thread, "swapper")) {
		pr_err("problem inserting idle task.\n");
		thread = NULL;
	}

	return thread;
}

715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767
int do_read(int fd, void *buf, size_t size)
{
	void *buf_start = buf;

	while (size) {
		int ret = read(fd, buf, size);

		if (ret <= 0)
			return ret;

		size -= ret;
		buf += ret;
	}

	return buf - buf_start;
}

#define session_done()	(*(volatile int *)(&session_done))
volatile int session_done;

static int __perf_session__process_pipe_events(struct perf_session *self,
					       struct perf_event_ops *ops)
{
	event_t event;
	uint32_t size;
	int skip = 0;
	u64 head;
	int err;
	void *p;

	perf_event_ops__fill_defaults(ops);

	head = 0;
more:
	err = do_read(self->fd, &event, sizeof(struct perf_event_header));
	if (err <= 0) {
		if (err == 0)
			goto done;

		pr_err("failed to read event header\n");
		goto out_err;
	}

	if (self->header.needs_swap)
		perf_event_header__bswap(&event.header);

	size = event.header.size;
	if (size == 0)
		size = 8;

	p = &event;
	p += sizeof(struct perf_event_header);

768 769 770 771 772 773 774 775
	if (size - sizeof(struct perf_event_header)) {
		err = do_read(self->fd, p,
			      size - sizeof(struct perf_event_header));
		if (err <= 0) {
			if (err == 0) {
				pr_err("unexpected end of event stream\n");
				goto done;
			}
776

777 778 779
			pr_err("failed to read event data\n");
			goto out_err;
		}
780 781 782
	}

	if (size == 0 ||
783
	    (skip = perf_session__process_event(self, &event, ops, head)) < 0) {
784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808
		dump_printf("%#Lx [%#x]: skipping unknown header type: %d\n",
			    head, event.header.size, event.header.type);
		/*
		 * assume we lost track of the stream, check alignment, and
		 * increment a single u64 in the hope to catch on again 'soon'.
		 */
		if (unlikely(head & 7))
			head &= ~7ULL;

		size = 8;
	}

	head += size;

	dump_printf("\n%#Lx [%#x]: event: %d\n",
		    head, event.header.size, event.header.type);

	if (skip > 0)
		head += skip;

	if (!session_done())
		goto more;
done:
	err = 0;
out_err:
809
	perf_session_free_sample_buffers(self);
810 811 812
	return err;
}

813
int __perf_session__process_events(struct perf_session *session,
814 815
				   u64 data_offset, u64 data_size,
				   u64 file_size, struct perf_event_ops *ops)
816
{
817
	u64 head, page_offset, file_offset, file_pos, progress_next;
818
	int err, mmap_prot, mmap_flags, map_idx = 0;
819
	struct ui_progress *progress;
820
	size_t	page_size, mmap_size;
821
	char *buf, *mmaps[8];
822 823
	event_t *event;
	uint32_t size;
824

825 826
	perf_event_ops__fill_defaults(ops);

827
	page_size = sysconf(_SC_PAGESIZE);
828

829 830 831
	page_offset = page_size * (data_offset / page_size);
	file_offset = page_offset;
	head = data_offset - page_offset;
832

833 834 835
	if (data_offset + data_size < file_size)
		file_size = data_offset + data_size;

836 837 838 839 840 841 842 843 844
	progress_next = file_size / 16;
	progress = ui_progress__new("Processing events...", file_size);
	if (progress == NULL)
		return -1;

	mmap_size = session->mmap_window;
	if (mmap_size > file_size)
		mmap_size = file_size;

845 846
	memset(mmaps, 0, sizeof(mmaps));

847 848 849
	mmap_prot  = PROT_READ;
	mmap_flags = MAP_SHARED;

850
	if (session->header.needs_swap) {
851 852 853
		mmap_prot  |= PROT_WRITE;
		mmap_flags = MAP_PRIVATE;
	}
854
remap:
855 856
	buf = mmap(NULL, mmap_size, mmap_prot, mmap_flags, session->fd,
		   file_offset);
857 858 859 860 861
	if (buf == MAP_FAILED) {
		pr_err("failed to mmap file\n");
		err = -errno;
		goto out_err;
	}
862 863
	mmaps[map_idx] = buf;
	map_idx = (map_idx + 1) & (ARRAY_SIZE(mmaps) - 1);
864
	file_pos = file_offset + head;
865 866 867 868

more:
	event = (event_t *)(buf + head);

869
	if (session->header.needs_swap)
870
		perf_event_header__bswap(&event->header);
871 872 873 874
	size = event->header.size;
	if (size == 0)
		size = 8;

875
	if (head + event->header.size >= mmap_size) {
876 877 878 879
		if (mmaps[map_idx]) {
			munmap(mmaps[map_idx], mmap_size);
			mmaps[map_idx] = NULL;
		}
880

881 882 883
		page_offset = page_size * (head / page_size);
		file_offset += page_offset;
		head -= page_offset;
884 885 886 887 888
		goto remap;
	}

	size = event->header.size;

889
	dump_printf("\n%#Lx [%#x]: event: %d\n",
890
		    file_pos, event->header.size, event->header.type);
891

892 893
	if (size == 0 ||
	    perf_session__process_event(session, event, ops, file_pos) < 0) {
894
		dump_printf("%#Lx [%#x]: skipping unknown header type: %d\n",
895
			    file_offset + head, event->header.size,
896 897 898 899 900 901 902 903 904 905 906 907
			    event->header.type);
		/*
		 * assume we lost track of the stream, check alignment, and
		 * increment a single u64 in the hope to catch on again 'soon'.
		 */
		if (unlikely(head & 7))
			head &= ~7ULL;

		size = 8;
	}

	head += size;
908
	file_pos += size;
909

910 911 912 913 914
	if (file_pos >= progress_next) {
		progress_next += file_size / 16;
		ui_progress__update(progress, file_pos);
	}

915
	if (file_pos < file_size)
916
		goto more;
917

918
	err = 0;
919
	/* do the final flush for ordered samples */
920 921
	session->ordered_samples.next_flush = ULLONG_MAX;
	flush_sample_queue(session, ops);
922
out_err:
923
	ui_progress__delete(progress);
924 925

	if (ops->lost == event__process_lost &&
926
	    session->hists.stats.total_lost != 0) {
927 928
		ui__warning("Processed %Lu events and LOST %Lu!\n\n"
			    "Check IO/CPU overload!\n\n",
929 930
			    session->hists.stats.total_period,
			    session->hists.stats.total_lost);
931
	}
932 933

	if (session->hists.stats.nr_unknown_events != 0) {
934 935 936 937 938
		ui__warning("Found %u unknown events!\n\n"
			    "Is this an older tool processing a perf.data "
			    "file generated by a more recent tool?\n\n"
			    "If that is not the case, consider "
			    "reporting to linux-kernel@vger.kernel.org.\n\n",
939
			    session->hists.stats.nr_unknown_events);
940
	}
941

942 943 944 945 946 947 948 949
 	if (session->hists.stats.nr_invalid_chains != 0) {
 		ui__warning("Found invalid callchains!\n\n"
 			    "%u out of %u events were discarded for this reason.\n\n"
 			    "Consider reporting to linux-kernel@vger.kernel.org.\n\n",
 			    session->hists.stats.nr_invalid_chains,
 			    session->hists.stats.nr_events[PERF_RECORD_SAMPLE]);
 	}

950
	perf_session_free_sample_buffers(session);
951 952
	return err;
}
953

954 955 956 957 958 959 960 961
int perf_session__process_events(struct perf_session *self,
				 struct perf_event_ops *ops)
{
	int err;

	if (perf_session__register_idle_thread(self) == NULL)
		return -ENOMEM;

962 963 964 965 966 967 968
	if (!self->fd_pipe)
		err = __perf_session__process_events(self,
						     self->header.data_offset,
						     self->header.data_size,
						     self->size, ops);
	else
		err = __perf_session__process_pipe_events(self, ops);
969

970 971 972
	return err;
}

973
bool perf_session__has_traces(struct perf_session *self, const char *msg)
974 975
{
	if (!(self->sample_type & PERF_SAMPLE_RAW)) {
976 977
		pr_err("No trace sample to read. Did you call 'perf %s'?\n", msg);
		return false;
978 979
	}

980
	return true;
981
}
982

983
int perf_session__set_kallsyms_ref_reloc_sym(struct map **maps,
984 985 986 987
					     const char *symbol_name,
					     u64 addr)
{
	char *bracket;
988
	enum map_type i;
989 990 991 992 993
	struct ref_reloc_sym *ref;

	ref = zalloc(sizeof(struct ref_reloc_sym));
	if (ref == NULL)
		return -ENOMEM;
994

995 996 997
	ref->name = strdup(symbol_name);
	if (ref->name == NULL) {
		free(ref);
998
		return -ENOMEM;
999
	}
1000

1001
	bracket = strchr(ref->name, ']');
1002 1003 1004
	if (bracket)
		*bracket = '\0';

1005
	ref->addr = addr;
1006 1007

	for (i = 0; i < MAP__NR_TYPES; ++i) {
1008 1009
		struct kmap *kmap = map__kmap(maps[i]);
		kmap->ref_reloc_sym = ref;
1010 1011
	}

1012 1013
	return 0;
}
1014 1015 1016 1017 1018 1019 1020

size_t perf_session__fprintf_dsos(struct perf_session *self, FILE *fp)
{
	return __dsos__fprintf(&self->host_machine.kernel_dsos, fp) +
	       __dsos__fprintf(&self->host_machine.user_dsos, fp) +
	       machines__fprintf_dsos(&self->machines, fp);
}
1021 1022 1023 1024 1025 1026 1027

size_t perf_session__fprintf_dsos_buildid(struct perf_session *self, FILE *fp,
					  bool with_hits)
{
	size_t ret = machine__fprintf_dsos_buildid(&self->host_machine, fp, with_hits);
	return ret + machines__fprintf_dsos_buildid(&self->machines, fp, with_hits);
}