blob: 0ce47283a8a133e1b64218cc5b437f7fb96f9cc8 [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 Meloa0675582017-04-17 16:51:59 -03004#include "string2.h"
Arnaldo Carvalho de Melo391e4202017-04-19 18:51:14 -03005#include <sys/param.h>
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02006#include <sys/types.h>
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02007#include <byteswap.h>
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02008#include <unistd.h>
9#include <stdio.h>
10#include <stdlib.h>
Arnaldo Carvalho de Melo03536312017-06-16 12:18:27 -030011#include <linux/compiler.h>
Frederic Weisbecker8671dab2009-11-11 04:51:03 +010012#include <linux/list.h>
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -020013#include <linux/kernel.h>
Robert Richterb1e5a9b2011-12-07 10:02:57 +010014#include <linux/bitops.h>
Arnaldo Carvalho de Melofc6a1722019-06-25 21:33:14 -030015#include <linux/string.h>
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -070016#include <linux/stringify.h>
Arnaldo Carvalho de Melo7f7c5362019-07-04 11:32:27 -030017#include <linux/zalloc.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030018#include <sys/stat.h>
Stephane Eranianfbe96f22011-09-30 15:40:40 +020019#include <sys/utsname.h>
Jin Yao60115182017-12-08 21:13:41 +080020#include <linux/time64.h>
Jiri Olsae2091ce2018-03-07 16:50:08 +010021#include <dirent.h>
Song Liu606f9722019-03-11 22:30:43 -070022#include <bpf/libbpf.h>
Jiri Olsa9c3516d2019-07-21 13:24:30 +020023#include <perf/cpumap.h>
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020024
Arnaldo Carvalho de Melo4a3cec82019-08-30 11:11:01 -030025#include "dso.h"
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020026#include "evlist.h"
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -030027#include "evsel.h"
Arnaldo Carvalho de Meloca125272019-09-24 15:41:51 -030028#include "util/evsel_fprintf.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020029#include "header.h"
Arnaldo Carvalho de Melo98521b32017-04-25 15:45:35 -030030#include "memswap.h"
Frederic Weisbecker03456a12009-10-06 23:36:47 +020031#include "trace-event.h"
Arnaldo Carvalho de Melo301a0b02009-12-13 19:50:25 -020032#include "session.h"
Frederic Weisbecker8671dab2009-11-11 04:51:03 +010033#include "symbol.h"
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +010034#include "debug.h"
Stephane Eranianfbe96f22011-09-30 15:40:40 +020035#include "cpumap.h"
Robert Richter50a96672012-08-16 21:10:24 +020036#include "pmu.h"
Jiri Olsa7dbf4dc2012-09-10 18:50:19 +020037#include "vdso.h"
Namhyung Kima1ae5652012-09-24 17:14:59 +090038#include "strbuf.h"
Jiri Olsaebb296c2012-10-27 23:18:28 +020039#include "build-id.h"
Jiri Olsacc9784bd2013-10-15 16:27:34 +020040#include "data.h"
Jiri Olsa720e98b2016-02-16 16:01:43 +010041#include <api/fs/fs.h>
42#include "asm/bug.h"
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -070043#include "tool.h"
Jin Yao60115182017-12-08 21:13:41 +080044#include "time-utils.h"
Jiri Olsae2091ce2018-03-07 16:50:08 +010045#include "units.h"
Jiri Olsa20f2be12019-08-06 15:25:25 +020046#include "util/util.h" // perf_exe()
Jiri Olsa5135d5e2019-02-19 10:58:13 +010047#include "cputopo.h"
Song Liu606f9722019-03-11 22:30:43 -070048#include "bpf-event.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020049
Arnaldo Carvalho de Melo3052ba52019-06-25 17:27:31 -030050#include <linux/ctype.h>
Arnaldo Carvalho de Melofb71c86c2019-09-03 10:56:06 -030051#include <internal/lib.h>
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030052
Stephane Eranian73323f52012-02-02 13:54:44 +010053/*
54 * magic2 = "PERFILE2"
55 * must be a numerical value to let the endianness
56 * determine the memory layout. That way we are able
57 * to detect endianness when reading the perf.data file
58 * back.
59 *
60 * we check for legacy (PERFFILE) format.
61 */
62static const char *__perf_magic1 = "PERFFILE";
63static const u64 __perf_magic2 = 0x32454c4946524550ULL;
64static const u64 __perf_magic2_sw = 0x50455246494c4532ULL;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020065
Stephane Eranian73323f52012-02-02 13:54:44 +010066#define PERF_MAGIC __perf_magic2
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020067
Soramichi AKIYAMAd25ed5d2017-01-17 00:22:37 +090068const char perf_version_string[] = PERF_VERSION;
69
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020070struct perf_file_attr {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020071 struct perf_event_attr attr;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020072 struct perf_file_section ids;
73};
74
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030075void perf_header__set_feat(struct perf_header *header, int feat)
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020076{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030077 set_bit(feat, header->adds_features);
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020078}
79
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030080void perf_header__clear_feat(struct perf_header *header, int feat)
Arnaldo Carvalho de Melobaa2f6c2010-11-26 19:39:15 -020081{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030082 clear_bit(feat, header->adds_features);
Arnaldo Carvalho de Melobaa2f6c2010-11-26 19:39:15 -020083}
84
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030085bool perf_header__has_feat(const struct perf_header *header, int feat)
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020086{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030087 return test_bit(feat, header->adds_features);
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020088}
89
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -070090static int __do_write_fd(struct feat_fd *ff, const void *buf, size_t size)
91{
92 ssize_t ret = writen(ff->fd, buf, size);
93
94 if (ret != (ssize_t)size)
95 return ret < 0 ? (int)ret : -1;
96 return 0;
97}
98
99static int __do_write_buf(struct feat_fd *ff, const void *buf, size_t size)
100{
101 /* struct perf_event_header::size is u16 */
102 const size_t max_size = 0xffff - sizeof(struct perf_event_header);
103 size_t new_size = ff->size;
104 void *addr;
105
106 if (size + ff->offset > max_size)
107 return -E2BIG;
108
109 while (size > (new_size - ff->offset))
110 new_size <<= 1;
111 new_size = min(max_size, new_size);
112
113 if (ff->size < new_size) {
114 addr = realloc(ff->buf, new_size);
115 if (!addr)
116 return -ENOMEM;
117 ff->buf = addr;
118 ff->size = new_size;
119 }
120
121 memcpy(ff->buf + ff->offset, buf, size);
122 ff->offset += size;
123
124 return 0;
125}
126
David Carrillo-Cisneros2ff53652017-07-17 21:25:36 -0700127/* Return: 0 if succeded, -ERR if failed. */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700128int do_write(struct feat_fd *ff, const void *buf, size_t size)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200129{
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700130 if (!ff->buf)
131 return __do_write_fd(ff, buf, size);
132 return __do_write_buf(ff, buf, size);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200133}
134
David Carrillo-Cisneros2ff53652017-07-17 21:25:36 -0700135/* Return: 0 if succeded, -ERR if failed. */
Jiri Olsae2091ce2018-03-07 16:50:08 +0100136static int do_write_bitmap(struct feat_fd *ff, unsigned long *set, u64 size)
137{
138 u64 *p = (u64 *) set;
139 int i, ret;
140
141 ret = do_write(ff, &size, sizeof(size));
142 if (ret < 0)
143 return ret;
144
145 for (i = 0; (u64) i < BITS_TO_U64(size); i++) {
146 ret = do_write(ff, p + i, sizeof(*p));
147 if (ret < 0)
148 return ret;
149 }
150
151 return 0;
152}
153
154/* Return: 0 if succeded, -ERR if failed. */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700155int write_padded(struct feat_fd *ff, const void *bf,
156 size_t count, size_t count_aligned)
Arnaldo Carvalho de Melof92cb242010-01-04 16:19:28 -0200157{
158 static const char zero_buf[NAME_ALIGN];
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700159 int err = do_write(ff, bf, count);
Arnaldo Carvalho de Melof92cb242010-01-04 16:19:28 -0200160
161 if (!err)
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700162 err = do_write(ff, zero_buf, count_aligned - count);
Arnaldo Carvalho de Melof92cb242010-01-04 16:19:28 -0200163
164 return err;
165}
166
Kan Liang2bb00d22015-09-01 09:58:12 -0400167#define string_size(str) \
168 (PERF_ALIGN((strlen(str) + 1), NAME_ALIGN) + sizeof(u32))
169
David Carrillo-Cisneros2ff53652017-07-17 21:25:36 -0700170/* Return: 0 if succeded, -ERR if failed. */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700171static int do_write_string(struct feat_fd *ff, const char *str)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200172{
173 u32 len, olen;
174 int ret;
175
176 olen = strlen(str) + 1;
Irina Tirdea9ac3e482012-09-11 01:15:01 +0300177 len = PERF_ALIGN(olen, NAME_ALIGN);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200178
179 /* write len, incl. \0 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700180 ret = do_write(ff, &len, sizeof(len));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200181 if (ret < 0)
182 return ret;
183
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700184 return write_padded(ff, str, olen, len);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200185}
186
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700187static int __do_read_fd(struct feat_fd *ff, void *addr, ssize_t size)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700188{
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700189 ssize_t ret = readn(ff->fd, addr, size);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700190
191 if (ret != size)
192 return ret < 0 ? (int)ret : -1;
193 return 0;
194}
195
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700196static int __do_read_buf(struct feat_fd *ff, void *addr, ssize_t size)
197{
198 if (size > (ssize_t)ff->size - ff->offset)
199 return -1;
200
201 memcpy(addr, ff->buf + ff->offset, size);
202 ff->offset += size;
203
204 return 0;
205
206}
207
208static int __do_read(struct feat_fd *ff, void *addr, ssize_t size)
209{
210 if (!ff->buf)
211 return __do_read_fd(ff, addr, size);
212 return __do_read_buf(ff, addr, size);
213}
214
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700215static int do_read_u32(struct feat_fd *ff, u32 *addr)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700216{
217 int ret;
218
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700219 ret = __do_read(ff, addr, sizeof(*addr));
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700220 if (ret)
221 return ret;
222
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700223 if (ff->ph->needs_swap)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700224 *addr = bswap_32(*addr);
225 return 0;
226}
227
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700228static int do_read_u64(struct feat_fd *ff, u64 *addr)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700229{
230 int ret;
231
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700232 ret = __do_read(ff, addr, sizeof(*addr));
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700233 if (ret)
234 return ret;
235
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700236 if (ff->ph->needs_swap)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700237 *addr = bswap_64(*addr);
238 return 0;
239}
240
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700241static char *do_read_string(struct feat_fd *ff)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200242{
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200243 u32 len;
244 char *buf;
245
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700246 if (do_read_u32(ff, &len))
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200247 return NULL;
248
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200249 buf = malloc(len);
250 if (!buf)
251 return NULL;
252
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700253 if (!__do_read(ff, buf, len)) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200254 /*
255 * strings are padded by zeroes
256 * thus the actual strlen of buf
257 * may be less than len
258 */
259 return buf;
260 }
261
262 free(buf);
263 return NULL;
264}
265
Jiri Olsae2091ce2018-03-07 16:50:08 +0100266/* Return: 0 if succeded, -ERR if failed. */
267static int do_read_bitmap(struct feat_fd *ff, unsigned long **pset, u64 *psize)
268{
269 unsigned long *set;
270 u64 size, *p;
271 int i, ret;
272
273 ret = do_read_u64(ff, &size);
274 if (ret)
275 return ret;
276
277 set = bitmap_alloc(size);
278 if (!set)
279 return -ENOMEM;
280
Jiri Olsae2091ce2018-03-07 16:50:08 +0100281 p = (u64 *) set;
282
283 for (i = 0; (u64) i < BITS_TO_U64(size); i++) {
284 ret = do_read_u64(ff, p + i);
285 if (ret < 0) {
286 free(set);
287 return ret;
288 }
289 }
290
291 *pset = set;
292 *psize = size;
293 return 0;
294}
295
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700296static int write_tracing_data(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200297 struct evlist *evlist)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200298{
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700299 if (WARN(ff->buf, "Error: calling %s in pipe-mode.\n", __func__))
300 return -1;
301
Jiri Olsace9036a2019-07-21 13:24:23 +0200302 return read_tracing_data(ff->fd, &evlist->core.entries);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200303}
304
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700305static int write_build_id(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200306 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200307{
308 struct perf_session *session;
309 int err;
310
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700311 session = container_of(ff->ph, struct perf_session, header);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200312
Robert Richtere20960c2011-12-07 10:02:55 +0100313 if (!perf_session__read_build_ids(session, true))
314 return -1;
315
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700316 if (WARN(ff->buf, "Error: calling %s in pipe-mode.\n", __func__))
317 return -1;
318
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700319 err = perf_session__write_buildid_table(session, ff);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200320 if (err < 0) {
321 pr_debug("failed to write buildid table\n");
322 return err;
323 }
Namhyung Kim73c5d222014-11-07 22:57:56 +0900324 perf_session__cache_build_ids(session);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200325
326 return 0;
327}
328
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700329static int write_hostname(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200330 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200331{
332 struct utsname uts;
333 int ret;
334
335 ret = uname(&uts);
336 if (ret < 0)
337 return -1;
338
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700339 return do_write_string(ff, uts.nodename);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200340}
341
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700342static int write_osrelease(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200343 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200344{
345 struct utsname uts;
346 int ret;
347
348 ret = uname(&uts);
349 if (ret < 0)
350 return -1;
351
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700352 return do_write_string(ff, uts.release);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200353}
354
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700355static int write_arch(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200356 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200357{
358 struct utsname uts;
359 int ret;
360
361 ret = uname(&uts);
362 if (ret < 0)
363 return -1;
364
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700365 return do_write_string(ff, uts.machine);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200366}
367
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700368static int write_version(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200369 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200370{
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700371 return do_write_string(ff, perf_version_string);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200372}
373
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700374static int __write_cpudesc(struct feat_fd *ff, const char *cpuinfo_proc)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200375{
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200376 FILE *file;
377 char *buf = NULL;
378 char *s, *p;
Wang Nan493c3032014-10-24 09:45:26 +0800379 const char *search = cpuinfo_proc;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200380 size_t len = 0;
381 int ret = -1;
382
383 if (!search)
384 return -1;
385
386 file = fopen("/proc/cpuinfo", "r");
387 if (!file)
388 return -1;
389
390 while (getline(&buf, &len, file) > 0) {
391 ret = strncmp(buf, search, strlen(search));
392 if (!ret)
393 break;
394 }
395
Wang Naned307752014-10-16 11:08:29 +0800396 if (ret) {
397 ret = -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200398 goto done;
Wang Naned307752014-10-16 11:08:29 +0800399 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200400
401 s = buf;
402
403 p = strchr(buf, ':');
404 if (p && *(p+1) == ' ' && *(p+2))
405 s = p + 2;
406 p = strchr(s, '\n');
407 if (p)
408 *p = '\0';
409
410 /* squash extra space characters (branding string) */
411 p = s;
412 while (*p) {
413 if (isspace(*p)) {
414 char *r = p + 1;
Arnaldo Carvalho de Melofc6a1722019-06-25 21:33:14 -0300415 char *q = skip_spaces(r);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200416 *p = ' ';
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200417 if (q != (p+1))
418 while ((*r++ = *q++));
419 }
420 p++;
421 }
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700422 ret = do_write_string(ff, s);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200423done:
424 free(buf);
425 fclose(file);
426 return ret;
427}
428
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700429static int write_cpudesc(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200430 struct evlist *evlist __maybe_unused)
Wang Nan493c3032014-10-24 09:45:26 +0800431{
Arnaldo Carvalho de Meloa7749402019-08-29 14:40:28 -0300432#if defined(__powerpc__) || defined(__hppa__) || defined(__sparc__)
433#define CPUINFO_PROC { "cpu", }
434#elif defined(__s390__)
435#define CPUINFO_PROC { "vendor_id", }
436#elif defined(__sh__)
437#define CPUINFO_PROC { "cpu type", }
438#elif defined(__alpha__) || defined(__mips__)
439#define CPUINFO_PROC { "cpu model", }
440#elif defined(__arm__)
441#define CPUINFO_PROC { "model name", "Processor", }
442#elif defined(__arc__)
443#define CPUINFO_PROC { "Processor", }
444#elif defined(__xtensa__)
445#define CPUINFO_PROC { "core ID", }
446#else
447#define CPUINFO_PROC { "model name", }
448#endif
Wang Nan493c3032014-10-24 09:45:26 +0800449 const char *cpuinfo_procs[] = CPUINFO_PROC;
Arnaldo Carvalho de Meloa7749402019-08-29 14:40:28 -0300450#undef CPUINFO_PROC
Wang Nan493c3032014-10-24 09:45:26 +0800451 unsigned int i;
452
453 for (i = 0; i < ARRAY_SIZE(cpuinfo_procs); i++) {
454 int ret;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700455 ret = __write_cpudesc(ff, cpuinfo_procs[i]);
Wang Nan493c3032014-10-24 09:45:26 +0800456 if (ret >= 0)
457 return ret;
458 }
459 return -1;
460}
461
462
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700463static int write_nrcpus(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200464 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200465{
466 long nr;
467 u32 nrc, nra;
468 int ret;
469
Jan Stancekda8a58b2017-02-17 12:10:26 +0100470 nrc = cpu__max_present_cpu();
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200471
472 nr = sysconf(_SC_NPROCESSORS_ONLN);
473 if (nr < 0)
474 return -1;
475
476 nra = (u32)(nr & UINT_MAX);
477
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700478 ret = do_write(ff, &nrc, sizeof(nrc));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200479 if (ret < 0)
480 return ret;
481
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700482 return do_write(ff, &nra, sizeof(nra));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200483}
484
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700485static int write_event_desc(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200486 struct evlist *evlist)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200487{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200488 struct evsel *evsel;
Namhyung Kim74ba9e12012-09-05 14:02:47 +0900489 u32 nre, nri, sz;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200490 int ret;
491
Jiri Olsa6484d2f2019-07-21 13:24:28 +0200492 nre = evlist->core.nr_entries;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200493
494 /*
495 * write number of events
496 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700497 ret = do_write(ff, &nre, sizeof(nre));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200498 if (ret < 0)
499 return ret;
500
501 /*
502 * size of perf_event_attr struct
503 */
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200504 sz = (u32)sizeof(evsel->core.attr);
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700505 ret = do_write(ff, &sz, sizeof(sz));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200506 if (ret < 0)
507 return ret;
508
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300509 evlist__for_each_entry(evlist, evsel) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200510 ret = do_write(ff, &evsel->core.attr, sz);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200511 if (ret < 0)
512 return ret;
513 /*
514 * write number of unique id per event
515 * there is one id per instance of an event
516 *
517 * copy into an nri to be independent of the
518 * type of ids,
519 */
Jiri Olsae7eb9002019-09-02 22:15:47 +0200520 nri = evsel->core.ids;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700521 ret = do_write(ff, &nri, sizeof(nri));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200522 if (ret < 0)
523 return ret;
524
525 /*
526 * write event string as passed on cmdline
527 */
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300528 ret = do_write_string(ff, evsel__name(evsel));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200529 if (ret < 0)
530 return ret;
531 /*
532 * write unique ids for this event
533 */
Jiri Olsae7eb9002019-09-02 22:15:47 +0200534 ret = do_write(ff, evsel->core.id, evsel->core.ids * sizeof(u64));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200535 if (ret < 0)
536 return ret;
537 }
538 return 0;
539}
540
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700541static int write_cmdline(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200542 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200543{
Andi Kleen94816ad2019-02-24 07:37:19 -0800544 char pbuf[MAXPATHLEN], *buf;
545 int i, ret, n;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200546
Tommi Rantala55f771282017-03-22 15:06:24 +0200547 /* actual path to perf binary */
Andi Kleen94816ad2019-02-24 07:37:19 -0800548 buf = perf_exe(pbuf, MAXPATHLEN);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200549
550 /* account for binary path */
Arnaldo Carvalho de Melob6998692015-09-08 16:58:20 -0300551 n = perf_env.nr_cmdline + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200552
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700553 ret = do_write(ff, &n, sizeof(n));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200554 if (ret < 0)
555 return ret;
556
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700557 ret = do_write_string(ff, buf);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200558 if (ret < 0)
559 return ret;
560
Arnaldo Carvalho de Melob6998692015-09-08 16:58:20 -0300561 for (i = 0 ; i < perf_env.nr_cmdline; i++) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700562 ret = do_write_string(ff, perf_env.cmdline_argv[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200563 if (ret < 0)
564 return ret;
565 }
566 return 0;
567}
568
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200569
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700570static int write_cpu_topology(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200571 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200572{
Jiri Olsa5135d5e2019-02-19 10:58:13 +0100573 struct cpu_topology *tp;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200574 u32 i;
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300575 int ret, j;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200576
Jiri Olsa5135d5e2019-02-19 10:58:13 +0100577 tp = cpu_topology__new();
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200578 if (!tp)
579 return -1;
580
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700581 ret = do_write(ff, &tp->core_sib, sizeof(tp->core_sib));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200582 if (ret < 0)
583 goto done;
584
585 for (i = 0; i < tp->core_sib; i++) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700586 ret = do_write_string(ff, tp->core_siblings[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200587 if (ret < 0)
588 goto done;
589 }
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700590 ret = do_write(ff, &tp->thread_sib, sizeof(tp->thread_sib));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200591 if (ret < 0)
592 goto done;
593
594 for (i = 0; i < tp->thread_sib; i++) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700595 ret = do_write_string(ff, tp->thread_siblings[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200596 if (ret < 0)
597 break;
598 }
Kan Liang2bb00d22015-09-01 09:58:12 -0400599
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300600 ret = perf_env__read_cpu_topology_map(&perf_env);
601 if (ret < 0)
602 goto done;
603
604 for (j = 0; j < perf_env.nr_cpus_avail; j++) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700605 ret = do_write(ff, &perf_env.cpu[j].core_id,
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300606 sizeof(perf_env.cpu[j].core_id));
Kan Liang2bb00d22015-09-01 09:58:12 -0400607 if (ret < 0)
608 return ret;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700609 ret = do_write(ff, &perf_env.cpu[j].socket_id,
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300610 sizeof(perf_env.cpu[j].socket_id));
Kan Liang2bb00d22015-09-01 09:58:12 -0400611 if (ret < 0)
612 return ret;
613 }
Kan Liangacae8b32019-06-04 15:50:41 -0700614
615 if (!tp->die_sib)
616 goto done;
617
618 ret = do_write(ff, &tp->die_sib, sizeof(tp->die_sib));
619 if (ret < 0)
620 goto done;
621
622 for (i = 0; i < tp->die_sib; i++) {
623 ret = do_write_string(ff, tp->die_siblings[i]);
624 if (ret < 0)
625 goto done;
626 }
627
628 for (j = 0; j < perf_env.nr_cpus_avail; j++) {
629 ret = do_write(ff, &perf_env.cpu[j].die_id,
630 sizeof(perf_env.cpu[j].die_id));
631 if (ret < 0)
632 return ret;
633 }
634
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200635done:
Jiri Olsa5135d5e2019-02-19 10:58:13 +0100636 cpu_topology__delete(tp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200637 return ret;
638}
639
640
641
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700642static int write_total_mem(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200643 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200644{
645 char *buf = NULL;
646 FILE *fp;
647 size_t len = 0;
648 int ret = -1, n;
649 uint64_t mem;
650
651 fp = fopen("/proc/meminfo", "r");
652 if (!fp)
653 return -1;
654
655 while (getline(&buf, &len, fp) > 0) {
656 ret = strncmp(buf, "MemTotal:", 9);
657 if (!ret)
658 break;
659 }
660 if (!ret) {
661 n = sscanf(buf, "%*s %"PRIu64, &mem);
662 if (n == 1)
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700663 ret = do_write(ff, &mem, sizeof(mem));
Wang Naned307752014-10-16 11:08:29 +0800664 } else
665 ret = -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200666 free(buf);
667 fclose(fp);
668 return ret;
669}
670
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700671static int write_numa_topology(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200672 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200673{
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100674 struct numa_topology *tp;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200675 int ret = -1;
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100676 u32 i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200677
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100678 tp = numa_topology__new();
679 if (!tp)
680 return -ENOMEM;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200681
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100682 ret = do_write(ff, &tp->nr, sizeof(u32));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200683 if (ret < 0)
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100684 goto err;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200685
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100686 for (i = 0; i < tp->nr; i++) {
687 struct numa_topology_node *n = &tp->nodes[i];
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200688
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100689 ret = do_write(ff, &n->node, sizeof(u32));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200690 if (ret < 0)
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100691 goto err;
692
693 ret = do_write(ff, &n->mem_total, sizeof(u64));
694 if (ret)
695 goto err;
696
697 ret = do_write(ff, &n->mem_free, sizeof(u64));
698 if (ret)
699 goto err;
700
701 ret = do_write_string(ff, n->cpus);
702 if (ret < 0)
703 goto err;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200704 }
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100705
706 ret = 0;
707
708err:
709 numa_topology__delete(tp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200710 return ret;
711}
712
713/*
Robert Richter50a96672012-08-16 21:10:24 +0200714 * File format:
715 *
716 * struct pmu_mappings {
717 * u32 pmu_num;
718 * struct pmu_map {
719 * u32 type;
720 * char name[];
721 * }[pmu_num];
722 * };
723 */
724
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700725static int write_pmu_mappings(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200726 struct evlist *evlist __maybe_unused)
Robert Richter50a96672012-08-16 21:10:24 +0200727{
728 struct perf_pmu *pmu = NULL;
David Carrillo-Cisnerosa02c3952017-07-17 21:25:44 -0700729 u32 pmu_num = 0;
Namhyung Kim5323f602012-12-17 15:38:54 +0900730 int ret;
Robert Richter50a96672012-08-16 21:10:24 +0200731
David Carrillo-Cisnerosa02c3952017-07-17 21:25:44 -0700732 /*
733 * Do a first pass to count number of pmu to avoid lseek so this
734 * works in pipe mode as well.
735 */
736 while ((pmu = perf_pmu__scan(pmu))) {
737 if (!pmu->name)
738 continue;
739 pmu_num++;
740 }
741
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700742 ret = do_write(ff, &pmu_num, sizeof(pmu_num));
Namhyung Kim5323f602012-12-17 15:38:54 +0900743 if (ret < 0)
744 return ret;
Robert Richter50a96672012-08-16 21:10:24 +0200745
746 while ((pmu = perf_pmu__scan(pmu))) {
747 if (!pmu->name)
748 continue;
Namhyung Kim5323f602012-12-17 15:38:54 +0900749
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700750 ret = do_write(ff, &pmu->type, sizeof(pmu->type));
Namhyung Kim5323f602012-12-17 15:38:54 +0900751 if (ret < 0)
752 return ret;
753
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700754 ret = do_write_string(ff, pmu->name);
Namhyung Kim5323f602012-12-17 15:38:54 +0900755 if (ret < 0)
756 return ret;
Robert Richter50a96672012-08-16 21:10:24 +0200757 }
758
Robert Richter50a96672012-08-16 21:10:24 +0200759 return 0;
760}
761
762/*
Namhyung Kima8bb5592013-01-22 18:09:31 +0900763 * File format:
764 *
765 * struct group_descs {
766 * u32 nr_groups;
767 * struct group_desc {
768 * char name[];
769 * u32 leader_idx;
770 * u32 nr_members;
771 * }[nr_groups];
772 * };
773 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700774static int write_group_desc(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200775 struct evlist *evlist)
Namhyung Kima8bb5592013-01-22 18:09:31 +0900776{
777 u32 nr_groups = evlist->nr_groups;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200778 struct evsel *evsel;
Namhyung Kima8bb5592013-01-22 18:09:31 +0900779 int ret;
780
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700781 ret = do_write(ff, &nr_groups, sizeof(nr_groups));
Namhyung Kima8bb5592013-01-22 18:09:31 +0900782 if (ret < 0)
783 return ret;
784
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300785 evlist__for_each_entry(evlist, evsel) {
Arnaldo Carvalho de Meloc754c382020-04-30 10:51:16 -0300786 if (evsel__is_group_leader(evsel) && evsel->core.nr_members > 1) {
Namhyung Kima8bb5592013-01-22 18:09:31 +0900787 const char *name = evsel->group_name ?: "{anon_group}";
788 u32 leader_idx = evsel->idx;
Jiri Olsa5643b1a2019-07-21 13:24:46 +0200789 u32 nr_members = evsel->core.nr_members;
Namhyung Kima8bb5592013-01-22 18:09:31 +0900790
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700791 ret = do_write_string(ff, name);
Namhyung Kima8bb5592013-01-22 18:09:31 +0900792 if (ret < 0)
793 return ret;
794
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700795 ret = do_write(ff, &leader_idx, sizeof(leader_idx));
Namhyung Kima8bb5592013-01-22 18:09:31 +0900796 if (ret < 0)
797 return ret;
798
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700799 ret = do_write(ff, &nr_members, sizeof(nr_members));
Namhyung Kima8bb5592013-01-22 18:09:31 +0900800 if (ret < 0)
801 return ret;
802 }
803 }
804 return 0;
805}
806
807/*
Kan Liangf4a07422018-11-21 08:49:39 -0800808 * Return the CPU id as a raw string.
809 *
810 * Each architecture should provide a more precise id string that
811 * can be use to match the architecture's "mapfile".
812 */
813char * __weak get_cpuid_str(struct perf_pmu *pmu __maybe_unused)
814{
815 return NULL;
816}
817
818/* Return zero when the cpuid from the mapfile.csv matches the
819 * cpuid string generated on this platform.
820 * Otherwise return non-zero.
821 */
822int __weak strcmp_cpuid_str(const char *mapcpuid, const char *cpuid)
823{
824 regex_t re;
825 regmatch_t pmatch[1];
826 int match;
827
828 if (regcomp(&re, mapcpuid, REG_EXTENDED) != 0) {
829 /* Warn unable to generate match particular string. */
830 pr_info("Invalid regular expression %s\n", mapcpuid);
831 return 1;
832 }
833
834 match = !regexec(&re, cpuid, 1, pmatch, 0);
835 regfree(&re);
836 if (match) {
837 size_t match_len = (pmatch[0].rm_eo - pmatch[0].rm_so);
838
839 /* Verify the entire string matched. */
840 if (match_len == strlen(cpuid))
841 return 0;
842 }
843 return 1;
844}
845
846/*
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200847 * default get_cpuid(): nothing gets recorded
Jiada Wang7a759cd2017-04-09 20:02:37 -0700848 * actual implementation must be in arch/$(SRCARCH)/util/header.c
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200849 */
Rui Teng11d8f872016-07-28 10:05:57 +0800850int __weak get_cpuid(char *buffer __maybe_unused, size_t sz __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200851{
Arnaldo Carvalho de Melo05267c72019-12-11 10:09:24 -0300852 return ENOSYS; /* Not implemented */
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200853}
854
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700855static int write_cpuid(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200856 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200857{
858 char buffer[64];
859 int ret;
860
861 ret = get_cpuid(buffer, sizeof(buffer));
Jiri Olsaa9aeb872019-02-13 13:32:43 +0100862 if (ret)
863 return -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200864
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700865 return do_write_string(ff, buffer);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200866}
867
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700868static int write_branch_stack(struct feat_fd *ff __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +0200869 struct evlist *evlist __maybe_unused)
Stephane Eranian330aa672012-03-08 23:47:46 +0100870{
871 return 0;
872}
873
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700874static int write_auxtrace(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200875 struct evlist *evlist __maybe_unused)
Adrian Hunter4025ea42015-04-09 18:53:41 +0300876{
Adrian Hunter99fa2982015-04-30 17:37:25 +0300877 struct perf_session *session;
878 int err;
879
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700880 if (WARN(ff->buf, "Error: calling %s in pipe-mode.\n", __func__))
881 return -1;
882
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700883 session = container_of(ff->ph, struct perf_session, header);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300884
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700885 err = auxtrace_index__write(ff->fd, &session->auxtrace_index);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300886 if (err < 0)
887 pr_err("Failed to write auxtrace index\n");
888 return err;
Adrian Hunter4025ea42015-04-09 18:53:41 +0300889}
890
Alexey Budankovcf790512018-10-09 17:36:24 +0300891static int write_clockid(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200892 struct evlist *evlist __maybe_unused)
Alexey Budankovcf790512018-10-09 17:36:24 +0300893{
894 return do_write(ff, &ff->ph->env.clockid_res_ns,
895 sizeof(ff->ph->env.clockid_res_ns));
896}
897
Jiri Olsa258031c2019-03-08 14:47:39 +0100898static int write_dir_format(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200899 struct evlist *evlist __maybe_unused)
Jiri Olsa258031c2019-03-08 14:47:39 +0100900{
901 struct perf_session *session;
902 struct perf_data *data;
903
904 session = container_of(ff->ph, struct perf_session, header);
905 data = session->data;
906
907 if (WARN_ON(!perf_data__is_dir(data)))
908 return -1;
909
910 return do_write(ff, &data->dir.version, sizeof(data->dir.version));
911}
912
Song Liu606f9722019-03-11 22:30:43 -0700913#ifdef HAVE_LIBBPF_SUPPORT
914static int write_bpf_prog_info(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200915 struct evlist *evlist __maybe_unused)
Song Liu606f9722019-03-11 22:30:43 -0700916{
917 struct perf_env *env = &ff->ph->env;
918 struct rb_root *root;
919 struct rb_node *next;
920 int ret;
921
922 down_read(&env->bpf_progs.lock);
923
924 ret = do_write(ff, &env->bpf_progs.infos_cnt,
925 sizeof(env->bpf_progs.infos_cnt));
926 if (ret < 0)
927 goto out;
928
929 root = &env->bpf_progs.infos;
930 next = rb_first(root);
931 while (next) {
932 struct bpf_prog_info_node *node;
933 size_t len;
934
935 node = rb_entry(next, struct bpf_prog_info_node, rb_node);
936 next = rb_next(&node->rb_node);
937 len = sizeof(struct bpf_prog_info_linear) +
938 node->info_linear->data_len;
939
940 /* before writing to file, translate address to offset */
941 bpf_program__bpil_addr_to_offs(node->info_linear);
942 ret = do_write(ff, node->info_linear, len);
943 /*
944 * translate back to address even when do_write() fails,
945 * so that this function never changes the data.
946 */
947 bpf_program__bpil_offs_to_addr(node->info_linear);
948 if (ret < 0)
949 goto out;
950 }
951out:
952 up_read(&env->bpf_progs.lock);
953 return ret;
954}
955#else // HAVE_LIBBPF_SUPPORT
956static int write_bpf_prog_info(struct feat_fd *ff __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +0200957 struct evlist *evlist __maybe_unused)
Song Liu606f9722019-03-11 22:30:43 -0700958{
959 return 0;
960}
961#endif // HAVE_LIBBPF_SUPPORT
962
Song Liua70a112312019-03-11 22:30:45 -0700963static int write_bpf_btf(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200964 struct evlist *evlist __maybe_unused)
Song Liua70a112312019-03-11 22:30:45 -0700965{
966 struct perf_env *env = &ff->ph->env;
967 struct rb_root *root;
968 struct rb_node *next;
969 int ret;
970
971 down_read(&env->bpf_progs.lock);
972
973 ret = do_write(ff, &env->bpf_progs.btfs_cnt,
974 sizeof(env->bpf_progs.btfs_cnt));
975
976 if (ret < 0)
977 goto out;
978
979 root = &env->bpf_progs.btfs;
980 next = rb_first(root);
981 while (next) {
982 struct btf_node *node;
983
984 node = rb_entry(next, struct btf_node, rb_node);
985 next = rb_next(&node->rb_node);
986 ret = do_write(ff, &node->id,
987 sizeof(u32) * 2 + node->data_size);
988 if (ret < 0)
989 goto out;
990 }
991out:
992 up_read(&env->bpf_progs.lock);
993 return ret;
994}
995
Jiri Olsa720e98b2016-02-16 16:01:43 +0100996static int cpu_cache_level__sort(const void *a, const void *b)
997{
998 struct cpu_cache_level *cache_a = (struct cpu_cache_level *)a;
999 struct cpu_cache_level *cache_b = (struct cpu_cache_level *)b;
1000
1001 return cache_a->level - cache_b->level;
1002}
1003
1004static bool cpu_cache_level__cmp(struct cpu_cache_level *a, struct cpu_cache_level *b)
1005{
1006 if (a->level != b->level)
1007 return false;
1008
1009 if (a->line_size != b->line_size)
1010 return false;
1011
1012 if (a->sets != b->sets)
1013 return false;
1014
1015 if (a->ways != b->ways)
1016 return false;
1017
1018 if (strcmp(a->type, b->type))
1019 return false;
1020
1021 if (strcmp(a->size, b->size))
1022 return false;
1023
1024 if (strcmp(a->map, b->map))
1025 return false;
1026
1027 return true;
1028}
1029
1030static int cpu_cache_level__read(struct cpu_cache_level *cache, u32 cpu, u16 level)
1031{
1032 char path[PATH_MAX], file[PATH_MAX];
1033 struct stat st;
1034 size_t len;
1035
1036 scnprintf(path, PATH_MAX, "devices/system/cpu/cpu%d/cache/index%d/", cpu, level);
1037 scnprintf(file, PATH_MAX, "%s/%s", sysfs__mountpoint(), path);
1038
1039 if (stat(file, &st))
1040 return 1;
1041
1042 scnprintf(file, PATH_MAX, "%s/level", path);
1043 if (sysfs__read_int(file, (int *) &cache->level))
1044 return -1;
1045
1046 scnprintf(file, PATH_MAX, "%s/coherency_line_size", path);
1047 if (sysfs__read_int(file, (int *) &cache->line_size))
1048 return -1;
1049
1050 scnprintf(file, PATH_MAX, "%s/number_of_sets", path);
1051 if (sysfs__read_int(file, (int *) &cache->sets))
1052 return -1;
1053
1054 scnprintf(file, PATH_MAX, "%s/ways_of_associativity", path);
1055 if (sysfs__read_int(file, (int *) &cache->ways))
1056 return -1;
1057
1058 scnprintf(file, PATH_MAX, "%s/type", path);
1059 if (sysfs__read_str(file, &cache->type, &len))
1060 return -1;
1061
1062 cache->type[len] = 0;
Arnaldo Carvalho de Melo13c230a2019-06-26 12:13:13 -03001063 cache->type = strim(cache->type);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001064
1065 scnprintf(file, PATH_MAX, "%s/size", path);
1066 if (sysfs__read_str(file, &cache->size, &len)) {
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03001067 zfree(&cache->type);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001068 return -1;
1069 }
1070
1071 cache->size[len] = 0;
Arnaldo Carvalho de Melo13c230a2019-06-26 12:13:13 -03001072 cache->size = strim(cache->size);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001073
1074 scnprintf(file, PATH_MAX, "%s/shared_cpu_list", path);
1075 if (sysfs__read_str(file, &cache->map, &len)) {
Jiri Olsa02162342019-09-12 12:52:35 +02001076 zfree(&cache->size);
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03001077 zfree(&cache->type);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001078 return -1;
1079 }
1080
1081 cache->map[len] = 0;
Arnaldo Carvalho de Melo13c230a2019-06-26 12:13:13 -03001082 cache->map = strim(cache->map);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001083 return 0;
1084}
1085
1086static void cpu_cache_level__fprintf(FILE *out, struct cpu_cache_level *c)
1087{
1088 fprintf(out, "L%d %-15s %8s [%s]\n", c->level, c->type, c->size, c->map);
1089}
1090
Michael Petlan28707822019-12-08 17:20:56 +01001091#define MAX_CACHE_LVL 4
1092
1093static int build_caches(struct cpu_cache_level caches[], u32 *cntp)
Jiri Olsa720e98b2016-02-16 16:01:43 +01001094{
1095 u32 i, cnt = 0;
Jiri Olsa720e98b2016-02-16 16:01:43 +01001096 u32 nr, cpu;
1097 u16 level;
1098
Michael Petlan28707822019-12-08 17:20:56 +01001099 nr = cpu__max_cpu();
Jiri Olsa720e98b2016-02-16 16:01:43 +01001100
1101 for (cpu = 0; cpu < nr; cpu++) {
Michael Petlan28707822019-12-08 17:20:56 +01001102 for (level = 0; level < MAX_CACHE_LVL; level++) {
Jiri Olsa720e98b2016-02-16 16:01:43 +01001103 struct cpu_cache_level c;
1104 int err;
1105
1106 err = cpu_cache_level__read(&c, cpu, level);
1107 if (err < 0)
1108 return err;
1109
1110 if (err == 1)
1111 break;
1112
1113 for (i = 0; i < cnt; i++) {
1114 if (cpu_cache_level__cmp(&c, &caches[i]))
1115 break;
1116 }
1117
1118 if (i == cnt)
1119 caches[cnt++] = c;
1120 else
1121 cpu_cache_level__free(&c);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001122 }
1123 }
Jiri Olsa720e98b2016-02-16 16:01:43 +01001124 *cntp = cnt;
1125 return 0;
1126}
1127
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001128static int write_cache(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +02001129 struct evlist *evlist __maybe_unused)
Jiri Olsa720e98b2016-02-16 16:01:43 +01001130{
Kyle Meyerdc841872019-08-27 16:43:51 -05001131 u32 max_caches = cpu__max_cpu() * MAX_CACHE_LVL;
1132 struct cpu_cache_level caches[max_caches];
Jiri Olsa720e98b2016-02-16 16:01:43 +01001133 u32 cnt = 0, i, version = 1;
1134 int ret;
1135
Michael Petlan28707822019-12-08 17:20:56 +01001136 ret = build_caches(caches, &cnt);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001137 if (ret)
1138 goto out;
1139
1140 qsort(&caches, cnt, sizeof(struct cpu_cache_level), cpu_cache_level__sort);
1141
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001142 ret = do_write(ff, &version, sizeof(u32));
Jiri Olsa720e98b2016-02-16 16:01:43 +01001143 if (ret < 0)
1144 goto out;
1145
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001146 ret = do_write(ff, &cnt, sizeof(u32));
Jiri Olsa720e98b2016-02-16 16:01:43 +01001147 if (ret < 0)
1148 goto out;
1149
1150 for (i = 0; i < cnt; i++) {
1151 struct cpu_cache_level *c = &caches[i];
1152
1153 #define _W(v) \
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001154 ret = do_write(ff, &c->v, sizeof(u32)); \
Jiri Olsa720e98b2016-02-16 16:01:43 +01001155 if (ret < 0) \
1156 goto out;
1157
1158 _W(level)
1159 _W(line_size)
1160 _W(sets)
1161 _W(ways)
1162 #undef _W
1163
1164 #define _W(v) \
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001165 ret = do_write_string(ff, (const char *) c->v); \
Jiri Olsa720e98b2016-02-16 16:01:43 +01001166 if (ret < 0) \
1167 goto out;
1168
1169 _W(type)
1170 _W(size)
1171 _W(map)
1172 #undef _W
1173 }
1174
1175out:
1176 for (i = 0; i < cnt; i++)
1177 cpu_cache_level__free(&caches[i]);
1178 return ret;
1179}
1180
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001181static int write_stat(struct feat_fd *ff __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +02001182 struct evlist *evlist __maybe_unused)
Jiri Olsaffa517a2015-10-25 15:51:43 +01001183{
1184 return 0;
1185}
1186
Jin Yao60115182017-12-08 21:13:41 +08001187static int write_sample_time(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +02001188 struct evlist *evlist)
Jin Yao60115182017-12-08 21:13:41 +08001189{
1190 int ret;
1191
1192 ret = do_write(ff, &evlist->first_sample_time,
1193 sizeof(evlist->first_sample_time));
1194 if (ret < 0)
1195 return ret;
1196
1197 return do_write(ff, &evlist->last_sample_time,
1198 sizeof(evlist->last_sample_time));
1199}
1200
Jiri Olsae2091ce2018-03-07 16:50:08 +01001201
1202static int memory_node__read(struct memory_node *n, unsigned long idx)
1203{
1204 unsigned int phys, size = 0;
1205 char path[PATH_MAX];
1206 struct dirent *ent;
1207 DIR *dir;
1208
1209#define for_each_memory(mem, dir) \
1210 while ((ent = readdir(dir))) \
1211 if (strcmp(ent->d_name, ".") && \
1212 strcmp(ent->d_name, "..") && \
1213 sscanf(ent->d_name, "memory%u", &mem) == 1)
1214
1215 scnprintf(path, PATH_MAX,
1216 "%s/devices/system/node/node%lu",
1217 sysfs__mountpoint(), idx);
1218
1219 dir = opendir(path);
1220 if (!dir) {
1221 pr_warning("failed: cant' open memory sysfs data\n");
1222 return -1;
1223 }
1224
1225 for_each_memory(phys, dir) {
1226 size = max(phys, size);
1227 }
1228
1229 size++;
1230
1231 n->set = bitmap_alloc(size);
1232 if (!n->set) {
1233 closedir(dir);
1234 return -ENOMEM;
1235 }
1236
Jiri Olsae2091ce2018-03-07 16:50:08 +01001237 n->node = idx;
1238 n->size = size;
1239
1240 rewinddir(dir);
1241
1242 for_each_memory(phys, dir) {
1243 set_bit(phys, n->set);
1244 }
1245
1246 closedir(dir);
1247 return 0;
1248}
1249
1250static int memory_node__sort(const void *a, const void *b)
1251{
1252 const struct memory_node *na = a;
1253 const struct memory_node *nb = b;
1254
1255 return na->node - nb->node;
1256}
1257
1258static int build_mem_topology(struct memory_node *nodes, u64 size, u64 *cntp)
1259{
1260 char path[PATH_MAX];
1261 struct dirent *ent;
1262 DIR *dir;
1263 u64 cnt = 0;
1264 int ret = 0;
1265
1266 scnprintf(path, PATH_MAX, "%s/devices/system/node/",
1267 sysfs__mountpoint());
1268
1269 dir = opendir(path);
1270 if (!dir) {
Thomas Richter4f75f1cb2018-04-12 15:32:46 +02001271 pr_debug2("%s: could't read %s, does this arch have topology information?\n",
1272 __func__, path);
Jiri Olsae2091ce2018-03-07 16:50:08 +01001273 return -1;
1274 }
1275
1276 while (!ret && (ent = readdir(dir))) {
1277 unsigned int idx;
1278 int r;
1279
1280 if (!strcmp(ent->d_name, ".") ||
1281 !strcmp(ent->d_name, ".."))
1282 continue;
1283
1284 r = sscanf(ent->d_name, "node%u", &idx);
1285 if (r != 1)
1286 continue;
1287
1288 if (WARN_ONCE(cnt >= size,
Yunfeng Ye60807282019-10-15 16:30:08 +08001289 "failed to write MEM_TOPOLOGY, way too many nodes\n")) {
1290 closedir(dir);
Jiri Olsae2091ce2018-03-07 16:50:08 +01001291 return -1;
Yunfeng Ye60807282019-10-15 16:30:08 +08001292 }
Jiri Olsae2091ce2018-03-07 16:50:08 +01001293
1294 ret = memory_node__read(&nodes[cnt++], idx);
1295 }
1296
1297 *cntp = cnt;
1298 closedir(dir);
1299
1300 if (!ret)
1301 qsort(nodes, cnt, sizeof(nodes[0]), memory_node__sort);
1302
1303 return ret;
1304}
1305
1306#define MAX_MEMORY_NODES 2000
1307
1308/*
1309 * The MEM_TOPOLOGY holds physical memory map for every
1310 * node in system. The format of data is as follows:
1311 *
1312 * 0 - version | for future changes
1313 * 8 - block_size_bytes | /sys/devices/system/memory/block_size_bytes
1314 * 16 - count | number of nodes
1315 *
1316 * For each node we store map of physical indexes for
1317 * each node:
1318 *
1319 * 32 - node id | node index
1320 * 40 - size | size of bitmap
1321 * 48 - bitmap | bitmap of memory indexes that belongs to node
1322 */
1323static int write_mem_topology(struct feat_fd *ff __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +02001324 struct evlist *evlist __maybe_unused)
Jiri Olsae2091ce2018-03-07 16:50:08 +01001325{
1326 static struct memory_node nodes[MAX_MEMORY_NODES];
1327 u64 bsize, version = 1, i, nr;
1328 int ret;
1329
1330 ret = sysfs__read_xll("devices/system/memory/block_size_bytes",
1331 (unsigned long long *) &bsize);
1332 if (ret)
1333 return ret;
1334
1335 ret = build_mem_topology(&nodes[0], MAX_MEMORY_NODES, &nr);
1336 if (ret)
1337 return ret;
1338
1339 ret = do_write(ff, &version, sizeof(version));
1340 if (ret < 0)
1341 goto out;
1342
1343 ret = do_write(ff, &bsize, sizeof(bsize));
1344 if (ret < 0)
1345 goto out;
1346
1347 ret = do_write(ff, &nr, sizeof(nr));
1348 if (ret < 0)
1349 goto out;
1350
1351 for (i = 0; i < nr; i++) {
1352 struct memory_node *n = &nodes[i];
1353
1354 #define _W(v) \
1355 ret = do_write(ff, &n->v, sizeof(n->v)); \
1356 if (ret < 0) \
1357 goto out;
1358
1359 _W(node)
1360 _W(size)
1361
1362 #undef _W
1363
1364 ret = do_write_bitmap(ff, n->set, n->size);
1365 if (ret < 0)
1366 goto out;
1367 }
1368
1369out:
1370 return ret;
1371}
1372
Alexey Budankov42e1fd82019-03-18 20:41:33 +03001373static int write_compressed(struct feat_fd *ff __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +02001374 struct evlist *evlist __maybe_unused)
Alexey Budankov42e1fd82019-03-18 20:41:33 +03001375{
1376 int ret;
1377
1378 ret = do_write(ff, &(ff->ph->env.comp_ver), sizeof(ff->ph->env.comp_ver));
1379 if (ret)
1380 return ret;
1381
1382 ret = do_write(ff, &(ff->ph->env.comp_type), sizeof(ff->ph->env.comp_type));
1383 if (ret)
1384 return ret;
1385
1386 ret = do_write(ff, &(ff->ph->env.comp_level), sizeof(ff->ph->env.comp_level));
1387 if (ret)
1388 return ret;
1389
1390 ret = do_write(ff, &(ff->ph->env.comp_ratio), sizeof(ff->ph->env.comp_ratio));
1391 if (ret)
1392 return ret;
1393
1394 return do_write(ff, &(ff->ph->env.comp_mmap_len), sizeof(ff->ph->env.comp_mmap_len));
1395}
1396
Kan Liang6f91ea22020-03-19 13:25:02 -07001397static int write_cpu_pmu_caps(struct feat_fd *ff,
1398 struct evlist *evlist __maybe_unused)
1399{
1400 struct perf_pmu *cpu_pmu = perf_pmu__find("cpu");
1401 struct perf_pmu_caps *caps = NULL;
1402 int nr_caps;
1403 int ret;
1404
1405 if (!cpu_pmu)
1406 return -ENOENT;
1407
1408 nr_caps = perf_pmu__caps_parse(cpu_pmu);
1409 if (nr_caps < 0)
1410 return nr_caps;
1411
1412 ret = do_write(ff, &nr_caps, sizeof(nr_caps));
1413 if (ret < 0)
1414 return ret;
1415
1416 list_for_each_entry(caps, &cpu_pmu->caps, list) {
1417 ret = do_write_string(ff, caps->name);
1418 if (ret < 0)
1419 return ret;
1420
1421 ret = do_write_string(ff, caps->value);
1422 if (ret < 0)
1423 return ret;
1424 }
1425
1426 return ret;
1427}
1428
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001429static void print_hostname(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001430{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001431 fprintf(fp, "# hostname : %s\n", ff->ph->env.hostname);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001432}
1433
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001434static void print_osrelease(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001435{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001436 fprintf(fp, "# os release : %s\n", ff->ph->env.os_release);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001437}
1438
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001439static void print_arch(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001440{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001441 fprintf(fp, "# arch : %s\n", ff->ph->env.arch);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001442}
1443
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001444static void print_cpudesc(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001445{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001446 fprintf(fp, "# cpudesc : %s\n", ff->ph->env.cpu_desc);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001447}
1448
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001449static void print_nrcpus(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001450{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001451 fprintf(fp, "# nrcpus online : %u\n", ff->ph->env.nr_cpus_online);
1452 fprintf(fp, "# nrcpus avail : %u\n", ff->ph->env.nr_cpus_avail);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001453}
1454
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001455static void print_version(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001456{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001457 fprintf(fp, "# perf version : %s\n", ff->ph->env.version);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001458}
1459
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001460static void print_cmdline(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001461{
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001462 int nr, i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001463
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001464 nr = ff->ph->env.nr_cmdline;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001465
1466 fprintf(fp, "# cmdline : ");
1467
Alexey Budankovf92da712018-06-04 09:50:56 +03001468 for (i = 0; i < nr; i++) {
1469 char *argv_i = strdup(ff->ph->env.cmdline_argv[i]);
1470 if (!argv_i) {
1471 fprintf(fp, "%s ", ff->ph->env.cmdline_argv[i]);
1472 } else {
1473 char *mem = argv_i;
1474 do {
1475 char *quote = strchr(argv_i, '\'');
1476 if (!quote)
1477 break;
1478 *quote++ = '\0';
1479 fprintf(fp, "%s\\\'", argv_i);
1480 argv_i = quote;
1481 } while (1);
1482 fprintf(fp, "%s ", argv_i);
1483 free(mem);
1484 }
1485 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001486 fputc('\n', fp);
1487}
1488
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001489static void print_cpu_topology(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001490{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001491 struct perf_header *ph = ff->ph;
1492 int cpu_nr = ph->env.nr_cpus_avail;
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001493 int nr, i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001494 char *str;
1495
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001496 nr = ph->env.nr_sibling_cores;
1497 str = ph->env.sibling_cores;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001498
1499 for (i = 0; i < nr; i++) {
Kan Liange05a8992019-06-04 15:50:43 -07001500 fprintf(fp, "# sibling sockets : %s\n", str);
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001501 str += strlen(str) + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001502 }
1503
Kan Liangacae8b32019-06-04 15:50:41 -07001504 if (ph->env.nr_sibling_dies) {
1505 nr = ph->env.nr_sibling_dies;
1506 str = ph->env.sibling_dies;
1507
1508 for (i = 0; i < nr; i++) {
1509 fprintf(fp, "# sibling dies : %s\n", str);
1510 str += strlen(str) + 1;
1511 }
1512 }
1513
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001514 nr = ph->env.nr_sibling_threads;
1515 str = ph->env.sibling_threads;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001516
1517 for (i = 0; i < nr; i++) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001518 fprintf(fp, "# sibling threads : %s\n", str);
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001519 str += strlen(str) + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001520 }
Kan Liang2bb00d22015-09-01 09:58:12 -04001521
Kan Liangacae8b32019-06-04 15:50:41 -07001522 if (ph->env.nr_sibling_dies) {
1523 if (ph->env.cpu != NULL) {
1524 for (i = 0; i < cpu_nr; i++)
1525 fprintf(fp, "# CPU %d: Core ID %d, "
1526 "Die ID %d, Socket ID %d\n",
1527 i, ph->env.cpu[i].core_id,
1528 ph->env.cpu[i].die_id,
1529 ph->env.cpu[i].socket_id);
1530 } else
1531 fprintf(fp, "# Core ID, Die ID and Socket ID "
1532 "information is not available\n");
1533 } else {
1534 if (ph->env.cpu != NULL) {
1535 for (i = 0; i < cpu_nr; i++)
1536 fprintf(fp, "# CPU %d: Core ID %d, "
1537 "Socket ID %d\n",
1538 i, ph->env.cpu[i].core_id,
1539 ph->env.cpu[i].socket_id);
1540 } else
1541 fprintf(fp, "# Core ID and Socket ID "
1542 "information is not available\n");
1543 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001544}
1545
Alexey Budankovcf790512018-10-09 17:36:24 +03001546static void print_clockid(struct feat_fd *ff, FILE *fp)
1547{
1548 fprintf(fp, "# clockid frequency: %"PRIu64" MHz\n",
1549 ff->ph->env.clockid_res_ns * 1000);
1550}
1551
Jiri Olsa258031c2019-03-08 14:47:39 +01001552static void print_dir_format(struct feat_fd *ff, FILE *fp)
1553{
1554 struct perf_session *session;
1555 struct perf_data *data;
1556
1557 session = container_of(ff->ph, struct perf_session, header);
1558 data = session->data;
1559
1560 fprintf(fp, "# directory data version : %"PRIu64"\n", data->dir.version);
1561}
1562
Song Liu606f9722019-03-11 22:30:43 -07001563static void print_bpf_prog_info(struct feat_fd *ff, FILE *fp)
1564{
1565 struct perf_env *env = &ff->ph->env;
1566 struct rb_root *root;
1567 struct rb_node *next;
1568
1569 down_read(&env->bpf_progs.lock);
1570
1571 root = &env->bpf_progs.infos;
1572 next = rb_first(root);
1573
1574 while (next) {
1575 struct bpf_prog_info_node *node;
1576
1577 node = rb_entry(next, struct bpf_prog_info_node, rb_node);
1578 next = rb_next(&node->rb_node);
Song Liuf8dfeae2019-03-19 09:54:54 -07001579
1580 bpf_event__print_bpf_prog_info(&node->info_linear->info,
1581 env, fp);
Song Liu606f9722019-03-11 22:30:43 -07001582 }
1583
1584 up_read(&env->bpf_progs.lock);
1585}
1586
Song Liua70a112312019-03-11 22:30:45 -07001587static void print_bpf_btf(struct feat_fd *ff, FILE *fp)
1588{
1589 struct perf_env *env = &ff->ph->env;
1590 struct rb_root *root;
1591 struct rb_node *next;
1592
1593 down_read(&env->bpf_progs.lock);
1594
1595 root = &env->bpf_progs.btfs;
1596 next = rb_first(root);
1597
1598 while (next) {
1599 struct btf_node *node;
1600
1601 node = rb_entry(next, struct btf_node, rb_node);
1602 next = rb_next(&node->rb_node);
1603 fprintf(fp, "# btf info of id %u\n", node->id);
1604 }
1605
1606 up_read(&env->bpf_progs.lock);
1607}
1608
Jiri Olsa32dcd022019-07-21 13:23:51 +02001609static void free_event_desc(struct evsel *events)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001610{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001611 struct evsel *evsel;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001612
1613 if (!events)
1614 return;
1615
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001616 for (evsel = events; evsel->core.attr.size; evsel++) {
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001617 zfree(&evsel->name);
Jiri Olsadeaf3212019-09-02 22:12:26 +02001618 zfree(&evsel->core.id);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001619 }
1620
1621 free(events);
1622}
1623
Kan Liang277ce1e2020-02-28 08:30:02 -08001624static bool perf_attr_check(struct perf_event_attr *attr)
1625{
1626 if (attr->__reserved_1 || attr->__reserved_2 || attr->__reserved_3) {
1627 pr_warning("Reserved bits are set unexpectedly. "
1628 "Please update perf tool.\n");
1629 return false;
1630 }
1631
1632 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1)) {
1633 pr_warning("Unknown sample type (0x%llx) is detected. "
1634 "Please update perf tool.\n",
1635 attr->sample_type);
1636 return false;
1637 }
1638
1639 if (attr->read_format & ~(PERF_FORMAT_MAX-1)) {
1640 pr_warning("Unknown read format (0x%llx) is detected. "
1641 "Please update perf tool.\n",
1642 attr->read_format);
1643 return false;
1644 }
1645
1646 if ((attr->sample_type & PERF_SAMPLE_BRANCH_STACK) &&
1647 (attr->branch_sample_type & ~(PERF_SAMPLE_BRANCH_MAX-1))) {
1648 pr_warning("Unknown branch sample type (0x%llx) is detected. "
1649 "Please update perf tool.\n",
1650 attr->branch_sample_type);
1651
1652 return false;
1653 }
1654
1655 return true;
1656}
1657
Jiri Olsa32dcd022019-07-21 13:23:51 +02001658static struct evsel *read_event_desc(struct feat_fd *ff)
Robert Richter4e1b9c62012-08-16 21:10:22 +02001659{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001660 struct evsel *evsel, *events = NULL;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001661 u64 *id;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001662 void *buf = NULL;
Stephane Eranian62db9062012-02-09 23:21:07 +01001663 u32 nre, sz, nr, i, j;
Stephane Eranian62db9062012-02-09 23:21:07 +01001664 size_t msz;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001665
1666 /* number of events */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001667 if (do_read_u32(ff, &nre))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001668 goto error;
1669
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001670 if (do_read_u32(ff, &sz))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001671 goto error;
1672
Stephane Eranian62db9062012-02-09 23:21:07 +01001673 /* buffer to hold on file attr struct */
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001674 buf = malloc(sz);
1675 if (!buf)
1676 goto error;
1677
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001678 /* the last event terminates with evsel->core.attr.size == 0: */
Robert Richter4e1b9c62012-08-16 21:10:22 +02001679 events = calloc(nre + 1, sizeof(*events));
1680 if (!events)
1681 goto error;
1682
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001683 msz = sizeof(evsel->core.attr);
Jiri Olsa9fafd982012-03-20 19:15:39 +01001684 if (sz < msz)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001685 msz = sz;
1686
Robert Richter4e1b9c62012-08-16 21:10:22 +02001687 for (i = 0, evsel = events; i < nre; evsel++, i++) {
1688 evsel->idx = i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001689
Stephane Eranian62db9062012-02-09 23:21:07 +01001690 /*
1691 * must read entire on-file attr struct to
1692 * sync up with layout.
1693 */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001694 if (__do_read(ff, buf, sz))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001695 goto error;
1696
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001697 if (ff->ph->needs_swap)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001698 perf_event__attr_swap(buf);
1699
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001700 memcpy(&evsel->core.attr, buf, msz);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001701
Kan Liang277ce1e2020-02-28 08:30:02 -08001702 if (!perf_attr_check(&evsel->core.attr))
1703 goto error;
1704
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001705 if (do_read_u32(ff, &nr))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001706 goto error;
1707
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001708 if (ff->ph->needs_swap)
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001709 evsel->needs_swap = true;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001710
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001711 evsel->name = do_read_string(ff);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07001712 if (!evsel->name)
1713 goto error;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001714
1715 if (!nr)
1716 continue;
1717
1718 id = calloc(nr, sizeof(*id));
1719 if (!id)
1720 goto error;
Jiri Olsae7eb9002019-09-02 22:15:47 +02001721 evsel->core.ids = nr;
Jiri Olsadeaf3212019-09-02 22:12:26 +02001722 evsel->core.id = id;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001723
1724 for (j = 0 ; j < nr; j++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001725 if (do_read_u64(ff, id))
Robert Richter4e1b9c62012-08-16 21:10:22 +02001726 goto error;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001727 id++;
1728 }
1729 }
1730out:
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001731 free(buf);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001732 return events;
1733error:
Markus Elfring4cc97612015-06-25 17:12:32 +02001734 free_event_desc(events);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001735 events = NULL;
1736 goto out;
1737}
1738
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001739static int __desc_attr__fprintf(FILE *fp, const char *name, const char *val,
Arnaldo Carvalho de Melo03536312017-06-16 12:18:27 -03001740 void *priv __maybe_unused)
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001741{
1742 return fprintf(fp, ", %s = %s", name, val);
1743}
1744
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001745static void print_event_desc(struct feat_fd *ff, FILE *fp)
Robert Richter4e1b9c62012-08-16 21:10:22 +02001746{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001747 struct evsel *evsel, *events;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001748 u32 j;
1749 u64 *id;
1750
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07001751 if (ff->events)
1752 events = ff->events;
1753 else
1754 events = read_event_desc(ff);
1755
Robert Richter4e1b9c62012-08-16 21:10:22 +02001756 if (!events) {
1757 fprintf(fp, "# event desc: not available or unable to read\n");
1758 return;
1759 }
1760
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001761 for (evsel = events; evsel->core.attr.size; evsel++) {
Robert Richter4e1b9c62012-08-16 21:10:22 +02001762 fprintf(fp, "# event : name = %s, ", evsel->name);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001763
Jiri Olsae7eb9002019-09-02 22:15:47 +02001764 if (evsel->core.ids) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001765 fprintf(fp, ", id = {");
Jiri Olsae7eb9002019-09-02 22:15:47 +02001766 for (j = 0, id = evsel->core.id; j < evsel->core.ids; j++, id++) {
Robert Richter4e1b9c62012-08-16 21:10:22 +02001767 if (j)
1768 fputc(',', fp);
1769 fprintf(fp, " %"PRIu64, *id);
1770 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001771 fprintf(fp, " }");
Robert Richter4e1b9c62012-08-16 21:10:22 +02001772 }
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001773
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001774 perf_event_attr__fprintf(fp, &evsel->core.attr, __desc_attr__fprintf, NULL);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001775
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001776 fputc('\n', fp);
1777 }
Robert Richter4e1b9c62012-08-16 21:10:22 +02001778
1779 free_event_desc(events);
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07001780 ff->events = NULL;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001781}
1782
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001783static void print_total_mem(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001784{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001785 fprintf(fp, "# total memory : %llu kB\n", ff->ph->env.total_mem);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001786}
1787
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001788static void print_numa_topology(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001789{
Jiri Olsac60da222016-07-04 14:16:20 +02001790 int i;
1791 struct numa_node *n;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001792
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001793 for (i = 0; i < ff->ph->env.nr_numa_nodes; i++) {
1794 n = &ff->ph->env.numa_nodes[i];
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001795
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001796 fprintf(fp, "# node%u meminfo : total = %"PRIu64" kB,"
1797 " free = %"PRIu64" kB\n",
Jiri Olsac60da222016-07-04 14:16:20 +02001798 n->node, n->mem_total, n->mem_free);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001799
Jiri Olsac60da222016-07-04 14:16:20 +02001800 fprintf(fp, "# node%u cpu list : ", n->node);
1801 cpu_map__fprintf(n->map, fp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001802 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001803}
1804
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001805static void print_cpuid(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001806{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001807 fprintf(fp, "# cpuid : %s\n", ff->ph->env.cpuid);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001808}
1809
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001810static void print_branch_stack(struct feat_fd *ff __maybe_unused, FILE *fp)
Stephane Eranian330aa672012-03-08 23:47:46 +01001811{
1812 fprintf(fp, "# contains samples with branch stack\n");
1813}
1814
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001815static void print_auxtrace(struct feat_fd *ff __maybe_unused, FILE *fp)
Adrian Hunter4025ea42015-04-09 18:53:41 +03001816{
1817 fprintf(fp, "# contains AUX area data (e.g. instruction trace)\n");
1818}
1819
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001820static void print_stat(struct feat_fd *ff __maybe_unused, FILE *fp)
Jiri Olsaffa517a2015-10-25 15:51:43 +01001821{
1822 fprintf(fp, "# contains stat data\n");
1823}
1824
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001825static void print_cache(struct feat_fd *ff, FILE *fp __maybe_unused)
Jiri Olsa720e98b2016-02-16 16:01:43 +01001826{
1827 int i;
1828
1829 fprintf(fp, "# CPU cache info:\n");
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001830 for (i = 0; i < ff->ph->env.caches_cnt; i++) {
Jiri Olsa720e98b2016-02-16 16:01:43 +01001831 fprintf(fp, "# ");
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001832 cpu_cache_level__fprintf(fp, &ff->ph->env.caches[i]);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001833 }
1834}
1835
Alexey Budankov42e1fd82019-03-18 20:41:33 +03001836static void print_compressed(struct feat_fd *ff, FILE *fp)
1837{
1838 fprintf(fp, "# compressed : %s, level = %d, ratio = %d\n",
1839 ff->ph->env.comp_type == PERF_COMP_ZSTD ? "Zstd" : "Unknown",
1840 ff->ph->env.comp_level, ff->ph->env.comp_ratio);
1841}
1842
Kan Liang6f91ea22020-03-19 13:25:02 -07001843static void print_cpu_pmu_caps(struct feat_fd *ff, FILE *fp)
1844{
1845 const char *delimiter = "# cpu pmu capabilities: ";
1846 u32 nr_caps = ff->ph->env.nr_cpu_pmu_caps;
1847 char *str;
1848
1849 if (!nr_caps) {
1850 fprintf(fp, "# cpu pmu capabilities: not available\n");
1851 return;
1852 }
1853
1854 str = ff->ph->env.cpu_pmu_caps;
1855 while (nr_caps--) {
1856 fprintf(fp, "%s%s", delimiter, str);
1857 delimiter = ", ";
1858 str += strlen(str) + 1;
1859 }
1860
1861 fprintf(fp, "\n");
1862}
1863
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001864static void print_pmu_mappings(struct feat_fd *ff, FILE *fp)
Robert Richter50a96672012-08-16 21:10:24 +02001865{
1866 const char *delimiter = "# pmu mappings: ";
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001867 char *str, *tmp;
Robert Richter50a96672012-08-16 21:10:24 +02001868 u32 pmu_num;
1869 u32 type;
1870
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001871 pmu_num = ff->ph->env.nr_pmu_mappings;
Robert Richter50a96672012-08-16 21:10:24 +02001872 if (!pmu_num) {
1873 fprintf(fp, "# pmu mappings: not available\n");
1874 return;
1875 }
1876
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001877 str = ff->ph->env.pmu_mappings;
Namhyung Kimbe4a2de2012-09-05 14:02:49 +09001878
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001879 while (pmu_num) {
1880 type = strtoul(str, &tmp, 0);
1881 if (*tmp != ':')
1882 goto error;
1883
1884 str = tmp + 1;
1885 fprintf(fp, "%s%s = %" PRIu32, delimiter, str, type);
1886
Robert Richter50a96672012-08-16 21:10:24 +02001887 delimiter = ", ";
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001888 str += strlen(str) + 1;
1889 pmu_num--;
Robert Richter50a96672012-08-16 21:10:24 +02001890 }
1891
1892 fprintf(fp, "\n");
1893
1894 if (!pmu_num)
1895 return;
1896error:
1897 fprintf(fp, "# pmu mappings: unable to read\n");
1898}
1899
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001900static void print_group_desc(struct feat_fd *ff, FILE *fp)
Namhyung Kima8bb5592013-01-22 18:09:31 +09001901{
1902 struct perf_session *session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02001903 struct evsel *evsel;
Namhyung Kima8bb5592013-01-22 18:09:31 +09001904 u32 nr = 0;
1905
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001906 session = container_of(ff->ph, struct perf_session, header);
Namhyung Kima8bb5592013-01-22 18:09:31 +09001907
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001908 evlist__for_each_entry(session->evlist, evsel) {
Arnaldo Carvalho de Meloc754c382020-04-30 10:51:16 -03001909 if (evsel__is_group_leader(evsel) && evsel->core.nr_members > 1) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03001910 fprintf(fp, "# group: %s{%s", evsel->group_name ?: "", evsel__name(evsel));
Namhyung Kima8bb5592013-01-22 18:09:31 +09001911
Jiri Olsa5643b1a2019-07-21 13:24:46 +02001912 nr = evsel->core.nr_members - 1;
Namhyung Kima8bb5592013-01-22 18:09:31 +09001913 } else if (nr) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03001914 fprintf(fp, ",%s", evsel__name(evsel));
Namhyung Kima8bb5592013-01-22 18:09:31 +09001915
1916 if (--nr == 0)
1917 fprintf(fp, "}\n");
1918 }
1919 }
1920}
1921
Jin Yao60115182017-12-08 21:13:41 +08001922static void print_sample_time(struct feat_fd *ff, FILE *fp)
1923{
1924 struct perf_session *session;
1925 char time_buf[32];
1926 double d;
1927
1928 session = container_of(ff->ph, struct perf_session, header);
1929
1930 timestamp__scnprintf_usec(session->evlist->first_sample_time,
1931 time_buf, sizeof(time_buf));
1932 fprintf(fp, "# time of first sample : %s\n", time_buf);
1933
1934 timestamp__scnprintf_usec(session->evlist->last_sample_time,
1935 time_buf, sizeof(time_buf));
1936 fprintf(fp, "# time of last sample : %s\n", time_buf);
1937
1938 d = (double)(session->evlist->last_sample_time -
1939 session->evlist->first_sample_time) / NSEC_PER_MSEC;
1940
1941 fprintf(fp, "# sample duration : %10.3f ms\n", d);
1942}
1943
Jiri Olsae2091ce2018-03-07 16:50:08 +01001944static void memory_node__fprintf(struct memory_node *n,
1945 unsigned long long bsize, FILE *fp)
1946{
1947 char buf_map[100], buf_size[50];
1948 unsigned long long size;
1949
1950 size = bsize * bitmap_weight(n->set, n->size);
1951 unit_number__scnprintf(buf_size, 50, size);
1952
1953 bitmap_scnprintf(n->set, n->size, buf_map, 100);
1954 fprintf(fp, "# %3" PRIu64 " [%s]: %s\n", n->node, buf_size, buf_map);
1955}
1956
1957static void print_mem_topology(struct feat_fd *ff, FILE *fp)
1958{
1959 struct memory_node *nodes;
1960 int i, nr;
1961
1962 nodes = ff->ph->env.memory_nodes;
1963 nr = ff->ph->env.nr_memory_nodes;
1964
1965 fprintf(fp, "# memory nodes (nr %d, block size 0x%llx):\n",
1966 nr, ff->ph->env.memory_bsize);
1967
1968 for (i = 0; i < nr; i++) {
1969 memory_node__fprintf(&nodes[i], ff->ph->env.memory_bsize, fp);
1970 }
1971}
1972
Jiri Olsa72932372019-08-28 15:57:16 +02001973static int __event_process_build_id(struct perf_record_header_build_id *bev,
Robert Richter08d95bd2012-02-10 15:41:55 +01001974 char *filename,
1975 struct perf_session *session)
1976{
1977 int err = -1;
Robert Richter08d95bd2012-02-10 15:41:55 +01001978 struct machine *machine;
Wang Nan1f121b02015-06-03 08:52:21 +00001979 u16 cpumode;
Robert Richter08d95bd2012-02-10 15:41:55 +01001980 struct dso *dso;
1981 enum dso_kernel_type dso_type;
1982
1983 machine = perf_session__findnew_machine(session, bev->pid);
1984 if (!machine)
1985 goto out;
1986
Wang Nan1f121b02015-06-03 08:52:21 +00001987 cpumode = bev->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
Robert Richter08d95bd2012-02-10 15:41:55 +01001988
Wang Nan1f121b02015-06-03 08:52:21 +00001989 switch (cpumode) {
Robert Richter08d95bd2012-02-10 15:41:55 +01001990 case PERF_RECORD_MISC_KERNEL:
1991 dso_type = DSO_TYPE_KERNEL;
Robert Richter08d95bd2012-02-10 15:41:55 +01001992 break;
1993 case PERF_RECORD_MISC_GUEST_KERNEL:
1994 dso_type = DSO_TYPE_GUEST_KERNEL;
Robert Richter08d95bd2012-02-10 15:41:55 +01001995 break;
1996 case PERF_RECORD_MISC_USER:
1997 case PERF_RECORD_MISC_GUEST_USER:
1998 dso_type = DSO_TYPE_USER;
Robert Richter08d95bd2012-02-10 15:41:55 +01001999 break;
2000 default:
2001 goto out;
2002 }
2003
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03002004 dso = machine__findnew_dso(machine, filename);
Robert Richter08d95bd2012-02-10 15:41:55 +01002005 if (dso != NULL) {
Masami Hiramatsub5d8bbe2016-05-11 22:51:59 +09002006 char sbuild_id[SBUILD_ID_SIZE];
Robert Richter08d95bd2012-02-10 15:41:55 +01002007
2008 dso__set_build_id(dso, &bev->build_id);
2009
Namhyung Kim1deec1b2017-05-31 21:01:03 +09002010 if (dso_type != DSO_TYPE_USER) {
2011 struct kmod_path m = { .name = NULL, };
2012
2013 if (!kmod_path__parse_name(&m, filename) && m.kmod)
Namhyung Kim6b335e82017-05-31 21:01:04 +09002014 dso__set_module_info(dso, &m, machine);
Namhyung Kim1deec1b2017-05-31 21:01:03 +09002015 else
2016 dso->kernel = dso_type;
2017
2018 free(m.name);
2019 }
Robert Richter08d95bd2012-02-10 15:41:55 +01002020
2021 build_id__sprintf(dso->build_id, sizeof(dso->build_id),
2022 sbuild_id);
2023 pr_debug("build id event received for %s: %s\n",
2024 dso->long_name, sbuild_id);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03002025 dso__put(dso);
Robert Richter08d95bd2012-02-10 15:41:55 +01002026 }
2027
2028 err = 0;
2029out:
2030 return err;
2031}
2032
2033static int perf_header__read_build_ids_abi_quirk(struct perf_header *header,
2034 int input, u64 offset, u64 size)
2035{
2036 struct perf_session *session = container_of(header, struct perf_session, header);
2037 struct {
2038 struct perf_event_header header;
Irina Tirdea9ac3e482012-09-11 01:15:01 +03002039 u8 build_id[PERF_ALIGN(BUILD_ID_SIZE, sizeof(u64))];
Robert Richter08d95bd2012-02-10 15:41:55 +01002040 char filename[0];
2041 } old_bev;
Jiri Olsa72932372019-08-28 15:57:16 +02002042 struct perf_record_header_build_id bev;
Robert Richter08d95bd2012-02-10 15:41:55 +01002043 char filename[PATH_MAX];
2044 u64 limit = offset + size;
2045
2046 while (offset < limit) {
2047 ssize_t len;
2048
Namhyung Kim5323f602012-12-17 15:38:54 +09002049 if (readn(input, &old_bev, sizeof(old_bev)) != sizeof(old_bev))
Robert Richter08d95bd2012-02-10 15:41:55 +01002050 return -1;
2051
2052 if (header->needs_swap)
2053 perf_event_header__bswap(&old_bev.header);
2054
2055 len = old_bev.header.size - sizeof(old_bev);
Namhyung Kim5323f602012-12-17 15:38:54 +09002056 if (readn(input, filename, len) != len)
Robert Richter08d95bd2012-02-10 15:41:55 +01002057 return -1;
2058
2059 bev.header = old_bev.header;
2060
2061 /*
2062 * As the pid is the missing value, we need to fill
2063 * it properly. The header.misc value give us nice hint.
2064 */
2065 bev.pid = HOST_KERNEL_ID;
2066 if (bev.header.misc == PERF_RECORD_MISC_GUEST_USER ||
2067 bev.header.misc == PERF_RECORD_MISC_GUEST_KERNEL)
2068 bev.pid = DEFAULT_GUEST_KERNEL_ID;
2069
2070 memcpy(bev.build_id, old_bev.build_id, sizeof(bev.build_id));
2071 __event_process_build_id(&bev, filename, session);
2072
2073 offset += bev.header.size;
2074 }
2075
2076 return 0;
2077}
2078
2079static int perf_header__read_build_ids(struct perf_header *header,
2080 int input, u64 offset, u64 size)
2081{
2082 struct perf_session *session = container_of(header, struct perf_session, header);
Jiri Olsa72932372019-08-28 15:57:16 +02002083 struct perf_record_header_build_id bev;
Robert Richter08d95bd2012-02-10 15:41:55 +01002084 char filename[PATH_MAX];
2085 u64 limit = offset + size, orig_offset = offset;
2086 int err = -1;
2087
2088 while (offset < limit) {
2089 ssize_t len;
2090
Namhyung Kim5323f602012-12-17 15:38:54 +09002091 if (readn(input, &bev, sizeof(bev)) != sizeof(bev))
Robert Richter08d95bd2012-02-10 15:41:55 +01002092 goto out;
2093
2094 if (header->needs_swap)
2095 perf_event_header__bswap(&bev.header);
2096
2097 len = bev.header.size - sizeof(bev);
Namhyung Kim5323f602012-12-17 15:38:54 +09002098 if (readn(input, filename, len) != len)
Robert Richter08d95bd2012-02-10 15:41:55 +01002099 goto out;
2100 /*
2101 * The a1645ce1 changeset:
2102 *
2103 * "perf: 'perf kvm' tool for monitoring guest performance from host"
2104 *
Jiri Olsa72932372019-08-28 15:57:16 +02002105 * Added a field to struct perf_record_header_build_id that broke the file
Robert Richter08d95bd2012-02-10 15:41:55 +01002106 * format.
2107 *
2108 * Since the kernel build-id is the first entry, process the
2109 * table using the old format if the well known
2110 * '[kernel.kallsyms]' string for the kernel build-id has the
2111 * first 4 characters chopped off (where the pid_t sits).
2112 */
2113 if (memcmp(filename, "nel.kallsyms]", 13) == 0) {
2114 if (lseek(input, orig_offset, SEEK_SET) == (off_t)-1)
2115 return -1;
2116 return perf_header__read_build_ids_abi_quirk(header, input, offset, size);
2117 }
2118
2119 __event_process_build_id(&bev, filename, session);
2120
2121 offset += bev.header.size;
2122 }
2123 err = 0;
2124out:
2125 return err;
2126}
2127
David Carrillo-Cisnerosdfaa1582017-07-17 21:25:35 -07002128/* Macro for features that simply need to read and store a string. */
2129#define FEAT_PROCESS_STR_FUN(__feat, __feat_env) \
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002130static int process_##__feat(struct feat_fd *ff, void *data __maybe_unused) \
David Carrillo-Cisnerosdfaa1582017-07-17 21:25:35 -07002131{\
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002132 ff->ph->env.__feat_env = do_read_string(ff); \
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002133 return ff->ph->env.__feat_env ? 0 : -ENOMEM; \
David Carrillo-Cisnerosdfaa1582017-07-17 21:25:35 -07002134}
2135
2136FEAT_PROCESS_STR_FUN(hostname, hostname);
2137FEAT_PROCESS_STR_FUN(osrelease, os_release);
2138FEAT_PROCESS_STR_FUN(version, version);
2139FEAT_PROCESS_STR_FUN(arch, arch);
2140FEAT_PROCESS_STR_FUN(cpudesc, cpu_desc);
2141FEAT_PROCESS_STR_FUN(cpuid, cpuid);
2142
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002143static int process_tracing_data(struct feat_fd *ff, void *data)
Robert Richterf1c67db2012-02-10 15:41:56 +01002144{
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002145 ssize_t ret = trace_report(ff->fd, data, false);
2146
Namhyung Kim3dce2ce2013-03-21 16:18:48 +09002147 return ret < 0 ? -1 : 0;
Robert Richterf1c67db2012-02-10 15:41:56 +01002148}
2149
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002150static int process_build_id(struct feat_fd *ff, void *data __maybe_unused)
Robert Richterf1c67db2012-02-10 15:41:56 +01002151{
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002152 if (perf_header__read_build_ids(ff->ph, ff->fd, ff->offset, ff->size))
Robert Richterf1c67db2012-02-10 15:41:56 +01002153 pr_debug("Failed to read buildids, continuing...\n");
2154 return 0;
2155}
2156
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002157static int process_nrcpus(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002158{
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002159 int ret;
2160 u32 nr_cpus_avail, nr_cpus_online;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002161
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002162 ret = do_read_u32(ff, &nr_cpus_avail);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002163 if (ret)
2164 return ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002165
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002166 ret = do_read_u32(ff, &nr_cpus_online);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002167 if (ret)
2168 return ret;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002169 ff->ph->env.nr_cpus_avail = (int)nr_cpus_avail;
2170 ff->ph->env.nr_cpus_online = (int)nr_cpus_online;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002171 return 0;
2172}
2173
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002174static int process_total_mem(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002175{
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002176 u64 total_mem;
2177 int ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002178
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002179 ret = do_read_u64(ff, &total_mem);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002180 if (ret)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002181 return -1;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002182 ff->ph->env.total_mem = (unsigned long long)total_mem;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002183 return 0;
2184}
2185
Jiri Olsa32dcd022019-07-21 13:23:51 +02002186static struct evsel *
Jiri Olsa63503db2019-07-21 13:23:52 +02002187perf_evlist__find_by_index(struct evlist *evlist, int idx)
Robert Richter7c2f7af2012-08-16 21:10:23 +02002188{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002189 struct evsel *evsel;
Robert Richter7c2f7af2012-08-16 21:10:23 +02002190
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002191 evlist__for_each_entry(evlist, evsel) {
Robert Richter7c2f7af2012-08-16 21:10:23 +02002192 if (evsel->idx == idx)
2193 return evsel;
2194 }
2195
2196 return NULL;
2197}
2198
2199static void
Jiri Olsa63503db2019-07-21 13:23:52 +02002200perf_evlist__set_event_name(struct evlist *evlist,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002201 struct evsel *event)
Robert Richter7c2f7af2012-08-16 21:10:23 +02002202{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002203 struct evsel *evsel;
Robert Richter7c2f7af2012-08-16 21:10:23 +02002204
2205 if (!event->name)
2206 return;
2207
2208 evsel = perf_evlist__find_by_index(evlist, event->idx);
2209 if (!evsel)
2210 return;
2211
2212 if (evsel->name)
2213 return;
2214
2215 evsel->name = strdup(event->name);
2216}
2217
2218static int
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002219process_event_desc(struct feat_fd *ff, void *data __maybe_unused)
Robert Richter7c2f7af2012-08-16 21:10:23 +02002220{
Namhyung Kim3d7eb862012-09-24 17:15:01 +09002221 struct perf_session *session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002222 struct evsel *evsel, *events = read_event_desc(ff);
Robert Richter7c2f7af2012-08-16 21:10:23 +02002223
2224 if (!events)
2225 return 0;
2226
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002227 session = container_of(ff->ph, struct perf_session, header);
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07002228
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002229 if (session->data->is_pipe) {
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07002230 /* Save events for reading later by print_event_desc,
2231 * since they can't be read again in pipe mode. */
2232 ff->events = events;
2233 }
2234
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002235 for (evsel = events; evsel->core.attr.size; evsel++)
Robert Richter7c2f7af2012-08-16 21:10:23 +02002236 perf_evlist__set_event_name(session->evlist, evsel);
2237
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002238 if (!session->data->is_pipe)
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07002239 free_event_desc(events);
Robert Richter7c2f7af2012-08-16 21:10:23 +02002240
2241 return 0;
2242}
2243
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002244static int process_cmdline(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002245{
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002246 char *str, *cmdline = NULL, **argv = NULL;
2247 u32 nr, i, len = 0;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002248
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002249 if (do_read_u32(ff, &nr))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002250 return -1;
2251
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002252 ff->ph->env.nr_cmdline = nr;
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002253
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002254 cmdline = zalloc(ff->size + nr + 1);
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002255 if (!cmdline)
2256 return -1;
2257
2258 argv = zalloc(sizeof(char *) * (nr + 1));
2259 if (!argv)
2260 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002261
2262 for (i = 0; i < nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002263 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002264 if (!str)
2265 goto error;
2266
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002267 argv[i] = cmdline + len;
2268 memcpy(argv[i], str, strlen(str) + 1);
2269 len += strlen(str) + 1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002270 free(str);
2271 }
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002272 ff->ph->env.cmdline = cmdline;
2273 ff->ph->env.cmdline_argv = (const char **) argv;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002274 return 0;
2275
2276error:
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002277 free(argv);
2278 free(cmdline);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002279 return -1;
2280}
2281
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002282static int process_cpu_topology(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002283{
Namhyung Kima1ae5652012-09-24 17:14:59 +09002284 u32 nr, i;
2285 char *str;
2286 struct strbuf sb;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002287 int cpu_nr = ff->ph->env.nr_cpus_avail;
Kan Liang2bb00d22015-09-01 09:58:12 -04002288 u64 size = 0;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002289 struct perf_header *ph = ff->ph;
Thomas Richter01766222018-06-11 09:31:52 +02002290 bool do_core_id_test = true;
Kan Liang2bb00d22015-09-01 09:58:12 -04002291
2292 ph->env.cpu = calloc(cpu_nr, sizeof(*ph->env.cpu));
2293 if (!ph->env.cpu)
2294 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002295
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002296 if (do_read_u32(ff, &nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04002297 goto free_cpu;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002298
Namhyung Kima1ae5652012-09-24 17:14:59 +09002299 ph->env.nr_sibling_cores = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04002300 size += sizeof(u32);
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002301 if (strbuf_init(&sb, 128) < 0)
2302 goto free_cpu;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002303
2304 for (i = 0; i < nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002305 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002306 if (!str)
2307 goto error;
2308
2309 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002310 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
2311 goto error;
Kan Liang2bb00d22015-09-01 09:58:12 -04002312 size += string_size(str);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002313 free(str);
2314 }
2315 ph->env.sibling_cores = strbuf_detach(&sb, NULL);
2316
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002317 if (do_read_u32(ff, &nr))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002318 return -1;
2319
Namhyung Kima1ae5652012-09-24 17:14:59 +09002320 ph->env.nr_sibling_threads = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04002321 size += sizeof(u32);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002322
2323 for (i = 0; i < nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002324 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002325 if (!str)
2326 goto error;
2327
2328 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002329 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
2330 goto error;
Kan Liang2bb00d22015-09-01 09:58:12 -04002331 size += string_size(str);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002332 free(str);
2333 }
2334 ph->env.sibling_threads = strbuf_detach(&sb, NULL);
Kan Liang2bb00d22015-09-01 09:58:12 -04002335
2336 /*
2337 * The header may be from old perf,
2338 * which doesn't include core id and socket id information.
2339 */
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002340 if (ff->size <= size) {
Kan Liang2bb00d22015-09-01 09:58:12 -04002341 zfree(&ph->env.cpu);
2342 return 0;
2343 }
2344
Thomas Richter01766222018-06-11 09:31:52 +02002345 /* On s390 the socket_id number is not related to the numbers of cpus.
2346 * The socket_id number might be higher than the numbers of cpus.
2347 * This depends on the configuration.
Tan Xiaojun0a4d8fb2019-08-02 11:48:57 +08002348 * AArch64 is the same.
Thomas Richter01766222018-06-11 09:31:52 +02002349 */
Tan Xiaojun0a4d8fb2019-08-02 11:48:57 +08002350 if (ph->env.arch && (!strncmp(ph->env.arch, "s390", 4)
2351 || !strncmp(ph->env.arch, "aarch64", 7)))
Thomas Richter01766222018-06-11 09:31:52 +02002352 do_core_id_test = false;
2353
Kan Liang2bb00d22015-09-01 09:58:12 -04002354 for (i = 0; i < (u32)cpu_nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002355 if (do_read_u32(ff, &nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04002356 goto free_cpu;
2357
Kan Liang2bb00d22015-09-01 09:58:12 -04002358 ph->env.cpu[i].core_id = nr;
Kan Liangacae8b32019-06-04 15:50:41 -07002359 size += sizeof(u32);
Kan Liang2bb00d22015-09-01 09:58:12 -04002360
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002361 if (do_read_u32(ff, &nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04002362 goto free_cpu;
2363
Thomas Richter01766222018-06-11 09:31:52 +02002364 if (do_core_id_test && nr != (u32)-1 && nr > (u32)cpu_nr) {
Kan Liang2bb00d22015-09-01 09:58:12 -04002365 pr_debug("socket_id number is too big."
2366 "You may need to upgrade the perf tool.\n");
2367 goto free_cpu;
2368 }
2369
2370 ph->env.cpu[i].socket_id = nr;
Kan Liangacae8b32019-06-04 15:50:41 -07002371 size += sizeof(u32);
2372 }
2373
2374 /*
2375 * The header may be from old perf,
2376 * which doesn't include die information.
2377 */
2378 if (ff->size <= size)
2379 return 0;
2380
2381 if (do_read_u32(ff, &nr))
2382 return -1;
2383
2384 ph->env.nr_sibling_dies = nr;
2385 size += sizeof(u32);
2386
2387 for (i = 0; i < nr; i++) {
2388 str = do_read_string(ff);
2389 if (!str)
2390 goto error;
2391
2392 /* include a NULL character at the end */
2393 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
2394 goto error;
2395 size += string_size(str);
2396 free(str);
2397 }
2398 ph->env.sibling_dies = strbuf_detach(&sb, NULL);
2399
2400 for (i = 0; i < (u32)cpu_nr; i++) {
2401 if (do_read_u32(ff, &nr))
2402 goto free_cpu;
2403
2404 ph->env.cpu[i].die_id = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04002405 }
2406
Namhyung Kima1ae5652012-09-24 17:14:59 +09002407 return 0;
2408
2409error:
2410 strbuf_release(&sb);
Kan Liang2bb00d22015-09-01 09:58:12 -04002411free_cpu:
2412 zfree(&ph->env.cpu);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002413 return -1;
2414}
2415
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002416static int process_numa_topology(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002417{
Jiri Olsac60da222016-07-04 14:16:20 +02002418 struct numa_node *nodes, *n;
Jiri Olsac60da222016-07-04 14:16:20 +02002419 u32 nr, i;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002420 char *str;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002421
2422 /* nr nodes */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002423 if (do_read_u32(ff, &nr))
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002424 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002425
Jiri Olsac60da222016-07-04 14:16:20 +02002426 nodes = zalloc(sizeof(*nodes) * nr);
2427 if (!nodes)
2428 return -ENOMEM;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002429
2430 for (i = 0; i < nr; i++) {
Jiri Olsac60da222016-07-04 14:16:20 +02002431 n = &nodes[i];
2432
Namhyung Kima1ae5652012-09-24 17:14:59 +09002433 /* node number */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002434 if (do_read_u32(ff, &n->node))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002435 goto error;
2436
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002437 if (do_read_u64(ff, &n->mem_total))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002438 goto error;
2439
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002440 if (do_read_u64(ff, &n->mem_free))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002441 goto error;
2442
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002443 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002444 if (!str)
2445 goto error;
2446
Jiri Olsa9c3516d2019-07-21 13:24:30 +02002447 n->map = perf_cpu_map__new(str);
Jiri Olsac60da222016-07-04 14:16:20 +02002448 if (!n->map)
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002449 goto error;
Jiri Olsac60da222016-07-04 14:16:20 +02002450
Namhyung Kima1ae5652012-09-24 17:14:59 +09002451 free(str);
2452 }
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002453 ff->ph->env.nr_numa_nodes = nr;
2454 ff->ph->env.numa_nodes = nodes;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002455 return 0;
2456
2457error:
Jiri Olsac60da222016-07-04 14:16:20 +02002458 free(nodes);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002459 return -1;
2460}
2461
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002462static int process_pmu_mappings(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002463{
Namhyung Kima1ae5652012-09-24 17:14:59 +09002464 char *name;
2465 u32 pmu_num;
2466 u32 type;
2467 struct strbuf sb;
2468
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002469 if (do_read_u32(ff, &pmu_num))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002470 return -1;
2471
Namhyung Kima1ae5652012-09-24 17:14:59 +09002472 if (!pmu_num) {
2473 pr_debug("pmu mappings not available\n");
2474 return 0;
2475 }
2476
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002477 ff->ph->env.nr_pmu_mappings = pmu_num;
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002478 if (strbuf_init(&sb, 128) < 0)
2479 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002480
2481 while (pmu_num) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002482 if (do_read_u32(ff, &type))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002483 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002484
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002485 name = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002486 if (!name)
2487 goto error;
2488
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002489 if (strbuf_addf(&sb, "%u:%s", type, name) < 0)
2490 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002491 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002492 if (strbuf_add(&sb, "", 1) < 0)
2493 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002494
Kan Liange0838e02015-09-10 11:03:05 -03002495 if (!strcmp(name, "msr"))
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002496 ff->ph->env.msr_pmu_type = type;
Kan Liange0838e02015-09-10 11:03:05 -03002497
Namhyung Kima1ae5652012-09-24 17:14:59 +09002498 free(name);
2499 pmu_num--;
2500 }
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002501 ff->ph->env.pmu_mappings = strbuf_detach(&sb, NULL);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002502 return 0;
2503
2504error:
2505 strbuf_release(&sb);
2506 return -1;
2507}
2508
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002509static int process_group_desc(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima8bb5592013-01-22 18:09:31 +09002510{
2511 size_t ret = -1;
2512 u32 i, nr, nr_groups;
2513 struct perf_session *session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002514 struct evsel *evsel, *leader = NULL;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002515 struct group_desc {
2516 char *name;
2517 u32 leader_idx;
2518 u32 nr_members;
2519 } *desc;
2520
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002521 if (do_read_u32(ff, &nr_groups))
Namhyung Kima8bb5592013-01-22 18:09:31 +09002522 return -1;
2523
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002524 ff->ph->env.nr_groups = nr_groups;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002525 if (!nr_groups) {
2526 pr_debug("group desc not available\n");
2527 return 0;
2528 }
2529
2530 desc = calloc(nr_groups, sizeof(*desc));
2531 if (!desc)
2532 return -1;
2533
2534 for (i = 0; i < nr_groups; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002535 desc[i].name = do_read_string(ff);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002536 if (!desc[i].name)
2537 goto out_free;
2538
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002539 if (do_read_u32(ff, &desc[i].leader_idx))
Namhyung Kima8bb5592013-01-22 18:09:31 +09002540 goto out_free;
2541
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002542 if (do_read_u32(ff, &desc[i].nr_members))
Namhyung Kima8bb5592013-01-22 18:09:31 +09002543 goto out_free;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002544 }
2545
2546 /*
2547 * Rebuild group relationship based on the group_desc
2548 */
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002549 session = container_of(ff->ph, struct perf_session, header);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002550 session->evlist->nr_groups = nr_groups;
2551
2552 i = nr = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002553 evlist__for_each_entry(session->evlist, evsel) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09002554 if (evsel->idx == (int) desc[i].leader_idx) {
2555 evsel->leader = evsel;
2556 /* {anon_group} is a dummy name */
Namhyung Kim210e8122013-11-18 11:20:43 +09002557 if (strcmp(desc[i].name, "{anon_group}")) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09002558 evsel->group_name = desc[i].name;
Namhyung Kim210e8122013-11-18 11:20:43 +09002559 desc[i].name = NULL;
2560 }
Jiri Olsa5643b1a2019-07-21 13:24:46 +02002561 evsel->core.nr_members = desc[i].nr_members;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002562
2563 if (i >= nr_groups || nr > 0) {
2564 pr_debug("invalid group desc\n");
2565 goto out_free;
2566 }
2567
2568 leader = evsel;
Jiri Olsa5643b1a2019-07-21 13:24:46 +02002569 nr = evsel->core.nr_members - 1;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002570 i++;
2571 } else if (nr) {
2572 /* This is a group member */
2573 evsel->leader = leader;
2574
2575 nr--;
2576 }
2577 }
2578
2579 if (i != nr_groups || nr != 0) {
2580 pr_debug("invalid group desc\n");
2581 goto out_free;
2582 }
2583
2584 ret = 0;
2585out_free:
Namhyung Kim50a27402013-11-18 11:20:44 +09002586 for (i = 0; i < nr_groups; i++)
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002587 zfree(&desc[i].name);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002588 free(desc);
2589
2590 return ret;
2591}
2592
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002593static int process_auxtrace(struct feat_fd *ff, void *data __maybe_unused)
Adrian Hunter99fa2982015-04-30 17:37:25 +03002594{
2595 struct perf_session *session;
2596 int err;
2597
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002598 session = container_of(ff->ph, struct perf_session, header);
Adrian Hunter99fa2982015-04-30 17:37:25 +03002599
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002600 err = auxtrace_index__process(ff->fd, ff->size, session,
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002601 ff->ph->needs_swap);
Adrian Hunter99fa2982015-04-30 17:37:25 +03002602 if (err < 0)
2603 pr_err("Failed to process auxtrace index\n");
2604 return err;
2605}
2606
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002607static int process_cache(struct feat_fd *ff, void *data __maybe_unused)
Jiri Olsa720e98b2016-02-16 16:01:43 +01002608{
2609 struct cpu_cache_level *caches;
2610 u32 cnt, i, version;
2611
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002612 if (do_read_u32(ff, &version))
Jiri Olsa720e98b2016-02-16 16:01:43 +01002613 return -1;
2614
Jiri Olsa720e98b2016-02-16 16:01:43 +01002615 if (version != 1)
2616 return -1;
2617
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002618 if (do_read_u32(ff, &cnt))
Jiri Olsa720e98b2016-02-16 16:01:43 +01002619 return -1;
2620
Jiri Olsa720e98b2016-02-16 16:01:43 +01002621 caches = zalloc(sizeof(*caches) * cnt);
2622 if (!caches)
2623 return -1;
2624
2625 for (i = 0; i < cnt; i++) {
2626 struct cpu_cache_level c;
2627
2628 #define _R(v) \
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002629 if (do_read_u32(ff, &c.v))\
Jiri Olsa720e98b2016-02-16 16:01:43 +01002630 goto out_free_caches; \
Jiri Olsa720e98b2016-02-16 16:01:43 +01002631
2632 _R(level)
2633 _R(line_size)
2634 _R(sets)
2635 _R(ways)
2636 #undef _R
2637
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002638 #define _R(v) \
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002639 c.v = do_read_string(ff); \
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002640 if (!c.v) \
Jiri Olsa720e98b2016-02-16 16:01:43 +01002641 goto out_free_caches;
2642
2643 _R(type)
2644 _R(size)
2645 _R(map)
2646 #undef _R
2647
2648 caches[i] = c;
2649 }
2650
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002651 ff->ph->env.caches = caches;
2652 ff->ph->env.caches_cnt = cnt;
Jiri Olsa720e98b2016-02-16 16:01:43 +01002653 return 0;
2654out_free_caches:
2655 free(caches);
2656 return -1;
2657}
2658
Jin Yao60115182017-12-08 21:13:41 +08002659static int process_sample_time(struct feat_fd *ff, void *data __maybe_unused)
2660{
2661 struct perf_session *session;
2662 u64 first_sample_time, last_sample_time;
2663 int ret;
2664
2665 session = container_of(ff->ph, struct perf_session, header);
2666
2667 ret = do_read_u64(ff, &first_sample_time);
2668 if (ret)
2669 return -1;
2670
2671 ret = do_read_u64(ff, &last_sample_time);
2672 if (ret)
2673 return -1;
2674
2675 session->evlist->first_sample_time = first_sample_time;
2676 session->evlist->last_sample_time = last_sample_time;
2677 return 0;
2678}
2679
Jiri Olsae2091ce2018-03-07 16:50:08 +01002680static int process_mem_topology(struct feat_fd *ff,
2681 void *data __maybe_unused)
2682{
2683 struct memory_node *nodes;
2684 u64 version, i, nr, bsize;
2685 int ret = -1;
2686
2687 if (do_read_u64(ff, &version))
2688 return -1;
2689
2690 if (version != 1)
2691 return -1;
2692
2693 if (do_read_u64(ff, &bsize))
2694 return -1;
2695
2696 if (do_read_u64(ff, &nr))
2697 return -1;
2698
2699 nodes = zalloc(sizeof(*nodes) * nr);
2700 if (!nodes)
2701 return -1;
2702
2703 for (i = 0; i < nr; i++) {
2704 struct memory_node n;
2705
2706 #define _R(v) \
2707 if (do_read_u64(ff, &n.v)) \
2708 goto out; \
2709
2710 _R(node)
2711 _R(size)
2712
2713 #undef _R
2714
2715 if (do_read_bitmap(ff, &n.set, &n.size))
2716 goto out;
2717
2718 nodes[i] = n;
2719 }
2720
2721 ff->ph->env.memory_bsize = bsize;
2722 ff->ph->env.memory_nodes = nodes;
2723 ff->ph->env.nr_memory_nodes = nr;
2724 ret = 0;
2725
2726out:
2727 if (ret)
2728 free(nodes);
2729 return ret;
2730}
2731
Alexey Budankovcf790512018-10-09 17:36:24 +03002732static int process_clockid(struct feat_fd *ff,
2733 void *data __maybe_unused)
2734{
2735 if (do_read_u64(ff, &ff->ph->env.clockid_res_ns))
2736 return -1;
2737
2738 return 0;
2739}
2740
Jiri Olsa258031c2019-03-08 14:47:39 +01002741static int process_dir_format(struct feat_fd *ff,
2742 void *_data __maybe_unused)
2743{
2744 struct perf_session *session;
2745 struct perf_data *data;
2746
2747 session = container_of(ff->ph, struct perf_session, header);
2748 data = session->data;
2749
2750 if (WARN_ON(!perf_data__is_dir(data)))
2751 return -1;
2752
2753 return do_read_u64(ff, &data->dir.version);
2754}
2755
Song Liu606f9722019-03-11 22:30:43 -07002756#ifdef HAVE_LIBBPF_SUPPORT
2757static int process_bpf_prog_info(struct feat_fd *ff, void *data __maybe_unused)
2758{
2759 struct bpf_prog_info_linear *info_linear;
2760 struct bpf_prog_info_node *info_node;
2761 struct perf_env *env = &ff->ph->env;
2762 u32 count, i;
2763 int err = -1;
2764
2765 if (ff->ph->needs_swap) {
2766 pr_warning("interpreting bpf_prog_info from systems with endianity is not yet supported\n");
2767 return 0;
2768 }
2769
2770 if (do_read_u32(ff, &count))
2771 return -1;
2772
2773 down_write(&env->bpf_progs.lock);
2774
2775 for (i = 0; i < count; ++i) {
2776 u32 info_len, data_len;
2777
2778 info_linear = NULL;
2779 info_node = NULL;
2780 if (do_read_u32(ff, &info_len))
2781 goto out;
2782 if (do_read_u32(ff, &data_len))
2783 goto out;
2784
2785 if (info_len > sizeof(struct bpf_prog_info)) {
2786 pr_warning("detected invalid bpf_prog_info\n");
2787 goto out;
2788 }
2789
2790 info_linear = malloc(sizeof(struct bpf_prog_info_linear) +
2791 data_len);
2792 if (!info_linear)
2793 goto out;
2794 info_linear->info_len = sizeof(struct bpf_prog_info);
2795 info_linear->data_len = data_len;
2796 if (do_read_u64(ff, (u64 *)(&info_linear->arrays)))
2797 goto out;
2798 if (__do_read(ff, &info_linear->info, info_len))
2799 goto out;
2800 if (info_len < sizeof(struct bpf_prog_info))
2801 memset(((void *)(&info_linear->info)) + info_len, 0,
2802 sizeof(struct bpf_prog_info) - info_len);
2803
2804 if (__do_read(ff, info_linear->data, data_len))
2805 goto out;
2806
2807 info_node = malloc(sizeof(struct bpf_prog_info_node));
2808 if (!info_node)
2809 goto out;
2810
2811 /* after reading from file, translate offset to address */
2812 bpf_program__bpil_offs_to_addr(info_linear);
2813 info_node->info_linear = info_linear;
2814 perf_env__insert_bpf_prog_info(env, info_node);
2815 }
2816
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002817 up_write(&env->bpf_progs.lock);
Song Liu606f9722019-03-11 22:30:43 -07002818 return 0;
2819out:
2820 free(info_linear);
2821 free(info_node);
2822 up_write(&env->bpf_progs.lock);
2823 return err;
2824}
2825#else // HAVE_LIBBPF_SUPPORT
2826static int process_bpf_prog_info(struct feat_fd *ff __maybe_unused, void *data __maybe_unused)
2827{
2828 return 0;
2829}
2830#endif // HAVE_LIBBPF_SUPPORT
2831
Song Liua70a112312019-03-11 22:30:45 -07002832static int process_bpf_btf(struct feat_fd *ff, void *data __maybe_unused)
2833{
2834 struct perf_env *env = &ff->ph->env;
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002835 struct btf_node *node = NULL;
Song Liua70a112312019-03-11 22:30:45 -07002836 u32 count, i;
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002837 int err = -1;
Song Liua70a112312019-03-11 22:30:45 -07002838
2839 if (ff->ph->needs_swap) {
2840 pr_warning("interpreting btf from systems with endianity is not yet supported\n");
2841 return 0;
2842 }
2843
2844 if (do_read_u32(ff, &count))
2845 return -1;
2846
2847 down_write(&env->bpf_progs.lock);
2848
2849 for (i = 0; i < count; ++i) {
Song Liua70a112312019-03-11 22:30:45 -07002850 u32 id, data_size;
2851
2852 if (do_read_u32(ff, &id))
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002853 goto out;
Song Liua70a112312019-03-11 22:30:45 -07002854 if (do_read_u32(ff, &data_size))
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002855 goto out;
Song Liua70a112312019-03-11 22:30:45 -07002856
2857 node = malloc(sizeof(struct btf_node) + data_size);
2858 if (!node)
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002859 goto out;
Song Liua70a112312019-03-11 22:30:45 -07002860
2861 node->id = id;
2862 node->data_size = data_size;
2863
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002864 if (__do_read(ff, node->data, data_size))
2865 goto out;
Song Liua70a112312019-03-11 22:30:45 -07002866
2867 perf_env__insert_btf(env, node);
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002868 node = NULL;
Song Liua70a112312019-03-11 22:30:45 -07002869 }
2870
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002871 err = 0;
2872out:
Song Liua70a112312019-03-11 22:30:45 -07002873 up_write(&env->bpf_progs.lock);
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002874 free(node);
2875 return err;
Song Liua70a112312019-03-11 22:30:45 -07002876}
2877
Alexey Budankov42e1fd82019-03-18 20:41:33 +03002878static int process_compressed(struct feat_fd *ff,
2879 void *data __maybe_unused)
2880{
2881 if (do_read_u32(ff, &(ff->ph->env.comp_ver)))
2882 return -1;
2883
2884 if (do_read_u32(ff, &(ff->ph->env.comp_type)))
2885 return -1;
2886
2887 if (do_read_u32(ff, &(ff->ph->env.comp_level)))
2888 return -1;
2889
2890 if (do_read_u32(ff, &(ff->ph->env.comp_ratio)))
2891 return -1;
2892
2893 if (do_read_u32(ff, &(ff->ph->env.comp_mmap_len)))
2894 return -1;
2895
2896 return 0;
2897}
2898
Kan Liang6f91ea22020-03-19 13:25:02 -07002899static int process_cpu_pmu_caps(struct feat_fd *ff,
2900 void *data __maybe_unused)
2901{
2902 char *name, *value;
2903 struct strbuf sb;
2904 u32 nr_caps;
2905
2906 if (do_read_u32(ff, &nr_caps))
2907 return -1;
2908
2909 if (!nr_caps) {
2910 pr_debug("cpu pmu capabilities not available\n");
2911 return 0;
2912 }
2913
2914 ff->ph->env.nr_cpu_pmu_caps = nr_caps;
2915
2916 if (strbuf_init(&sb, 128) < 0)
2917 return -1;
2918
2919 while (nr_caps--) {
2920 name = do_read_string(ff);
2921 if (!name)
2922 goto error;
2923
2924 value = do_read_string(ff);
2925 if (!value)
2926 goto free_name;
2927
2928 if (strbuf_addf(&sb, "%s=%s", name, value) < 0)
2929 goto free_value;
2930
2931 /* include a NULL character at the end */
2932 if (strbuf_add(&sb, "", 1) < 0)
2933 goto free_value;
2934
2935 if (!strcmp(name, "branches"))
2936 ff->ph->env.max_branches = atoi(value);
2937
2938 free(value);
2939 free(name);
2940 }
2941 ff->ph->env.cpu_pmu_caps = strbuf_detach(&sb, NULL);
2942 return 0;
2943
2944free_value:
2945 free(value);
2946free_name:
2947 free(name);
2948error:
2949 strbuf_release(&sb);
2950 return -1;
2951}
2952
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07002953#define FEAT_OPR(n, func, __full_only) \
2954 [HEADER_##n] = { \
2955 .name = __stringify(n), \
2956 .write = write_##func, \
2957 .print = print_##func, \
2958 .full_only = __full_only, \
2959 .process = process_##func, \
2960 .synthesize = true \
2961 }
2962
2963#define FEAT_OPN(n, func, __full_only) \
2964 [HEADER_##n] = { \
2965 .name = __stringify(n), \
2966 .write = write_##func, \
2967 .print = print_##func, \
2968 .full_only = __full_only, \
2969 .process = process_##func \
2970 }
Robert Richter8cdfa782011-12-07 10:02:56 +01002971
2972/* feature_ops not implemented: */
Stephane Eranian2eeaaa02012-05-15 13:28:13 +02002973#define print_tracing_data NULL
2974#define print_build_id NULL
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002975
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07002976#define process_branch_stack NULL
2977#define process_stat NULL
2978
Arnaldo Carvalho de Melo055c67e2019-09-18 16:08:52 -03002979// Only used in util/synthetic-events.c
2980const struct perf_header_feature_ops feat_ops[HEADER_LAST_FEATURE];
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07002981
Arnaldo Carvalho de Melo055c67e2019-09-18 16:08:52 -03002982const struct perf_header_feature_ops feat_ops[HEADER_LAST_FEATURE] = {
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07002983 FEAT_OPN(TRACING_DATA, tracing_data, false),
2984 FEAT_OPN(BUILD_ID, build_id, false),
2985 FEAT_OPR(HOSTNAME, hostname, false),
2986 FEAT_OPR(OSRELEASE, osrelease, false),
2987 FEAT_OPR(VERSION, version, false),
2988 FEAT_OPR(ARCH, arch, false),
2989 FEAT_OPR(NRCPUS, nrcpus, false),
2990 FEAT_OPR(CPUDESC, cpudesc, false),
2991 FEAT_OPR(CPUID, cpuid, false),
2992 FEAT_OPR(TOTAL_MEM, total_mem, false),
2993 FEAT_OPR(EVENT_DESC, event_desc, false),
2994 FEAT_OPR(CMDLINE, cmdline, false),
2995 FEAT_OPR(CPU_TOPOLOGY, cpu_topology, true),
2996 FEAT_OPR(NUMA_TOPOLOGY, numa_topology, true),
2997 FEAT_OPN(BRANCH_STACK, branch_stack, false),
2998 FEAT_OPR(PMU_MAPPINGS, pmu_mappings, false),
Jiri Olsae8fedff2018-07-12 15:52:02 +02002999 FEAT_OPR(GROUP_DESC, group_desc, false),
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07003000 FEAT_OPN(AUXTRACE, auxtrace, false),
3001 FEAT_OPN(STAT, stat, false),
3002 FEAT_OPN(CACHE, cache, true),
Jin Yao60115182017-12-08 21:13:41 +08003003 FEAT_OPR(SAMPLE_TIME, sample_time, false),
Jiri Olsae2091ce2018-03-07 16:50:08 +01003004 FEAT_OPR(MEM_TOPOLOGY, mem_topology, true),
Jiri Olsa258031c2019-03-08 14:47:39 +01003005 FEAT_OPR(CLOCKID, clockid, false),
Song Liu606f9722019-03-11 22:30:43 -07003006 FEAT_OPN(DIR_FORMAT, dir_format, false),
Song Liua70a112312019-03-11 22:30:45 -07003007 FEAT_OPR(BPF_PROG_INFO, bpf_prog_info, false),
3008 FEAT_OPR(BPF_BTF, bpf_btf, false),
Alexey Budankov42e1fd82019-03-18 20:41:33 +03003009 FEAT_OPR(COMPRESSED, compressed, false),
Kan Liang6f91ea22020-03-19 13:25:02 -07003010 FEAT_OPR(CPU_PMU_CAPS, cpu_pmu_caps, false),
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003011};
3012
3013struct header_print_data {
3014 FILE *fp;
3015 bool full; /* extended list of headers */
3016};
3017
3018static int perf_file_section__fprintf_info(struct perf_file_section *section,
3019 struct perf_header *ph,
3020 int feat, int fd, void *data)
3021{
3022 struct header_print_data *hd = data;
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07003023 struct feat_fd ff;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003024
3025 if (lseek(fd, section->offset, SEEK_SET) == (off_t)-1) {
3026 pr_debug("Failed to lseek to %" PRIu64 " offset for feature "
3027 "%d, continuing...\n", section->offset, feat);
3028 return 0;
3029 }
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003030 if (feat >= HEADER_LAST_FEATURE) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003031 pr_warning("unknown feature %d\n", feat);
Robert Richterf7a8a132011-12-07 10:02:51 +01003032 return 0;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003033 }
3034 if (!feat_ops[feat].print)
3035 return 0;
3036
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07003037 ff = (struct feat_fd) {
3038 .fd = fd,
3039 .ph = ph,
3040 };
3041
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003042 if (!feat_ops[feat].full_only || hd->full)
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07003043 feat_ops[feat].print(&ff, hd->fp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003044 else
3045 fprintf(hd->fp, "# %s info available, use -I to display\n",
3046 feat_ops[feat].name);
3047
3048 return 0;
3049}
3050
3051int perf_header__fprintf_info(struct perf_session *session, FILE *fp, bool full)
3052{
3053 struct header_print_data hd;
3054 struct perf_header *header = &session->header;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003055 int fd = perf_data__fd(session->data);
Jiri Olsaf45f5612016-10-10 09:03:07 +02003056 struct stat st;
Arnaldo Carvalho de Melo0afcf292018-12-11 16:11:54 -03003057 time_t stctime;
Jiri Olsaaabae162016-10-10 09:35:50 +02003058 int ret, bit;
Jiri Olsaf45f5612016-10-10 09:03:07 +02003059
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003060 hd.fp = fp;
3061 hd.full = full;
3062
Jiri Olsaf45f5612016-10-10 09:03:07 +02003063 ret = fstat(fd, &st);
3064 if (ret == -1)
3065 return -1;
3066
Michael Petlan8af19d62020-01-14 11:42:36 +01003067 stctime = st.st_mtime;
Arnaldo Carvalho de Melo0afcf292018-12-11 16:11:54 -03003068 fprintf(fp, "# captured on : %s", ctime(&stctime));
Jiri Olsae971a5a2018-03-07 16:50:03 +01003069
3070 fprintf(fp, "# header version : %u\n", header->version);
3071 fprintf(fp, "# data offset : %" PRIu64 "\n", header->data_offset);
3072 fprintf(fp, "# data size : %" PRIu64 "\n", header->data_size);
3073 fprintf(fp, "# feat offset : %" PRIu64 "\n", header->feat_offset);
Jiri Olsaf45f5612016-10-10 09:03:07 +02003074
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003075 perf_header__process_sections(header, fd, &hd,
3076 perf_file_section__fprintf_info);
Jiri Olsaaabae162016-10-10 09:35:50 +02003077
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003078 if (session->data->is_pipe)
David Carrillo-Cisnerosc9d1c932017-04-10 13:14:32 -07003079 return 0;
3080
Jiri Olsaaabae162016-10-10 09:35:50 +02003081 fprintf(fp, "# missing features: ");
3082 for_each_clear_bit(bit, header->adds_features, HEADER_LAST_FEATURE) {
3083 if (bit)
3084 fprintf(fp, "%s ", feat_ops[bit].name);
3085 }
3086
3087 fprintf(fp, "\n");
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003088 return 0;
3089}
3090
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003091static int do_write_feat(struct feat_fd *ff, int type,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003092 struct perf_file_section **p,
Jiri Olsa63503db2019-07-21 13:23:52 +02003093 struct evlist *evlist)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003094{
3095 int err;
3096 int ret = 0;
3097
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003098 if (perf_header__has_feat(ff->ph, type)) {
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003099 if (!feat_ops[type].write)
3100 return -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003101
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -07003102 if (WARN(ff->buf, "Error: calling %s in pipe-mode.\n", __func__))
3103 return -1;
3104
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003105 (*p)->offset = lseek(ff->fd, 0, SEEK_CUR);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003106
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003107 err = feat_ops[type].write(ff, evlist);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003108 if (err < 0) {
Jiri Olsa0c2aff42016-10-10 09:38:02 +02003109 pr_debug("failed to write feature %s\n", feat_ops[type].name);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003110
3111 /* undo anything written */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003112 lseek(ff->fd, (*p)->offset, SEEK_SET);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003113
3114 return -1;
3115 }
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003116 (*p)->size = lseek(ff->fd, 0, SEEK_CUR) - (*p)->offset;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003117 (*p)++;
3118 }
3119 return ret;
3120}
3121
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003122static int perf_header__adds_write(struct perf_header *header,
Jiri Olsa63503db2019-07-21 13:23:52 +02003123 struct evlist *evlist, int fd)
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003124{
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003125 int nr_sections;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003126 struct feat_fd ff;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003127 struct perf_file_section *feat_sec, *p;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003128 int sec_size;
3129 u64 sec_start;
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003130 int feat;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003131 int err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003132
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003133 ff = (struct feat_fd){
3134 .fd = fd,
3135 .ph = header,
3136 };
3137
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003138 nr_sections = bitmap_weight(header->adds_features, HEADER_FEAT_BITS);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003139 if (!nr_sections)
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003140 return 0;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003141
Paul Gortmaker91b98802013-01-30 20:05:49 -05003142 feat_sec = p = calloc(nr_sections, sizeof(*feat_sec));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003143 if (feat_sec == NULL)
3144 return -ENOMEM;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003145
3146 sec_size = sizeof(*feat_sec) * nr_sections;
3147
Jiri Olsa8d541e92013-07-17 19:49:44 +02003148 sec_start = header->feat_offset;
Xiao Guangrongf887f302010-02-04 16:46:42 +08003149 lseek(fd, sec_start + sec_size, SEEK_SET);
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003150
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003151 for_each_set_bit(feat, header->adds_features, HEADER_FEAT_BITS) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003152 if (do_write_feat(&ff, feat, &p, evlist))
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003153 perf_header__clear_feat(header, feat);
3154 }
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003155
Xiao Guangrongf887f302010-02-04 16:46:42 +08003156 lseek(fd, sec_start, SEEK_SET);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003157 /*
3158 * may write more than needed due to dropped feature, but
Ingo Molnaradba1632018-12-03 11:22:00 +01003159 * this is okay, reader will skip the missing entries
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003160 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003161 err = do_write(&ff, feat_sec, sec_size);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003162 if (err < 0)
3163 pr_debug("failed to write feature section\n");
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003164 free(feat_sec);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003165 return err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003166}
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003167
Tom Zanussi8dc58102010-04-01 23:59:15 -05003168int perf_header__write_pipe(int fd)
3169{
3170 struct perf_pipe_file_header f_header;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003171 struct feat_fd ff;
Tom Zanussi8dc58102010-04-01 23:59:15 -05003172 int err;
3173
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003174 ff = (struct feat_fd){ .fd = fd };
3175
Tom Zanussi8dc58102010-04-01 23:59:15 -05003176 f_header = (struct perf_pipe_file_header){
3177 .magic = PERF_MAGIC,
3178 .size = sizeof(f_header),
3179 };
3180
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003181 err = do_write(&ff, &f_header, sizeof(f_header));
Tom Zanussi8dc58102010-04-01 23:59:15 -05003182 if (err < 0) {
3183 pr_debug("failed to write perf pipe header\n");
3184 return err;
3185 }
3186
3187 return 0;
3188}
3189
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003190int perf_session__write_header(struct perf_session *session,
Jiri Olsa63503db2019-07-21 13:23:52 +02003191 struct evlist *evlist,
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003192 int fd, bool at_exit)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003193{
3194 struct perf_file_header f_header;
3195 struct perf_file_attr f_attr;
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003196 struct perf_header *header = &session->header;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003197 struct evsel *evsel;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003198 struct feat_fd ff;
Jiri Olsa944d62b2013-07-17 19:49:43 +02003199 u64 attr_offset;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003200 int err;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003201
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003202 ff = (struct feat_fd){ .fd = fd};
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003203 lseek(fd, sizeof(f_header), SEEK_SET);
3204
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003205 evlist__for_each_entry(session->evlist, evsel) {
Robert Richter6606f872012-08-16 21:10:19 +02003206 evsel->id_offset = lseek(fd, 0, SEEK_CUR);
Jiri Olsae7eb9002019-09-02 22:15:47 +02003207 err = do_write(&ff, evsel->core.id, evsel->core.ids * sizeof(u64));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003208 if (err < 0) {
3209 pr_debug("failed to write perf header\n");
3210 return err;
3211 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003212 }
3213
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003214 attr_offset = lseek(ff.fd, 0, SEEK_CUR);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003215
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003216 evlist__for_each_entry(evlist, evsel) {
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003217 f_attr = (struct perf_file_attr){
Jiri Olsa1fc632c2019-07-21 13:24:29 +02003218 .attr = evsel->core.attr,
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003219 .ids = {
Robert Richter6606f872012-08-16 21:10:19 +02003220 .offset = evsel->id_offset,
Jiri Olsae7eb9002019-09-02 22:15:47 +02003221 .size = evsel->core.ids * sizeof(u64),
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003222 }
3223 };
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003224 err = do_write(&ff, &f_attr, sizeof(f_attr));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003225 if (err < 0) {
3226 pr_debug("failed to write perf header attribute\n");
3227 return err;
3228 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003229 }
3230
Adrian Hunterd645c442013-12-11 14:36:28 +02003231 if (!header->data_offset)
3232 header->data_offset = lseek(fd, 0, SEEK_CUR);
Jiri Olsa8d541e92013-07-17 19:49:44 +02003233 header->feat_offset = header->data_offset + header->data_size;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003234
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003235 if (at_exit) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003236 err = perf_header__adds_write(header, evlist, fd);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003237 if (err < 0)
3238 return err;
3239 }
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003240
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003241 f_header = (struct perf_file_header){
3242 .magic = PERF_MAGIC,
3243 .size = sizeof(f_header),
3244 .attr_size = sizeof(f_attr),
3245 .attrs = {
Jiri Olsa944d62b2013-07-17 19:49:43 +02003246 .offset = attr_offset,
Jiri Olsa6484d2f2019-07-21 13:24:28 +02003247 .size = evlist->core.nr_entries * sizeof(f_attr),
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003248 },
3249 .data = {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003250 .offset = header->data_offset,
3251 .size = header->data_size,
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003252 },
Jiri Olsa44b3c572013-07-11 17:28:31 +02003253 /* event_types is ignored, store zeros */
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003254 };
3255
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003256 memcpy(&f_header.adds_features, &header->adds_features, sizeof(header->adds_features));
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003257
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003258 lseek(fd, 0, SEEK_SET);
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003259 err = do_write(&ff, &f_header, sizeof(f_header));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003260 if (err < 0) {
3261 pr_debug("failed to write perf header\n");
3262 return err;
3263 }
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003264 lseek(fd, header->data_offset + header->data_size, SEEK_SET);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003265
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003266 return 0;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003267}
3268
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003269static int perf_header__getbuffer64(struct perf_header *header,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003270 int fd, void *buf, size_t size)
3271{
Arnaldo Carvalho de Melo1e7972c2011-01-03 16:50:55 -02003272 if (readn(fd, buf, size) <= 0)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003273 return -1;
3274
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003275 if (header->needs_swap)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003276 mem_bswap_64(buf, size);
3277
3278 return 0;
3279}
3280
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003281int perf_header__process_sections(struct perf_header *header, int fd,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003282 void *data,
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003283 int (*process)(struct perf_file_section *section,
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003284 struct perf_header *ph,
3285 int feat, int fd, void *data))
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003286{
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003287 struct perf_file_section *feat_sec, *sec;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003288 int nr_sections;
3289 int sec_size;
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003290 int feat;
3291 int err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003292
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003293 nr_sections = bitmap_weight(header->adds_features, HEADER_FEAT_BITS);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003294 if (!nr_sections)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003295 return 0;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003296
Paul Gortmaker91b98802013-01-30 20:05:49 -05003297 feat_sec = sec = calloc(nr_sections, sizeof(*feat_sec));
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003298 if (!feat_sec)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003299 return -1;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003300
3301 sec_size = sizeof(*feat_sec) * nr_sections;
3302
Jiri Olsa8d541e92013-07-17 19:49:44 +02003303 lseek(fd, header->feat_offset, SEEK_SET);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003304
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003305 err = perf_header__getbuffer64(header, fd, feat_sec, sec_size);
3306 if (err < 0)
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003307 goto out_free;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003308
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003309 for_each_set_bit(feat, header->adds_features, HEADER_LAST_FEATURE) {
3310 err = process(sec++, header, feat, fd, data);
3311 if (err < 0)
3312 goto out_free;
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +01003313 }
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003314 err = 0;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003315out_free:
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003316 free(feat_sec);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003317 return err;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003318}
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003319
Stephane Eranian114382a2012-02-09 23:21:08 +01003320static const int attr_file_abi_sizes[] = {
3321 [0] = PERF_ATTR_SIZE_VER0,
3322 [1] = PERF_ATTR_SIZE_VER1,
Jiri Olsa239cc472012-08-07 15:20:42 +02003323 [2] = PERF_ATTR_SIZE_VER2,
Jiri Olsa0f6a3012012-08-07 15:20:45 +02003324 [3] = PERF_ATTR_SIZE_VER3,
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02003325 [4] = PERF_ATTR_SIZE_VER4,
Stephane Eranian114382a2012-02-09 23:21:08 +01003326 0,
3327};
3328
3329/*
3330 * In the legacy file format, the magic number is not used to encode endianness.
3331 * hdr_sz was used to encode endianness. But given that hdr_sz can vary based
3332 * on ABI revisions, we need to try all combinations for all endianness to
3333 * detect the endianness.
3334 */
3335static int try_all_file_abis(uint64_t hdr_sz, struct perf_header *ph)
3336{
3337 uint64_t ref_size, attr_size;
3338 int i;
3339
3340 for (i = 0 ; attr_file_abi_sizes[i]; i++) {
3341 ref_size = attr_file_abi_sizes[i]
3342 + sizeof(struct perf_file_section);
3343 if (hdr_sz != ref_size) {
3344 attr_size = bswap_64(hdr_sz);
3345 if (attr_size != ref_size)
3346 continue;
3347
3348 ph->needs_swap = true;
3349 }
3350 pr_debug("ABI%d perf.data file detected, need_swap=%d\n",
3351 i,
3352 ph->needs_swap);
3353 return 0;
3354 }
3355 /* could not determine endianness */
3356 return -1;
3357}
3358
3359#define PERF_PIPE_HDR_VER0 16
3360
3361static const size_t attr_pipe_abi_sizes[] = {
3362 [0] = PERF_PIPE_HDR_VER0,
3363 0,
3364};
3365
3366/*
3367 * In the legacy pipe format, there is an implicit assumption that endiannesss
3368 * between host recording the samples, and host parsing the samples is the
3369 * same. This is not always the case given that the pipe output may always be
3370 * redirected into a file and analyzed on a different machine with possibly a
3371 * different endianness and perf_event ABI revsions in the perf tool itself.
3372 */
3373static int try_all_pipe_abis(uint64_t hdr_sz, struct perf_header *ph)
3374{
3375 u64 attr_size;
3376 int i;
3377
3378 for (i = 0 ; attr_pipe_abi_sizes[i]; i++) {
3379 if (hdr_sz != attr_pipe_abi_sizes[i]) {
3380 attr_size = bswap_64(hdr_sz);
3381 if (attr_size != hdr_sz)
3382 continue;
3383
3384 ph->needs_swap = true;
3385 }
3386 pr_debug("Pipe ABI%d perf.data file detected\n", i);
3387 return 0;
3388 }
3389 return -1;
3390}
3391
Feng Tange84ba4e2012-10-30 11:56:07 +08003392bool is_perf_magic(u64 magic)
3393{
3394 if (!memcmp(&magic, __perf_magic1, sizeof(magic))
3395 || magic == __perf_magic2
3396 || magic == __perf_magic2_sw)
3397 return true;
3398
3399 return false;
3400}
3401
Stephane Eranian114382a2012-02-09 23:21:08 +01003402static int check_magic_endian(u64 magic, uint64_t hdr_sz,
3403 bool is_pipe, struct perf_header *ph)
Stephane Eranian73323f52012-02-02 13:54:44 +01003404{
3405 int ret;
3406
3407 /* check for legacy format */
Stephane Eranian114382a2012-02-09 23:21:08 +01003408 ret = memcmp(&magic, __perf_magic1, sizeof(magic));
Stephane Eranian73323f52012-02-02 13:54:44 +01003409 if (ret == 0) {
Jiri Olsa2a08c3e2013-07-17 19:49:47 +02003410 ph->version = PERF_HEADER_VERSION_1;
Stephane Eranian73323f52012-02-02 13:54:44 +01003411 pr_debug("legacy perf.data format\n");
Stephane Eranian114382a2012-02-09 23:21:08 +01003412 if (is_pipe)
3413 return try_all_pipe_abis(hdr_sz, ph);
Stephane Eranian73323f52012-02-02 13:54:44 +01003414
Stephane Eranian114382a2012-02-09 23:21:08 +01003415 return try_all_file_abis(hdr_sz, ph);
Stephane Eranian73323f52012-02-02 13:54:44 +01003416 }
Stephane Eranian114382a2012-02-09 23:21:08 +01003417 /*
3418 * the new magic number serves two purposes:
3419 * - unique number to identify actual perf.data files
3420 * - encode endianness of file
3421 */
Namhyung Kimf7913972015-01-29 17:06:45 +09003422 ph->version = PERF_HEADER_VERSION_2;
Stephane Eranian73323f52012-02-02 13:54:44 +01003423
Stephane Eranian114382a2012-02-09 23:21:08 +01003424 /* check magic number with one endianness */
3425 if (magic == __perf_magic2)
Stephane Eranian73323f52012-02-02 13:54:44 +01003426 return 0;
3427
Stephane Eranian114382a2012-02-09 23:21:08 +01003428 /* check magic number with opposite endianness */
3429 if (magic != __perf_magic2_sw)
Stephane Eranian73323f52012-02-02 13:54:44 +01003430 return -1;
3431
3432 ph->needs_swap = true;
3433
3434 return 0;
3435}
3436
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003437int perf_file_header__read(struct perf_file_header *header,
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003438 struct perf_header *ph, int fd)
3439{
Jiri Olsa727ebd52013-11-28 11:30:14 +01003440 ssize_t ret;
Stephane Eranian73323f52012-02-02 13:54:44 +01003441
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003442 lseek(fd, 0, SEEK_SET);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003443
Stephane Eranian73323f52012-02-02 13:54:44 +01003444 ret = readn(fd, header, sizeof(*header));
3445 if (ret <= 0)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003446 return -1;
3447
Stephane Eranian114382a2012-02-09 23:21:08 +01003448 if (check_magic_endian(header->magic,
3449 header->attr_size, false, ph) < 0) {
3450 pr_debug("magic/endian check failed\n");
Stephane Eranian73323f52012-02-02 13:54:44 +01003451 return -1;
Stephane Eranian114382a2012-02-09 23:21:08 +01003452 }
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003453
Stephane Eranian73323f52012-02-02 13:54:44 +01003454 if (ph->needs_swap) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003455 mem_bswap_64(header, offsetof(struct perf_file_header,
Stephane Eranian73323f52012-02-02 13:54:44 +01003456 adds_features));
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003457 }
3458
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003459 if (header->size != sizeof(*header)) {
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003460 /* Support the previous format */
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003461 if (header->size == offsetof(typeof(*header), adds_features))
3462 bitmap_zero(header->adds_features, HEADER_FEAT_BITS);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003463 else
3464 return -1;
David Ahernd327fa42011-10-18 17:34:01 -06003465 } else if (ph->needs_swap) {
David Ahernd327fa42011-10-18 17:34:01 -06003466 /*
3467 * feature bitmap is declared as an array of unsigned longs --
3468 * not good since its size can differ between the host that
3469 * generated the data file and the host analyzing the file.
3470 *
3471 * We need to handle endianness, but we don't know the size of
3472 * the unsigned long where the file was generated. Take a best
3473 * guess at determining it: try 64-bit swap first (ie., file
3474 * created on a 64-bit host), and check if the hostname feature
3475 * bit is set (this feature bit is forced on as of fbe96f2).
3476 * If the bit is not, undo the 64-bit swap and try a 32-bit
3477 * swap. If the hostname bit is still not set (e.g., older data
3478 * file), punt and fallback to the original behavior --
3479 * clearing all feature bits and setting buildid.
3480 */
David Ahern80c01202012-06-08 11:47:51 -03003481 mem_bswap_64(&header->adds_features,
3482 BITS_TO_U64(HEADER_FEAT_BITS));
David Ahernd327fa42011-10-18 17:34:01 -06003483
3484 if (!test_bit(HEADER_HOSTNAME, header->adds_features)) {
David Ahern80c01202012-06-08 11:47:51 -03003485 /* unswap as u64 */
3486 mem_bswap_64(&header->adds_features,
3487 BITS_TO_U64(HEADER_FEAT_BITS));
3488
3489 /* unswap as u32 */
3490 mem_bswap_32(&header->adds_features,
3491 BITS_TO_U32(HEADER_FEAT_BITS));
David Ahernd327fa42011-10-18 17:34:01 -06003492 }
3493
3494 if (!test_bit(HEADER_HOSTNAME, header->adds_features)) {
3495 bitmap_zero(header->adds_features, HEADER_FEAT_BITS);
3496 set_bit(HEADER_BUILD_ID, header->adds_features);
3497 }
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003498 }
3499
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003500 memcpy(&ph->adds_features, &header->adds_features,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003501 sizeof(ph->adds_features));
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003502
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003503 ph->data_offset = header->data.offset;
3504 ph->data_size = header->data.size;
Jiri Olsa8d541e92013-07-17 19:49:44 +02003505 ph->feat_offset = header->data.offset + header->data.size;
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003506 return 0;
3507}
3508
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003509static int perf_file_section__process(struct perf_file_section *section,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003510 struct perf_header *ph,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03003511 int feat, int fd, void *data)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003512{
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07003513 struct feat_fd fdd = {
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07003514 .fd = fd,
3515 .ph = ph,
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07003516 .size = section->size,
3517 .offset = section->offset,
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07003518 };
3519
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003520 if (lseek(fd, section->offset, SEEK_SET) == (off_t)-1) {
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02003521 pr_debug("Failed to lseek to %" PRIu64 " offset for feature "
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003522 "%d, continuing...\n", section->offset, feat);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003523 return 0;
3524 }
3525
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003526 if (feat >= HEADER_LAST_FEATURE) {
3527 pr_debug("unknown feature %d, continuing...\n", feat);
3528 return 0;
3529 }
3530
Robert Richterf1c67db2012-02-10 15:41:56 +01003531 if (!feat_ops[feat].process)
3532 return 0;
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003533
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07003534 return feat_ops[feat].process(&fdd, data);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003535}
3536
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003537static int perf_file_header__read_pipe(struct perf_pipe_file_header *header,
Tom Zanussi454c4072010-05-01 01:41:20 -05003538 struct perf_header *ph, int fd,
3539 bool repipe)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003540{
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003541 struct feat_fd ff = {
3542 .fd = STDOUT_FILENO,
3543 .ph = ph,
3544 };
Jiri Olsa727ebd52013-11-28 11:30:14 +01003545 ssize_t ret;
Stephane Eranian73323f52012-02-02 13:54:44 +01003546
3547 ret = readn(fd, header, sizeof(*header));
3548 if (ret <= 0)
3549 return -1;
3550
Stephane Eranian114382a2012-02-09 23:21:08 +01003551 if (check_magic_endian(header->magic, header->size, true, ph) < 0) {
3552 pr_debug("endian/magic failed\n");
Tom Zanussi8dc58102010-04-01 23:59:15 -05003553 return -1;
Stephane Eranian114382a2012-02-09 23:21:08 +01003554 }
3555
3556 if (ph->needs_swap)
3557 header->size = bswap_64(header->size);
Tom Zanussi8dc58102010-04-01 23:59:15 -05003558
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003559 if (repipe && do_write(&ff, header, sizeof(*header)) < 0)
Tom Zanussi454c4072010-05-01 01:41:20 -05003560 return -1;
3561
Tom Zanussi8dc58102010-04-01 23:59:15 -05003562 return 0;
3563}
3564
Jiri Olsad4339562013-07-17 19:49:41 +02003565static int perf_header__read_pipe(struct perf_session *session)
Tom Zanussi8dc58102010-04-01 23:59:15 -05003566{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003567 struct perf_header *header = &session->header;
Tom Zanussi8dc58102010-04-01 23:59:15 -05003568 struct perf_pipe_file_header f_header;
3569
Jiri Olsacc9784bd2013-10-15 16:27:34 +02003570 if (perf_file_header__read_pipe(&f_header, header,
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003571 perf_data__fd(session->data),
Tom Zanussi454c4072010-05-01 01:41:20 -05003572 session->repipe) < 0) {
Tom Zanussi8dc58102010-04-01 23:59:15 -05003573 pr_debug("incompatible file format\n");
3574 return -EINVAL;
3575 }
3576
Tom Zanussi8dc58102010-04-01 23:59:15 -05003577 return 0;
3578}
3579
Stephane Eranian69996df2012-02-09 23:21:06 +01003580static int read_attr(int fd, struct perf_header *ph,
3581 struct perf_file_attr *f_attr)
3582{
3583 struct perf_event_attr *attr = &f_attr->attr;
3584 size_t sz, left;
3585 size_t our_sz = sizeof(f_attr->attr);
Jiri Olsa727ebd52013-11-28 11:30:14 +01003586 ssize_t ret;
Stephane Eranian69996df2012-02-09 23:21:06 +01003587
3588 memset(f_attr, 0, sizeof(*f_attr));
3589
3590 /* read minimal guaranteed structure */
3591 ret = readn(fd, attr, PERF_ATTR_SIZE_VER0);
3592 if (ret <= 0) {
3593 pr_debug("cannot read %d bytes of header attr\n",
3594 PERF_ATTR_SIZE_VER0);
3595 return -1;
3596 }
3597
3598 /* on file perf_event_attr size */
3599 sz = attr->size;
Stephane Eranian114382a2012-02-09 23:21:08 +01003600
Stephane Eranian69996df2012-02-09 23:21:06 +01003601 if (ph->needs_swap)
3602 sz = bswap_32(sz);
3603
3604 if (sz == 0) {
3605 /* assume ABI0 */
3606 sz = PERF_ATTR_SIZE_VER0;
3607 } else if (sz > our_sz) {
3608 pr_debug("file uses a more recent and unsupported ABI"
3609 " (%zu bytes extra)\n", sz - our_sz);
3610 return -1;
3611 }
3612 /* what we have not yet read and that we know about */
3613 left = sz - PERF_ATTR_SIZE_VER0;
3614 if (left) {
3615 void *ptr = attr;
3616 ptr += PERF_ATTR_SIZE_VER0;
3617
3618 ret = readn(fd, ptr, left);
3619 }
3620 /* read perf_file_section, ids are read in caller */
3621 ret = readn(fd, &f_attr->ids, sizeof(f_attr->ids));
3622
3623 return ret <= 0 ? -1 : 0;
3624}
3625
Jiri Olsa32dcd022019-07-21 13:23:51 +02003626static int perf_evsel__prepare_tracepoint_event(struct evsel *evsel,
Tzvetomir Stoyanov (VMware)096177a2018-08-08 14:02:46 -04003627 struct tep_handle *pevent)
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003628{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003629 struct tep_event *event;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003630 char bf[128];
3631
Namhyung Kim831394b2012-09-06 11:10:46 +09003632 /* already prepared */
3633 if (evsel->tp_format)
3634 return 0;
3635
Namhyung Kim3dce2ce2013-03-21 16:18:48 +09003636 if (pevent == NULL) {
3637 pr_debug("broken or missing trace data\n");
3638 return -1;
3639 }
3640
Jiri Olsa1fc632c2019-07-21 13:24:29 +02003641 event = tep_find_event(pevent, evsel->core.attr.config);
Namhyung Kima7619ae2013-04-18 21:24:16 +09003642 if (event == NULL) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02003643 pr_debug("cannot find event format for %d\n", (int)evsel->core.attr.config);
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003644 return -1;
Namhyung Kima7619ae2013-04-18 21:24:16 +09003645 }
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003646
Namhyung Kim831394b2012-09-06 11:10:46 +09003647 if (!evsel->name) {
3648 snprintf(bf, sizeof(bf), "%s:%s", event->system, event->name);
3649 evsel->name = strdup(bf);
3650 if (evsel->name == NULL)
3651 return -1;
3652 }
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003653
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -03003654 evsel->tp_format = event;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003655 return 0;
3656}
3657
Jiri Olsa63503db2019-07-21 13:23:52 +02003658static int perf_evlist__prepare_tracepoint_events(struct evlist *evlist,
Tzvetomir Stoyanov (VMware)096177a2018-08-08 14:02:46 -04003659 struct tep_handle *pevent)
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003660{
Jiri Olsa32dcd022019-07-21 13:23:51 +02003661 struct evsel *pos;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003662
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003663 evlist__for_each_entry(evlist, pos) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02003664 if (pos->core.attr.type == PERF_TYPE_TRACEPOINT &&
Namhyung Kim831394b2012-09-06 11:10:46 +09003665 perf_evsel__prepare_tracepoint_event(pos, pevent))
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003666 return -1;
3667 }
3668
3669 return 0;
3670}
3671
Jiri Olsad4339562013-07-17 19:49:41 +02003672int perf_session__read_header(struct perf_session *session)
Tom Zanussi8dc58102010-04-01 23:59:15 -05003673{
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003674 struct perf_data *data = session->data;
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003675 struct perf_header *header = &session->header;
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003676 struct perf_file_header f_header;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003677 struct perf_file_attr f_attr;
3678 u64 f_id;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003679 int nr_attrs, nr_ids, i, j;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003680 int fd = perf_data__fd(data);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003681
Jiri Olsa0f98b112019-07-21 13:23:55 +02003682 session->evlist = evlist__new();
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003683 if (session->evlist == NULL)
3684 return -ENOMEM;
3685
Kan Liang2c071442015-08-28 05:48:05 -04003686 session->evlist->env = &header->env;
Arnaldo Carvalho de Melo4cde9982015-09-09 12:25:00 -03003687 session->machines.host.env = &header->env;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003688 if (perf_data__is_pipe(data))
Jiri Olsad4339562013-07-17 19:49:41 +02003689 return perf_header__read_pipe(session);
Tom Zanussi8dc58102010-04-01 23:59:15 -05003690
Stephane Eranian69996df2012-02-09 23:21:06 +01003691 if (perf_file_header__read(&f_header, header, fd) < 0)
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02003692 return -EINVAL;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003693
Namhyung Kimb314e5c2013-09-30 17:19:48 +09003694 /*
3695 * Sanity check that perf.data was written cleanly; data size is
3696 * initialized to 0 and updated only if the on_exit function is run.
3697 * If data size is still 0 then the file contains only partial
3698 * information. Just warn user and process it as much as it can.
3699 */
3700 if (f_header.data.size == 0) {
3701 pr_warning("WARNING: The %s file's data size field is 0 which is unexpected.\n"
3702 "Was the 'perf record' command properly terminated?\n",
Jiri Olsaeae8ad82017-01-23 22:25:41 +01003703 data->file.path);
Namhyung Kimb314e5c2013-09-30 17:19:48 +09003704 }
3705
Vince Weaver76222362019-07-23 11:06:01 -04003706 if (f_header.attr_size == 0) {
3707 pr_err("ERROR: The %s file's attr size field is 0 which is unexpected.\n"
3708 "Was the 'perf record' command properly terminated?\n",
3709 data->file.path);
3710 return -EINVAL;
3711 }
3712
Stephane Eranian69996df2012-02-09 23:21:06 +01003713 nr_attrs = f_header.attrs.size / f_header.attr_size;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003714 lseek(fd, f_header.attrs.offset, SEEK_SET);
3715
3716 for (i = 0; i < nr_attrs; i++) {
Jiri Olsa32dcd022019-07-21 13:23:51 +02003717 struct evsel *evsel;
Peter Zijlstra1c222bc2009-08-06 20:57:41 +02003718 off_t tmp;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003719
Stephane Eranian69996df2012-02-09 23:21:06 +01003720 if (read_attr(fd, header, &f_attr) < 0)
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003721 goto out_errno;
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003722
David Ahern1060ab82015-04-09 16:15:46 -04003723 if (header->needs_swap) {
3724 f_attr.ids.size = bswap_64(f_attr.ids.size);
3725 f_attr.ids.offset = bswap_64(f_attr.ids.offset);
David Aherneda39132011-07-15 12:34:09 -06003726 perf_event__attr_swap(&f_attr.attr);
David Ahern1060ab82015-04-09 16:15:46 -04003727 }
David Aherneda39132011-07-15 12:34:09 -06003728
Peter Zijlstra1c222bc2009-08-06 20:57:41 +02003729 tmp = lseek(fd, 0, SEEK_CUR);
Jiri Olsa365c3ae2019-07-21 13:23:58 +02003730 evsel = evsel__new(&f_attr.attr);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003731
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003732 if (evsel == NULL)
3733 goto out_delete_evlist;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03003734
3735 evsel->needs_swap = header->needs_swap;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003736 /*
3737 * Do it before so that if perf_evsel__alloc_id fails, this
Jiri Olsac12995a2019-07-21 13:23:56 +02003738 * entry gets purged too at evlist__delete().
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003739 */
Jiri Olsaa1cf3a72019-07-21 13:23:59 +02003740 evlist__add(session->evlist, evsel);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003741
3742 nr_ids = f_attr.ids.size / sizeof(u64);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003743 /*
3744 * We don't have the cpu and thread maps on the header, so
3745 * for allocating the perf_sample_id table we fake 1 cpu and
3746 * hattr->ids threads.
3747 */
Jiri Olsa70c20362019-09-03 10:34:29 +02003748 if (perf_evsel__alloc_id(&evsel->core, 1, nr_ids))
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003749 goto out_delete_evlist;
3750
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003751 lseek(fd, f_attr.ids.offset, SEEK_SET);
3752
3753 for (j = 0; j < nr_ids; j++) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003754 if (perf_header__getbuffer64(header, fd, &f_id, sizeof(f_id)))
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003755 goto out_errno;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003756
Jiri Olsab0031c22019-09-03 11:01:04 +02003757 perf_evlist__id_add(&session->evlist->core, &evsel->core, 0, j, f_id);
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02003758 }
Arnaldo Carvalho de Melo11deb1f2009-11-17 01:18:09 -02003759
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003760 lseek(fd, tmp, SEEK_SET);
3761 }
3762
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003763 perf_header__process_sections(header, fd, &session->tevent,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003764 perf_file_section__process);
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +01003765
Namhyung Kim831394b2012-09-06 11:10:46 +09003766 if (perf_evlist__prepare_tracepoint_events(session->evlist,
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003767 session->tevent.pevent))
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003768 goto out_delete_evlist;
3769
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02003770 return 0;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003771out_errno:
3772 return -errno;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003773
3774out_delete_evlist:
Jiri Olsac12995a2019-07-21 13:23:56 +02003775 evlist__delete(session->evlist);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003776 session->evlist = NULL;
3777 return -ENOMEM;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003778}
Frederic Weisbecker0d3a5c82009-08-16 20:56:37 +02003779
Jiri Olsa89f16882018-09-13 14:54:03 +02003780int perf_event__process_feature(struct perf_session *session,
3781 union perf_event *event)
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003782{
Jiri Olsa89f16882018-09-13 14:54:03 +02003783 struct perf_tool *tool = session->tool;
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003784 struct feat_fd ff = { .fd = 0 };
Jiri Olsa72932372019-08-28 15:57:16 +02003785 struct perf_record_header_feature *fe = (struct perf_record_header_feature *)event;
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003786 int type = fe->header.type;
3787 u64 feat = fe->feat_id;
3788
3789 if (type < 0 || type >= PERF_RECORD_HEADER_MAX) {
3790 pr_warning("invalid record type %d in pipe-mode\n", type);
3791 return 0;
3792 }
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303793 if (feat == HEADER_RESERVED || feat >= HEADER_LAST_FEATURE) {
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003794 pr_warning("invalid record type %d in pipe-mode\n", type);
3795 return -1;
3796 }
3797
3798 if (!feat_ops[feat].process)
3799 return 0;
3800
3801 ff.buf = (void *)fe->data;
Jiri Olsa79b2fe52019-07-15 16:04:26 +02003802 ff.size = event->header.size - sizeof(*fe);
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003803 ff.ph = &session->header;
3804
3805 if (feat_ops[feat].process(&ff, NULL))
3806 return -1;
3807
3808 if (!feat_ops[feat].print || !tool->show_feat_hdr)
3809 return 0;
3810
3811 if (!feat_ops[feat].full_only ||
3812 tool->show_feat_hdr >= SHOW_FEAT_HEADER_FULL_INFO) {
3813 feat_ops[feat].print(&ff, stdout);
3814 } else {
3815 fprintf(stdout, "# %s info available, use -I to display\n",
3816 feat_ops[feat].name);
3817 }
3818
3819 return 0;
3820}
3821
Jiri Olsac853f932015-10-25 15:51:41 +01003822size_t perf_event__fprintf_event_update(union perf_event *event, FILE *fp)
3823{
Jiri Olsa72932372019-08-28 15:57:16 +02003824 struct perf_record_event_update *ev = &event->event_update;
3825 struct perf_record_event_update_scale *ev_scale;
3826 struct perf_record_event_update_cpus *ev_cpus;
Jiri Olsaf8548392019-07-21 13:23:49 +02003827 struct perf_cpu_map *map;
Jiri Olsac853f932015-10-25 15:51:41 +01003828 size_t ret;
3829
Jiri Olsa5ded0682019-08-28 15:56:57 +02003830 ret = fprintf(fp, "\n... id: %" PRI_lu64 "\n", ev->id);
Jiri Olsac853f932015-10-25 15:51:41 +01003831
3832 switch (ev->type) {
3833 case PERF_EVENT_UPDATE__SCALE:
Jiri Olsa72932372019-08-28 15:57:16 +02003834 ev_scale = (struct perf_record_event_update_scale *)ev->data;
Jiri Olsac853f932015-10-25 15:51:41 +01003835 ret += fprintf(fp, "... scale: %f\n", ev_scale->scale);
3836 break;
3837 case PERF_EVENT_UPDATE__UNIT:
3838 ret += fprintf(fp, "... unit: %s\n", ev->data);
3839 break;
3840 case PERF_EVENT_UPDATE__NAME:
3841 ret += fprintf(fp, "... name: %s\n", ev->data);
3842 break;
3843 case PERF_EVENT_UPDATE__CPUS:
Jiri Olsa72932372019-08-28 15:57:16 +02003844 ev_cpus = (struct perf_record_event_update_cpus *)ev->data;
Jiri Olsac853f932015-10-25 15:51:41 +01003845 ret += fprintf(fp, "... ");
3846
3847 map = cpu_map__new_data(&ev_cpus->cpus);
3848 if (map)
3849 ret += cpu_map__fprintf(map, fp);
3850 else
3851 ret += fprintf(fp, "failed to get cpus\n");
3852 break;
3853 default:
3854 ret += fprintf(fp, "... unknown type\n");
3855 break;
3856 }
3857
3858 return ret;
3859}
Jiri Olsa86ebb092015-10-25 15:51:40 +01003860
Adrian Hunter47c3d102013-07-04 16:20:21 +03003861int perf_event__process_attr(struct perf_tool *tool __maybe_unused,
3862 union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +02003863 struct evlist **pevlist)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003864{
Robert Richterf4d83432012-08-16 21:10:17 +02003865 u32 i, ids, n_ids;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003866 struct evsel *evsel;
Jiri Olsa63503db2019-07-21 13:23:52 +02003867 struct evlist *evlist = *pevlist;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003868
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003869 if (evlist == NULL) {
Jiri Olsa0f98b112019-07-21 13:23:55 +02003870 *pevlist = evlist = evlist__new();
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003871 if (evlist == NULL)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003872 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003873 }
3874
Jiri Olsa365c3ae2019-07-21 13:23:58 +02003875 evsel = evsel__new(&event->attr.attr);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003876 if (evsel == NULL)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003877 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003878
Jiri Olsaa1cf3a72019-07-21 13:23:59 +02003879 evlist__add(evlist, evsel);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003880
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003881 ids = event->header.size;
3882 ids -= (void *)&event->attr.id - (void *)event;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003883 n_ids = ids / sizeof(u64);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003884 /*
3885 * We don't have the cpu and thread maps on the header, so
3886 * for allocating the perf_sample_id table we fake 1 cpu and
3887 * hattr->ids threads.
3888 */
Jiri Olsa70c20362019-09-03 10:34:29 +02003889 if (perf_evsel__alloc_id(&evsel->core, 1, n_ids))
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003890 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003891
3892 for (i = 0; i < n_ids; i++) {
Jiri Olsab0031c22019-09-03 11:01:04 +02003893 perf_evlist__id_add(&evlist->core, &evsel->core, 0, i, event->attr.id[i]);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003894 }
3895
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003896 return 0;
3897}
Tom Zanussicd19a032010-04-01 23:59:20 -05003898
Jiri Olsaffe777252015-10-25 15:51:36 +01003899int perf_event__process_event_update(struct perf_tool *tool __maybe_unused,
3900 union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +02003901 struct evlist **pevlist)
Jiri Olsaffe777252015-10-25 15:51:36 +01003902{
Jiri Olsa72932372019-08-28 15:57:16 +02003903 struct perf_record_event_update *ev = &event->event_update;
3904 struct perf_record_event_update_scale *ev_scale;
3905 struct perf_record_event_update_cpus *ev_cpus;
Jiri Olsa63503db2019-07-21 13:23:52 +02003906 struct evlist *evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003907 struct evsel *evsel;
Jiri Olsaf8548392019-07-21 13:23:49 +02003908 struct perf_cpu_map *map;
Jiri Olsaffe777252015-10-25 15:51:36 +01003909
3910 if (!pevlist || *pevlist == NULL)
3911 return -EINVAL;
3912
3913 evlist = *pevlist;
3914
3915 evsel = perf_evlist__id2evsel(evlist, ev->id);
3916 if (evsel == NULL)
3917 return -EINVAL;
3918
Jiri Olsaa6e52812015-10-25 15:51:37 +01003919 switch (ev->type) {
3920 case PERF_EVENT_UPDATE__UNIT:
3921 evsel->unit = strdup(ev->data);
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003922 break;
Jiri Olsa802c9042015-10-25 15:51:39 +01003923 case PERF_EVENT_UPDATE__NAME:
3924 evsel->name = strdup(ev->data);
3925 break;
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003926 case PERF_EVENT_UPDATE__SCALE:
Jiri Olsa72932372019-08-28 15:57:16 +02003927 ev_scale = (struct perf_record_event_update_scale *)ev->data;
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003928 evsel->scale = ev_scale->scale;
Arnaldo Carvalho de Melo8434a2e2017-02-08 21:57:22 -03003929 break;
Jiri Olsa86ebb092015-10-25 15:51:40 +01003930 case PERF_EVENT_UPDATE__CPUS:
Jiri Olsa72932372019-08-28 15:57:16 +02003931 ev_cpus = (struct perf_record_event_update_cpus *)ev->data;
Jiri Olsa86ebb092015-10-25 15:51:40 +01003932
3933 map = cpu_map__new_data(&ev_cpus->cpus);
3934 if (map)
Jiri Olsafe1f61b2019-07-21 13:24:38 +02003935 evsel->core.own_cpus = map;
Jiri Olsa86ebb092015-10-25 15:51:40 +01003936 else
3937 pr_err("failed to get event_update cpus\n");
Jiri Olsaa6e52812015-10-25 15:51:37 +01003938 default:
3939 break;
3940 }
3941
Jiri Olsaffe777252015-10-25 15:51:36 +01003942 return 0;
3943}
3944
Jiri Olsa89f16882018-09-13 14:54:03 +02003945int perf_event__process_tracing_data(struct perf_session *session,
3946 union perf_event *event)
Tom Zanussi92155452010-04-01 23:59:21 -05003947{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003948 ssize_t size_read, padding, size = event->tracing_data.size;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003949 int fd = perf_data__fd(session->data);
Jiri Olsacc9784bd2013-10-15 16:27:34 +02003950 off_t offset = lseek(fd, 0, SEEK_CUR);
Tom Zanussi92155452010-04-01 23:59:21 -05003951 char buf[BUFSIZ];
3952
3953 /* setup for reading amidst mmap */
Jiri Olsa72932372019-08-28 15:57:16 +02003954 lseek(fd, offset + sizeof(struct perf_record_header_tracing_data),
Tom Zanussi92155452010-04-01 23:59:21 -05003955 SEEK_SET);
3956
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003957 size_read = trace_report(fd, &session->tevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03003958 session->repipe);
Irina Tirdea9ac3e482012-09-11 01:15:01 +03003959 padding = PERF_ALIGN(size_read, sizeof(u64)) - size_read;
Tom Zanussi92155452010-04-01 23:59:21 -05003960
Jiri Olsacc9784bd2013-10-15 16:27:34 +02003961 if (readn(fd, buf, padding) < 0) {
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03003962 pr_err("%s: reading input file", __func__);
3963 return -1;
3964 }
Tom Zanussi454c4072010-05-01 01:41:20 -05003965 if (session->repipe) {
3966 int retw = write(STDOUT_FILENO, buf, padding);
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03003967 if (retw <= 0 || retw != padding) {
3968 pr_err("%s: repiping tracing data padding", __func__);
3969 return -1;
3970 }
Tom Zanussi454c4072010-05-01 01:41:20 -05003971 }
Tom Zanussi92155452010-04-01 23:59:21 -05003972
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03003973 if (size_read + padding != size) {
3974 pr_err("%s: tracing data size mismatch", __func__);
3975 return -1;
3976 }
Tom Zanussi92155452010-04-01 23:59:21 -05003977
Namhyung Kim831394b2012-09-06 11:10:46 +09003978 perf_evlist__prepare_tracepoint_events(session->evlist,
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003979 session->tevent.pevent);
Arnaldo Carvalho de Melo8b6ee4c2012-08-07 23:36:16 -03003980
Tom Zanussi92155452010-04-01 23:59:21 -05003981 return size_read + padding;
3982}
Tom Zanussic7929e42010-04-01 23:59:22 -05003983
Jiri Olsa89f16882018-09-13 14:54:03 +02003984int perf_event__process_build_id(struct perf_session *session,
3985 union perf_event *event)
Tom Zanussic7929e42010-04-01 23:59:22 -05003986{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003987 __event_process_build_id(&event->build_id,
3988 event->build_id.filename,
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08003989 session);
Tom Zanussic7929e42010-04-01 23:59:22 -05003990 return 0;
3991}