Linux Audio

Check our new training course

Loading...
v6.8
   1// SPDX-License-Identifier: GPL-2.0
   2#include <errno.h>
   3#include <signal.h>
   4#include <inttypes.h>
   5#include <linux/err.h>
   6#include <linux/kernel.h>
   7#include <linux/zalloc.h>
   8#include <api/fs/fs.h>
   9
  10#include <byteswap.h>
  11#include <unistd.h>
  12#include <sys/types.h>
  13#include <sys/mman.h>
  14#include <perf/cpumap.h>
  15
  16#include "map_symbol.h"
  17#include "branch.h"
  18#include "debug.h"
  19#include "env.h"
  20#include "evlist.h"
  21#include "evsel.h"
  22#include "memswap.h"
  23#include "map.h"
  24#include "symbol.h"
  25#include "session.h"
  26#include "tool.h"
  27#include "perf_regs.h"
  28#include "asm/bug.h"
  29#include "auxtrace.h"
  30#include "thread.h"
  31#include "thread-stack.h"
  32#include "sample-raw.h"
  33#include "stat.h"
  34#include "tsc.h"
  35#include "ui/progress.h"
  36#include "util.h"
  37#include "arch/common.h"
  38#include "units.h"
  39#include <internal/lib.h>
  40
  41#ifdef HAVE_ZSTD_SUPPORT
  42static int perf_session__process_compressed_event(struct perf_session *session,
  43						  union perf_event *event, u64 file_offset,
  44						  const char *file_path)
  45{
  46	void *src;
  47	size_t decomp_size, src_size;
  48	u64 decomp_last_rem = 0;
  49	size_t mmap_len, decomp_len = session->header.env.comp_mmap_len;
  50	struct decomp *decomp, *decomp_last = session->active_decomp->decomp_last;
  51
  52	if (decomp_last) {
  53		decomp_last_rem = decomp_last->size - decomp_last->head;
  54		decomp_len += decomp_last_rem;
  55	}
  56
  57	mmap_len = sizeof(struct decomp) + decomp_len;
  58	decomp = mmap(NULL, mmap_len, PROT_READ|PROT_WRITE,
  59		      MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
  60	if (decomp == MAP_FAILED) {
  61		pr_err("Couldn't allocate memory for decompression\n");
  62		return -1;
  63	}
  64
  65	decomp->file_pos = file_offset;
  66	decomp->file_path = file_path;
  67	decomp->mmap_len = mmap_len;
  68	decomp->head = 0;
  69
  70	if (decomp_last_rem) {
  71		memcpy(decomp->data, &(decomp_last->data[decomp_last->head]), decomp_last_rem);
  72		decomp->size = decomp_last_rem;
  73	}
  74
  75	src = (void *)event + sizeof(struct perf_record_compressed);
  76	src_size = event->pack.header.size - sizeof(struct perf_record_compressed);
  77
  78	decomp_size = zstd_decompress_stream(session->active_decomp->zstd_decomp, src, src_size,
  79				&(decomp->data[decomp_last_rem]), decomp_len - decomp_last_rem);
  80	if (!decomp_size) {
  81		munmap(decomp, mmap_len);
  82		pr_err("Couldn't decompress data\n");
  83		return -1;
  84	}
  85
  86	decomp->size += decomp_size;
  87
  88	if (session->active_decomp->decomp == NULL)
  89		session->active_decomp->decomp = decomp;
  90	else
  91		session->active_decomp->decomp_last->next = decomp;
  92
  93	session->active_decomp->decomp_last = decomp;
 
 
  94
  95	pr_debug("decomp (B): %zd to %zd\n", src_size, decomp_size);
 
  96
  97	return 0;
  98}
  99#else /* !HAVE_ZSTD_SUPPORT */
 100#define perf_session__process_compressed_event perf_session__process_compressed_event_stub
 101#endif
 102
 103static int perf_session__deliver_event(struct perf_session *session,
 104				       union perf_event *event,
 105				       struct perf_tool *tool,
 106				       u64 file_offset,
 107				       const char *file_path);
 
 
 
 
 
 108
 109static int perf_session__open(struct perf_session *session, int repipe_fd)
 110{
 111	struct perf_data *data = session->data;
 112
 113	if (perf_session__read_header(session, repipe_fd) < 0) {
 114		pr_err("incompatible file format (rerun with -v to learn more)\n");
 115		return -1;
 
 116	}
 117
 118	if (perf_header__has_feat(&session->header, HEADER_AUXTRACE)) {
 119		/* Auxiliary events may reference exited threads, hold onto dead ones. */
 120		symbol_conf.keep_exited_threads = true;
 
 121	}
 122
 123	if (perf_data__is_pipe(data))
 124		return 0;
 125
 126	if (perf_header__has_feat(&session->header, HEADER_STAT))
 127		return 0;
 128
 129	if (!evlist__valid_sample_type(session->evlist)) {
 130		pr_err("non matching sample_type\n");
 131		return -1;
 132	}
 133
 134	if (!evlist__valid_sample_id_all(session->evlist)) {
 135		pr_err("non matching sample_id_all\n");
 136		return -1;
 137	}
 138
 139	if (!evlist__valid_read_format(session->evlist)) {
 140		pr_err("non matching read_format\n");
 141		return -1;
 142	}
 143
 
 144	return 0;
 
 
 
 
 
 145}
 146
 147void perf_session__set_id_hdr_size(struct perf_session *session)
 148{
 149	u16 id_hdr_size = evlist__id_hdr_size(session->evlist);
 150
 151	machines__set_id_hdr_size(&session->machines, id_hdr_size);
 
 
 152}
 153
 154int perf_session__create_kernel_maps(struct perf_session *session)
 155{
 156	int ret = machine__create_kernel_maps(&session->machines.host);
 157
 158	if (ret >= 0)
 159		ret = machines__create_guest_kernel_maps(&session->machines);
 160	return ret;
 161}
 162
 163static void perf_session__destroy_kernel_maps(struct perf_session *session)
 164{
 165	machines__destroy_kernel_maps(&session->machines);
 
 166}
 167
 168static bool perf_session__has_comm_exec(struct perf_session *session)
 
 
 169{
 170	struct evsel *evsel;
 
 
 171
 172	evlist__for_each_entry(session->evlist, evsel) {
 173		if (evsel->core.attr.comm_exec)
 174			return true;
 
 
 175	}
 176
 177	return false;
 178}
 179
 180static void perf_session__set_comm_exec(struct perf_session *session)
 181{
 182	bool comm_exec = perf_session__has_comm_exec(session);
 183
 184	machines__set_comm_exec(&session->machines, comm_exec);
 185}
 186
 187static int ordered_events__deliver_event(struct ordered_events *oe,
 188					 struct ordered_event *event)
 189{
 190	struct perf_session *session = container_of(oe, struct perf_session,
 191						    ordered_events);
 192
 193	return perf_session__deliver_event(session, event->event,
 194					   session->tool, event->file_offset,
 195					   event->file_path);
 196}
 197
 198struct perf_session *__perf_session__new(struct perf_data *data,
 199					 bool repipe, int repipe_fd,
 200					 struct perf_tool *tool)
 201{
 202	int ret = -ENOMEM;
 203	struct perf_session *session = zalloc(sizeof(*session));
 204
 205	if (!session)
 206		goto out;
 207
 208	session->repipe = repipe;
 209	session->tool   = tool;
 210	session->decomp_data.zstd_decomp = &session->zstd_data;
 211	session->active_decomp = &session->decomp_data;
 212	INIT_LIST_HEAD(&session->auxtrace_index);
 213	machines__init(&session->machines);
 214	ordered_events__init(&session->ordered_events,
 215			     ordered_events__deliver_event, NULL);
 216
 217	perf_env__init(&session->header.env);
 218	if (data) {
 219		ret = perf_data__open(data);
 220		if (ret < 0)
 221			goto out_delete;
 222
 223		session->data = data;
 224
 225		if (perf_data__is_read(data)) {
 226			ret = perf_session__open(session, repipe_fd);
 227			if (ret < 0)
 228				goto out_delete;
 229
 230			/*
 231			 * set session attributes that are present in perf.data
 232			 * but not in pipe-mode.
 233			 */
 234			if (!data->is_pipe) {
 235				perf_session__set_id_hdr_size(session);
 236				perf_session__set_comm_exec(session);
 237			}
 238
 239			evlist__init_trace_event_sample_raw(session->evlist);
 240
 241			/* Open the directory data. */
 242			if (data->is_dir) {
 243				ret = perf_data__open_dir(data);
 244				if (ret)
 245					goto out_delete;
 246			}
 247
 248			if (!symbol_conf.kallsyms_name &&
 249			    !symbol_conf.vmlinux_name)
 250				symbol_conf.kallsyms_name = perf_data__kallsyms_name(data);
 251		}
 252	} else  {
 253		session->machines.host.env = &perf_env;
 254	}
 255
 256	session->machines.host.single_address_space =
 257		perf_env__single_address_space(session->machines.host.env);
 258
 259	if (!data || perf_data__is_write(data)) {
 
 
 
 
 260		/*
 261		 * In O_RDONLY mode this will be performed when reading the
 262		 * kernel MMAP event, in perf_event__process_mmap().
 263		 */
 264		if (perf_session__create_kernel_maps(session) < 0)
 265			pr_warning("Cannot read kernel map\n");
 266	}
 267
 268	/*
 269	 * In pipe-mode, evlist is empty until PERF_RECORD_HEADER_ATTR is
 270	 * processed, so evlist__sample_id_all is not meaningful here.
 271	 */
 272	if ((!data || !data->is_pipe) && tool && tool->ordering_requires_timestamps &&
 273	    tool->ordered_events && !evlist__sample_id_all(session->evlist)) {
 274		dump_printf("WARNING: No sample_id_all support, falling back to unordered processing\n");
 275		tool->ordered_events = false;
 276	}
 277
 278	return session;
 279
 280 out_delete:
 281	perf_session__delete(session);
 282 out:
 283	return ERR_PTR(ret);
 284}
 285
 286static void perf_decomp__release_events(struct decomp *next)
 287{
 288	struct decomp *decomp;
 289	size_t mmap_len;
 290
 291	do {
 292		decomp = next;
 293		if (decomp == NULL)
 294			break;
 295		next = decomp->next;
 296		mmap_len = decomp->mmap_len;
 297		munmap(decomp, mmap_len);
 298	} while (1);
 299}
 300
 301void perf_session__delete(struct perf_session *session)
 302{
 303	if (session == NULL)
 304		return;
 305	auxtrace__free(session);
 306	auxtrace_index__free(&session->auxtrace_index);
 307	perf_session__destroy_kernel_maps(session);
 308	perf_decomp__release_events(session->decomp_data.decomp);
 309	perf_env__exit(&session->header.env);
 310	machines__exit(&session->machines);
 311	if (session->data) {
 312		if (perf_data__is_read(session->data))
 313			evlist__delete(session->evlist);
 314		perf_data__close(session->data);
 315	}
 316#ifdef HAVE_LIBTRACEEVENT
 317	trace_event__cleanup(&session->tevent);
 318#endif
 319	free(session);
 320}
 321
 322static int process_event_synth_tracing_data_stub(struct perf_session *session
 323						 __maybe_unused,
 324						 union perf_event *event
 325						 __maybe_unused)
 326{
 327	dump_printf(": unhandled!\n");
 328	return 0;
 
 
 
 
 
 
 
 329}
 330
 331static int process_event_synth_attr_stub(struct perf_tool *tool __maybe_unused,
 332					 union perf_event *event __maybe_unused,
 333					 struct evlist **pevlist
 334					 __maybe_unused)
 335{
 336	dump_printf(": unhandled!\n");
 337	return 0;
 338}
 339
 340static int process_event_synth_event_update_stub(struct perf_tool *tool __maybe_unused,
 341						 union perf_event *event __maybe_unused,
 342						 struct evlist **pevlist
 343						 __maybe_unused)
 344{
 345	if (dump_trace)
 346		perf_event__fprintf_event_update(event, stdout);
 347
 348	dump_printf(": unhandled!\n");
 349	return 0;
 
 350}
 351
 352static int process_event_sample_stub(struct perf_tool *tool __maybe_unused,
 353				     union perf_event *event __maybe_unused,
 354				     struct perf_sample *sample __maybe_unused,
 355				     struct evsel *evsel __maybe_unused,
 356				     struct machine *machine __maybe_unused)
 357{
 358	dump_printf(": unhandled!\n");
 359	return 0;
 
 
 
 
 
 360}
 361
 362static int process_event_stub(struct perf_tool *tool __maybe_unused,
 363			      union perf_event *event __maybe_unused,
 364			      struct perf_sample *sample __maybe_unused,
 365			      struct machine *machine __maybe_unused)
 366{
 367	dump_printf(": unhandled!\n");
 
 
 368	return 0;
 369}
 370
 371static int process_finished_round_stub(struct perf_tool *tool __maybe_unused,
 372				       union perf_event *event __maybe_unused,
 373				       struct ordered_events *oe __maybe_unused)
 
 
 
 
 
 
 
 
 374{
 375	dump_printf(": unhandled!\n");
 376	return 0;
 377}
 
 
 378
 379static int skipn(int fd, off_t n)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 380{
 381	char buf[4096];
 382	ssize_t ret;
 383
 384	while (n > 0) {
 385		ret = read(fd, buf, min(n, (off_t)sizeof(buf)));
 386		if (ret <= 0)
 387			return ret;
 388		n -= ret;
 389	}
 390
 391	return 0;
 
 
 
 
 
 392}
 393
 394static s64 process_event_auxtrace_stub(struct perf_session *session __maybe_unused,
 395				       union perf_event *event)
 
 
 
 396{
 397	dump_printf(": unhandled!\n");
 398	if (perf_data__is_pipe(session->data))
 399		skipn(perf_data__fd(session->data), event->auxtrace.size);
 400	return event->auxtrace.size;
 401}
 402
 403static int process_event_op2_stub(struct perf_session *session __maybe_unused,
 404				  union perf_event *event __maybe_unused)
 405{
 406	dump_printf(": unhandled!\n");
 407	return 0;
 408}
 409
 
 
 
 
 410
 411static
 412int process_event_thread_map_stub(struct perf_session *session __maybe_unused,
 413				  union perf_event *event __maybe_unused)
 414{
 415	if (dump_trace)
 416		perf_event__fprintf_thread_map(event, stdout);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 417
 418	dump_printf(": unhandled!\n");
 419	return 0;
 420}
 421
 422static
 423int process_event_cpu_map_stub(struct perf_session *session __maybe_unused,
 424			       union perf_event *event __maybe_unused)
 425{
 426	if (dump_trace)
 427		perf_event__fprintf_cpu_map(event, stdout);
 428
 429	dump_printf(": unhandled!\n");
 430	return 0;
 431}
 432
 433static
 434int process_event_stat_config_stub(struct perf_session *session __maybe_unused,
 435				   union perf_event *event __maybe_unused)
 436{
 437	if (dump_trace)
 438		perf_event__fprintf_stat_config(event, stdout);
 439
 440	dump_printf(": unhandled!\n");
 441	return 0;
 442}
 443
 444static int process_stat_stub(struct perf_session *perf_session __maybe_unused,
 445			     union perf_event *event)
 
 
 
 446{
 447	if (dump_trace)
 448		perf_event__fprintf_stat(event, stdout);
 449
 450	dump_printf(": unhandled!\n");
 451	return 0;
 452}
 453
 454static int process_stat_round_stub(struct perf_session *perf_session __maybe_unused,
 455				   union perf_event *event)
 
 
 456{
 457	if (dump_trace)
 458		perf_event__fprintf_stat_round(event, stdout);
 459
 460	dump_printf(": unhandled!\n");
 461	return 0;
 462}
 463
 464static int process_event_time_conv_stub(struct perf_session *perf_session __maybe_unused,
 465					union perf_event *event)
 
 466{
 467	if (dump_trace)
 468		perf_event__fprintf_time_conv(event, stdout);
 469
 470	dump_printf(": unhandled!\n");
 471	return 0;
 472}
 473
 474static int perf_session__process_compressed_event_stub(struct perf_session *session __maybe_unused,
 475						       union perf_event *event __maybe_unused,
 476						       u64 file_offset __maybe_unused,
 477						       const char *file_path __maybe_unused)
 478{
 479       dump_printf(": unhandled!\n");
 480       return 0;
 481}
 482
 483void perf_tool__fill_defaults(struct perf_tool *tool)
 
 
 
 
 484{
 485	if (tool->sample == NULL)
 486		tool->sample = process_event_sample_stub;
 487	if (tool->mmap == NULL)
 488		tool->mmap = process_event_stub;
 489	if (tool->mmap2 == NULL)
 490		tool->mmap2 = process_event_stub;
 491	if (tool->comm == NULL)
 492		tool->comm = process_event_stub;
 493	if (tool->namespaces == NULL)
 494		tool->namespaces = process_event_stub;
 495	if (tool->cgroup == NULL)
 496		tool->cgroup = process_event_stub;
 497	if (tool->fork == NULL)
 498		tool->fork = process_event_stub;
 499	if (tool->exit == NULL)
 500		tool->exit = process_event_stub;
 501	if (tool->lost == NULL)
 502		tool->lost = perf_event__process_lost;
 503	if (tool->lost_samples == NULL)
 504		tool->lost_samples = perf_event__process_lost_samples;
 505	if (tool->aux == NULL)
 506		tool->aux = perf_event__process_aux;
 507	if (tool->itrace_start == NULL)
 508		tool->itrace_start = perf_event__process_itrace_start;
 509	if (tool->context_switch == NULL)
 510		tool->context_switch = perf_event__process_switch;
 511	if (tool->ksymbol == NULL)
 512		tool->ksymbol = perf_event__process_ksymbol;
 513	if (tool->bpf == NULL)
 514		tool->bpf = perf_event__process_bpf;
 515	if (tool->text_poke == NULL)
 516		tool->text_poke = perf_event__process_text_poke;
 517	if (tool->aux_output_hw_id == NULL)
 518		tool->aux_output_hw_id = perf_event__process_aux_output_hw_id;
 519	if (tool->read == NULL)
 520		tool->read = process_event_sample_stub;
 521	if (tool->throttle == NULL)
 522		tool->throttle = process_event_stub;
 523	if (tool->unthrottle == NULL)
 524		tool->unthrottle = process_event_stub;
 525	if (tool->attr == NULL)
 526		tool->attr = process_event_synth_attr_stub;
 527	if (tool->event_update == NULL)
 528		tool->event_update = process_event_synth_event_update_stub;
 529	if (tool->tracing_data == NULL)
 530		tool->tracing_data = process_event_synth_tracing_data_stub;
 531	if (tool->build_id == NULL)
 532		tool->build_id = process_event_op2_stub;
 533	if (tool->finished_round == NULL) {
 534		if (tool->ordered_events)
 535			tool->finished_round = perf_event__process_finished_round;
 536		else
 537			tool->finished_round = process_finished_round_stub;
 538	}
 539	if (tool->id_index == NULL)
 540		tool->id_index = process_event_op2_stub;
 541	if (tool->auxtrace_info == NULL)
 542		tool->auxtrace_info = process_event_op2_stub;
 543	if (tool->auxtrace == NULL)
 544		tool->auxtrace = process_event_auxtrace_stub;
 545	if (tool->auxtrace_error == NULL)
 546		tool->auxtrace_error = process_event_op2_stub;
 547	if (tool->thread_map == NULL)
 548		tool->thread_map = process_event_thread_map_stub;
 549	if (tool->cpu_map == NULL)
 550		tool->cpu_map = process_event_cpu_map_stub;
 551	if (tool->stat_config == NULL)
 552		tool->stat_config = process_event_stat_config_stub;
 553	if (tool->stat == NULL)
 554		tool->stat = process_stat_stub;
 555	if (tool->stat_round == NULL)
 556		tool->stat_round = process_stat_round_stub;
 557	if (tool->time_conv == NULL)
 558		tool->time_conv = process_event_time_conv_stub;
 559	if (tool->feature == NULL)
 560		tool->feature = process_event_op2_stub;
 561	if (tool->compressed == NULL)
 562		tool->compressed = perf_session__process_compressed_event;
 563	if (tool->finished_init == NULL)
 564		tool->finished_init = process_event_op2_stub;
 565}
 566
 567static void swap_sample_id_all(union perf_event *event, void *data)
 568{
 569	void *end = (void *) event + event->header.size;
 570	int size = end - data;
 571
 572	BUG_ON(size % sizeof(u64));
 573	mem_bswap_64(data, size);
 574}
 575
 576static void perf_event__all64_swap(union perf_event *event,
 577				   bool sample_id_all __maybe_unused)
 578{
 579	struct perf_event_header *hdr = &event->header;
 580	mem_bswap_64(hdr + 1, event->header.size - sizeof(*hdr));
 581}
 582
 583static void perf_event__comm_swap(union perf_event *event, bool sample_id_all)
 584{
 585	event->comm.pid = bswap_32(event->comm.pid);
 586	event->comm.tid = bswap_32(event->comm.tid);
 587
 588	if (sample_id_all) {
 589		void *data = &event->comm.comm;
 590
 591		data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
 592		swap_sample_id_all(event, data);
 593	}
 594}
 595
 596static void perf_event__mmap_swap(union perf_event *event,
 597				  bool sample_id_all)
 598{
 599	event->mmap.pid	  = bswap_32(event->mmap.pid);
 600	event->mmap.tid	  = bswap_32(event->mmap.tid);
 601	event->mmap.start = bswap_64(event->mmap.start);
 602	event->mmap.len	  = bswap_64(event->mmap.len);
 603	event->mmap.pgoff = bswap_64(event->mmap.pgoff);
 604
 605	if (sample_id_all) {
 606		void *data = &event->mmap.filename;
 607
 608		data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
 609		swap_sample_id_all(event, data);
 610	}
 611}
 612
 613static void perf_event__mmap2_swap(union perf_event *event,
 614				  bool sample_id_all)
 615{
 616	event->mmap2.pid   = bswap_32(event->mmap2.pid);
 617	event->mmap2.tid   = bswap_32(event->mmap2.tid);
 618	event->mmap2.start = bswap_64(event->mmap2.start);
 619	event->mmap2.len   = bswap_64(event->mmap2.len);
 620	event->mmap2.pgoff = bswap_64(event->mmap2.pgoff);
 621
 622	if (!(event->header.misc & PERF_RECORD_MISC_MMAP_BUILD_ID)) {
 623		event->mmap2.maj   = bswap_32(event->mmap2.maj);
 624		event->mmap2.min   = bswap_32(event->mmap2.min);
 625		event->mmap2.ino   = bswap_64(event->mmap2.ino);
 626		event->mmap2.ino_generation = bswap_64(event->mmap2.ino_generation);
 627	}
 628
 629	if (sample_id_all) {
 630		void *data = &event->mmap2.filename;
 631
 632		data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
 633		swap_sample_id_all(event, data);
 634	}
 635}
 636static void perf_event__task_swap(union perf_event *event, bool sample_id_all)
 637{
 638	event->fork.pid	 = bswap_32(event->fork.pid);
 639	event->fork.tid	 = bswap_32(event->fork.tid);
 640	event->fork.ppid = bswap_32(event->fork.ppid);
 641	event->fork.ptid = bswap_32(event->fork.ptid);
 642	event->fork.time = bswap_64(event->fork.time);
 643
 644	if (sample_id_all)
 645		swap_sample_id_all(event, &event->fork + 1);
 646}
 647
 648static void perf_event__read_swap(union perf_event *event, bool sample_id_all)
 649{
 650	event->read.pid		 = bswap_32(event->read.pid);
 651	event->read.tid		 = bswap_32(event->read.tid);
 652	event->read.value	 = bswap_64(event->read.value);
 653	event->read.time_enabled = bswap_64(event->read.time_enabled);
 654	event->read.time_running = bswap_64(event->read.time_running);
 655	event->read.id		 = bswap_64(event->read.id);
 656
 657	if (sample_id_all)
 658		swap_sample_id_all(event, &event->read + 1);
 659}
 660
 661static void perf_event__aux_swap(union perf_event *event, bool sample_id_all)
 662{
 663	event->aux.aux_offset = bswap_64(event->aux.aux_offset);
 664	event->aux.aux_size   = bswap_64(event->aux.aux_size);
 665	event->aux.flags      = bswap_64(event->aux.flags);
 666
 667	if (sample_id_all)
 668		swap_sample_id_all(event, &event->aux + 1);
 669}
 670
 671static void perf_event__itrace_start_swap(union perf_event *event,
 672					  bool sample_id_all)
 673{
 674	event->itrace_start.pid	 = bswap_32(event->itrace_start.pid);
 675	event->itrace_start.tid	 = bswap_32(event->itrace_start.tid);
 676
 677	if (sample_id_all)
 678		swap_sample_id_all(event, &event->itrace_start + 1);
 679}
 680
 681static void perf_event__switch_swap(union perf_event *event, bool sample_id_all)
 682{
 683	if (event->header.type == PERF_RECORD_SWITCH_CPU_WIDE) {
 684		event->context_switch.next_prev_pid =
 685				bswap_32(event->context_switch.next_prev_pid);
 686		event->context_switch.next_prev_tid =
 687				bswap_32(event->context_switch.next_prev_tid);
 688	}
 689
 690	if (sample_id_all)
 691		swap_sample_id_all(event, &event->context_switch + 1);
 692}
 693
 694static void perf_event__text_poke_swap(union perf_event *event, bool sample_id_all)
 695{
 696	event->text_poke.addr    = bswap_64(event->text_poke.addr);
 697	event->text_poke.old_len = bswap_16(event->text_poke.old_len);
 698	event->text_poke.new_len = bswap_16(event->text_poke.new_len);
 699
 700	if (sample_id_all) {
 701		size_t len = sizeof(event->text_poke.old_len) +
 702			     sizeof(event->text_poke.new_len) +
 703			     event->text_poke.old_len +
 704			     event->text_poke.new_len;
 705		void *data = &event->text_poke.old_len;
 706
 707		data += PERF_ALIGN(len, sizeof(u64));
 708		swap_sample_id_all(event, data);
 709	}
 710}
 711
 712static void perf_event__throttle_swap(union perf_event *event,
 713				      bool sample_id_all)
 714{
 715	event->throttle.time	  = bswap_64(event->throttle.time);
 716	event->throttle.id	  = bswap_64(event->throttle.id);
 717	event->throttle.stream_id = bswap_64(event->throttle.stream_id);
 718
 719	if (sample_id_all)
 720		swap_sample_id_all(event, &event->throttle + 1);
 721}
 722
 723static void perf_event__namespaces_swap(union perf_event *event,
 724					bool sample_id_all)
 725{
 726	u64 i;
 727
 728	event->namespaces.pid		= bswap_32(event->namespaces.pid);
 729	event->namespaces.tid		= bswap_32(event->namespaces.tid);
 730	event->namespaces.nr_namespaces	= bswap_64(event->namespaces.nr_namespaces);
 731
 732	for (i = 0; i < event->namespaces.nr_namespaces; i++) {
 733		struct perf_ns_link_info *ns = &event->namespaces.link_info[i];
 734
 735		ns->dev = bswap_64(ns->dev);
 736		ns->ino = bswap_64(ns->ino);
 737	}
 738
 739	if (sample_id_all)
 740		swap_sample_id_all(event, &event->namespaces.link_info[i]);
 741}
 742
 743static void perf_event__cgroup_swap(union perf_event *event, bool sample_id_all)
 744{
 745	event->cgroup.id = bswap_64(event->cgroup.id);
 746
 747	if (sample_id_all) {
 748		void *data = &event->cgroup.path;
 749
 750		data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
 751		swap_sample_id_all(event, data);
 752	}
 753}
 754
 755static u8 revbyte(u8 b)
 756{
 757	int rev = (b >> 4) | ((b & 0xf) << 4);
 758	rev = ((rev & 0xcc) >> 2) | ((rev & 0x33) << 2);
 759	rev = ((rev & 0xaa) >> 1) | ((rev & 0x55) << 1);
 760	return (u8) rev;
 761}
 762
 763/*
 764 * XXX this is hack in attempt to carry flags bitfield
 765 * through endian village. ABI says:
 766 *
 767 * Bit-fields are allocated from right to left (least to most significant)
 768 * on little-endian implementations and from left to right (most to least
 769 * significant) on big-endian implementations.
 770 *
 771 * The above seems to be byte specific, so we need to reverse each
 772 * byte of the bitfield. 'Internet' also says this might be implementation
 773 * specific and we probably need proper fix and carry perf_event_attr
 774 * bitfield flags in separate data file FEAT_ section. Thought this seems
 775 * to work for now.
 776 */
 777static void swap_bitfield(u8 *p, unsigned len)
 778{
 779	unsigned i;
 780
 781	for (i = 0; i < len; i++) {
 782		*p = revbyte(*p);
 783		p++;
 784	}
 785}
 786
 787/* exported for swapping attributes in file header */
 788void perf_event__attr_swap(struct perf_event_attr *attr)
 789{
 790	attr->type		= bswap_32(attr->type);
 791	attr->size		= bswap_32(attr->size);
 
 
 
 
 
 
 
 
 792
 793#define bswap_safe(f, n) 					\
 794	(attr->size > (offsetof(struct perf_event_attr, f) + 	\
 795		       sizeof(attr->f) * (n)))
 796#define bswap_field(f, sz) 			\
 797do { 						\
 798	if (bswap_safe(f, 0))			\
 799		attr->f = bswap_##sz(attr->f);	\
 800} while(0)
 801#define bswap_field_16(f) bswap_field(f, 16)
 802#define bswap_field_32(f) bswap_field(f, 32)
 803#define bswap_field_64(f) bswap_field(f, 64)
 804
 805	bswap_field_64(config);
 806	bswap_field_64(sample_period);
 807	bswap_field_64(sample_type);
 808	bswap_field_64(read_format);
 809	bswap_field_32(wakeup_events);
 810	bswap_field_32(bp_type);
 811	bswap_field_64(bp_addr);
 812	bswap_field_64(bp_len);
 813	bswap_field_64(branch_sample_type);
 814	bswap_field_64(sample_regs_user);
 815	bswap_field_32(sample_stack_user);
 816	bswap_field_32(aux_watermark);
 817	bswap_field_16(sample_max_stack);
 818	bswap_field_32(aux_sample_size);
 819
 820	/*
 821	 * After read_format are bitfields. Check read_format because
 822	 * we are unable to use offsetof on bitfield.
 823	 */
 824	if (bswap_safe(read_format, 1))
 825		swap_bitfield((u8 *) (&attr->read_format + 1),
 826			      sizeof(u64));
 827#undef bswap_field_64
 828#undef bswap_field_32
 829#undef bswap_field
 830#undef bswap_safe
 831}
 832
 833static void perf_event__hdr_attr_swap(union perf_event *event,
 834				      bool sample_id_all __maybe_unused)
 835{
 836	size_t size;
 837
 838	perf_event__attr_swap(&event->attr.attr);
 839
 840	size = event->header.size;
 841	size -= perf_record_header_attr_id(event) - (void *)event;
 842	mem_bswap_64(perf_record_header_attr_id(event), size);
 843}
 844
 845static void perf_event__event_update_swap(union perf_event *event,
 846					  bool sample_id_all __maybe_unused)
 847{
 848	event->event_update.type = bswap_64(event->event_update.type);
 849	event->event_update.id   = bswap_64(event->event_update.id);
 850}
 851
 852static void perf_event__event_type_swap(union perf_event *event,
 853					bool sample_id_all __maybe_unused)
 854{
 855	event->event_type.event_type.event_id =
 856		bswap_64(event->event_type.event_type.event_id);
 857}
 858
 859static void perf_event__tracing_data_swap(union perf_event *event,
 860					  bool sample_id_all __maybe_unused)
 861{
 862	event->tracing_data.size = bswap_32(event->tracing_data.size);
 863}
 864
 865static void perf_event__auxtrace_info_swap(union perf_event *event,
 866					   bool sample_id_all __maybe_unused)
 867{
 868	size_t size;
 869
 870	event->auxtrace_info.type = bswap_32(event->auxtrace_info.type);
 871
 872	size = event->header.size;
 873	size -= (void *)&event->auxtrace_info.priv - (void *)event;
 874	mem_bswap_64(event->auxtrace_info.priv, size);
 875}
 876
 877static void perf_event__auxtrace_swap(union perf_event *event,
 878				      bool sample_id_all __maybe_unused)
 879{
 880	event->auxtrace.size      = bswap_64(event->auxtrace.size);
 881	event->auxtrace.offset    = bswap_64(event->auxtrace.offset);
 882	event->auxtrace.reference = bswap_64(event->auxtrace.reference);
 883	event->auxtrace.idx       = bswap_32(event->auxtrace.idx);
 884	event->auxtrace.tid       = bswap_32(event->auxtrace.tid);
 885	event->auxtrace.cpu       = bswap_32(event->auxtrace.cpu);
 886}
 887
 888static void perf_event__auxtrace_error_swap(union perf_event *event,
 889					    bool sample_id_all __maybe_unused)
 890{
 891	event->auxtrace_error.type = bswap_32(event->auxtrace_error.type);
 892	event->auxtrace_error.code = bswap_32(event->auxtrace_error.code);
 893	event->auxtrace_error.cpu  = bswap_32(event->auxtrace_error.cpu);
 894	event->auxtrace_error.pid  = bswap_32(event->auxtrace_error.pid);
 895	event->auxtrace_error.tid  = bswap_32(event->auxtrace_error.tid);
 896	event->auxtrace_error.fmt  = bswap_32(event->auxtrace_error.fmt);
 897	event->auxtrace_error.ip   = bswap_64(event->auxtrace_error.ip);
 898	if (event->auxtrace_error.fmt)
 899		event->auxtrace_error.time = bswap_64(event->auxtrace_error.time);
 900	if (event->auxtrace_error.fmt >= 2) {
 901		event->auxtrace_error.machine_pid = bswap_32(event->auxtrace_error.machine_pid);
 902		event->auxtrace_error.vcpu = bswap_32(event->auxtrace_error.vcpu);
 903	}
 904}
 905
 906static void perf_event__thread_map_swap(union perf_event *event,
 907					bool sample_id_all __maybe_unused)
 908{
 909	unsigned i;
 910
 911	event->thread_map.nr = bswap_64(event->thread_map.nr);
 912
 913	for (i = 0; i < event->thread_map.nr; i++)
 914		event->thread_map.entries[i].pid = bswap_64(event->thread_map.entries[i].pid);
 915}
 916
 917static void perf_event__cpu_map_swap(union perf_event *event,
 918				     bool sample_id_all __maybe_unused)
 919{
 920	struct perf_record_cpu_map_data *data = &event->cpu_map.data;
 921
 922	data->type = bswap_16(data->type);
 923
 924	switch (data->type) {
 925	case PERF_CPU_MAP__CPUS:
 926		data->cpus_data.nr = bswap_16(data->cpus_data.nr);
 927
 928		for (unsigned i = 0; i < data->cpus_data.nr; i++)
 929			data->cpus_data.cpu[i] = bswap_16(data->cpus_data.cpu[i]);
 930		break;
 931	case PERF_CPU_MAP__MASK:
 932		data->mask32_data.long_size = bswap_16(data->mask32_data.long_size);
 933
 934		switch (data->mask32_data.long_size) {
 935		case 4:
 936			data->mask32_data.nr = bswap_16(data->mask32_data.nr);
 937			for (unsigned i = 0; i < data->mask32_data.nr; i++)
 938				data->mask32_data.mask[i] = bswap_32(data->mask32_data.mask[i]);
 939			break;
 940		case 8:
 941			data->mask64_data.nr = bswap_16(data->mask64_data.nr);
 942			for (unsigned i = 0; i < data->mask64_data.nr; i++)
 943				data->mask64_data.mask[i] = bswap_64(data->mask64_data.mask[i]);
 944			break;
 945		default:
 946			pr_err("cpu_map swap: unsupported long size\n");
 947		}
 948		break;
 949	case PERF_CPU_MAP__RANGE_CPUS:
 950		data->range_cpu_data.start_cpu = bswap_16(data->range_cpu_data.start_cpu);
 951		data->range_cpu_data.end_cpu = bswap_16(data->range_cpu_data.end_cpu);
 952		break;
 953	default:
 954		break;
 955	}
 956}
 957
 958static void perf_event__stat_config_swap(union perf_event *event,
 959					 bool sample_id_all __maybe_unused)
 960{
 961	u64 size;
 962
 963	size  = bswap_64(event->stat_config.nr) * sizeof(event->stat_config.data[0]);
 964	size += 1; /* nr item itself */
 965	mem_bswap_64(&event->stat_config.nr, size);
 966}
 967
 968static void perf_event__stat_swap(union perf_event *event,
 969				  bool sample_id_all __maybe_unused)
 970{
 971	event->stat.id     = bswap_64(event->stat.id);
 972	event->stat.thread = bswap_32(event->stat.thread);
 973	event->stat.cpu    = bswap_32(event->stat.cpu);
 974	event->stat.val    = bswap_64(event->stat.val);
 975	event->stat.ena    = bswap_64(event->stat.ena);
 976	event->stat.run    = bswap_64(event->stat.run);
 977}
 978
 979static void perf_event__stat_round_swap(union perf_event *event,
 980					bool sample_id_all __maybe_unused)
 981{
 982	event->stat_round.type = bswap_64(event->stat_round.type);
 983	event->stat_round.time = bswap_64(event->stat_round.time);
 984}
 985
 986static void perf_event__time_conv_swap(union perf_event *event,
 987				       bool sample_id_all __maybe_unused)
 988{
 989	event->time_conv.time_shift = bswap_64(event->time_conv.time_shift);
 990	event->time_conv.time_mult  = bswap_64(event->time_conv.time_mult);
 991	event->time_conv.time_zero  = bswap_64(event->time_conv.time_zero);
 992
 993	if (event_contains(event->time_conv, time_cycles)) {
 994		event->time_conv.time_cycles = bswap_64(event->time_conv.time_cycles);
 995		event->time_conv.time_mask = bswap_64(event->time_conv.time_mask);
 996	}
 997}
 998
 999typedef void (*perf_event__swap_op)(union perf_event *event,
1000				    bool sample_id_all);
1001
1002static perf_event__swap_op perf_event__swap_ops[] = {
1003	[PERF_RECORD_MMAP]		  = perf_event__mmap_swap,
1004	[PERF_RECORD_MMAP2]		  = perf_event__mmap2_swap,
1005	[PERF_RECORD_COMM]		  = perf_event__comm_swap,
1006	[PERF_RECORD_FORK]		  = perf_event__task_swap,
1007	[PERF_RECORD_EXIT]		  = perf_event__task_swap,
1008	[PERF_RECORD_LOST]		  = perf_event__all64_swap,
1009	[PERF_RECORD_READ]		  = perf_event__read_swap,
1010	[PERF_RECORD_THROTTLE]		  = perf_event__throttle_swap,
1011	[PERF_RECORD_UNTHROTTLE]	  = perf_event__throttle_swap,
1012	[PERF_RECORD_SAMPLE]		  = perf_event__all64_swap,
1013	[PERF_RECORD_AUX]		  = perf_event__aux_swap,
1014	[PERF_RECORD_ITRACE_START]	  = perf_event__itrace_start_swap,
1015	[PERF_RECORD_LOST_SAMPLES]	  = perf_event__all64_swap,
1016	[PERF_RECORD_SWITCH]		  = perf_event__switch_swap,
1017	[PERF_RECORD_SWITCH_CPU_WIDE]	  = perf_event__switch_swap,
1018	[PERF_RECORD_NAMESPACES]	  = perf_event__namespaces_swap,
1019	[PERF_RECORD_CGROUP]		  = perf_event__cgroup_swap,
1020	[PERF_RECORD_TEXT_POKE]		  = perf_event__text_poke_swap,
1021	[PERF_RECORD_AUX_OUTPUT_HW_ID]	  = perf_event__all64_swap,
1022	[PERF_RECORD_HEADER_ATTR]	  = perf_event__hdr_attr_swap,
1023	[PERF_RECORD_HEADER_EVENT_TYPE]	  = perf_event__event_type_swap,
1024	[PERF_RECORD_HEADER_TRACING_DATA] = perf_event__tracing_data_swap,
1025	[PERF_RECORD_HEADER_BUILD_ID]	  = NULL,
1026	[PERF_RECORD_ID_INDEX]		  = perf_event__all64_swap,
1027	[PERF_RECORD_AUXTRACE_INFO]	  = perf_event__auxtrace_info_swap,
1028	[PERF_RECORD_AUXTRACE]		  = perf_event__auxtrace_swap,
1029	[PERF_RECORD_AUXTRACE_ERROR]	  = perf_event__auxtrace_error_swap,
1030	[PERF_RECORD_THREAD_MAP]	  = perf_event__thread_map_swap,
1031	[PERF_RECORD_CPU_MAP]		  = perf_event__cpu_map_swap,
1032	[PERF_RECORD_STAT_CONFIG]	  = perf_event__stat_config_swap,
1033	[PERF_RECORD_STAT]		  = perf_event__stat_swap,
1034	[PERF_RECORD_STAT_ROUND]	  = perf_event__stat_round_swap,
1035	[PERF_RECORD_EVENT_UPDATE]	  = perf_event__event_update_swap,
1036	[PERF_RECORD_TIME_CONV]		  = perf_event__time_conv_swap,
1037	[PERF_RECORD_HEADER_MAX]	  = NULL,
1038};
1039
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1040/*
1041 * When perf record finishes a pass on every buffers, it records this pseudo
1042 * event.
1043 * We record the max timestamp t found in the pass n.
1044 * Assuming these timestamps are monotonic across cpus, we know that if
1045 * a buffer still has events with timestamps below t, they will be all
1046 * available and then read in the pass n + 1.
1047 * Hence when we start to read the pass n + 2, we can safely flush every
1048 * events with timestamps below t.
1049 *
1050 *    ============ PASS n =================
1051 *       CPU 0         |   CPU 1
1052 *                     |
1053 *    cnt1 timestamps  |   cnt2 timestamps
1054 *          1          |         2
1055 *          2          |         3
1056 *          -          |         4  <--- max recorded
1057 *
1058 *    ============ PASS n + 1 ==============
1059 *       CPU 0         |   CPU 1
1060 *                     |
1061 *    cnt1 timestamps  |   cnt2 timestamps
1062 *          3          |         5
1063 *          4          |         6
1064 *          5          |         7 <---- max recorded
1065 *
1066 *      Flush every events below timestamp 4
1067 *
1068 *    ============ PASS n + 2 ==============
1069 *       CPU 0         |   CPU 1
1070 *                     |
1071 *    cnt1 timestamps  |   cnt2 timestamps
1072 *          6          |         8
1073 *          7          |         9
1074 *          -          |         10
1075 *
1076 *      Flush every events below timestamp 7
1077 *      etc...
1078 */
1079int perf_event__process_finished_round(struct perf_tool *tool __maybe_unused,
1080				       union perf_event *event __maybe_unused,
1081				       struct ordered_events *oe)
1082{
1083	if (dump_trace)
1084		fprintf(stdout, "\n");
1085	return ordered_events__flush(oe, OE_FLUSH__ROUND);
1086}
1087
1088int perf_session__queue_event(struct perf_session *s, union perf_event *event,
1089			      u64 timestamp, u64 file_offset, const char *file_path)
1090{
1091	return ordered_events__queue(&s->ordered_events, event, timestamp, file_offset, file_path);
1092}
1093
1094static void callchain__lbr_callstack_printf(struct perf_sample *sample)
 
1095{
1096	struct ip_callchain *callchain = sample->callchain;
1097	struct branch_stack *lbr_stack = sample->branch_stack;
1098	struct branch_entry *entries = perf_sample__branch_entries(sample);
1099	u64 kernel_callchain_nr = callchain->nr;
1100	unsigned int i;
1101
1102	for (i = 0; i < kernel_callchain_nr; i++) {
1103		if (callchain->ips[i] == PERF_CONTEXT_USER)
1104			break;
1105	}
1106
1107	if ((i != kernel_callchain_nr) && lbr_stack->nr) {
1108		u64 total_nr;
1109		/*
1110		 * LBR callstack can only get user call chain,
1111		 * i is kernel call chain number,
1112		 * 1 is PERF_CONTEXT_USER.
1113		 *
1114		 * The user call chain is stored in LBR registers.
1115		 * LBR are pair registers. The caller is stored
1116		 * in "from" register, while the callee is stored
1117		 * in "to" register.
1118		 * For example, there is a call stack
1119		 * "A"->"B"->"C"->"D".
1120		 * The LBR registers will be recorded like
1121		 * "C"->"D", "B"->"C", "A"->"B".
1122		 * So only the first "to" register and all "from"
1123		 * registers are needed to construct the whole stack.
1124		 */
1125		total_nr = i + 1 + lbr_stack->nr + 1;
1126		kernel_callchain_nr = i + 1;
1127
1128		printf("... LBR call chain: nr:%" PRIu64 "\n", total_nr);
1129
1130		for (i = 0; i < kernel_callchain_nr; i++)
1131			printf("..... %2d: %016" PRIx64 "\n",
1132			       i, callchain->ips[i]);
1133
1134		printf("..... %2d: %016" PRIx64 "\n",
1135		       (int)(kernel_callchain_nr), entries[0].to);
1136		for (i = 0; i < lbr_stack->nr; i++)
1137			printf("..... %2d: %016" PRIx64 "\n",
1138			       (int)(i + kernel_callchain_nr + 1), entries[i].from);
1139	}
1140}
1141
1142static void callchain__printf(struct evsel *evsel,
1143			      struct perf_sample *sample)
1144{
1145	unsigned int i;
1146	struct ip_callchain *callchain = sample->callchain;
1147
1148	if (evsel__has_branch_callstack(evsel))
1149		callchain__lbr_callstack_printf(sample);
1150
1151	printf("... FP chain: nr:%" PRIu64 "\n", callchain->nr);
1152
1153	for (i = 0; i < callchain->nr; i++)
1154		printf("..... %2d: %016" PRIx64 "\n",
1155		       i, callchain->ips[i]);
1156}
1157
1158static void branch_stack__printf(struct perf_sample *sample,
1159				 struct evsel *evsel)
1160{
1161	struct branch_entry *entries = perf_sample__branch_entries(sample);
1162	bool callstack = evsel__has_branch_callstack(evsel);
1163	u64 *branch_stack_cntr = sample->branch_stack_cntr;
1164	struct perf_env *env = evsel__env(evsel);
1165	uint64_t i;
1166
1167	if (!callstack) {
1168		printf("%s: nr:%" PRIu64 "\n", "... branch stack", sample->branch_stack->nr);
1169	} else {
1170		/* the reason of adding 1 to nr is because after expanding
1171		 * branch stack it generates nr + 1 callstack records. e.g.,
1172		 *         B()->C()
1173		 *         A()->B()
1174		 * the final callstack should be:
1175		 *         C()
1176		 *         B()
1177		 *         A()
1178		 */
1179		printf("%s: nr:%" PRIu64 "\n", "... branch callstack", sample->branch_stack->nr+1);
1180	}
1181
1182	for (i = 0; i < sample->branch_stack->nr; i++) {
1183		struct branch_entry *e = &entries[i];
1184
1185		if (!callstack) {
1186			printf("..... %2"PRIu64": %016" PRIx64 " -> %016" PRIx64 " %hu cycles %s%s%s%s %x %s %s\n",
1187				i, e->from, e->to,
1188				(unsigned short)e->flags.cycles,
1189				e->flags.mispred ? "M" : " ",
1190				e->flags.predicted ? "P" : " ",
1191				e->flags.abort ? "A" : " ",
1192				e->flags.in_tx ? "T" : " ",
1193				(unsigned)e->flags.reserved,
1194				get_branch_type(e),
1195				e->flags.spec ? branch_spec_desc(e->flags.spec) : "");
1196		} else {
1197			if (i == 0) {
1198				printf("..... %2"PRIu64": %016" PRIx64 "\n"
1199				       "..... %2"PRIu64": %016" PRIx64 "\n",
1200						i, e->to, i+1, e->from);
1201			} else {
1202				printf("..... %2"PRIu64": %016" PRIx64 "\n", i+1, e->from);
1203			}
 
1204		}
1205	}
1206
1207	if (branch_stack_cntr) {
1208		printf("... branch stack counters: nr:%" PRIu64 " (counter width: %u max counter nr:%u)\n",
1209			sample->branch_stack->nr, env->br_cntr_width, env->br_cntr_nr);
1210		for (i = 0; i < sample->branch_stack->nr; i++)
1211			printf("..... %2"PRIu64": %016" PRIx64 "\n", i, branch_stack_cntr[i]);
1212	}
1213}
1214
1215static void regs_dump__printf(u64 mask, u64 *regs, const char *arch)
 
 
 
1216{
1217	unsigned rid, i = 0;
 
 
 
1218
1219	for_each_set_bit(rid, (unsigned long *) &mask, sizeof(mask) * 8) {
1220		u64 val = regs[i++];
1221
1222		printf(".... %-5s 0x%016" PRIx64 "\n",
1223		       perf_reg_name(rid, arch), val);
 
1224	}
1225}
1226
1227static const char *regs_abi[] = {
1228	[PERF_SAMPLE_REGS_ABI_NONE] = "none",
1229	[PERF_SAMPLE_REGS_ABI_32] = "32-bit",
1230	[PERF_SAMPLE_REGS_ABI_64] = "64-bit",
1231};
1232
1233static inline const char *regs_dump_abi(struct regs_dump *d)
1234{
1235	if (d->abi > PERF_SAMPLE_REGS_ABI_64)
1236		return "unknown";
 
 
 
 
 
 
 
 
 
 
 
1237
1238	return regs_abi[d->abi];
1239}
 
1240
1241static void regs__printf(const char *type, struct regs_dump *regs, const char *arch)
1242{
1243	u64 mask = regs->mask;
1244
1245	printf("... %s regs: mask 0x%" PRIx64 " ABI %s\n",
1246	       type,
1247	       mask,
1248	       regs_dump_abi(regs));
1249
1250	regs_dump__printf(mask, regs->regs, arch);
1251}
1252
1253static void regs_user__printf(struct perf_sample *sample, const char *arch)
1254{
1255	struct regs_dump *user_regs = &sample->user_regs;
1256
1257	if (user_regs->regs)
1258		regs__printf("user", user_regs, arch);
 
 
 
1259}
1260
1261static void regs_intr__printf(struct perf_sample *sample, const char *arch)
1262{
1263	struct regs_dump *intr_regs = &sample->intr_regs;
1264
1265	if (intr_regs->regs)
1266		regs__printf("intr", intr_regs, arch);
1267}
1268
1269static void stack_user__printf(struct stack_dump *dump)
1270{
1271	printf("... ustack: size %" PRIu64 ", offset 0x%x\n",
1272	       dump->size, dump->offset);
1273}
1274
1275static void evlist__print_tstamp(struct evlist *evlist, union perf_event *event, struct perf_sample *sample)
 
 
1276{
1277	u64 sample_type = __evlist__combined_sample_type(evlist);
1278
1279	if (event->header.type != PERF_RECORD_SAMPLE &&
1280	    !evlist__sample_id_all(evlist)) {
1281		fputs("-1 -1 ", stdout);
1282		return;
1283	}
1284
1285	if ((sample_type & PERF_SAMPLE_CPU))
1286		printf("%u ", sample->cpu);
1287
1288	if (sample_type & PERF_SAMPLE_TIME)
1289		printf("%" PRIu64 " ", sample->time);
1290}
1291
1292static void sample_read__printf(struct perf_sample *sample, u64 read_format)
1293{
1294	printf("... sample_read:\n");
1295
1296	if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1297		printf("...... time enabled %016" PRIx64 "\n",
1298		       sample->read.time_enabled);
1299
1300	if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1301		printf("...... time running %016" PRIx64 "\n",
1302		       sample->read.time_running);
1303
1304	if (read_format & PERF_FORMAT_GROUP) {
1305		struct sample_read_value *value = sample->read.group.values;
1306
1307		printf(".... group nr %" PRIu64 "\n", sample->read.group.nr);
1308
1309		sample_read_group__for_each(value, sample->read.group.nr, read_format) {
1310			printf("..... id %016" PRIx64
1311			       ", value %016" PRIx64,
1312			       value->id, value->value);
1313			if (read_format & PERF_FORMAT_LOST)
1314				printf(", lost %" PRIu64, value->lost);
1315			printf("\n");
1316		}
1317	} else {
1318		printf("..... id %016" PRIx64 ", value %016" PRIx64,
1319			sample->read.one.id, sample->read.one.value);
1320		if (read_format & PERF_FORMAT_LOST)
1321			printf(", lost %" PRIu64, sample->read.one.lost);
1322		printf("\n");
1323	}
1324}
1325
1326static void dump_event(struct evlist *evlist, union perf_event *event,
1327		       u64 file_offset, struct perf_sample *sample,
1328		       const char *file_path)
1329{
1330	if (!dump_trace)
1331		return;
1332
1333	printf("\n%#" PRIx64 "@%s [%#x]: event: %d\n",
1334	       file_offset, file_path, event->header.size, event->header.type);
1335
1336	trace_event(event);
1337	if (event->header.type == PERF_RECORD_SAMPLE && evlist->trace_event_sample_raw)
1338		evlist->trace_event_sample_raw(evlist, event, sample);
1339
1340	if (sample)
1341		evlist__print_tstamp(evlist, event, sample);
1342
1343	printf("%#" PRIx64 " [%#x]: PERF_RECORD_%s", file_offset,
1344	       event->header.size, perf_event__name(event->header.type));
1345}
1346
1347char *get_page_size_name(u64 size, char *str)
 
1348{
1349	if (!size || !unit_number__scnprintf(str, PAGE_SIZE_NAME_LEN, size))
1350		snprintf(str, PAGE_SIZE_NAME_LEN, "%s", "N/A");
1351
1352	return str;
1353}
1354
1355static void dump_sample(struct evsel *evsel, union perf_event *event,
1356			struct perf_sample *sample, const char *arch)
1357{
1358	u64 sample_type;
1359	char str[PAGE_SIZE_NAME_LEN];
1360
1361	if (!dump_trace)
1362		return;
1363
1364	printf("(IP, 0x%x): %d/%d: %#" PRIx64 " period: %" PRIu64 " addr: %#" PRIx64 "\n",
1365	       event->header.misc, sample->pid, sample->tid, sample->ip,
1366	       sample->period, sample->addr);
1367
1368	sample_type = evsel->core.attr.sample_type;
1369
1370	if (evsel__has_callchain(evsel))
1371		callchain__printf(evsel, sample);
1372
1373	if (evsel__has_br_stack(evsel))
1374		branch_stack__printf(sample, evsel);
1375
1376	if (sample_type & PERF_SAMPLE_REGS_USER)
1377		regs_user__printf(sample, arch);
1378
1379	if (sample_type & PERF_SAMPLE_REGS_INTR)
1380		regs_intr__printf(sample, arch);
1381
1382	if (sample_type & PERF_SAMPLE_STACK_USER)
1383		stack_user__printf(&sample->user_stack);
1384
1385	if (sample_type & PERF_SAMPLE_WEIGHT_TYPE) {
1386		printf("... weight: %" PRIu64 "", sample->weight);
1387			if (sample_type & PERF_SAMPLE_WEIGHT_STRUCT) {
1388				printf(",0x%"PRIx16"", sample->ins_lat);
1389				printf(",0x%"PRIx16"", sample->p_stage_cyc);
1390			}
1391		printf("\n");
1392	}
1393
1394	if (sample_type & PERF_SAMPLE_DATA_SRC)
1395		printf(" . data_src: 0x%"PRIx64"\n", sample->data_src);
1396
1397	if (sample_type & PERF_SAMPLE_PHYS_ADDR)
1398		printf(" .. phys_addr: 0x%"PRIx64"\n", sample->phys_addr);
1399
1400	if (sample_type & PERF_SAMPLE_DATA_PAGE_SIZE)
1401		printf(" .. data page size: %s\n", get_page_size_name(sample->data_page_size, str));
1402
1403	if (sample_type & PERF_SAMPLE_CODE_PAGE_SIZE)
1404		printf(" .. code page size: %s\n", get_page_size_name(sample->code_page_size, str));
1405
1406	if (sample_type & PERF_SAMPLE_TRANSACTION)
1407		printf("... transaction: %" PRIx64 "\n", sample->transaction);
1408
1409	if (sample_type & PERF_SAMPLE_READ)
1410		sample_read__printf(sample, evsel->core.attr.read_format);
1411}
1412
1413static void dump_read(struct evsel *evsel, union perf_event *event)
 
 
1414{
1415	struct perf_record_read *read_event = &event->read;
1416	u64 read_format;
1417
1418	if (!dump_trace)
1419		return;
1420
1421	printf(": %d %d %s %" PRI_lu64 "\n", event->read.pid, event->read.tid,
1422	       evsel__name(evsel), event->read.value);
1423
1424	if (!evsel)
1425		return;
1426
1427	read_format = evsel->core.attr.read_format;
1428
1429	if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1430		printf("... time enabled : %" PRI_lu64 "\n", read_event->time_enabled);
1431
1432	if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1433		printf("... time running : %" PRI_lu64 "\n", read_event->time_running);
1434
1435	if (read_format & PERF_FORMAT_ID)
1436		printf("... id           : %" PRI_lu64 "\n", read_event->id);
1437
1438	if (read_format & PERF_FORMAT_LOST)
1439		printf("... lost         : %" PRI_lu64 "\n", read_event->lost);
1440}
1441
1442static struct machine *machines__find_for_cpumode(struct machines *machines,
1443					       union perf_event *event,
1444					       struct perf_sample *sample)
1445{
1446	if (perf_guest &&
1447	    ((sample->cpumode == PERF_RECORD_MISC_GUEST_KERNEL) ||
1448	     (sample->cpumode == PERF_RECORD_MISC_GUEST_USER))) {
1449		u32 pid;
1450
1451		if (sample->machine_pid)
1452			pid = sample->machine_pid;
1453		else if (event->header.type == PERF_RECORD_MMAP
1454		    || event->header.type == PERF_RECORD_MMAP2)
1455			pid = event->mmap.pid;
1456		else
1457			pid = sample->pid;
1458
1459		/*
1460		 * Guest code machine is created as needed and does not use
1461		 * DEFAULT_GUEST_KERNEL_ID.
1462		 */
1463		if (symbol_conf.guest_code)
1464			return machines__findnew(machines, pid);
1465
1466		return machines__find_guest(machines, pid);
1467	}
1468
1469	return &machines->host;
1470}
1471
1472static int deliver_sample_value(struct evlist *evlist,
1473				struct perf_tool *tool,
1474				union perf_event *event,
1475				struct perf_sample *sample,
1476				struct sample_read_value *v,
1477				struct machine *machine)
1478{
1479	struct perf_sample_id *sid = evlist__id2sid(evlist, v->id);
1480	struct evsel *evsel;
1481
1482	if (sid) {
1483		sample->id     = v->id;
1484		sample->period = v->value - sid->period;
1485		sid->period    = v->value;
1486	}
1487
1488	if (!sid || sid->evsel == NULL) {
1489		++evlist->stats.nr_unknown_id;
1490		return 0;
1491	}
1492
1493	/*
1494	 * There's no reason to deliver sample
1495	 * for zero period, bail out.
1496	 */
1497	if (!sample->period)
1498		return 0;
1499
1500	evsel = container_of(sid->evsel, struct evsel, core);
1501	return tool->sample(tool, event, sample, evsel, machine);
1502}
1503
1504static int deliver_sample_group(struct evlist *evlist,
1505				struct perf_tool *tool,
1506				union  perf_event *event,
1507				struct perf_sample *sample,
1508				struct machine *machine,
1509				u64 read_format)
1510{
1511	int ret = -EINVAL;
1512	struct sample_read_value *v = sample->read.group.values;
1513
1514	sample_read_group__for_each(v, sample->read.group.nr, read_format) {
1515		ret = deliver_sample_value(evlist, tool, event, sample, v,
1516					   machine);
1517		if (ret)
1518			break;
1519	}
1520
1521	return ret;
1522}
1523
1524static int evlist__deliver_sample(struct evlist *evlist, struct perf_tool *tool,
1525				  union  perf_event *event, struct perf_sample *sample,
1526				  struct evsel *evsel, struct machine *machine)
1527{
1528	/* We know evsel != NULL. */
1529	u64 sample_type = evsel->core.attr.sample_type;
1530	u64 read_format = evsel->core.attr.read_format;
1531
1532	/* Standard sample delivery. */
1533	if (!(sample_type & PERF_SAMPLE_READ))
1534		return tool->sample(tool, event, sample, evsel, machine);
1535
1536	/* For PERF_SAMPLE_READ we have either single or group mode. */
1537	if (read_format & PERF_FORMAT_GROUP)
1538		return deliver_sample_group(evlist, tool, event, sample,
1539					    machine, read_format);
1540	else
1541		return deliver_sample_value(evlist, tool, event, sample,
1542					    &sample->read.one, machine);
1543}
1544
1545static int machines__deliver_event(struct machines *machines,
1546				   struct evlist *evlist,
1547				   union perf_event *event,
1548				   struct perf_sample *sample,
1549				   struct perf_tool *tool, u64 file_offset,
1550				   const char *file_path)
1551{
1552	struct evsel *evsel;
1553	struct machine *machine;
1554
1555	dump_event(evlist, event, file_offset, sample, file_path);
1556
1557	evsel = evlist__id2evsel(evlist, sample->id);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1558
1559	machine = machines__find_for_cpumode(machines, event, sample);
1560
1561	switch (event->header.type) {
1562	case PERF_RECORD_SAMPLE:
 
1563		if (evsel == NULL) {
1564			++evlist->stats.nr_unknown_id;
1565			return 0;
1566		}
1567		if (machine == NULL) {
1568			++evlist->stats.nr_unprocessable_samples;
1569			dump_sample(evsel, event, sample, perf_env__arch(NULL));
1570			return 0;
1571		}
1572		dump_sample(evsel, event, sample, perf_env__arch(machine->env));
1573		return evlist__deliver_sample(evlist, tool, event, sample, evsel, machine);
1574	case PERF_RECORD_MMAP:
1575		return tool->mmap(tool, event, sample, machine);
1576	case PERF_RECORD_MMAP2:
1577		if (event->header.misc & PERF_RECORD_MISC_PROC_MAP_PARSE_TIMEOUT)
1578			++evlist->stats.nr_proc_map_timeout;
1579		return tool->mmap2(tool, event, sample, machine);
1580	case PERF_RECORD_COMM:
1581		return tool->comm(tool, event, sample, machine);
1582	case PERF_RECORD_NAMESPACES:
1583		return tool->namespaces(tool, event, sample, machine);
1584	case PERF_RECORD_CGROUP:
1585		return tool->cgroup(tool, event, sample, machine);
1586	case PERF_RECORD_FORK:
1587		return tool->fork(tool, event, sample, machine);
1588	case PERF_RECORD_EXIT:
1589		return tool->exit(tool, event, sample, machine);
1590	case PERF_RECORD_LOST:
1591		if (tool->lost == perf_event__process_lost)
1592			evlist->stats.total_lost += event->lost.lost;
1593		return tool->lost(tool, event, sample, machine);
1594	case PERF_RECORD_LOST_SAMPLES:
1595		if (tool->lost_samples == perf_event__process_lost_samples &&
1596		    !(event->header.misc & PERF_RECORD_MISC_LOST_SAMPLES_BPF))
1597			evlist->stats.total_lost_samples += event->lost_samples.lost;
1598		return tool->lost_samples(tool, event, sample, machine);
1599	case PERF_RECORD_READ:
1600		dump_read(evsel, event);
1601		return tool->read(tool, event, sample, evsel, machine);
1602	case PERF_RECORD_THROTTLE:
1603		return tool->throttle(tool, event, sample, machine);
1604	case PERF_RECORD_UNTHROTTLE:
1605		return tool->unthrottle(tool, event, sample, machine);
1606	case PERF_RECORD_AUX:
1607		if (tool->aux == perf_event__process_aux) {
1608			if (event->aux.flags & PERF_AUX_FLAG_TRUNCATED)
1609				evlist->stats.total_aux_lost += 1;
1610			if (event->aux.flags & PERF_AUX_FLAG_PARTIAL)
1611				evlist->stats.total_aux_partial += 1;
1612			if (event->aux.flags & PERF_AUX_FLAG_COLLISION)
1613				evlist->stats.total_aux_collision += 1;
1614		}
1615		return tool->aux(tool, event, sample, machine);
1616	case PERF_RECORD_ITRACE_START:
1617		return tool->itrace_start(tool, event, sample, machine);
1618	case PERF_RECORD_SWITCH:
1619	case PERF_RECORD_SWITCH_CPU_WIDE:
1620		return tool->context_switch(tool, event, sample, machine);
1621	case PERF_RECORD_KSYMBOL:
1622		return tool->ksymbol(tool, event, sample, machine);
1623	case PERF_RECORD_BPF_EVENT:
1624		return tool->bpf(tool, event, sample, machine);
1625	case PERF_RECORD_TEXT_POKE:
1626		return tool->text_poke(tool, event, sample, machine);
1627	case PERF_RECORD_AUX_OUTPUT_HW_ID:
1628		return tool->aux_output_hw_id(tool, event, sample, machine);
1629	default:
1630		++evlist->stats.nr_unknown_events;
1631		return -1;
1632	}
1633}
1634
1635static int perf_session__deliver_event(struct perf_session *session,
1636				       union perf_event *event,
1637				       struct perf_tool *tool,
1638				       u64 file_offset,
1639				       const char *file_path)
1640{
1641	struct perf_sample sample;
1642	int ret = evlist__parse_sample(session->evlist, event, &sample);
1643
1644	if (ret) {
1645		pr_err("Can't parse sample, err = %d\n", ret);
1646		return ret;
1647	}
1648
1649	ret = auxtrace__process_event(session, event, &sample, tool);
1650	if (ret < 0)
1651		return ret;
1652	if (ret > 0)
1653		return 0;
1654
1655	ret = machines__deliver_event(&session->machines, session->evlist,
1656				      event, &sample, tool, file_offset, file_path);
1657
1658	if (dump_trace && sample.aux_sample.size)
1659		auxtrace__dump_auxtrace_sample(session, &sample);
1660
1661	return ret;
1662}
1663
1664static s64 perf_session__process_user_event(struct perf_session *session,
1665					    union perf_event *event,
1666					    u64 file_offset,
1667					    const char *file_path)
1668{
1669	struct ordered_events *oe = &session->ordered_events;
1670	struct perf_tool *tool = session->tool;
1671	struct perf_sample sample = { .time = 0, };
1672	int fd = perf_data__fd(session->data);
1673	int err;
1674
1675	if (event->header.type != PERF_RECORD_COMPRESSED ||
1676	    tool->compressed == perf_session__process_compressed_event_stub)
1677		dump_event(session->evlist, event, file_offset, &sample, file_path);
1678
1679	/* These events are processed right away */
1680	switch (event->header.type) {
1681	case PERF_RECORD_HEADER_ATTR:
1682		err = tool->attr(tool, event, &session->evlist);
1683		if (err == 0) {
1684			perf_session__set_id_hdr_size(session);
1685			perf_session__set_comm_exec(session);
1686		}
1687		return err;
1688	case PERF_RECORD_EVENT_UPDATE:
1689		return tool->event_update(tool, event, &session->evlist);
1690	case PERF_RECORD_HEADER_EVENT_TYPE:
1691		/*
1692		 * Deprecated, but we need to handle it for sake
1693		 * of old data files create in pipe mode.
1694		 */
1695		return 0;
1696	case PERF_RECORD_HEADER_TRACING_DATA:
1697		/*
1698		 * Setup for reading amidst mmap, but only when we
1699		 * are in 'file' mode. The 'pipe' fd is in proper
1700		 * place already.
1701		 */
1702		if (!perf_data__is_pipe(session->data))
1703			lseek(fd, file_offset, SEEK_SET);
1704		return tool->tracing_data(session, event);
1705	case PERF_RECORD_HEADER_BUILD_ID:
1706		return tool->build_id(session, event);
1707	case PERF_RECORD_FINISHED_ROUND:
1708		return tool->finished_round(tool, event, oe);
1709	case PERF_RECORD_ID_INDEX:
1710		return tool->id_index(session, event);
1711	case PERF_RECORD_AUXTRACE_INFO:
1712		return tool->auxtrace_info(session, event);
1713	case PERF_RECORD_AUXTRACE:
1714		/*
1715		 * Setup for reading amidst mmap, but only when we
1716		 * are in 'file' mode.  The 'pipe' fd is in proper
1717		 * place already.
1718		 */
1719		if (!perf_data__is_pipe(session->data))
1720			lseek(fd, file_offset + event->header.size, SEEK_SET);
1721		return tool->auxtrace(session, event);
1722	case PERF_RECORD_AUXTRACE_ERROR:
1723		perf_session__auxtrace_error_inc(session, event);
1724		return tool->auxtrace_error(session, event);
1725	case PERF_RECORD_THREAD_MAP:
1726		return tool->thread_map(session, event);
1727	case PERF_RECORD_CPU_MAP:
1728		return tool->cpu_map(session, event);
1729	case PERF_RECORD_STAT_CONFIG:
1730		return tool->stat_config(session, event);
1731	case PERF_RECORD_STAT:
1732		return tool->stat(session, event);
1733	case PERF_RECORD_STAT_ROUND:
1734		return tool->stat_round(session, event);
1735	case PERF_RECORD_TIME_CONV:
1736		session->time_conv = event->time_conv;
1737		return tool->time_conv(session, event);
1738	case PERF_RECORD_HEADER_FEATURE:
1739		return tool->feature(session, event);
1740	case PERF_RECORD_COMPRESSED:
1741		err = tool->compressed(session, event, file_offset, file_path);
1742		if (err)
1743			dump_event(session->evlist, event, file_offset, &sample, file_path);
1744		return err;
1745	case PERF_RECORD_FINISHED_INIT:
1746		return tool->finished_init(session, event);
1747	default:
1748		return -EINVAL;
1749	}
1750}
1751
1752int perf_session__deliver_synth_event(struct perf_session *session,
1753				      union perf_event *event,
1754				      struct perf_sample *sample)
1755{
1756	struct evlist *evlist = session->evlist;
1757	struct perf_tool *tool = session->tool;
1758
1759	events_stats__inc(&evlist->stats, event->header.type);
1760
1761	if (event->header.type >= PERF_RECORD_USER_TYPE_START)
1762		return perf_session__process_user_event(session, event, 0, NULL);
1763
1764	return machines__deliver_event(&session->machines, evlist, event, sample, tool, 0, NULL);
1765}
1766
1767static void event_swap(union perf_event *event, bool sample_id_all)
1768{
1769	perf_event__swap_op swap;
1770
1771	swap = perf_event__swap_ops[event->header.type];
1772	if (swap)
1773		swap(event, sample_id_all);
1774}
1775
1776int perf_session__peek_event(struct perf_session *session, off_t file_offset,
1777			     void *buf, size_t buf_sz,
1778			     union perf_event **event_ptr,
1779			     struct perf_sample *sample)
1780{
1781	union perf_event *event;
1782	size_t hdr_sz, rest;
1783	int fd;
1784
1785	if (session->one_mmap && !session->header.needs_swap) {
1786		event = file_offset - session->one_mmap_offset +
1787			session->one_mmap_addr;
1788		goto out_parse_sample;
1789	}
1790
1791	if (perf_data__is_pipe(session->data))
1792		return -1;
1793
1794	fd = perf_data__fd(session->data);
1795	hdr_sz = sizeof(struct perf_event_header);
1796
1797	if (buf_sz < hdr_sz)
1798		return -1;
1799
1800	if (lseek(fd, file_offset, SEEK_SET) == (off_t)-1 ||
1801	    readn(fd, buf, hdr_sz) != (ssize_t)hdr_sz)
1802		return -1;
1803
1804	event = (union perf_event *)buf;
1805
1806	if (session->header.needs_swap)
1807		perf_event_header__bswap(&event->header);
1808
1809	if (event->header.size < hdr_sz || event->header.size > buf_sz)
1810		return -1;
1811
1812	buf += hdr_sz;
1813	rest = event->header.size - hdr_sz;
1814
1815	if (readn(fd, buf, rest) != (ssize_t)rest)
1816		return -1;
1817
1818	if (session->header.needs_swap)
1819		event_swap(event, evlist__sample_id_all(session->evlist));
1820
1821out_parse_sample:
1822
1823	if (sample && event->header.type < PERF_RECORD_USER_TYPE_START &&
1824	    evlist__parse_sample(session->evlist, event, sample))
1825		return -1;
1826
1827	*event_ptr = event;
1828
1829	return 0;
1830}
1831
1832int perf_session__peek_events(struct perf_session *session, u64 offset,
1833			      u64 size, peek_events_cb_t cb, void *data)
1834{
1835	u64 max_offset = offset + size;
1836	char buf[PERF_SAMPLE_MAX_SIZE];
1837	union perf_event *event;
1838	int err;
1839
1840	do {
1841		err = perf_session__peek_event(session, offset, buf,
1842					       PERF_SAMPLE_MAX_SIZE, &event,
1843					       NULL);
1844		if (err)
1845			return err;
1846
1847		err = cb(session, event, offset, data);
1848		if (err)
1849			return err;
1850
1851		offset += event->header.size;
1852		if (event->header.type == PERF_RECORD_AUXTRACE)
1853			offset += event->auxtrace.size;
1854
1855	} while (offset < max_offset);
1856
1857	return err;
1858}
1859
1860static s64 perf_session__process_event(struct perf_session *session,
1861				       union perf_event *event, u64 file_offset,
1862				       const char *file_path)
1863{
1864	struct evlist *evlist = session->evlist;
1865	struct perf_tool *tool = session->tool;
1866	int ret;
1867
1868	if (session->header.needs_swap)
1869		event_swap(event, evlist__sample_id_all(evlist));
1870
1871	if (event->header.type >= PERF_RECORD_HEADER_MAX)
1872		return -EINVAL;
1873
1874	events_stats__inc(&evlist->stats, event->header.type);
1875
1876	if (event->header.type >= PERF_RECORD_USER_TYPE_START)
1877		return perf_session__process_user_event(session, event, file_offset, file_path);
1878
1879	if (tool->ordered_events) {
1880		u64 timestamp = -1ULL;
 
 
 
 
1881
1882		ret = evlist__parse_sample_timestamp(evlist, event, &timestamp);
1883		if (ret && ret != -1)
1884			return ret;
1885
1886		ret = perf_session__queue_event(session, event, timestamp, file_offset, file_path);
 
 
1887		if (ret != -ETIME)
1888			return ret;
1889	}
1890
1891	return perf_session__deliver_event(session, event, tool, file_offset, file_path);
 
1892}
1893
1894void perf_event_header__bswap(struct perf_event_header *hdr)
1895{
1896	hdr->type = bswap_32(hdr->type);
1897	hdr->misc = bswap_16(hdr->misc);
1898	hdr->size = bswap_16(hdr->size);
1899}
1900
1901struct thread *perf_session__findnew(struct perf_session *session, pid_t pid)
1902{
1903	return machine__findnew_thread(&session->machines.host, -1, pid);
1904}
1905
1906int perf_session__register_idle_thread(struct perf_session *session)
1907{
1908	struct thread *thread = machine__idle_thread(&session->machines.host);
1909
1910	/* machine__idle_thread() got the thread, so put it */
1911	thread__put(thread);
1912	return thread ? 0 : -1;
1913}
1914
1915static void
1916perf_session__warn_order(const struct perf_session *session)
1917{
1918	const struct ordered_events *oe = &session->ordered_events;
1919	struct evsel *evsel;
1920	bool should_warn = true;
1921
1922	evlist__for_each_entry(session->evlist, evsel) {
1923		if (evsel->core.attr.write_backward)
1924			should_warn = false;
1925	}
1926
1927	if (!should_warn)
1928		return;
1929	if (oe->nr_unordered_events != 0)
1930		ui__warning("%u out of order events recorded.\n", oe->nr_unordered_events);
1931}
1932
1933static void perf_session__warn_about_errors(const struct perf_session *session)
 
1934{
1935	const struct events_stats *stats = &session->evlist->stats;
1936
1937	if (session->tool->lost == perf_event__process_lost &&
1938	    stats->nr_events[PERF_RECORD_LOST] != 0) {
1939		ui__warning("Processed %d events and lost %d chunks!\n\n"
1940			    "Check IO/CPU overload!\n\n",
1941			    stats->nr_events[0],
1942			    stats->nr_events[PERF_RECORD_LOST]);
1943	}
1944
1945	if (session->tool->lost_samples == perf_event__process_lost_samples) {
1946		double drop_rate;
1947
1948		drop_rate = (double)stats->total_lost_samples /
1949			    (double) (stats->nr_events[PERF_RECORD_SAMPLE] + stats->total_lost_samples);
1950		if (drop_rate > 0.05) {
1951			ui__warning("Processed %" PRIu64 " samples and lost %3.2f%%!\n\n",
1952				    stats->nr_events[PERF_RECORD_SAMPLE] + stats->total_lost_samples,
1953				    drop_rate * 100.0);
1954		}
1955	}
1956
1957	if (session->tool->aux == perf_event__process_aux &&
1958	    stats->total_aux_lost != 0) {
1959		ui__warning("AUX data lost %" PRIu64 " times out of %u!\n\n",
1960			    stats->total_aux_lost,
1961			    stats->nr_events[PERF_RECORD_AUX]);
1962	}
1963
1964	if (session->tool->aux == perf_event__process_aux &&
1965	    stats->total_aux_partial != 0) {
1966		bool vmm_exclusive = false;
1967
1968		(void)sysfs__read_bool("module/kvm_intel/parameters/vmm_exclusive",
1969		                       &vmm_exclusive);
1970
1971		ui__warning("AUX data had gaps in it %" PRIu64 " times out of %u!\n\n"
1972		            "Are you running a KVM guest in the background?%s\n\n",
1973			    stats->total_aux_partial,
1974			    stats->nr_events[PERF_RECORD_AUX],
1975			    vmm_exclusive ?
1976			    "\nReloading kvm_intel module with vmm_exclusive=0\n"
1977			    "will reduce the gaps to only guest's timeslices." :
1978			    "");
1979	}
1980
1981	if (session->tool->aux == perf_event__process_aux &&
1982	    stats->total_aux_collision != 0) {
1983		ui__warning("AUX data detected collision  %" PRIu64 " times out of %u!\n\n",
1984			    stats->total_aux_collision,
1985			    stats->nr_events[PERF_RECORD_AUX]);
1986	}
1987
1988	if (stats->nr_unknown_events != 0) {
1989		ui__warning("Found %u unknown events!\n\n"
1990			    "Is this an older tool processing a perf.data "
1991			    "file generated by a more recent tool?\n\n"
1992			    "If that is not the case, consider "
1993			    "reporting to linux-kernel@vger.kernel.org.\n\n",
1994			    stats->nr_unknown_events);
1995	}
1996
1997	if (stats->nr_unknown_id != 0) {
1998		ui__warning("%u samples with id not present in the header\n",
1999			    stats->nr_unknown_id);
2000	}
2001
2002	if (stats->nr_invalid_chains != 0) {
2003		ui__warning("Found invalid callchains!\n\n"
2004			    "%u out of %u events were discarded for this reason.\n\n"
2005			    "Consider reporting to linux-kernel@vger.kernel.org.\n\n",
2006			    stats->nr_invalid_chains,
2007			    stats->nr_events[PERF_RECORD_SAMPLE]);
2008	}
2009
2010	if (stats->nr_unprocessable_samples != 0) {
2011		ui__warning("%u unprocessable samples recorded.\n"
2012			    "Do you have a KVM guest running and not using 'perf kvm'?\n",
2013			    stats->nr_unprocessable_samples);
2014	}
2015
2016	perf_session__warn_order(session);
2017
2018	events_stats__auxtrace_error_warn(stats);
2019
2020	if (stats->nr_proc_map_timeout != 0) {
2021		ui__warning("%d map information files for pre-existing threads were\n"
2022			    "not processed, if there are samples for addresses they\n"
2023			    "will not be resolved, you may find out which are these\n"
2024			    "threads by running with -v and redirecting the output\n"
2025			    "to a file.\n"
2026			    "The time limit to process proc map is too short?\n"
2027			    "Increase it by --proc-map-timeout\n",
2028			    stats->nr_proc_map_timeout);
2029	}
2030}
2031
2032static int perf_session__flush_thread_stack(struct thread *thread,
2033					    void *p __maybe_unused)
2034{
2035	return thread_stack__flush(thread);
2036}
2037
2038static int perf_session__flush_thread_stacks(struct perf_session *session)
2039{
2040	return machines__for_each_thread(&session->machines,
2041					 perf_session__flush_thread_stack,
2042					 NULL);
2043}
2044
2045volatile sig_atomic_t session_done;
2046
2047static int __perf_session__process_decomp_events(struct perf_session *session);
2048
2049static int __perf_session__process_pipe_events(struct perf_session *session)
 
2050{
2051	struct ordered_events *oe = &session->ordered_events;
2052	struct perf_tool *tool = session->tool;
2053	union perf_event *event;
2054	uint32_t size, cur_size = 0;
2055	void *buf = NULL;
2056	s64 skip = 0;
2057	u64 head;
2058	ssize_t err;
2059	void *p;
2060
2061	perf_tool__fill_defaults(tool);
2062
2063	head = 0;
2064	cur_size = sizeof(union perf_event);
2065
2066	buf = malloc(cur_size);
2067	if (!buf)
2068		return -errno;
2069	ordered_events__set_copy_on_queue(oe, true);
2070more:
2071	event = buf;
2072	err = perf_data__read(session->data, event,
2073			      sizeof(struct perf_event_header));
2074	if (err <= 0) {
2075		if (err == 0)
2076			goto done;
2077
2078		pr_err("failed to read event header\n");
2079		goto out_err;
2080	}
2081
2082	if (session->header.needs_swap)
2083		perf_event_header__bswap(&event->header);
2084
2085	size = event->header.size;
2086	if (size < sizeof(struct perf_event_header)) {
2087		pr_err("bad event header size\n");
2088		goto out_err;
2089	}
2090
2091	if (size > cur_size) {
2092		void *new = realloc(buf, size);
2093		if (!new) {
2094			pr_err("failed to allocate memory to read event\n");
2095			goto out_err;
2096		}
2097		buf = new;
2098		cur_size = size;
2099		event = buf;
2100	}
2101	p = event;
2102	p += sizeof(struct perf_event_header);
2103
2104	if (size - sizeof(struct perf_event_header)) {
2105		err = perf_data__read(session->data, p,
2106				      size - sizeof(struct perf_event_header));
2107		if (err <= 0) {
2108			if (err == 0) {
2109				pr_err("unexpected end of event stream\n");
2110				goto done;
2111			}
2112
2113			pr_err("failed to read event data\n");
2114			goto out_err;
2115		}
2116	}
2117
2118	if ((skip = perf_session__process_event(session, event, head, "pipe")) < 0) {
2119		pr_err("%#" PRIx64 " [%#x]: failed to process type: %d\n",
2120		       head, event->header.size, event->header.type);
2121		err = -EINVAL;
2122		goto out_err;
2123	}
2124
2125	head += size;
2126
2127	if (skip > 0)
2128		head += skip;
2129
2130	err = __perf_session__process_decomp_events(session);
2131	if (err)
2132		goto out_err;
2133
2134	if (!session_done())
2135		goto more;
2136done:
2137	/* do the final flush for ordered samples */
2138	err = ordered_events__flush(oe, OE_FLUSH__FINAL);
2139	if (err)
2140		goto out_err;
2141	err = auxtrace__flush_events(session, tool);
2142	if (err)
2143		goto out_err;
2144	err = perf_session__flush_thread_stacks(session);
2145out_err:
2146	free(buf);
2147	if (!tool->no_warn)
2148		perf_session__warn_about_errors(session);
2149	ordered_events__free(&session->ordered_events);
2150	auxtrace__free_events(session);
2151	return err;
2152}
2153
2154static union perf_event *
2155prefetch_event(char *buf, u64 head, size_t mmap_size,
2156	       bool needs_swap, union perf_event *error)
2157{
2158	union perf_event *event;
2159	u16 event_size;
2160
2161	/*
2162	 * Ensure we have enough space remaining to read
2163	 * the size of the event in the headers.
2164	 */
2165	if (head + sizeof(event->header) > mmap_size)
2166		return NULL;
2167
2168	event = (union perf_event *)(buf + head);
2169	if (needs_swap)
2170		perf_event_header__bswap(&event->header);
2171
2172	event_size = event->header.size;
2173	if (head + event_size <= mmap_size)
2174		return event;
2175
2176	/* We're not fetching the event so swap back again */
2177	if (needs_swap)
2178		perf_event_header__bswap(&event->header);
2179
2180	/* Check if the event fits into the next mmapped buf. */
2181	if (event_size <= mmap_size - head % page_size) {
2182		/* Remap buf and fetch again. */
2183		return NULL;
2184	}
2185
2186	/* Invalid input. Event size should never exceed mmap_size. */
2187	pr_debug("%s: head=%#" PRIx64 " event->header.size=%#x, mmap_size=%#zx:"
2188		 " fuzzed or compressed perf.data?\n", __func__, head, event_size, mmap_size);
2189
2190	return error;
2191}
2192
2193static union perf_event *
2194fetch_mmaped_event(u64 head, size_t mmap_size, char *buf, bool needs_swap)
 
2195{
2196	return prefetch_event(buf, head, mmap_size, needs_swap, ERR_PTR(-EINVAL));
2197}
2198
2199static union perf_event *
2200fetch_decomp_event(u64 head, size_t mmap_size, char *buf, bool needs_swap)
2201{
2202	return prefetch_event(buf, head, mmap_size, needs_swap, NULL);
2203}
2204
2205static int __perf_session__process_decomp_events(struct perf_session *session)
2206{
2207	s64 skip;
2208	u64 size;
2209	struct decomp *decomp = session->active_decomp->decomp_last;
2210
2211	if (!decomp)
2212		return 0;
2213
2214	while (decomp->head < decomp->size && !session_done()) {
2215		union perf_event *event = fetch_decomp_event(decomp->head, decomp->size, decomp->data,
2216							     session->header.needs_swap);
2217
2218		if (!event)
2219			break;
2220
2221		size = event->header.size;
2222
2223		if (size < sizeof(struct perf_event_header) ||
2224		    (skip = perf_session__process_event(session, event, decomp->file_pos,
2225							decomp->file_path)) < 0) {
2226			pr_err("%#" PRIx64 " [%#x]: failed to process type: %d\n",
2227				decomp->file_pos + decomp->head, event->header.size, event->header.type);
2228			return -EINVAL;
2229		}
2230
2231		if (skip)
2232			size += skip;
2233
2234		decomp->head += size;
2235	}
2236
2237	return 0;
2238}
2239
2240/*
2241 * On 64bit we can mmap the data file in one go. No need for tiny mmap
2242 * slices. On 32bit we use 32MB.
2243 */
2244#if BITS_PER_LONG == 64
2245#define MMAP_SIZE ULLONG_MAX
2246#define NUM_MMAPS 1
2247#else
2248#define MMAP_SIZE (32 * 1024 * 1024ULL)
2249#define NUM_MMAPS 128
2250#endif
2251
2252struct reader;
2253
2254typedef s64 (*reader_cb_t)(struct perf_session *session,
2255			   union perf_event *event,
2256			   u64 file_offset,
2257			   const char *file_path);
2258
2259struct reader {
2260	int		 fd;
2261	const char	 *path;
2262	u64		 data_size;
2263	u64		 data_offset;
2264	reader_cb_t	 process;
2265	bool		 in_place_update;
2266	char		 *mmaps[NUM_MMAPS];
2267	size_t		 mmap_size;
2268	int		 mmap_idx;
2269	char		 *mmap_cur;
2270	u64		 file_pos;
2271	u64		 file_offset;
2272	u64		 head;
2273	u64		 size;
2274	bool		 done;
2275	struct zstd_data   zstd_data;
2276	struct decomp_data decomp_data;
2277};
2278
2279static int
2280reader__init(struct reader *rd, bool *one_mmap)
2281{
2282	u64 data_size = rd->data_size;
2283	char **mmaps = rd->mmaps;
2284
2285	rd->head = rd->data_offset;
2286	data_size += rd->data_offset;
2287
2288	rd->mmap_size = MMAP_SIZE;
2289	if (rd->mmap_size > data_size) {
2290		rd->mmap_size = data_size;
2291		if (one_mmap)
2292			*one_mmap = true;
2293	}
2294
2295	memset(mmaps, 0, sizeof(rd->mmaps));
 
 
2296
2297	if (zstd_init(&rd->zstd_data, 0))
2298		return -1;
2299	rd->decomp_data.zstd_decomp = &rd->zstd_data;
2300
2301	return 0;
2302}
2303
2304static void
2305reader__release_decomp(struct reader *rd)
2306{
2307	perf_decomp__release_events(rd->decomp_data.decomp);
2308	zstd_fini(&rd->zstd_data);
2309}
2310
2311static int
2312reader__mmap(struct reader *rd, struct perf_session *session)
2313{
2314	int mmap_prot, mmap_flags;
2315	char *buf, **mmaps = rd->mmaps;
2316	u64 page_offset;
2317
2318	mmap_prot  = PROT_READ;
2319	mmap_flags = MAP_SHARED;
2320
2321	if (rd->in_place_update) {
2322		mmap_prot  |= PROT_WRITE;
2323	} else if (session->header.needs_swap) {
2324		mmap_prot  |= PROT_WRITE;
2325		mmap_flags = MAP_PRIVATE;
2326	}
2327
2328	if (mmaps[rd->mmap_idx]) {
2329		munmap(mmaps[rd->mmap_idx], rd->mmap_size);
2330		mmaps[rd->mmap_idx] = NULL;
2331	}
2332
2333	page_offset = page_size * (rd->head / page_size);
2334	rd->file_offset += page_offset;
2335	rd->head -= page_offset;
2336
2337	buf = mmap(NULL, rd->mmap_size, mmap_prot, mmap_flags, rd->fd,
2338		   rd->file_offset);
2339	if (buf == MAP_FAILED) {
2340		pr_err("failed to mmap file\n");
2341		return -errno;
2342	}
2343	mmaps[rd->mmap_idx] = rd->mmap_cur = buf;
2344	rd->mmap_idx = (rd->mmap_idx + 1) & (ARRAY_SIZE(rd->mmaps) - 1);
2345	rd->file_pos = rd->file_offset + rd->head;
2346	if (session->one_mmap) {
2347		session->one_mmap_addr = buf;
2348		session->one_mmap_offset = rd->file_offset;
2349	}
 
 
 
2350
2351	return 0;
2352}
2353
2354enum {
2355	READER_OK,
2356	READER_NODATA,
2357};
2358
2359static int
2360reader__read_event(struct reader *rd, struct perf_session *session,
2361		   struct ui_progress *prog)
2362{
2363	u64 size;
2364	int err = READER_OK;
2365	union perf_event *event;
2366	s64 skip;
2367
2368	event = fetch_mmaped_event(rd->head, rd->mmap_size, rd->mmap_cur,
2369				   session->header.needs_swap);
2370	if (IS_ERR(event))
2371		return PTR_ERR(event);
2372
2373	if (!event)
2374		return READER_NODATA;
 
 
 
2375
2376	size = event->header.size;
2377
2378	skip = -EINVAL;
2379
2380	if (size < sizeof(struct perf_event_header) ||
2381	    (skip = rd->process(session, event, rd->file_pos, rd->path)) < 0) {
2382		pr_err("%#" PRIx64 " [%#x]: failed to process type: %d [%s]\n",
2383		       rd->file_offset + rd->head, event->header.size,
2384		       event->header.type, strerror(-skip));
2385		err = skip;
2386		goto out;
2387	}
2388
2389	if (skip)
2390		size += skip;
2391
2392	rd->size += size;
2393	rd->head += size;
2394	rd->file_pos += size;
2395
2396	err = __perf_session__process_decomp_events(session);
2397	if (err)
2398		goto out;
2399
2400	ui_progress__update(prog, size);
2401
2402out:
2403	return err;
2404}
2405
2406static inline bool
2407reader__eof(struct reader *rd)
2408{
2409	return (rd->file_pos >= rd->data_size + rd->data_offset);
2410}
2411
2412static int
2413reader__process_events(struct reader *rd, struct perf_session *session,
2414		       struct ui_progress *prog)
2415{
2416	int err;
2417
2418	err = reader__init(rd, &session->one_mmap);
2419	if (err)
2420		goto out;
2421
2422	session->active_decomp = &rd->decomp_data;
2423
2424remap:
2425	err = reader__mmap(rd, session);
2426	if (err)
2427		goto out;
2428
2429more:
2430	err = reader__read_event(rd, session, prog);
2431	if (err < 0)
2432		goto out;
2433	else if (err == READER_NODATA)
2434		goto remap;
2435
2436	if (session_done())
2437		goto out;
 
 
 
2438
2439	if (!reader__eof(rd))
2440		goto more;
2441
2442out:
2443	session->active_decomp = &session->decomp_data;
2444	return err;
2445}
2446
2447static s64 process_simple(struct perf_session *session,
2448			  union perf_event *event,
2449			  u64 file_offset,
2450			  const char *file_path)
2451{
2452	return perf_session__process_event(session, event, file_offset, file_path);
2453}
2454
2455static int __perf_session__process_events(struct perf_session *session)
2456{
2457	struct reader rd = {
2458		.fd		= perf_data__fd(session->data),
2459		.path		= session->data->file.path,
2460		.data_size	= session->header.data_size,
2461		.data_offset	= session->header.data_offset,
2462		.process	= process_simple,
2463		.in_place_update = session->data->in_place_update,
2464	};
2465	struct ordered_events *oe = &session->ordered_events;
2466	struct perf_tool *tool = session->tool;
2467	struct ui_progress prog;
2468	int err;
2469
2470	perf_tool__fill_defaults(tool);
2471
2472	if (rd.data_size == 0)
2473		return -1;
2474
2475	ui_progress__init_size(&prog, rd.data_size, "Processing events...");
2476
2477	err = reader__process_events(&rd, session, &prog);
2478	if (err)
2479		goto out_err;
2480	/* do the final flush for ordered samples */
2481	err = ordered_events__flush(oe, OE_FLUSH__FINAL);
2482	if (err)
2483		goto out_err;
2484	err = auxtrace__flush_events(session, tool);
2485	if (err)
2486		goto out_err;
2487	err = perf_session__flush_thread_stacks(session);
2488out_err:
2489	ui_progress__finish();
2490	if (!tool->no_warn)
2491		perf_session__warn_about_errors(session);
2492	/*
2493	 * We may switching perf.data output, make ordered_events
2494	 * reusable.
2495	 */
2496	ordered_events__reinit(&session->ordered_events);
2497	auxtrace__free_events(session);
2498	reader__release_decomp(&rd);
2499	session->one_mmap = false;
2500	return err;
2501}
2502
2503/*
2504 * Processing 2 MB of data from each reader in sequence,
2505 * because that's the way the ordered events sorting works
2506 * most efficiently.
2507 */
2508#define READER_MAX_SIZE (2 * 1024 * 1024)
2509
2510/*
2511 * This function reads, merge and process directory data.
2512 * It assumens the version 1 of directory data, where each
2513 * data file holds per-cpu data, already sorted by kernel.
2514 */
2515static int __perf_session__process_dir_events(struct perf_session *session)
2516{
2517	struct perf_data *data = session->data;
2518	struct perf_tool *tool = session->tool;
2519	int i, ret, readers, nr_readers;
2520	struct ui_progress prog;
2521	u64 total_size = perf_data__size(session->data);
2522	struct reader *rd;
2523
2524	perf_tool__fill_defaults(tool);
2525
2526	ui_progress__init_size(&prog, total_size, "Sorting events...");
2527
2528	nr_readers = 1;
2529	for (i = 0; i < data->dir.nr; i++) {
2530		if (data->dir.files[i].size)
2531			nr_readers++;
2532	}
2533
2534	rd = zalloc(nr_readers * sizeof(struct reader));
2535	if (!rd)
2536		return -ENOMEM;
2537
2538	rd[0] = (struct reader) {
2539		.fd		 = perf_data__fd(session->data),
2540		.path		 = session->data->file.path,
2541		.data_size	 = session->header.data_size,
2542		.data_offset	 = session->header.data_offset,
2543		.process	 = process_simple,
2544		.in_place_update = session->data->in_place_update,
2545	};
2546	ret = reader__init(&rd[0], NULL);
2547	if (ret)
2548		goto out_err;
2549	ret = reader__mmap(&rd[0], session);
2550	if (ret)
2551		goto out_err;
2552	readers = 1;
2553
2554	for (i = 0; i < data->dir.nr; i++) {
2555		if (!data->dir.files[i].size)
2556			continue;
2557		rd[readers] = (struct reader) {
2558			.fd		 = data->dir.files[i].fd,
2559			.path		 = data->dir.files[i].path,
2560			.data_size	 = data->dir.files[i].size,
2561			.data_offset	 = 0,
2562			.process	 = process_simple,
2563			.in_place_update = session->data->in_place_update,
2564		};
2565		ret = reader__init(&rd[readers], NULL);
2566		if (ret)
2567			goto out_err;
2568		ret = reader__mmap(&rd[readers], session);
2569		if (ret)
2570			goto out_err;
2571		readers++;
2572	}
2573
2574	i = 0;
2575	while (readers) {
2576		if (session_done())
2577			break;
2578
2579		if (rd[i].done) {
2580			i = (i + 1) % nr_readers;
2581			continue;
2582		}
2583		if (reader__eof(&rd[i])) {
2584			rd[i].done = true;
2585			readers--;
2586			continue;
2587		}
2588
2589		session->active_decomp = &rd[i].decomp_data;
2590		ret = reader__read_event(&rd[i], session, &prog);
2591		if (ret < 0) {
2592			goto out_err;
2593		} else if (ret == READER_NODATA) {
2594			ret = reader__mmap(&rd[i], session);
2595			if (ret)
2596				goto out_err;
2597		}
2598
2599		if (rd[i].size >= READER_MAX_SIZE) {
2600			rd[i].size = 0;
2601			i = (i + 1) % nr_readers;
2602		}
2603	}
2604
2605	ret = ordered_events__flush(&session->ordered_events, OE_FLUSH__FINAL);
2606	if (ret)
2607		goto out_err;
2608
2609	ret = perf_session__flush_thread_stacks(session);
2610out_err:
2611	ui_progress__finish();
2612
2613	if (!tool->no_warn)
2614		perf_session__warn_about_errors(session);
2615
2616	/*
2617	 * We may switching perf.data output, make ordered_events
2618	 * reusable.
2619	 */
2620	ordered_events__reinit(&session->ordered_events);
2621
2622	session->one_mmap = false;
2623
2624	session->active_decomp = &session->decomp_data;
2625	for (i = 0; i < nr_readers; i++)
2626		reader__release_decomp(&rd[i]);
2627	zfree(&rd);
2628
2629	return ret;
2630}
2631
2632int perf_session__process_events(struct perf_session *session)
2633{
2634	if (perf_session__register_idle_thread(session) < 0)
2635		return -ENOMEM;
2636
2637	if (perf_data__is_pipe(session->data))
2638		return __perf_session__process_pipe_events(session);
2639
2640	if (perf_data__is_dir(session->data) && session->data->dir.nr)
2641		return __perf_session__process_dir_events(session);
 
 
2642
2643	return __perf_session__process_events(session);
2644}
2645
2646bool perf_session__has_traces(struct perf_session *session, const char *msg)
2647{
2648	struct evsel *evsel;
2649
2650	evlist__for_each_entry(session->evlist, evsel) {
2651		if (evsel->core.attr.type == PERF_TYPE_TRACEPOINT)
2652			return true;
2653	}
2654
2655	pr_err("No trace sample to read. Did you call 'perf %s'?\n", msg);
2656	return false;
2657}
2658
2659int map__set_kallsyms_ref_reloc_sym(struct map *map, const char *symbol_name, u64 addr)
 
2660{
2661	char *bracket;
 
2662	struct ref_reloc_sym *ref;
2663	struct kmap *kmap;
2664
2665	ref = zalloc(sizeof(struct ref_reloc_sym));
2666	if (ref == NULL)
2667		return -ENOMEM;
2668
2669	ref->name = strdup(symbol_name);
2670	if (ref->name == NULL) {
2671		free(ref);
2672		return -ENOMEM;
2673	}
2674
2675	bracket = strchr(ref->name, ']');
2676	if (bracket)
2677		*bracket = '\0';
2678
2679	ref->addr = addr;
2680
2681	kmap = map__kmap(map);
2682	if (kmap)
2683		kmap->ref_reloc_sym = ref;
 
2684
2685	return 0;
2686}
2687
2688size_t perf_session__fprintf_dsos(struct perf_session *session, FILE *fp)
2689{
2690	return machines__fprintf_dsos(&session->machines, fp);
 
 
2691}
2692
2693size_t perf_session__fprintf_dsos_buildid(struct perf_session *session, FILE *fp,
2694					  bool (skip)(struct dso *dso, int parm), int parm)
2695{
2696	return machines__fprintf_dsos_buildid(&session->machines, fp, skip, parm);
 
2697}
2698
2699size_t perf_session__fprintf_nr_events(struct perf_session *session, FILE *fp,
2700				       bool skip_empty)
2701{
2702	size_t ret;
2703	const char *msg = "";
2704
2705	if (perf_header__has_feat(&session->header, HEADER_AUXTRACE))
2706		msg = " (excludes AUX area (e.g. instruction trace) decoded / synthesized events)";
2707
2708	ret = fprintf(fp, "\nAggregated stats:%s\n", msg);
 
 
 
2709
2710	ret += events_stats__fprintf(&session->evlist->stats, fp, skip_empty);
2711	return ret;
2712}
2713
2714size_t perf_session__fprintf(struct perf_session *session, FILE *fp)
2715{
2716	/*
2717	 * FIXME: Here we have to actually print all the machines in this
2718	 * session, not just the host...
2719	 */
2720	return machine__fprintf(&session->machines.host, fp);
2721}
2722
2723struct evsel *perf_session__find_first_evtype(struct perf_session *session,
 
 
 
 
 
 
 
 
 
 
 
 
2724					      unsigned int type)
2725{
2726	struct evsel *pos;
2727
2728	evlist__for_each_entry(session->evlist, pos) {
2729		if (pos->core.attr.type == type)
2730			return pos;
2731	}
2732	return NULL;
2733}
2734
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2735int perf_session__cpu_bitmap(struct perf_session *session,
2736			     const char *cpu_list, unsigned long *cpu_bitmap)
2737{
2738	int i, err = -1;
2739	struct perf_cpu_map *map;
2740	int nr_cpus = min(session->header.env.nr_cpus_avail, MAX_NR_CPUS);
2741
2742	for (i = 0; i < PERF_TYPE_MAX; ++i) {
2743		struct evsel *evsel;
2744
2745		evsel = perf_session__find_first_evtype(session, i);
2746		if (!evsel)
2747			continue;
2748
2749		if (!(evsel->core.attr.sample_type & PERF_SAMPLE_CPU)) {
2750			pr_err("File does not contain CPU events. "
2751			       "Remove -C option to proceed.\n");
2752			return -1;
2753		}
2754	}
2755
2756	map = perf_cpu_map__new(cpu_list);
2757	if (map == NULL) {
2758		pr_err("Invalid cpu_list\n");
2759		return -1;
2760	}
2761
2762	for (i = 0; i < perf_cpu_map__nr(map); i++) {
2763		struct perf_cpu cpu = perf_cpu_map__cpu(map, i);
2764
2765		if (cpu.cpu >= nr_cpus) {
2766			pr_err("Requested CPU %d too large. "
2767			       "Consider raising MAX_NR_CPUS\n", cpu.cpu);
2768			goto out_delete_map;
2769		}
2770
2771		__set_bit(cpu.cpu, cpu_bitmap);
2772	}
2773
2774	err = 0;
2775
2776out_delete_map:
2777	perf_cpu_map__put(map);
2778	return err;
2779}
2780
2781void perf_session__fprintf_info(struct perf_session *session, FILE *fp,
2782				bool full)
2783{
 
 
 
2784	if (session == NULL || fp == NULL)
2785		return;
2786
 
 
 
 
2787	fprintf(fp, "# ========\n");
 
2788	perf_header__fprintf_info(session, fp, full);
2789	fprintf(fp, "# ========\n#\n");
2790}
2791
2792static int perf_session__register_guest(struct perf_session *session, pid_t machine_pid)
2793{
2794	struct machine *machine = machines__findnew(&session->machines, machine_pid);
2795	struct thread *thread;
2796
2797	if (!machine)
2798		return -ENOMEM;
2799
2800	machine->single_address_space = session->machines.host.single_address_space;
2801
2802	thread = machine__idle_thread(machine);
2803	if (!thread)
2804		return -ENOMEM;
2805	thread__put(thread);
2806
2807	machine->kallsyms_filename = perf_data__guest_kallsyms_name(session->data, machine_pid);
2808
2809	return 0;
2810}
2811
2812static int perf_session__set_guest_cpu(struct perf_session *session, pid_t pid,
2813				       pid_t tid, int guest_cpu)
2814{
2815	struct machine *machine = &session->machines.host;
2816	struct thread *thread = machine__findnew_thread(machine, pid, tid);
2817
2818	if (!thread)
2819		return -ENOMEM;
2820	thread__set_guest_cpu(thread, guest_cpu);
2821	thread__put(thread);
2822
2823	return 0;
2824}
2825
2826int perf_event__process_id_index(struct perf_session *session,
2827				 union perf_event *event)
2828{
2829	struct evlist *evlist = session->evlist;
2830	struct perf_record_id_index *ie = &event->id_index;
2831	size_t sz = ie->header.size - sizeof(*ie);
2832	size_t i, nr, max_nr;
2833	size_t e1_sz = sizeof(struct id_index_entry);
2834	size_t e2_sz = sizeof(struct id_index_entry_2);
2835	size_t etot_sz = e1_sz + e2_sz;
2836	struct id_index_entry_2 *e2;
2837	pid_t last_pid = 0;
2838
2839	max_nr = sz / e1_sz;
2840	nr = ie->nr;
2841	if (nr > max_nr) {
2842		printf("Too big: nr %zu max_nr %zu\n", nr, max_nr);
2843		return -EINVAL;
2844	}
2845
2846	if (sz >= nr * etot_sz) {
2847		max_nr = sz / etot_sz;
2848		if (nr > max_nr) {
2849			printf("Too big2: nr %zu max_nr %zu\n", nr, max_nr);
2850			return -EINVAL;
2851		}
2852		e2 = (void *)ie + sizeof(*ie) + nr * e1_sz;
2853	} else {
2854		e2 = NULL;
2855	}
2856
2857	if (dump_trace)
2858		fprintf(stdout, " nr: %zu\n", nr);
2859
2860	for (i = 0; i < nr; i++, (e2 ? e2++ : 0)) {
2861		struct id_index_entry *e = &ie->entries[i];
2862		struct perf_sample_id *sid;
2863		int ret;
2864
2865		if (dump_trace) {
2866			fprintf(stdout,	" ... id: %"PRI_lu64, e->id);
2867			fprintf(stdout,	"  idx: %"PRI_lu64, e->idx);
2868			fprintf(stdout,	"  cpu: %"PRI_ld64, e->cpu);
2869			fprintf(stdout, "  tid: %"PRI_ld64, e->tid);
2870			if (e2) {
2871				fprintf(stdout, "  machine_pid: %"PRI_ld64, e2->machine_pid);
2872				fprintf(stdout, "  vcpu: %"PRI_lu64"\n", e2->vcpu);
2873			} else {
2874				fprintf(stdout, "\n");
2875			}
2876		}
2877
2878		sid = evlist__id2sid(evlist, e->id);
2879		if (!sid)
2880			return -ENOENT;
2881
2882		sid->idx = e->idx;
2883		sid->cpu.cpu = e->cpu;
2884		sid->tid = e->tid;
2885
2886		if (!e2)
2887			continue;
2888
2889		sid->machine_pid = e2->machine_pid;
2890		sid->vcpu.cpu = e2->vcpu;
2891
2892		if (!sid->machine_pid)
2893			continue;
2894
2895		if (sid->machine_pid != last_pid) {
2896			ret = perf_session__register_guest(session, sid->machine_pid);
2897			if (ret)
2898				return ret;
2899			last_pid = sid->machine_pid;
2900			perf_guest = true;
2901		}
2902
2903		ret = perf_session__set_guest_cpu(session, sid->machine_pid, e->tid, e2->vcpu);
2904		if (ret)
2905			return ret;
2906	}
2907	return 0;
2908}
v3.5.6
   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
  18static int perf_session__open(struct perf_session *self, bool force)
  19{
  20	struct stat input_stat;
 
  21
  22	if (!strcmp(self->filename, "-")) {
  23		self->fd_pipe = true;
  24		self->fd = STDIN_FILENO;
  25
  26		if (perf_session__read_header(self, self->fd) < 0)
  27			pr_err("incompatible file format (rerun with -v to learn more)");
  28
  29		return 0;
  30	}
 
 
 
  31
  32	self->fd = open(self->filename, O_RDONLY);
  33	if (self->fd < 0) {
  34		int err = errno;
  35
  36		pr_err("failed to open %s: %s", self->filename, strerror(err));
  37		if (err == ENOENT && !strcmp(self->filename, "perf.data"))
  38			pr_err("  (try 'perf record' first)");
  39		pr_err("\n");
  40		return -errno;
  41	}
  42
  43	if (fstat(self->fd, &input_stat) < 0)
  44		goto out_close;
 
  45
  46	if (!force && input_stat.st_uid && (input_stat.st_uid != geteuid())) {
  47		pr_err("file %s not owned by current user or root\n",
  48		       self->filename);
  49		goto out_close;
  50	}
  51
  52	if (!input_stat.st_size) {
  53		pr_info("zero-sized file (%s), nothing to do!\n",
  54			self->filename);
  55		goto out_close;
  56	}
  57
  58	if (perf_session__read_header(self, self->fd) < 0) {
  59		pr_err("incompatible file format (rerun with -v to learn more)");
  60		goto out_close;
 
 
 
 
 
 
  61	}
  62
  63	if (!perf_evlist__valid_sample_type(self->evlist)) {
  64		pr_err("non matching sample_type");
  65		goto out_close;
  66	}
  67
  68	if (!perf_evlist__valid_sample_id_all(self->evlist)) {
  69		pr_err("non matching sample_id_all");
  70		goto out_close;
  71	}
  72
  73	self->size = input_stat.st_size;
  74	return 0;
  75
  76out_close:
  77	close(self->fd);
  78	self->fd = -1;
  79	return -1;
  80}
  81
  82void perf_session__update_sample_type(struct perf_session *self)
  83{
  84	self->sample_type = perf_evlist__sample_type(self->evlist);
  85	self->sample_size = __perf_evsel__sample_size(self->sample_type);
  86	self->sample_id_all = perf_evlist__sample_id_all(self->evlist);
  87	self->id_hdr_size = perf_evlist__id_hdr_size(self->evlist);
  88	self->host_machine.id_hdr_size = self->id_hdr_size;
  89}
  90
  91int perf_session__create_kernel_maps(struct perf_session *self)
  92{
  93	int ret = machine__create_kernel_maps(&self->host_machine);
  94
  95	if (ret >= 0)
  96		ret = machines__create_guest_kernel_maps(&self->machines);
  97	return ret;
  98}
  99
 100static void perf_session__destroy_kernel_maps(struct perf_session *self)
 101{
 102	machine__destroy_kernel_maps(&self->host_machine);
 103	machines__destroy_guest_kernel_maps(&self->machines);
 104}
 105
 106struct perf_session *perf_session__new(const char *filename, int mode,
 107				       bool force, bool repipe,
 108				       struct perf_tool *tool)
 109{
 110	struct perf_session *self;
 111	struct stat st;
 112	size_t len;
 113
 114	if (!filename || !strlen(filename)) {
 115		if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
 116			filename = "-";
 117		else
 118			filename = "perf.data";
 119	}
 120
 121	len = strlen(filename);
 122	self = zalloc(sizeof(*self) + len);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 123
 124	if (self == NULL)
 125		goto out;
 126
 127	memcpy(self->filename, filename, len);
 128	/*
 129	 * On 64bit we can mmap the data file in one go. No need for tiny mmap
 130	 * slices. On 32bit we use 32MB.
 131	 */
 132#if BITS_PER_LONG == 64
 133	self->mmap_window = ULLONG_MAX;
 134#else
 135	self->mmap_window = 32 * 1024 * 1024ULL;
 136#endif
 137	self->machines = RB_ROOT;
 138	self->repipe = repipe;
 139	INIT_LIST_HEAD(&self->ordered_samples.samples);
 140	INIT_LIST_HEAD(&self->ordered_samples.sample_cache);
 141	INIT_LIST_HEAD(&self->ordered_samples.to_free);
 142	machine__init(&self->host_machine, "", HOST_KERNEL_ID);
 143	hists__init(&self->hists);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 144
 145	if (mode == O_RDONLY) {
 146		if (perf_session__open(self, force) < 0)
 147			goto out_delete;
 148		perf_session__update_sample_type(self);
 149	} else if (mode == O_WRONLY) {
 150		/*
 151		 * In O_RDONLY mode this will be performed when reading the
 152		 * kernel MMAP event, in perf_event__process_mmap().
 153		 */
 154		if (perf_session__create_kernel_maps(self) < 0)
 155			goto out_delete;
 156	}
 157
 158	if (tool && tool->ordering_requires_timestamps &&
 159	    tool->ordered_samples && !self->sample_id_all) {
 
 
 
 
 160		dump_printf("WARNING: No sample_id_all support, falling back to unordered processing\n");
 161		tool->ordered_samples = false;
 162	}
 163
 164out:
 165	return self;
 166out_delete:
 167	perf_session__delete(self);
 168	return NULL;
 
 169}
 170
 171static void machine__delete_dead_threads(struct machine *machine)
 172{
 173	struct thread *n, *t;
 
 174
 175	list_for_each_entry_safe(t, n, &machine->dead_threads, node) {
 176		list_del(&t->node);
 177		thread__delete(t);
 178	}
 
 
 
 
 179}
 180
 181static void perf_session__delete_dead_threads(struct perf_session *session)
 182{
 183	machine__delete_dead_threads(&session->host_machine);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 184}
 185
 186static void machine__delete_threads(struct machine *self)
 
 
 
 187{
 188	struct rb_node *nd = rb_first(&self->threads);
 189
 190	while (nd) {
 191		struct thread *t = rb_entry(nd, struct thread, rb_node);
 192
 193		rb_erase(&t->rb_node, &self->threads);
 194		nd = rb_next(nd);
 195		thread__delete(t);
 196	}
 197}
 198
 199static void perf_session__delete_threads(struct perf_session *session)
 
 
 
 200{
 201	machine__delete_threads(&session->host_machine);
 
 202}
 203
 204void perf_session__delete(struct perf_session *self)
 
 
 
 205{
 206	perf_session__destroy_kernel_maps(self);
 207	perf_session__delete_dead_threads(self);
 208	perf_session__delete_threads(self);
 209	machine__exit(&self->host_machine);
 210	close(self->fd);
 211	free(self);
 212}
 213
 214void machine__remove_thread(struct machine *self, struct thread *th)
 
 
 
 
 215{
 216	self->last_match = NULL;
 217	rb_erase(&th->rb_node, &self->threads);
 218	/*
 219	 * We may have references to this thread, for instance in some hist_entry
 220	 * instances, so just move them to a separate list.
 221	 */
 222	list_add_tail(&th->node, &self->dead_threads);
 223}
 224
 225static bool symbol__match_parent_regex(struct symbol *sym)
 
 
 
 226{
 227	if (sym->name && !regexec(&parent_regex, sym->name, 0, NULL, 0))
 228		return 1;
 229
 230	return 0;
 231}
 232
 233static const u8 cpumodes[] = {
 234	PERF_RECORD_MISC_USER,
 235	PERF_RECORD_MISC_KERNEL,
 236	PERF_RECORD_MISC_GUEST_USER,
 237	PERF_RECORD_MISC_GUEST_KERNEL
 238};
 239#define NCPUMODES (sizeof(cpumodes)/sizeof(u8))
 240
 241static void ip__resolve_ams(struct machine *self, struct thread *thread,
 242			    struct addr_map_symbol *ams,
 243			    u64 ip)
 244{
 245	struct addr_location al;
 246	size_t i;
 247	u8 m;
 248
 249	memset(&al, 0, sizeof(al));
 250
 251	for (i = 0; i < NCPUMODES; i++) {
 252		m = cpumodes[i];
 253		/*
 254		 * We cannot use the header.misc hint to determine whether a
 255		 * branch stack address is user, kernel, guest, hypervisor.
 256		 * Branches may straddle the kernel/user/hypervisor boundaries.
 257		 * Thus, we have to try consecutively until we find a match
 258		 * or else, the symbol is unknown
 259		 */
 260		thread__find_addr_location(thread, self, m, MAP__FUNCTION,
 261				ip, &al, NULL);
 262		if (al.sym)
 263			goto found;
 264	}
 265found:
 266	ams->addr = ip;
 267	ams->al_addr = al.addr;
 268	ams->sym = al.sym;
 269	ams->map = al.map;
 270}
 271
 272struct branch_info *machine__resolve_bstack(struct machine *self,
 273					    struct thread *thr,
 274					    struct branch_stack *bs)
 275{
 276	struct branch_info *bi;
 277	unsigned int i;
 278
 279	bi = calloc(bs->nr, sizeof(struct branch_info));
 280	if (!bi)
 281		return NULL;
 
 
 
 282
 283	for (i = 0; i < bs->nr; i++) {
 284		ip__resolve_ams(self, thr, &bi[i].to, bs->entries[i].to);
 285		ip__resolve_ams(self, thr, &bi[i].from, bs->entries[i].from);
 286		bi[i].flags = bs->entries[i].flags;
 287	}
 288	return bi;
 289}
 290
 291int machine__resolve_callchain(struct machine *self,
 292			       struct perf_evsel *evsel __used,
 293			       struct thread *thread,
 294			       struct ip_callchain *chain,
 295			       struct symbol **parent)
 296{
 297	u8 cpumode = PERF_RECORD_MISC_USER;
 298	unsigned int i;
 299	int err;
 
 
 300
 301	callchain_cursor_reset(&callchain_cursor);
 
 
 
 
 
 302
 303	if (chain->nr > PERF_MAX_STACK_DEPTH) {
 304		pr_warning("corrupted callchain. skipping...\n");
 305		return 0;
 306	}
 307
 308	for (i = 0; i < chain->nr; i++) {
 309		u64 ip;
 310		struct addr_location al;
 311
 312		if (callchain_param.order == ORDER_CALLEE)
 313			ip = chain->ips[i];
 314		else
 315			ip = chain->ips[chain->nr - i - 1];
 316
 317		if (ip >= PERF_CONTEXT_MAX) {
 318			switch (ip) {
 319			case PERF_CONTEXT_HV:
 320				cpumode = PERF_RECORD_MISC_HYPERVISOR;	break;
 321			case PERF_CONTEXT_KERNEL:
 322				cpumode = PERF_RECORD_MISC_KERNEL;	break;
 323			case PERF_CONTEXT_USER:
 324				cpumode = PERF_RECORD_MISC_USER;	break;
 325			default:
 326				pr_debug("invalid callchain context: "
 327					 "%"PRId64"\n", (s64) ip);
 328				/*
 329				 * It seems the callchain is corrupted.
 330				 * Discard all.
 331				 */
 332				callchain_cursor_reset(&callchain_cursor);
 333				return 0;
 334			}
 335			continue;
 336		}
 337
 338		al.filtered = false;
 339		thread__find_addr_location(thread, self, cpumode,
 340					   MAP__FUNCTION, ip, &al, NULL);
 341		if (al.sym != NULL) {
 342			if (sort__has_parent && !*parent &&
 343			    symbol__match_parent_regex(al.sym))
 344				*parent = al.sym;
 345			if (!symbol_conf.use_callchain)
 346				break;
 347		}
 348
 349		err = callchain_cursor_append(&callchain_cursor,
 350					      ip, al.map, al.sym);
 351		if (err)
 352			return err;
 353	}
 354
 
 355	return 0;
 356}
 357
 358static int process_event_synth_tracing_data_stub(union perf_event *event __used,
 359						 struct perf_session *session __used)
 
 360{
 
 
 
 361	dump_printf(": unhandled!\n");
 362	return 0;
 363}
 364
 365static int process_event_synth_attr_stub(union perf_event *event __used,
 366					 struct perf_evlist **pevlist __used)
 
 367{
 
 
 
 368	dump_printf(": unhandled!\n");
 369	return 0;
 370}
 371
 372static int process_event_sample_stub(struct perf_tool *tool __used,
 373				     union perf_event *event __used,
 374				     struct perf_sample *sample __used,
 375				     struct perf_evsel *evsel __used,
 376				     struct machine *machine __used)
 377{
 
 
 
 378	dump_printf(": unhandled!\n");
 379	return 0;
 380}
 381
 382static int process_event_stub(struct perf_tool *tool __used,
 383			      union perf_event *event __used,
 384			      struct perf_sample *sample __used,
 385			      struct machine *machine __used)
 386{
 
 
 
 387	dump_printf(": unhandled!\n");
 388	return 0;
 389}
 390
 391static int process_finished_round_stub(struct perf_tool *tool __used,
 392				       union perf_event *event __used,
 393				       struct perf_session *perf_session __used)
 394{
 
 
 
 395	dump_printf(": unhandled!\n");
 396	return 0;
 397}
 398
 399static int process_event_type_stub(struct perf_tool *tool __used,
 400				   union perf_event *event __used)
 
 
 401{
 402	dump_printf(": unhandled!\n");
 403	return 0;
 404}
 405
 406static int process_finished_round(struct perf_tool *tool,
 407				  union perf_event *event,
 408				  struct perf_session *session);
 409
 410static void perf_tool__fill_defaults(struct perf_tool *tool)
 411{
 412	if (tool->sample == NULL)
 413		tool->sample = process_event_sample_stub;
 414	if (tool->mmap == NULL)
 415		tool->mmap = process_event_stub;
 
 
 416	if (tool->comm == NULL)
 417		tool->comm = process_event_stub;
 
 
 
 
 418	if (tool->fork == NULL)
 419		tool->fork = process_event_stub;
 420	if (tool->exit == NULL)
 421		tool->exit = process_event_stub;
 422	if (tool->lost == NULL)
 423		tool->lost = perf_event__process_lost;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 424	if (tool->read == NULL)
 425		tool->read = process_event_sample_stub;
 426	if (tool->throttle == NULL)
 427		tool->throttle = process_event_stub;
 428	if (tool->unthrottle == NULL)
 429		tool->unthrottle = process_event_stub;
 430	if (tool->attr == NULL)
 431		tool->attr = process_event_synth_attr_stub;
 432	if (tool->event_type == NULL)
 433		tool->event_type = process_event_type_stub;
 434	if (tool->tracing_data == NULL)
 435		tool->tracing_data = process_event_synth_tracing_data_stub;
 436	if (tool->build_id == NULL)
 437		tool->build_id = process_finished_round_stub;
 438	if (tool->finished_round == NULL) {
 439		if (tool->ordered_samples)
 440			tool->finished_round = process_finished_round;
 441		else
 442			tool->finished_round = process_finished_round_stub;
 443	}
 444}
 445 
 446void mem_bswap_32(void *src, int byte_size)
 447{
 448	u32 *m = src;
 449	while (byte_size > 0) {
 450		*m = bswap_32(*m);
 451		byte_size -= sizeof(u32);
 452		++m;
 453	}
 454}
 455
 456void mem_bswap_64(void *src, int byte_size)
 457{
 458	u64 *m = src;
 459
 460	while (byte_size > 0) {
 461		*m = bswap_64(*m);
 462		byte_size -= sizeof(u64);
 463		++m;
 464	}
 
 
 
 
 
 465}
 466
 467static void swap_sample_id_all(union perf_event *event, void *data)
 468{
 469	void *end = (void *) event + event->header.size;
 470	int size = end - data;
 471
 472	BUG_ON(size % sizeof(u64));
 473	mem_bswap_64(data, size);
 474}
 475
 476static void perf_event__all64_swap(union perf_event *event,
 477				   bool sample_id_all __used)
 478{
 479	struct perf_event_header *hdr = &event->header;
 480	mem_bswap_64(hdr + 1, event->header.size - sizeof(*hdr));
 481}
 482
 483static void perf_event__comm_swap(union perf_event *event, bool sample_id_all)
 484{
 485	event->comm.pid = bswap_32(event->comm.pid);
 486	event->comm.tid = bswap_32(event->comm.tid);
 487
 488	if (sample_id_all) {
 489		void *data = &event->comm.comm;
 490
 491		data += ALIGN(strlen(data) + 1, sizeof(u64));
 492		swap_sample_id_all(event, data);
 493	}
 494}
 495
 496static void perf_event__mmap_swap(union perf_event *event,
 497				  bool sample_id_all)
 498{
 499	event->mmap.pid	  = bswap_32(event->mmap.pid);
 500	event->mmap.tid	  = bswap_32(event->mmap.tid);
 501	event->mmap.start = bswap_64(event->mmap.start);
 502	event->mmap.len	  = bswap_64(event->mmap.len);
 503	event->mmap.pgoff = bswap_64(event->mmap.pgoff);
 504
 505	if (sample_id_all) {
 506		void *data = &event->mmap.filename;
 507
 508		data += ALIGN(strlen(data) + 1, sizeof(u64));
 509		swap_sample_id_all(event, data);
 510	}
 511}
 512
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 513static void perf_event__task_swap(union perf_event *event, bool sample_id_all)
 514{
 515	event->fork.pid	 = bswap_32(event->fork.pid);
 516	event->fork.tid	 = bswap_32(event->fork.tid);
 517	event->fork.ppid = bswap_32(event->fork.ppid);
 518	event->fork.ptid = bswap_32(event->fork.ptid);
 519	event->fork.time = bswap_64(event->fork.time);
 520
 521	if (sample_id_all)
 522		swap_sample_id_all(event, &event->fork + 1);
 523}
 524
 525static void perf_event__read_swap(union perf_event *event, bool sample_id_all)
 526{
 527	event->read.pid		 = bswap_32(event->read.pid);
 528	event->read.tid		 = bswap_32(event->read.tid);
 529	event->read.value	 = bswap_64(event->read.value);
 530	event->read.time_enabled = bswap_64(event->read.time_enabled);
 531	event->read.time_running = bswap_64(event->read.time_running);
 532	event->read.id		 = bswap_64(event->read.id);
 533
 534	if (sample_id_all)
 535		swap_sample_id_all(event, &event->read + 1);
 536}
 537
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 538static u8 revbyte(u8 b)
 539{
 540	int rev = (b >> 4) | ((b & 0xf) << 4);
 541	rev = ((rev & 0xcc) >> 2) | ((rev & 0x33) << 2);
 542	rev = ((rev & 0xaa) >> 1) | ((rev & 0x55) << 1);
 543	return (u8) rev;
 544}
 545
 546/*
 547 * XXX this is hack in attempt to carry flags bitfield
 548 * throught endian village. ABI says:
 549 *
 550 * Bit-fields are allocated from right to left (least to most significant)
 551 * on little-endian implementations and from left to right (most to least
 552 * significant) on big-endian implementations.
 553 *
 554 * The above seems to be byte specific, so we need to reverse each
 555 * byte of the bitfield. 'Internet' also says this might be implementation
 556 * specific and we probably need proper fix and carry perf_event_attr
 557 * bitfield flags in separate data file FEAT_ section. Thought this seems
 558 * to work for now.
 559 */
 560static void swap_bitfield(u8 *p, unsigned len)
 561{
 562	unsigned i;
 563
 564	for (i = 0; i < len; i++) {
 565		*p = revbyte(*p);
 566		p++;
 567	}
 568}
 569
 570/* exported for swapping attributes in file header */
 571void perf_event__attr_swap(struct perf_event_attr *attr)
 572{
 573	attr->type		= bswap_32(attr->type);
 574	attr->size		= bswap_32(attr->size);
 575	attr->config		= bswap_64(attr->config);
 576	attr->sample_period	= bswap_64(attr->sample_period);
 577	attr->sample_type	= bswap_64(attr->sample_type);
 578	attr->read_format	= bswap_64(attr->read_format);
 579	attr->wakeup_events	= bswap_32(attr->wakeup_events);
 580	attr->bp_type		= bswap_32(attr->bp_type);
 581	attr->bp_addr		= bswap_64(attr->bp_addr);
 582	attr->bp_len		= bswap_64(attr->bp_len);
 583
 584	swap_bitfield((u8 *) (&attr->read_format + 1), sizeof(u64));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 585}
 586
 587static void perf_event__hdr_attr_swap(union perf_event *event,
 588				      bool sample_id_all __used)
 589{
 590	size_t size;
 591
 592	perf_event__attr_swap(&event->attr.attr);
 593
 594	size = event->header.size;
 595	size -= (void *)&event->attr.id - (void *)event;
 596	mem_bswap_64(event->attr.id, size);
 
 
 
 
 
 
 
 597}
 598
 599static void perf_event__event_type_swap(union perf_event *event,
 600					bool sample_id_all __used)
 601{
 602	event->event_type.event_type.event_id =
 603		bswap_64(event->event_type.event_type.event_id);
 604}
 605
 606static void perf_event__tracing_data_swap(union perf_event *event,
 607					  bool sample_id_all __used)
 608{
 609	event->tracing_data.size = bswap_32(event->tracing_data.size);
 610}
 611
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 612typedef void (*perf_event__swap_op)(union perf_event *event,
 613				    bool sample_id_all);
 614
 615static perf_event__swap_op perf_event__swap_ops[] = {
 616	[PERF_RECORD_MMAP]		  = perf_event__mmap_swap,
 
 617	[PERF_RECORD_COMM]		  = perf_event__comm_swap,
 618	[PERF_RECORD_FORK]		  = perf_event__task_swap,
 619	[PERF_RECORD_EXIT]		  = perf_event__task_swap,
 620	[PERF_RECORD_LOST]		  = perf_event__all64_swap,
 621	[PERF_RECORD_READ]		  = perf_event__read_swap,
 
 
 622	[PERF_RECORD_SAMPLE]		  = perf_event__all64_swap,
 
 
 
 
 
 
 
 
 
 623	[PERF_RECORD_HEADER_ATTR]	  = perf_event__hdr_attr_swap,
 624	[PERF_RECORD_HEADER_EVENT_TYPE]	  = perf_event__event_type_swap,
 625	[PERF_RECORD_HEADER_TRACING_DATA] = perf_event__tracing_data_swap,
 626	[PERF_RECORD_HEADER_BUILD_ID]	  = NULL,
 
 
 
 
 
 
 
 
 
 
 
 627	[PERF_RECORD_HEADER_MAX]	  = NULL,
 628};
 629
 630struct sample_queue {
 631	u64			timestamp;
 632	u64			file_offset;
 633	union perf_event	*event;
 634	struct list_head	list;
 635};
 636
 637static void perf_session_free_sample_buffers(struct perf_session *session)
 638{
 639	struct ordered_samples *os = &session->ordered_samples;
 640
 641	while (!list_empty(&os->to_free)) {
 642		struct sample_queue *sq;
 643
 644		sq = list_entry(os->to_free.next, struct sample_queue, list);
 645		list_del(&sq->list);
 646		free(sq);
 647	}
 648}
 649
 650static int perf_session_deliver_event(struct perf_session *session,
 651				      union perf_event *event,
 652				      struct perf_sample *sample,
 653				      struct perf_tool *tool,
 654				      u64 file_offset);
 655
 656static void flush_sample_queue(struct perf_session *s,
 657			       struct perf_tool *tool)
 658{
 659	struct ordered_samples *os = &s->ordered_samples;
 660	struct list_head *head = &os->samples;
 661	struct sample_queue *tmp, *iter;
 662	struct perf_sample sample;
 663	u64 limit = os->next_flush;
 664	u64 last_ts = os->last_sample ? os->last_sample->timestamp : 0ULL;
 665	unsigned idx = 0, progress_next = os->nr_samples / 16;
 666	int ret;
 667
 668	if (!tool->ordered_samples || !limit)
 669		return;
 670
 671	list_for_each_entry_safe(iter, tmp, head, list) {
 672		if (iter->timestamp > limit)
 673			break;
 674
 675		ret = perf_session__parse_sample(s, iter->event, &sample);
 676		if (ret)
 677			pr_err("Can't parse sample, err = %d\n", ret);
 678		else
 679			perf_session_deliver_event(s, iter->event, &sample, tool,
 680						   iter->file_offset);
 681
 682		os->last_flush = iter->timestamp;
 683		list_del(&iter->list);
 684		list_add(&iter->list, &os->sample_cache);
 685		if (++idx >= progress_next) {
 686			progress_next += os->nr_samples / 16;
 687			ui_progress__update(idx, os->nr_samples,
 688					    "Processing time ordered events...");
 689		}
 690	}
 691
 692	if (list_empty(head)) {
 693		os->last_sample = NULL;
 694	} else if (last_ts <= limit) {
 695		os->last_sample =
 696			list_entry(head->prev, struct sample_queue, list);
 697	}
 698
 699	os->nr_samples = 0;
 700}
 701
 702/*
 703 * When perf record finishes a pass on every buffers, it records this pseudo
 704 * event.
 705 * We record the max timestamp t found in the pass n.
 706 * Assuming these timestamps are monotonic across cpus, we know that if
 707 * a buffer still has events with timestamps below t, they will be all
 708 * available and then read in the pass n + 1.
 709 * Hence when we start to read the pass n + 2, we can safely flush every
 710 * events with timestamps below t.
 711 *
 712 *    ============ PASS n =================
 713 *       CPU 0         |   CPU 1
 714 *                     |
 715 *    cnt1 timestamps  |   cnt2 timestamps
 716 *          1          |         2
 717 *          2          |         3
 718 *          -          |         4  <--- max recorded
 719 *
 720 *    ============ PASS n + 1 ==============
 721 *       CPU 0         |   CPU 1
 722 *                     |
 723 *    cnt1 timestamps  |   cnt2 timestamps
 724 *          3          |         5
 725 *          4          |         6
 726 *          5          |         7 <---- max recorded
 727 *
 728 *      Flush every events below timestamp 4
 729 *
 730 *    ============ PASS n + 2 ==============
 731 *       CPU 0         |   CPU 1
 732 *                     |
 733 *    cnt1 timestamps  |   cnt2 timestamps
 734 *          6          |         8
 735 *          7          |         9
 736 *          -          |         10
 737 *
 738 *      Flush every events below timestamp 7
 739 *      etc...
 740 */
 741static int process_finished_round(struct perf_tool *tool,
 742				  union perf_event *event __used,
 743				  struct perf_session *session)
 744{
 745	flush_sample_queue(session, tool);
 746	session->ordered_samples.next_flush = session->ordered_samples.max_timestamp;
 
 
 747
 748	return 0;
 
 
 
 749}
 750
 751/* The queue is ordered by time */
 752static void __queue_event(struct sample_queue *new, struct perf_session *s)
 753{
 754	struct ordered_samples *os = &s->ordered_samples;
 755	struct sample_queue *sample = os->last_sample;
 756	u64 timestamp = new->timestamp;
 757	struct list_head *p;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 758
 759	++os->nr_samples;
 760	os->last_sample = new;
 
 761
 762	if (!sample) {
 763		list_add(&new->list, &os->samples);
 764		os->max_timestamp = timestamp;
 765		return;
 
 766	}
 
 767
 768	/*
 769	 * last_sample might point to some random place in the list as it's
 770	 * the last queued event. We expect that the new event is close to
 771	 * this.
 772	 */
 773	if (sample->timestamp <= timestamp) {
 774		while (sample->timestamp <= timestamp) {
 775			p = sample->list.next;
 776			if (p == &os->samples) {
 777				list_add_tail(&new->list, &os->samples);
 778				os->max_timestamp = timestamp;
 779				return;
 780			}
 781			sample = list_entry(p, struct sample_queue, list);
 782		}
 783		list_add_tail(&new->list, &sample->list);
 
 
 
 
 
 
 
 
 
 
 
 784	} else {
 785		while (sample->timestamp > timestamp) {
 786			p = sample->list.prev;
 787			if (p == &os->samples) {
 788				list_add(&new->list, &os->samples);
 789				return;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 790			}
 791			sample = list_entry(p, struct sample_queue, list);
 792		}
 793		list_add(&new->list, &sample->list);
 
 
 
 
 
 
 794	}
 795}
 796
 797#define MAX_SAMPLE_BUFFER	(64 * 1024 / sizeof(struct sample_queue))
 798
 799static int perf_session_queue_event(struct perf_session *s, union perf_event *event,
 800				    struct perf_sample *sample, u64 file_offset)
 801{
 802	struct ordered_samples *os = &s->ordered_samples;
 803	struct list_head *sc = &os->sample_cache;
 804	u64 timestamp = sample->time;
 805	struct sample_queue *new;
 806
 807	if (!timestamp || timestamp == ~0ULL)
 808		return -ETIME;
 809
 810	if (timestamp < s->ordered_samples.last_flush) {
 811		printf("Warning: Timestamp below last timeslice flush\n");
 812		return -EINVAL;
 813	}
 
 
 
 
 
 
 
 814
 815	if (!list_empty(sc)) {
 816		new = list_entry(sc->next, struct sample_queue, list);
 817		list_del(&new->list);
 818	} else if (os->sample_buffer) {
 819		new = os->sample_buffer + os->sample_buffer_idx;
 820		if (++os->sample_buffer_idx == MAX_SAMPLE_BUFFER)
 821			os->sample_buffer = NULL;
 822	} else {
 823		os->sample_buffer = malloc(MAX_SAMPLE_BUFFER * sizeof(*new));
 824		if (!os->sample_buffer)
 825			return -ENOMEM;
 826		list_add(&os->sample_buffer->list, &os->to_free);
 827		os->sample_buffer_idx = 2;
 828		new = os->sample_buffer + 1;
 829	}
 830
 831	new->timestamp = timestamp;
 832	new->file_offset = file_offset;
 833	new->event = event;
 834
 835	__queue_event(new, s);
 
 
 836
 837	return 0;
 
 
 
 
 
 838}
 839
 840static void callchain__printf(struct perf_sample *sample)
 841{
 842	unsigned int i;
 843
 844	printf("... chain: nr:%" PRIu64 "\n", sample->callchain->nr);
 845
 846	for (i = 0; i < sample->callchain->nr; i++)
 847		printf("..... %2d: %016" PRIx64 "\n",
 848		       i, sample->callchain->ips[i]);
 849}
 850
 851static void branch_stack__printf(struct perf_sample *sample)
 852{
 853	uint64_t i;
 854
 855	printf("... branch stack: nr:%" PRIu64 "\n", sample->branch_stack->nr);
 
 
 856
 857	for (i = 0; i < sample->branch_stack->nr; i++)
 858		printf("..... %2"PRIu64": %016" PRIx64 " -> %016" PRIx64 "\n",
 859			i, sample->branch_stack->entries[i].from,
 860			sample->branch_stack->entries[i].to);
 861}
 862
 863static void perf_session__print_tstamp(struct perf_session *session,
 864				       union perf_event *event,
 865				       struct perf_sample *sample)
 866{
 
 
 867	if (event->header.type != PERF_RECORD_SAMPLE &&
 868	    !session->sample_id_all) {
 869		fputs("-1 -1 ", stdout);
 870		return;
 871	}
 872
 873	if ((session->sample_type & PERF_SAMPLE_CPU))
 874		printf("%u ", sample->cpu);
 875
 876	if (session->sample_type & PERF_SAMPLE_TIME)
 877		printf("%" PRIu64 " ", sample->time);
 878}
 879
 880static void dump_event(struct perf_session *session, union perf_event *event,
 881		       u64 file_offset, struct perf_sample *sample)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 882{
 883	if (!dump_trace)
 884		return;
 885
 886	printf("\n%#" PRIx64 " [%#x]: event: %d\n",
 887	       file_offset, event->header.size, event->header.type);
 888
 889	trace_event(event);
 
 
 890
 891	if (sample)
 892		perf_session__print_tstamp(session, event, sample);
 893
 894	printf("%#" PRIx64 " [%#x]: PERF_RECORD_%s", file_offset,
 895	       event->header.size, perf_event__name(event->header.type));
 896}
 897
 898static void dump_sample(struct perf_session *session, union perf_event *event,
 899			struct perf_sample *sample)
 900{
 
 
 
 
 
 
 
 
 
 
 
 
 901	if (!dump_trace)
 902		return;
 903
 904	printf("(IP, %d): %d/%d: %#" PRIx64 " period: %" PRIu64 " addr: %#" PRIx64 "\n",
 905	       event->header.misc, sample->pid, sample->tid, sample->ip,
 906	       sample->period, sample->addr);
 907
 908	if (session->sample_type & PERF_SAMPLE_CALLCHAIN)
 909		callchain__printf(sample);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 910
 911	if (session->sample_type & PERF_SAMPLE_BRANCH_STACK)
 912		branch_stack__printf(sample);
 
 
 
 
 
 
 
 
 
 
 
 
 913}
 914
 915static struct machine *
 916	perf_session__find_machine_for_cpumode(struct perf_session *session,
 917					       union perf_event *event)
 918{
 919	const u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 920
 921	if (cpumode == PERF_RECORD_MISC_GUEST_KERNEL && perf_guest) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 922		u32 pid;
 923
 924		if (event->header.type == PERF_RECORD_MMAP)
 
 
 
 925			pid = event->mmap.pid;
 926		else
 927			pid = event->ip.pid;
 
 
 
 
 
 
 
 
 
 
 
 
 
 928
 929		return perf_session__findnew_machine(session, pid);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 930	}
 931
 932	return perf_session__find_host_machine(session);
 
 
 
 
 
 
 
 
 933}
 934
 935static int perf_session_deliver_event(struct perf_session *session,
 936				      union perf_event *event,
 937				      struct perf_sample *sample,
 938				      struct perf_tool *tool,
 939				      u64 file_offset)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 940{
 941	struct perf_evsel *evsel;
 942	struct machine *machine;
 943
 944	dump_event(session, event, file_offset, sample);
 945
 946	evsel = perf_evlist__id2evsel(session->evlist, sample->id);
 947	if (evsel != NULL && event->header.type != PERF_RECORD_SAMPLE) {
 948		/*
 949		 * XXX We're leaving PERF_RECORD_SAMPLE unnacounted here
 950		 * because the tools right now may apply filters, discarding
 951		 * some of the samples. For consistency, in the future we
 952		 * should have something like nr_filtered_samples and remove
 953		 * the sample->period from total_sample_period, etc, KISS for
 954		 * now tho.
 955		 *
 956		 * Also testing against NULL allows us to handle files without
 957		 * attr.sample_id_all and/or without PERF_SAMPLE_ID. In the
 958		 * future probably it'll be a good idea to restrict event
 959		 * processing via perf_session to files with both set.
 960		 */
 961		hists__inc_nr_events(&evsel->hists, event->header.type);
 962	}
 963
 964	machine = perf_session__find_machine_for_cpumode(session, event);
 965
 966	switch (event->header.type) {
 967	case PERF_RECORD_SAMPLE:
 968		dump_sample(session, event, sample);
 969		if (evsel == NULL) {
 970			++session->hists.stats.nr_unknown_id;
 971			return 0;
 972		}
 973		if (machine == NULL) {
 974			++session->hists.stats.nr_unprocessable_samples;
 
 975			return 0;
 976		}
 977		return tool->sample(tool, event, sample, evsel, machine);
 
 978	case PERF_RECORD_MMAP:
 979		return tool->mmap(tool, event, sample, machine);
 
 
 
 
 980	case PERF_RECORD_COMM:
 981		return tool->comm(tool, event, sample, machine);
 
 
 
 
 982	case PERF_RECORD_FORK:
 983		return tool->fork(tool, event, sample, machine);
 984	case PERF_RECORD_EXIT:
 985		return tool->exit(tool, event, sample, machine);
 986	case PERF_RECORD_LOST:
 987		if (tool->lost == perf_event__process_lost)
 988			session->hists.stats.total_lost += event->lost.lost;
 989		return tool->lost(tool, event, sample, machine);
 
 
 
 
 
 990	case PERF_RECORD_READ:
 
 991		return tool->read(tool, event, sample, evsel, machine);
 992	case PERF_RECORD_THROTTLE:
 993		return tool->throttle(tool, event, sample, machine);
 994	case PERF_RECORD_UNTHROTTLE:
 995		return tool->unthrottle(tool, event, sample, machine);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 996	default:
 997		++session->hists.stats.nr_unknown_events;
 998		return -1;
 999	}
1000}
1001
1002static int perf_session__preprocess_sample(struct perf_session *session,
1003					   union perf_event *event, struct perf_sample *sample)
 
 
 
