blob: fee7a7171f1a4a0993b63477ff6f10424b6ca467 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -03002#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -03003#include <inttypes.h>
Arnaldo Carvalho de Melo57fc0322019-07-30 10:58:41 -03004#include <linux/err.h>
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -02005#include <linux/kernel.h>
Arnaldo Carvalho de Melo7f7c5362019-07-04 11:32:27 -03006#include <linux/zalloc.h>
Alexander Shishkin05a1f472017-03-16 18:41:59 +02007#include <api/fs/fs.h>
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -02008
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02009#include <byteswap.h>
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020010#include <unistd.h>
11#include <sys/types.h>
Arnaldo Carvalho de Meloa41794c2010-05-18 18:29:23 -030012#include <sys/mman.h>
Jiri Olsa9c3516d2019-07-21 13:24:30 +020013#include <perf/cpumap.h>
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020014
Arnaldo Carvalho de Melod3300a32019-08-30 15:09:54 -030015#include "map_symbol.h"
16#include "branch.h"
Arnaldo Carvalho de Melob4209022019-08-29 15:56:40 -030017#include "debug.h"
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030018#include "evlist.h"
19#include "evsel.h"
Arnaldo Carvalho de Melo98521b32017-04-25 15:45:35 -030020#include "memswap.h"
Arnaldo Carvalho de Melo1101f692019-01-27 13:42:37 +010021#include "map.h"
Arnaldo Carvalho de Melodaecf9e2019-01-28 00:03:34 +010022#include "symbol.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020023#include "session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020024#include "tool.h"
Jiri Olsa0f6a3012012-08-07 15:20:45 +020025#include "perf_regs.h"
Jiri Olsab0a45202014-06-12 09:50:11 +020026#include "asm/bug.h"
Adrian Hunterc4468702015-04-09 18:53:48 +030027#include "auxtrace.h"
Arnaldo Carvalho de Meloe7ff8922017-04-19 21:34:35 -030028#include "thread.h"
Adrian Huntera5499b32015-05-29 16:33:30 +030029#include "thread-stack.h"
Thomas Richter93115d32019-01-17 10:37:17 -030030#include "sample-raw.h"
Jiri Olsa2d2aea62015-10-25 15:51:42 +010031#include "stat.h"
Leo Yan81e70d72021-04-28 20:09:15 +080032#include "tsc.h"
Arnaldo Carvalho de Melo171f7472019-08-30 11:28:14 -030033#include "ui/progress.h"
Arnaldo Carvalho de Meloc1a604d2019-08-29 15:20:59 -030034#include "../perf.h"
Adrian Hunterec1891a2018-11-06 23:07:10 +020035#include "arch/common.h"
Kan Liang6b9bae62020-12-16 10:57:57 -080036#include "units.h"
Arnaldo Carvalho de Melofb71c86c2019-09-03 10:56:06 -030037#include <internal/lib.h>
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020038
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030039#ifdef HAVE_ZSTD_SUPPORT
40static int perf_session__process_compressed_event(struct perf_session *session,
41 union perf_event *event, u64 file_offset)
42{
43 void *src;
44 size_t decomp_size, src_size;
45 u64 decomp_last_rem = 0;
Alexey Budankov872c8ee2019-07-09 17:48:14 +030046 size_t mmap_len, decomp_len = session->header.env.comp_mmap_len;
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +030047 struct decomp *decomp, *decomp_last = session->active_decomp->decomp_last;
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030048
Alexey Budankov872c8ee2019-07-09 17:48:14 +030049 if (decomp_last) {
50 decomp_last_rem = decomp_last->size - decomp_last->head;
51 decomp_len += decomp_last_rem;
52 }
53
54 mmap_len = sizeof(struct decomp) + decomp_len;
55 decomp = mmap(NULL, mmap_len, PROT_READ|PROT_WRITE,
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030056 MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
57 if (decomp == MAP_FAILED) {
58 pr_err("Couldn't allocate memory for decompression\n");
59 return -1;
60 }
61
62 decomp->file_pos = file_offset;
Alexey Budankov872c8ee2019-07-09 17:48:14 +030063 decomp->mmap_len = mmap_len;
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030064 decomp->head = 0;
65
Alexey Budankov872c8ee2019-07-09 17:48:14 +030066 if (decomp_last_rem) {
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030067 memcpy(decomp->data, &(decomp_last->data[decomp_last->head]), decomp_last_rem);
68 decomp->size = decomp_last_rem;
69 }
70
Jiri Olsa72932372019-08-28 15:57:16 +020071 src = (void *)event + sizeof(struct perf_record_compressed);
72 src_size = event->pack.header.size - sizeof(struct perf_record_compressed);
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030073
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +030074 decomp_size = zstd_decompress_stream(session->active_decomp->zstd_decomp, src, src_size,
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030075 &(decomp->data[decomp_last_rem]), decomp_len - decomp_last_rem);
76 if (!decomp_size) {
Alexey Budankov872c8ee2019-07-09 17:48:14 +030077 munmap(decomp, mmap_len);
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030078 pr_err("Couldn't decompress data\n");
79 return -1;
80 }
81
82 decomp->size += decomp_size;
83
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +030084 if (session->active_decomp->decomp == NULL)
85 session->active_decomp->decomp = decomp;
86 else
87 session->active_decomp->decomp_last->next = decomp;
88
89 session->active_decomp->decomp_last = decomp;
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030090
Chris Wilson20befbb2020-08-20 22:25:01 +010091 pr_debug("decomp (B): %zd to %zd\n", src_size, decomp_size);
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030092
93 return 0;
94}
95#else /* !HAVE_ZSTD_SUPPORT */
96#define perf_session__process_compressed_event perf_session__process_compressed_event_stub
97#endif
98
Adrian Hunterc4468702015-04-09 18:53:48 +030099static int perf_session__deliver_event(struct perf_session *session,
100 union perf_event *event,
Adrian Hunterc4468702015-04-09 18:53:48 +0300101 struct perf_tool *tool,
102 u64 file_offset);
Arnaldo Carvalho de Melod10eb1e2015-03-03 12:20:38 -0300103
Namhyung Kim0ae03892021-07-19 15:31:50 -0700104static int perf_session__open(struct perf_session *session, int repipe_fd)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200105{
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100106 struct perf_data *data = session->data;
Tom Zanussi8dc58102010-04-01 23:59:15 -0500107
Namhyung Kim0ae03892021-07-19 15:31:50 -0700108 if (perf_session__read_header(session, repipe_fd) < 0) {
Arnaldo Carvalho de Meloe87b4912015-11-09 17:12:03 -0300109 pr_err("incompatible file format (rerun with -v to learn more)\n");
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200110 return -1;
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200111 }
112
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100113 if (perf_data__is_pipe(data))
Jiri Olsacc9784bd2013-10-15 16:27:34 +0200114 return 0;
115
Jiri Olsa3ba78bd2015-11-05 15:40:47 +0100116 if (perf_header__has_feat(&session->header, HEADER_STAT))
117 return 0;
118
Arnaldo Carvalho de Melob3c2cc22020-06-17 09:24:21 -0300119 if (!evlist__valid_sample_type(session->evlist)) {
Arnaldo Carvalho de Meloe87b4912015-11-09 17:12:03 -0300120 pr_err("non matching sample_type\n");
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200121 return -1;
Arnaldo Carvalho de Meloc2a70652011-06-02 11:04:54 -0300122 }
123
Arnaldo Carvalho de Melo8cedf3a2020-06-17 09:29:48 -0300124 if (!evlist__valid_sample_id_all(session->evlist)) {
Arnaldo Carvalho de Meloe87b4912015-11-09 17:12:03 -0300125 pr_err("non matching sample_id_all\n");
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200126 return -1;
Arnaldo Carvalho de Meloc2a70652011-06-02 11:04:54 -0300127 }
128
Arnaldo Carvalho de Melo78e1bc22020-11-30 15:07:49 -0300129 if (!evlist__valid_read_format(session->evlist)) {
Arnaldo Carvalho de Meloe87b4912015-11-09 17:12:03 -0300130 pr_err("non matching read_format\n");
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200131 return -1;
Jiri Olsa9ede4732012-10-10 17:38:13 +0200132 }
133
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200134 return 0;
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200135}
136
Arnaldo Carvalho de Melo7b56cce2012-08-01 19:31:00 -0300137void perf_session__set_id_hdr_size(struct perf_session *session)
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200138{
Arnaldo Carvalho de Melo1420ba22020-11-30 15:13:12 -0300139 u16 id_hdr_size = evlist__id_hdr_size(session->evlist);
Arnaldo Carvalho de Melo7b56cce2012-08-01 19:31:00 -0300140
Arnaldo Carvalho de Melo7b56cce2012-08-01 19:31:00 -0300141 machines__set_id_hdr_size(&session->machines, id_hdr_size);
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200142}
143
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300144int perf_session__create_kernel_maps(struct perf_session *session)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800145{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300146 int ret = machine__create_kernel_maps(&session->machines.host);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800147
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800148 if (ret >= 0)
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300149 ret = machines__create_guest_kernel_maps(&session->machines);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800150 return ret;
151}
152
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300153static void perf_session__destroy_kernel_maps(struct perf_session *session)
Arnaldo Carvalho de Melo076c6e452010-08-02 18:18:28 -0300154{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300155 machines__destroy_kernel_maps(&session->machines);
Arnaldo Carvalho de Melo076c6e452010-08-02 18:18:28 -0300156}
157
Adrian Huntercfe1c412014-07-31 09:00:45 +0300158static bool perf_session__has_comm_exec(struct perf_session *session)
159{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200160 struct evsel *evsel;
Adrian Huntercfe1c412014-07-31 09:00:45 +0300161
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300162 evlist__for_each_entry(session->evlist, evsel) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200163 if (evsel->core.attr.comm_exec)
Adrian Huntercfe1c412014-07-31 09:00:45 +0300164 return true;
165 }
166
167 return false;
168}
169
170static void perf_session__set_comm_exec(struct perf_session *session)
171{
172 bool comm_exec = perf_session__has_comm_exec(session);
173
174 machines__set_comm_exec(&session->machines, comm_exec);
175}
176
Arnaldo Carvalho de Melod10eb1e2015-03-03 12:20:38 -0300177static int ordered_events__deliver_event(struct ordered_events *oe,
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -0300178 struct ordered_event *event)
Arnaldo Carvalho de Melod10eb1e2015-03-03 12:20:38 -0300179{
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -0300180 struct perf_session *session = container_of(oe, struct perf_session,
181 ordered_events);
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -0300182
Jiri Olsa93d10af2017-08-03 13:21:14 +0200183 return perf_session__deliver_event(session, event->event,
Adrian Hunterc4468702015-04-09 18:53:48 +0300184 session->tool, event->file_offset);
Arnaldo Carvalho de Melod10eb1e2015-03-03 12:20:38 -0300185}
186
Namhyung Kim2681bd82021-07-19 15:31:49 -0700187struct perf_session *__perf_session__new(struct perf_data *data,
Namhyung Kim0ae03892021-07-19 15:31:50 -0700188 bool repipe, int repipe_fd,
Namhyung Kim2681bd82021-07-19 15:31:49 -0700189 struct perf_tool *tool)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200190{
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530191 int ret = -ENOMEM;
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300192 struct perf_session *session = zalloc(sizeof(*session));
Robert Richterefad1412011-12-07 10:02:54 +0100193
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300194 if (!session)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200195 goto out;
196
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300197 session->repipe = repipe;
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -0300198 session->tool = tool;
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +0300199 session->decomp_data.zstd_decomp = &session->zstd_data;
200 session->active_decomp = &session->decomp_data;
Adrian Hunter99fa2982015-04-30 17:37:25 +0300201 INIT_LIST_HEAD(&session->auxtrace_index);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300202 machines__init(&session->machines);
Jiri Olsaa4a66682018-11-07 16:58:36 +0100203 ordered_events__init(&session->ordered_events,
204 ordered_events__deliver_event, NULL);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200205
Song Liue4378f02019-03-11 22:30:42 -0700206 perf_env__init(&session->header.env);
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100207 if (data) {
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530208 ret = perf_data__open(data);
209 if (ret < 0)
Arnaldo Carvalho de Melo64abebf72010-01-27 21:05:52 -0200210 goto out_delete;
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200211
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100212 session->data = data;
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200213
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100214 if (perf_data__is_read(data)) {
Namhyung Kim0ae03892021-07-19 15:31:50 -0700215 ret = perf_session__open(session, repipe_fd);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530216 if (ret < 0)
Jiri Olsabefa09b2019-03-05 16:25:35 +0100217 goto out_delete;
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200218
David Carrillo-Cisneros0973ad92017-04-10 13:14:30 -0700219 /*
220 * set session attributes that are present in perf.data
221 * but not in pipe-mode.
222 */
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100223 if (!data->is_pipe) {
David Carrillo-Cisneros0973ad92017-04-10 13:14:30 -0700224 perf_session__set_id_hdr_size(session);
225 perf_session__set_comm_exec(session);
226 }
Thomas Richter93115d32019-01-17 10:37:17 -0300227
Arnaldo Carvalho de Melo44d2a552020-11-30 15:11:10 -0300228 evlist__init_trace_event_sample_raw(session->evlist);
Jiri Olsaec65def2019-03-08 14:47:35 +0100229
230 /* Open the directory data. */
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530231 if (data->is_dir) {
232 ret = perf_data__open_dir(data);
Jiri Olsa01e97a52019-10-07 13:20:27 +0200233 if (ret)
234 goto out_delete;
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530235 }
Adrian Huntereeb399b2019-10-04 11:31:21 +0300236
237 if (!symbol_conf.kallsyms_name &&
238 !symbol_conf.vmlinux_name)
239 symbol_conf.kallsyms_name = perf_data__kallsyms_name(data);
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200240 }
Arnaldo Carvalho de Melo4cde9982015-09-09 12:25:00 -0300241 } else {
242 session->machines.host.env = &perf_env;
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200243 }
244
Adrian Hunterec1891a2018-11-06 23:07:10 +0200245 session->machines.host.single_address_space =
246 perf_env__single_address_space(session->machines.host.env);
247
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100248 if (!data || perf_data__is_write(data)) {
Arnaldo Carvalho de Melo64abebf72010-01-27 21:05:52 -0200249 /*
250 * In O_RDONLY mode this will be performed when reading the
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200251 * kernel MMAP event, in perf_event__process_mmap().
Arnaldo Carvalho de Melo64abebf72010-01-27 21:05:52 -0200252 */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300253 if (perf_session__create_kernel_maps(session) < 0)
Andi Kleena5c2a4c2014-09-24 14:39:54 -0700254 pr_warning("Cannot read kernel map\n");
Arnaldo Carvalho de Melo64abebf72010-01-27 21:05:52 -0200255 }
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200256
David Carrillo-Cisneros0973ad92017-04-10 13:14:30 -0700257 /*
258 * In pipe-mode, evlist is empty until PERF_RECORD_HEADER_ATTR is
Arnaldo Carvalho de Melo8cedf3a2020-06-17 09:29:48 -0300259 * processed, so evlist__sample_id_all is not meaningful here.
David Carrillo-Cisneros0973ad92017-04-10 13:14:30 -0700260 */
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100261 if ((!data || !data->is_pipe) && tool && tool->ordering_requires_timestamps &&
Arnaldo Carvalho de Melo8cedf3a2020-06-17 09:29:48 -0300262 tool->ordered_events && !evlist__sample_id_all(session->evlist)) {
Ian Munsie21ef97f2010-12-10 14:09:16 +1100263 dump_printf("WARNING: No sample_id_all support, falling back to unordered processing\n");
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200264 tool->ordered_events = false;
Arnaldo Carvalho de Melod10eb1e2015-03-03 12:20:38 -0300265 }
Ian Munsie21ef97f2010-12-10 14:09:16 +1100266
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300267 return session;
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200268
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200269 out_delete:
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300270 perf_session__delete(session);
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200271 out:
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530272 return ERR_PTR(ret);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200273}
274
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200275static void perf_session__delete_threads(struct perf_session *session)
276{
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300277 machine__delete_threads(&session->machines.host);
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200278}
279
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +0300280static void perf_decomp__release_events(struct decomp *next)
Alexey Budankovcb62c6f2019-03-18 20:45:11 +0300281{
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +0300282 struct decomp *decomp;
Alexey Budankov872c8ee2019-07-09 17:48:14 +0300283 size_t mmap_len;
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +0300284
Alexey Budankovcb62c6f2019-03-18 20:45:11 +0300285 do {
286 decomp = next;
287 if (decomp == NULL)
288 break;
289 next = decomp->next;
Alexey Budankov872c8ee2019-07-09 17:48:14 +0300290 mmap_len = decomp->mmap_len;
291 munmap(decomp, mmap_len);
Alexey Budankovcb62c6f2019-03-18 20:45:11 +0300292 } while (1);
293}
294
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300295void perf_session__delete(struct perf_session *session)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200296{
Arnaldo Carvalho de Meloe1446552016-06-22 10:02:16 -0300297 if (session == NULL)
298 return;
Adrian Hunterc4468702015-04-09 18:53:48 +0300299 auxtrace__free(session);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300300 auxtrace_index__free(&session->auxtrace_index);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300301 perf_session__destroy_kernel_maps(session);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300302 perf_session__delete_threads(session);
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +0300303 perf_decomp__release_events(session->decomp_data.decomp);
Arnaldo Carvalho de Melof0ce8882015-09-08 13:30:00 -0300304 perf_env__exit(&session->header.env);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300305 machines__exit(&session->machines);
Riccardo Mancinicf96b8e2021-06-25 01:19:25 +0200306 if (session->data) {
307 if (perf_data__is_read(session->data))
308 evlist__delete(session->evlist);
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100309 perf_data__close(session->data);
Riccardo Mancinicf96b8e2021-06-25 01:19:25 +0200310 }
Riccardo Mancini423b9172021-07-15 18:07:16 +0200311 trace_event__cleanup(&session->tevent);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300312 free(session);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200313}
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200314
Jiri Olsa89f16882018-09-13 14:54:03 +0200315static int process_event_synth_tracing_data_stub(struct perf_session *session
Adrian Hunter47c3d102013-07-04 16:20:21 +0300316 __maybe_unused,
317 union perf_event *event
Jiri Olsa89f16882018-09-13 14:54:03 +0200318 __maybe_unused)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200319{
320 dump_printf(": unhandled!\n");
321 return 0;
322}
323
Adrian Hunter47c3d102013-07-04 16:20:21 +0300324static int process_event_synth_attr_stub(struct perf_tool *tool __maybe_unused,
325 union perf_event *event __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +0200326 struct evlist **pevlist
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300327 __maybe_unused)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200328{
329 dump_printf(": unhandled!\n");
330 return 0;
331}
332
Jiri Olsaffe777252015-10-25 15:51:36 +0100333static int process_event_synth_event_update_stub(struct perf_tool *tool __maybe_unused,
334 union perf_event *event __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +0200335 struct evlist **pevlist
Jiri Olsaffe777252015-10-25 15:51:36 +0100336 __maybe_unused)
337{
Jiri Olsa2d2aea62015-10-25 15:51:42 +0100338 if (dump_trace)
339 perf_event__fprintf_event_update(event, stdout);
340
Jiri Olsaffe777252015-10-25 15:51:36 +0100341 dump_printf(": unhandled!\n");
342 return 0;
343}
344
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300345static int process_event_sample_stub(struct perf_tool *tool __maybe_unused,
346 union perf_event *event __maybe_unused,
347 struct perf_sample *sample __maybe_unused,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200348 struct evsel *evsel __maybe_unused,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300349 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300350{
351 dump_printf(": unhandled!\n");
352 return 0;
353}
354
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300355static int process_event_stub(struct perf_tool *tool __maybe_unused,
356 union perf_event *event __maybe_unused,
357 struct perf_sample *sample __maybe_unused,
358 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200359{
360 dump_printf(": unhandled!\n");
361 return 0;
362}
363
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300364static int process_finished_round_stub(struct perf_tool *tool __maybe_unused,
365 union perf_event *event __maybe_unused,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -0300366 struct ordered_events *oe __maybe_unused)
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200367{
368 dump_printf(": unhandled!\n");
369 return 0;
370}
371
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200372static int process_finished_round(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200373 union perf_event *event,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -0300374 struct ordered_events *oe);
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200375
Adrian Huntera16ac022015-04-09 18:53:43 +0300376static int skipn(int fd, off_t n)
377{
378 char buf[4096];
379 ssize_t ret;
380
381 while (n > 0) {
382 ret = read(fd, buf, min(n, (off_t)sizeof(buf)));
383 if (ret <= 0)
384 return ret;
385 n -= ret;
386 }
387
388 return 0;
389}
390
Jiri Olsa73365552018-09-13 14:54:04 +0200391static s64 process_event_auxtrace_stub(struct perf_session *session __maybe_unused,
392 union perf_event *event)
Adrian Huntera16ac022015-04-09 18:53:43 +0300393{
394 dump_printf(": unhandled!\n");
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100395 if (perf_data__is_pipe(session->data))
396 skipn(perf_data__fd(session->data), event->auxtrace.size);
Adrian Huntera16ac022015-04-09 18:53:43 +0300397 return event->auxtrace.size;
398}
399
Jiri Olsa89f16882018-09-13 14:54:03 +0200400static int process_event_op2_stub(struct perf_session *session __maybe_unused,
401 union perf_event *event __maybe_unused)
Adrian Huntere9bf54d2015-04-09 18:53:47 +0300402{
403 dump_printf(": unhandled!\n");
404 return 0;
405}
406
Jiri Olsa5f3339d2015-10-25 15:51:19 +0100407
408static
Jiri Olsa89f16882018-09-13 14:54:03 +0200409int process_event_thread_map_stub(struct perf_session *session __maybe_unused,
410 union perf_event *event __maybe_unused)
Jiri Olsa5f3339d2015-10-25 15:51:19 +0100411{
Jiri Olsa2d2aea62015-10-25 15:51:42 +0100412 if (dump_trace)
413 perf_event__fprintf_thread_map(event, stdout);
414
Jiri Olsa5f3339d2015-10-25 15:51:19 +0100415 dump_printf(": unhandled!\n");
416 return 0;
417}
418
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100419static
Jiri Olsa89f16882018-09-13 14:54:03 +0200420int process_event_cpu_map_stub(struct perf_session *session __maybe_unused,
421 union perf_event *event __maybe_unused)
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100422{
Jiri Olsa2d2aea62015-10-25 15:51:42 +0100423 if (dump_trace)
424 perf_event__fprintf_cpu_map(event, stdout);
425
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100426 dump_printf(": unhandled!\n");
427 return 0;
428}
429
Jiri Olsa374fb9e2015-10-25 15:51:27 +0100430static
Jiri Olsa89f16882018-09-13 14:54:03 +0200431int process_event_stat_config_stub(struct perf_session *session __maybe_unused,
432 union perf_event *event __maybe_unused)
Jiri Olsa374fb9e2015-10-25 15:51:27 +0100433{
Jiri Olsa2d2aea62015-10-25 15:51:42 +0100434 if (dump_trace)
435 perf_event__fprintf_stat_config(event, stdout);
436
Jiri Olsa374fb9e2015-10-25 15:51:27 +0100437 dump_printf(": unhandled!\n");
438 return 0;
439}
440
Jiri Olsa89f16882018-09-13 14:54:03 +0200441static int process_stat_stub(struct perf_session *perf_session __maybe_unused,
442 union perf_event *event)
Jiri Olsad80518c2015-10-25 15:51:30 +0100443{
Jiri Olsa2d2aea62015-10-25 15:51:42 +0100444 if (dump_trace)
445 perf_event__fprintf_stat(event, stdout);
446
Jiri Olsad80518c2015-10-25 15:51:30 +0100447 dump_printf(": unhandled!\n");
448 return 0;
449}
450
Jiri Olsa89f16882018-09-13 14:54:03 +0200451static int process_stat_round_stub(struct perf_session *perf_session __maybe_unused,
452 union perf_event *event)
Jiri Olsa2d8f0f12015-10-25 15:51:33 +0100453{
Jiri Olsa2d2aea62015-10-25 15:51:42 +0100454 if (dump_trace)
455 perf_event__fprintf_stat_round(event, stdout);
456
Jiri Olsa2d8f0f12015-10-25 15:51:33 +0100457 dump_printf(": unhandled!\n");
458 return 0;
459}
460
Leo Yan81e70d72021-04-28 20:09:15 +0800461static int process_event_time_conv_stub(struct perf_session *perf_session __maybe_unused,
462 union perf_event *event)
463{
464 if (dump_trace)
465 perf_event__fprintf_time_conv(event, stdout);
466
467 dump_printf(": unhandled!\n");
468 return 0;
469}
470
Alexey Budankov61a77732019-03-18 20:45:11 +0300471static int perf_session__process_compressed_event_stub(struct perf_session *session __maybe_unused,
472 union perf_event *event __maybe_unused,
473 u64 file_offset __maybe_unused)
474{
475 dump_printf(": unhandled!\n");
476 return 0;
477}
478
David Ahern9c501402013-08-02 14:05:41 -0600479void perf_tool__fill_defaults(struct perf_tool *tool)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200480{
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200481 if (tool->sample == NULL)
482 tool->sample = process_event_sample_stub;
483 if (tool->mmap == NULL)
484 tool->mmap = process_event_stub;
David Ahern6adb0b02013-09-22 19:44:59 -0600485 if (tool->mmap2 == NULL)
486 tool->mmap2 = process_event_stub;
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200487 if (tool->comm == NULL)
488 tool->comm = process_event_stub;
Namhyung Kim7f0cd232017-10-17 22:29:00 +0900489 if (tool->namespaces == NULL)
490 tool->namespaces = process_event_stub;
Namhyung Kimba78c1c2020-03-25 21:45:30 +0900491 if (tool->cgroup == NULL)
492 tool->cgroup = process_event_stub;
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200493 if (tool->fork == NULL)
494 tool->fork = process_event_stub;
495 if (tool->exit == NULL)
496 tool->exit = process_event_stub;
497 if (tool->lost == NULL)
498 tool->lost = perf_event__process_lost;
Kan Liangc4937a92015-05-10 15:13:15 -0400499 if (tool->lost_samples == NULL)
500 tool->lost_samples = perf_event__process_lost_samples;
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300501 if (tool->aux == NULL)
502 tool->aux = perf_event__process_aux;
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300503 if (tool->itrace_start == NULL)
504 tool->itrace_start = perf_event__process_itrace_start;
Adrian Hunter02860392015-07-21 12:44:03 +0300505 if (tool->context_switch == NULL)
506 tool->context_switch = perf_event__process_switch;
Song Liu9aa0bfa2019-01-17 08:15:17 -0800507 if (tool->ksymbol == NULL)
508 tool->ksymbol = perf_event__process_ksymbol;
Arnaldo Carvalho de Melo3f604b52019-08-26 19:28:13 -0300509 if (tool->bpf == NULL)
510 tool->bpf = perf_event__process_bpf;
Adrian Hunter246eba82020-05-12 15:19:18 +0300511 if (tool->text_poke == NULL)
512 tool->text_poke = perf_event__process_text_poke;
Adrian Hunter61750472021-09-07 19:39:02 +0300513 if (tool->aux_output_hw_id == NULL)
514 tool->aux_output_hw_id = perf_event__process_aux_output_hw_id;
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200515 if (tool->read == NULL)
516 tool->read = process_event_sample_stub;
517 if (tool->throttle == NULL)
518 tool->throttle = process_event_stub;
519 if (tool->unthrottle == NULL)
520 tool->unthrottle = process_event_stub;
521 if (tool->attr == NULL)
522 tool->attr = process_event_synth_attr_stub;
Jiri Olsaffe777252015-10-25 15:51:36 +0100523 if (tool->event_update == NULL)
524 tool->event_update = process_event_synth_event_update_stub;
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200525 if (tool->tracing_data == NULL)
526 tool->tracing_data = process_event_synth_tracing_data_stub;
527 if (tool->build_id == NULL)
Adrian Hunter5fb0ac12016-03-07 16:44:39 -0300528 tool->build_id = process_event_op2_stub;
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200529 if (tool->finished_round == NULL) {
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200530 if (tool->ordered_events)
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200531 tool->finished_round = process_finished_round;
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200532 else
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200533 tool->finished_round = process_finished_round_stub;
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200534 }
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200535 if (tool->id_index == NULL)
Adrian Hunter5fb0ac12016-03-07 16:44:39 -0300536 tool->id_index = process_event_op2_stub;
Adrian Huntera16ac022015-04-09 18:53:43 +0300537 if (tool->auxtrace_info == NULL)
Adrian Hunter5fb0ac12016-03-07 16:44:39 -0300538 tool->auxtrace_info = process_event_op2_stub;
Adrian Huntera16ac022015-04-09 18:53:43 +0300539 if (tool->auxtrace == NULL)
540 tool->auxtrace = process_event_auxtrace_stub;
Adrian Huntere9bf54d2015-04-09 18:53:47 +0300541 if (tool->auxtrace_error == NULL)
Adrian Hunter5fb0ac12016-03-07 16:44:39 -0300542 tool->auxtrace_error = process_event_op2_stub;
Jiri Olsa5f3339d2015-10-25 15:51:19 +0100543 if (tool->thread_map == NULL)
544 tool->thread_map = process_event_thread_map_stub;
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100545 if (tool->cpu_map == NULL)
546 tool->cpu_map = process_event_cpu_map_stub;
Jiri Olsa374fb9e2015-10-25 15:51:27 +0100547 if (tool->stat_config == NULL)
548 tool->stat_config = process_event_stat_config_stub;
Jiri Olsad80518c2015-10-25 15:51:30 +0100549 if (tool->stat == NULL)
550 tool->stat = process_stat_stub;
Jiri Olsa2d8f0f12015-10-25 15:51:33 +0100551 if (tool->stat_round == NULL)
552 tool->stat_round = process_stat_round_stub;
Adrian Hunter46bc29b2016-03-08 10:38:44 +0200553 if (tool->time_conv == NULL)
Leo Yan81e70d72021-04-28 20:09:15 +0800554 tool->time_conv = process_event_time_conv_stub;
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -0700555 if (tool->feature == NULL)
556 tool->feature = process_event_op2_stub;
Alexey Budankov61a77732019-03-18 20:45:11 +0300557 if (tool->compressed == NULL)
Alexey Budankovcb62c6f2019-03-18 20:45:11 +0300558 tool->compressed = perf_session__process_compressed_event;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200559}
Arnaldo Carvalho de Melo48000a12014-12-17 17:24:45 -0300560
Jiri Olsa268fb202012-05-30 14:23:43 +0200561static void swap_sample_id_all(union perf_event *event, void *data)
562{
563 void *end = (void *) event + event->header.size;
564 int size = end - data;
565
566 BUG_ON(size % sizeof(u64));
567 mem_bswap_64(data, size);
568}
569
570static void perf_event__all64_swap(union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300571 bool sample_id_all __maybe_unused)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200572{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200573 struct perf_event_header *hdr = &event->header;
574 mem_bswap_64(hdr + 1, event->header.size - sizeof(*hdr));
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200575}
576
Jiri Olsa268fb202012-05-30 14:23:43 +0200577static void perf_event__comm_swap(union perf_event *event, bool sample_id_all)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200578{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200579 event->comm.pid = bswap_32(event->comm.pid);
580 event->comm.tid = bswap_32(event->comm.tid);
Jiri Olsa268fb202012-05-30 14:23:43 +0200581
582 if (sample_id_all) {
583 void *data = &event->comm.comm;
584
Irina Tirdea9ac3e482012-09-11 01:15:01 +0300585 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
Jiri Olsa268fb202012-05-30 14:23:43 +0200586 swap_sample_id_all(event, data);
587 }
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200588}
589
Jiri Olsa268fb202012-05-30 14:23:43 +0200590static void perf_event__mmap_swap(union perf_event *event,
591 bool sample_id_all)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200592{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200593 event->mmap.pid = bswap_32(event->mmap.pid);
594 event->mmap.tid = bswap_32(event->mmap.tid);
595 event->mmap.start = bswap_64(event->mmap.start);
596 event->mmap.len = bswap_64(event->mmap.len);
597 event->mmap.pgoff = bswap_64(event->mmap.pgoff);
Jiri Olsa268fb202012-05-30 14:23:43 +0200598
599 if (sample_id_all) {
600 void *data = &event->mmap.filename;
601
Irina Tirdea9ac3e482012-09-11 01:15:01 +0300602 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
Jiri Olsa268fb202012-05-30 14:23:43 +0200603 swap_sample_id_all(event, data);
604 }
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200605}
606
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200607static void perf_event__mmap2_swap(union perf_event *event,
608 bool sample_id_all)
609{
610 event->mmap2.pid = bswap_32(event->mmap2.pid);
611 event->mmap2.tid = bswap_32(event->mmap2.tid);
612 event->mmap2.start = bswap_64(event->mmap2.start);
613 event->mmap2.len = bswap_64(event->mmap2.len);
614 event->mmap2.pgoff = bswap_64(event->mmap2.pgoff);
Jiri Olsa29245ae2020-12-14 11:54:47 +0100615
616 if (!(event->header.misc & PERF_RECORD_MISC_MMAP_BUILD_ID)) {
617 event->mmap2.maj = bswap_32(event->mmap2.maj);
618 event->mmap2.min = bswap_32(event->mmap2.min);
619 event->mmap2.ino = bswap_64(event->mmap2.ino);
620 event->mmap2.ino_generation = bswap_64(event->mmap2.ino_generation);
621 }
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200622
623 if (sample_id_all) {
624 void *data = &event->mmap2.filename;
625
626 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
627 swap_sample_id_all(event, data);
628 }
629}
Jiri Olsa268fb202012-05-30 14:23:43 +0200630static void perf_event__task_swap(union perf_event *event, bool sample_id_all)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200631{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200632 event->fork.pid = bswap_32(event->fork.pid);
633 event->fork.tid = bswap_32(event->fork.tid);
634 event->fork.ppid = bswap_32(event->fork.ppid);
635 event->fork.ptid = bswap_32(event->fork.ptid);
636 event->fork.time = bswap_64(event->fork.time);
Jiri Olsa268fb202012-05-30 14:23:43 +0200637
638 if (sample_id_all)
639 swap_sample_id_all(event, &event->fork + 1);
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200640}
641
Jiri Olsa268fb202012-05-30 14:23:43 +0200642static void perf_event__read_swap(union perf_event *event, bool sample_id_all)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200643{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200644 event->read.pid = bswap_32(event->read.pid);
645 event->read.tid = bswap_32(event->read.tid);
646 event->read.value = bswap_64(event->read.value);
647 event->read.time_enabled = bswap_64(event->read.time_enabled);
648 event->read.time_running = bswap_64(event->read.time_running);
649 event->read.id = bswap_64(event->read.id);
Jiri Olsa268fb202012-05-30 14:23:43 +0200650
651 if (sample_id_all)
652 swap_sample_id_all(event, &event->read + 1);
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200653}
654
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300655static void perf_event__aux_swap(union perf_event *event, bool sample_id_all)
656{
657 event->aux.aux_offset = bswap_64(event->aux.aux_offset);
658 event->aux.aux_size = bswap_64(event->aux.aux_size);
659 event->aux.flags = bswap_64(event->aux.flags);
660
661 if (sample_id_all)
662 swap_sample_id_all(event, &event->aux + 1);
663}
664
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300665static void perf_event__itrace_start_swap(union perf_event *event,
666 bool sample_id_all)
667{
668 event->itrace_start.pid = bswap_32(event->itrace_start.pid);
669 event->itrace_start.tid = bswap_32(event->itrace_start.tid);
670
671 if (sample_id_all)
672 swap_sample_id_all(event, &event->itrace_start + 1);
673}
674
Adrian Hunter02860392015-07-21 12:44:03 +0300675static void perf_event__switch_swap(union perf_event *event, bool sample_id_all)
676{
677 if (event->header.type == PERF_RECORD_SWITCH_CPU_WIDE) {
678 event->context_switch.next_prev_pid =
679 bswap_32(event->context_switch.next_prev_pid);
680 event->context_switch.next_prev_tid =
681 bswap_32(event->context_switch.next_prev_tid);
682 }
683
684 if (sample_id_all)
685 swap_sample_id_all(event, &event->context_switch + 1);
686}
687
Adrian Hunter246eba82020-05-12 15:19:18 +0300688static void perf_event__text_poke_swap(union perf_event *event, bool sample_id_all)
689{
690 event->text_poke.addr = bswap_64(event->text_poke.addr);
691 event->text_poke.old_len = bswap_16(event->text_poke.old_len);
692 event->text_poke.new_len = bswap_16(event->text_poke.new_len);
693
694 if (sample_id_all) {
695 size_t len = sizeof(event->text_poke.old_len) +
696 sizeof(event->text_poke.new_len) +
697 event->text_poke.old_len +
698 event->text_poke.new_len;
699 void *data = &event->text_poke.old_len;
700
701 data += PERF_ALIGN(len, sizeof(u64));
702 swap_sample_id_all(event, data);
703 }
704}
705
Jiri Olsadd96c462013-09-01 12:36:15 +0200706static void perf_event__throttle_swap(union perf_event *event,
707 bool sample_id_all)
708{
709 event->throttle.time = bswap_64(event->throttle.time);
710 event->throttle.id = bswap_64(event->throttle.id);
711 event->throttle.stream_id = bswap_64(event->throttle.stream_id);
712
713 if (sample_id_all)
714 swap_sample_id_all(event, &event->throttle + 1);
715}
716
Namhyung Kimacd244b2019-05-22 14:32:49 +0900717static void perf_event__namespaces_swap(union perf_event *event,
718 bool sample_id_all)
719{
720 u64 i;
721
722 event->namespaces.pid = bswap_32(event->namespaces.pid);
723 event->namespaces.tid = bswap_32(event->namespaces.tid);
724 event->namespaces.nr_namespaces = bswap_64(event->namespaces.nr_namespaces);
725
726 for (i = 0; i < event->namespaces.nr_namespaces; i++) {
727 struct perf_ns_link_info *ns = &event->namespaces.link_info[i];
728
729 ns->dev = bswap_64(ns->dev);
730 ns->ino = bswap_64(ns->ino);
731 }
732
733 if (sample_id_all)
734 swap_sample_id_all(event, &event->namespaces.link_info[i]);
735}
736
Namhyung Kim2c589d92020-11-02 23:02:28 +0900737static void perf_event__cgroup_swap(union perf_event *event, bool sample_id_all)
738{
739 event->cgroup.id = bswap_64(event->cgroup.id);
740
741 if (sample_id_all) {
742 void *data = &event->cgroup.path;
743
744 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
745 swap_sample_id_all(event, data);
746 }
747}
748
Jiri Olsae108c662012-05-16 08:59:03 +0200749static u8 revbyte(u8 b)
750{
751 int rev = (b >> 4) | ((b & 0xf) << 4);
752 rev = ((rev & 0xcc) >> 2) | ((rev & 0x33) << 2);
753 rev = ((rev & 0xaa) >> 1) | ((rev & 0x55) << 1);
754 return (u8) rev;
755}
756
757/*
758 * XXX this is hack in attempt to carry flags bitfield
Adam Buchbinderbd1a0be52016-02-24 10:02:25 -0800759 * through endian village. ABI says:
Jiri Olsae108c662012-05-16 08:59:03 +0200760 *
761 * Bit-fields are allocated from right to left (least to most significant)
762 * on little-endian implementations and from left to right (most to least
763 * significant) on big-endian implementations.
764 *
765 * The above seems to be byte specific, so we need to reverse each
766 * byte of the bitfield. 'Internet' also says this might be implementation
767 * specific and we probably need proper fix and carry perf_event_attr
768 * bitfield flags in separate data file FEAT_ section. Thought this seems
769 * to work for now.
770 */
771static void swap_bitfield(u8 *p, unsigned len)
772{
773 unsigned i;
774
775 for (i = 0; i < len; i++) {
776 *p = revbyte(*p);
777 p++;
778 }
779}
780
David Aherneda39132011-07-15 12:34:09 -0600781/* exported for swapping attributes in file header */
782void perf_event__attr_swap(struct perf_event_attr *attr)
783{
784 attr->type = bswap_32(attr->type);
785 attr->size = bswap_32(attr->size);
Jiri Olsae108c662012-05-16 08:59:03 +0200786
Wang Nanb30b6172015-06-17 09:56:39 +0000787#define bswap_safe(f, n) \
788 (attr->size > (offsetof(struct perf_event_attr, f) + \
789 sizeof(attr->f) * (n)))
790#define bswap_field(f, sz) \
791do { \
792 if (bswap_safe(f, 0)) \
793 attr->f = bswap_##sz(attr->f); \
794} while(0)
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300795#define bswap_field_16(f) bswap_field(f, 16)
Wang Nanb30b6172015-06-17 09:56:39 +0000796#define bswap_field_32(f) bswap_field(f, 32)
797#define bswap_field_64(f) bswap_field(f, 64)
798
799 bswap_field_64(config);
800 bswap_field_64(sample_period);
801 bswap_field_64(sample_type);
802 bswap_field_64(read_format);
803 bswap_field_32(wakeup_events);
804 bswap_field_32(bp_type);
805 bswap_field_64(bp_addr);
806 bswap_field_64(bp_len);
807 bswap_field_64(branch_sample_type);
808 bswap_field_64(sample_regs_user);
809 bswap_field_32(sample_stack_user);
810 bswap_field_32(aux_watermark);
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300811 bswap_field_16(sample_max_stack);
Adrian Hunter98dcf142019-11-15 14:42:11 +0200812 bswap_field_32(aux_sample_size);
Wang Nanb30b6172015-06-17 09:56:39 +0000813
814 /*
815 * After read_format are bitfields. Check read_format because
816 * we are unable to use offsetof on bitfield.
817 */
818 if (bswap_safe(read_format, 1))
819 swap_bitfield((u8 *) (&attr->read_format + 1),
820 sizeof(u64));
821#undef bswap_field_64
822#undef bswap_field_32
823#undef bswap_field
824#undef bswap_safe
David Aherneda39132011-07-15 12:34:09 -0600825}
826
Jiri Olsa268fb202012-05-30 14:23:43 +0200827static void perf_event__hdr_attr_swap(union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300828 bool sample_id_all __maybe_unused)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500829{
830 size_t size;
831
David Aherneda39132011-07-15 12:34:09 -0600832 perf_event__attr_swap(&event->attr.attr);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500833
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200834 size = event->header.size;
835 size -= (void *)&event->attr.id - (void *)event;
836 mem_bswap_64(event->attr.id, size);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500837}
838
Jiri Olsaffe777252015-10-25 15:51:36 +0100839static void perf_event__event_update_swap(union perf_event *event,
840 bool sample_id_all __maybe_unused)
841{
842 event->event_update.type = bswap_64(event->event_update.type);
843 event->event_update.id = bswap_64(event->event_update.id);
844}
845
Jiri Olsa268fb202012-05-30 14:23:43 +0200846static void perf_event__event_type_swap(union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300847 bool sample_id_all __maybe_unused)
Tom Zanussicd19a032010-04-01 23:59:20 -0500848{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200849 event->event_type.event_type.event_id =
850 bswap_64(event->event_type.event_type.event_id);
Tom Zanussicd19a032010-04-01 23:59:20 -0500851}
852
Jiri Olsa268fb202012-05-30 14:23:43 +0200853static void perf_event__tracing_data_swap(union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300854 bool sample_id_all __maybe_unused)
Tom Zanussi92155452010-04-01 23:59:21 -0500855{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200856 event->tracing_data.size = bswap_32(event->tracing_data.size);
Tom Zanussi92155452010-04-01 23:59:21 -0500857}
858
Adrian Huntera16ac022015-04-09 18:53:43 +0300859static void perf_event__auxtrace_info_swap(union perf_event *event,
860 bool sample_id_all __maybe_unused)
861{
862 size_t size;
863
864 event->auxtrace_info.type = bswap_32(event->auxtrace_info.type);
865
866 size = event->header.size;
867 size -= (void *)&event->auxtrace_info.priv - (void *)event;
868 mem_bswap_64(event->auxtrace_info.priv, size);
869}
870
871static void perf_event__auxtrace_swap(union perf_event *event,
872 bool sample_id_all __maybe_unused)
873{
874 event->auxtrace.size = bswap_64(event->auxtrace.size);
875 event->auxtrace.offset = bswap_64(event->auxtrace.offset);
876 event->auxtrace.reference = bswap_64(event->auxtrace.reference);
877 event->auxtrace.idx = bswap_32(event->auxtrace.idx);
878 event->auxtrace.tid = bswap_32(event->auxtrace.tid);
879 event->auxtrace.cpu = bswap_32(event->auxtrace.cpu);
880}
881
Adrian Huntere9bf54d2015-04-09 18:53:47 +0300882static void perf_event__auxtrace_error_swap(union perf_event *event,
883 bool sample_id_all __maybe_unused)
884{
885 event->auxtrace_error.type = bswap_32(event->auxtrace_error.type);
886 event->auxtrace_error.code = bswap_32(event->auxtrace_error.code);
887 event->auxtrace_error.cpu = bswap_32(event->auxtrace_error.cpu);
888 event->auxtrace_error.pid = bswap_32(event->auxtrace_error.pid);
889 event->auxtrace_error.tid = bswap_32(event->auxtrace_error.tid);
Adrian Hunter16bd4322019-02-06 12:39:47 +0200890 event->auxtrace_error.fmt = bswap_32(event->auxtrace_error.fmt);
Adrian Huntere9bf54d2015-04-09 18:53:47 +0300891 event->auxtrace_error.ip = bswap_64(event->auxtrace_error.ip);
Adrian Hunter16bd4322019-02-06 12:39:47 +0200892 if (event->auxtrace_error.fmt)
893 event->auxtrace_error.time = bswap_64(event->auxtrace_error.time);
Adrian Huntere9bf54d2015-04-09 18:53:47 +0300894}
895
Jiri Olsa5f3339d2015-10-25 15:51:19 +0100896static void perf_event__thread_map_swap(union perf_event *event,
897 bool sample_id_all __maybe_unused)
898{
899 unsigned i;
900
901 event->thread_map.nr = bswap_64(event->thread_map.nr);
902
903 for (i = 0; i < event->thread_map.nr; i++)
904 event->thread_map.entries[i].pid = bswap_64(event->thread_map.entries[i].pid);
905}
906
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100907static void perf_event__cpu_map_swap(union perf_event *event,
908 bool sample_id_all __maybe_unused)
909{
Jiri Olsa72932372019-08-28 15:57:16 +0200910 struct perf_record_cpu_map_data *data = &event->cpu_map.data;
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100911 struct cpu_map_entries *cpus;
Jiri Olsa72932372019-08-28 15:57:16 +0200912 struct perf_record_record_cpu_map *mask;
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100913 unsigned i;
914
Dmitry Kosheleva11c9a62021-05-06 13:11:49 +0000915 data->type = bswap_16(data->type);
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100916
917 switch (data->type) {
918 case PERF_CPU_MAP__CPUS:
919 cpus = (struct cpu_map_entries *)data->data;
920
921 cpus->nr = bswap_16(cpus->nr);
922
923 for (i = 0; i < cpus->nr; i++)
924 cpus->cpu[i] = bswap_16(cpus->cpu[i]);
925 break;
926 case PERF_CPU_MAP__MASK:
Jiri Olsa72932372019-08-28 15:57:16 +0200927 mask = (struct perf_record_record_cpu_map *)data->data;
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100928
929 mask->nr = bswap_16(mask->nr);
930 mask->long_size = bswap_16(mask->long_size);
931
932 switch (mask->long_size) {
933 case 4: mem_bswap_32(&mask->mask, mask->nr); break;
934 case 8: mem_bswap_64(&mask->mask, mask->nr); break;
935 default:
936 pr_err("cpu_map swap: unsupported long size\n");
937 }
938 default:
939 break;
940 }
941}
942
Jiri Olsa374fb9e2015-10-25 15:51:27 +0100943static void perf_event__stat_config_swap(union perf_event *event,
944 bool sample_id_all __maybe_unused)
945{
946 u64 size;
947
Dmitry Kosheleva11c9a62021-05-06 13:11:49 +0000948 size = bswap_64(event->stat_config.nr) * sizeof(event->stat_config.data[0]);
Jiri Olsa374fb9e2015-10-25 15:51:27 +0100949 size += 1; /* nr item itself */
950 mem_bswap_64(&event->stat_config.nr, size);
951}
952
Jiri Olsad80518c2015-10-25 15:51:30 +0100953static void perf_event__stat_swap(union perf_event *event,
954 bool sample_id_all __maybe_unused)
955{
956 event->stat.id = bswap_64(event->stat.id);
957 event->stat.thread = bswap_32(event->stat.thread);
958 event->stat.cpu = bswap_32(event->stat.cpu);
959 event->stat.val = bswap_64(event->stat.val);
960 event->stat.ena = bswap_64(event->stat.ena);
961 event->stat.run = bswap_64(event->stat.run);
962}
963
Jiri Olsa2d8f0f12015-10-25 15:51:33 +0100964static void perf_event__stat_round_swap(union perf_event *event,
965 bool sample_id_all __maybe_unused)
966{
967 event->stat_round.type = bswap_64(event->stat_round.type);
968 event->stat_round.time = bswap_64(event->stat_round.time);
969}
970
Leo Yan050ffc42021-04-28 20:09:14 +0800971static void perf_event__time_conv_swap(union perf_event *event,
972 bool sample_id_all __maybe_unused)
973{
974 event->time_conv.time_shift = bswap_64(event->time_conv.time_shift);
975 event->time_conv.time_mult = bswap_64(event->time_conv.time_mult);
976 event->time_conv.time_zero = bswap_64(event->time_conv.time_zero);
977
978 if (event_contains(event->time_conv, time_cycles)) {
979 event->time_conv.time_cycles = bswap_64(event->time_conv.time_cycles);
980 event->time_conv.time_mask = bswap_64(event->time_conv.time_mask);
981 }
982}
983
Jiri Olsa268fb202012-05-30 14:23:43 +0200984typedef void (*perf_event__swap_op)(union perf_event *event,
985 bool sample_id_all);
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200986
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200987static perf_event__swap_op perf_event__swap_ops[] = {
988 [PERF_RECORD_MMAP] = perf_event__mmap_swap,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200989 [PERF_RECORD_MMAP2] = perf_event__mmap2_swap,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200990 [PERF_RECORD_COMM] = perf_event__comm_swap,
991 [PERF_RECORD_FORK] = perf_event__task_swap,
992 [PERF_RECORD_EXIT] = perf_event__task_swap,
993 [PERF_RECORD_LOST] = perf_event__all64_swap,
994 [PERF_RECORD_READ] = perf_event__read_swap,
Jiri Olsadd96c462013-09-01 12:36:15 +0200995 [PERF_RECORD_THROTTLE] = perf_event__throttle_swap,
996 [PERF_RECORD_UNTHROTTLE] = perf_event__throttle_swap,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200997 [PERF_RECORD_SAMPLE] = perf_event__all64_swap,
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300998 [PERF_RECORD_AUX] = perf_event__aux_swap,
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300999 [PERF_RECORD_ITRACE_START] = perf_event__itrace_start_swap,
Kan Liangc4937a92015-05-10 15:13:15 -04001000 [PERF_RECORD_LOST_SAMPLES] = perf_event__all64_swap,
Adrian Hunter02860392015-07-21 12:44:03 +03001001 [PERF_RECORD_SWITCH] = perf_event__switch_swap,
1002 [PERF_RECORD_SWITCH_CPU_WIDE] = perf_event__switch_swap,
Namhyung Kimacd244b2019-05-22 14:32:49 +09001003 [PERF_RECORD_NAMESPACES] = perf_event__namespaces_swap,
Namhyung Kim2c589d92020-11-02 23:02:28 +09001004 [PERF_RECORD_CGROUP] = perf_event__cgroup_swap,
Adrian Hunter246eba82020-05-12 15:19:18 +03001005 [PERF_RECORD_TEXT_POKE] = perf_event__text_poke_swap,
Adrian Hunter61750472021-09-07 19:39:02 +03001006 [PERF_RECORD_AUX_OUTPUT_HW_ID] = perf_event__all64_swap,
David Aherneda39132011-07-15 12:34:09 -06001007 [PERF_RECORD_HEADER_ATTR] = perf_event__hdr_attr_swap,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02001008 [PERF_RECORD_HEADER_EVENT_TYPE] = perf_event__event_type_swap,
1009 [PERF_RECORD_HEADER_TRACING_DATA] = perf_event__tracing_data_swap,
1010 [PERF_RECORD_HEADER_BUILD_ID] = NULL,
Adrian Hunter3c659ee2014-10-27 15:49:22 +02001011 [PERF_RECORD_ID_INDEX] = perf_event__all64_swap,
Adrian Huntera16ac022015-04-09 18:53:43 +03001012 [PERF_RECORD_AUXTRACE_INFO] = perf_event__auxtrace_info_swap,
1013 [PERF_RECORD_AUXTRACE] = perf_event__auxtrace_swap,
Adrian Huntere9bf54d2015-04-09 18:53:47 +03001014 [PERF_RECORD_AUXTRACE_ERROR] = perf_event__auxtrace_error_swap,
Jiri Olsa5f3339d2015-10-25 15:51:19 +01001015 [PERF_RECORD_THREAD_MAP] = perf_event__thread_map_swap,
Jiri Olsa6640b6c2015-10-25 15:51:23 +01001016 [PERF_RECORD_CPU_MAP] = perf_event__cpu_map_swap,
Jiri Olsa374fb9e2015-10-25 15:51:27 +01001017 [PERF_RECORD_STAT_CONFIG] = perf_event__stat_config_swap,
Jiri Olsad80518c2015-10-25 15:51:30 +01001018 [PERF_RECORD_STAT] = perf_event__stat_swap,
Jiri Olsa2d8f0f12015-10-25 15:51:33 +01001019 [PERF_RECORD_STAT_ROUND] = perf_event__stat_round_swap,
Jiri Olsaffe777252015-10-25 15:51:36 +01001020 [PERF_RECORD_EVENT_UPDATE] = perf_event__event_update_swap,
Leo Yan050ffc42021-04-28 20:09:14 +08001021 [PERF_RECORD_TIME_CONV] = perf_event__time_conv_swap,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02001022 [PERF_RECORD_HEADER_MAX] = NULL,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02001023};
1024
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +02001025/*
1026 * When perf record finishes a pass on every buffers, it records this pseudo
1027 * event.
1028 * We record the max timestamp t found in the pass n.
1029 * Assuming these timestamps are monotonic across cpus, we know that if
1030 * a buffer still has events with timestamps below t, they will be all
1031 * available and then read in the pass n + 1.
1032 * Hence when we start to read the pass n + 2, we can safely flush every
1033 * events with timestamps below t.
1034 *
1035 * ============ PASS n =================
1036 * CPU 0 | CPU 1
1037 * |
1038 * cnt1 timestamps | cnt2 timestamps
1039 * 1 | 2
1040 * 2 | 3
1041 * - | 4 <--- max recorded
1042 *
1043 * ============ PASS n + 1 ==============
1044 * CPU 0 | CPU 1
1045 * |
1046 * cnt1 timestamps | cnt2 timestamps
1047 * 3 | 5
1048 * 4 | 6
1049 * 5 | 7 <---- max recorded
1050 *
1051 * Flush every events below timestamp 4
1052 *
1053 * ============ PASS n + 2 ==============
1054 * CPU 0 | CPU 1
1055 * |
1056 * cnt1 timestamps | cnt2 timestamps
1057 * 6 | 8
1058 * 7 | 9
1059 * - | 10
1060 *
1061 * Flush every events below timestamp 7
1062 * etc...
1063 */
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001064static int process_finished_round(struct perf_tool *tool __maybe_unused,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001065 union perf_event *event __maybe_unused,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -03001066 struct ordered_events *oe)
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +02001067{
Adrian Hunter5531e162015-06-23 10:52:48 +03001068 if (dump_trace)
1069 fprintf(stdout, "\n");
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001070 return ordered_events__flush(oe, OE_FLUSH__ROUND);
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +02001071}
1072
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001073int perf_session__queue_event(struct perf_session *s, union perf_event *event,
Jiri Olsadc83e132017-08-03 13:24:33 +02001074 u64 timestamp, u64 file_offset)
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +02001075{
Jiri Olsadc83e132017-08-03 13:24:33 +02001076 return ordered_events__queue(&s->ordered_events, event, timestamp, file_offset);
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +02001077}
1078
Kan Liang384b6052015-01-05 13:23:05 -05001079static void callchain__lbr_callstack_printf(struct perf_sample *sample)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -02001080{
Kan Liang384b6052015-01-05 13:23:05 -05001081 struct ip_callchain *callchain = sample->callchain;
1082 struct branch_stack *lbr_stack = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -08001083 struct branch_entry *entries = perf_sample__branch_entries(sample);
Kan Liang384b6052015-01-05 13:23:05 -05001084 u64 kernel_callchain_nr = callchain->nr;
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -02001085 unsigned int i;
1086
Kan Liang384b6052015-01-05 13:23:05 -05001087 for (i = 0; i < kernel_callchain_nr; i++) {
1088 if (callchain->ips[i] == PERF_CONTEXT_USER)
1089 break;
1090 }
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -02001091
Kan Liang384b6052015-01-05 13:23:05 -05001092 if ((i != kernel_callchain_nr) && lbr_stack->nr) {
1093 u64 total_nr;
1094 /*
1095 * LBR callstack can only get user call chain,
1096 * i is kernel call chain number,
1097 * 1 is PERF_CONTEXT_USER.
1098 *
1099 * The user call chain is stored in LBR registers.
1100 * LBR are pair registers. The caller is stored
1101 * in "from" register, while the callee is stored
1102 * in "to" register.
1103 * For example, there is a call stack
1104 * "A"->"B"->"C"->"D".
Ingo Molnar4d39c892021-03-23 17:09:15 +01001105 * The LBR registers will be recorded like
Kan Liang384b6052015-01-05 13:23:05 -05001106 * "C"->"D", "B"->"C", "A"->"B".
1107 * So only the first "to" register and all "from"
1108 * registers are needed to construct the whole stack.
1109 */
1110 total_nr = i + 1 + lbr_stack->nr + 1;
1111 kernel_callchain_nr = i + 1;
1112
1113 printf("... LBR call chain: nr:%" PRIu64 "\n", total_nr);
1114
1115 for (i = 0; i < kernel_callchain_nr; i++)
1116 printf("..... %2d: %016" PRIx64 "\n",
1117 i, callchain->ips[i]);
1118
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001119 printf("..... %2d: %016" PRIx64 "\n",
Kan Liang42bbabe2020-02-28 08:30:00 -08001120 (int)(kernel_callchain_nr), entries[0].to);
Kan Liang384b6052015-01-05 13:23:05 -05001121 for (i = 0; i < lbr_stack->nr; i++)
1122 printf("..... %2d: %016" PRIx64 "\n",
Kan Liang42bbabe2020-02-28 08:30:00 -08001123 (int)(i + kernel_callchain_nr + 1), entries[i].from);
Kan Liang384b6052015-01-05 13:23:05 -05001124 }
1125}
1126
Jiri Olsa32dcd022019-07-21 13:23:51 +02001127static void callchain__printf(struct evsel *evsel,
Kan Liang384b6052015-01-05 13:23:05 -05001128 struct perf_sample *sample)
1129{
1130 unsigned int i;
1131 struct ip_callchain *callchain = sample->callchain;
1132
Arnaldo Carvalho de Melo4f138a92020-04-30 11:19:45 -03001133 if (evsel__has_branch_callstack(evsel))
Kan Liang384b6052015-01-05 13:23:05 -05001134 callchain__lbr_callstack_printf(sample);
1135
1136 printf("... FP chain: nr:%" PRIu64 "\n", callchain->nr);
1137
1138 for (i = 0; i < callchain->nr; i++)
1139 printf("..... %2d: %016" PRIx64 "\n",
1140 i, callchain->ips[i]);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -02001141}
1142
Alexey Budankovd2720c32019-08-09 18:26:30 +03001143static void branch_stack__printf(struct perf_sample *sample, bool callstack)
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01001144{
Kan Liang42bbabe2020-02-28 08:30:00 -08001145 struct branch_entry *entries = perf_sample__branch_entries(sample);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01001146 uint64_t i;
1147
Alexey Budankovd2720c32019-08-09 18:26:30 +03001148 printf("%s: nr:%" PRIu64 "\n",
1149 !callstack ? "... branch stack" : "... branch callstack",
1150 sample->branch_stack->nr);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01001151
Andi Kleen0e332f02015-07-18 08:24:46 -07001152 for (i = 0; i < sample->branch_stack->nr; i++) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001153 struct branch_entry *e = &entries[i];
Andi Kleen0e332f02015-07-18 08:24:46 -07001154
Alexey Budankovd2720c32019-08-09 18:26:30 +03001155 if (!callstack) {
1156 printf("..... %2"PRIu64": %016" PRIx64 " -> %016" PRIx64 " %hu cycles %s%s%s%s %x\n",
1157 i, e->from, e->to,
1158 (unsigned short)e->flags.cycles,
1159 e->flags.mispred ? "M" : " ",
1160 e->flags.predicted ? "P" : " ",
1161 e->flags.abort ? "A" : " ",
1162 e->flags.in_tx ? "T" : " ",
1163 (unsigned)e->flags.reserved);
1164 } else {
1165 printf("..... %2"PRIu64": %016" PRIx64 "\n",
1166 i, i > 0 ? e->from : e->to);
1167 }
Andi Kleen0e332f02015-07-18 08:24:46 -07001168 }
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01001169}
1170
Jiri Olsa0f6a3012012-08-07 15:20:45 +02001171static void regs_dump__printf(u64 mask, u64 *regs)
1172{
1173 unsigned rid, i = 0;
1174
1175 for_each_set_bit(rid, (unsigned long *) &mask, sizeof(mask) * 8) {
1176 u64 val = regs[i++];
1177
Paul A. Clarke498ef712020-05-19 12:58:22 -05001178 printf(".... %-5s 0x%016" PRIx64 "\n",
Jiri Olsa0f6a3012012-08-07 15:20:45 +02001179 perf_reg_name(rid), val);
1180 }
1181}
1182
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02001183static const char *regs_abi[] = {
1184 [PERF_SAMPLE_REGS_ABI_NONE] = "none",
1185 [PERF_SAMPLE_REGS_ABI_32] = "32-bit",
1186 [PERF_SAMPLE_REGS_ABI_64] = "64-bit",
1187};
1188
1189static inline const char *regs_dump_abi(struct regs_dump *d)
1190{
1191 if (d->abi > PERF_SAMPLE_REGS_ABI_64)
1192 return "unknown";
1193
1194 return regs_abi[d->abi];
1195}
1196
1197static void regs__printf(const char *type, struct regs_dump *regs)
1198{
1199 u64 mask = regs->mask;
1200
1201 printf("... %s regs: mask 0x%" PRIx64 " ABI %s\n",
1202 type,
1203 mask,
1204 regs_dump_abi(regs));
1205
1206 regs_dump__printf(mask, regs->regs);
1207}
1208
Jiri Olsa352ea452014-01-07 13:47:25 +01001209static void regs_user__printf(struct perf_sample *sample)
Jiri Olsa0f6a3012012-08-07 15:20:45 +02001210{
1211 struct regs_dump *user_regs = &sample->user_regs;
1212
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02001213 if (user_regs->regs)
1214 regs__printf("user", user_regs);
1215}
1216
1217static void regs_intr__printf(struct perf_sample *sample)
1218{
1219 struct regs_dump *intr_regs = &sample->intr_regs;
1220
1221 if (intr_regs->regs)
1222 regs__printf("intr", intr_regs);
Jiri Olsa0f6a3012012-08-07 15:20:45 +02001223}
1224
1225static void stack_user__printf(struct stack_dump *dump)
1226{
1227 printf("... ustack: size %" PRIu64 ", offset 0x%x\n",
1228 dump->size, dump->offset);
1229}
1230
Arnaldo Carvalho de Melo71273722020-11-30 14:55:12 -03001231static void evlist__print_tstamp(struct evlist *evlist, union perf_event *event, struct perf_sample *sample)
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -02001232{
Arnaldo Carvalho de Melob3c2cc22020-06-17 09:24:21 -03001233 u64 sample_type = __evlist__combined_sample_type(evlist);
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -03001234
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -02001235 if (event->header.type != PERF_RECORD_SAMPLE &&
Arnaldo Carvalho de Melo8cedf3a2020-06-17 09:29:48 -03001236 !evlist__sample_id_all(evlist)) {
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -02001237 fputs("-1 -1 ", stdout);
1238 return;
1239 }
1240
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -03001241 if ((sample_type & PERF_SAMPLE_CPU))
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -02001242 printf("%u ", sample->cpu);
1243
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -03001244 if (sample_type & PERF_SAMPLE_TIME)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001245 printf("%" PRIu64 " ", sample->time);
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -02001246}
1247
Jiri Olsa9ede4732012-10-10 17:38:13 +02001248static void sample_read__printf(struct perf_sample *sample, u64 read_format)
1249{
1250 printf("... sample_read:\n");
1251
1252 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1253 printf("...... time enabled %016" PRIx64 "\n",
1254 sample->read.time_enabled);
1255
1256 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1257 printf("...... time running %016" PRIx64 "\n",
1258 sample->read.time_running);
1259
1260 if (read_format & PERF_FORMAT_GROUP) {
1261 u64 i;
1262
1263 printf(".... group nr %" PRIu64 "\n", sample->read.group.nr);
1264
1265 for (i = 0; i < sample->read.group.nr; i++) {
1266 struct sample_read_value *value;
1267
1268 value = &sample->read.group.values[i];
1269 printf("..... id %016" PRIx64
1270 ", value %016" PRIx64 "\n",
1271 value->id, value->value);
1272 }
1273 } else
1274 printf("..... id %016" PRIx64 ", value %016" PRIx64 "\n",
1275 sample->read.one.id, sample->read.one.value);
1276}
1277
Jiri Olsa63503db2019-07-21 13:23:52 +02001278static void dump_event(struct evlist *evlist, union perf_event *event,
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -02001279 u64 file_offset, struct perf_sample *sample)
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001280{
1281 if (!dump_trace)
1282 return;
1283
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001284 printf("\n%#" PRIx64 " [%#x]: event: %d\n",
1285 file_offset, event->header.size, event->header.type);
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001286
1287 trace_event(event);
Thomas Richter93115d32019-01-17 10:37:17 -03001288 if (event->header.type == PERF_RECORD_SAMPLE && evlist->trace_event_sample_raw)
1289 evlist->trace_event_sample_raw(evlist, event, sample);
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001290
1291 if (sample)
Arnaldo Carvalho de Melo71273722020-11-30 14:55:12 -03001292 evlist__print_tstamp(evlist, event, sample);
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001293
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001294 printf("%#" PRIx64 " [%#x]: PERF_RECORD_%s", file_offset,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02001295 event->header.size, perf_event__name(event->header.type));
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001296}
1297
Kan Liang6b9bae62020-12-16 10:57:57 -08001298char *get_page_size_name(u64 size, char *str)
1299{
1300 if (!size || !unit_number__scnprintf(str, PAGE_SIZE_NAME_LEN, size))
1301 snprintf(str, PAGE_SIZE_NAME_LEN, "%s", "N/A");
1302
1303 return str;
1304}
1305
Jiri Olsa32dcd022019-07-21 13:23:51 +02001306static void dump_sample(struct evsel *evsel, union perf_event *event,
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -02001307 struct perf_sample *sample)
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001308{
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -03001309 u64 sample_type;
Kan Liang6b9bae62020-12-16 10:57:57 -08001310 char str[PAGE_SIZE_NAME_LEN];
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -03001311
Arnaldo Carvalho de Meloddbc24b2010-12-09 12:20:20 -02001312 if (!dump_trace)
1313 return;
1314
Don Zickus0ea590a2014-02-25 22:43:46 -05001315 printf("(IP, 0x%x): %d/%d: %#" PRIx64 " period: %" PRIu64 " addr: %#" PRIx64 "\n",
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001316 event->header.misc, sample->pid, sample->tid, sample->ip,
David Ahern7cec0922011-05-30 13:08:23 -06001317 sample->period, sample->addr);
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001318
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001319 sample_type = evsel->core.attr.sample_type;
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -03001320
Arnaldo Carvalho de Melo27de9b22018-05-28 16:00:29 -03001321 if (evsel__has_callchain(evsel))
Kan Liang384b6052015-01-05 13:23:05 -05001322 callchain__printf(evsel, sample);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01001323
Adrian Hunter6cd2cbfc2020-04-29 18:07:47 +03001324 if (evsel__has_br_stack(evsel))
Arnaldo Carvalho de Melo4f138a92020-04-30 11:19:45 -03001325 branch_stack__printf(sample, evsel__has_branch_callstack(evsel));
Jiri Olsa0f6a3012012-08-07 15:20:45 +02001326
1327 if (sample_type & PERF_SAMPLE_REGS_USER)
Jiri Olsa352ea452014-01-07 13:47:25 +01001328 regs_user__printf(sample);
Jiri Olsa0f6a3012012-08-07 15:20:45 +02001329
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02001330 if (sample_type & PERF_SAMPLE_REGS_INTR)
1331 regs_intr__printf(sample);
1332
Jiri Olsa0f6a3012012-08-07 15:20:45 +02001333 if (sample_type & PERF_SAMPLE_STACK_USER)
1334 stack_user__printf(&sample->user_stack);
Andi Kleen05484292013-01-24 16:10:29 +01001335
Kan Liang590db422021-02-02 12:09:10 -08001336 if (sample_type & PERF_SAMPLE_WEIGHT_TYPE) {
1337 printf("... weight: %" PRIu64 "", sample->weight);
Athira Rajeev06e5ca72021-03-22 10:57:26 -04001338 if (sample_type & PERF_SAMPLE_WEIGHT_STRUCT) {
Kan Liang590db422021-02-02 12:09:10 -08001339 printf(",0x%"PRIx16"", sample->ins_lat);
Athira Rajeev06e5ca72021-03-22 10:57:26 -04001340 printf(",0x%"PRIx16"", sample->p_stage_cyc);
1341 }
Kan Liang590db422021-02-02 12:09:10 -08001342 printf("\n");
1343 }
Stephane Eranian98a3b322013-01-24 16:10:35 +01001344
1345 if (sample_type & PERF_SAMPLE_DATA_SRC)
1346 printf(" . data_src: 0x%"PRIx64"\n", sample->data_src);
Jiri Olsa9ede4732012-10-10 17:38:13 +02001347
Kan Liang8780fb22017-08-29 13:11:09 -04001348 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
1349 printf(" .. phys_addr: 0x%"PRIx64"\n", sample->phys_addr);
1350
Kan Liang6b9bae62020-12-16 10:57:57 -08001351 if (sample_type & PERF_SAMPLE_DATA_PAGE_SIZE)
1352 printf(" .. data page size: %s\n", get_page_size_name(sample->data_page_size, str));
1353
Stephane Eranianc513de82021-01-05 11:57:50 -08001354 if (sample_type & PERF_SAMPLE_CODE_PAGE_SIZE)
1355 printf(" .. code page size: %s\n", get_page_size_name(sample->code_page_size, str));
1356
Andi Kleen475eeab2013-09-20 07:40:43 -07001357 if (sample_type & PERF_SAMPLE_TRANSACTION)
1358 printf("... transaction: %" PRIx64 "\n", sample->transaction);
1359
Jiri Olsa9ede4732012-10-10 17:38:13 +02001360 if (sample_type & PERF_SAMPLE_READ)
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001361 sample_read__printf(sample, evsel->core.attr.read_format);
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001362}
1363
Jiri Olsa32dcd022019-07-21 13:23:51 +02001364static void dump_read(struct evsel *evsel, union perf_event *event)
Jiri Olsadac7f6b2017-08-24 18:27:32 +02001365{
Arnaldo Carvalho de Melo69d81f02019-08-26 19:02:31 -03001366 struct perf_record_read *read_event = &event->read;
Jiri Olsadac7f6b2017-08-24 18:27:32 +02001367 u64 read_format;
1368
1369 if (!dump_trace)
1370 return;
1371
Jiri Olsa213a6c12019-08-25 20:17:48 +02001372 printf(": %d %d %s %" PRI_lu64 "\n", event->read.pid, event->read.tid,
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03001373 evsel__name(evsel), event->read.value);
Jiri Olsadac7f6b2017-08-24 18:27:32 +02001374
Leo Yanf3c8d902019-07-02 18:34:17 +08001375 if (!evsel)
1376 return;
1377
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001378 read_format = evsel->core.attr.read_format;
Jiri Olsadac7f6b2017-08-24 18:27:32 +02001379
1380 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Jiri Olsa213a6c12019-08-25 20:17:48 +02001381 printf("... time enabled : %" PRI_lu64 "\n", read_event->time_enabled);
Jiri Olsadac7f6b2017-08-24 18:27:32 +02001382
1383 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Jiri Olsa213a6c12019-08-25 20:17:48 +02001384 printf("... time running : %" PRI_lu64 "\n", read_event->time_running);
Jiri Olsadac7f6b2017-08-24 18:27:32 +02001385
1386 if (read_format & PERF_FORMAT_ID)
Jiri Olsa213a6c12019-08-25 20:17:48 +02001387 printf("... id : %" PRI_lu64 "\n", read_event->id);
Jiri Olsadac7f6b2017-08-24 18:27:32 +02001388}
1389
Arnaldo Carvalho de Melo54245fd2015-02-14 14:26:15 -03001390static struct machine *machines__find_for_cpumode(struct machines *machines,
Adrian Hunteref893252013-08-27 11:23:06 +03001391 union perf_event *event,
1392 struct perf_sample *sample)
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001393{
David Ahern7c0f4a42012-07-20 17:25:48 -06001394 if (perf_guest &&
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001395 ((sample->cpumode == PERF_RECORD_MISC_GUEST_KERNEL) ||
1396 (sample->cpumode == PERF_RECORD_MISC_GUEST_USER))) {
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +05301397 u32 pid;
1398
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001399 if (event->header.type == PERF_RECORD_MMAP
1400 || event->header.type == PERF_RECORD_MMAP2)
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +05301401 pid = event->mmap.pid;
1402 else
Adrian Hunteref893252013-08-27 11:23:06 +03001403 pid = sample->pid;
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +05301404
Adrian Hunterfcda5ff2021-02-18 11:57:55 +02001405 return machines__find_guest(machines, pid);
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +05301406 }
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001407
Arnaldo Carvalho de Melo54245fd2015-02-14 14:26:15 -03001408 return &machines->host;
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001409}
1410
Jiri Olsa63503db2019-07-21 13:23:52 +02001411static int deliver_sample_value(struct evlist *evlist,
Jiri Olsae4caec02012-10-10 18:52:24 +02001412 struct perf_tool *tool,
1413 union perf_event *event,
1414 struct perf_sample *sample,
1415 struct sample_read_value *v,
1416 struct machine *machine)
1417{
Arnaldo Carvalho de Melo3ccf8a72020-11-30 14:17:57 -03001418 struct perf_sample_id *sid = evlist__id2sid(evlist, v->id);
Jiri Olsa70c20362019-09-03 10:34:29 +02001419 struct evsel *evsel;
Jiri Olsae4caec02012-10-10 18:52:24 +02001420
Jiri Olsae4caec02012-10-10 18:52:24 +02001421 if (sid) {
1422 sample->id = v->id;
1423 sample->period = v->value - sid->period;
1424 sid->period = v->value;
1425 }
1426
1427 if (!sid || sid->evsel == NULL) {
Arnaldo Carvalho de Melo313e53b2015-02-14 15:05:28 -03001428 ++evlist->stats.nr_unknown_id;
Jiri Olsae4caec02012-10-10 18:52:24 +02001429 return 0;
1430 }
1431
Jiri Olsa529c1a92019-02-20 13:27:55 +01001432 /*
1433 * There's no reason to deliver sample
1434 * for zero period, bail out.
1435 */
1436 if (!sample->period)
1437 return 0;
1438
Jiri Olsa70c20362019-09-03 10:34:29 +02001439 evsel = container_of(sid->evsel, struct evsel, core);
1440 return tool->sample(tool, event, sample, evsel, machine);
Jiri Olsae4caec02012-10-10 18:52:24 +02001441}
1442
Jiri Olsa63503db2019-07-21 13:23:52 +02001443static int deliver_sample_group(struct evlist *evlist,
Jiri Olsae4caec02012-10-10 18:52:24 +02001444 struct perf_tool *tool,
1445 union perf_event *event,
1446 struct perf_sample *sample,
1447 struct machine *machine)
1448{
1449 int ret = -EINVAL;
1450 u64 i;
1451
1452 for (i = 0; i < sample->read.group.nr; i++) {
Arnaldo Carvalho de Melo313e53b2015-02-14 15:05:28 -03001453 ret = deliver_sample_value(evlist, tool, event, sample,
Jiri Olsae4caec02012-10-10 18:52:24 +02001454 &sample->read.group.values[i],
1455 machine);
1456 if (ret)
1457 break;
1458 }
1459
1460 return ret;
1461}
1462
Arnaldo Carvalho de Melo515ea462020-11-30 15:16:29 -03001463static int evlist__deliver_sample(struct evlist *evlist, struct perf_tool *tool,
1464 union perf_event *event, struct perf_sample *sample,
1465 struct evsel *evsel, struct machine *machine)
Jiri Olsae4caec02012-10-10 18:52:24 +02001466{
1467 /* We know evsel != NULL. */
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001468 u64 sample_type = evsel->core.attr.sample_type;
1469 u64 read_format = evsel->core.attr.read_format;
Jiri Olsae4caec02012-10-10 18:52:24 +02001470
Soramichi AKIYAMAd94386f2017-01-17 22:22:33 +09001471 /* Standard sample delivery. */
Jiri Olsae4caec02012-10-10 18:52:24 +02001472 if (!(sample_type & PERF_SAMPLE_READ))
1473 return tool->sample(tool, event, sample, evsel, machine);
1474
1475 /* For PERF_SAMPLE_READ we have either single or group mode. */
1476 if (read_format & PERF_FORMAT_GROUP)
Arnaldo Carvalho de Melo313e53b2015-02-14 15:05:28 -03001477 return deliver_sample_group(evlist, tool, event, sample,
Jiri Olsae4caec02012-10-10 18:52:24 +02001478 machine);
1479 else
Arnaldo Carvalho de Melo313e53b2015-02-14 15:05:28 -03001480 return deliver_sample_value(evlist, tool, event, sample,
Jiri Olsae4caec02012-10-10 18:52:24 +02001481 &sample->read.one, machine);
1482}
1483
Arnaldo Carvalho de Melod10eb1e2015-03-03 12:20:38 -03001484static int machines__deliver_event(struct machines *machines,
Jiri Olsa63503db2019-07-21 13:23:52 +02001485 struct evlist *evlist,
Arnaldo Carvalho de Melod10eb1e2015-03-03 12:20:38 -03001486 union perf_event *event,
1487 struct perf_sample *sample,
1488 struct perf_tool *tool, u64 file_offset)
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001489{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001490 struct evsel *evsel;
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001491 struct machine *machine;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -03001492
Arnaldo Carvalho de Melo9fa87272015-02-14 15:08:51 -03001493 dump_event(evlist, event, file_offset, sample);
Thomas Gleixner532e7262010-12-07 12:48:55 +00001494
Arnaldo Carvalho de Melo3ccf8a72020-11-30 14:17:57 -03001495 evsel = evlist__id2evsel(evlist, sample->id);
Arnaldo Carvalho de Melo7b275092011-10-29 12:15:04 -02001496
Arnaldo Carvalho de Melofa713a4e2015-03-03 11:48:12 -03001497 machine = machines__find_for_cpumode(machines, event, sample);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001498
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001499 switch (event->header.type) {
1500 case PERF_RECORD_SAMPLE:
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -03001501 if (evsel == NULL) {
Arnaldo Carvalho de Melo313e53b2015-02-14 15:05:28 -03001502 ++evlist->stats.nr_unknown_id;
Jiri Olsa67822062012-04-12 14:21:01 +02001503 return 0;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -03001504 }
Kan Liang1b29ac52015-09-03 08:31:00 -04001505 dump_sample(evsel, event, sample);
Joerg Roedel0c095712012-02-10 18:05:04 +01001506 if (machine == NULL) {
Arnaldo Carvalho de Melo313e53b2015-02-14 15:05:28 -03001507 ++evlist->stats.nr_unprocessable_samples;
Jiri Olsa67822062012-04-12 14:21:01 +02001508 return 0;
Joerg Roedel0c095712012-02-10 18:05:04 +01001509 }
Arnaldo Carvalho de Melo515ea462020-11-30 15:16:29 -03001510 return evlist__deliver_sample(evlist, tool, event, sample, evsel, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001511 case PERF_RECORD_MMAP:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001512 return tool->mmap(tool, event, sample, machine);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001513 case PERF_RECORD_MMAP2:
Kan Liang930e6fc2015-06-17 09:51:10 -04001514 if (event->header.misc & PERF_RECORD_MISC_PROC_MAP_PARSE_TIMEOUT)
1515 ++evlist->stats.nr_proc_map_timeout;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001516 return tool->mmap2(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001517 case PERF_RECORD_COMM:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001518 return tool->comm(tool, event, sample, machine);
Hari Bathinif3b36142017-03-08 02:11:43 +05301519 case PERF_RECORD_NAMESPACES:
1520 return tool->namespaces(tool, event, sample, machine);
Namhyung Kimba78c1c2020-03-25 21:45:30 +09001521 case PERF_RECORD_CGROUP:
1522 return tool->cgroup(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001523 case PERF_RECORD_FORK:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001524 return tool->fork(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001525 case PERF_RECORD_EXIT:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001526 return tool->exit(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001527 case PERF_RECORD_LOST:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001528 if (tool->lost == perf_event__process_lost)
Arnaldo Carvalho de Melo313e53b2015-02-14 15:05:28 -03001529 evlist->stats.total_lost += event->lost.lost;
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001530 return tool->lost(tool, event, sample, machine);
Kan Liangc4937a92015-05-10 15:13:15 -04001531 case PERF_RECORD_LOST_SAMPLES:
1532 if (tool->lost_samples == perf_event__process_lost_samples)
1533 evlist->stats.total_lost_samples += event->lost_samples.lost;
1534 return tool->lost_samples(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001535 case PERF_RECORD_READ:
Jiri Olsadac7f6b2017-08-24 18:27:32 +02001536 dump_read(evsel, event);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001537 return tool->read(tool, event, sample, evsel, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001538 case PERF_RECORD_THROTTLE:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001539 return tool->throttle(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001540 case PERF_RECORD_UNTHROTTLE:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001541 return tool->unthrottle(tool, event, sample, machine);
Adrian Hunter4a96f7a2015-04-30 17:37:29 +03001542 case PERF_RECORD_AUX:
Alexander Shishkin05a1f472017-03-16 18:41:59 +02001543 if (tool->aux == perf_event__process_aux) {
1544 if (event->aux.flags & PERF_AUX_FLAG_TRUNCATED)
1545 evlist->stats.total_aux_lost += 1;
1546 if (event->aux.flags & PERF_AUX_FLAG_PARTIAL)
1547 evlist->stats.total_aux_partial += 1;
Suzuki K Poulosec68b4212021-07-28 10:12:19 +01001548 if (event->aux.flags & PERF_AUX_FLAG_COLLISION)
1549 evlist->stats.total_aux_collision += 1;
Alexander Shishkin05a1f472017-03-16 18:41:59 +02001550 }
Adrian Hunter4a96f7a2015-04-30 17:37:29 +03001551 return tool->aux(tool, event, sample, machine);
Adrian Hunter0ad21f62015-04-30 17:37:30 +03001552 case PERF_RECORD_ITRACE_START:
1553 return tool->itrace_start(tool, event, sample, machine);
Adrian Hunter02860392015-07-21 12:44:03 +03001554 case PERF_RECORD_SWITCH:
1555 case PERF_RECORD_SWITCH_CPU_WIDE:
1556 return tool->context_switch(tool, event, sample, machine);
Song Liu9aa0bfa2019-01-17 08:15:17 -08001557 case PERF_RECORD_KSYMBOL:
1558 return tool->ksymbol(tool, event, sample, machine);
Song Liu45178a92019-01-17 08:15:18 -08001559 case PERF_RECORD_BPF_EVENT:
Arnaldo Carvalho de Melo3f604b52019-08-26 19:28:13 -03001560 return tool->bpf(tool, event, sample, machine);
Adrian Hunter246eba82020-05-12 15:19:18 +03001561 case PERF_RECORD_TEXT_POKE:
1562 return tool->text_poke(tool, event, sample, machine);
Adrian Hunter61750472021-09-07 19:39:02 +03001563 case PERF_RECORD_AUX_OUTPUT_HW_ID:
1564 return tool->aux_output_hw_id(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001565 default:
Arnaldo Carvalho de Melo313e53b2015-02-14 15:05:28 -03001566 ++evlist->stats.nr_unknown_events;
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001567 return -1;
1568 }
1569}
1570
Adrian Hunterc4468702015-04-09 18:53:48 +03001571static int perf_session__deliver_event(struct perf_session *session,
1572 union perf_event *event,
Adrian Hunterc4468702015-04-09 18:53:48 +03001573 struct perf_tool *tool,
1574 u64 file_offset)
1575{
Jiri Olsa93d10af2017-08-03 13:21:14 +02001576 struct perf_sample sample;
Arnaldo Carvalho de Melo2a6599c2020-11-30 09:43:07 -03001577 int ret = evlist__parse_sample(session->evlist, event, &sample);
Adrian Hunterc4468702015-04-09 18:53:48 +03001578
Jiri Olsa93d10af2017-08-03 13:21:14 +02001579 if (ret) {
1580 pr_err("Can't parse sample, err = %d\n", ret);
1581 return ret;
1582 }
1583
1584 ret = auxtrace__process_event(session, event, &sample, tool);
Adrian Hunterc4468702015-04-09 18:53:48 +03001585 if (ret < 0)
1586 return ret;
1587 if (ret > 0)
1588 return 0;
1589
Adrian Hunterb04b8dd2019-11-15 14:42:19 +02001590 ret = machines__deliver_event(&session->machines, session->evlist,
1591 event, &sample, tool, file_offset);
1592
1593 if (dump_trace && sample.aux_sample.size)
1594 auxtrace__dump_auxtrace_sample(session, &sample);
1595
1596 return ret;
Adrian Hunterc4468702015-04-09 18:53:48 +03001597}
1598
Adrian Hunterd5652d82014-07-23 22:19:58 +03001599static s64 perf_session__process_user_event(struct perf_session *session,
1600 union perf_event *event,
Adrian Hunterd5652d82014-07-23 22:19:58 +03001601 u64 file_offset)
Thomas Gleixnerba74f062010-12-07 12:49:01 +00001602{
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -03001603 struct ordered_events *oe = &session->ordered_events;
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -03001604 struct perf_tool *tool = session->tool;
Arnaldo Carvalho de Melof250b092017-11-23 15:35:04 -03001605 struct perf_sample sample = { .time = 0, };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001606 int fd = perf_data__fd(session->data);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02001607 int err;
1608
Alexey Budankov61a77732019-03-18 20:45:11 +03001609 if (event->header.type != PERF_RECORD_COMPRESSED ||
1610 tool->compressed == perf_session__process_compressed_event_stub)
1611 dump_event(session->evlist, event, file_offset, &sample);
Thomas Gleixnerba74f062010-12-07 12:49:01 +00001612
1613 /* These events are processed right away */
1614 switch (event->header.type) {
1615 case PERF_RECORD_HEADER_ATTR:
Adrian Hunter47c3d102013-07-04 16:20:21 +03001616 err = tool->attr(tool, event, &session->evlist);
Adrian Huntercfe1c412014-07-31 09:00:45 +03001617 if (err == 0) {
Arnaldo Carvalho de Melo7b56cce2012-08-01 19:31:00 -03001618 perf_session__set_id_hdr_size(session);
Adrian Huntercfe1c412014-07-31 09:00:45 +03001619 perf_session__set_comm_exec(session);
1620 }
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02001621 return err;
Jiri Olsaffe777252015-10-25 15:51:36 +01001622 case PERF_RECORD_EVENT_UPDATE:
1623 return tool->event_update(tool, event, &session->evlist);
Jiri Olsaf67697b2014-02-04 15:37:48 +01001624 case PERF_RECORD_HEADER_EVENT_TYPE:
1625 /*
Ingo Molnar4d39c892021-03-23 17:09:15 +01001626 * Deprecated, but we need to handle it for sake
Jiri Olsaf67697b2014-02-04 15:37:48 +01001627 * of old data files create in pipe mode.
1628 */
1629 return 0;
Thomas Gleixnerba74f062010-12-07 12:49:01 +00001630 case PERF_RECORD_HEADER_TRACING_DATA:
Jiri Olsab4911982020-05-07 11:50:21 +02001631 /*
1632 * Setup for reading amidst mmap, but only when we
1633 * are in 'file' mode. The 'pipe' fd is in proper
1634 * place already.
1635 */
1636 if (!perf_data__is_pipe(session->data))
1637 lseek(fd, file_offset, SEEK_SET);
Jiri Olsa89f16882018-09-13 14:54:03 +02001638 return tool->tracing_data(session, event);
Thomas Gleixnerba74f062010-12-07 12:49:01 +00001639 case PERF_RECORD_HEADER_BUILD_ID:
Jiri Olsa89f16882018-09-13 14:54:03 +02001640 return tool->build_id(session, event);
Thomas Gleixnerba74f062010-12-07 12:49:01 +00001641 case PERF_RECORD_FINISHED_ROUND:
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -03001642 return tool->finished_round(tool, event, oe);
Adrian Hunter3c659ee2014-10-27 15:49:22 +02001643 case PERF_RECORD_ID_INDEX:
Jiri Olsa89f16882018-09-13 14:54:03 +02001644 return tool->id_index(session, event);
Adrian Huntera16ac022015-04-09 18:53:43 +03001645 case PERF_RECORD_AUXTRACE_INFO:
Jiri Olsa89f16882018-09-13 14:54:03 +02001646 return tool->auxtrace_info(session, event);
Adrian Huntera16ac022015-04-09 18:53:43 +03001647 case PERF_RECORD_AUXTRACE:
1648 /* setup for reading amidst mmap */
1649 lseek(fd, file_offset + event->header.size, SEEK_SET);
Jiri Olsa73365552018-09-13 14:54:04 +02001650 return tool->auxtrace(session, event);
Adrian Huntere9bf54d2015-04-09 18:53:47 +03001651 case PERF_RECORD_AUXTRACE_ERROR:
Adrian Hunter85ed4722015-04-09 18:53:50 +03001652 perf_session__auxtrace_error_inc(session, event);
Jiri Olsa89f16882018-09-13 14:54:03 +02001653 return tool->auxtrace_error(session, event);
Jiri Olsa5f3339d2015-10-25 15:51:19 +01001654 case PERF_RECORD_THREAD_MAP:
Jiri Olsa89f16882018-09-13 14:54:03 +02001655 return tool->thread_map(session, event);
Jiri Olsa6640b6c2015-10-25 15:51:23 +01001656 case PERF_RECORD_CPU_MAP:
Jiri Olsa89f16882018-09-13 14:54:03 +02001657 return tool->cpu_map(session, event);
Jiri Olsa374fb9e2015-10-25 15:51:27 +01001658 case PERF_RECORD_STAT_CONFIG:
Jiri Olsa89f16882018-09-13 14:54:03 +02001659 return tool->stat_config(session, event);
Jiri Olsad80518c2015-10-25 15:51:30 +01001660 case PERF_RECORD_STAT:
Jiri Olsa89f16882018-09-13 14:54:03 +02001661 return tool->stat(session, event);
Jiri Olsa2d8f0f12015-10-25 15:51:33 +01001662 case PERF_RECORD_STAT_ROUND:
Jiri Olsa89f16882018-09-13 14:54:03 +02001663 return tool->stat_round(session, event);
Adrian Hunter46bc29b2016-03-08 10:38:44 +02001664 case PERF_RECORD_TIME_CONV:
1665 session->time_conv = event->time_conv;
Jiri Olsa89f16882018-09-13 14:54:03 +02001666 return tool->time_conv(session, event);
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07001667 case PERF_RECORD_HEADER_FEATURE:
Jiri Olsa89f16882018-09-13 14:54:03 +02001668 return tool->feature(session, event);
Alexey Budankov61a77732019-03-18 20:45:11 +03001669 case PERF_RECORD_COMPRESSED:
1670 err = tool->compressed(session, event, file_offset);
1671 if (err)
1672 dump_event(session->evlist, event, file_offset, &sample);
1673 return err;
Thomas Gleixnerba74f062010-12-07 12:49:01 +00001674 default:
1675 return -EINVAL;
1676 }
1677}
1678
Adrian Huntera2938292014-10-27 15:49:23 +02001679int perf_session__deliver_synth_event(struct perf_session *session,
1680 union perf_event *event,
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001681 struct perf_sample *sample)
Adrian Huntera2938292014-10-27 15:49:23 +02001682{
Jiri Olsa63503db2019-07-21 13:23:52 +02001683 struct evlist *evlist = session->evlist;
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -03001684 struct perf_tool *tool = session->tool;
Arnaldo Carvalho de Melofa713a4e2015-03-03 11:48:12 -03001685
1686 events_stats__inc(&evlist->stats, event->header.type);
Adrian Huntera2938292014-10-27 15:49:23 +02001687
1688 if (event->header.type >= PERF_RECORD_USER_TYPE_START)
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001689 return perf_session__process_user_event(session, event, 0);
Adrian Huntera2938292014-10-27 15:49:23 +02001690
Arnaldo Carvalho de Melofa713a4e2015-03-03 11:48:12 -03001691 return machines__deliver_event(&session->machines, evlist, event, sample, tool, 0);
Adrian Huntera2938292014-10-27 15:49:23 +02001692}
1693
Jiri Olsa268fb202012-05-30 14:23:43 +02001694static void event_swap(union perf_event *event, bool sample_id_all)
1695{
1696 perf_event__swap_op swap;
1697
1698 swap = perf_event__swap_ops[event->header.type];
1699 if (swap)
1700 swap(event, sample_id_all);
1701}
1702
Adrian Hunter5a52f332014-07-31 09:00:57 +03001703int perf_session__peek_event(struct perf_session *session, off_t file_offset,
1704 void *buf, size_t buf_sz,
1705 union perf_event **event_ptr,
1706 struct perf_sample *sample)
1707{
1708 union perf_event *event;
1709 size_t hdr_sz, rest;
1710 int fd;
1711
1712 if (session->one_mmap && !session->header.needs_swap) {
1713 event = file_offset - session->one_mmap_offset +
1714 session->one_mmap_addr;
1715 goto out_parse_sample;
1716 }
1717
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001718 if (perf_data__is_pipe(session->data))
Adrian Hunter5a52f332014-07-31 09:00:57 +03001719 return -1;
1720
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001721 fd = perf_data__fd(session->data);
Adrian Hunter5a52f332014-07-31 09:00:57 +03001722 hdr_sz = sizeof(struct perf_event_header);
1723
1724 if (buf_sz < hdr_sz)
1725 return -1;
1726
1727 if (lseek(fd, file_offset, SEEK_SET) == (off_t)-1 ||
Adrian Hunter554e92e2015-05-19 16:05:45 +03001728 readn(fd, buf, hdr_sz) != (ssize_t)hdr_sz)
Adrian Hunter5a52f332014-07-31 09:00:57 +03001729 return -1;
1730
1731 event = (union perf_event *)buf;
1732
1733 if (session->header.needs_swap)
1734 perf_event_header__bswap(&event->header);
1735
Adrian Hunter554e92e2015-05-19 16:05:45 +03001736 if (event->header.size < hdr_sz || event->header.size > buf_sz)
Adrian Hunter5a52f332014-07-31 09:00:57 +03001737 return -1;
1738
Leo Yan197eecb2021-06-05 13:29:57 +08001739 buf += hdr_sz;
Adrian Hunter5a52f332014-07-31 09:00:57 +03001740 rest = event->header.size - hdr_sz;
1741
Adrian Hunter554e92e2015-05-19 16:05:45 +03001742 if (readn(fd, buf, rest) != (ssize_t)rest)
Adrian Hunter5a52f332014-07-31 09:00:57 +03001743 return -1;
1744
1745 if (session->header.needs_swap)
Arnaldo Carvalho de Melo8cedf3a2020-06-17 09:29:48 -03001746 event_swap(event, evlist__sample_id_all(session->evlist));
Adrian Hunter5a52f332014-07-31 09:00:57 +03001747
1748out_parse_sample:
1749
1750 if (sample && event->header.type < PERF_RECORD_USER_TYPE_START &&
Arnaldo Carvalho de Melo2a6599c2020-11-30 09:43:07 -03001751 evlist__parse_sample(session->evlist, event, sample))
Adrian Hunter5a52f332014-07-31 09:00:57 +03001752 return -1;
1753
1754 *event_ptr = event;
1755
1756 return 0;
1757}
1758
Adrian Hunter103ed402019-11-15 14:42:20 +02001759int perf_session__peek_events(struct perf_session *session, u64 offset,
1760 u64 size, peek_events_cb_t cb, void *data)
1761{
1762 u64 max_offset = offset + size;
1763 char buf[PERF_SAMPLE_MAX_SIZE];
1764 union perf_event *event;
1765 int err;
1766
1767 do {
1768 err = perf_session__peek_event(session, offset, buf,
1769 PERF_SAMPLE_MAX_SIZE, &event,
1770 NULL);
1771 if (err)
1772 return err;
1773
1774 err = cb(session, event, offset, data);
1775 if (err)
1776 return err;
1777
1778 offset += event->header.size;
1779 if (event->header.type == PERF_RECORD_AUXTRACE)
1780 offset += event->auxtrace.size;
1781
1782 } while (offset < max_offset);
1783
1784 return err;
1785}
1786
Adrian Hunterd5652d82014-07-23 22:19:58 +03001787static s64 perf_session__process_event(struct perf_session *session,
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001788 union perf_event *event, u64 file_offset)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001789{
Jiri Olsa63503db2019-07-21 13:23:52 +02001790 struct evlist *evlist = session->evlist;
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -03001791 struct perf_tool *tool = session->tool;
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001792 int ret;
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -02001793
Jiri Olsa268fb202012-05-30 14:23:43 +02001794 if (session->header.needs_swap)
Arnaldo Carvalho de Melo8cedf3a2020-06-17 09:29:48 -03001795 event_swap(event, evlist__sample_id_all(evlist));
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -02001796
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001797 if (event->header.type >= PERF_RECORD_HEADER_MAX)
1798 return -EINVAL;
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -02001799
Arnaldo Carvalho de Melo313e53b2015-02-14 15:05:28 -03001800 events_stats__inc(&evlist->stats, event->header.type);
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001801
1802 if (event->header.type >= PERF_RECORD_USER_TYPE_START)
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001803 return perf_session__process_user_event(session, event, file_offset);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001804
Jiri Olsa0a8cb852014-07-06 14:18:21 +02001805 if (tool->ordered_events) {
Mathieu Poirier631e8f02018-01-10 13:31:52 -07001806 u64 timestamp = -1ULL;
Jiri Olsa93d10af2017-08-03 13:21:14 +02001807
Arnaldo Carvalho de Melo2a6599c2020-11-30 09:43:07 -03001808 ret = evlist__parse_sample_timestamp(evlist, event, &timestamp);
Mathieu Poirier631e8f02018-01-10 13:31:52 -07001809 if (ret && ret != -1)
Jiri Olsa93d10af2017-08-03 13:21:14 +02001810 return ret;
1811
1812 ret = perf_session__queue_event(session, event, timestamp, file_offset);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001813 if (ret != -ETIME)
1814 return ret;
1815 }
1816
Jiri Olsa93d10af2017-08-03 13:21:14 +02001817 return perf_session__deliver_event(session, event, tool, file_offset);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001818}
1819
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001820void perf_event_header__bswap(struct perf_event_header *hdr)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02001821{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001822 hdr->type = bswap_32(hdr->type);
1823 hdr->misc = bswap_16(hdr->misc);
1824 hdr->size = bswap_16(hdr->size);
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02001825}
1826
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -02001827struct thread *perf_session__findnew(struct perf_session *session, pid_t pid)
1828{
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001829 return machine__findnew_thread(&session->machines.host, -1, pid);
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -02001830}
1831
Masami Hiramatsu9d8b1722015-12-09 11:11:23 +09001832int perf_session__register_idle_thread(struct perf_session *session)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001833{
Adrian Hunter3035cb62021-02-18 11:57:56 +02001834 struct thread *thread = machine__idle_thread(&session->machines.host);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001835
Adrian Hunter3035cb62021-02-18 11:57:56 +02001836 /* machine__idle_thread() got the thread, so put it */
Masami Hiramatsu9d8b1722015-12-09 11:11:23 +09001837 thread__put(thread);
Adrian Hunter3035cb62021-02-18 11:57:56 +02001838 return thread ? 0 : -1;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001839}
1840
Wang Nanf06149c2016-07-14 08:34:46 +00001841static void
1842perf_session__warn_order(const struct perf_session *session)
1843{
1844 const struct ordered_events *oe = &session->ordered_events;
Jiri Olsa32dcd022019-07-21 13:23:51 +02001845 struct evsel *evsel;
Wang Nanf06149c2016-07-14 08:34:46 +00001846 bool should_warn = true;
1847
1848 evlist__for_each_entry(session->evlist, evsel) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001849 if (evsel->core.attr.write_backward)
Wang Nanf06149c2016-07-14 08:34:46 +00001850 should_warn = false;
1851 }
1852
1853 if (!should_warn)
1854 return;
1855 if (oe->nr_unordered_events != 0)
1856 ui__warning("%u out of order events recorded.\n", oe->nr_unordered_events);
1857}
1858
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -03001859static void perf_session__warn_about_errors(const struct perf_session *session)
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -02001860{
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -03001861 const struct events_stats *stats = &session->evlist->stats;
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -03001862
1863 if (session->tool->lost == perf_event__process_lost &&
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001864 stats->nr_events[PERF_RECORD_LOST] != 0) {
Arnaldo Carvalho de Melo7b275092011-10-29 12:15:04 -02001865 ui__warning("Processed %d events and lost %d chunks!\n\n"
1866 "Check IO/CPU overload!\n\n",
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001867 stats->nr_events[0],
1868 stats->nr_events[PERF_RECORD_LOST]);
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -02001869 }
1870
Kan Liangc4937a92015-05-10 15:13:15 -04001871 if (session->tool->lost_samples == perf_event__process_lost_samples) {
1872 double drop_rate;
1873
1874 drop_rate = (double)stats->total_lost_samples /
1875 (double) (stats->nr_events[PERF_RECORD_SAMPLE] + stats->total_lost_samples);
1876 if (drop_rate > 0.05) {
Arnaldo Carvalho de Melo41a43da2018-04-05 14:34:09 -03001877 ui__warning("Processed %" PRIu64 " samples and lost %3.2f%%!\n\n",
Kan Liangc4937a92015-05-10 15:13:15 -04001878 stats->nr_events[PERF_RECORD_SAMPLE] + stats->total_lost_samples,
1879 drop_rate * 100.0);
1880 }
1881 }
1882
Adrian Huntera38f48e2015-09-25 16:15:37 +03001883 if (session->tool->aux == perf_event__process_aux &&
1884 stats->total_aux_lost != 0) {
1885 ui__warning("AUX data lost %" PRIu64 " times out of %u!\n\n",
1886 stats->total_aux_lost,
1887 stats->nr_events[PERF_RECORD_AUX]);
1888 }
1889
Alexander Shishkin05a1f472017-03-16 18:41:59 +02001890 if (session->tool->aux == perf_event__process_aux &&
1891 stats->total_aux_partial != 0) {
1892 bool vmm_exclusive = false;
1893
1894 (void)sysfs__read_bool("module/kvm_intel/parameters/vmm_exclusive",
1895 &vmm_exclusive);
1896
1897 ui__warning("AUX data had gaps in it %" PRIu64 " times out of %u!\n\n"
1898 "Are you running a KVM guest in the background?%s\n\n",
1899 stats->total_aux_partial,
1900 stats->nr_events[PERF_RECORD_AUX],
1901 vmm_exclusive ?
1902 "\nReloading kvm_intel module with vmm_exclusive=0\n"
1903 "will reduce the gaps to only guest's timeslices." :
1904 "");
1905 }
1906
Suzuki K Poulosec68b4212021-07-28 10:12:19 +01001907 if (session->tool->aux == perf_event__process_aux &&
1908 stats->total_aux_collision != 0) {
1909 ui__warning("AUX data detected collision %" PRIu64 " times out of %u!\n\n",
1910 stats->total_aux_collision,
1911 stats->nr_events[PERF_RECORD_AUX]);
1912 }
1913
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001914 if (stats->nr_unknown_events != 0) {
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -02001915 ui__warning("Found %u unknown events!\n\n"
1916 "Is this an older tool processing a perf.data "
1917 "file generated by a more recent tool?\n\n"
1918 "If that is not the case, consider "
1919 "reporting to linux-kernel@vger.kernel.org.\n\n",
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001920 stats->nr_unknown_events);
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -02001921 }
1922
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001923 if (stats->nr_unknown_id != 0) {
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -03001924 ui__warning("%u samples with id not present in the header\n",
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001925 stats->nr_unknown_id);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -03001926 }
1927
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001928 if (stats->nr_invalid_chains != 0) {
Arnaldo Carvalho de Melo75be9892015-02-14 14:50:11 -03001929 ui__warning("Found invalid callchains!\n\n"
1930 "%u out of %u events were discarded for this reason.\n\n"
1931 "Consider reporting to linux-kernel@vger.kernel.org.\n\n",
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001932 stats->nr_invalid_chains,
1933 stats->nr_events[PERF_RECORD_SAMPLE]);
Arnaldo Carvalho de Melo75be9892015-02-14 14:50:11 -03001934 }
Joerg Roedel0c095712012-02-10 18:05:04 +01001935
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001936 if (stats->nr_unprocessable_samples != 0) {
Joerg Roedel0c095712012-02-10 18:05:04 +01001937 ui__warning("%u unprocessable samples recorded.\n"
1938 "Do you have a KVM guest running and not using 'perf kvm'?\n",
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001939 stats->nr_unprocessable_samples);
Joerg Roedel0c095712012-02-10 18:05:04 +01001940 }
Jiri Olsaf61ff6c2014-11-26 16:39:31 +01001941
Wang Nanf06149c2016-07-14 08:34:46 +00001942 perf_session__warn_order(session);
Adrian Hunter85ed4722015-04-09 18:53:50 +03001943
1944 events_stats__auxtrace_error_warn(stats);
Kan Liang930e6fc2015-06-17 09:51:10 -04001945
1946 if (stats->nr_proc_map_timeout != 0) {
1947 ui__warning("%d map information files for pre-existing threads were\n"
1948 "not processed, if there are samples for addresses they\n"
1949 "will not be resolved, you may find out which are these\n"
1950 "threads by running with -v and redirecting the output\n"
Kan Liang9d9cad72015-06-17 09:51:11 -04001951 "to a file.\n"
1952 "The time limit to process proc map is too short?\n"
1953 "Increase it by --proc-map-timeout\n",
Kan Liang930e6fc2015-06-17 09:51:10 -04001954 stats->nr_proc_map_timeout);
1955 }
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -02001956}
1957
Adrian Huntera5499b32015-05-29 16:33:30 +03001958static int perf_session__flush_thread_stack(struct thread *thread,
1959 void *p __maybe_unused)
1960{
1961 return thread_stack__flush(thread);
1962}
1963
1964static int perf_session__flush_thread_stacks(struct perf_session *session)
1965{
1966 return machines__for_each_thread(&session->machines,
1967 perf_session__flush_thread_stack,
1968 NULL);
1969}
1970
Tom Zanussi8dc58102010-04-01 23:59:15 -05001971volatile int session_done;
1972
Alexey Budankovcb62c6f2019-03-18 20:45:11 +03001973static int __perf_session__process_decomp_events(struct perf_session *session);
1974
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001975static int __perf_session__process_pipe_events(struct perf_session *session)
Tom Zanussi8dc58102010-04-01 23:59:15 -05001976{
Arnaldo Carvalho de Melofa713a4e2015-03-03 11:48:12 -03001977 struct ordered_events *oe = &session->ordered_events;
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -03001978 struct perf_tool *tool = session->tool;
Stephane Eranian444d2862012-05-15 13:28:12 +02001979 union perf_event *event;
1980 uint32_t size, cur_size = 0;
1981 void *buf = NULL;
Adrian Hunterd5652d82014-07-23 22:19:58 +03001982 s64 skip = 0;
Tom Zanussi8dc58102010-04-01 23:59:15 -05001983 u64 head;
Jiri Olsa727ebd52013-11-28 11:30:14 +01001984 ssize_t err;
Tom Zanussi8dc58102010-04-01 23:59:15 -05001985 void *p;
1986
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001987 perf_tool__fill_defaults(tool);
Tom Zanussi8dc58102010-04-01 23:59:15 -05001988
1989 head = 0;
Stephane Eranian444d2862012-05-15 13:28:12 +02001990 cur_size = sizeof(union perf_event);
1991
1992 buf = malloc(cur_size);
1993 if (!buf)
1994 return -errno;
David Carrillo-Cisneros1e0d4f02017-04-10 13:14:27 -07001995 ordered_events__set_copy_on_queue(oe, true);
Tom Zanussi8dc58102010-04-01 23:59:15 -05001996more:
Stephane Eranian444d2862012-05-15 13:28:12 +02001997 event = buf;
Namhyung Kim60136662020-10-30 14:47:42 +09001998 err = perf_data__read(session->data, event,
1999 sizeof(struct perf_event_header));
Tom Zanussi8dc58102010-04-01 23:59:15 -05002000 if (err <= 0) {
2001 if (err == 0)
2002 goto done;
2003
2004 pr_err("failed to read event header\n");
2005 goto out_err;
2006 }
2007
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03002008 if (session->header.needs_swap)
Stephane Eranian444d2862012-05-15 13:28:12 +02002009 perf_event_header__bswap(&event->header);
Tom Zanussi8dc58102010-04-01 23:59:15 -05002010
Stephane Eranian444d2862012-05-15 13:28:12 +02002011 size = event->header.size;
Adrian Hunter27389d72013-07-04 16:20:27 +03002012 if (size < sizeof(struct perf_event_header)) {
2013 pr_err("bad event header size\n");
2014 goto out_err;
2015 }
Tom Zanussi8dc58102010-04-01 23:59:15 -05002016
Stephane Eranian444d2862012-05-15 13:28:12 +02002017 if (size > cur_size) {
2018 void *new = realloc(buf, size);
2019 if (!new) {
2020 pr_err("failed to allocate memory to read event\n");
2021 goto out_err;
2022 }
2023 buf = new;
2024 cur_size = size;
2025 event = buf;
2026 }
2027 p = event;
Tom Zanussi8dc58102010-04-01 23:59:15 -05002028 p += sizeof(struct perf_event_header);
2029
Tom Zanussi794e43b2010-05-05 00:27:40 -05002030 if (size - sizeof(struct perf_event_header)) {
Namhyung Kim60136662020-10-30 14:47:42 +09002031 err = perf_data__read(session->data, p,
2032 size - sizeof(struct perf_event_header));
Tom Zanussi794e43b2010-05-05 00:27:40 -05002033 if (err <= 0) {
2034 if (err == 0) {
2035 pr_err("unexpected end of event stream\n");
2036 goto done;
2037 }
Tom Zanussi8dc58102010-04-01 23:59:15 -05002038
Tom Zanussi794e43b2010-05-05 00:27:40 -05002039 pr_err("failed to read event data\n");
2040 goto out_err;
2041 }
Tom Zanussi8dc58102010-04-01 23:59:15 -05002042 }
2043
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03002044 if ((skip = perf_session__process_event(session, event, head)) < 0) {
Jiri Olsa9389a462012-04-16 20:42:51 +02002045 pr_err("%#" PRIx64 " [%#x]: failed to process type: %d\n",
Stephane Eranian444d2862012-05-15 13:28:12 +02002046 head, event->header.size, event->header.type);
Jiri Olsa9389a462012-04-16 20:42:51 +02002047 err = -EINVAL;
2048 goto out_err;
Tom Zanussi8dc58102010-04-01 23:59:15 -05002049 }
2050
2051 head += size;
2052
Tom Zanussi8dc58102010-04-01 23:59:15 -05002053 if (skip > 0)
2054 head += skip;
2055
Alexey Budankovcb62c6f2019-03-18 20:45:11 +03002056 err = __perf_session__process_decomp_events(session);
2057 if (err)
2058 goto out_err;
2059
Tom Zanussi8dc58102010-04-01 23:59:15 -05002060 if (!session_done())
2061 goto more;
2062done:
Adrian Hunter8c16b642013-10-18 15:29:02 +03002063 /* do the final flush for ordered samples */
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03002064 err = ordered_events__flush(oe, OE_FLUSH__FINAL);
Adrian Hunterc4468702015-04-09 18:53:48 +03002065 if (err)
2066 goto out_err;
2067 err = auxtrace__flush_events(session, tool);
Adrian Huntera5499b32015-05-29 16:33:30 +03002068 if (err)
2069 goto out_err;
2070 err = perf_session__flush_thread_stacks(session);
Tom Zanussi8dc58102010-04-01 23:59:15 -05002071out_err:
Stephane Eranian444d2862012-05-15 13:28:12 +02002072 free(buf);
Jiri Olsa075ca1e2018-01-07 17:03:54 +01002073 if (!tool->no_warn)
2074 perf_session__warn_about_errors(session);
Jiri Olsaadc56ed2014-06-10 22:50:03 +02002075 ordered_events__free(&session->ordered_events);
Adrian Hunterc4468702015-04-09 18:53:48 +03002076 auxtrace__free_events(session);
Tom Zanussi8dc58102010-04-01 23:59:15 -05002077 return err;
2078}
2079
Frederic Weisbecker998bedc2011-05-23 13:06:28 +02002080static union perf_event *
Alexey Budankovbb1835a2019-11-18 17:21:03 +03002081prefetch_event(char *buf, u64 head, size_t mmap_size,
2082 bool needs_swap, union perf_event *error)
Frederic Weisbecker998bedc2011-05-23 13:06:28 +02002083{
2084 union perf_event *event;
2085
2086 /*
2087 * Ensure we have enough space remaining to read
2088 * the size of the event in the headers.
2089 */
2090 if (head + sizeof(event->header) > mmap_size)
2091 return NULL;
2092
2093 event = (union perf_event *)(buf + head);
Alexey Budankovbb1835a2019-11-18 17:21:03 +03002094 if (needs_swap)
Frederic Weisbecker998bedc2011-05-23 13:06:28 +02002095 perf_event_header__bswap(&event->header);
2096
Alexey Budankovbb1835a2019-11-18 17:21:03 +03002097 if (head + event->header.size <= mmap_size)
2098 return event;
Frederic Weisbecker998bedc2011-05-23 13:06:28 +02002099
Alexey Budankovbb1835a2019-11-18 17:21:03 +03002100 /* We're not fetching the event so swap back again */
2101 if (needs_swap)
2102 perf_event_header__bswap(&event->header);
2103
2104 pr_debug("%s: head=%#" PRIx64 " event->header_size=%#x, mmap_size=%#zx:"
2105 " fuzzed or compressed perf.data?\n",__func__, head, event->header.size, mmap_size);
2106
2107 return error;
2108}
2109
2110static union perf_event *
2111fetch_mmaped_event(u64 head, size_t mmap_size, char *buf, bool needs_swap)
2112{
2113 return prefetch_event(buf, head, mmap_size, needs_swap, ERR_PTR(-EINVAL));
2114}
2115
2116static union perf_event *
2117fetch_decomp_event(u64 head, size_t mmap_size, char *buf, bool needs_swap)
2118{
2119 return prefetch_event(buf, head, mmap_size, needs_swap, NULL);
Frederic Weisbecker998bedc2011-05-23 13:06:28 +02002120}
2121
Alexey Budankovcb62c6f2019-03-18 20:45:11 +03002122static int __perf_session__process_decomp_events(struct perf_session *session)
2123{
2124 s64 skip;
2125 u64 size, file_pos = 0;
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +03002126 struct decomp *decomp = session->active_decomp->decomp_last;
Alexey Budankovcb62c6f2019-03-18 20:45:11 +03002127
2128 if (!decomp)
2129 return 0;
2130
2131 while (decomp->head < decomp->size && !session_done()) {
Alexey Budankovbb1835a2019-11-18 17:21:03 +03002132 union perf_event *event = fetch_decomp_event(decomp->head, decomp->size, decomp->data,
2133 session->header.needs_swap);
Arnaldo Carvalho de Melo57fc0322019-07-30 10:58:41 -03002134
Alexey Budankovcb62c6f2019-03-18 20:45:11 +03002135 if (!event)
2136 break;
2137
2138 size = event->header.size;
2139
2140 if (size < sizeof(struct perf_event_header) ||
2141 (skip = perf_session__process_event(session, event, file_pos)) < 0) {
2142 pr_err("%#" PRIx64 " [%#x]: failed to process type: %d\n",
2143 decomp->file_pos + decomp->head, event->header.size, event->header.type);
2144 return -EINVAL;
2145 }
2146
2147 if (skip)
2148 size += skip;
2149
2150 decomp->head += size;
2151 }
2152
2153 return 0;
2154}
2155
David Miller35d48dd2012-11-10 14:12:19 -05002156/*
2157 * On 64bit we can mmap the data file in one go. No need for tiny mmap
2158 * slices. On 32bit we use 32MB.
2159 */
2160#if BITS_PER_LONG == 64
2161#define MMAP_SIZE ULLONG_MAX
2162#define NUM_MMAPS 1
2163#else
2164#define MMAP_SIZE (32 * 1024 * 1024ULL)
2165#define NUM_MMAPS 128
2166#endif
2167
Jiri Olsae51f8062019-03-08 14:47:40 +01002168struct reader;
2169
2170typedef s64 (*reader_cb_t)(struct perf_session *session,
2171 union perf_event *event,
2172 u64 file_offset);
2173
Jiri Olsa82715eb2019-01-10 11:12:58 +01002174struct reader {
Jiri Olsae51f8062019-03-08 14:47:40 +01002175 int fd;
2176 u64 data_size;
2177 u64 data_offset;
2178 reader_cb_t process;
Adrian Hunter2a525f62021-04-30 10:03:01 +03002179 bool in_place_update;
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002180 char *mmaps[NUM_MMAPS];
2181 size_t mmap_size;
2182 int mmap_idx;
2183 char *mmap_cur;
2184 u64 file_pos;
2185 u64 file_offset;
2186 u64 head;
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +03002187 struct zstd_data zstd_data;
2188 struct decomp_data decomp_data;
Jiri Olsa82715eb2019-01-10 11:12:58 +01002189};
2190
Jiri Olsa3c7b67b2019-01-10 11:13:01 +01002191static int
Alexey Bayduraev59650632021-10-13 12:06:37 +03002192reader__init(struct reader *rd, bool *one_mmap)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002193{
Jiri Olsa3c7b67b2019-01-10 11:13:01 +01002194 u64 data_size = rd->data_size;
Alexey Bayduraev59650632021-10-13 12:06:37 +03002195 char **mmaps = rd->mmaps;
Thomas Gleixner0331ee02010-11-30 17:49:38 +00002196
Alexey Bayduraevde096482021-10-13 12:06:39 +03002197 rd->head = rd->data_offset;
Jiri Olsa3c7b67b2019-01-10 11:13:01 +01002198 data_size += rd->data_offset;
Thomas Gleixner55b446292010-11-30 17:49:46 +00002199
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002200 rd->mmap_size = MMAP_SIZE;
2201 if (rd->mmap_size > data_size) {
2202 rd->mmap_size = data_size;
Alexey Bayduraev59650632021-10-13 12:06:37 +03002203 if (one_mmap)
2204 *one_mmap = true;
Adrian Hunter919d86d2014-07-14 13:02:51 +03002205 }
Thomas Gleixner55b446292010-11-30 17:49:46 +00002206
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002207 memset(mmaps, 0, sizeof(rd->mmaps));
Thomas Gleixnerfe174202010-11-30 17:49:49 +00002208
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +03002209 if (zstd_init(&rd->zstd_data, 0))
2210 return -1;
2211 rd->decomp_data.zstd_decomp = &rd->zstd_data;
Alexey Bayduraev59650632021-10-13 12:06:37 +03002212
2213 return 0;
2214}
2215
2216static void
2217reader__release_decomp(struct reader *rd)
2218{
2219 perf_decomp__release_events(rd->decomp_data.decomp);
2220 zstd_fini(&rd->zstd_data);
2221}
2222
2223static int
Alexey Bayduraev06763e72021-10-13 12:06:38 +03002224reader__mmap(struct reader *rd, struct perf_session *session)
Alexey Bayduraev59650632021-10-13 12:06:37 +03002225{
Alexey Bayduraev06763e72021-10-13 12:06:38 +03002226 int mmap_prot, mmap_flags;
Alexey Bayduraev59650632021-10-13 12:06:37 +03002227 char *buf, **mmaps = rd->mmaps;
Alexey Bayduraevde096482021-10-13 12:06:39 +03002228 u64 page_offset;
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +03002229
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002230 mmap_prot = PROT_READ;
2231 mmap_flags = MAP_SHARED;
2232
Adrian Hunter2a525f62021-04-30 10:03:01 +03002233 if (rd->in_place_update) {
2234 mmap_prot |= PROT_WRITE;
2235 } else if (session->header.needs_swap) {
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002236 mmap_prot |= PROT_WRITE;
2237 mmap_flags = MAP_PRIVATE;
2238 }
Alexey Bayduraev06763e72021-10-13 12:06:38 +03002239
Alexey Bayduraevde096482021-10-13 12:06:39 +03002240 if (mmaps[rd->mmap_idx]) {
2241 munmap(mmaps[rd->mmap_idx], rd->mmap_size);
2242 mmaps[rd->mmap_idx] = NULL;
2243 }
2244
2245 page_offset = page_size * (rd->head / page_size);
2246 rd->file_offset += page_offset;
2247 rd->head -= page_offset;
2248
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002249 buf = mmap(NULL, rd->mmap_size, mmap_prot, mmap_flags, rd->fd,
2250 rd->file_offset);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002251 if (buf == MAP_FAILED) {
2252 pr_err("failed to mmap file\n");
Alexey Bayduraev06763e72021-10-13 12:06:38 +03002253 return -errno;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002254 }
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002255 mmaps[rd->mmap_idx] = rd->mmap_cur = buf;
2256 rd->mmap_idx = (rd->mmap_idx + 1) & (ARRAY_SIZE(rd->mmaps) - 1);
2257 rd->file_pos = rd->file_offset + rd->head;
Adrian Hunter919d86d2014-07-14 13:02:51 +03002258 if (session->one_mmap) {
2259 session->one_mmap_addr = buf;
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002260 session->one_mmap_offset = rd->file_offset;
Adrian Hunter919d86d2014-07-14 13:02:51 +03002261 }
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002262
Alexey Bayduraev06763e72021-10-13 12:06:38 +03002263 return 0;
2264}
2265
Alexey Bayduraev4c002882021-10-13 12:06:41 +03002266enum {
2267 READER_OK,
2268 READER_NODATA,
2269};
2270
Alexey Bayduraev06763e72021-10-13 12:06:38 +03002271static int
Alexey Bayduraev5c10dc92021-10-13 12:06:40 +03002272reader__read_event(struct reader *rd, struct perf_session *session,
2273 struct ui_progress *prog)
Alexey Bayduraev06763e72021-10-13 12:06:38 +03002274{
Alexey Bayduraevde096482021-10-13 12:06:39 +03002275 u64 size;
Alexey Bayduraev4c002882021-10-13 12:06:41 +03002276 int err = READER_OK;
Alexey Bayduraev06763e72021-10-13 12:06:38 +03002277 union perf_event *event;
2278 s64 skip;
2279
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002280 event = fetch_mmaped_event(rd->head, rd->mmap_size, rd->mmap_cur,
2281 session->header.needs_swap);
Arnaldo Carvalho de Melo57fc0322019-07-30 10:58:41 -03002282 if (IS_ERR(event))
2283 return PTR_ERR(event);
2284
Alexey Bayduraevde096482021-10-13 12:06:39 +03002285 if (!event)
Alexey Bayduraev4c002882021-10-13 12:06:41 +03002286 return READER_NODATA;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002287
2288 size = event->header.size;
2289
Thomas Richter167e4182019-04-23 12:53:03 +02002290 skip = -EINVAL;
2291
Adrian Hunter27389d72013-07-04 16:20:27 +03002292 if (size < sizeof(struct perf_event_header) ||
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002293 (skip = rd->process(session, event, rd->file_pos)) < 0) {
Thomas Richter167e4182019-04-23 12:53:03 +02002294 pr_err("%#" PRIx64 " [%#x]: failed to process type: %d [%s]\n",
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002295 rd->file_offset + rd->head, event->header.size,
Thomas Richter167e4182019-04-23 12:53:03 +02002296 event->header.type, strerror(-skip));
2297 err = skip;
Jiri Olsa3c7b67b2019-01-10 11:13:01 +01002298 goto out;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002299 }
2300
Adrian Hunter6f917c72014-07-23 22:19:57 +03002301 if (skip)
2302 size += skip;
2303
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002304 rd->head += size;
2305 rd->file_pos += size;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002306
Alexey Budankovcb62c6f2019-03-18 20:45:11 +03002307 err = __perf_session__process_decomp_events(session);
2308 if (err)
2309 goto out;
2310
Jiri Olsa3c7b67b2019-01-10 11:13:01 +01002311 ui_progress__update(prog, size);
Thomas Gleixner55b446292010-11-30 17:49:46 +00002312
Alexey Bayduraev5c10dc92021-10-13 12:06:40 +03002313out:
2314 return err;
2315}
2316
2317static int
2318reader__process_events(struct reader *rd, struct perf_session *session,
2319 struct ui_progress *prog)
2320{
2321 int err;
2322
2323 err = reader__init(rd, &session->one_mmap);
2324 if (err)
2325 goto out;
2326
2327 session->active_decomp = &rd->decomp_data;
2328
2329remap:
2330 err = reader__mmap(rd, session);
2331 if (err)
2332 goto out;
2333
2334more:
2335 err = reader__read_event(rd, session, prog);
2336 if (err < 0)
2337 goto out;
Alexey Bayduraev4c002882021-10-13 12:06:41 +03002338 else if (err == READER_NODATA)
Alexey Bayduraev5c10dc92021-10-13 12:06:40 +03002339 goto remap;
2340
Arnaldo Carvalho de Melo33e940a2013-09-17 16:34:28 -03002341 if (session_done())
Adrian Hunter8c16b642013-10-18 15:29:02 +03002342 goto out;
Arnaldo Carvalho de Melo33e940a2013-09-17 16:34:28 -03002343
Alexey Bayduraev59650632021-10-13 12:06:37 +03002344 if (rd->file_pos < rd->data_size + rd->data_offset)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002345 goto more;
Thomas Gleixnerd6513282010-11-30 17:49:44 +00002346
Adrian Hunter8c16b642013-10-18 15:29:02 +03002347out:
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +03002348 session->active_decomp = &session->decomp_data;
Jiri Olsa3c7b67b2019-01-10 11:13:01 +01002349 return err;
2350}
2351
Jiri Olsae51f8062019-03-08 14:47:40 +01002352static s64 process_simple(struct perf_session *session,
2353 union perf_event *event,
2354 u64 file_offset)
2355{
2356 return perf_session__process_event(session, event, file_offset);
2357}
2358
Jiri Olsa3c7b67b2019-01-10 11:13:01 +01002359static int __perf_session__process_events(struct perf_session *session)
2360{
2361 struct reader rd = {
2362 .fd = perf_data__fd(session->data),
2363 .data_size = session->header.data_size,
2364 .data_offset = session->header.data_offset,
Jiri Olsae51f8062019-03-08 14:47:40 +01002365 .process = process_simple,
Adrian Hunter2a525f62021-04-30 10:03:01 +03002366 .in_place_update = session->data->in_place_update,
Jiri Olsa3c7b67b2019-01-10 11:13:01 +01002367 };
2368 struct ordered_events *oe = &session->ordered_events;
2369 struct perf_tool *tool = session->tool;
2370 struct ui_progress prog;
2371 int err;
2372
2373 perf_tool__fill_defaults(tool);
2374
2375 if (rd.data_size == 0)
2376 return -1;
2377
2378 ui_progress__init_size(&prog, rd.data_size, "Processing events...");
2379
2380 err = reader__process_events(&rd, session, &prog);
2381 if (err)
2382 goto out_err;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +02002383 /* do the final flush for ordered samples */
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03002384 err = ordered_events__flush(oe, OE_FLUSH__FINAL);
Adrian Hunterc4468702015-04-09 18:53:48 +03002385 if (err)
2386 goto out_err;
2387 err = auxtrace__flush_events(session, tool);
Adrian Huntera5499b32015-05-29 16:33:30 +03002388 if (err)
2389 goto out_err;
2390 err = perf_session__flush_thread_stacks(session);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002391out_err:
Namhyung Kima5580f32012-11-13 22:30:34 +09002392 ui_progress__finish();
Jiri Olsa075ca1e2018-01-07 17:03:54 +01002393 if (!tool->no_warn)
2394 perf_session__warn_about_errors(session);
Wang Nanb26dc732016-04-13 08:21:04 +00002395 /*
2396 * We may switching perf.data output, make ordered_events
2397 * reusable.
2398 */
2399 ordered_events__reinit(&session->ordered_events);
Adrian Hunterc4468702015-04-09 18:53:48 +03002400 auxtrace__free_events(session);
Alexey Bayduraev59650632021-10-13 12:06:37 +03002401 reader__release_decomp(&rd);
Adrian Hunter919d86d2014-07-14 13:02:51 +03002402 session->one_mmap = false;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002403 return err;
2404}
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02002405
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03002406int perf_session__process_events(struct perf_session *session)
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02002407{
Masami Hiramatsu9d8b1722015-12-09 11:11:23 +09002408 if (perf_session__register_idle_thread(session) < 0)
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02002409 return -ENOMEM;
2410
Jiri Olsa7ba4da12019-01-10 11:12:56 +01002411 if (perf_data__is_pipe(session->data))
2412 return __perf_session__process_pipe_events(session);
Dave Martin88ca8952010-07-27 11:46:12 -03002413
Jiri Olsa7ba4da12019-01-10 11:12:56 +01002414 return __perf_session__process_events(session);
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02002415}
2416
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -03002417bool perf_session__has_traces(struct perf_session *session, const char *msg)
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02002418{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002419 struct evsel *evsel;
David Ahern93ea01c292013-08-07 22:50:58 -04002420
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002421 evlist__for_each_entry(session->evlist, evsel) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002422 if (evsel->core.attr.type == PERF_TYPE_TRACEPOINT)
David Ahern93ea01c292013-08-07 22:50:58 -04002423 return true;
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02002424 }
2425
David Ahern93ea01c292013-08-07 22:50:58 -04002426 pr_err("No trace sample to read. Did you call 'perf %s'?\n", msg);
2427 return false;
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02002428}
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02002429
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03002430int map__set_kallsyms_ref_reloc_sym(struct map *map, const char *symbol_name, u64 addr)
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02002431{
2432 char *bracket;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08002433 struct ref_reloc_sym *ref;
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03002434 struct kmap *kmap;
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02002435
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08002436 ref = zalloc(sizeof(struct ref_reloc_sym));
2437 if (ref == NULL)
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02002438 return -ENOMEM;
2439
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08002440 ref->name = strdup(symbol_name);
2441 if (ref->name == NULL) {
2442 free(ref);
2443 return -ENOMEM;
2444 }
2445
2446 bracket = strchr(ref->name, ']');
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02002447 if (bracket)
2448 *bracket = '\0';
2449
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08002450 ref->addr = addr;
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -02002451
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03002452 kmap = map__kmap(map);
2453 if (kmap)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08002454 kmap->ref_reloc_sym = ref;
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -02002455
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02002456 return 0;
2457}
Arnaldo Carvalho de Melo1f626bc2010-05-09 19:57:08 -03002458
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03002459size_t perf_session__fprintf_dsos(struct perf_session *session, FILE *fp)
Arnaldo Carvalho de Melo1f626bc2010-05-09 19:57:08 -03002460{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03002461 return machines__fprintf_dsos(&session->machines, fp);
Arnaldo Carvalho de Melo1f626bc2010-05-09 19:57:08 -03002462}
Arnaldo Carvalho de Melof8690972010-05-19 13:41:23 -03002463
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03002464size_t perf_session__fprintf_dsos_buildid(struct perf_session *session, FILE *fp,
Arnaldo Carvalho de Melo417c2ff2012-12-07 09:53:58 -03002465 bool (skip)(struct dso *dso, int parm), int parm)
Arnaldo Carvalho de Melof8690972010-05-19 13:41:23 -03002466{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03002467 return machines__fprintf_dsos_buildid(&session->machines, fp, skip, parm);
Arnaldo Carvalho de Melof8690972010-05-19 13:41:23 -03002468}
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -03002469
Namhyung Kim2775de02021-04-26 18:37:15 -07002470size_t perf_session__fprintf_nr_events(struct perf_session *session, FILE *fp,
2471 bool skip_empty)
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -03002472{
Adrian Hunterc4468702015-04-09 18:53:48 +03002473 size_t ret;
2474 const char *msg = "";
2475
2476 if (perf_header__has_feat(&session->header, HEADER_AUXTRACE))
2477 msg = " (excludes AUX area (e.g. instruction trace) decoded / synthesized events)";
2478
Adrian Hunterfe692ac2015-06-23 10:52:49 +03002479 ret = fprintf(fp, "\nAggregated stats:%s\n", msg);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -03002480
Namhyung Kim2775de02021-04-26 18:37:15 -07002481 ret += events_stats__fprintf(&session->evlist->stats, fp, skip_empty);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -03002482 return ret;
2483}
David Ahernc0230b22011-03-09 22:23:27 -07002484
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -02002485size_t perf_session__fprintf(struct perf_session *session, FILE *fp)
2486{
2487 /*
2488 * FIXME: Here we have to actually print all the machines in this
2489 * session, not just the host...
2490 */
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -03002491 return machine__fprintf(&session->machines.host, fp);
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -02002492}
2493
Jiri Olsa32dcd022019-07-21 13:23:51 +02002494struct evsel *perf_session__find_first_evtype(struct perf_session *session,
David Ahern9cbdb702011-04-06 21:54:20 -06002495 unsigned int type)
2496{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002497 struct evsel *pos;
David Ahern9cbdb702011-04-06 21:54:20 -06002498
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002499 evlist__for_each_entry(session->evlist, pos) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002500 if (pos->core.attr.type == type)
David Ahern9cbdb702011-04-06 21:54:20 -06002501 return pos;
2502 }
2503 return NULL;
2504}
2505
Anton Blanchard5d67be92011-07-04 21:57:50 +10002506int perf_session__cpu_bitmap(struct perf_session *session,
2507 const char *cpu_list, unsigned long *cpu_bitmap)
2508{
Stanislav Fomichev8bac41c2014-01-20 15:39:39 +04002509 int i, err = -1;
Jiri Olsaf8548392019-07-21 13:23:49 +02002510 struct perf_cpu_map *map;
Adrian Hunter5501e922021-01-07 19:41:59 +02002511 int nr_cpus = min(session->header.env.nr_cpus_avail, MAX_NR_CPUS);
Anton Blanchard5d67be92011-07-04 21:57:50 +10002512
2513 for (i = 0; i < PERF_TYPE_MAX; ++i) {
Jiri Olsa32dcd022019-07-21 13:23:51 +02002514 struct evsel *evsel;
Anton Blanchard5d67be92011-07-04 21:57:50 +10002515
2516 evsel = perf_session__find_first_evtype(session, i);
2517 if (!evsel)
2518 continue;
2519
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002520 if (!(evsel->core.attr.sample_type & PERF_SAMPLE_CPU)) {
Anton Blanchard5d67be92011-07-04 21:57:50 +10002521 pr_err("File does not contain CPU events. "
Adrian Hunter30795462017-05-26 11:17:19 +03002522 "Remove -C option to proceed.\n");
Anton Blanchard5d67be92011-07-04 21:57:50 +10002523 return -1;
2524 }
2525 }
2526
Jiri Olsa9c3516d2019-07-21 13:24:30 +02002527 map = perf_cpu_map__new(cpu_list);
David Ahern47fbe532011-11-13 10:45:27 -07002528 if (map == NULL) {
2529 pr_err("Invalid cpu_list\n");
2530 return -1;
2531 }
Anton Blanchard5d67be92011-07-04 21:57:50 +10002532
2533 for (i = 0; i < map->nr; i++) {
2534 int cpu = map->map[i];
2535
Kyle Meyer7df4e362019-08-27 16:43:49 -05002536 if (cpu >= nr_cpus) {
Anton Blanchard5d67be92011-07-04 21:57:50 +10002537 pr_err("Requested CPU %d too large. "
2538 "Consider raising MAX_NR_CPUS\n", cpu);
Stanislav Fomichev8bac41c2014-01-20 15:39:39 +04002539 goto out_delete_map;
Anton Blanchard5d67be92011-07-04 21:57:50 +10002540 }
2541
2542 set_bit(cpu, cpu_bitmap);
2543 }
2544
Stanislav Fomichev8bac41c2014-01-20 15:39:39 +04002545 err = 0;
2546
2547out_delete_map:
Jiri Olsa38f01d82019-07-21 13:24:17 +02002548 perf_cpu_map__put(map);
Stanislav Fomichev8bac41c2014-01-20 15:39:39 +04002549 return err;
Anton Blanchard5d67be92011-07-04 21:57:50 +10002550}
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002551
2552void perf_session__fprintf_info(struct perf_session *session, FILE *fp,
2553 bool full)
2554{
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002555 if (session == NULL || fp == NULL)
2556 return;
2557
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002558 fprintf(fp, "# ========\n");
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002559 perf_header__fprintf_info(session, fp, full);
2560 fprintf(fp, "# ========\n#\n");
2561}
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03002562
Jiri Olsa89f16882018-09-13 14:54:03 +02002563int perf_event__process_id_index(struct perf_session *session,
2564 union perf_event *event)
Adrian Hunter3c659ee2014-10-27 15:49:22 +02002565{
Jiri Olsa63503db2019-07-21 13:23:52 +02002566 struct evlist *evlist = session->evlist;
Jiri Olsa72932372019-08-28 15:57:16 +02002567 struct perf_record_id_index *ie = &event->id_index;
Adrian Hunter3c659ee2014-10-27 15:49:22 +02002568 size_t i, nr, max_nr;
2569
Jiri Olsa72932372019-08-28 15:57:16 +02002570 max_nr = (ie->header.size - sizeof(struct perf_record_id_index)) /
Adrian Hunter3c659ee2014-10-27 15:49:22 +02002571 sizeof(struct id_index_entry);
2572 nr = ie->nr;
2573 if (nr > max_nr)
2574 return -EINVAL;
2575
2576 if (dump_trace)
2577 fprintf(stdout, " nr: %zu\n", nr);
2578
2579 for (i = 0; i < nr; i++) {
2580 struct id_index_entry *e = &ie->entries[i];
2581 struct perf_sample_id *sid;
2582
2583 if (dump_trace) {
Jiri Olsafecb4102019-08-28 15:57:01 +02002584 fprintf(stdout, " ... id: %"PRI_lu64, e->id);
2585 fprintf(stdout, " idx: %"PRI_lu64, e->idx);
2586 fprintf(stdout, " cpu: %"PRI_ld64, e->cpu);
2587 fprintf(stdout, " tid: %"PRI_ld64"\n", e->tid);
Adrian Hunter3c659ee2014-10-27 15:49:22 +02002588 }
2589
Arnaldo Carvalho de Melo3ccf8a72020-11-30 14:17:57 -03002590 sid = evlist__id2sid(evlist, e->id);
Adrian Hunter3c659ee2014-10-27 15:49:22 +02002591 if (!sid)
2592 return -ENOENT;
2593 sid->idx = e->idx;
2594 sid->cpu = e->cpu;
2595 sid->tid = e->tid;
2596 }
2597 return 0;
2598}