blob: 498b05708db577326ff2e7a2919e59b7b02c48fa [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"
German Gomez83869012021-12-07 18:06:52 +000018#include "env.h"
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030019#include "evlist.h"
20#include "evsel.h"
Arnaldo Carvalho de Melo98521b32017-04-25 15:45:35 -030021#include "memswap.h"
Arnaldo Carvalho de Melo1101f692019-01-27 13:42:37 +010022#include "map.h"
Arnaldo Carvalho de Melodaecf9e2019-01-28 00:03:34 +010023#include "symbol.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020024#include "session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020025#include "tool.h"
Jiri Olsa0f6a3012012-08-07 15:20:45 +020026#include "perf_regs.h"
Jiri Olsab0a45202014-06-12 09:50:11 +020027#include "asm/bug.h"
Adrian Hunterc4468702015-04-09 18:53:48 +030028#include "auxtrace.h"
Arnaldo Carvalho de Meloe7ff8922017-04-19 21:34:35 -030029#include "thread.h"
Adrian Huntera5499b32015-05-29 16:33:30 +030030#include "thread-stack.h"
Thomas Richter93115d32019-01-17 10:37:17 -030031#include "sample-raw.h"
Jiri Olsa2d2aea62015-10-25 15:51:42 +010032#include "stat.h"
Leo Yan81e70d72021-04-28 20:09:15 +080033#include "tsc.h"
Arnaldo Carvalho de Melo171f7472019-08-30 11:28:14 -030034#include "ui/progress.h"
Arnaldo Carvalho de Meloc1a604d2019-08-29 15:20:59 -030035#include "../perf.h"
Adrian Hunterec1891a2018-11-06 23:07:10 +020036#include "arch/common.h"
Kan Liang6b9bae62020-12-16 10:57:57 -080037#include "units.h"
Arnaldo Carvalho de Melofb71c86c2019-09-03 10:56:06 -030038#include <internal/lib.h>
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020039
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030040#ifdef HAVE_ZSTD_SUPPORT
41static int perf_session__process_compressed_event(struct perf_session *session,
42 union perf_event *event, u64 file_offset)
43{
44 void *src;
45 size_t decomp_size, src_size;
46 u64 decomp_last_rem = 0;
Alexey Budankov872c8ee2019-07-09 17:48:14 +030047 size_t mmap_len, decomp_len = session->header.env.comp_mmap_len;
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +030048 struct decomp *decomp, *decomp_last = session->active_decomp->decomp_last;
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030049
Alexey Budankov872c8ee2019-07-09 17:48:14 +030050 if (decomp_last) {
51 decomp_last_rem = decomp_last->size - decomp_last->head;
52 decomp_len += decomp_last_rem;
53 }
54
55 mmap_len = sizeof(struct decomp) + decomp_len;
56 decomp = mmap(NULL, mmap_len, PROT_READ|PROT_WRITE,
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030057 MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
58 if (decomp == MAP_FAILED) {
59 pr_err("Couldn't allocate memory for decompression\n");
60 return -1;
61 }
62
63 decomp->file_pos = file_offset;
Alexey Budankov872c8ee2019-07-09 17:48:14 +030064 decomp->mmap_len = mmap_len;
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030065 decomp->head = 0;
66
Alexey Budankov872c8ee2019-07-09 17:48:14 +030067 if (decomp_last_rem) {
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030068 memcpy(decomp->data, &(decomp_last->data[decomp_last->head]), decomp_last_rem);
69 decomp->size = decomp_last_rem;
70 }
71
Jiri Olsa72932372019-08-28 15:57:16 +020072 src = (void *)event + sizeof(struct perf_record_compressed);
73 src_size = event->pack.header.size - sizeof(struct perf_record_compressed);
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030074
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +030075 decomp_size = zstd_decompress_stream(session->active_decomp->zstd_decomp, src, src_size,
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030076 &(decomp->data[decomp_last_rem]), decomp_len - decomp_last_rem);
77 if (!decomp_size) {
Alexey Budankov872c8ee2019-07-09 17:48:14 +030078 munmap(decomp, mmap_len);
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030079 pr_err("Couldn't decompress data\n");
80 return -1;
81 }
82
83 decomp->size += decomp_size;
84
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +030085 if (session->active_decomp->decomp == NULL)
86 session->active_decomp->decomp = decomp;
87 else
88 session->active_decomp->decomp_last->next = decomp;
89
90 session->active_decomp->decomp_last = decomp;
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030091
Chris Wilson20befbb2020-08-20 22:25:01 +010092 pr_debug("decomp (B): %zd to %zd\n", src_size, decomp_size);
Alexey Budankovcb62c6f2019-03-18 20:45:11 +030093
94 return 0;
95}
96#else /* !HAVE_ZSTD_SUPPORT */
97#define perf_session__process_compressed_event perf_session__process_compressed_event_stub
98#endif
99
Adrian Hunterc4468702015-04-09 18:53:48 +0300100static int perf_session__deliver_event(struct perf_session *session,
101 union perf_event *event,
Adrian Hunterc4468702015-04-09 18:53:48 +0300102 struct perf_tool *tool,
103 u64 file_offset);
Arnaldo Carvalho de Melod10eb1e2015-03-03 12:20:38 -0300104
Namhyung Kim0ae03892021-07-19 15:31:50 -0700105static int perf_session__open(struct perf_session *session, int repipe_fd)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200106{
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100107 struct perf_data *data = session->data;
Tom Zanussi8dc58102010-04-01 23:59:15 -0500108
Namhyung Kim0ae03892021-07-19 15:31:50 -0700109 if (perf_session__read_header(session, repipe_fd) < 0) {
Arnaldo Carvalho de Meloe87b4912015-11-09 17:12:03 -0300110 pr_err("incompatible file format (rerun with -v to learn more)\n");
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200111 return -1;
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200112 }
113
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100114 if (perf_data__is_pipe(data))
Jiri Olsacc9784bd2013-10-15 16:27:34 +0200115 return 0;
116
Jiri Olsa3ba78bd2015-11-05 15:40:47 +0100117 if (perf_header__has_feat(&session->header, HEADER_STAT))
118 return 0;
119
Arnaldo Carvalho de Melob3c2cc22020-06-17 09:24:21 -0300120 if (!evlist__valid_sample_type(session->evlist)) {
Arnaldo Carvalho de Meloe87b4912015-11-09 17:12:03 -0300121 pr_err("non matching sample_type\n");
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200122 return -1;
Arnaldo Carvalho de Meloc2a70652011-06-02 11:04:54 -0300123 }
124
Arnaldo Carvalho de Melo8cedf3a2020-06-17 09:29:48 -0300125 if (!evlist__valid_sample_id_all(session->evlist)) {
Arnaldo Carvalho de Meloe87b4912015-11-09 17:12:03 -0300126 pr_err("non matching sample_id_all\n");
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200127 return -1;
Arnaldo Carvalho de Meloc2a70652011-06-02 11:04:54 -0300128 }
129
Arnaldo Carvalho de Melo78e1bc22020-11-30 15:07:49 -0300130 if (!evlist__valid_read_format(session->evlist)) {
Arnaldo Carvalho de Meloe87b4912015-11-09 17:12:03 -0300131 pr_err("non matching read_format\n");
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200132 return -1;
Jiri Olsa9ede4732012-10-10 17:38:13 +0200133 }
134
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200135 return 0;
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200136}
137
Arnaldo Carvalho de Melo7b56cce2012-08-01 19:31:00 -0300138void perf_session__set_id_hdr_size(struct perf_session *session)
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200139{
Arnaldo Carvalho de Melo1420ba22020-11-30 15:13:12 -0300140 u16 id_hdr_size = evlist__id_hdr_size(session->evlist);
Arnaldo Carvalho de Melo7b56cce2012-08-01 19:31:00 -0300141
Arnaldo Carvalho de Melo7b56cce2012-08-01 19:31:00 -0300142 machines__set_id_hdr_size(&session->machines, id_hdr_size);
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200143}
144
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300145int perf_session__create_kernel_maps(struct perf_session *session)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800146{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300147 int ret = machine__create_kernel_maps(&session->machines.host);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800148
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800149 if (ret >= 0)
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300150 ret = machines__create_guest_kernel_maps(&session->machines);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800151 return ret;
152}
153
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300154static void perf_session__destroy_kernel_maps(struct perf_session *session)
Arnaldo Carvalho de Melo076c6e452010-08-02 18:18:28 -0300155{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300156 machines__destroy_kernel_maps(&session->machines);
Arnaldo Carvalho de Melo076c6e452010-08-02 18:18:28 -0300157}
158
Adrian Huntercfe1c412014-07-31 09:00:45 +0300159static bool perf_session__has_comm_exec(struct perf_session *session)
160{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200161 struct evsel *evsel;
Adrian Huntercfe1c412014-07-31 09:00:45 +0300162
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300163 evlist__for_each_entry(session->evlist, evsel) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200164 if (evsel->core.attr.comm_exec)
Adrian Huntercfe1c412014-07-31 09:00:45 +0300165 return true;
166 }
167
168 return false;
169}
170
171static void perf_session__set_comm_exec(struct perf_session *session)
172{
173 bool comm_exec = perf_session__has_comm_exec(session);
174
175 machines__set_comm_exec(&session->machines, comm_exec);
176}
177
Arnaldo Carvalho de Melod10eb1e2015-03-03 12:20:38 -0300178static int ordered_events__deliver_event(struct ordered_events *oe,
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -0300179 struct ordered_event *event)
Arnaldo Carvalho de Melod10eb1e2015-03-03 12:20:38 -0300180{
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -0300181 struct perf_session *session = container_of(oe, struct perf_session,
182 ordered_events);
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -0300183
Jiri Olsa93d10af2017-08-03 13:21:14 +0200184 return perf_session__deliver_event(session, event->event,
Adrian Hunterc4468702015-04-09 18:53:48 +0300185 session->tool, event->file_offset);
Arnaldo Carvalho de Melod10eb1e2015-03-03 12:20:38 -0300186}
187
Namhyung Kim2681bd82021-07-19 15:31:49 -0700188struct perf_session *__perf_session__new(struct perf_data *data,
Namhyung Kim0ae03892021-07-19 15:31:50 -0700189 bool repipe, int repipe_fd,
Namhyung Kim2681bd82021-07-19 15:31:49 -0700190 struct perf_tool *tool)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200191{
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530192 int ret = -ENOMEM;
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300193 struct perf_session *session = zalloc(sizeof(*session));
Robert Richterefad1412011-12-07 10:02:54 +0100194
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300195 if (!session)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200196 goto out;
197
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300198 session->repipe = repipe;
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -0300199 session->tool = tool;
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +0300200 session->decomp_data.zstd_decomp = &session->zstd_data;
201 session->active_decomp = &session->decomp_data;
Adrian Hunter99fa2982015-04-30 17:37:25 +0300202 INIT_LIST_HEAD(&session->auxtrace_index);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300203 machines__init(&session->machines);
Jiri Olsaa4a66682018-11-07 16:58:36 +0100204 ordered_events__init(&session->ordered_events,
205 ordered_events__deliver_event, NULL);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200206
Song Liue4378f02019-03-11 22:30:42 -0700207 perf_env__init(&session->header.env);
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100208 if (data) {
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530209 ret = perf_data__open(data);
210 if (ret < 0)
Arnaldo Carvalho de Melo64abebf72010-01-27 21:05:52 -0200211 goto out_delete;
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200212
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100213 session->data = data;
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200214
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100215 if (perf_data__is_read(data)) {
Namhyung Kim0ae03892021-07-19 15:31:50 -0700216 ret = perf_session__open(session, repipe_fd);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530217 if (ret < 0)
Jiri Olsabefa09b2019-03-05 16:25:35 +0100218 goto out_delete;
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200219
David Carrillo-Cisneros0973ad92017-04-10 13:14:30 -0700220 /*
221 * set session attributes that are present in perf.data
222 * but not in pipe-mode.
223 */
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100224 if (!data->is_pipe) {
David Carrillo-Cisneros0973ad92017-04-10 13:14:30 -0700225 perf_session__set_id_hdr_size(session);
226 perf_session__set_comm_exec(session);
227 }
Thomas Richter93115d32019-01-17 10:37:17 -0300228
Arnaldo Carvalho de Melo44d2a552020-11-30 15:11:10 -0300229 evlist__init_trace_event_sample_raw(session->evlist);
Jiri Olsaec65def2019-03-08 14:47:35 +0100230
231 /* Open the directory data. */
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530232 if (data->is_dir) {
233 ret = perf_data__open_dir(data);
Jiri Olsa01e97a52019-10-07 13:20:27 +0200234 if (ret)
235 goto out_delete;
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530236 }
Adrian Huntereeb399b2019-10-04 11:31:21 +0300237
238 if (!symbol_conf.kallsyms_name &&
239 !symbol_conf.vmlinux_name)
240 symbol_conf.kallsyms_name = perf_data__kallsyms_name(data);
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200241 }
Arnaldo Carvalho de Melo4cde9982015-09-09 12:25:00 -0300242 } else {
243 session->machines.host.env = &perf_env;
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200244 }
245
Adrian Hunterec1891a2018-11-06 23:07:10 +0200246 session->machines.host.single_address_space =
247 perf_env__single_address_space(session->machines.host.env);
248
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100249 if (!data || perf_data__is_write(data)) {
Arnaldo Carvalho de Melo64abebf72010-01-27 21:05:52 -0200250 /*
251 * In O_RDONLY mode this will be performed when reading the
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200252 * kernel MMAP event, in perf_event__process_mmap().
Arnaldo Carvalho de Melo64abebf72010-01-27 21:05:52 -0200253 */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300254 if (perf_session__create_kernel_maps(session) < 0)
Andi Kleena5c2a4c2014-09-24 14:39:54 -0700255 pr_warning("Cannot read kernel map\n");
Arnaldo Carvalho de Melo64abebf72010-01-27 21:05:52 -0200256 }
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200257
David Carrillo-Cisneros0973ad92017-04-10 13:14:30 -0700258 /*
259 * In pipe-mode, evlist is empty until PERF_RECORD_HEADER_ATTR is
Arnaldo Carvalho de Melo8cedf3a2020-06-17 09:29:48 -0300260 * processed, so evlist__sample_id_all is not meaningful here.
David Carrillo-Cisneros0973ad92017-04-10 13:14:30 -0700261 */
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100262 if ((!data || !data->is_pipe) && tool && tool->ordering_requires_timestamps &&
Arnaldo Carvalho de Melo8cedf3a2020-06-17 09:29:48 -0300263 tool->ordered_events && !evlist__sample_id_all(session->evlist)) {
Ian Munsie21ef97f2010-12-10 14:09:16 +1100264 dump_printf("WARNING: No sample_id_all support, falling back to unordered processing\n");
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200265 tool->ordered_events = false;
Arnaldo Carvalho de Melod10eb1e2015-03-03 12:20:38 -0300266 }
Ian Munsie21ef97f2010-12-10 14:09:16 +1100267
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300268 return session;
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200269
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200270 out_delete:
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300271 perf_session__delete(session);
Jiri Olsa6a4d98d2013-10-15 16:27:33 +0200272 out:
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530273 return ERR_PTR(ret);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200274}
275
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200276static void perf_session__delete_threads(struct perf_session *session)
277{
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -0300278 machine__delete_threads(&session->machines.host);
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200279}
280
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +0300281static void perf_decomp__release_events(struct decomp *next)
Alexey Budankovcb62c6f2019-03-18 20:45:11 +0300282{
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +0300283 struct decomp *decomp;
Alexey Budankov872c8ee2019-07-09 17:48:14 +0300284 size_t mmap_len;
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +0300285
Alexey Budankovcb62c6f2019-03-18 20:45:11 +0300286 do {
287 decomp = next;
288 if (decomp == NULL)
289 break;
290 next = decomp->next;
Alexey Budankov872c8ee2019-07-09 17:48:14 +0300291 mmap_len = decomp->mmap_len;
292 munmap(decomp, mmap_len);
Alexey Budankovcb62c6f2019-03-18 20:45:11 +0300293 } while (1);
294}
295
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300296void perf_session__delete(struct perf_session *session)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200297{
Arnaldo Carvalho de Meloe1446552016-06-22 10:02:16 -0300298 if (session == NULL)
299 return;
Adrian Hunterc4468702015-04-09 18:53:48 +0300300 auxtrace__free(session);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300301 auxtrace_index__free(&session->auxtrace_index);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300302 perf_session__destroy_kernel_maps(session);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300303 perf_session__delete_threads(session);
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +0300304 perf_decomp__release_events(session->decomp_data.decomp);
Arnaldo Carvalho de Melof0ce8882015-09-08 13:30:00 -0300305 perf_env__exit(&session->header.env);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300306 machines__exit(&session->machines);
Riccardo Mancinicf96b8e2021-06-25 01:19:25 +0200307 if (session->data) {
308 if (perf_data__is_read(session->data))
309 evlist__delete(session->evlist);
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100310 perf_data__close(session->data);
Riccardo Mancinicf96b8e2021-06-25 01:19:25 +0200311 }
Riccardo Mancini423b9172021-07-15 18:07:16 +0200312 trace_event__cleanup(&session->tevent);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300313 free(session);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200314}
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -0200315
Jiri Olsa89f16882018-09-13 14:54:03 +0200316static int process_event_synth_tracing_data_stub(struct perf_session *session
Adrian Hunter47c3d102013-07-04 16:20:21 +0300317 __maybe_unused,
318 union perf_event *event
Jiri Olsa89f16882018-09-13 14:54:03 +0200319 __maybe_unused)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200320{
321 dump_printf(": unhandled!\n");
322 return 0;
323}
324
Adrian Hunter47c3d102013-07-04 16:20:21 +0300325static int process_event_synth_attr_stub(struct perf_tool *tool __maybe_unused,
326 union perf_event *event __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +0200327 struct evlist **pevlist
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300328 __maybe_unused)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200329{
330 dump_printf(": unhandled!\n");
331 return 0;
332}
333
Jiri Olsaffe777252015-10-25 15:51:36 +0100334static int process_event_synth_event_update_stub(struct perf_tool *tool __maybe_unused,
335 union perf_event *event __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +0200336 struct evlist **pevlist
Jiri Olsaffe777252015-10-25 15:51:36 +0100337 __maybe_unused)
338{
Jiri Olsa2d2aea62015-10-25 15:51:42 +0100339 if (dump_trace)
340 perf_event__fprintf_event_update(event, stdout);
341
Jiri Olsaffe777252015-10-25 15:51:36 +0100342 dump_printf(": unhandled!\n");
343 return 0;
344}
345
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300346static int process_event_sample_stub(struct perf_tool *tool __maybe_unused,
347 union perf_event *event __maybe_unused,
348 struct perf_sample *sample __maybe_unused,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200349 struct evsel *evsel __maybe_unused,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300350 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300351{
352 dump_printf(": unhandled!\n");
353 return 0;
354}
355
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300356static int process_event_stub(struct perf_tool *tool __maybe_unused,
357 union perf_event *event __maybe_unused,
358 struct perf_sample *sample __maybe_unused,
359 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200360{
361 dump_printf(": unhandled!\n");
362 return 0;
363}
364
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300365static int process_finished_round_stub(struct perf_tool *tool __maybe_unused,
366 union perf_event *event __maybe_unused,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -0300367 struct ordered_events *oe __maybe_unused)
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200368{
369 dump_printf(": unhandled!\n");
370 return 0;
371}
372
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200373static int process_finished_round(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200374 union perf_event *event,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -0300375 struct ordered_events *oe);
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200376
Adrian Huntera16ac022015-04-09 18:53:43 +0300377static int skipn(int fd, off_t n)
378{
379 char buf[4096];
380 ssize_t ret;
381
382 while (n > 0) {
383 ret = read(fd, buf, min(n, (off_t)sizeof(buf)));
384 if (ret <= 0)
385 return ret;
386 n -= ret;
387 }
388
389 return 0;
390}
391
Jiri Olsa73365552018-09-13 14:54:04 +0200392static s64 process_event_auxtrace_stub(struct perf_session *session __maybe_unused,
393 union perf_event *event)
Adrian Huntera16ac022015-04-09 18:53:43 +0300394{
395 dump_printf(": unhandled!\n");
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100396 if (perf_data__is_pipe(session->data))
397 skipn(perf_data__fd(session->data), event->auxtrace.size);
Adrian Huntera16ac022015-04-09 18:53:43 +0300398 return event->auxtrace.size;
399}
400
Jiri Olsa89f16882018-09-13 14:54:03 +0200401static int process_event_op2_stub(struct perf_session *session __maybe_unused,
402 union perf_event *event __maybe_unused)
Adrian Huntere9bf54d2015-04-09 18:53:47 +0300403{
404 dump_printf(": unhandled!\n");
405 return 0;
406}
407
Jiri Olsa5f3339d2015-10-25 15:51:19 +0100408
409static
Jiri Olsa89f16882018-09-13 14:54:03 +0200410int process_event_thread_map_stub(struct perf_session *session __maybe_unused,
411 union perf_event *event __maybe_unused)
Jiri Olsa5f3339d2015-10-25 15:51:19 +0100412{
Jiri Olsa2d2aea62015-10-25 15:51:42 +0100413 if (dump_trace)
414 perf_event__fprintf_thread_map(event, stdout);
415
Jiri Olsa5f3339d2015-10-25 15:51:19 +0100416 dump_printf(": unhandled!\n");
417 return 0;
418}
419
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100420static
Jiri Olsa89f16882018-09-13 14:54:03 +0200421int process_event_cpu_map_stub(struct perf_session *session __maybe_unused,
422 union perf_event *event __maybe_unused)
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100423{
Jiri Olsa2d2aea62015-10-25 15:51:42 +0100424 if (dump_trace)
425 perf_event__fprintf_cpu_map(event, stdout);
426
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100427 dump_printf(": unhandled!\n");
428 return 0;
429}
430
Jiri Olsa374fb9e2015-10-25 15:51:27 +0100431static
Jiri Olsa89f16882018-09-13 14:54:03 +0200432int process_event_stat_config_stub(struct perf_session *session __maybe_unused,
433 union perf_event *event __maybe_unused)
Jiri Olsa374fb9e2015-10-25 15:51:27 +0100434{
Jiri Olsa2d2aea62015-10-25 15:51:42 +0100435 if (dump_trace)
436 perf_event__fprintf_stat_config(event, stdout);
437
Jiri Olsa374fb9e2015-10-25 15:51:27 +0100438 dump_printf(": unhandled!\n");
439 return 0;
440}
441
Jiri Olsa89f16882018-09-13 14:54:03 +0200442static int process_stat_stub(struct perf_session *perf_session __maybe_unused,
443 union perf_event *event)
Jiri Olsad80518c2015-10-25 15:51:30 +0100444{
Jiri Olsa2d2aea62015-10-25 15:51:42 +0100445 if (dump_trace)
446 perf_event__fprintf_stat(event, stdout);
447
Jiri Olsad80518c2015-10-25 15:51:30 +0100448 dump_printf(": unhandled!\n");
449 return 0;
450}
451
Jiri Olsa89f16882018-09-13 14:54:03 +0200452static int process_stat_round_stub(struct perf_session *perf_session __maybe_unused,
453 union perf_event *event)
Jiri Olsa2d8f0f12015-10-25 15:51:33 +0100454{
Jiri Olsa2d2aea62015-10-25 15:51:42 +0100455 if (dump_trace)
456 perf_event__fprintf_stat_round(event, stdout);
457
Jiri Olsa2d8f0f12015-10-25 15:51:33 +0100458 dump_printf(": unhandled!\n");
459 return 0;
460}
461
Leo Yan81e70d72021-04-28 20:09:15 +0800462static int process_event_time_conv_stub(struct perf_session *perf_session __maybe_unused,
463 union perf_event *event)
464{
465 if (dump_trace)
466 perf_event__fprintf_time_conv(event, stdout);
467
468 dump_printf(": unhandled!\n");
469 return 0;
470}
471
Alexey Budankov61a77732019-03-18 20:45:11 +0300472static int perf_session__process_compressed_event_stub(struct perf_session *session __maybe_unused,
473 union perf_event *event __maybe_unused,
474 u64 file_offset __maybe_unused)
475{
476 dump_printf(": unhandled!\n");
477 return 0;
478}
479
David Ahern9c501402013-08-02 14:05:41 -0600480void perf_tool__fill_defaults(struct perf_tool *tool)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200481{
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200482 if (tool->sample == NULL)
483 tool->sample = process_event_sample_stub;
484 if (tool->mmap == NULL)
485 tool->mmap = process_event_stub;
David Ahern6adb0b02013-09-22 19:44:59 -0600486 if (tool->mmap2 == NULL)
487 tool->mmap2 = process_event_stub;
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200488 if (tool->comm == NULL)
489 tool->comm = process_event_stub;
Namhyung Kim7f0cd232017-10-17 22:29:00 +0900490 if (tool->namespaces == NULL)
491 tool->namespaces = process_event_stub;
Namhyung Kimba78c1c2020-03-25 21:45:30 +0900492 if (tool->cgroup == NULL)
493 tool->cgroup = process_event_stub;
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200494 if (tool->fork == NULL)
495 tool->fork = process_event_stub;
496 if (tool->exit == NULL)
497 tool->exit = process_event_stub;
498 if (tool->lost == NULL)
499 tool->lost = perf_event__process_lost;
Kan Liangc4937a92015-05-10 15:13:15 -0400500 if (tool->lost_samples == NULL)
501 tool->lost_samples = perf_event__process_lost_samples;
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300502 if (tool->aux == NULL)
503 tool->aux = perf_event__process_aux;
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300504 if (tool->itrace_start == NULL)
505 tool->itrace_start = perf_event__process_itrace_start;
Adrian Hunter02860392015-07-21 12:44:03 +0300506 if (tool->context_switch == NULL)
507 tool->context_switch = perf_event__process_switch;
Song Liu9aa0bfa2019-01-17 08:15:17 -0800508 if (tool->ksymbol == NULL)
509 tool->ksymbol = perf_event__process_ksymbol;
Arnaldo Carvalho de Melo3f604b52019-08-26 19:28:13 -0300510 if (tool->bpf == NULL)
511 tool->bpf = perf_event__process_bpf;
Adrian Hunter246eba82020-05-12 15:19:18 +0300512 if (tool->text_poke == NULL)
513 tool->text_poke = perf_event__process_text_poke;
Adrian Hunter61750472021-09-07 19:39:02 +0300514 if (tool->aux_output_hw_id == NULL)
515 tool->aux_output_hw_id = perf_event__process_aux_output_hw_id;
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200516 if (tool->read == NULL)
517 tool->read = process_event_sample_stub;
518 if (tool->throttle == NULL)
519 tool->throttle = process_event_stub;
520 if (tool->unthrottle == NULL)
521 tool->unthrottle = process_event_stub;
522 if (tool->attr == NULL)
523 tool->attr = process_event_synth_attr_stub;
Jiri Olsaffe777252015-10-25 15:51:36 +0100524 if (tool->event_update == NULL)
525 tool->event_update = process_event_synth_event_update_stub;
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200526 if (tool->tracing_data == NULL)
527 tool->tracing_data = process_event_synth_tracing_data_stub;
528 if (tool->build_id == NULL)
Adrian Hunter5fb0ac12016-03-07 16:44:39 -0300529 tool->build_id = process_event_op2_stub;
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200530 if (tool->finished_round == NULL) {
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200531 if (tool->ordered_events)
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200532 tool->finished_round = process_finished_round;
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200533 else
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200534 tool->finished_round = process_finished_round_stub;
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +0200535 }
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200536 if (tool->id_index == NULL)
Adrian Hunter5fb0ac12016-03-07 16:44:39 -0300537 tool->id_index = process_event_op2_stub;
Adrian Huntera16ac022015-04-09 18:53:43 +0300538 if (tool->auxtrace_info == NULL)
Adrian Hunter5fb0ac12016-03-07 16:44:39 -0300539 tool->auxtrace_info = process_event_op2_stub;
Adrian Huntera16ac022015-04-09 18:53:43 +0300540 if (tool->auxtrace == NULL)
541 tool->auxtrace = process_event_auxtrace_stub;
Adrian Huntere9bf54d2015-04-09 18:53:47 +0300542 if (tool->auxtrace_error == NULL)
Adrian Hunter5fb0ac12016-03-07 16:44:39 -0300543 tool->auxtrace_error = process_event_op2_stub;
Jiri Olsa5f3339d2015-10-25 15:51:19 +0100544 if (tool->thread_map == NULL)
545 tool->thread_map = process_event_thread_map_stub;
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100546 if (tool->cpu_map == NULL)
547 tool->cpu_map = process_event_cpu_map_stub;
Jiri Olsa374fb9e2015-10-25 15:51:27 +0100548 if (tool->stat_config == NULL)
549 tool->stat_config = process_event_stat_config_stub;
Jiri Olsad80518c2015-10-25 15:51:30 +0100550 if (tool->stat == NULL)
551 tool->stat = process_stat_stub;
Jiri Olsa2d8f0f12015-10-25 15:51:33 +0100552 if (tool->stat_round == NULL)
553 tool->stat_round = process_stat_round_stub;
Adrian Hunter46bc29b2016-03-08 10:38:44 +0200554 if (tool->time_conv == NULL)
Leo Yan81e70d72021-04-28 20:09:15 +0800555 tool->time_conv = process_event_time_conv_stub;
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -0700556 if (tool->feature == NULL)
557 tool->feature = process_event_op2_stub;
Alexey Budankov61a77732019-03-18 20:45:11 +0300558 if (tool->compressed == NULL)
Alexey Budankovcb62c6f2019-03-18 20:45:11 +0300559 tool->compressed = perf_session__process_compressed_event;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -0200560}
Arnaldo Carvalho de Melo48000a12014-12-17 17:24:45 -0300561
Jiri Olsa268fb202012-05-30 14:23:43 +0200562static void swap_sample_id_all(union perf_event *event, void *data)
563{
564 void *end = (void *) event + event->header.size;
565 int size = end - data;
566
567 BUG_ON(size % sizeof(u64));
568 mem_bswap_64(data, size);
569}
570
571static void perf_event__all64_swap(union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300572 bool sample_id_all __maybe_unused)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200573{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200574 struct perf_event_header *hdr = &event->header;
575 mem_bswap_64(hdr + 1, event->header.size - sizeof(*hdr));
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200576}
577
Jiri Olsa268fb202012-05-30 14:23:43 +0200578static void perf_event__comm_swap(union perf_event *event, bool sample_id_all)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200579{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200580 event->comm.pid = bswap_32(event->comm.pid);
581 event->comm.tid = bswap_32(event->comm.tid);
Jiri Olsa268fb202012-05-30 14:23:43 +0200582
583 if (sample_id_all) {
584 void *data = &event->comm.comm;
585
Irina Tirdea9ac3e482012-09-11 01:15:01 +0300586 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
Jiri Olsa268fb202012-05-30 14:23:43 +0200587 swap_sample_id_all(event, data);
588 }
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200589}
590
Jiri Olsa268fb202012-05-30 14:23:43 +0200591static void perf_event__mmap_swap(union perf_event *event,
592 bool sample_id_all)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200593{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200594 event->mmap.pid = bswap_32(event->mmap.pid);
595 event->mmap.tid = bswap_32(event->mmap.tid);
596 event->mmap.start = bswap_64(event->mmap.start);
597 event->mmap.len = bswap_64(event->mmap.len);
598 event->mmap.pgoff = bswap_64(event->mmap.pgoff);
Jiri Olsa268fb202012-05-30 14:23:43 +0200599
600 if (sample_id_all) {
601 void *data = &event->mmap.filename;
602
Irina Tirdea9ac3e482012-09-11 01:15:01 +0300603 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
Jiri Olsa268fb202012-05-30 14:23:43 +0200604 swap_sample_id_all(event, data);
605 }
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200606}
607
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200608static void perf_event__mmap2_swap(union perf_event *event,
609 bool sample_id_all)
610{
611 event->mmap2.pid = bswap_32(event->mmap2.pid);
612 event->mmap2.tid = bswap_32(event->mmap2.tid);
613 event->mmap2.start = bswap_64(event->mmap2.start);
614 event->mmap2.len = bswap_64(event->mmap2.len);
615 event->mmap2.pgoff = bswap_64(event->mmap2.pgoff);
Jiri Olsa29245ae2020-12-14 11:54:47 +0100616
617 if (!(event->header.misc & PERF_RECORD_MISC_MMAP_BUILD_ID)) {
618 event->mmap2.maj = bswap_32(event->mmap2.maj);
619 event->mmap2.min = bswap_32(event->mmap2.min);
620 event->mmap2.ino = bswap_64(event->mmap2.ino);
621 event->mmap2.ino_generation = bswap_64(event->mmap2.ino_generation);
622 }
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200623
624 if (sample_id_all) {
625 void *data = &event->mmap2.filename;
626
627 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
628 swap_sample_id_all(event, data);
629 }
630}
Jiri Olsa268fb202012-05-30 14:23:43 +0200631static void perf_event__task_swap(union perf_event *event, bool sample_id_all)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200632{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200633 event->fork.pid = bswap_32(event->fork.pid);
634 event->fork.tid = bswap_32(event->fork.tid);
635 event->fork.ppid = bswap_32(event->fork.ppid);
636 event->fork.ptid = bswap_32(event->fork.ptid);
637 event->fork.time = bswap_64(event->fork.time);
Jiri Olsa268fb202012-05-30 14:23:43 +0200638
639 if (sample_id_all)
640 swap_sample_id_all(event, &event->fork + 1);
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200641}
642
Jiri Olsa268fb202012-05-30 14:23:43 +0200643static void perf_event__read_swap(union perf_event *event, bool sample_id_all)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200644{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200645 event->read.pid = bswap_32(event->read.pid);
646 event->read.tid = bswap_32(event->read.tid);
647 event->read.value = bswap_64(event->read.value);
648 event->read.time_enabled = bswap_64(event->read.time_enabled);
649 event->read.time_running = bswap_64(event->read.time_running);
650 event->read.id = bswap_64(event->read.id);
Jiri Olsa268fb202012-05-30 14:23:43 +0200651
652 if (sample_id_all)
653 swap_sample_id_all(event, &event->read + 1);
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200654}
655
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300656static void perf_event__aux_swap(union perf_event *event, bool sample_id_all)
657{
658 event->aux.aux_offset = bswap_64(event->aux.aux_offset);
659 event->aux.aux_size = bswap_64(event->aux.aux_size);
660 event->aux.flags = bswap_64(event->aux.flags);
661
662 if (sample_id_all)
663 swap_sample_id_all(event, &event->aux + 1);
664}
665
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300666static void perf_event__itrace_start_swap(union perf_event *event,
667 bool sample_id_all)
668{
669 event->itrace_start.pid = bswap_32(event->itrace_start.pid);
670 event->itrace_start.tid = bswap_32(event->itrace_start.tid);
671
672 if (sample_id_all)
673 swap_sample_id_all(event, &event->itrace_start + 1);
674}
675
Adrian Hunter02860392015-07-21 12:44:03 +0300676static void perf_event__switch_swap(union perf_event *event, bool sample_id_all)
677{
678 if (event->header.type == PERF_RECORD_SWITCH_CPU_WIDE) {
679 event->context_switch.next_prev_pid =
680 bswap_32(event->context_switch.next_prev_pid);
681 event->context_switch.next_prev_tid =
682 bswap_32(event->context_switch.next_prev_tid);
683 }
684
685 if (sample_id_all)
686 swap_sample_id_all(event, &event->context_switch + 1);
687}
688
Adrian Hunter246eba82020-05-12 15:19:18 +0300689static void perf_event__text_poke_swap(union perf_event *event, bool sample_id_all)
690{
691 event->text_poke.addr = bswap_64(event->text_poke.addr);
692 event->text_poke.old_len = bswap_16(event->text_poke.old_len);
693 event->text_poke.new_len = bswap_16(event->text_poke.new_len);
694
695 if (sample_id_all) {
696 size_t len = sizeof(event->text_poke.old_len) +
697 sizeof(event->text_poke.new_len) +
698 event->text_poke.old_len +
699 event->text_poke.new_len;
700 void *data = &event->text_poke.old_len;
701
702 data += PERF_ALIGN(len, sizeof(u64));
703 swap_sample_id_all(event, data);
704 }
705}
706
Jiri Olsadd96c462013-09-01 12:36:15 +0200707static void perf_event__throttle_swap(union perf_event *event,
708 bool sample_id_all)
709{
710 event->throttle.time = bswap_64(event->throttle.time);
711 event->throttle.id = bswap_64(event->throttle.id);
712 event->throttle.stream_id = bswap_64(event->throttle.stream_id);
713
714 if (sample_id_all)
715 swap_sample_id_all(event, &event->throttle + 1);
716}
717
Namhyung Kimacd244b2019-05-22 14:32:49 +0900718static void perf_event__namespaces_swap(union perf_event *event,
719 bool sample_id_all)
720{
721 u64 i;
722
723 event->namespaces.pid = bswap_32(event->namespaces.pid);
724 event->namespaces.tid = bswap_32(event->namespaces.tid);
725 event->namespaces.nr_namespaces = bswap_64(event->namespaces.nr_namespaces);
726
727 for (i = 0; i < event->namespaces.nr_namespaces; i++) {
728 struct perf_ns_link_info *ns = &event->namespaces.link_info[i];
729
730 ns->dev = bswap_64(ns->dev);
731 ns->ino = bswap_64(ns->ino);
732 }
733
734 if (sample_id_all)
735 swap_sample_id_all(event, &event->namespaces.link_info[i]);
736}
737
Namhyung Kim2c589d92020-11-02 23:02:28 +0900738static void perf_event__cgroup_swap(union perf_event *event, bool sample_id_all)
739{
740 event->cgroup.id = bswap_64(event->cgroup.id);
741
742 if (sample_id_all) {
743 void *data = &event->cgroup.path;
744
745 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64));
746 swap_sample_id_all(event, data);
747 }
748}
749
Jiri Olsae108c662012-05-16 08:59:03 +0200750static u8 revbyte(u8 b)
751{
752 int rev = (b >> 4) | ((b & 0xf) << 4);
753 rev = ((rev & 0xcc) >> 2) | ((rev & 0x33) << 2);
754 rev = ((rev & 0xaa) >> 1) | ((rev & 0x55) << 1);
755 return (u8) rev;
756}
757
758/*
759 * XXX this is hack in attempt to carry flags bitfield
Adam Buchbinderbd1a0be52016-02-24 10:02:25 -0800760 * through endian village. ABI says:
Jiri Olsae108c662012-05-16 08:59:03 +0200761 *
762 * Bit-fields are allocated from right to left (least to most significant)
763 * on little-endian implementations and from left to right (most to least
764 * significant) on big-endian implementations.
765 *
766 * The above seems to be byte specific, so we need to reverse each
767 * byte of the bitfield. 'Internet' also says this might be implementation
768 * specific and we probably need proper fix and carry perf_event_attr
769 * bitfield flags in separate data file FEAT_ section. Thought this seems
770 * to work for now.
771 */
772static void swap_bitfield(u8 *p, unsigned len)
773{
774 unsigned i;
775
776 for (i = 0; i < len; i++) {
777 *p = revbyte(*p);
778 p++;
779 }
780}
781
David Aherneda39132011-07-15 12:34:09 -0600782/* exported for swapping attributes in file header */
783void perf_event__attr_swap(struct perf_event_attr *attr)
784{
785 attr->type = bswap_32(attr->type);
786 attr->size = bswap_32(attr->size);
Jiri Olsae108c662012-05-16 08:59:03 +0200787
Wang Nanb30b6172015-06-17 09:56:39 +0000788#define bswap_safe(f, n) \
789 (attr->size > (offsetof(struct perf_event_attr, f) + \
790 sizeof(attr->f) * (n)))
791#define bswap_field(f, sz) \
792do { \
793 if (bswap_safe(f, 0)) \
794 attr->f = bswap_##sz(attr->f); \
795} while(0)
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300796#define bswap_field_16(f) bswap_field(f, 16)
Wang Nanb30b6172015-06-17 09:56:39 +0000797#define bswap_field_32(f) bswap_field(f, 32)
798#define bswap_field_64(f) bswap_field(f, 64)
799
800 bswap_field_64(config);
801 bswap_field_64(sample_period);
802 bswap_field_64(sample_type);
803 bswap_field_64(read_format);
804 bswap_field_32(wakeup_events);
805 bswap_field_32(bp_type);
806 bswap_field_64(bp_addr);
807 bswap_field_64(bp_len);
808 bswap_field_64(branch_sample_type);
809 bswap_field_64(sample_regs_user);
810 bswap_field_32(sample_stack_user);
811 bswap_field_32(aux_watermark);
Arnaldo Carvalho de Melo792d48b2016-04-28 19:03:42 -0300812 bswap_field_16(sample_max_stack);
Adrian Hunter98dcf142019-11-15 14:42:11 +0200813 bswap_field_32(aux_sample_size);
Wang Nanb30b6172015-06-17 09:56:39 +0000814
815 /*
816 * After read_format are bitfields. Check read_format because
817 * we are unable to use offsetof on bitfield.
818 */
819 if (bswap_safe(read_format, 1))
820 swap_bitfield((u8 *) (&attr->read_format + 1),
821 sizeof(u64));
822#undef bswap_field_64
823#undef bswap_field_32
824#undef bswap_field
825#undef bswap_safe
David Aherneda39132011-07-15 12:34:09 -0600826}
827
Jiri Olsa268fb202012-05-30 14:23:43 +0200828static void perf_event__hdr_attr_swap(union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300829 bool sample_id_all __maybe_unused)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500830{
831 size_t size;
832
David Aherneda39132011-07-15 12:34:09 -0600833 perf_event__attr_swap(&event->attr.attr);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500834
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200835 size = event->header.size;
836 size -= (void *)&event->attr.id - (void *)event;
837 mem_bswap_64(event->attr.id, size);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500838}
839
Jiri Olsaffe777252015-10-25 15:51:36 +0100840static void perf_event__event_update_swap(union perf_event *event,
841 bool sample_id_all __maybe_unused)
842{
843 event->event_update.type = bswap_64(event->event_update.type);
844 event->event_update.id = bswap_64(event->event_update.id);
845}
846
Jiri Olsa268fb202012-05-30 14:23:43 +0200847static void perf_event__event_type_swap(union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300848 bool sample_id_all __maybe_unused)
Tom Zanussicd19a032010-04-01 23:59:20 -0500849{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200850 event->event_type.event_type.event_id =
851 bswap_64(event->event_type.event_type.event_id);
Tom Zanussicd19a032010-04-01 23:59:20 -0500852}
853
Jiri Olsa268fb202012-05-30 14:23:43 +0200854static void perf_event__tracing_data_swap(union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300855 bool sample_id_all __maybe_unused)
Tom Zanussi92155452010-04-01 23:59:21 -0500856{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200857 event->tracing_data.size = bswap_32(event->tracing_data.size);
Tom Zanussi92155452010-04-01 23:59:21 -0500858}
859
Adrian Huntera16ac022015-04-09 18:53:43 +0300860static void perf_event__auxtrace_info_swap(union perf_event *event,
861 bool sample_id_all __maybe_unused)
862{
863 size_t size;
864
865 event->auxtrace_info.type = bswap_32(event->auxtrace_info.type);
866
867 size = event->header.size;
868 size -= (void *)&event->auxtrace_info.priv - (void *)event;
869 mem_bswap_64(event->auxtrace_info.priv, size);
870}
871
872static void perf_event__auxtrace_swap(union perf_event *event,
873 bool sample_id_all __maybe_unused)
874{
875 event->auxtrace.size = bswap_64(event->auxtrace.size);
876 event->auxtrace.offset = bswap_64(event->auxtrace.offset);
877 event->auxtrace.reference = bswap_64(event->auxtrace.reference);
878 event->auxtrace.idx = bswap_32(event->auxtrace.idx);
879 event->auxtrace.tid = bswap_32(event->auxtrace.tid);
880 event->auxtrace.cpu = bswap_32(event->auxtrace.cpu);
881}
882
Adrian Huntere9bf54d2015-04-09 18:53:47 +0300883static void perf_event__auxtrace_error_swap(union perf_event *event,
884 bool sample_id_all __maybe_unused)
885{
886 event->auxtrace_error.type = bswap_32(event->auxtrace_error.type);
887 event->auxtrace_error.code = bswap_32(event->auxtrace_error.code);
888 event->auxtrace_error.cpu = bswap_32(event->auxtrace_error.cpu);
889 event->auxtrace_error.pid = bswap_32(event->auxtrace_error.pid);
890 event->auxtrace_error.tid = bswap_32(event->auxtrace_error.tid);
Adrian Hunter16bd4322019-02-06 12:39:47 +0200891 event->auxtrace_error.fmt = bswap_32(event->auxtrace_error.fmt);
Adrian Huntere9bf54d2015-04-09 18:53:47 +0300892 event->auxtrace_error.ip = bswap_64(event->auxtrace_error.ip);
Adrian Hunter16bd4322019-02-06 12:39:47 +0200893 if (event->auxtrace_error.fmt)
894 event->auxtrace_error.time = bswap_64(event->auxtrace_error.time);
Adrian Huntere9bf54d2015-04-09 18:53:47 +0300895}
896
Jiri Olsa5f3339d2015-10-25 15:51:19 +0100897static void perf_event__thread_map_swap(union perf_event *event,
898 bool sample_id_all __maybe_unused)
899{
900 unsigned i;
901
902 event->thread_map.nr = bswap_64(event->thread_map.nr);
903
904 for (i = 0; i < event->thread_map.nr; i++)
905 event->thread_map.entries[i].pid = bswap_64(event->thread_map.entries[i].pid);
906}
907
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100908static void perf_event__cpu_map_swap(union perf_event *event,
909 bool sample_id_all __maybe_unused)
910{
Jiri Olsa72932372019-08-28 15:57:16 +0200911 struct perf_record_cpu_map_data *data = &event->cpu_map.data;
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100912 struct cpu_map_entries *cpus;
Jiri Olsa72932372019-08-28 15:57:16 +0200913 struct perf_record_record_cpu_map *mask;
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100914 unsigned i;
915
Dmitry Kosheleva11c9a62021-05-06 13:11:49 +0000916 data->type = bswap_16(data->type);
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100917
918 switch (data->type) {
919 case PERF_CPU_MAP__CPUS:
920 cpus = (struct cpu_map_entries *)data->data;
921
922 cpus->nr = bswap_16(cpus->nr);
923
924 for (i = 0; i < cpus->nr; i++)
925 cpus->cpu[i] = bswap_16(cpus->cpu[i]);
926 break;
927 case PERF_CPU_MAP__MASK:
Jiri Olsa72932372019-08-28 15:57:16 +0200928 mask = (struct perf_record_record_cpu_map *)data->data;
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100929
930 mask->nr = bswap_16(mask->nr);
931 mask->long_size = bswap_16(mask->long_size);
932
933 switch (mask->long_size) {
934 case 4: mem_bswap_32(&mask->mask, mask->nr); break;
935 case 8: mem_bswap_64(&mask->mask, mask->nr); break;
936 default:
937 pr_err("cpu_map swap: unsupported long size\n");
938 }
939 default:
940 break;
941 }
942}
943
Jiri Olsa374fb9e2015-10-25 15:51:27 +0100944static void perf_event__stat_config_swap(union perf_event *event,
945 bool sample_id_all __maybe_unused)
946{
947 u64 size;
948
Dmitry Kosheleva11c9a62021-05-06 13:11:49 +0000949 size = bswap_64(event->stat_config.nr) * sizeof(event->stat_config.data[0]);
Jiri Olsa374fb9e2015-10-25 15:51:27 +0100950 size += 1; /* nr item itself */
951 mem_bswap_64(&event->stat_config.nr, size);
952}
953
Jiri Olsad80518c2015-10-25 15:51:30 +0100954static void perf_event__stat_swap(union perf_event *event,
955 bool sample_id_all __maybe_unused)
956{
957 event->stat.id = bswap_64(event->stat.id);
958 event->stat.thread = bswap_32(event->stat.thread);
959 event->stat.cpu = bswap_32(event->stat.cpu);
960 event->stat.val = bswap_64(event->stat.val);
961 event->stat.ena = bswap_64(event->stat.ena);
962 event->stat.run = bswap_64(event->stat.run);
963}
964
Jiri Olsa2d8f0f12015-10-25 15:51:33 +0100965static void perf_event__stat_round_swap(union perf_event *event,
966 bool sample_id_all __maybe_unused)
967{
968 event->stat_round.type = bswap_64(event->stat_round.type);
969 event->stat_round.time = bswap_64(event->stat_round.time);
970}
971
Leo Yan050ffc42021-04-28 20:09:14 +0800972static void perf_event__time_conv_swap(union perf_event *event,
973 bool sample_id_all __maybe_unused)
974{
975 event->time_conv.time_shift = bswap_64(event->time_conv.time_shift);
976 event->time_conv.time_mult = bswap_64(event->time_conv.time_mult);
977 event->time_conv.time_zero = bswap_64(event->time_conv.time_zero);
978
979 if (event_contains(event->time_conv, time_cycles)) {
980 event->time_conv.time_cycles = bswap_64(event->time_conv.time_cycles);
981 event->time_conv.time_mask = bswap_64(event->time_conv.time_mask);
982 }
983}
984
Jiri Olsa268fb202012-05-30 14:23:43 +0200985typedef void (*perf_event__swap_op)(union perf_event *event,
986 bool sample_id_all);
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -0200987
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200988static perf_event__swap_op perf_event__swap_ops[] = {
989 [PERF_RECORD_MMAP] = perf_event__mmap_swap,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200990 [PERF_RECORD_MMAP2] = perf_event__mmap2_swap,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200991 [PERF_RECORD_COMM] = perf_event__comm_swap,
992 [PERF_RECORD_FORK] = perf_event__task_swap,
993 [PERF_RECORD_EXIT] = perf_event__task_swap,
994 [PERF_RECORD_LOST] = perf_event__all64_swap,
995 [PERF_RECORD_READ] = perf_event__read_swap,
Jiri Olsadd96c462013-09-01 12:36:15 +0200996 [PERF_RECORD_THROTTLE] = perf_event__throttle_swap,
997 [PERF_RECORD_UNTHROTTLE] = perf_event__throttle_swap,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200998 [PERF_RECORD_SAMPLE] = perf_event__all64_swap,
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300999 [PERF_RECORD_AUX] = perf_event__aux_swap,
Adrian Hunter0ad21f62015-04-30 17:37:30 +03001000 [PERF_RECORD_ITRACE_START] = perf_event__itrace_start_swap,
Kan Liangc4937a92015-05-10 15:13:15 -04001001 [PERF_RECORD_LOST_SAMPLES] = perf_event__all64_swap,
Adrian Hunter02860392015-07-21 12:44:03 +03001002 [PERF_RECORD_SWITCH] = perf_event__switch_swap,
1003 [PERF_RECORD_SWITCH_CPU_WIDE] = perf_event__switch_swap,
Namhyung Kimacd244b2019-05-22 14:32:49 +09001004 [PERF_RECORD_NAMESPACES] = perf_event__namespaces_swap,
Namhyung Kim2c589d92020-11-02 23:02:28 +09001005 [PERF_RECORD_CGROUP] = perf_event__cgroup_swap,
Adrian Hunter246eba82020-05-12 15:19:18 +03001006 [PERF_RECORD_TEXT_POKE] = perf_event__text_poke_swap,
Adrian Hunter61750472021-09-07 19:39:02 +03001007 [PERF_RECORD_AUX_OUTPUT_HW_ID] = perf_event__all64_swap,
David Aherneda39132011-07-15 12:34:09 -06001008 [PERF_RECORD_HEADER_ATTR] = perf_event__hdr_attr_swap,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02001009 [PERF_RECORD_HEADER_EVENT_TYPE] = perf_event__event_type_swap,
1010 [PERF_RECORD_HEADER_TRACING_DATA] = perf_event__tracing_data_swap,
1011 [PERF_RECORD_HEADER_BUILD_ID] = NULL,
Adrian Hunter3c659ee2014-10-27 15:49:22 +02001012 [PERF_RECORD_ID_INDEX] = perf_event__all64_swap,
Adrian Huntera16ac022015-04-09 18:53:43 +03001013 [PERF_RECORD_AUXTRACE_INFO] = perf_event__auxtrace_info_swap,
1014 [PERF_RECORD_AUXTRACE] = perf_event__auxtrace_swap,
Adrian Huntere9bf54d2015-04-09 18:53:47 +03001015 [PERF_RECORD_AUXTRACE_ERROR] = perf_event__auxtrace_error_swap,
Jiri Olsa5f3339d2015-10-25 15:51:19 +01001016 [PERF_RECORD_THREAD_MAP] = perf_event__thread_map_swap,
Jiri Olsa6640b6c2015-10-25 15:51:23 +01001017 [PERF_RECORD_CPU_MAP] = perf_event__cpu_map_swap,
Jiri Olsa374fb9e2015-10-25 15:51:27 +01001018 [PERF_RECORD_STAT_CONFIG] = perf_event__stat_config_swap,
Jiri Olsad80518c2015-10-25 15:51:30 +01001019 [PERF_RECORD_STAT] = perf_event__stat_swap,
Jiri Olsa2d8f0f12015-10-25 15:51:33 +01001020 [PERF_RECORD_STAT_ROUND] = perf_event__stat_round_swap,
Jiri Olsaffe777252015-10-25 15:51:36 +01001021 [PERF_RECORD_EVENT_UPDATE] = perf_event__event_update_swap,
Leo Yan050ffc42021-04-28 20:09:14 +08001022 [PERF_RECORD_TIME_CONV] = perf_event__time_conv_swap,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02001023 [PERF_RECORD_HEADER_MAX] = NULL,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02001024};
1025
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +02001026/*
1027 * When perf record finishes a pass on every buffers, it records this pseudo
1028 * event.
1029 * We record the max timestamp t found in the pass n.
1030 * Assuming these timestamps are monotonic across cpus, we know that if
1031 * a buffer still has events with timestamps below t, they will be all
1032 * available and then read in the pass n + 1.
1033 * Hence when we start to read the pass n + 2, we can safely flush every
1034 * events with timestamps below t.
1035 *
1036 * ============ PASS n =================
1037 * CPU 0 | CPU 1
1038 * |
1039 * cnt1 timestamps | cnt2 timestamps
1040 * 1 | 2
1041 * 2 | 3
1042 * - | 4 <--- max recorded
1043 *
1044 * ============ PASS n + 1 ==============
1045 * CPU 0 | CPU 1
1046 * |
1047 * cnt1 timestamps | cnt2 timestamps
1048 * 3 | 5
1049 * 4 | 6
1050 * 5 | 7 <---- max recorded
1051 *
1052 * Flush every events below timestamp 4
1053 *
1054 * ============ PASS n + 2 ==============
1055 * CPU 0 | CPU 1
1056 * |
1057 * cnt1 timestamps | cnt2 timestamps
1058 * 6 | 8
1059 * 7 | 9
1060 * - | 10
1061 *
1062 * Flush every events below timestamp 7
1063 * etc...
1064 */
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001065static int process_finished_round(struct perf_tool *tool __maybe_unused,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001066 union perf_event *event __maybe_unused,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -03001067 struct ordered_events *oe)
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +02001068{
Adrian Hunter5531e162015-06-23 10:52:48 +03001069 if (dump_trace)
1070 fprintf(stdout, "\n");
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001071 return ordered_events__flush(oe, OE_FLUSH__ROUND);
Frederic Weisbeckerd6b17be2010-05-03 15:14:33 +02001072}
1073
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001074int perf_session__queue_event(struct perf_session *s, union perf_event *event,
Jiri Olsadc83e132017-08-03 13:24:33 +02001075 u64 timestamp, u64 file_offset)
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +02001076{
Jiri Olsadc83e132017-08-03 13:24:33 +02001077 return ordered_events__queue(&s->ordered_events, event, timestamp, file_offset);
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +02001078}
1079
Kan Liang384b6052015-01-05 13:23:05 -05001080static void callchain__lbr_callstack_printf(struct perf_sample *sample)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -02001081{
Kan Liang384b6052015-01-05 13:23:05 -05001082 struct ip_callchain *callchain = sample->callchain;
1083 struct branch_stack *lbr_stack = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -08001084 struct branch_entry *entries = perf_sample__branch_entries(sample);
Kan Liang384b6052015-01-05 13:23:05 -05001085 u64 kernel_callchain_nr = callchain->nr;
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -02001086 unsigned int i;
1087
Kan Liang384b6052015-01-05 13:23:05 -05001088 for (i = 0; i < kernel_callchain_nr; i++) {
1089 if (callchain->ips[i] == PERF_CONTEXT_USER)
1090 break;
1091 }
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -02001092
Kan Liang384b6052015-01-05 13:23:05 -05001093 if ((i != kernel_callchain_nr) && lbr_stack->nr) {
1094 u64 total_nr;
1095 /*
1096 * LBR callstack can only get user call chain,
1097 * i is kernel call chain number,
1098 * 1 is PERF_CONTEXT_USER.
1099 *
1100 * The user call chain is stored in LBR registers.
1101 * LBR are pair registers. The caller is stored
1102 * in "from" register, while the callee is stored
1103 * in "to" register.
1104 * For example, there is a call stack
1105 * "A"->"B"->"C"->"D".
Ingo Molnar4d39c892021-03-23 17:09:15 +01001106 * The LBR registers will be recorded like
Kan Liang384b6052015-01-05 13:23:05 -05001107 * "C"->"D", "B"->"C", "A"->"B".
1108 * So only the first "to" register and all "from"
1109 * registers are needed to construct the whole stack.
1110 */
1111 total_nr = i + 1 + lbr_stack->nr + 1;
1112 kernel_callchain_nr = i + 1;
1113
1114 printf("... LBR call chain: nr:%" PRIu64 "\n", total_nr);
1115
1116 for (i = 0; i < kernel_callchain_nr; i++)
1117 printf("..... %2d: %016" PRIx64 "\n",
1118 i, callchain->ips[i]);
1119
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001120 printf("..... %2d: %016" PRIx64 "\n",
Kan Liang42bbabe2020-02-28 08:30:00 -08001121 (int)(kernel_callchain_nr), entries[0].to);
Kan Liang384b6052015-01-05 13:23:05 -05001122 for (i = 0; i < lbr_stack->nr; i++)
1123 printf("..... %2d: %016" PRIx64 "\n",
Kan Liang42bbabe2020-02-28 08:30:00 -08001124 (int)(i + kernel_callchain_nr + 1), entries[i].from);
Kan Liang384b6052015-01-05 13:23:05 -05001125 }
1126}
1127
Jiri Olsa32dcd022019-07-21 13:23:51 +02001128static void callchain__printf(struct evsel *evsel,
Kan Liang384b6052015-01-05 13:23:05 -05001129 struct perf_sample *sample)
1130{
1131 unsigned int i;
1132 struct ip_callchain *callchain = sample->callchain;
1133
Arnaldo Carvalho de Melo4f138a92020-04-30 11:19:45 -03001134 if (evsel__has_branch_callstack(evsel))
Kan Liang384b6052015-01-05 13:23:05 -05001135 callchain__lbr_callstack_printf(sample);
1136
1137 printf("... FP chain: nr:%" PRIu64 "\n", callchain->nr);
1138
1139 for (i = 0; i < callchain->nr; i++)
1140 printf("..... %2d: %016" PRIx64 "\n",
1141 i, callchain->ips[i]);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -02001142}
1143
Alexey Budankovd2720c32019-08-09 18:26:30 +03001144static void branch_stack__printf(struct perf_sample *sample, bool callstack)
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01001145{
Kan Liang42bbabe2020-02-28 08:30:00 -08001146 struct branch_entry *entries = perf_sample__branch_entries(sample);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01001147 uint64_t i;
1148
Alexey Budankovd2720c32019-08-09 18:26:30 +03001149 printf("%s: nr:%" PRIu64 "\n",
1150 !callstack ? "... branch stack" : "... branch callstack",
1151 sample->branch_stack->nr);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01001152
Andi Kleen0e332f02015-07-18 08:24:46 -07001153 for (i = 0; i < sample->branch_stack->nr; i++) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001154 struct branch_entry *e = &entries[i];
Andi Kleen0e332f02015-07-18 08:24:46 -07001155
Alexey Budankovd2720c32019-08-09 18:26:30 +03001156 if (!callstack) {
1157 printf("..... %2"PRIu64": %016" PRIx64 " -> %016" PRIx64 " %hu cycles %s%s%s%s %x\n",
1158 i, e->from, e->to,
1159 (unsigned short)e->flags.cycles,
1160 e->flags.mispred ? "M" : " ",
1161 e->flags.predicted ? "P" : " ",
1162 e->flags.abort ? "A" : " ",
1163 e->flags.in_tx ? "T" : " ",
1164 (unsigned)e->flags.reserved);
1165 } else {
1166 printf("..... %2"PRIu64": %016" PRIx64 "\n",
1167 i, i > 0 ? e->from : e->to);
1168 }
Andi Kleen0e332f02015-07-18 08:24:46 -07001169 }
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01001170}
1171
German Gomez83869012021-12-07 18:06:52 +00001172static void regs_dump__printf(u64 mask, u64 *regs, const char *arch)
Jiri Olsa0f6a3012012-08-07 15:20:45 +02001173{
1174 unsigned rid, i = 0;
1175
1176 for_each_set_bit(rid, (unsigned long *) &mask, sizeof(mask) * 8) {
1177 u64 val = regs[i++];
1178
Paul A. Clarke498ef712020-05-19 12:58:22 -05001179 printf(".... %-5s 0x%016" PRIx64 "\n",
German Gomez83869012021-12-07 18:06:52 +00001180 perf_reg_name(rid, arch), val);
Jiri Olsa0f6a3012012-08-07 15:20:45 +02001181 }
1182}
1183
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02001184static const char *regs_abi[] = {
1185 [PERF_SAMPLE_REGS_ABI_NONE] = "none",
1186 [PERF_SAMPLE_REGS_ABI_32] = "32-bit",
1187 [PERF_SAMPLE_REGS_ABI_64] = "64-bit",
1188};
1189
1190static inline const char *regs_dump_abi(struct regs_dump *d)
1191{
1192 if (d->abi > PERF_SAMPLE_REGS_ABI_64)
1193 return "unknown";
1194
1195 return regs_abi[d->abi];
1196}
1197
German Gomez83869012021-12-07 18:06:52 +00001198static void regs__printf(const char *type, struct regs_dump *regs, const char *arch)
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02001199{
1200 u64 mask = regs->mask;
1201
1202 printf("... %s regs: mask 0x%" PRIx64 " ABI %s\n",
1203 type,
1204 mask,
1205 regs_dump_abi(regs));
1206
German Gomez83869012021-12-07 18:06:52 +00001207 regs_dump__printf(mask, regs->regs, arch);
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02001208}
1209
German Gomez83869012021-12-07 18:06:52 +00001210static void regs_user__printf(struct perf_sample *sample, const char *arch)
Jiri Olsa0f6a3012012-08-07 15:20:45 +02001211{
1212 struct regs_dump *user_regs = &sample->user_regs;
1213
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02001214 if (user_regs->regs)
German Gomez83869012021-12-07 18:06:52 +00001215 regs__printf("user", user_regs, arch);
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02001216}
1217
German Gomez83869012021-12-07 18:06:52 +00001218static void regs_intr__printf(struct perf_sample *sample, const char *arch)
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02001219{
1220 struct regs_dump *intr_regs = &sample->intr_regs;
1221
1222 if (intr_regs->regs)
German Gomez83869012021-12-07 18:06:52 +00001223 regs__printf("intr", intr_regs, arch);
Jiri Olsa0f6a3012012-08-07 15:20:45 +02001224}
1225
1226static void stack_user__printf(struct stack_dump *dump)
1227{
1228 printf("... ustack: size %" PRIu64 ", offset 0x%x\n",
1229 dump->size, dump->offset);
1230}
1231
Arnaldo Carvalho de Melo71273722020-11-30 14:55:12 -03001232static void evlist__print_tstamp(struct evlist *evlist, union perf_event *event, struct perf_sample *sample)
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -02001233{
Arnaldo Carvalho de Melob3c2cc22020-06-17 09:24:21 -03001234 u64 sample_type = __evlist__combined_sample_type(evlist);
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -03001235
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -02001236 if (event->header.type != PERF_RECORD_SAMPLE &&
Arnaldo Carvalho de Melo8cedf3a2020-06-17 09:29:48 -03001237 !evlist__sample_id_all(evlist)) {
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -02001238 fputs("-1 -1 ", stdout);
1239 return;
1240 }
1241
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -03001242 if ((sample_type & PERF_SAMPLE_CPU))
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -02001243 printf("%u ", sample->cpu);
1244
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -03001245 if (sample_type & PERF_SAMPLE_TIME)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001246 printf("%" PRIu64 " ", sample->time);
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -02001247}
1248
Jiri Olsa9ede4732012-10-10 17:38:13 +02001249static void sample_read__printf(struct perf_sample *sample, u64 read_format)
1250{
1251 printf("... sample_read:\n");
1252
1253 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1254 printf("...... time enabled %016" PRIx64 "\n",
1255 sample->read.time_enabled);
1256
1257 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1258 printf("...... time running %016" PRIx64 "\n",
1259 sample->read.time_running);
1260
1261 if (read_format & PERF_FORMAT_GROUP) {
1262 u64 i;
1263
1264 printf(".... group nr %" PRIu64 "\n", sample->read.group.nr);
1265
1266 for (i = 0; i < sample->read.group.nr; i++) {
1267 struct sample_read_value *value;
1268
1269 value = &sample->read.group.values[i];
1270 printf("..... id %016" PRIx64
1271 ", value %016" PRIx64 "\n",
1272 value->id, value->value);
1273 }
1274 } else
1275 printf("..... id %016" PRIx64 ", value %016" PRIx64 "\n",
1276 sample->read.one.id, sample->read.one.value);
1277}
1278
Jiri Olsa63503db2019-07-21 13:23:52 +02001279static void dump_event(struct evlist *evlist, union perf_event *event,
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -02001280 u64 file_offset, struct perf_sample *sample)
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001281{
1282 if (!dump_trace)
1283 return;
1284
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001285 printf("\n%#" PRIx64 " [%#x]: event: %d\n",
1286 file_offset, event->header.size, event->header.type);
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001287
1288 trace_event(event);
Thomas Richter93115d32019-01-17 10:37:17 -03001289 if (event->header.type == PERF_RECORD_SAMPLE && evlist->trace_event_sample_raw)
1290 evlist->trace_event_sample_raw(evlist, event, sample);
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001291
1292 if (sample)
Arnaldo Carvalho de Melo71273722020-11-30 14:55:12 -03001293 evlist__print_tstamp(evlist, event, sample);
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001294
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001295 printf("%#" PRIx64 " [%#x]: PERF_RECORD_%s", file_offset,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02001296 event->header.size, perf_event__name(event->header.type));
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001297}
1298
Kan Liang6b9bae62020-12-16 10:57:57 -08001299char *get_page_size_name(u64 size, char *str)
1300{
1301 if (!size || !unit_number__scnprintf(str, PAGE_SIZE_NAME_LEN, size))
1302 snprintf(str, PAGE_SIZE_NAME_LEN, "%s", "N/A");
1303
1304 return str;
1305}
1306
Jiri Olsa32dcd022019-07-21 13:23:51 +02001307static void dump_sample(struct evsel *evsel, union perf_event *event,
German Gomez83869012021-12-07 18:06:52 +00001308 struct perf_sample *sample, const char *arch)
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001309{
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -03001310 u64 sample_type;
Kan Liang6b9bae62020-12-16 10:57:57 -08001311 char str[PAGE_SIZE_NAME_LEN];
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -03001312
Arnaldo Carvalho de Meloddbc24b2010-12-09 12:20:20 -02001313 if (!dump_trace)
1314 return;
1315
Don Zickus0ea590a2014-02-25 22:43:46 -05001316 printf("(IP, 0x%x): %d/%d: %#" PRIx64 " period: %" PRIu64 " addr: %#" PRIx64 "\n",
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001317 event->header.misc, sample->pid, sample->tid, sample->ip,
David Ahern7cec0922011-05-30 13:08:23 -06001318 sample->period, sample->addr);
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001319
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001320 sample_type = evsel->core.attr.sample_type;
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -03001321
Arnaldo Carvalho de Melo27de9b22018-05-28 16:00:29 -03001322 if (evsel__has_callchain(evsel))
Kan Liang384b6052015-01-05 13:23:05 -05001323 callchain__printf(evsel, sample);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +01001324
Adrian Hunter6cd2cbfc2020-04-29 18:07:47 +03001325 if (evsel__has_br_stack(evsel))
Arnaldo Carvalho de Melo4f138a92020-04-30 11:19:45 -03001326 branch_stack__printf(sample, evsel__has_branch_callstack(evsel));
Jiri Olsa0f6a3012012-08-07 15:20:45 +02001327
1328 if (sample_type & PERF_SAMPLE_REGS_USER)
German Gomez83869012021-12-07 18:06:52 +00001329 regs_user__printf(sample, arch);
Jiri Olsa0f6a3012012-08-07 15:20:45 +02001330
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02001331 if (sample_type & PERF_SAMPLE_REGS_INTR)
German Gomez83869012021-12-07 18:06:52 +00001332 regs_intr__printf(sample, arch);
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02001333
Jiri Olsa0f6a3012012-08-07 15:20:45 +02001334 if (sample_type & PERF_SAMPLE_STACK_USER)
1335 stack_user__printf(&sample->user_stack);
Andi Kleen05484292013-01-24 16:10:29 +01001336
Kan Liang590db422021-02-02 12:09:10 -08001337 if (sample_type & PERF_SAMPLE_WEIGHT_TYPE) {
1338 printf("... weight: %" PRIu64 "", sample->weight);
Athira Rajeev06e5ca72021-03-22 10:57:26 -04001339 if (sample_type & PERF_SAMPLE_WEIGHT_STRUCT) {
Kan Liang590db422021-02-02 12:09:10 -08001340 printf(",0x%"PRIx16"", sample->ins_lat);
Athira Rajeev06e5ca72021-03-22 10:57:26 -04001341 printf(",0x%"PRIx16"", sample->p_stage_cyc);
1342 }
Kan Liang590db422021-02-02 12:09:10 -08001343 printf("\n");
1344 }
Stephane Eranian98a3b322013-01-24 16:10:35 +01001345
1346 if (sample_type & PERF_SAMPLE_DATA_SRC)
1347 printf(" . data_src: 0x%"PRIx64"\n", sample->data_src);
Jiri Olsa9ede4732012-10-10 17:38:13 +02001348
Kan Liang8780fb22017-08-29 13:11:09 -04001349 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
1350 printf(" .. phys_addr: 0x%"PRIx64"\n", sample->phys_addr);
1351
Kan Liang6b9bae62020-12-16 10:57:57 -08001352 if (sample_type & PERF_SAMPLE_DATA_PAGE_SIZE)
1353 printf(" .. data page size: %s\n", get_page_size_name(sample->data_page_size, str));
1354
Stephane Eranianc513de82021-01-05 11:57:50 -08001355 if (sample_type & PERF_SAMPLE_CODE_PAGE_SIZE)
1356 printf(" .. code page size: %s\n", get_page_size_name(sample->code_page_size, str));
1357
Andi Kleen475eeab2013-09-20 07:40:43 -07001358 if (sample_type & PERF_SAMPLE_TRANSACTION)
1359 printf("... transaction: %" PRIx64 "\n", sample->transaction);
1360
Jiri Olsa9ede4732012-10-10 17:38:13 +02001361 if (sample_type & PERF_SAMPLE_READ)
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001362 sample_read__printf(sample, evsel->core.attr.read_format);
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001363}
1364
Jiri Olsa32dcd022019-07-21 13:23:51 +02001365static void dump_read(struct evsel *evsel, union perf_event *event)
Jiri Olsadac7f6b2017-08-24 18:27:32 +02001366{
Arnaldo Carvalho de Melo69d81f02019-08-26 19:02:31 -03001367 struct perf_record_read *read_event = &event->read;
Jiri Olsadac7f6b2017-08-24 18:27:32 +02001368 u64 read_format;
1369
1370 if (!dump_trace)
1371 return;
1372
Jiri Olsa213a6c12019-08-25 20:17:48 +02001373 printf(": %d %d %s %" PRI_lu64 "\n", event->read.pid, event->read.tid,
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03001374 evsel__name(evsel), event->read.value);
Jiri Olsadac7f6b2017-08-24 18:27:32 +02001375
Leo Yanf3c8d902019-07-02 18:34:17 +08001376 if (!evsel)
1377 return;
1378
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001379 read_format = evsel->core.attr.read_format;
Jiri Olsadac7f6b2017-08-24 18:27:32 +02001380
1381 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Jiri Olsa213a6c12019-08-25 20:17:48 +02001382 printf("... time enabled : %" PRI_lu64 "\n", read_event->time_enabled);
Jiri Olsadac7f6b2017-08-24 18:27:32 +02001383
1384 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Jiri Olsa213a6c12019-08-25 20:17:48 +02001385 printf("... time running : %" PRI_lu64 "\n", read_event->time_running);
Jiri Olsadac7f6b2017-08-24 18:27:32 +02001386
1387 if (read_format & PERF_FORMAT_ID)
Jiri Olsa213a6c12019-08-25 20:17:48 +02001388 printf("... id : %" PRI_lu64 "\n", read_event->id);
Jiri Olsadac7f6b2017-08-24 18:27:32 +02001389}
1390
Arnaldo Carvalho de Melo54245fd2015-02-14 14:26:15 -03001391static struct machine *machines__find_for_cpumode(struct machines *machines,
Adrian Hunteref893252013-08-27 11:23:06 +03001392 union perf_event *event,
1393 struct perf_sample *sample)
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001394{
David Ahern7c0f4a42012-07-20 17:25:48 -06001395 if (perf_guest &&
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -03001396 ((sample->cpumode == PERF_RECORD_MISC_GUEST_KERNEL) ||
1397 (sample->cpumode == PERF_RECORD_MISC_GUEST_USER))) {
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +05301398 u32 pid;
1399
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001400 if (event->header.type == PERF_RECORD_MMAP
1401 || event->header.type == PERF_RECORD_MMAP2)
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +05301402 pid = event->mmap.pid;
1403 else
Adrian Hunteref893252013-08-27 11:23:06 +03001404 pid = sample->pid;
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +05301405
Adrian Hunterfcda5ff2021-02-18 11:57:55 +02001406 return machines__find_guest(machines, pid);
Nikunj A. Dadhania7fb0a5e2012-04-09 13:52:23 +05301407 }
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001408
Arnaldo Carvalho de Melo54245fd2015-02-14 14:26:15 -03001409 return &machines->host;
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001410}
1411
Jiri Olsa63503db2019-07-21 13:23:52 +02001412static int deliver_sample_value(struct evlist *evlist,
Jiri Olsae4caec02012-10-10 18:52:24 +02001413 struct perf_tool *tool,
1414 union perf_event *event,
1415 struct perf_sample *sample,
1416 struct sample_read_value *v,
1417 struct machine *machine)
1418{
Arnaldo Carvalho de Melo3ccf8a72020-11-30 14:17:57 -03001419 struct perf_sample_id *sid = evlist__id2sid(evlist, v->id);
Jiri Olsa70c20362019-09-03 10:34:29 +02001420 struct evsel *evsel;
Jiri Olsae4caec02012-10-10 18:52:24 +02001421
Jiri Olsae4caec02012-10-10 18:52:24 +02001422 if (sid) {
1423 sample->id = v->id;
1424 sample->period = v->value - sid->period;
1425 sid->period = v->value;
1426 }
1427
1428 if (!sid || sid->evsel == NULL) {
Arnaldo Carvalho de Melo313e53b2015-02-14 15:05:28 -03001429 ++evlist->stats.nr_unknown_id;
Jiri Olsae4caec02012-10-10 18:52:24 +02001430 return 0;
1431 }
1432
Jiri Olsa529c1a92019-02-20 13:27:55 +01001433 /*
1434 * There's no reason to deliver sample
1435 * for zero period, bail out.
1436 */
1437 if (!sample->period)
1438 return 0;
1439
Jiri Olsa70c20362019-09-03 10:34:29 +02001440 evsel = container_of(sid->evsel, struct evsel, core);
1441 return tool->sample(tool, event, sample, evsel, machine);
Jiri Olsae4caec02012-10-10 18:52:24 +02001442}
1443
Jiri Olsa63503db2019-07-21 13:23:52 +02001444static int deliver_sample_group(struct evlist *evlist,
Jiri Olsae4caec02012-10-10 18:52:24 +02001445 struct perf_tool *tool,
1446 union perf_event *event,
1447 struct perf_sample *sample,
1448 struct machine *machine)
1449{
1450 int ret = -EINVAL;
1451 u64 i;
1452
1453 for (i = 0; i < sample->read.group.nr; i++) {
Arnaldo Carvalho de Melo313e53b2015-02-14 15:05:28 -03001454 ret = deliver_sample_value(evlist, tool, event, sample,
Jiri Olsae4caec02012-10-10 18:52:24 +02001455 &sample->read.group.values[i],
1456 machine);
1457 if (ret)
1458 break;
1459 }
1460
1461 return ret;
1462}
1463
Arnaldo Carvalho de Melo515ea462020-11-30 15:16:29 -03001464static int evlist__deliver_sample(struct evlist *evlist, struct perf_tool *tool,
1465 union perf_event *event, struct perf_sample *sample,
1466 struct evsel *evsel, struct machine *machine)
Jiri Olsae4caec02012-10-10 18:52:24 +02001467{
1468 /* We know evsel != NULL. */
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001469 u64 sample_type = evsel->core.attr.sample_type;
1470 u64 read_format = evsel->core.attr.read_format;
Jiri Olsae4caec02012-10-10 18:52:24 +02001471
Soramichi AKIYAMAd94386f2017-01-17 22:22:33 +09001472 /* Standard sample delivery. */
Jiri Olsae4caec02012-10-10 18:52:24 +02001473 if (!(sample_type & PERF_SAMPLE_READ))
1474 return tool->sample(tool, event, sample, evsel, machine);
1475
1476 /* For PERF_SAMPLE_READ we have either single or group mode. */
1477 if (read_format & PERF_FORMAT_GROUP)
Arnaldo Carvalho de Melo313e53b2015-02-14 15:05:28 -03001478 return deliver_sample_group(evlist, tool, event, sample,
Jiri Olsae4caec02012-10-10 18:52:24 +02001479 machine);
1480 else
Arnaldo Carvalho de Melo313e53b2015-02-14 15:05:28 -03001481 return deliver_sample_value(evlist, tool, event, sample,
Jiri Olsae4caec02012-10-10 18:52:24 +02001482 &sample->read.one, machine);
1483}
1484
Arnaldo Carvalho de Melod10eb1e2015-03-03 12:20:38 -03001485static int machines__deliver_event(struct machines *machines,
Jiri Olsa63503db2019-07-21 13:23:52 +02001486 struct evlist *evlist,
Arnaldo Carvalho de Melod10eb1e2015-03-03 12:20:38 -03001487 union perf_event *event,
1488 struct perf_sample *sample,
1489 struct perf_tool *tool, u64 file_offset)
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001490{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001491 struct evsel *evsel;
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001492 struct machine *machine;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -03001493
Arnaldo Carvalho de Melo9fa87272015-02-14 15:08:51 -03001494 dump_event(evlist, event, file_offset, sample);
Thomas Gleixner532e7262010-12-07 12:48:55 +00001495
Arnaldo Carvalho de Melo3ccf8a72020-11-30 14:17:57 -03001496 evsel = evlist__id2evsel(evlist, sample->id);
Arnaldo Carvalho de Melo7b275092011-10-29 12:15:04 -02001497
Arnaldo Carvalho de Melofa713a4e2015-03-03 11:48:12 -03001498 machine = machines__find_for_cpumode(machines, event, sample);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001499
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001500 switch (event->header.type) {
1501 case PERF_RECORD_SAMPLE:
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -03001502 if (evsel == NULL) {
Arnaldo Carvalho de Melo313e53b2015-02-14 15:05:28 -03001503 ++evlist->stats.nr_unknown_id;
Jiri Olsa67822062012-04-12 14:21:01 +02001504 return 0;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -03001505 }
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;
Ameer Hamzad792a7a2022-01-25 17:11:41 +05001508 dump_sample(evsel, event, sample, perf_env__arch(NULL));
Jiri Olsa67822062012-04-12 14:21:01 +02001509 return 0;
Joerg Roedel0c095712012-02-10 18:05:04 +01001510 }
Ameer Hamzad792a7a2022-01-25 17:11:41 +05001511 dump_sample(evsel, event, sample, perf_env__arch(machine->env));
Arnaldo Carvalho de Melo515ea462020-11-30 15:16:29 -03001512 return evlist__deliver_sample(evlist, tool, event, sample, evsel, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001513 case PERF_RECORD_MMAP:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001514 return tool->mmap(tool, event, sample, machine);
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001515 case PERF_RECORD_MMAP2:
Kan Liang930e6fc2015-06-17 09:51:10 -04001516 if (event->header.misc & PERF_RECORD_MISC_PROC_MAP_PARSE_TIMEOUT)
1517 ++evlist->stats.nr_proc_map_timeout;
Stephane Eranian5c5e8542013-08-21 12:10:25 +02001518 return tool->mmap2(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001519 case PERF_RECORD_COMM:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001520 return tool->comm(tool, event, sample, machine);
Hari Bathinif3b36142017-03-08 02:11:43 +05301521 case PERF_RECORD_NAMESPACES:
1522 return tool->namespaces(tool, event, sample, machine);
Namhyung Kimba78c1c2020-03-25 21:45:30 +09001523 case PERF_RECORD_CGROUP:
1524 return tool->cgroup(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001525 case PERF_RECORD_FORK:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001526 return tool->fork(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001527 case PERF_RECORD_EXIT:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001528 return tool->exit(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001529 case PERF_RECORD_LOST:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001530 if (tool->lost == perf_event__process_lost)
Arnaldo Carvalho de Melo313e53b2015-02-14 15:05:28 -03001531 evlist->stats.total_lost += event->lost.lost;
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001532 return tool->lost(tool, event, sample, machine);
Kan Liangc4937a92015-05-10 15:13:15 -04001533 case PERF_RECORD_LOST_SAMPLES:
1534 if (tool->lost_samples == perf_event__process_lost_samples)
1535 evlist->stats.total_lost_samples += event->lost_samples.lost;
1536 return tool->lost_samples(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001537 case PERF_RECORD_READ:
Jiri Olsadac7f6b2017-08-24 18:27:32 +02001538 dump_read(evsel, event);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001539 return tool->read(tool, event, sample, evsel, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001540 case PERF_RECORD_THROTTLE:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001541 return tool->throttle(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001542 case PERF_RECORD_UNTHROTTLE:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001543 return tool->unthrottle(tool, event, sample, machine);
Adrian Hunter4a96f7a2015-04-30 17:37:29 +03001544 case PERF_RECORD_AUX:
Alexander Shishkin05a1f472017-03-16 18:41:59 +02001545 if (tool->aux == perf_event__process_aux) {
1546 if (event->aux.flags & PERF_AUX_FLAG_TRUNCATED)
1547 evlist->stats.total_aux_lost += 1;
1548 if (event->aux.flags & PERF_AUX_FLAG_PARTIAL)
1549 evlist->stats.total_aux_partial += 1;
Suzuki K Poulosec68b4212021-07-28 10:12:19 +01001550 if (event->aux.flags & PERF_AUX_FLAG_COLLISION)
1551 evlist->stats.total_aux_collision += 1;
Alexander Shishkin05a1f472017-03-16 18:41:59 +02001552 }
Adrian Hunter4a96f7a2015-04-30 17:37:29 +03001553 return tool->aux(tool, event, sample, machine);
Adrian Hunter0ad21f62015-04-30 17:37:30 +03001554 case PERF_RECORD_ITRACE_START:
1555 return tool->itrace_start(tool, event, sample, machine);
Adrian Hunter02860392015-07-21 12:44:03 +03001556 case PERF_RECORD_SWITCH:
1557 case PERF_RECORD_SWITCH_CPU_WIDE:
1558 return tool->context_switch(tool, event, sample, machine);
Song Liu9aa0bfa2019-01-17 08:15:17 -08001559 case PERF_RECORD_KSYMBOL:
1560 return tool->ksymbol(tool, event, sample, machine);
Song Liu45178a92019-01-17 08:15:18 -08001561 case PERF_RECORD_BPF_EVENT:
Arnaldo Carvalho de Melo3f604b52019-08-26 19:28:13 -03001562 return tool->bpf(tool, event, sample, machine);
Adrian Hunter246eba82020-05-12 15:19:18 +03001563 case PERF_RECORD_TEXT_POKE:
1564 return tool->text_poke(tool, event, sample, machine);
Adrian Hunter61750472021-09-07 19:39:02 +03001565 case PERF_RECORD_AUX_OUTPUT_HW_ID:
1566 return tool->aux_output_hw_id(tool, event, sample, machine);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001567 default:
Arnaldo Carvalho de Melo313e53b2015-02-14 15:05:28 -03001568 ++evlist->stats.nr_unknown_events;
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001569 return -1;
1570 }
1571}
1572
Adrian Hunterc4468702015-04-09 18:53:48 +03001573static int perf_session__deliver_event(struct perf_session *session,
1574 union perf_event *event,
Adrian Hunterc4468702015-04-09 18:53:48 +03001575 struct perf_tool *tool,
1576 u64 file_offset)
1577{
Jiri Olsa93d10af2017-08-03 13:21:14 +02001578 struct perf_sample sample;
Arnaldo Carvalho de Melo2a6599c2020-11-30 09:43:07 -03001579 int ret = evlist__parse_sample(session->evlist, event, &sample);
Adrian Hunterc4468702015-04-09 18:53:48 +03001580
Jiri Olsa93d10af2017-08-03 13:21:14 +02001581 if (ret) {
1582 pr_err("Can't parse sample, err = %d\n", ret);
1583 return ret;
1584 }
1585
1586 ret = auxtrace__process_event(session, event, &sample, tool);
Adrian Hunterc4468702015-04-09 18:53:48 +03001587 if (ret < 0)
1588 return ret;
1589 if (ret > 0)
1590 return 0;
1591
Adrian Hunterb04b8dd2019-11-15 14:42:19 +02001592 ret = machines__deliver_event(&session->machines, session->evlist,
1593 event, &sample, tool, file_offset);
1594
1595 if (dump_trace && sample.aux_sample.size)
1596 auxtrace__dump_auxtrace_sample(session, &sample);
1597
1598 return ret;
Adrian Hunterc4468702015-04-09 18:53:48 +03001599}
1600
Adrian Hunterd5652d82014-07-23 22:19:58 +03001601static s64 perf_session__process_user_event(struct perf_session *session,
1602 union perf_event *event,
Adrian Hunterd5652d82014-07-23 22:19:58 +03001603 u64 file_offset)
Thomas Gleixnerba74f062010-12-07 12:49:01 +00001604{
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -03001605 struct ordered_events *oe = &session->ordered_events;
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -03001606 struct perf_tool *tool = session->tool;
Arnaldo Carvalho de Melof250b092017-11-23 15:35:04 -03001607 struct perf_sample sample = { .time = 0, };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001608 int fd = perf_data__fd(session->data);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02001609 int err;
1610
Alexey Budankov61a77732019-03-18 20:45:11 +03001611 if (event->header.type != PERF_RECORD_COMPRESSED ||
1612 tool->compressed == perf_session__process_compressed_event_stub)
1613 dump_event(session->evlist, event, file_offset, &sample);
Thomas Gleixnerba74f062010-12-07 12:49:01 +00001614
1615 /* These events are processed right away */
1616 switch (event->header.type) {
1617 case PERF_RECORD_HEADER_ATTR:
Adrian Hunter47c3d102013-07-04 16:20:21 +03001618 err = tool->attr(tool, event, &session->evlist);
Adrian Huntercfe1c412014-07-31 09:00:45 +03001619 if (err == 0) {
Arnaldo Carvalho de Melo7b56cce2012-08-01 19:31:00 -03001620 perf_session__set_id_hdr_size(session);
Adrian Huntercfe1c412014-07-31 09:00:45 +03001621 perf_session__set_comm_exec(session);
1622 }
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02001623 return err;
Jiri Olsaffe777252015-10-25 15:51:36 +01001624 case PERF_RECORD_EVENT_UPDATE:
1625 return tool->event_update(tool, event, &session->evlist);
Jiri Olsaf67697b2014-02-04 15:37:48 +01001626 case PERF_RECORD_HEADER_EVENT_TYPE:
1627 /*
Ingo Molnar4d39c892021-03-23 17:09:15 +01001628 * Deprecated, but we need to handle it for sake
Jiri Olsaf67697b2014-02-04 15:37:48 +01001629 * of old data files create in pipe mode.
1630 */
1631 return 0;
Thomas Gleixnerba74f062010-12-07 12:49:01 +00001632 case PERF_RECORD_HEADER_TRACING_DATA:
Jiri Olsab4911982020-05-07 11:50:21 +02001633 /*
1634 * Setup for reading amidst mmap, but only when we
1635 * are in 'file' mode. The 'pipe' fd is in proper
1636 * place already.
1637 */
1638 if (!perf_data__is_pipe(session->data))
1639 lseek(fd, file_offset, SEEK_SET);
Jiri Olsa89f16882018-09-13 14:54:03 +02001640 return tool->tracing_data(session, event);
Thomas Gleixnerba74f062010-12-07 12:49:01 +00001641 case PERF_RECORD_HEADER_BUILD_ID:
Jiri Olsa89f16882018-09-13 14:54:03 +02001642 return tool->build_id(session, event);
Thomas Gleixnerba74f062010-12-07 12:49:01 +00001643 case PERF_RECORD_FINISHED_ROUND:
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -03001644 return tool->finished_round(tool, event, oe);
Adrian Hunter3c659ee2014-10-27 15:49:22 +02001645 case PERF_RECORD_ID_INDEX:
Jiri Olsa89f16882018-09-13 14:54:03 +02001646 return tool->id_index(session, event);
Adrian Huntera16ac022015-04-09 18:53:43 +03001647 case PERF_RECORD_AUXTRACE_INFO:
Jiri Olsa89f16882018-09-13 14:54:03 +02001648 return tool->auxtrace_info(session, event);
Adrian Huntera16ac022015-04-09 18:53:43 +03001649 case PERF_RECORD_AUXTRACE:
1650 /* setup for reading amidst mmap */
1651 lseek(fd, file_offset + event->header.size, SEEK_SET);
Jiri Olsa73365552018-09-13 14:54:04 +02001652 return tool->auxtrace(session, event);
Adrian Huntere9bf54d2015-04-09 18:53:47 +03001653 case PERF_RECORD_AUXTRACE_ERROR:
Adrian Hunter85ed4722015-04-09 18:53:50 +03001654 perf_session__auxtrace_error_inc(session, event);
Jiri Olsa89f16882018-09-13 14:54:03 +02001655 return tool->auxtrace_error(session, event);
Jiri Olsa5f3339d2015-10-25 15:51:19 +01001656 case PERF_RECORD_THREAD_MAP:
Jiri Olsa89f16882018-09-13 14:54:03 +02001657 return tool->thread_map(session, event);
Jiri Olsa6640b6c2015-10-25 15:51:23 +01001658 case PERF_RECORD_CPU_MAP:
Jiri Olsa89f16882018-09-13 14:54:03 +02001659 return tool->cpu_map(session, event);
Jiri Olsa374fb9e2015-10-25 15:51:27 +01001660 case PERF_RECORD_STAT_CONFIG:
Jiri Olsa89f16882018-09-13 14:54:03 +02001661 return tool->stat_config(session, event);
Jiri Olsad80518c2015-10-25 15:51:30 +01001662 case PERF_RECORD_STAT:
Jiri Olsa89f16882018-09-13 14:54:03 +02001663 return tool->stat(session, event);
Jiri Olsa2d8f0f12015-10-25 15:51:33 +01001664 case PERF_RECORD_STAT_ROUND:
Jiri Olsa89f16882018-09-13 14:54:03 +02001665 return tool->stat_round(session, event);
Adrian Hunter46bc29b2016-03-08 10:38:44 +02001666 case PERF_RECORD_TIME_CONV:
1667 session->time_conv = event->time_conv;
Jiri Olsa89f16882018-09-13 14:54:03 +02001668 return tool->time_conv(session, event);
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07001669 case PERF_RECORD_HEADER_FEATURE:
Jiri Olsa89f16882018-09-13 14:54:03 +02001670 return tool->feature(session, event);
Alexey Budankov61a77732019-03-18 20:45:11 +03001671 case PERF_RECORD_COMPRESSED:
1672 err = tool->compressed(session, event, file_offset);
1673 if (err)
1674 dump_event(session->evlist, event, file_offset, &sample);
1675 return err;
Thomas Gleixnerba74f062010-12-07 12:49:01 +00001676 default:
1677 return -EINVAL;
1678 }
1679}
1680
Adrian Huntera2938292014-10-27 15:49:23 +02001681int perf_session__deliver_synth_event(struct perf_session *session,
1682 union perf_event *event,
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001683 struct perf_sample *sample)
Adrian Huntera2938292014-10-27 15:49:23 +02001684{
Jiri Olsa63503db2019-07-21 13:23:52 +02001685 struct evlist *evlist = session->evlist;
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -03001686 struct perf_tool *tool = session->tool;
Arnaldo Carvalho de Melofa713a4e2015-03-03 11:48:12 -03001687
1688 events_stats__inc(&evlist->stats, event->header.type);
Adrian Huntera2938292014-10-27 15:49:23 +02001689
1690 if (event->header.type >= PERF_RECORD_USER_TYPE_START)
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001691 return perf_session__process_user_event(session, event, 0);
Adrian Huntera2938292014-10-27 15:49:23 +02001692
Arnaldo Carvalho de Melofa713a4e2015-03-03 11:48:12 -03001693 return machines__deliver_event(&session->machines, evlist, event, sample, tool, 0);
Adrian Huntera2938292014-10-27 15:49:23 +02001694}
1695
Jiri Olsa268fb202012-05-30 14:23:43 +02001696static void event_swap(union perf_event *event, bool sample_id_all)
1697{
1698 perf_event__swap_op swap;
1699
1700 swap = perf_event__swap_ops[event->header.type];
1701 if (swap)
1702 swap(event, sample_id_all);
1703}
1704
Adrian Hunter5a52f332014-07-31 09:00:57 +03001705int perf_session__peek_event(struct perf_session *session, off_t file_offset,
1706 void *buf, size_t buf_sz,
1707 union perf_event **event_ptr,
1708 struct perf_sample *sample)
1709{
1710 union perf_event *event;
1711 size_t hdr_sz, rest;
1712 int fd;
1713
1714 if (session->one_mmap && !session->header.needs_swap) {
1715 event = file_offset - session->one_mmap_offset +
1716 session->one_mmap_addr;
1717 goto out_parse_sample;
1718 }
1719
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001720 if (perf_data__is_pipe(session->data))
Adrian Hunter5a52f332014-07-31 09:00:57 +03001721 return -1;
1722
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001723 fd = perf_data__fd(session->data);
Adrian Hunter5a52f332014-07-31 09:00:57 +03001724 hdr_sz = sizeof(struct perf_event_header);
1725
1726 if (buf_sz < hdr_sz)
1727 return -1;
1728
1729 if (lseek(fd, file_offset, SEEK_SET) == (off_t)-1 ||
Adrian Hunter554e92e2015-05-19 16:05:45 +03001730 readn(fd, buf, hdr_sz) != (ssize_t)hdr_sz)
Adrian Hunter5a52f332014-07-31 09:00:57 +03001731 return -1;
1732
1733 event = (union perf_event *)buf;
1734
1735 if (session->header.needs_swap)
1736 perf_event_header__bswap(&event->header);
1737
Adrian Hunter554e92e2015-05-19 16:05:45 +03001738 if (event->header.size < hdr_sz || event->header.size > buf_sz)
Adrian Hunter5a52f332014-07-31 09:00:57 +03001739 return -1;
1740
Leo Yan197eecb2021-06-05 13:29:57 +08001741 buf += hdr_sz;
Adrian Hunter5a52f332014-07-31 09:00:57 +03001742 rest = event->header.size - hdr_sz;
1743
Adrian Hunter554e92e2015-05-19 16:05:45 +03001744 if (readn(fd, buf, rest) != (ssize_t)rest)
Adrian Hunter5a52f332014-07-31 09:00:57 +03001745 return -1;
1746
1747 if (session->header.needs_swap)
Arnaldo Carvalho de Melo8cedf3a2020-06-17 09:29:48 -03001748 event_swap(event, evlist__sample_id_all(session->evlist));
Adrian Hunter5a52f332014-07-31 09:00:57 +03001749
1750out_parse_sample:
1751
1752 if (sample && event->header.type < PERF_RECORD_USER_TYPE_START &&
Arnaldo Carvalho de Melo2a6599c2020-11-30 09:43:07 -03001753 evlist__parse_sample(session->evlist, event, sample))
Adrian Hunter5a52f332014-07-31 09:00:57 +03001754 return -1;
1755
1756 *event_ptr = event;
1757
1758 return 0;
1759}
1760
Adrian Hunter103ed402019-11-15 14:42:20 +02001761int perf_session__peek_events(struct perf_session *session, u64 offset,
1762 u64 size, peek_events_cb_t cb, void *data)
1763{
1764 u64 max_offset = offset + size;
1765 char buf[PERF_SAMPLE_MAX_SIZE];
1766 union perf_event *event;
1767 int err;
1768
1769 do {
1770 err = perf_session__peek_event(session, offset, buf,
1771 PERF_SAMPLE_MAX_SIZE, &event,
1772 NULL);
1773 if (err)
1774 return err;
1775
1776 err = cb(session, event, offset, data);
1777 if (err)
1778 return err;
1779
1780 offset += event->header.size;
1781 if (event->header.type == PERF_RECORD_AUXTRACE)
1782 offset += event->auxtrace.size;
1783
1784 } while (offset < max_offset);
1785
1786 return err;
1787}
1788
Adrian Hunterd5652d82014-07-23 22:19:58 +03001789static s64 perf_session__process_event(struct perf_session *session,
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001790 union perf_event *event, u64 file_offset)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001791{
Jiri Olsa63503db2019-07-21 13:23:52 +02001792 struct evlist *evlist = session->evlist;
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -03001793 struct perf_tool *tool = session->tool;
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001794 int ret;
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -02001795
Jiri Olsa268fb202012-05-30 14:23:43 +02001796 if (session->header.needs_swap)
Arnaldo Carvalho de Melo8cedf3a2020-06-17 09:29:48 -03001797 event_swap(event, evlist__sample_id_all(evlist));
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -02001798
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001799 if (event->header.type >= PERF_RECORD_HEADER_MAX)
1800 return -EINVAL;
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -02001801
Arnaldo Carvalho de Melo313e53b2015-02-14 15:05:28 -03001802 events_stats__inc(&evlist->stats, event->header.type);
Thomas Gleixner9aefcab02010-12-07 12:48:47 +00001803
1804 if (event->header.type >= PERF_RECORD_USER_TYPE_START)
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001805 return perf_session__process_user_event(session, event, file_offset);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001806
Jiri Olsa0a8cb852014-07-06 14:18:21 +02001807 if (tool->ordered_events) {
Mathieu Poirier631e8f02018-01-10 13:31:52 -07001808 u64 timestamp = -1ULL;
Jiri Olsa93d10af2017-08-03 13:21:14 +02001809
Arnaldo Carvalho de Melo2a6599c2020-11-30 09:43:07 -03001810 ret = evlist__parse_sample_timestamp(evlist, event, &timestamp);
Mathieu Poirier631e8f02018-01-10 13:31:52 -07001811 if (ret && ret != -1)
Jiri Olsa93d10af2017-08-03 13:21:14 +02001812 return ret;
1813
1814 ret = perf_session__queue_event(session, event, timestamp, file_offset);
Thomas Gleixnercbf41642010-12-05 14:32:55 +01001815 if (ret != -ETIME)
1816 return ret;
1817 }
1818
Jiri Olsa93d10af2017-08-03 13:21:14 +02001819 return perf_session__deliver_event(session, event, tool, file_offset);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001820}
1821
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001822void perf_event_header__bswap(struct perf_event_header *hdr)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02001823{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001824 hdr->type = bswap_32(hdr->type);
1825 hdr->misc = bswap_16(hdr->misc);
1826 hdr->size = bswap_16(hdr->size);
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02001827}
1828
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -02001829struct thread *perf_session__findnew(struct perf_session *session, pid_t pid)
1830{
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001831 return machine__findnew_thread(&session->machines.host, -1, pid);
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -02001832}
1833
Masami Hiramatsu9d8b1722015-12-09 11:11:23 +09001834int perf_session__register_idle_thread(struct perf_session *session)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001835{
Adrian Hunter3035cb62021-02-18 11:57:56 +02001836 struct thread *thread = machine__idle_thread(&session->machines.host);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001837
Adrian Hunter3035cb62021-02-18 11:57:56 +02001838 /* machine__idle_thread() got the thread, so put it */
Masami Hiramatsu9d8b1722015-12-09 11:11:23 +09001839 thread__put(thread);
Adrian Hunter3035cb62021-02-18 11:57:56 +02001840 return thread ? 0 : -1;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02001841}
1842
Wang Nanf06149c2016-07-14 08:34:46 +00001843static void
1844perf_session__warn_order(const struct perf_session *session)
1845{
1846 const struct ordered_events *oe = &session->ordered_events;
Jiri Olsa32dcd022019-07-21 13:23:51 +02001847 struct evsel *evsel;
Wang Nanf06149c2016-07-14 08:34:46 +00001848 bool should_warn = true;
1849
1850 evlist__for_each_entry(session->evlist, evsel) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001851 if (evsel->core.attr.write_backward)
Wang Nanf06149c2016-07-14 08:34:46 +00001852 should_warn = false;
1853 }
1854
1855 if (!should_warn)
1856 return;
1857 if (oe->nr_unordered_events != 0)
1858 ui__warning("%u out of order events recorded.\n", oe->nr_unordered_events);
1859}
1860
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -03001861static void perf_session__warn_about_errors(const struct perf_session *session)
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -02001862{
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -03001863 const struct events_stats *stats = &session->evlist->stats;
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -03001864
1865 if (session->tool->lost == perf_event__process_lost &&
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001866 stats->nr_events[PERF_RECORD_LOST] != 0) {
Arnaldo Carvalho de Melo7b275092011-10-29 12:15:04 -02001867 ui__warning("Processed %d events and lost %d chunks!\n\n"
1868 "Check IO/CPU overload!\n\n",
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001869 stats->nr_events[0],
1870 stats->nr_events[PERF_RECORD_LOST]);
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -02001871 }
1872
Kan Liangc4937a92015-05-10 15:13:15 -04001873 if (session->tool->lost_samples == perf_event__process_lost_samples) {
1874 double drop_rate;
1875
1876 drop_rate = (double)stats->total_lost_samples /
1877 (double) (stats->nr_events[PERF_RECORD_SAMPLE] + stats->total_lost_samples);
1878 if (drop_rate > 0.05) {
Arnaldo Carvalho de Melo41a43da2018-04-05 14:34:09 -03001879 ui__warning("Processed %" PRIu64 " samples and lost %3.2f%%!\n\n",
Kan Liangc4937a92015-05-10 15:13:15 -04001880 stats->nr_events[PERF_RECORD_SAMPLE] + stats->total_lost_samples,
1881 drop_rate * 100.0);
1882 }
1883 }
1884
Adrian Huntera38f48e2015-09-25 16:15:37 +03001885 if (session->tool->aux == perf_event__process_aux &&
1886 stats->total_aux_lost != 0) {
1887 ui__warning("AUX data lost %" PRIu64 " times out of %u!\n\n",
1888 stats->total_aux_lost,
1889 stats->nr_events[PERF_RECORD_AUX]);
1890 }
1891
Alexander Shishkin05a1f472017-03-16 18:41:59 +02001892 if (session->tool->aux == perf_event__process_aux &&
1893 stats->total_aux_partial != 0) {
1894 bool vmm_exclusive = false;
1895
1896 (void)sysfs__read_bool("module/kvm_intel/parameters/vmm_exclusive",
1897 &vmm_exclusive);
1898
1899 ui__warning("AUX data had gaps in it %" PRIu64 " times out of %u!\n\n"
1900 "Are you running a KVM guest in the background?%s\n\n",
1901 stats->total_aux_partial,
1902 stats->nr_events[PERF_RECORD_AUX],
1903 vmm_exclusive ?
1904 "\nReloading kvm_intel module with vmm_exclusive=0\n"
1905 "will reduce the gaps to only guest's timeslices." :
1906 "");
1907 }
1908
Suzuki K Poulosec68b4212021-07-28 10:12:19 +01001909 if (session->tool->aux == perf_event__process_aux &&
1910 stats->total_aux_collision != 0) {
1911 ui__warning("AUX data detected collision %" PRIu64 " times out of %u!\n\n",
1912 stats->total_aux_collision,
1913 stats->nr_events[PERF_RECORD_AUX]);
1914 }
1915
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001916 if (stats->nr_unknown_events != 0) {
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -02001917 ui__warning("Found %u unknown events!\n\n"
1918 "Is this an older tool processing a perf.data "
1919 "file generated by a more recent tool?\n\n"
1920 "If that is not the case, consider "
1921 "reporting to linux-kernel@vger.kernel.org.\n\n",
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001922 stats->nr_unknown_events);
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -02001923 }
1924
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001925 if (stats->nr_unknown_id != 0) {
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -03001926 ui__warning("%u samples with id not present in the header\n",
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001927 stats->nr_unknown_id);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -03001928 }
1929
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001930 if (stats->nr_invalid_chains != 0) {
Arnaldo Carvalho de Melo75be9892015-02-14 14:50:11 -03001931 ui__warning("Found invalid callchains!\n\n"
1932 "%u out of %u events were discarded for this reason.\n\n"
1933 "Consider reporting to linux-kernel@vger.kernel.org.\n\n",
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001934 stats->nr_invalid_chains,
1935 stats->nr_events[PERF_RECORD_SAMPLE]);
Arnaldo Carvalho de Melo75be9892015-02-14 14:50:11 -03001936 }
Joerg Roedel0c095712012-02-10 18:05:04 +01001937
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001938 if (stats->nr_unprocessable_samples != 0) {
Joerg Roedel0c095712012-02-10 18:05:04 +01001939 ui__warning("%u unprocessable samples recorded.\n"
1940 "Do you have a KVM guest running and not using 'perf kvm'?\n",
Arnaldo Carvalho de Meloccda0682015-02-14 14:57:13 -03001941 stats->nr_unprocessable_samples);
Joerg Roedel0c095712012-02-10 18:05:04 +01001942 }
Jiri Olsaf61ff6c2014-11-26 16:39:31 +01001943
Wang Nanf06149c2016-07-14 08:34:46 +00001944 perf_session__warn_order(session);
Adrian Hunter85ed4722015-04-09 18:53:50 +03001945
1946 events_stats__auxtrace_error_warn(stats);
Kan Liang930e6fc2015-06-17 09:51:10 -04001947
1948 if (stats->nr_proc_map_timeout != 0) {
1949 ui__warning("%d map information files for pre-existing threads were\n"
1950 "not processed, if there are samples for addresses they\n"
1951 "will not be resolved, you may find out which are these\n"
1952 "threads by running with -v and redirecting the output\n"
Kan Liang9d9cad72015-06-17 09:51:11 -04001953 "to a file.\n"
1954 "The time limit to process proc map is too short?\n"
1955 "Increase it by --proc-map-timeout\n",
Kan Liang930e6fc2015-06-17 09:51:10 -04001956 stats->nr_proc_map_timeout);
1957 }
Arnaldo Carvalho de Melo11095992011-01-04 16:25:15 -02001958}
1959
Adrian Huntera5499b32015-05-29 16:33:30 +03001960static int perf_session__flush_thread_stack(struct thread *thread,
1961 void *p __maybe_unused)
1962{
1963 return thread_stack__flush(thread);
1964}
1965
1966static int perf_session__flush_thread_stacks(struct perf_session *session)
1967{
1968 return machines__for_each_thread(&session->machines,
1969 perf_session__flush_thread_stack,
1970 NULL);
1971}
1972
Tom Zanussi8dc58102010-04-01 23:59:15 -05001973volatile int session_done;
1974
Alexey Budankovcb62c6f2019-03-18 20:45:11 +03001975static int __perf_session__process_decomp_events(struct perf_session *session);
1976
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001977static int __perf_session__process_pipe_events(struct perf_session *session)
Tom Zanussi8dc58102010-04-01 23:59:15 -05001978{
Arnaldo Carvalho de Melofa713a4e2015-03-03 11:48:12 -03001979 struct ordered_events *oe = &session->ordered_events;
Arnaldo Carvalho de Melo9870d782015-03-31 12:48:16 -03001980 struct perf_tool *tool = session->tool;
Stephane Eranian444d2862012-05-15 13:28:12 +02001981 union perf_event *event;
1982 uint32_t size, cur_size = 0;
1983 void *buf = NULL;
Adrian Hunterd5652d82014-07-23 22:19:58 +03001984 s64 skip = 0;
Tom Zanussi8dc58102010-04-01 23:59:15 -05001985 u64 head;
Jiri Olsa727ebd52013-11-28 11:30:14 +01001986 ssize_t err;
Tom Zanussi8dc58102010-04-01 23:59:15 -05001987 void *p;
1988
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001989 perf_tool__fill_defaults(tool);
Tom Zanussi8dc58102010-04-01 23:59:15 -05001990
1991 head = 0;
Stephane Eranian444d2862012-05-15 13:28:12 +02001992 cur_size = sizeof(union perf_event);
1993
1994 buf = malloc(cur_size);
1995 if (!buf)
1996 return -errno;
David Carrillo-Cisneros1e0d4f02017-04-10 13:14:27 -07001997 ordered_events__set_copy_on_queue(oe, true);
Tom Zanussi8dc58102010-04-01 23:59:15 -05001998more:
Stephane Eranian444d2862012-05-15 13:28:12 +02001999 event = buf;
Namhyung Kim60136662020-10-30 14:47:42 +09002000 err = perf_data__read(session->data, event,
2001 sizeof(struct perf_event_header));
Tom Zanussi8dc58102010-04-01 23:59:15 -05002002 if (err <= 0) {
2003 if (err == 0)
2004 goto done;
2005
2006 pr_err("failed to read event header\n");
2007 goto out_err;
2008 }
2009
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03002010 if (session->header.needs_swap)
Stephane Eranian444d2862012-05-15 13:28:12 +02002011 perf_event_header__bswap(&event->header);
Tom Zanussi8dc58102010-04-01 23:59:15 -05002012
Stephane Eranian444d2862012-05-15 13:28:12 +02002013 size = event->header.size;
Adrian Hunter27389d72013-07-04 16:20:27 +03002014 if (size < sizeof(struct perf_event_header)) {
2015 pr_err("bad event header size\n");
2016 goto out_err;
2017 }
Tom Zanussi8dc58102010-04-01 23:59:15 -05002018
Stephane Eranian444d2862012-05-15 13:28:12 +02002019 if (size > cur_size) {
2020 void *new = realloc(buf, size);
2021 if (!new) {
2022 pr_err("failed to allocate memory to read event\n");
2023 goto out_err;
2024 }
2025 buf = new;
2026 cur_size = size;
2027 event = buf;
2028 }
2029 p = event;
Tom Zanussi8dc58102010-04-01 23:59:15 -05002030 p += sizeof(struct perf_event_header);
2031
Tom Zanussi794e43b2010-05-05 00:27:40 -05002032 if (size - sizeof(struct perf_event_header)) {
Namhyung Kim60136662020-10-30 14:47:42 +09002033 err = perf_data__read(session->data, p,
2034 size - sizeof(struct perf_event_header));
Tom Zanussi794e43b2010-05-05 00:27:40 -05002035 if (err <= 0) {
2036 if (err == 0) {
2037 pr_err("unexpected end of event stream\n");
2038 goto done;
2039 }
Tom Zanussi8dc58102010-04-01 23:59:15 -05002040
Tom Zanussi794e43b2010-05-05 00:27:40 -05002041 pr_err("failed to read event data\n");
2042 goto out_err;
2043 }
Tom Zanussi8dc58102010-04-01 23:59:15 -05002044 }
2045
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03002046 if ((skip = perf_session__process_event(session, event, head)) < 0) {
Jiri Olsa9389a462012-04-16 20:42:51 +02002047 pr_err("%#" PRIx64 " [%#x]: failed to process type: %d\n",
Stephane Eranian444d2862012-05-15 13:28:12 +02002048 head, event->header.size, event->header.type);
Jiri Olsa9389a462012-04-16 20:42:51 +02002049 err = -EINVAL;
2050 goto out_err;
Tom Zanussi8dc58102010-04-01 23:59:15 -05002051 }
2052
2053 head += size;
2054
Tom Zanussi8dc58102010-04-01 23:59:15 -05002055 if (skip > 0)
2056 head += skip;
2057
Alexey Budankovcb62c6f2019-03-18 20:45:11 +03002058 err = __perf_session__process_decomp_events(session);
2059 if (err)
2060 goto out_err;
2061
Tom Zanussi8dc58102010-04-01 23:59:15 -05002062 if (!session_done())
2063 goto more;
2064done:
Adrian Hunter8c16b642013-10-18 15:29:02 +03002065 /* do the final flush for ordered samples */
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03002066 err = ordered_events__flush(oe, OE_FLUSH__FINAL);
Adrian Hunterc4468702015-04-09 18:53:48 +03002067 if (err)
2068 goto out_err;
2069 err = auxtrace__flush_events(session, tool);
Adrian Huntera5499b32015-05-29 16:33:30 +03002070 if (err)
2071 goto out_err;
2072 err = perf_session__flush_thread_stacks(session);
Tom Zanussi8dc58102010-04-01 23:59:15 -05002073out_err:
Stephane Eranian444d2862012-05-15 13:28:12 +02002074 free(buf);
Jiri Olsa075ca1e2018-01-07 17:03:54 +01002075 if (!tool->no_warn)
2076 perf_session__warn_about_errors(session);
Jiri Olsaadc56ed2014-06-10 22:50:03 +02002077 ordered_events__free(&session->ordered_events);
Adrian Hunterc4468702015-04-09 18:53:48 +03002078 auxtrace__free_events(session);
Tom Zanussi8dc58102010-04-01 23:59:15 -05002079 return err;
2080}
2081
Frederic Weisbecker998bedc2011-05-23 13:06:28 +02002082static union perf_event *
Alexey Budankovbb1835a2019-11-18 17:21:03 +03002083prefetch_event(char *buf, u64 head, size_t mmap_size,
2084 bool needs_swap, union perf_event *error)
Frederic Weisbecker998bedc2011-05-23 13:06:28 +02002085{
2086 union perf_event *event;
2087
2088 /*
2089 * Ensure we have enough space remaining to read
2090 * the size of the event in the headers.
2091 */
2092 if (head + sizeof(event->header) > mmap_size)
2093 return NULL;
2094
2095 event = (union perf_event *)(buf + head);
Alexey Budankovbb1835a2019-11-18 17:21:03 +03002096 if (needs_swap)
Frederic Weisbecker998bedc2011-05-23 13:06:28 +02002097 perf_event_header__bswap(&event->header);
2098
Alexey Budankovbb1835a2019-11-18 17:21:03 +03002099 if (head + event->header.size <= mmap_size)
2100 return event;
Frederic Weisbecker998bedc2011-05-23 13:06:28 +02002101
Alexey Budankovbb1835a2019-11-18 17:21:03 +03002102 /* We're not fetching the event so swap back again */
2103 if (needs_swap)
2104 perf_event_header__bswap(&event->header);
2105
2106 pr_debug("%s: head=%#" PRIx64 " event->header_size=%#x, mmap_size=%#zx:"
2107 " fuzzed or compressed perf.data?\n",__func__, head, event->header.size, mmap_size);
2108
2109 return error;
2110}
2111
2112static union perf_event *
2113fetch_mmaped_event(u64 head, size_t mmap_size, char *buf, bool needs_swap)
2114{
2115 return prefetch_event(buf, head, mmap_size, needs_swap, ERR_PTR(-EINVAL));
2116}
2117
2118static union perf_event *
2119fetch_decomp_event(u64 head, size_t mmap_size, char *buf, bool needs_swap)
2120{
2121 return prefetch_event(buf, head, mmap_size, needs_swap, NULL);
Frederic Weisbecker998bedc2011-05-23 13:06:28 +02002122}
2123
Alexey Budankovcb62c6f2019-03-18 20:45:11 +03002124static int __perf_session__process_decomp_events(struct perf_session *session)
2125{
2126 s64 skip;
Alexey Bayduraev8e820f92021-09-29 12:14:45 +03002127 u64 size;
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +03002128 struct decomp *decomp = session->active_decomp->decomp_last;
Alexey Budankovcb62c6f2019-03-18 20:45:11 +03002129
2130 if (!decomp)
2131 return 0;
2132
2133 while (decomp->head < decomp->size && !session_done()) {
Alexey Budankovbb1835a2019-11-18 17:21:03 +03002134 union perf_event *event = fetch_decomp_event(decomp->head, decomp->size, decomp->data,
2135 session->header.needs_swap);
Arnaldo Carvalho de Melo57fc0322019-07-30 10:58:41 -03002136
Alexey Budankovcb62c6f2019-03-18 20:45:11 +03002137 if (!event)
2138 break;
2139
2140 size = event->header.size;
2141
2142 if (size < sizeof(struct perf_event_header) ||
Alexey Bayduraev8e820f92021-09-29 12:14:45 +03002143 (skip = perf_session__process_event(session, event, decomp->file_pos)) < 0) {
Alexey Budankovcb62c6f2019-03-18 20:45:11 +03002144 pr_err("%#" PRIx64 " [%#x]: failed to process type: %d\n",
2145 decomp->file_pos + decomp->head, event->header.size, event->header.type);
2146 return -EINVAL;
2147 }
2148
2149 if (skip)
2150 size += skip;
2151
2152 decomp->head += size;
2153 }
2154
2155 return 0;
2156}
2157
David Miller35d48dd2012-11-10 14:12:19 -05002158/*
2159 * On 64bit we can mmap the data file in one go. No need for tiny mmap
2160 * slices. On 32bit we use 32MB.
2161 */
2162#if BITS_PER_LONG == 64
2163#define MMAP_SIZE ULLONG_MAX
2164#define NUM_MMAPS 1
2165#else
2166#define MMAP_SIZE (32 * 1024 * 1024ULL)
2167#define NUM_MMAPS 128
2168#endif
2169
Jiri Olsae51f8062019-03-08 14:47:40 +01002170struct reader;
2171
2172typedef s64 (*reader_cb_t)(struct perf_session *session,
2173 union perf_event *event,
2174 u64 file_offset);
2175
Jiri Olsa82715eb2019-01-10 11:12:58 +01002176struct reader {
Jiri Olsae51f8062019-03-08 14:47:40 +01002177 int fd;
2178 u64 data_size;
2179 u64 data_offset;
2180 reader_cb_t process;
Adrian Hunter2a525f62021-04-30 10:03:01 +03002181 bool in_place_update;
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002182 char *mmaps[NUM_MMAPS];
2183 size_t mmap_size;
2184 int mmap_idx;
2185 char *mmap_cur;
2186 u64 file_pos;
2187 u64 file_offset;
2188 u64 head;
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +03002189 struct zstd_data zstd_data;
2190 struct decomp_data decomp_data;
Jiri Olsa82715eb2019-01-10 11:12:58 +01002191};
2192
Jiri Olsa3c7b67b2019-01-10 11:13:01 +01002193static int
Alexey Bayduraev59650632021-10-13 12:06:37 +03002194reader__init(struct reader *rd, bool *one_mmap)
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002195{
Jiri Olsa3c7b67b2019-01-10 11:13:01 +01002196 u64 data_size = rd->data_size;
Alexey Bayduraev59650632021-10-13 12:06:37 +03002197 char **mmaps = rd->mmaps;
Thomas Gleixner0331ee02010-11-30 17:49:38 +00002198
Alexey Bayduraevde096482021-10-13 12:06:39 +03002199 rd->head = rd->data_offset;
Jiri Olsa3c7b67b2019-01-10 11:13:01 +01002200 data_size += rd->data_offset;
Thomas Gleixner55b446292010-11-30 17:49:46 +00002201
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002202 rd->mmap_size = MMAP_SIZE;
2203 if (rd->mmap_size > data_size) {
2204 rd->mmap_size = data_size;
Alexey Bayduraev59650632021-10-13 12:06:37 +03002205 if (one_mmap)
2206 *one_mmap = true;
Adrian Hunter919d86d2014-07-14 13:02:51 +03002207 }
Thomas Gleixner55b446292010-11-30 17:49:46 +00002208
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002209 memset(mmaps, 0, sizeof(rd->mmaps));
Thomas Gleixnerfe174202010-11-30 17:49:49 +00002210
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +03002211 if (zstd_init(&rd->zstd_data, 0))
2212 return -1;
2213 rd->decomp_data.zstd_decomp = &rd->zstd_data;
Alexey Bayduraev59650632021-10-13 12:06:37 +03002214
2215 return 0;
2216}
2217
2218static void
2219reader__release_decomp(struct reader *rd)
2220{
2221 perf_decomp__release_events(rd->decomp_data.decomp);
2222 zstd_fini(&rd->zstd_data);
2223}
2224
2225static int
Alexey Bayduraev06763e72021-10-13 12:06:38 +03002226reader__mmap(struct reader *rd, struct perf_session *session)
Alexey Bayduraev59650632021-10-13 12:06:37 +03002227{
Alexey Bayduraev06763e72021-10-13 12:06:38 +03002228 int mmap_prot, mmap_flags;
Alexey Bayduraev59650632021-10-13 12:06:37 +03002229 char *buf, **mmaps = rd->mmaps;
Alexey Bayduraevde096482021-10-13 12:06:39 +03002230 u64 page_offset;
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +03002231
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002232 mmap_prot = PROT_READ;
2233 mmap_flags = MAP_SHARED;
2234
Adrian Hunter2a525f62021-04-30 10:03:01 +03002235 if (rd->in_place_update) {
2236 mmap_prot |= PROT_WRITE;
2237 } else if (session->header.needs_swap) {
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002238 mmap_prot |= PROT_WRITE;
2239 mmap_flags = MAP_PRIVATE;
2240 }
Alexey Bayduraev06763e72021-10-13 12:06:38 +03002241
Alexey Bayduraevde096482021-10-13 12:06:39 +03002242 if (mmaps[rd->mmap_idx]) {
2243 munmap(mmaps[rd->mmap_idx], rd->mmap_size);
2244 mmaps[rd->mmap_idx] = NULL;
2245 }
2246
2247 page_offset = page_size * (rd->head / page_size);
2248 rd->file_offset += page_offset;
2249 rd->head -= page_offset;
2250
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002251 buf = mmap(NULL, rd->mmap_size, mmap_prot, mmap_flags, rd->fd,
2252 rd->file_offset);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002253 if (buf == MAP_FAILED) {
2254 pr_err("failed to mmap file\n");
Alexey Bayduraev06763e72021-10-13 12:06:38 +03002255 return -errno;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002256 }
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002257 mmaps[rd->mmap_idx] = rd->mmap_cur = buf;
2258 rd->mmap_idx = (rd->mmap_idx + 1) & (ARRAY_SIZE(rd->mmaps) - 1);
2259 rd->file_pos = rd->file_offset + rd->head;
Adrian Hunter919d86d2014-07-14 13:02:51 +03002260 if (session->one_mmap) {
2261 session->one_mmap_addr = buf;
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002262 session->one_mmap_offset = rd->file_offset;
Adrian Hunter919d86d2014-07-14 13:02:51 +03002263 }
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002264
Alexey Bayduraev06763e72021-10-13 12:06:38 +03002265 return 0;
2266}
2267
Alexey Bayduraev4c002882021-10-13 12:06:41 +03002268enum {
2269 READER_OK,
2270 READER_NODATA,
2271};
2272
Alexey Bayduraev06763e72021-10-13 12:06:38 +03002273static int
Alexey Bayduraev5c10dc92021-10-13 12:06:40 +03002274reader__read_event(struct reader *rd, struct perf_session *session,
2275 struct ui_progress *prog)
Alexey Bayduraev06763e72021-10-13 12:06:38 +03002276{
Alexey Bayduraevde096482021-10-13 12:06:39 +03002277 u64 size;
Alexey Bayduraev4c002882021-10-13 12:06:41 +03002278 int err = READER_OK;
Alexey Bayduraev06763e72021-10-13 12:06:38 +03002279 union perf_event *event;
2280 s64 skip;
2281
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002282 event = fetch_mmaped_event(rd->head, rd->mmap_size, rd->mmap_cur,
2283 session->header.needs_swap);
Arnaldo Carvalho de Melo57fc0322019-07-30 10:58:41 -03002284 if (IS_ERR(event))
2285 return PTR_ERR(event);
2286
Alexey Bayduraevde096482021-10-13 12:06:39 +03002287 if (!event)
Alexey Bayduraev4c002882021-10-13 12:06:41 +03002288 return READER_NODATA;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002289
2290 size = event->header.size;
2291
Thomas Richter167e4182019-04-23 12:53:03 +02002292 skip = -EINVAL;
2293
Adrian Hunter27389d72013-07-04 16:20:27 +03002294 if (size < sizeof(struct perf_event_header) ||
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002295 (skip = rd->process(session, event, rd->file_pos)) < 0) {
Thomas Richter167e4182019-04-23 12:53:03 +02002296 pr_err("%#" PRIx64 " [%#x]: failed to process type: %d [%s]\n",
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002297 rd->file_offset + rd->head, event->header.size,
Thomas Richter167e4182019-04-23 12:53:03 +02002298 event->header.type, strerror(-skip));
2299 err = skip;
Jiri Olsa3c7b67b2019-01-10 11:13:01 +01002300 goto out;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002301 }
2302
Adrian Hunter6f917c72014-07-23 22:19:57 +03002303 if (skip)
2304 size += skip;
2305
Alexey Bayduraev529b6fb2021-10-13 12:06:35 +03002306 rd->head += size;
2307 rd->file_pos += size;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002308
Alexey Budankovcb62c6f2019-03-18 20:45:11 +03002309 err = __perf_session__process_decomp_events(session);
2310 if (err)
2311 goto out;
2312
Jiri Olsa3c7b67b2019-01-10 11:13:01 +01002313 ui_progress__update(prog, size);
Thomas Gleixner55b446292010-11-30 17:49:46 +00002314
Alexey Bayduraev5c10dc92021-10-13 12:06:40 +03002315out:
2316 return err;
2317}
2318
Alexey Bayduraev25900ea2021-10-13 12:06:42 +03002319static inline bool
2320reader__eof(struct reader *rd)
2321{
2322 return (rd->file_pos >= rd->data_size + rd->data_offset);
2323}
2324
Alexey Bayduraev5c10dc92021-10-13 12:06:40 +03002325static int
2326reader__process_events(struct reader *rd, struct perf_session *session,
2327 struct ui_progress *prog)
2328{
2329 int err;
2330
2331 err = reader__init(rd, &session->one_mmap);
2332 if (err)
2333 goto out;
2334
2335 session->active_decomp = &rd->decomp_data;
2336
2337remap:
2338 err = reader__mmap(rd, session);
2339 if (err)
2340 goto out;
2341
2342more:
2343 err = reader__read_event(rd, session, prog);
2344 if (err < 0)
2345 goto out;
Alexey Bayduraev4c002882021-10-13 12:06:41 +03002346 else if (err == READER_NODATA)
Alexey Bayduraev5c10dc92021-10-13 12:06:40 +03002347 goto remap;
2348
Arnaldo Carvalho de Melo33e940a2013-09-17 16:34:28 -03002349 if (session_done())
Adrian Hunter8c16b642013-10-18 15:29:02 +03002350 goto out;
Arnaldo Carvalho de Melo33e940a2013-09-17 16:34:28 -03002351
Alexey Bayduraev25900ea2021-10-13 12:06:42 +03002352 if (!reader__eof(rd))
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002353 goto more;
Thomas Gleixnerd6513282010-11-30 17:49:44 +00002354
Adrian Hunter8c16b642013-10-18 15:29:02 +03002355out:
Alexey Bayduraev3a3535e2021-10-13 12:06:36 +03002356 session->active_decomp = &session->decomp_data;
Jiri Olsa3c7b67b2019-01-10 11:13:01 +01002357 return err;
2358}
2359
Jiri Olsae51f8062019-03-08 14:47:40 +01002360static s64 process_simple(struct perf_session *session,
2361 union perf_event *event,
2362 u64 file_offset)
2363{
2364 return perf_session__process_event(session, event, file_offset);
2365}
2366
Jiri Olsa3c7b67b2019-01-10 11:13:01 +01002367static int __perf_session__process_events(struct perf_session *session)
2368{
2369 struct reader rd = {
2370 .fd = perf_data__fd(session->data),
2371 .data_size = session->header.data_size,
2372 .data_offset = session->header.data_offset,
Jiri Olsae51f8062019-03-08 14:47:40 +01002373 .process = process_simple,
Adrian Hunter2a525f62021-04-30 10:03:01 +03002374 .in_place_update = session->data->in_place_update,
Jiri Olsa3c7b67b2019-01-10 11:13:01 +01002375 };
2376 struct ordered_events *oe = &session->ordered_events;
2377 struct perf_tool *tool = session->tool;
2378 struct ui_progress prog;
2379 int err;
2380
2381 perf_tool__fill_defaults(tool);
2382
2383 if (rd.data_size == 0)
2384 return -1;
2385
2386 ui_progress__init_size(&prog, rd.data_size, "Processing events...");
2387
2388 err = reader__process_events(&rd, session, &prog);
2389 if (err)
2390 goto out_err;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +02002391 /* do the final flush for ordered samples */
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03002392 err = ordered_events__flush(oe, OE_FLUSH__FINAL);
Adrian Hunterc4468702015-04-09 18:53:48 +03002393 if (err)
2394 goto out_err;
2395 err = auxtrace__flush_events(session, tool);
Adrian Huntera5499b32015-05-29 16:33:30 +03002396 if (err)
2397 goto out_err;
2398 err = perf_session__flush_thread_stacks(session);
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002399out_err:
Namhyung Kima5580f32012-11-13 22:30:34 +09002400 ui_progress__finish();
Jiri Olsa075ca1e2018-01-07 17:03:54 +01002401 if (!tool->no_warn)
2402 perf_session__warn_about_errors(session);
Wang Nanb26dc732016-04-13 08:21:04 +00002403 /*
2404 * We may switching perf.data output, make ordered_events
2405 * reusable.
2406 */
2407 ordered_events__reinit(&session->ordered_events);
Adrian Hunterc4468702015-04-09 18:53:48 +03002408 auxtrace__free_events(session);
Alexey Bayduraev59650632021-10-13 12:06:37 +03002409 reader__release_decomp(&rd);
Adrian Hunter919d86d2014-07-14 13:02:51 +03002410 session->one_mmap = false;
Arnaldo Carvalho de Melo06aae5902009-12-27 21:36:59 -02002411 return err;
2412}
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02002413
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03002414int perf_session__process_events(struct perf_session *session)
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02002415{
Masami Hiramatsu9d8b1722015-12-09 11:11:23 +09002416 if (perf_session__register_idle_thread(session) < 0)
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02002417 return -ENOMEM;
2418
Jiri Olsa7ba4da12019-01-10 11:12:56 +01002419 if (perf_data__is_pipe(session->data))
2420 return __perf_session__process_pipe_events(session);
Dave Martin88ca8952010-07-27 11:46:12 -03002421
Jiri Olsa7ba4da12019-01-10 11:12:56 +01002422 return __perf_session__process_events(session);
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -02002423}
2424
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -03002425bool perf_session__has_traces(struct perf_session *session, const char *msg)
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02002426{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002427 struct evsel *evsel;
David Ahern93ea01c292013-08-07 22:50:58 -04002428
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002429 evlist__for_each_entry(session->evlist, evsel) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002430 if (evsel->core.attr.type == PERF_TYPE_TRACEPOINT)
David Ahern93ea01c292013-08-07 22:50:58 -04002431 return true;
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02002432 }
2433
David Ahern93ea01c292013-08-07 22:50:58 -04002434 pr_err("No trace sample to read. Did you call 'perf %s'?\n", msg);
2435 return false;
Arnaldo Carvalho de Melo27295592009-12-27 21:37:01 -02002436}
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02002437
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03002438int map__set_kallsyms_ref_reloc_sym(struct map *map, const char *symbol_name, u64 addr)
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02002439{
2440 char *bracket;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08002441 struct ref_reloc_sym *ref;
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03002442 struct kmap *kmap;
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02002443
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08002444 ref = zalloc(sizeof(struct ref_reloc_sym));
2445 if (ref == NULL)
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02002446 return -ENOMEM;
2447
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08002448 ref->name = strdup(symbol_name);
2449 if (ref->name == NULL) {
2450 free(ref);
2451 return -ENOMEM;
2452 }
2453
2454 bracket = strchr(ref->name, ']');
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02002455 if (bracket)
2456 *bracket = '\0';
2457
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08002458 ref->addr = addr;
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -02002459
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03002460 kmap = map__kmap(map);
2461 if (kmap)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08002462 kmap->ref_reloc_sym = ref;
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -02002463
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -02002464 return 0;
2465}
Arnaldo Carvalho de Melo1f626bc2010-05-09 19:57:08 -03002466
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03002467size_t perf_session__fprintf_dsos(struct perf_session *session, FILE *fp)
Arnaldo Carvalho de Melo1f626bc2010-05-09 19:57:08 -03002468{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03002469 return machines__fprintf_dsos(&session->machines, fp);
Arnaldo Carvalho de Melo1f626bc2010-05-09 19:57:08 -03002470}
Arnaldo Carvalho de Melof8690972010-05-19 13:41:23 -03002471
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03002472size_t perf_session__fprintf_dsos_buildid(struct perf_session *session, FILE *fp,
Arnaldo Carvalho de Melo417c2ff2012-12-07 09:53:58 -03002473 bool (skip)(struct dso *dso, int parm), int parm)
Arnaldo Carvalho de Melof8690972010-05-19 13:41:23 -03002474{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03002475 return machines__fprintf_dsos_buildid(&session->machines, fp, skip, parm);
Arnaldo Carvalho de Melof8690972010-05-19 13:41:23 -03002476}
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -03002477
Namhyung Kim2775de02021-04-26 18:37:15 -07002478size_t perf_session__fprintf_nr_events(struct perf_session *session, FILE *fp,
2479 bool skip_empty)
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -03002480{
Adrian Hunterc4468702015-04-09 18:53:48 +03002481 size_t ret;
2482 const char *msg = "";
2483
2484 if (perf_header__has_feat(&session->header, HEADER_AUXTRACE))
2485 msg = " (excludes AUX area (e.g. instruction trace) decoded / synthesized events)";
2486
Adrian Hunterfe692ac2015-06-23 10:52:49 +03002487 ret = fprintf(fp, "\nAggregated stats:%s\n", msg);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -03002488
Namhyung Kim2775de02021-04-26 18:37:15 -07002489 ret += events_stats__fprintf(&session->evlist->stats, fp, skip_empty);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -03002490 return ret;
2491}
David Ahernc0230b22011-03-09 22:23:27 -07002492
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -02002493size_t perf_session__fprintf(struct perf_session *session, FILE *fp)
2494{
2495 /*
2496 * FIXME: Here we have to actually print all the machines in this
2497 * session, not just the host...
2498 */
Arnaldo Carvalho de Melo876650e62012-12-18 19:15:48 -03002499 return machine__fprintf(&session->machines.host, fp);
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -02002500}
2501
Jiri Olsa32dcd022019-07-21 13:23:51 +02002502struct evsel *perf_session__find_first_evtype(struct perf_session *session,
David Ahern9cbdb702011-04-06 21:54:20 -06002503 unsigned int type)
2504{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002505 struct evsel *pos;
David Ahern9cbdb702011-04-06 21:54:20 -06002506
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002507 evlist__for_each_entry(session->evlist, pos) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002508 if (pos->core.attr.type == type)
David Ahern9cbdb702011-04-06 21:54:20 -06002509 return pos;
2510 }
2511 return NULL;
2512}
2513
Anton Blanchard5d67be92011-07-04 21:57:50 +10002514int perf_session__cpu_bitmap(struct perf_session *session,
2515 const char *cpu_list, unsigned long *cpu_bitmap)
2516{
Stanislav Fomichev8bac41c2014-01-20 15:39:39 +04002517 int i, err = -1;
Jiri Olsaf8548392019-07-21 13:23:49 +02002518 struct perf_cpu_map *map;
Adrian Hunter5501e922021-01-07 19:41:59 +02002519 int nr_cpus = min(session->header.env.nr_cpus_avail, MAX_NR_CPUS);
Anton Blanchard5d67be92011-07-04 21:57:50 +10002520
2521 for (i = 0; i < PERF_TYPE_MAX; ++i) {
Jiri Olsa32dcd022019-07-21 13:23:51 +02002522 struct evsel *evsel;
Anton Blanchard5d67be92011-07-04 21:57:50 +10002523
2524 evsel = perf_session__find_first_evtype(session, i);
2525 if (!evsel)
2526 continue;
2527
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002528 if (!(evsel->core.attr.sample_type & PERF_SAMPLE_CPU)) {
Anton Blanchard5d67be92011-07-04 21:57:50 +10002529 pr_err("File does not contain CPU events. "
Adrian Hunter30795462017-05-26 11:17:19 +03002530 "Remove -C option to proceed.\n");
Anton Blanchard5d67be92011-07-04 21:57:50 +10002531 return -1;
2532 }
2533 }
2534
Jiri Olsa9c3516d2019-07-21 13:24:30 +02002535 map = perf_cpu_map__new(cpu_list);
David Ahern47fbe532011-11-13 10:45:27 -07002536 if (map == NULL) {
2537 pr_err("Invalid cpu_list\n");
2538 return -1;
2539 }
Anton Blanchard5d67be92011-07-04 21:57:50 +10002540
Ian Rogers44028692022-01-21 20:58:10 -08002541 for (i = 0; i < perf_cpu_map__nr(map); i++) {
2542 struct perf_cpu cpu = perf_cpu_map__cpu(map, i);
Anton Blanchard5d67be92011-07-04 21:57:50 +10002543
Ian Rogers6d188042022-01-04 22:13:51 -08002544 if (cpu.cpu >= nr_cpus) {
Anton Blanchard5d67be92011-07-04 21:57:50 +10002545 pr_err("Requested CPU %d too large. "
Ian Rogers6d188042022-01-04 22:13:51 -08002546 "Consider raising MAX_NR_CPUS\n", cpu.cpu);
Stanislav Fomichev8bac41c2014-01-20 15:39:39 +04002547 goto out_delete_map;
Anton Blanchard5d67be92011-07-04 21:57:50 +10002548 }
2549
Ian Rogers6d188042022-01-04 22:13:51 -08002550 set_bit(cpu.cpu, cpu_bitmap);
Anton Blanchard5d67be92011-07-04 21:57:50 +10002551 }
2552
Stanislav Fomichev8bac41c2014-01-20 15:39:39 +04002553 err = 0;
2554
2555out_delete_map:
Jiri Olsa38f01d82019-07-21 13:24:17 +02002556 perf_cpu_map__put(map);
Stanislav Fomichev8bac41c2014-01-20 15:39:39 +04002557 return err;
Anton Blanchard5d67be92011-07-04 21:57:50 +10002558}
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002559
2560void perf_session__fprintf_info(struct perf_session *session, FILE *fp,
2561 bool full)
2562{
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002563 if (session == NULL || fp == NULL)
2564 return;
2565
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002566 fprintf(fp, "# ========\n");
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002567 perf_header__fprintf_info(session, fp, full);
2568 fprintf(fp, "# ========\n#\n");
2569}
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03002570
Jiri Olsa89f16882018-09-13 14:54:03 +02002571int perf_event__process_id_index(struct perf_session *session,
2572 union perf_event *event)
Adrian Hunter3c659ee2014-10-27 15:49:22 +02002573{
Jiri Olsa63503db2019-07-21 13:23:52 +02002574 struct evlist *evlist = session->evlist;
Jiri Olsa72932372019-08-28 15:57:16 +02002575 struct perf_record_id_index *ie = &event->id_index;
Adrian Hunter3c659ee2014-10-27 15:49:22 +02002576 size_t i, nr, max_nr;
2577
Jiri Olsa72932372019-08-28 15:57:16 +02002578 max_nr = (ie->header.size - sizeof(struct perf_record_id_index)) /
Adrian Hunter3c659ee2014-10-27 15:49:22 +02002579 sizeof(struct id_index_entry);
2580 nr = ie->nr;
2581 if (nr > max_nr)
2582 return -EINVAL;
2583
2584 if (dump_trace)
2585 fprintf(stdout, " nr: %zu\n", nr);
2586
2587 for (i = 0; i < nr; i++) {
2588 struct id_index_entry *e = &ie->entries[i];
2589 struct perf_sample_id *sid;
2590
2591 if (dump_trace) {
Jiri Olsafecb4102019-08-28 15:57:01 +02002592 fprintf(stdout, " ... id: %"PRI_lu64, e->id);
2593 fprintf(stdout, " idx: %"PRI_lu64, e->idx);
2594 fprintf(stdout, " cpu: %"PRI_ld64, e->cpu);
2595 fprintf(stdout, " tid: %"PRI_ld64"\n", e->tid);
Adrian Hunter3c659ee2014-10-27 15:49:22 +02002596 }
2597
Arnaldo Carvalho de Melo3ccf8a72020-11-30 14:17:57 -03002598 sid = evlist__id2sid(evlist, e->id);
Adrian Hunter3c659ee2014-10-27 15:49:22 +02002599 if (!sid)
2600 return -ENOENT;
2601 sid->idx = e->idx;
Ian Rogers6d188042022-01-04 22:13:51 -08002602 sid->cpu.cpu = e->cpu;
Adrian Hunter3c659ee2014-10-27 15:49:22 +02002603 sid->tid = e->tid;
2604 }
2605 return 0;
2606}