1004{
1005	if (event->header.type != PERF_RECORD_SAMPLE ||
1006	    !(session->sample_type & PERF_SAMPLE_CALLCHAIN))
 
 
 
 
 
 
 
 
 
 
1007		return 0;
1008
1009	if (!ip_callchain__valid(sample->callchain, event)) {
1010		pr_debug("call-chain problem with event, skipping it.\n");
1011		++session->hists.stats.nr_invalid_chains;
1012		session->hists.stats.total_invalid_chains += sample->period;
1013		return -EINVAL;
1014	}
1015	return 0;
1016}
1017
1018static int perf_session__process_user_event(struct perf_session *session, union perf_event *event,
1019					    struct perf_tool *tool, u64 file_offset)
1020{
 
 
 
 
 
 
1021	int err;
1022
1023	dump_event(session, event, file_offset, NULL);
 
 
1024
1025	/* These events are processed right away */
1026	switch (event->header.type) {
1027	case PERF_RECORD_HEADER_ATTR:
1028		err = tool->attr(event, &session->evlist);
1029		if (err == 0)
1030			perf_session__update_sample_type(session);
 
 
1031		return err;
 
 
1032	case PERF_RECORD_HEADER_EVENT_TYPE:
1033		return tool->event_type(tool, event);
 
 
 
 
1034	case PERF_RECORD_HEADER_TRACING_DATA:
1035		/* setup for reading amidst mmap */
1036		lseek(session->fd, file_offset, SEEK_SET);
1037		return tool->tracing_data(event, session);
 
 
 
 
 
1038	case PERF_RECORD_HEADER_BUILD_ID:
1039		return tool->build_id(tool, event, session);
1040	case PERF_RECORD_FINISHED_ROUND:
1041		return tool->finished_round(tool, event, session);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1042	default:
1043		return -EINVAL;
1044	}
1045}
1046
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1047static void event_swap(union perf_event *event, bool sample_id_all)
1048{
1049	perf_event__swap_op swap;
1050
1051	swap = perf_event__swap_ops[event->header.type];
1052	if (swap)
1053		swap(event, sample_id_all);
1054}
1055
1056static int perf_session__process_event(struct perf_session *session,
1057				       union perf_event *event,
1058				       struct perf_tool *tool,
1059				       u64 file_offset)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1060{
1061	struct perf_sample sample;
 
1062	int ret;
1063
1064	if (session->header.needs_swap)
1065		event_swap(event, session->sample_id_all);
1066
1067	if (event->header.type >= PERF_RECORD_HEADER_MAX)
1068		return -EINVAL;
1069
1070	hists__inc_nr_events(&session->hists, event->header.type);
1071
1072	if (event->header.type >= PERF_RECORD_USER_TYPE_START)
1073		return perf_session__process_user_event(session, event, tool, file_offset);
1074
1075	/*
1076	 * For all kernel events we get the sample data
1077	 */
1078	ret = perf_session__parse_sample(session, event, &sample);
1079	if (ret)
1080		return ret;
1081
1082	/* Preprocess sample records - precheck callchains */
1083	if (perf_session__preprocess_sample(session, event, &sample))
1084		return 0;
1085
1086	if (tool->ordered_samples) {
1087		ret = perf_session_queue_event(session, event, &sample,
1088					       file_offset);
1089		if (ret != -ETIME)
1090			return ret;
1091	}
1092
1093	return perf_session_deliver_event(session, event, &sample, tool,
1094					  file_offset);
1095}
1096
1097void perf_event_header__bswap(struct perf_event_header *self)
1098{
1099	self->type = bswap_32(self->type);
1100	self->misc = bswap_16(self->misc);
1101	self->size = bswap_16(self->size);
1102}
1103
1104struct thread *perf_session__findnew(struct perf_session *session, pid_t pid)
1105{
1106	return machine__findnew_thread(&session->host_machine, pid);
1107}
1108
1109static struct thread *perf_session__register_idle_thread(struct perf_session *self)
1110{
1111	struct thread *thread = perf_session__findnew(self, 0);
1112
1113	if (thread == NULL || thread__set_comm(thread, "swapper")) {
1114		pr_err("problem inserting idle task.\n");
1115		thread = NULL;
 
 
 
 
 
 
 
 
 
 
 
 
1116	}
1117
1118	return thread;
 
 
 
1119}
1120
1121static void perf_session__warn_about_errors(const struct perf_session *session,
1122					    const struct perf_tool *tool)
1123{
1124	if (tool->lost == perf_event__process_lost &&
1125	    session->hists.stats.nr_events[PERF_RECORD_LOST] != 0) {
 
 
1126		ui__warning("Processed %d events and lost %d chunks!\n\n"
1127			    "Check IO/CPU overload!\n\n",
1128			    session->hists.stats.nr_events[0],
1129			    session->hists.stats.nr_events[PERF_RECORD_LOST]);
1130	}
1131
1132	if (session->hists.stats.nr_unknown_events != 0) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1133		ui__warning("Found %u unknown events!\n\n"
1134			    "Is this an older tool processing a perf.data "
1135			    "file generated by a more recent tool?\n\n"
1136			    "If that is not the case, consider "
1137			    "reporting to linux-kernel@vger.kernel.org.\n\n",
1138			    session->hists.stats.nr_unknown_events);
1139	}
1140
1141	if (session->hists.stats.nr_unknown_id != 0) {
1142		ui__warning("%u samples with id not present in the header\n",
1143			    session->hists.stats.nr_unknown_id);
1144	}
1145
1146 	if (session->hists.stats.nr_invalid_chains != 0) {
1147 		ui__warning("Found invalid callchains!\n\n"
1148 			    "%u out of %u events were discarded for this reason.\n\n"
1149 			    "Consider reporting to linux-kernel@vger.kernel.org.\n\n",
1150 			    session->hists.stats.nr_invalid_chains,
1151 			    session->hists.stats.nr_events[PERF_RECORD_SAMPLE]);
1152 	}
1153
1154	if (session->hists.stats.nr_unprocessable_samples != 0) {
1155		ui__warning("%u unprocessable samples recorded.\n"
1156			    "Do you have a KVM guest running and not using 'perf kvm'?\n",
1157			    session->hists.stats.nr_unprocessable_samples);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1158	}
1159}
1160
1161#define session_done()	(*(volatile int *)(&session_done))
1162volatile int session_done;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1163
1164static int __perf_session__process_pipe_events(struct perf_session *self,
1165					       struct perf_tool *tool)
1166{
 
 
1167	union perf_event *event;
1168	uint32_t size, cur_size = 0;
1169	void *buf = NULL;
1170	int skip = 0;
1171	u64 head;
1172	int err;
1173	void *p;
1174
1175	perf_tool__fill_defaults(tool);
1176
1177	head = 0;
1178	cur_size = sizeof(union perf_event);
1179
1180	buf = malloc(cur_size);
1181	if (!buf)
1182		return -errno;
 
1183more:
1184	event = buf;
1185	err = readn(self->fd, event, sizeof(struct perf_event_header));
 
1186	if (err <= 0) {
1187		if (err == 0)
1188			goto done;
1189
1190		pr_err("failed to read event header\n");
1191		goto out_err;
1192	}
1193
1194	if (self->header.needs_swap)
1195		perf_event_header__bswap(&event->header);
1196
1197	size = event->header.size;
1198	if (size == 0)
1199		size = 8;
 
 
1200
1201	if (size > cur_size) {
1202		void *new = realloc(buf, size);
1203		if (!new) {
1204			pr_err("failed to allocate memory to read event\n");
1205			goto out_err;
1206		}
1207		buf = new;
1208		cur_size = size;
1209		event = buf;
1210	}
1211	p = event;
1212	p += sizeof(struct perf_event_header);
1213
1214	if (size - sizeof(struct perf_event_header)) {
1215		err = readn(self->fd, p, size - sizeof(struct perf_event_header));
 
1216		if (err <= 0) {
1217			if (err == 0) {
1218				pr_err("unexpected end of event stream\n");
1219				goto done;
1220			}
1221
1222			pr_err("failed to read event data\n");
1223			goto out_err;
1224		}
1225	}
1226
1227	if ((skip = perf_session__process_event(self, event, tool, head)) < 0) {
1228		pr_err("%#" PRIx64 " [%#x]: failed to process type: %d\n",
1229		       head, event->header.size, event->header.type);
1230		err = -EINVAL;
1231		goto out_err;
1232	}
1233
1234	head += size;
1235
1236	if (skip > 0)
1237		head += skip;
1238
 
 
 
 
1239	if (!session_done())
1240		goto more;
1241done:
1242	err = 0;
 
 
 
 
 
 
 
1243out_err:
1244	free(buf);
1245	perf_session__warn_about_errors(self, tool);
1246	perf_session_free_sample_buffers(self);
 
 
1247	return err;
1248}
1249
1250static union perf_event *
1251fetch_mmaped_event(struct perf_session *session,
1252		   u64 head, size_t mmap_size, char *buf)
1253{
1254	union perf_event *event;
 
1255
1256	/*
1257	 * Ensure we have enough space remaining to read
1258	 * the size of the event in the headers.
1259	 */
1260	if (head + sizeof(event->header) > mmap_size)
1261		return NULL;
1262
1263	event = (union perf_event *)(buf + head);
 
 
 
 
 
 
1264
1265	if (session->header.needs_swap)
 
1266		perf_event_header__bswap(&event->header);
1267
1268	if (head + event->header.size > mmap_size)
 
 
1269		return NULL;
 
 
 
 
 
1270
1271	return event;
1272}
1273
1274int __perf_session__process_events(struct perf_session *session,
1275				   u64 data_offset, u64 data_size,
1276				   u64 file_size, struct perf_tool *tool)
1277{
1278	u64 head, page_offset, file_offset, file_pos, progress_next;
1279	int err, mmap_prot, mmap_flags, map_idx = 0;
1280	size_t	page_size, mmap_size;
1281	char *buf, *mmaps[8];
1282	union perf_event *event;
1283	uint32_t size;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1284
1285	perf_tool__fill_defaults(tool);
 
1286
1287	page_size = sysconf(_SC_PAGESIZE);
 
 
 
 
 
1288
1289	page_offset = page_size * (data_offset / page_size);
1290	file_offset = page_offset;
1291	head = data_offset - page_offset;
1292
1293	if (data_offset + data_size < file_size)
1294		file_size = data_offset + data_size;
 
1295
1296	progress_next = file_size / 16;
 
1297
1298	mmap_size = session->mmap_window;
1299	if (mmap_size > file_size)
1300		mmap_size = file_size;
 
 
 
1301
1302	memset(mmaps, 0, sizeof(mmaps));
 
 
 
 
 
1303
1304	mmap_prot  = PROT_READ;
1305	mmap_flags = MAP_SHARED;
1306
1307	if (session->header.needs_swap) {
 
 
1308		mmap_prot  |= PROT_WRITE;
1309		mmap_flags = MAP_PRIVATE;
1310	}
1311remap:
1312	buf = mmap(NULL, mmap_size, mmap_prot, mmap_flags, session->fd,
1313		   file_offset);
 
 
 
 
 
 
 
 
 
1314	if (buf == MAP_FAILED) {
1315		pr_err("failed to mmap file\n");
1316		err = -errno;
1317		goto out_err;
 
 
 
 
 
 
1318	}
1319	mmaps[map_idx] = buf;
1320	map_idx = (map_idx + 1) & (ARRAY_SIZE(mmaps) - 1);
1321	file_pos = file_offset + head;
1322
1323more:
1324	event = fetch_mmaped_event(session, head, mmap_size, buf);
1325	if (!event) {
1326		if (mmaps[map_idx]) {
1327			munmap(mmaps[map_idx], mmap_size);
1328			mmaps[map_idx] = NULL;
1329		}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1330
1331		page_offset = page_size * (head / page_size);
1332		file_offset += page_offset;
1333		head -= page_offset;
1334		goto remap;
1335	}
1336
1337	size = event->header.size;
1338
1339	if (size == 0 ||
1340	    perf_session__process_event(session, event, tool, file_pos) < 0) {
1341		pr_err("%#" PRIx64 " [%#x]: failed to process type: %d\n",
1342		       file_offset + head, event->header.size,
1343		       event->header.type);
1344		err = -EINVAL;
1345		goto out_err;
 
 
1346	}
1347
1348	head += size;
1349	file_pos += size;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1350
1351	if (file_pos >= progress_next) {
1352		progress_next += file_size / 16;
1353		ui_progress__update(file_pos, file_size,
1354				    "Processing events...");
1355	}
1356
1357	if (file_pos < file_size)
1358		goto more;
1359
1360	err = 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1361	/* do the final flush for ordered samples */
1362	session->ordered_samples.next_flush = ULLONG_MAX;
1363	flush_sample_queue(session, tool);
 
 
 
 
 
1364out_err:
1365	perf_session__warn_about_errors(session, tool);
1366	perf_session_free_sample_buffers(session);
 
 
 
 
 
 
 
 
 
1367	return err;
1368}
1369
1370int perf_session__process_events(struct perf_session *self,
1371				 struct perf_tool *tool)
 
 
 
 
 
 
 
 
 
 
 
1372{
1373	int err;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1374
1375	if (perf_session__register_idle_thread(self) == NULL)
 
 
1376		return -ENOMEM;
1377
1378	if (!self->fd_pipe)
1379		err = __perf_session__process_events(self,
1380						     self->header.data_offset,
1381						     self->header.data_size,
1382						     self->size, tool);
1383	else
1384		err = __perf_session__process_pipe_events(self, tool);
1385
1386	return err;
1387}
1388
1389bool perf_session__has_traces(struct perf_session *self, const char *msg)
1390{
1391	if (!(self->sample_type & PERF_SAMPLE_RAW)) {
1392		pr_err("No trace sample to read. Did you call 'perf %s'?\n", msg);
1393		return false;
 
 
1394	}
1395
1396	return true;
 
1397}
1398
1399int maps__set_kallsyms_ref_reloc_sym(struct map **maps,
1400				     const char *symbol_name, u64 addr)
1401{
1402	char *bracket;
1403	enum map_type i;
1404	struct ref_reloc_sym *ref;
 
1405
1406	ref = zalloc(sizeof(struct ref_reloc_sym));
1407	if (ref == NULL)
1408		return -ENOMEM;
1409
1410	ref->name = strdup(symbol_name);
1411	if (ref->name == NULL) {
1412		free(ref);
1413		return -ENOMEM;
1414	}
1415
1416	bracket = strchr(ref->name, ']');
1417	if (bracket)
1418		*bracket = '\0';
1419
1420	ref->addr = addr;
1421
1422	for (i = 0; i < MAP__NR_TYPES; ++i) {
1423		struct kmap *kmap = map__kmap(maps[i]);
1424		kmap->ref_reloc_sym = ref;
1425	}
1426
1427	return 0;
1428}
1429
1430size_t perf_session__fprintf_dsos(struct perf_session *self, FILE *fp)
1431{
1432	return __dsos__fprintf(&self->host_machine.kernel_dsos, fp) +
1433	       __dsos__fprintf(&self->host_machine.user_dsos, fp) +
1434	       machines__fprintf_dsos(&self->machines, fp);
1435}
1436
1437size_t perf_session__fprintf_dsos_buildid(struct perf_session *self, FILE *fp,
1438					  bool with_hits)
1439{
1440	size_t ret = machine__fprintf_dsos_buildid(&self->host_machine, fp, with_hits);
1441	return ret + machines__fprintf_dsos_buildid(&self->machines, fp, with_hits);
1442}
1443
1444size_t perf_session__fprintf_nr_events(struct perf_session *session, FILE *fp)
 
1445{
1446	struct perf_evsel *pos;
1447	size_t ret = fprintf(fp, "Aggregated stats:\n");
1448
1449	ret += hists__fprintf_nr_events(&session->hists, fp);
 
1450
1451	list_for_each_entry(pos, &session->evlist->entries, node) {
1452		ret += fprintf(fp, "%s stats:\n", event_name(pos));
1453		ret += hists__fprintf_nr_events(&pos->hists, fp);
1454	}
1455
 
1456	return ret;
1457}
1458
1459size_t perf_session__fprintf(struct perf_session *session, FILE *fp)
1460{
1461	/*
1462	 * FIXME: Here we have to actually print all the machines in this
1463	 * session, not just the host...
1464	 */
1465	return machine__fprintf(&session->host_machine, fp);
1466}
1467
1468void perf_session__remove_thread(struct perf_session *session,
1469				 struct thread *th)
1470{
1471	/*
1472	 * FIXME: This one makes no sense, we need to remove the thread from
1473	 * the machine it belongs to, perf_session can have many machines, so
1474	 * doing it always on ->host_machine is wrong.  Fix when auditing all
1475	 * the 'perf kvm' code.
1476	 */
1477	machine__remove_thread(&session->host_machine, th);
1478}
1479
1480struct perf_evsel *perf_session__find_first_evtype(struct perf_session *session,
1481					      unsigned int type)
1482{
1483	struct perf_evsel *pos;
1484
1485	list_for_each_entry(pos, &session->evlist->entries, node) {
1486		if (pos->attr.type == type)
1487			return pos;
1488	}
1489	return NULL;
1490}
1491
1492void perf_event__print_ip(union perf_event *event, struct perf_sample *sample,
1493			  struct machine *machine, struct perf_evsel *evsel,
1494			  int print_sym, int print_dso, int print_symoffset)
1495{
1496	struct addr_location al;
1497	struct callchain_cursor_node *node;
1498
1499	if (perf_event__preprocess_sample(event, machine, &al, sample,
1500					  NULL) < 0) {
1501		error("problem processing %d event, skipping it.\n",
1502			event->header.type);
1503		return;
1504	}
1505
1506	if (symbol_conf.use_callchain && sample->callchain) {
1507
1508		if (machine__resolve_callchain(machine, evsel, al.thread,
1509						sample->callchain, NULL) != 0) {
1510			if (verbose)
1511				error("Failed to resolve callchain. Skipping\n");
1512			return;
1513		}
1514		callchain_cursor_commit(&callchain_cursor);
1515
1516		while (1) {
1517			node = callchain_cursor_current(&callchain_cursor);
1518			if (!node)
1519				break;
1520
1521			printf("\t%16" PRIx64, node->ip);
1522			if (print_sym) {
1523				printf(" ");
1524				symbol__fprintf_symname(node->sym, stdout);
1525			}
1526			if (print_dso) {
1527				printf(" (");
1528				map__fprintf_dsoname(node->map, stdout);
1529				printf(")");
1530			}
1531			printf("\n");
1532
1533			callchain_cursor_advance(&callchain_cursor);
1534		}
1535
1536	} else {
1537		printf("%16" PRIx64, sample->ip);
1538		if (print_sym) {
1539			printf(" ");
1540			if (print_symoffset)
1541				symbol__fprintf_symname_offs(al.sym, &al,
1542							     stdout);
1543			else
1544				symbol__fprintf_symname(al.sym, stdout);
1545		}
1546
1547		if (print_dso) {
1548			printf(" (");
1549			map__fprintf_dsoname(al.map, stdout);
1550			printf(")");
1551		}
1552	}
1553}
1554
1555int perf_session__cpu_bitmap(struct perf_session *session,
1556			     const char *cpu_list, unsigned long *cpu_bitmap)
1557{
1558	int i;
1559	struct cpu_map *map;
 
1560
1561	for (i = 0; i < PERF_TYPE_MAX; ++i) {
1562		struct perf_evsel *evsel;
1563
1564		evsel = perf_session__find_first_evtype(session, i);
1565		if (!evsel)
1566			continue;
1567
1568		if (!(evsel->attr.sample_type & PERF_SAMPLE_CPU)) {
1569			pr_err("File does not contain CPU events. "
1570			       "Remove -c option to proceed.\n");
1571			return -1;
1572		}
1573	}
1574
1575	map = cpu_map__new(cpu_list);
1576	if (map == NULL) {
1577		pr_err("Invalid cpu_list\n");
1578		return -1;
1579	}
1580
1581	for (i = 0; i < map->nr; i++) {
1582		int cpu = map->map[i];
1583
1584		if (cpu >= MAX_NR_CPUS) {
1585			pr_err("Requested CPU %d too large. "
1586			       "Consider raising MAX_NR_CPUS\n", cpu);
1587			return -1;
1588		}
1589
1590		set_bit(cpu, cpu_bitmap);
1591	}
1592
1593	return 0;
 
 
 
 
1594}
1595
1596void perf_session__fprintf_info(struct perf_session *session, FILE *fp,
1597				bool full)
1598{
1599	struct stat st;
1600	int ret;
1601
1602	if (session == NULL || fp == NULL)
1603		return;
1604
1605	ret = fstat(session->fd, &st);
1606	if (ret == -1)
1607		return;
1608
1609	fprintf(fp, "# ========\n");
1610	fprintf(fp, "# captured on: %s", ctime(&st.st_ctime));
1611	perf_header__fprintf_info(session, fp, full);
1612	fprintf(fp, "# ========\n#\n");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1613}