blob: becc2d1094237580901dfe0578ad63900cc77635 [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 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700528 ret = do_write_string(ff, perf_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) {
Namhyung Kima8bb5592013-01-22 18:09:31 +0900786 if (perf_evsel__is_group_leader(evsel) &&
Jiri Olsa5643b1a2019-07-21 13:24:46 +0200787 evsel->core.nr_members > 1) {
Namhyung Kima8bb5592013-01-22 18:09:31 +0900788 const char *name = evsel->group_name ?: "{anon_group}";
789 u32 leader_idx = evsel->idx;
Jiri Olsa5643b1a2019-07-21 13:24:46 +0200790 u32 nr_members = evsel->core.nr_members;
Namhyung Kima8bb5592013-01-22 18:09:31 +0900791
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700792 ret = do_write_string(ff, name);
Namhyung Kima8bb5592013-01-22 18:09:31 +0900793 if (ret < 0)
794 return ret;
795
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700796 ret = do_write(ff, &leader_idx, sizeof(leader_idx));
Namhyung Kima8bb5592013-01-22 18:09:31 +0900797 if (ret < 0)
798 return ret;
799
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700800 ret = do_write(ff, &nr_members, sizeof(nr_members));
Namhyung Kima8bb5592013-01-22 18:09:31 +0900801 if (ret < 0)
802 return ret;
803 }
804 }
805 return 0;
806}
807
808/*
Kan Liangf4a07422018-11-21 08:49:39 -0800809 * Return the CPU id as a raw string.
810 *
811 * Each architecture should provide a more precise id string that
812 * can be use to match the architecture's "mapfile".
813 */
814char * __weak get_cpuid_str(struct perf_pmu *pmu __maybe_unused)
815{
816 return NULL;
817}
818
819/* Return zero when the cpuid from the mapfile.csv matches the
820 * cpuid string generated on this platform.
821 * Otherwise return non-zero.
822 */
823int __weak strcmp_cpuid_str(const char *mapcpuid, const char *cpuid)
824{
825 regex_t re;
826 regmatch_t pmatch[1];
827 int match;
828
829 if (regcomp(&re, mapcpuid, REG_EXTENDED) != 0) {
830 /* Warn unable to generate match particular string. */
831 pr_info("Invalid regular expression %s\n", mapcpuid);
832 return 1;
833 }
834
835 match = !regexec(&re, cpuid, 1, pmatch, 0);
836 regfree(&re);
837 if (match) {
838 size_t match_len = (pmatch[0].rm_eo - pmatch[0].rm_so);
839
840 /* Verify the entire string matched. */
841 if (match_len == strlen(cpuid))
842 return 0;
843 }
844 return 1;
845}
846
847/*
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200848 * default get_cpuid(): nothing gets recorded
Jiada Wang7a759cd2017-04-09 20:02:37 -0700849 * actual implementation must be in arch/$(SRCARCH)/util/header.c
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200850 */
Rui Teng11d8f872016-07-28 10:05:57 +0800851int __weak get_cpuid(char *buffer __maybe_unused, size_t sz __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200852{
853 return -1;
854}
855
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700856static int write_cpuid(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200857 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200858{
859 char buffer[64];
860 int ret;
861
862 ret = get_cpuid(buffer, sizeof(buffer));
Jiri Olsaa9aeb872019-02-13 13:32:43 +0100863 if (ret)
864 return -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200865
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700866 return do_write_string(ff, buffer);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200867}
868
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700869static int write_branch_stack(struct feat_fd *ff __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +0200870 struct evlist *evlist __maybe_unused)
Stephane Eranian330aa672012-03-08 23:47:46 +0100871{
872 return 0;
873}
874
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700875static int write_auxtrace(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200876 struct evlist *evlist __maybe_unused)
Adrian Hunter4025ea42015-04-09 18:53:41 +0300877{
Adrian Hunter99fa2982015-04-30 17:37:25 +0300878 struct perf_session *session;
879 int err;
880
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700881 if (WARN(ff->buf, "Error: calling %s in pipe-mode.\n", __func__))
882 return -1;
883
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700884 session = container_of(ff->ph, struct perf_session, header);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300885
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700886 err = auxtrace_index__write(ff->fd, &session->auxtrace_index);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300887 if (err < 0)
888 pr_err("Failed to write auxtrace index\n");
889 return err;
Adrian Hunter4025ea42015-04-09 18:53:41 +0300890}
891
Alexey Budankovcf790512018-10-09 17:36:24 +0300892static int write_clockid(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200893 struct evlist *evlist __maybe_unused)
Alexey Budankovcf790512018-10-09 17:36:24 +0300894{
895 return do_write(ff, &ff->ph->env.clockid_res_ns,
896 sizeof(ff->ph->env.clockid_res_ns));
897}
898
Jiri Olsa258031c2019-03-08 14:47:39 +0100899static int write_dir_format(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200900 struct evlist *evlist __maybe_unused)
Jiri Olsa258031c2019-03-08 14:47:39 +0100901{
902 struct perf_session *session;
903 struct perf_data *data;
904
905 session = container_of(ff->ph, struct perf_session, header);
906 data = session->data;
907
908 if (WARN_ON(!perf_data__is_dir(data)))
909 return -1;
910
911 return do_write(ff, &data->dir.version, sizeof(data->dir.version));
912}
913
Song Liu606f9722019-03-11 22:30:43 -0700914#ifdef HAVE_LIBBPF_SUPPORT
915static int write_bpf_prog_info(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200916 struct evlist *evlist __maybe_unused)
Song Liu606f9722019-03-11 22:30:43 -0700917{
918 struct perf_env *env = &ff->ph->env;
919 struct rb_root *root;
920 struct rb_node *next;
921 int ret;
922
923 down_read(&env->bpf_progs.lock);
924
925 ret = do_write(ff, &env->bpf_progs.infos_cnt,
926 sizeof(env->bpf_progs.infos_cnt));
927 if (ret < 0)
928 goto out;
929
930 root = &env->bpf_progs.infos;
931 next = rb_first(root);
932 while (next) {
933 struct bpf_prog_info_node *node;
934 size_t len;
935
936 node = rb_entry(next, struct bpf_prog_info_node, rb_node);
937 next = rb_next(&node->rb_node);
938 len = sizeof(struct bpf_prog_info_linear) +
939 node->info_linear->data_len;
940
941 /* before writing to file, translate address to offset */
942 bpf_program__bpil_addr_to_offs(node->info_linear);
943 ret = do_write(ff, node->info_linear, len);
944 /*
945 * translate back to address even when do_write() fails,
946 * so that this function never changes the data.
947 */
948 bpf_program__bpil_offs_to_addr(node->info_linear);
949 if (ret < 0)
950 goto out;
951 }
952out:
953 up_read(&env->bpf_progs.lock);
954 return ret;
955}
956#else // HAVE_LIBBPF_SUPPORT
957static int write_bpf_prog_info(struct feat_fd *ff __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +0200958 struct evlist *evlist __maybe_unused)
Song Liu606f9722019-03-11 22:30:43 -0700959{
960 return 0;
961}
962#endif // HAVE_LIBBPF_SUPPORT
963
Song Liua70a112312019-03-11 22:30:45 -0700964static int write_bpf_btf(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200965 struct evlist *evlist __maybe_unused)
Song Liua70a112312019-03-11 22:30:45 -0700966{
967 struct perf_env *env = &ff->ph->env;
968 struct rb_root *root;
969 struct rb_node *next;
970 int ret;
971
972 down_read(&env->bpf_progs.lock);
973
974 ret = do_write(ff, &env->bpf_progs.btfs_cnt,
975 sizeof(env->bpf_progs.btfs_cnt));
976
977 if (ret < 0)
978 goto out;
979
980 root = &env->bpf_progs.btfs;
981 next = rb_first(root);
982 while (next) {
983 struct btf_node *node;
984
985 node = rb_entry(next, struct btf_node, rb_node);
986 next = rb_next(&node->rb_node);
987 ret = do_write(ff, &node->id,
988 sizeof(u32) * 2 + node->data_size);
989 if (ret < 0)
990 goto out;
991 }
992out:
993 up_read(&env->bpf_progs.lock);
994 return ret;
995}
996
Jiri Olsa720e98b2016-02-16 16:01:43 +0100997static int cpu_cache_level__sort(const void *a, const void *b)
998{
999 struct cpu_cache_level *cache_a = (struct cpu_cache_level *)a;
1000 struct cpu_cache_level *cache_b = (struct cpu_cache_level *)b;
1001
1002 return cache_a->level - cache_b->level;
1003}
1004
1005static bool cpu_cache_level__cmp(struct cpu_cache_level *a, struct cpu_cache_level *b)
1006{
1007 if (a->level != b->level)
1008 return false;
1009
1010 if (a->line_size != b->line_size)
1011 return false;
1012
1013 if (a->sets != b->sets)
1014 return false;
1015
1016 if (a->ways != b->ways)
1017 return false;
1018
1019 if (strcmp(a->type, b->type))
1020 return false;
1021
1022 if (strcmp(a->size, b->size))
1023 return false;
1024
1025 if (strcmp(a->map, b->map))
1026 return false;
1027
1028 return true;
1029}
1030
1031static int cpu_cache_level__read(struct cpu_cache_level *cache, u32 cpu, u16 level)
1032{
1033 char path[PATH_MAX], file[PATH_MAX];
1034 struct stat st;
1035 size_t len;
1036
1037 scnprintf(path, PATH_MAX, "devices/system/cpu/cpu%d/cache/index%d/", cpu, level);
1038 scnprintf(file, PATH_MAX, "%s/%s", sysfs__mountpoint(), path);
1039
1040 if (stat(file, &st))
1041 return 1;
1042
1043 scnprintf(file, PATH_MAX, "%s/level", path);
1044 if (sysfs__read_int(file, (int *) &cache->level))
1045 return -1;
1046
1047 scnprintf(file, PATH_MAX, "%s/coherency_line_size", path);
1048 if (sysfs__read_int(file, (int *) &cache->line_size))
1049 return -1;
1050
1051 scnprintf(file, PATH_MAX, "%s/number_of_sets", path);
1052 if (sysfs__read_int(file, (int *) &cache->sets))
1053 return -1;
1054
1055 scnprintf(file, PATH_MAX, "%s/ways_of_associativity", path);
1056 if (sysfs__read_int(file, (int *) &cache->ways))
1057 return -1;
1058
1059 scnprintf(file, PATH_MAX, "%s/type", path);
1060 if (sysfs__read_str(file, &cache->type, &len))
1061 return -1;
1062
1063 cache->type[len] = 0;
Arnaldo Carvalho de Melo13c230a2019-06-26 12:13:13 -03001064 cache->type = strim(cache->type);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001065
1066 scnprintf(file, PATH_MAX, "%s/size", path);
1067 if (sysfs__read_str(file, &cache->size, &len)) {
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03001068 zfree(&cache->type);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001069 return -1;
1070 }
1071
1072 cache->size[len] = 0;
Arnaldo Carvalho de Melo13c230a2019-06-26 12:13:13 -03001073 cache->size = strim(cache->size);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001074
1075 scnprintf(file, PATH_MAX, "%s/shared_cpu_list", path);
1076 if (sysfs__read_str(file, &cache->map, &len)) {
Jiri Olsa02162342019-09-12 12:52:35 +02001077 zfree(&cache->size);
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03001078 zfree(&cache->type);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001079 return -1;
1080 }
1081
1082 cache->map[len] = 0;
Arnaldo Carvalho de Melo13c230a2019-06-26 12:13:13 -03001083 cache->map = strim(cache->map);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001084 return 0;
1085}
1086
1087static void cpu_cache_level__fprintf(FILE *out, struct cpu_cache_level *c)
1088{
1089 fprintf(out, "L%d %-15s %8s [%s]\n", c->level, c->type, c->size, c->map);
1090}
1091
1092static int build_caches(struct cpu_cache_level caches[], u32 size, u32 *cntp)
1093{
1094 u32 i, cnt = 0;
1095 long ncpus;
1096 u32 nr, cpu;
1097 u16 level;
1098
1099 ncpus = sysconf(_SC_NPROCESSORS_CONF);
1100 if (ncpus < 0)
1101 return -1;
1102
1103 nr = (u32)(ncpus & UINT_MAX);
1104
1105 for (cpu = 0; cpu < nr; cpu++) {
1106 for (level = 0; level < 10; level++) {
1107 struct cpu_cache_level c;
1108 int err;
1109
1110 err = cpu_cache_level__read(&c, cpu, level);
1111 if (err < 0)
1112 return err;
1113
1114 if (err == 1)
1115 break;
1116
1117 for (i = 0; i < cnt; i++) {
1118 if (cpu_cache_level__cmp(&c, &caches[i]))
1119 break;
1120 }
1121
1122 if (i == cnt)
1123 caches[cnt++] = c;
1124 else
1125 cpu_cache_level__free(&c);
1126
1127 if (WARN_ONCE(cnt == size, "way too many cpu caches.."))
1128 goto out;
1129 }
1130 }
1131 out:
1132 *cntp = cnt;
1133 return 0;
1134}
1135
Kyle Meyerdc841872019-08-27 16:43:51 -05001136#define MAX_CACHE_LVL 4
Jiri Olsa720e98b2016-02-16 16:01:43 +01001137
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001138static int write_cache(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +02001139 struct evlist *evlist __maybe_unused)
Jiri Olsa720e98b2016-02-16 16:01:43 +01001140{
Kyle Meyerdc841872019-08-27 16:43:51 -05001141 u32 max_caches = cpu__max_cpu() * MAX_CACHE_LVL;
1142 struct cpu_cache_level caches[max_caches];
Jiri Olsa720e98b2016-02-16 16:01:43 +01001143 u32 cnt = 0, i, version = 1;
1144 int ret;
1145
Kyle Meyerdc841872019-08-27 16:43:51 -05001146 ret = build_caches(caches, max_caches, &cnt);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001147 if (ret)
1148 goto out;
1149
1150 qsort(&caches, cnt, sizeof(struct cpu_cache_level), cpu_cache_level__sort);
1151
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001152 ret = do_write(ff, &version, sizeof(u32));
Jiri Olsa720e98b2016-02-16 16:01:43 +01001153 if (ret < 0)
1154 goto out;
1155
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001156 ret = do_write(ff, &cnt, sizeof(u32));
Jiri Olsa720e98b2016-02-16 16:01:43 +01001157 if (ret < 0)
1158 goto out;
1159
1160 for (i = 0; i < cnt; i++) {
1161 struct cpu_cache_level *c = &caches[i];
1162
1163 #define _W(v) \
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001164 ret = do_write(ff, &c->v, sizeof(u32)); \
Jiri Olsa720e98b2016-02-16 16:01:43 +01001165 if (ret < 0) \
1166 goto out;
1167
1168 _W(level)
1169 _W(line_size)
1170 _W(sets)
1171 _W(ways)
1172 #undef _W
1173
1174 #define _W(v) \
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001175 ret = do_write_string(ff, (const char *) c->v); \
Jiri Olsa720e98b2016-02-16 16:01:43 +01001176 if (ret < 0) \
1177 goto out;
1178
1179 _W(type)
1180 _W(size)
1181 _W(map)
1182 #undef _W
1183 }
1184
1185out:
1186 for (i = 0; i < cnt; i++)
1187 cpu_cache_level__free(&caches[i]);
1188 return ret;
1189}
1190
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001191static int write_stat(struct feat_fd *ff __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +02001192 struct evlist *evlist __maybe_unused)
Jiri Olsaffa517a2015-10-25 15:51:43 +01001193{
1194 return 0;
1195}
1196
Jin Yao60115182017-12-08 21:13:41 +08001197static int write_sample_time(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +02001198 struct evlist *evlist)
Jin Yao60115182017-12-08 21:13:41 +08001199{
1200 int ret;
1201
1202 ret = do_write(ff, &evlist->first_sample_time,
1203 sizeof(evlist->first_sample_time));
1204 if (ret < 0)
1205 return ret;
1206
1207 return do_write(ff, &evlist->last_sample_time,
1208 sizeof(evlist->last_sample_time));
1209}
1210
Jiri Olsae2091ce2018-03-07 16:50:08 +01001211
1212static int memory_node__read(struct memory_node *n, unsigned long idx)
1213{
1214 unsigned int phys, size = 0;
1215 char path[PATH_MAX];
1216 struct dirent *ent;
1217 DIR *dir;
1218
1219#define for_each_memory(mem, dir) \
1220 while ((ent = readdir(dir))) \
1221 if (strcmp(ent->d_name, ".") && \
1222 strcmp(ent->d_name, "..") && \
1223 sscanf(ent->d_name, "memory%u", &mem) == 1)
1224
1225 scnprintf(path, PATH_MAX,
1226 "%s/devices/system/node/node%lu",
1227 sysfs__mountpoint(), idx);
1228
1229 dir = opendir(path);
1230 if (!dir) {
1231 pr_warning("failed: cant' open memory sysfs data\n");
1232 return -1;
1233 }
1234
1235 for_each_memory(phys, dir) {
1236 size = max(phys, size);
1237 }
1238
1239 size++;
1240
1241 n->set = bitmap_alloc(size);
1242 if (!n->set) {
1243 closedir(dir);
1244 return -ENOMEM;
1245 }
1246
Jiri Olsae2091ce2018-03-07 16:50:08 +01001247 n->node = idx;
1248 n->size = size;
1249
1250 rewinddir(dir);
1251
1252 for_each_memory(phys, dir) {
1253 set_bit(phys, n->set);
1254 }
1255
1256 closedir(dir);
1257 return 0;
1258}
1259
1260static int memory_node__sort(const void *a, const void *b)
1261{
1262 const struct memory_node *na = a;
1263 const struct memory_node *nb = b;
1264
1265 return na->node - nb->node;
1266}
1267
1268static int build_mem_topology(struct memory_node *nodes, u64 size, u64 *cntp)
1269{
1270 char path[PATH_MAX];
1271 struct dirent *ent;
1272 DIR *dir;
1273 u64 cnt = 0;
1274 int ret = 0;
1275
1276 scnprintf(path, PATH_MAX, "%s/devices/system/node/",
1277 sysfs__mountpoint());
1278
1279 dir = opendir(path);
1280 if (!dir) {
Thomas Richter4f75f1cb2018-04-12 15:32:46 +02001281 pr_debug2("%s: could't read %s, does this arch have topology information?\n",
1282 __func__, path);
Jiri Olsae2091ce2018-03-07 16:50:08 +01001283 return -1;
1284 }
1285
1286 while (!ret && (ent = readdir(dir))) {
1287 unsigned int idx;
1288 int r;
1289
1290 if (!strcmp(ent->d_name, ".") ||
1291 !strcmp(ent->d_name, ".."))
1292 continue;
1293
1294 r = sscanf(ent->d_name, "node%u", &idx);
1295 if (r != 1)
1296 continue;
1297
1298 if (WARN_ONCE(cnt >= size,
Yunfeng Ye60807282019-10-15 16:30:08 +08001299 "failed to write MEM_TOPOLOGY, way too many nodes\n")) {
1300 closedir(dir);
Jiri Olsae2091ce2018-03-07 16:50:08 +01001301 return -1;
Yunfeng Ye60807282019-10-15 16:30:08 +08001302 }
Jiri Olsae2091ce2018-03-07 16:50:08 +01001303
1304 ret = memory_node__read(&nodes[cnt++], idx);
1305 }
1306
1307 *cntp = cnt;
1308 closedir(dir);
1309
1310 if (!ret)
1311 qsort(nodes, cnt, sizeof(nodes[0]), memory_node__sort);
1312
1313 return ret;
1314}
1315
1316#define MAX_MEMORY_NODES 2000
1317
1318/*
1319 * The MEM_TOPOLOGY holds physical memory map for every
1320 * node in system. The format of data is as follows:
1321 *
1322 * 0 - version | for future changes
1323 * 8 - block_size_bytes | /sys/devices/system/memory/block_size_bytes
1324 * 16 - count | number of nodes
1325 *
1326 * For each node we store map of physical indexes for
1327 * each node:
1328 *
1329 * 32 - node id | node index
1330 * 40 - size | size of bitmap
1331 * 48 - bitmap | bitmap of memory indexes that belongs to node
1332 */
1333static int write_mem_topology(struct feat_fd *ff __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +02001334 struct evlist *evlist __maybe_unused)
Jiri Olsae2091ce2018-03-07 16:50:08 +01001335{
1336 static struct memory_node nodes[MAX_MEMORY_NODES];
1337 u64 bsize, version = 1, i, nr;
1338 int ret;
1339
1340 ret = sysfs__read_xll("devices/system/memory/block_size_bytes",
1341 (unsigned long long *) &bsize);
1342 if (ret)
1343 return ret;
1344
1345 ret = build_mem_topology(&nodes[0], MAX_MEMORY_NODES, &nr);
1346 if (ret)
1347 return ret;
1348
1349 ret = do_write(ff, &version, sizeof(version));
1350 if (ret < 0)
1351 goto out;
1352
1353 ret = do_write(ff, &bsize, sizeof(bsize));
1354 if (ret < 0)
1355 goto out;
1356
1357 ret = do_write(ff, &nr, sizeof(nr));
1358 if (ret < 0)
1359 goto out;
1360
1361 for (i = 0; i < nr; i++) {
1362 struct memory_node *n = &nodes[i];
1363
1364 #define _W(v) \
1365 ret = do_write(ff, &n->v, sizeof(n->v)); \
1366 if (ret < 0) \
1367 goto out;
1368
1369 _W(node)
1370 _W(size)
1371
1372 #undef _W
1373
1374 ret = do_write_bitmap(ff, n->set, n->size);
1375 if (ret < 0)
1376 goto out;
1377 }
1378
1379out:
1380 return ret;
1381}
1382
Alexey Budankov42e1fd82019-03-18 20:41:33 +03001383static int write_compressed(struct feat_fd *ff __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +02001384 struct evlist *evlist __maybe_unused)
Alexey Budankov42e1fd82019-03-18 20:41:33 +03001385{
1386 int ret;
1387
1388 ret = do_write(ff, &(ff->ph->env.comp_ver), sizeof(ff->ph->env.comp_ver));
1389 if (ret)
1390 return ret;
1391
1392 ret = do_write(ff, &(ff->ph->env.comp_type), sizeof(ff->ph->env.comp_type));
1393 if (ret)
1394 return ret;
1395
1396 ret = do_write(ff, &(ff->ph->env.comp_level), sizeof(ff->ph->env.comp_level));
1397 if (ret)
1398 return ret;
1399
1400 ret = do_write(ff, &(ff->ph->env.comp_ratio), sizeof(ff->ph->env.comp_ratio));
1401 if (ret)
1402 return ret;
1403
1404 return do_write(ff, &(ff->ph->env.comp_mmap_len), sizeof(ff->ph->env.comp_mmap_len));
1405}
1406
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001407static void print_hostname(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001408{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001409 fprintf(fp, "# hostname : %s\n", ff->ph->env.hostname);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001410}
1411
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001412static void print_osrelease(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001413{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001414 fprintf(fp, "# os release : %s\n", ff->ph->env.os_release);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001415}
1416
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001417static void print_arch(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001418{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001419 fprintf(fp, "# arch : %s\n", ff->ph->env.arch);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001420}
1421
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001422static void print_cpudesc(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001423{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001424 fprintf(fp, "# cpudesc : %s\n", ff->ph->env.cpu_desc);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001425}
1426
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001427static void print_nrcpus(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001428{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001429 fprintf(fp, "# nrcpus online : %u\n", ff->ph->env.nr_cpus_online);
1430 fprintf(fp, "# nrcpus avail : %u\n", ff->ph->env.nr_cpus_avail);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001431}
1432
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001433static void print_version(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001434{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001435 fprintf(fp, "# perf version : %s\n", ff->ph->env.version);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001436}
1437
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001438static void print_cmdline(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001439{
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001440 int nr, i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001441
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001442 nr = ff->ph->env.nr_cmdline;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001443
1444 fprintf(fp, "# cmdline : ");
1445
Alexey Budankovf92da712018-06-04 09:50:56 +03001446 for (i = 0; i < nr; i++) {
1447 char *argv_i = strdup(ff->ph->env.cmdline_argv[i]);
1448 if (!argv_i) {
1449 fprintf(fp, "%s ", ff->ph->env.cmdline_argv[i]);
1450 } else {
1451 char *mem = argv_i;
1452 do {
1453 char *quote = strchr(argv_i, '\'');
1454 if (!quote)
1455 break;
1456 *quote++ = '\0';
1457 fprintf(fp, "%s\\\'", argv_i);
1458 argv_i = quote;
1459 } while (1);
1460 fprintf(fp, "%s ", argv_i);
1461 free(mem);
1462 }
1463 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001464 fputc('\n', fp);
1465}
1466
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001467static void print_cpu_topology(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001468{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001469 struct perf_header *ph = ff->ph;
1470 int cpu_nr = ph->env.nr_cpus_avail;
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001471 int nr, i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001472 char *str;
1473
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001474 nr = ph->env.nr_sibling_cores;
1475 str = ph->env.sibling_cores;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001476
1477 for (i = 0; i < nr; i++) {
Kan Liange05a8992019-06-04 15:50:43 -07001478 fprintf(fp, "# sibling sockets : %s\n", str);
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001479 str += strlen(str) + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001480 }
1481
Kan Liangacae8b32019-06-04 15:50:41 -07001482 if (ph->env.nr_sibling_dies) {
1483 nr = ph->env.nr_sibling_dies;
1484 str = ph->env.sibling_dies;
1485
1486 for (i = 0; i < nr; i++) {
1487 fprintf(fp, "# sibling dies : %s\n", str);
1488 str += strlen(str) + 1;
1489 }
1490 }
1491
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001492 nr = ph->env.nr_sibling_threads;
1493 str = ph->env.sibling_threads;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001494
1495 for (i = 0; i < nr; i++) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001496 fprintf(fp, "# sibling threads : %s\n", str);
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001497 str += strlen(str) + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001498 }
Kan Liang2bb00d22015-09-01 09:58:12 -04001499
Kan Liangacae8b32019-06-04 15:50:41 -07001500 if (ph->env.nr_sibling_dies) {
1501 if (ph->env.cpu != NULL) {
1502 for (i = 0; i < cpu_nr; i++)
1503 fprintf(fp, "# CPU %d: Core ID %d, "
1504 "Die ID %d, Socket ID %d\n",
1505 i, ph->env.cpu[i].core_id,
1506 ph->env.cpu[i].die_id,
1507 ph->env.cpu[i].socket_id);
1508 } else
1509 fprintf(fp, "# Core ID, Die ID and Socket ID "
1510 "information is not available\n");
1511 } else {
1512 if (ph->env.cpu != NULL) {
1513 for (i = 0; i < cpu_nr; i++)
1514 fprintf(fp, "# CPU %d: Core ID %d, "
1515 "Socket ID %d\n",
1516 i, ph->env.cpu[i].core_id,
1517 ph->env.cpu[i].socket_id);
1518 } else
1519 fprintf(fp, "# Core ID and Socket ID "
1520 "information is not available\n");
1521 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001522}
1523
Alexey Budankovcf790512018-10-09 17:36:24 +03001524static void print_clockid(struct feat_fd *ff, FILE *fp)
1525{
1526 fprintf(fp, "# clockid frequency: %"PRIu64" MHz\n",
1527 ff->ph->env.clockid_res_ns * 1000);
1528}
1529
Jiri Olsa258031c2019-03-08 14:47:39 +01001530static void print_dir_format(struct feat_fd *ff, FILE *fp)
1531{
1532 struct perf_session *session;
1533 struct perf_data *data;
1534
1535 session = container_of(ff->ph, struct perf_session, header);
1536 data = session->data;
1537
1538 fprintf(fp, "# directory data version : %"PRIu64"\n", data->dir.version);
1539}
1540
Song Liu606f9722019-03-11 22:30:43 -07001541static void print_bpf_prog_info(struct feat_fd *ff, FILE *fp)
1542{
1543 struct perf_env *env = &ff->ph->env;
1544 struct rb_root *root;
1545 struct rb_node *next;
1546
1547 down_read(&env->bpf_progs.lock);
1548
1549 root = &env->bpf_progs.infos;
1550 next = rb_first(root);
1551
1552 while (next) {
1553 struct bpf_prog_info_node *node;
1554
1555 node = rb_entry(next, struct bpf_prog_info_node, rb_node);
1556 next = rb_next(&node->rb_node);
Song Liuf8dfeae2019-03-19 09:54:54 -07001557
1558 bpf_event__print_bpf_prog_info(&node->info_linear->info,
1559 env, fp);
Song Liu606f9722019-03-11 22:30:43 -07001560 }
1561
1562 up_read(&env->bpf_progs.lock);
1563}
1564
Song Liua70a112312019-03-11 22:30:45 -07001565static void print_bpf_btf(struct feat_fd *ff, FILE *fp)
1566{
1567 struct perf_env *env = &ff->ph->env;
1568 struct rb_root *root;
1569 struct rb_node *next;
1570
1571 down_read(&env->bpf_progs.lock);
1572
1573 root = &env->bpf_progs.btfs;
1574 next = rb_first(root);
1575
1576 while (next) {
1577 struct btf_node *node;
1578
1579 node = rb_entry(next, struct btf_node, rb_node);
1580 next = rb_next(&node->rb_node);
1581 fprintf(fp, "# btf info of id %u\n", node->id);
1582 }
1583
1584 up_read(&env->bpf_progs.lock);
1585}
1586
Jiri Olsa32dcd022019-07-21 13:23:51 +02001587static void free_event_desc(struct evsel *events)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001588{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001589 struct evsel *evsel;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001590
1591 if (!events)
1592 return;
1593
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001594 for (evsel = events; evsel->core.attr.size; evsel++) {
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001595 zfree(&evsel->name);
Jiri Olsadeaf3212019-09-02 22:12:26 +02001596 zfree(&evsel->core.id);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001597 }
1598
1599 free(events);
1600}
1601
Jiri Olsa32dcd022019-07-21 13:23:51 +02001602static struct evsel *read_event_desc(struct feat_fd *ff)
Robert Richter4e1b9c62012-08-16 21:10:22 +02001603{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001604 struct evsel *evsel, *events = NULL;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001605 u64 *id;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001606 void *buf = NULL;
Stephane Eranian62db9062012-02-09 23:21:07 +01001607 u32 nre, sz, nr, i, j;
Stephane Eranian62db9062012-02-09 23:21:07 +01001608 size_t msz;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001609
1610 /* number of events */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001611 if (do_read_u32(ff, &nre))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001612 goto error;
1613
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001614 if (do_read_u32(ff, &sz))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001615 goto error;
1616
Stephane Eranian62db9062012-02-09 23:21:07 +01001617 /* buffer to hold on file attr struct */
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001618 buf = malloc(sz);
1619 if (!buf)
1620 goto error;
1621
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001622 /* the last event terminates with evsel->core.attr.size == 0: */
Robert Richter4e1b9c62012-08-16 21:10:22 +02001623 events = calloc(nre + 1, sizeof(*events));
1624 if (!events)
1625 goto error;
1626
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001627 msz = sizeof(evsel->core.attr);
Jiri Olsa9fafd982012-03-20 19:15:39 +01001628 if (sz < msz)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001629 msz = sz;
1630
Robert Richter4e1b9c62012-08-16 21:10:22 +02001631 for (i = 0, evsel = events; i < nre; evsel++, i++) {
1632 evsel->idx = i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001633
Stephane Eranian62db9062012-02-09 23:21:07 +01001634 /*
1635 * must read entire on-file attr struct to
1636 * sync up with layout.
1637 */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001638 if (__do_read(ff, buf, sz))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001639 goto error;
1640
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001641 if (ff->ph->needs_swap)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001642 perf_event__attr_swap(buf);
1643
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001644 memcpy(&evsel->core.attr, buf, msz);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001645
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001646 if (do_read_u32(ff, &nr))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001647 goto error;
1648
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001649 if (ff->ph->needs_swap)
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001650 evsel->needs_swap = true;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001651
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001652 evsel->name = do_read_string(ff);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07001653 if (!evsel->name)
1654 goto error;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001655
1656 if (!nr)
1657 continue;
1658
1659 id = calloc(nr, sizeof(*id));
1660 if (!id)
1661 goto error;
Jiri Olsae7eb9002019-09-02 22:15:47 +02001662 evsel->core.ids = nr;
Jiri Olsadeaf3212019-09-02 22:12:26 +02001663 evsel->core.id = id;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001664
1665 for (j = 0 ; j < nr; j++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001666 if (do_read_u64(ff, id))
Robert Richter4e1b9c62012-08-16 21:10:22 +02001667 goto error;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001668 id++;
1669 }
1670 }
1671out:
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001672 free(buf);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001673 return events;
1674error:
Markus Elfring4cc97612015-06-25 17:12:32 +02001675 free_event_desc(events);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001676 events = NULL;
1677 goto out;
1678}
1679
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001680static int __desc_attr__fprintf(FILE *fp, const char *name, const char *val,
Arnaldo Carvalho de Melo03536312017-06-16 12:18:27 -03001681 void *priv __maybe_unused)
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001682{
1683 return fprintf(fp, ", %s = %s", name, val);
1684}
1685
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001686static void print_event_desc(struct feat_fd *ff, FILE *fp)
Robert Richter4e1b9c62012-08-16 21:10:22 +02001687{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001688 struct evsel *evsel, *events;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001689 u32 j;
1690 u64 *id;
1691
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07001692 if (ff->events)
1693 events = ff->events;
1694 else
1695 events = read_event_desc(ff);
1696
Robert Richter4e1b9c62012-08-16 21:10:22 +02001697 if (!events) {
1698 fprintf(fp, "# event desc: not available or unable to read\n");
1699 return;
1700 }
1701
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001702 for (evsel = events; evsel->core.attr.size; evsel++) {
Robert Richter4e1b9c62012-08-16 21:10:22 +02001703 fprintf(fp, "# event : name = %s, ", evsel->name);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001704
Jiri Olsae7eb9002019-09-02 22:15:47 +02001705 if (evsel->core.ids) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001706 fprintf(fp, ", id = {");
Jiri Olsae7eb9002019-09-02 22:15:47 +02001707 for (j = 0, id = evsel->core.id; j < evsel->core.ids; j++, id++) {
Robert Richter4e1b9c62012-08-16 21:10:22 +02001708 if (j)
1709 fputc(',', fp);
1710 fprintf(fp, " %"PRIu64, *id);
1711 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001712 fprintf(fp, " }");
Robert Richter4e1b9c62012-08-16 21:10:22 +02001713 }
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001714
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001715 perf_event_attr__fprintf(fp, &evsel->core.attr, __desc_attr__fprintf, NULL);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001716
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001717 fputc('\n', fp);
1718 }
Robert Richter4e1b9c62012-08-16 21:10:22 +02001719
1720 free_event_desc(events);
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07001721 ff->events = NULL;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001722}
1723
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001724static void print_total_mem(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001725{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001726 fprintf(fp, "# total memory : %llu kB\n", ff->ph->env.total_mem);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001727}
1728
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001729static void print_numa_topology(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001730{
Jiri Olsac60da222016-07-04 14:16:20 +02001731 int i;
1732 struct numa_node *n;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001733
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001734 for (i = 0; i < ff->ph->env.nr_numa_nodes; i++) {
1735 n = &ff->ph->env.numa_nodes[i];
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001736
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001737 fprintf(fp, "# node%u meminfo : total = %"PRIu64" kB,"
1738 " free = %"PRIu64" kB\n",
Jiri Olsac60da222016-07-04 14:16:20 +02001739 n->node, n->mem_total, n->mem_free);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001740
Jiri Olsac60da222016-07-04 14:16:20 +02001741 fprintf(fp, "# node%u cpu list : ", n->node);
1742 cpu_map__fprintf(n->map, fp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001743 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001744}
1745
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001746static void print_cpuid(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001747{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001748 fprintf(fp, "# cpuid : %s\n", ff->ph->env.cpuid);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001749}
1750
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001751static void print_branch_stack(struct feat_fd *ff __maybe_unused, FILE *fp)
Stephane Eranian330aa672012-03-08 23:47:46 +01001752{
1753 fprintf(fp, "# contains samples with branch stack\n");
1754}
1755
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001756static void print_auxtrace(struct feat_fd *ff __maybe_unused, FILE *fp)
Adrian Hunter4025ea42015-04-09 18:53:41 +03001757{
1758 fprintf(fp, "# contains AUX area data (e.g. instruction trace)\n");
1759}
1760
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001761static void print_stat(struct feat_fd *ff __maybe_unused, FILE *fp)
Jiri Olsaffa517a2015-10-25 15:51:43 +01001762{
1763 fprintf(fp, "# contains stat data\n");
1764}
1765
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001766static void print_cache(struct feat_fd *ff, FILE *fp __maybe_unused)
Jiri Olsa720e98b2016-02-16 16:01:43 +01001767{
1768 int i;
1769
1770 fprintf(fp, "# CPU cache info:\n");
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001771 for (i = 0; i < ff->ph->env.caches_cnt; i++) {
Jiri Olsa720e98b2016-02-16 16:01:43 +01001772 fprintf(fp, "# ");
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001773 cpu_cache_level__fprintf(fp, &ff->ph->env.caches[i]);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001774 }
1775}
1776
Alexey Budankov42e1fd82019-03-18 20:41:33 +03001777static void print_compressed(struct feat_fd *ff, FILE *fp)
1778{
1779 fprintf(fp, "# compressed : %s, level = %d, ratio = %d\n",
1780 ff->ph->env.comp_type == PERF_COMP_ZSTD ? "Zstd" : "Unknown",
1781 ff->ph->env.comp_level, ff->ph->env.comp_ratio);
1782}
1783
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001784static void print_pmu_mappings(struct feat_fd *ff, FILE *fp)
Robert Richter50a96672012-08-16 21:10:24 +02001785{
1786 const char *delimiter = "# pmu mappings: ";
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001787 char *str, *tmp;
Robert Richter50a96672012-08-16 21:10:24 +02001788 u32 pmu_num;
1789 u32 type;
1790
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001791 pmu_num = ff->ph->env.nr_pmu_mappings;
Robert Richter50a96672012-08-16 21:10:24 +02001792 if (!pmu_num) {
1793 fprintf(fp, "# pmu mappings: not available\n");
1794 return;
1795 }
1796
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001797 str = ff->ph->env.pmu_mappings;
Namhyung Kimbe4a2de2012-09-05 14:02:49 +09001798
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001799 while (pmu_num) {
1800 type = strtoul(str, &tmp, 0);
1801 if (*tmp != ':')
1802 goto error;
1803
1804 str = tmp + 1;
1805 fprintf(fp, "%s%s = %" PRIu32, delimiter, str, type);
1806
Robert Richter50a96672012-08-16 21:10:24 +02001807 delimiter = ", ";
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001808 str += strlen(str) + 1;
1809 pmu_num--;
Robert Richter50a96672012-08-16 21:10:24 +02001810 }
1811
1812 fprintf(fp, "\n");
1813
1814 if (!pmu_num)
1815 return;
1816error:
1817 fprintf(fp, "# pmu mappings: unable to read\n");
1818}
1819
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001820static void print_group_desc(struct feat_fd *ff, FILE *fp)
Namhyung Kima8bb5592013-01-22 18:09:31 +09001821{
1822 struct perf_session *session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02001823 struct evsel *evsel;
Namhyung Kima8bb5592013-01-22 18:09:31 +09001824 u32 nr = 0;
1825
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001826 session = container_of(ff->ph, struct perf_session, header);
Namhyung Kima8bb5592013-01-22 18:09:31 +09001827
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001828 evlist__for_each_entry(session->evlist, evsel) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09001829 if (perf_evsel__is_group_leader(evsel) &&
Jiri Olsa5643b1a2019-07-21 13:24:46 +02001830 evsel->core.nr_members > 1) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09001831 fprintf(fp, "# group: %s{%s", evsel->group_name ?: "",
1832 perf_evsel__name(evsel));
1833
Jiri Olsa5643b1a2019-07-21 13:24:46 +02001834 nr = evsel->core.nr_members - 1;
Namhyung Kima8bb5592013-01-22 18:09:31 +09001835 } else if (nr) {
1836 fprintf(fp, ",%s", perf_evsel__name(evsel));
1837
1838 if (--nr == 0)
1839 fprintf(fp, "}\n");
1840 }
1841 }
1842}
1843
Jin Yao60115182017-12-08 21:13:41 +08001844static void print_sample_time(struct feat_fd *ff, FILE *fp)
1845{
1846 struct perf_session *session;
1847 char time_buf[32];
1848 double d;
1849
1850 session = container_of(ff->ph, struct perf_session, header);
1851
1852 timestamp__scnprintf_usec(session->evlist->first_sample_time,
1853 time_buf, sizeof(time_buf));
1854 fprintf(fp, "# time of first sample : %s\n", time_buf);
1855
1856 timestamp__scnprintf_usec(session->evlist->last_sample_time,
1857 time_buf, sizeof(time_buf));
1858 fprintf(fp, "# time of last sample : %s\n", time_buf);
1859
1860 d = (double)(session->evlist->last_sample_time -
1861 session->evlist->first_sample_time) / NSEC_PER_MSEC;
1862
1863 fprintf(fp, "# sample duration : %10.3f ms\n", d);
1864}
1865
Jiri Olsae2091ce2018-03-07 16:50:08 +01001866static void memory_node__fprintf(struct memory_node *n,
1867 unsigned long long bsize, FILE *fp)
1868{
1869 char buf_map[100], buf_size[50];
1870 unsigned long long size;
1871
1872 size = bsize * bitmap_weight(n->set, n->size);
1873 unit_number__scnprintf(buf_size, 50, size);
1874
1875 bitmap_scnprintf(n->set, n->size, buf_map, 100);
1876 fprintf(fp, "# %3" PRIu64 " [%s]: %s\n", n->node, buf_size, buf_map);
1877}
1878
1879static void print_mem_topology(struct feat_fd *ff, FILE *fp)
1880{
1881 struct memory_node *nodes;
1882 int i, nr;
1883
1884 nodes = ff->ph->env.memory_nodes;
1885 nr = ff->ph->env.nr_memory_nodes;
1886
1887 fprintf(fp, "# memory nodes (nr %d, block size 0x%llx):\n",
1888 nr, ff->ph->env.memory_bsize);
1889
1890 for (i = 0; i < nr; i++) {
1891 memory_node__fprintf(&nodes[i], ff->ph->env.memory_bsize, fp);
1892 }
1893}
1894
Jiri Olsa72932372019-08-28 15:57:16 +02001895static int __event_process_build_id(struct perf_record_header_build_id *bev,
Robert Richter08d95bd2012-02-10 15:41:55 +01001896 char *filename,
1897 struct perf_session *session)
1898{
1899 int err = -1;
Robert Richter08d95bd2012-02-10 15:41:55 +01001900 struct machine *machine;
Wang Nan1f121b02015-06-03 08:52:21 +00001901 u16 cpumode;
Robert Richter08d95bd2012-02-10 15:41:55 +01001902 struct dso *dso;
1903 enum dso_kernel_type dso_type;
1904
1905 machine = perf_session__findnew_machine(session, bev->pid);
1906 if (!machine)
1907 goto out;
1908
Wang Nan1f121b02015-06-03 08:52:21 +00001909 cpumode = bev->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
Robert Richter08d95bd2012-02-10 15:41:55 +01001910
Wang Nan1f121b02015-06-03 08:52:21 +00001911 switch (cpumode) {
Robert Richter08d95bd2012-02-10 15:41:55 +01001912 case PERF_RECORD_MISC_KERNEL:
1913 dso_type = DSO_TYPE_KERNEL;
Robert Richter08d95bd2012-02-10 15:41:55 +01001914 break;
1915 case PERF_RECORD_MISC_GUEST_KERNEL:
1916 dso_type = DSO_TYPE_GUEST_KERNEL;
Robert Richter08d95bd2012-02-10 15:41:55 +01001917 break;
1918 case PERF_RECORD_MISC_USER:
1919 case PERF_RECORD_MISC_GUEST_USER:
1920 dso_type = DSO_TYPE_USER;
Robert Richter08d95bd2012-02-10 15:41:55 +01001921 break;
1922 default:
1923 goto out;
1924 }
1925
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03001926 dso = machine__findnew_dso(machine, filename);
Robert Richter08d95bd2012-02-10 15:41:55 +01001927 if (dso != NULL) {
Masami Hiramatsub5d8bbe2016-05-11 22:51:59 +09001928 char sbuild_id[SBUILD_ID_SIZE];
Robert Richter08d95bd2012-02-10 15:41:55 +01001929
1930 dso__set_build_id(dso, &bev->build_id);
1931
Namhyung Kim1deec1b2017-05-31 21:01:03 +09001932 if (dso_type != DSO_TYPE_USER) {
1933 struct kmod_path m = { .name = NULL, };
1934
1935 if (!kmod_path__parse_name(&m, filename) && m.kmod)
Namhyung Kim6b335e82017-05-31 21:01:04 +09001936 dso__set_module_info(dso, &m, machine);
Namhyung Kim1deec1b2017-05-31 21:01:03 +09001937 else
1938 dso->kernel = dso_type;
1939
1940 free(m.name);
1941 }
Robert Richter08d95bd2012-02-10 15:41:55 +01001942
1943 build_id__sprintf(dso->build_id, sizeof(dso->build_id),
1944 sbuild_id);
1945 pr_debug("build id event received for %s: %s\n",
1946 dso->long_name, sbuild_id);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001947 dso__put(dso);
Robert Richter08d95bd2012-02-10 15:41:55 +01001948 }
1949
1950 err = 0;
1951out:
1952 return err;
1953}
1954
1955static int perf_header__read_build_ids_abi_quirk(struct perf_header *header,
1956 int input, u64 offset, u64 size)
1957{
1958 struct perf_session *session = container_of(header, struct perf_session, header);
1959 struct {
1960 struct perf_event_header header;
Irina Tirdea9ac3e482012-09-11 01:15:01 +03001961 u8 build_id[PERF_ALIGN(BUILD_ID_SIZE, sizeof(u64))];
Robert Richter08d95bd2012-02-10 15:41:55 +01001962 char filename[0];
1963 } old_bev;
Jiri Olsa72932372019-08-28 15:57:16 +02001964 struct perf_record_header_build_id bev;
Robert Richter08d95bd2012-02-10 15:41:55 +01001965 char filename[PATH_MAX];
1966 u64 limit = offset + size;
1967
1968 while (offset < limit) {
1969 ssize_t len;
1970
Namhyung Kim5323f602012-12-17 15:38:54 +09001971 if (readn(input, &old_bev, sizeof(old_bev)) != sizeof(old_bev))
Robert Richter08d95bd2012-02-10 15:41:55 +01001972 return -1;
1973
1974 if (header->needs_swap)
1975 perf_event_header__bswap(&old_bev.header);
1976
1977 len = old_bev.header.size - sizeof(old_bev);
Namhyung Kim5323f602012-12-17 15:38:54 +09001978 if (readn(input, filename, len) != len)
Robert Richter08d95bd2012-02-10 15:41:55 +01001979 return -1;
1980
1981 bev.header = old_bev.header;
1982
1983 /*
1984 * As the pid is the missing value, we need to fill
1985 * it properly. The header.misc value give us nice hint.
1986 */
1987 bev.pid = HOST_KERNEL_ID;
1988 if (bev.header.misc == PERF_RECORD_MISC_GUEST_USER ||
1989 bev.header.misc == PERF_RECORD_MISC_GUEST_KERNEL)
1990 bev.pid = DEFAULT_GUEST_KERNEL_ID;
1991
1992 memcpy(bev.build_id, old_bev.build_id, sizeof(bev.build_id));
1993 __event_process_build_id(&bev, filename, session);
1994
1995 offset += bev.header.size;
1996 }
1997
1998 return 0;
1999}
2000
2001static int perf_header__read_build_ids(struct perf_header *header,
2002 int input, u64 offset, u64 size)
2003{
2004 struct perf_session *session = container_of(header, struct perf_session, header);
Jiri Olsa72932372019-08-28 15:57:16 +02002005 struct perf_record_header_build_id bev;
Robert Richter08d95bd2012-02-10 15:41:55 +01002006 char filename[PATH_MAX];
2007 u64 limit = offset + size, orig_offset = offset;
2008 int err = -1;
2009
2010 while (offset < limit) {
2011 ssize_t len;
2012
Namhyung Kim5323f602012-12-17 15:38:54 +09002013 if (readn(input, &bev, sizeof(bev)) != sizeof(bev))
Robert Richter08d95bd2012-02-10 15:41:55 +01002014 goto out;
2015
2016 if (header->needs_swap)
2017 perf_event_header__bswap(&bev.header);
2018
2019 len = bev.header.size - sizeof(bev);
Namhyung Kim5323f602012-12-17 15:38:54 +09002020 if (readn(input, filename, len) != len)
Robert Richter08d95bd2012-02-10 15:41:55 +01002021 goto out;
2022 /*
2023 * The a1645ce1 changeset:
2024 *
2025 * "perf: 'perf kvm' tool for monitoring guest performance from host"
2026 *
Jiri Olsa72932372019-08-28 15:57:16 +02002027 * Added a field to struct perf_record_header_build_id that broke the file
Robert Richter08d95bd2012-02-10 15:41:55 +01002028 * format.
2029 *
2030 * Since the kernel build-id is the first entry, process the
2031 * table using the old format if the well known
2032 * '[kernel.kallsyms]' string for the kernel build-id has the
2033 * first 4 characters chopped off (where the pid_t sits).
2034 */
2035 if (memcmp(filename, "nel.kallsyms]", 13) == 0) {
2036 if (lseek(input, orig_offset, SEEK_SET) == (off_t)-1)
2037 return -1;
2038 return perf_header__read_build_ids_abi_quirk(header, input, offset, size);
2039 }
2040
2041 __event_process_build_id(&bev, filename, session);
2042
2043 offset += bev.header.size;
2044 }
2045 err = 0;
2046out:
2047 return err;
2048}
2049
David Carrillo-Cisnerosdfaa1582017-07-17 21:25:35 -07002050/* Macro for features that simply need to read and store a string. */
2051#define FEAT_PROCESS_STR_FUN(__feat, __feat_env) \
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002052static int process_##__feat(struct feat_fd *ff, void *data __maybe_unused) \
David Carrillo-Cisnerosdfaa1582017-07-17 21:25:35 -07002053{\
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002054 ff->ph->env.__feat_env = do_read_string(ff); \
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002055 return ff->ph->env.__feat_env ? 0 : -ENOMEM; \
David Carrillo-Cisnerosdfaa1582017-07-17 21:25:35 -07002056}
2057
2058FEAT_PROCESS_STR_FUN(hostname, hostname);
2059FEAT_PROCESS_STR_FUN(osrelease, os_release);
2060FEAT_PROCESS_STR_FUN(version, version);
2061FEAT_PROCESS_STR_FUN(arch, arch);
2062FEAT_PROCESS_STR_FUN(cpudesc, cpu_desc);
2063FEAT_PROCESS_STR_FUN(cpuid, cpuid);
2064
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002065static int process_tracing_data(struct feat_fd *ff, void *data)
Robert Richterf1c67db2012-02-10 15:41:56 +01002066{
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002067 ssize_t ret = trace_report(ff->fd, data, false);
2068
Namhyung Kim3dce2ce2013-03-21 16:18:48 +09002069 return ret < 0 ? -1 : 0;
Robert Richterf1c67db2012-02-10 15:41:56 +01002070}
2071
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002072static int process_build_id(struct feat_fd *ff, void *data __maybe_unused)
Robert Richterf1c67db2012-02-10 15:41:56 +01002073{
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002074 if (perf_header__read_build_ids(ff->ph, ff->fd, ff->offset, ff->size))
Robert Richterf1c67db2012-02-10 15:41:56 +01002075 pr_debug("Failed to read buildids, continuing...\n");
2076 return 0;
2077}
2078
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002079static int process_nrcpus(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002080{
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002081 int ret;
2082 u32 nr_cpus_avail, nr_cpus_online;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002083
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002084 ret = do_read_u32(ff, &nr_cpus_avail);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002085 if (ret)
2086 return ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002087
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002088 ret = do_read_u32(ff, &nr_cpus_online);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002089 if (ret)
2090 return ret;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002091 ff->ph->env.nr_cpus_avail = (int)nr_cpus_avail;
2092 ff->ph->env.nr_cpus_online = (int)nr_cpus_online;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002093 return 0;
2094}
2095
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002096static int process_total_mem(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002097{
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002098 u64 total_mem;
2099 int ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002100
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002101 ret = do_read_u64(ff, &total_mem);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002102 if (ret)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002103 return -1;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002104 ff->ph->env.total_mem = (unsigned long long)total_mem;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002105 return 0;
2106}
2107
Jiri Olsa32dcd022019-07-21 13:23:51 +02002108static struct evsel *
Jiri Olsa63503db2019-07-21 13:23:52 +02002109perf_evlist__find_by_index(struct evlist *evlist, int idx)
Robert Richter7c2f7af2012-08-16 21:10:23 +02002110{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002111 struct evsel *evsel;
Robert Richter7c2f7af2012-08-16 21:10:23 +02002112
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002113 evlist__for_each_entry(evlist, evsel) {
Robert Richter7c2f7af2012-08-16 21:10:23 +02002114 if (evsel->idx == idx)
2115 return evsel;
2116 }
2117
2118 return NULL;
2119}
2120
2121static void
Jiri Olsa63503db2019-07-21 13:23:52 +02002122perf_evlist__set_event_name(struct evlist *evlist,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002123 struct evsel *event)
Robert Richter7c2f7af2012-08-16 21:10:23 +02002124{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002125 struct evsel *evsel;
Robert Richter7c2f7af2012-08-16 21:10:23 +02002126
2127 if (!event->name)
2128 return;
2129
2130 evsel = perf_evlist__find_by_index(evlist, event->idx);
2131 if (!evsel)
2132 return;
2133
2134 if (evsel->name)
2135 return;
2136
2137 evsel->name = strdup(event->name);
2138}
2139
2140static int
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002141process_event_desc(struct feat_fd *ff, void *data __maybe_unused)
Robert Richter7c2f7af2012-08-16 21:10:23 +02002142{
Namhyung Kim3d7eb862012-09-24 17:15:01 +09002143 struct perf_session *session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002144 struct evsel *evsel, *events = read_event_desc(ff);
Robert Richter7c2f7af2012-08-16 21:10:23 +02002145
2146 if (!events)
2147 return 0;
2148
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002149 session = container_of(ff->ph, struct perf_session, header);
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07002150
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002151 if (session->data->is_pipe) {
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07002152 /* Save events for reading later by print_event_desc,
2153 * since they can't be read again in pipe mode. */
2154 ff->events = events;
2155 }
2156
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002157 for (evsel = events; evsel->core.attr.size; evsel++)
Robert Richter7c2f7af2012-08-16 21:10:23 +02002158 perf_evlist__set_event_name(session->evlist, evsel);
2159
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002160 if (!session->data->is_pipe)
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07002161 free_event_desc(events);
Robert Richter7c2f7af2012-08-16 21:10:23 +02002162
2163 return 0;
2164}
2165
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002166static int process_cmdline(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002167{
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002168 char *str, *cmdline = NULL, **argv = NULL;
2169 u32 nr, i, len = 0;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002170
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002171 if (do_read_u32(ff, &nr))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002172 return -1;
2173
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002174 ff->ph->env.nr_cmdline = nr;
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002175
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002176 cmdline = zalloc(ff->size + nr + 1);
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002177 if (!cmdline)
2178 return -1;
2179
2180 argv = zalloc(sizeof(char *) * (nr + 1));
2181 if (!argv)
2182 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002183
2184 for (i = 0; i < nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002185 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002186 if (!str)
2187 goto error;
2188
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002189 argv[i] = cmdline + len;
2190 memcpy(argv[i], str, strlen(str) + 1);
2191 len += strlen(str) + 1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002192 free(str);
2193 }
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002194 ff->ph->env.cmdline = cmdline;
2195 ff->ph->env.cmdline_argv = (const char **) argv;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002196 return 0;
2197
2198error:
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002199 free(argv);
2200 free(cmdline);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002201 return -1;
2202}
2203
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002204static int process_cpu_topology(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002205{
Namhyung Kima1ae5652012-09-24 17:14:59 +09002206 u32 nr, i;
2207 char *str;
2208 struct strbuf sb;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002209 int cpu_nr = ff->ph->env.nr_cpus_avail;
Kan Liang2bb00d22015-09-01 09:58:12 -04002210 u64 size = 0;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002211 struct perf_header *ph = ff->ph;
Thomas Richter01766222018-06-11 09:31:52 +02002212 bool do_core_id_test = true;
Kan Liang2bb00d22015-09-01 09:58:12 -04002213
2214 ph->env.cpu = calloc(cpu_nr, sizeof(*ph->env.cpu));
2215 if (!ph->env.cpu)
2216 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002217
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002218 if (do_read_u32(ff, &nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04002219 goto free_cpu;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002220
Namhyung Kima1ae5652012-09-24 17:14:59 +09002221 ph->env.nr_sibling_cores = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04002222 size += sizeof(u32);
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002223 if (strbuf_init(&sb, 128) < 0)
2224 goto free_cpu;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002225
2226 for (i = 0; i < nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002227 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002228 if (!str)
2229 goto error;
2230
2231 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002232 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
2233 goto error;
Kan Liang2bb00d22015-09-01 09:58:12 -04002234 size += string_size(str);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002235 free(str);
2236 }
2237 ph->env.sibling_cores = strbuf_detach(&sb, NULL);
2238
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002239 if (do_read_u32(ff, &nr))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002240 return -1;
2241
Namhyung Kima1ae5652012-09-24 17:14:59 +09002242 ph->env.nr_sibling_threads = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04002243 size += sizeof(u32);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002244
2245 for (i = 0; i < nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002246 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002247 if (!str)
2248 goto error;
2249
2250 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002251 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
2252 goto error;
Kan Liang2bb00d22015-09-01 09:58:12 -04002253 size += string_size(str);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002254 free(str);
2255 }
2256 ph->env.sibling_threads = strbuf_detach(&sb, NULL);
Kan Liang2bb00d22015-09-01 09:58:12 -04002257
2258 /*
2259 * The header may be from old perf,
2260 * which doesn't include core id and socket id information.
2261 */
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002262 if (ff->size <= size) {
Kan Liang2bb00d22015-09-01 09:58:12 -04002263 zfree(&ph->env.cpu);
2264 return 0;
2265 }
2266
Thomas Richter01766222018-06-11 09:31:52 +02002267 /* On s390 the socket_id number is not related to the numbers of cpus.
2268 * The socket_id number might be higher than the numbers of cpus.
2269 * This depends on the configuration.
Tan Xiaojun0a4d8fb2019-08-02 11:48:57 +08002270 * AArch64 is the same.
Thomas Richter01766222018-06-11 09:31:52 +02002271 */
Tan Xiaojun0a4d8fb2019-08-02 11:48:57 +08002272 if (ph->env.arch && (!strncmp(ph->env.arch, "s390", 4)
2273 || !strncmp(ph->env.arch, "aarch64", 7)))
Thomas Richter01766222018-06-11 09:31:52 +02002274 do_core_id_test = false;
2275
Kan Liang2bb00d22015-09-01 09:58:12 -04002276 for (i = 0; i < (u32)cpu_nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002277 if (do_read_u32(ff, &nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04002278 goto free_cpu;
2279
Kan Liang2bb00d22015-09-01 09:58:12 -04002280 ph->env.cpu[i].core_id = nr;
Kan Liangacae8b32019-06-04 15:50:41 -07002281 size += sizeof(u32);
Kan Liang2bb00d22015-09-01 09:58:12 -04002282
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002283 if (do_read_u32(ff, &nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04002284 goto free_cpu;
2285
Thomas Richter01766222018-06-11 09:31:52 +02002286 if (do_core_id_test && nr != (u32)-1 && nr > (u32)cpu_nr) {
Kan Liang2bb00d22015-09-01 09:58:12 -04002287 pr_debug("socket_id number is too big."
2288 "You may need to upgrade the perf tool.\n");
2289 goto free_cpu;
2290 }
2291
2292 ph->env.cpu[i].socket_id = nr;
Kan Liangacae8b32019-06-04 15:50:41 -07002293 size += sizeof(u32);
2294 }
2295
2296 /*
2297 * The header may be from old perf,
2298 * which doesn't include die information.
2299 */
2300 if (ff->size <= size)
2301 return 0;
2302
2303 if (do_read_u32(ff, &nr))
2304 return -1;
2305
2306 ph->env.nr_sibling_dies = nr;
2307 size += sizeof(u32);
2308
2309 for (i = 0; i < nr; i++) {
2310 str = do_read_string(ff);
2311 if (!str)
2312 goto error;
2313
2314 /* include a NULL character at the end */
2315 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
2316 goto error;
2317 size += string_size(str);
2318 free(str);
2319 }
2320 ph->env.sibling_dies = strbuf_detach(&sb, NULL);
2321
2322 for (i = 0; i < (u32)cpu_nr; i++) {
2323 if (do_read_u32(ff, &nr))
2324 goto free_cpu;
2325
2326 ph->env.cpu[i].die_id = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04002327 }
2328
Namhyung Kima1ae5652012-09-24 17:14:59 +09002329 return 0;
2330
2331error:
2332 strbuf_release(&sb);
Kan Liang2bb00d22015-09-01 09:58:12 -04002333free_cpu:
2334 zfree(&ph->env.cpu);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002335 return -1;
2336}
2337
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002338static int process_numa_topology(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002339{
Jiri Olsac60da222016-07-04 14:16:20 +02002340 struct numa_node *nodes, *n;
Jiri Olsac60da222016-07-04 14:16:20 +02002341 u32 nr, i;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002342 char *str;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002343
2344 /* nr nodes */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002345 if (do_read_u32(ff, &nr))
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002346 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002347
Jiri Olsac60da222016-07-04 14:16:20 +02002348 nodes = zalloc(sizeof(*nodes) * nr);
2349 if (!nodes)
2350 return -ENOMEM;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002351
2352 for (i = 0; i < nr; i++) {
Jiri Olsac60da222016-07-04 14:16:20 +02002353 n = &nodes[i];
2354
Namhyung Kima1ae5652012-09-24 17:14:59 +09002355 /* node number */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002356 if (do_read_u32(ff, &n->node))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002357 goto error;
2358
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002359 if (do_read_u64(ff, &n->mem_total))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002360 goto error;
2361
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002362 if (do_read_u64(ff, &n->mem_free))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002363 goto error;
2364
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002365 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002366 if (!str)
2367 goto error;
2368
Jiri Olsa9c3516d2019-07-21 13:24:30 +02002369 n->map = perf_cpu_map__new(str);
Jiri Olsac60da222016-07-04 14:16:20 +02002370 if (!n->map)
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002371 goto error;
Jiri Olsac60da222016-07-04 14:16:20 +02002372
Namhyung Kima1ae5652012-09-24 17:14:59 +09002373 free(str);
2374 }
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002375 ff->ph->env.nr_numa_nodes = nr;
2376 ff->ph->env.numa_nodes = nodes;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002377 return 0;
2378
2379error:
Jiri Olsac60da222016-07-04 14:16:20 +02002380 free(nodes);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002381 return -1;
2382}
2383
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002384static int process_pmu_mappings(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002385{
Namhyung Kima1ae5652012-09-24 17:14:59 +09002386 char *name;
2387 u32 pmu_num;
2388 u32 type;
2389 struct strbuf sb;
2390
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002391 if (do_read_u32(ff, &pmu_num))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002392 return -1;
2393
Namhyung Kima1ae5652012-09-24 17:14:59 +09002394 if (!pmu_num) {
2395 pr_debug("pmu mappings not available\n");
2396 return 0;
2397 }
2398
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002399 ff->ph->env.nr_pmu_mappings = pmu_num;
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002400 if (strbuf_init(&sb, 128) < 0)
2401 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002402
2403 while (pmu_num) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002404 if (do_read_u32(ff, &type))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002405 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002406
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002407 name = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002408 if (!name)
2409 goto error;
2410
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002411 if (strbuf_addf(&sb, "%u:%s", type, name) < 0)
2412 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002413 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002414 if (strbuf_add(&sb, "", 1) < 0)
2415 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002416
Kan Liange0838e02015-09-10 11:03:05 -03002417 if (!strcmp(name, "msr"))
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002418 ff->ph->env.msr_pmu_type = type;
Kan Liange0838e02015-09-10 11:03:05 -03002419
Namhyung Kima1ae5652012-09-24 17:14:59 +09002420 free(name);
2421 pmu_num--;
2422 }
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002423 ff->ph->env.pmu_mappings = strbuf_detach(&sb, NULL);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002424 return 0;
2425
2426error:
2427 strbuf_release(&sb);
2428 return -1;
2429}
2430
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002431static int process_group_desc(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima8bb5592013-01-22 18:09:31 +09002432{
2433 size_t ret = -1;
2434 u32 i, nr, nr_groups;
2435 struct perf_session *session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002436 struct evsel *evsel, *leader = NULL;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002437 struct group_desc {
2438 char *name;
2439 u32 leader_idx;
2440 u32 nr_members;
2441 } *desc;
2442
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002443 if (do_read_u32(ff, &nr_groups))
Namhyung Kima8bb5592013-01-22 18:09:31 +09002444 return -1;
2445
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002446 ff->ph->env.nr_groups = nr_groups;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002447 if (!nr_groups) {
2448 pr_debug("group desc not available\n");
2449 return 0;
2450 }
2451
2452 desc = calloc(nr_groups, sizeof(*desc));
2453 if (!desc)
2454 return -1;
2455
2456 for (i = 0; i < nr_groups; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002457 desc[i].name = do_read_string(ff);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002458 if (!desc[i].name)
2459 goto out_free;
2460
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002461 if (do_read_u32(ff, &desc[i].leader_idx))
Namhyung Kima8bb5592013-01-22 18:09:31 +09002462 goto out_free;
2463
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002464 if (do_read_u32(ff, &desc[i].nr_members))
Namhyung Kima8bb5592013-01-22 18:09:31 +09002465 goto out_free;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002466 }
2467
2468 /*
2469 * Rebuild group relationship based on the group_desc
2470 */
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002471 session = container_of(ff->ph, struct perf_session, header);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002472 session->evlist->nr_groups = nr_groups;
2473
2474 i = nr = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002475 evlist__for_each_entry(session->evlist, evsel) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09002476 if (evsel->idx == (int) desc[i].leader_idx) {
2477 evsel->leader = evsel;
2478 /* {anon_group} is a dummy name */
Namhyung Kim210e8122013-11-18 11:20:43 +09002479 if (strcmp(desc[i].name, "{anon_group}")) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09002480 evsel->group_name = desc[i].name;
Namhyung Kim210e8122013-11-18 11:20:43 +09002481 desc[i].name = NULL;
2482 }
Jiri Olsa5643b1a2019-07-21 13:24:46 +02002483 evsel->core.nr_members = desc[i].nr_members;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002484
2485 if (i >= nr_groups || nr > 0) {
2486 pr_debug("invalid group desc\n");
2487 goto out_free;
2488 }
2489
2490 leader = evsel;
Jiri Olsa5643b1a2019-07-21 13:24:46 +02002491 nr = evsel->core.nr_members - 1;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002492 i++;
2493 } else if (nr) {
2494 /* This is a group member */
2495 evsel->leader = leader;
2496
2497 nr--;
2498 }
2499 }
2500
2501 if (i != nr_groups || nr != 0) {
2502 pr_debug("invalid group desc\n");
2503 goto out_free;
2504 }
2505
2506 ret = 0;
2507out_free:
Namhyung Kim50a27402013-11-18 11:20:44 +09002508 for (i = 0; i < nr_groups; i++)
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002509 zfree(&desc[i].name);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002510 free(desc);
2511
2512 return ret;
2513}
2514
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002515static int process_auxtrace(struct feat_fd *ff, void *data __maybe_unused)
Adrian Hunter99fa2982015-04-30 17:37:25 +03002516{
2517 struct perf_session *session;
2518 int err;
2519
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002520 session = container_of(ff->ph, struct perf_session, header);
Adrian Hunter99fa2982015-04-30 17:37:25 +03002521
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002522 err = auxtrace_index__process(ff->fd, ff->size, session,
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002523 ff->ph->needs_swap);
Adrian Hunter99fa2982015-04-30 17:37:25 +03002524 if (err < 0)
2525 pr_err("Failed to process auxtrace index\n");
2526 return err;
2527}
2528
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002529static int process_cache(struct feat_fd *ff, void *data __maybe_unused)
Jiri Olsa720e98b2016-02-16 16:01:43 +01002530{
2531 struct cpu_cache_level *caches;
2532 u32 cnt, i, version;
2533
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002534 if (do_read_u32(ff, &version))
Jiri Olsa720e98b2016-02-16 16:01:43 +01002535 return -1;
2536
Jiri Olsa720e98b2016-02-16 16:01:43 +01002537 if (version != 1)
2538 return -1;
2539
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002540 if (do_read_u32(ff, &cnt))
Jiri Olsa720e98b2016-02-16 16:01:43 +01002541 return -1;
2542
Jiri Olsa720e98b2016-02-16 16:01:43 +01002543 caches = zalloc(sizeof(*caches) * cnt);
2544 if (!caches)
2545 return -1;
2546
2547 for (i = 0; i < cnt; i++) {
2548 struct cpu_cache_level c;
2549
2550 #define _R(v) \
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002551 if (do_read_u32(ff, &c.v))\
Jiri Olsa720e98b2016-02-16 16:01:43 +01002552 goto out_free_caches; \
Jiri Olsa720e98b2016-02-16 16:01:43 +01002553
2554 _R(level)
2555 _R(line_size)
2556 _R(sets)
2557 _R(ways)
2558 #undef _R
2559
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002560 #define _R(v) \
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002561 c.v = do_read_string(ff); \
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002562 if (!c.v) \
Jiri Olsa720e98b2016-02-16 16:01:43 +01002563 goto out_free_caches;
2564
2565 _R(type)
2566 _R(size)
2567 _R(map)
2568 #undef _R
2569
2570 caches[i] = c;
2571 }
2572
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002573 ff->ph->env.caches = caches;
2574 ff->ph->env.caches_cnt = cnt;
Jiri Olsa720e98b2016-02-16 16:01:43 +01002575 return 0;
2576out_free_caches:
2577 free(caches);
2578 return -1;
2579}
2580
Jin Yao60115182017-12-08 21:13:41 +08002581static int process_sample_time(struct feat_fd *ff, void *data __maybe_unused)
2582{
2583 struct perf_session *session;
2584 u64 first_sample_time, last_sample_time;
2585 int ret;
2586
2587 session = container_of(ff->ph, struct perf_session, header);
2588
2589 ret = do_read_u64(ff, &first_sample_time);
2590 if (ret)
2591 return -1;
2592
2593 ret = do_read_u64(ff, &last_sample_time);
2594 if (ret)
2595 return -1;
2596
2597 session->evlist->first_sample_time = first_sample_time;
2598 session->evlist->last_sample_time = last_sample_time;
2599 return 0;
2600}
2601
Jiri Olsae2091ce2018-03-07 16:50:08 +01002602static int process_mem_topology(struct feat_fd *ff,
2603 void *data __maybe_unused)
2604{
2605 struct memory_node *nodes;
2606 u64 version, i, nr, bsize;
2607 int ret = -1;
2608
2609 if (do_read_u64(ff, &version))
2610 return -1;
2611
2612 if (version != 1)
2613 return -1;
2614
2615 if (do_read_u64(ff, &bsize))
2616 return -1;
2617
2618 if (do_read_u64(ff, &nr))
2619 return -1;
2620
2621 nodes = zalloc(sizeof(*nodes) * nr);
2622 if (!nodes)
2623 return -1;
2624
2625 for (i = 0; i < nr; i++) {
2626 struct memory_node n;
2627
2628 #define _R(v) \
2629 if (do_read_u64(ff, &n.v)) \
2630 goto out; \
2631
2632 _R(node)
2633 _R(size)
2634
2635 #undef _R
2636
2637 if (do_read_bitmap(ff, &n.set, &n.size))
2638 goto out;
2639
2640 nodes[i] = n;
2641 }
2642
2643 ff->ph->env.memory_bsize = bsize;
2644 ff->ph->env.memory_nodes = nodes;
2645 ff->ph->env.nr_memory_nodes = nr;
2646 ret = 0;
2647
2648out:
2649 if (ret)
2650 free(nodes);
2651 return ret;
2652}
2653
Alexey Budankovcf790512018-10-09 17:36:24 +03002654static int process_clockid(struct feat_fd *ff,
2655 void *data __maybe_unused)
2656{
2657 if (do_read_u64(ff, &ff->ph->env.clockid_res_ns))
2658 return -1;
2659
2660 return 0;
2661}
2662
Jiri Olsa258031c2019-03-08 14:47:39 +01002663static int process_dir_format(struct feat_fd *ff,
2664 void *_data __maybe_unused)
2665{
2666 struct perf_session *session;
2667 struct perf_data *data;
2668
2669 session = container_of(ff->ph, struct perf_session, header);
2670 data = session->data;
2671
2672 if (WARN_ON(!perf_data__is_dir(data)))
2673 return -1;
2674
2675 return do_read_u64(ff, &data->dir.version);
2676}
2677
Song Liu606f9722019-03-11 22:30:43 -07002678#ifdef HAVE_LIBBPF_SUPPORT
2679static int process_bpf_prog_info(struct feat_fd *ff, void *data __maybe_unused)
2680{
2681 struct bpf_prog_info_linear *info_linear;
2682 struct bpf_prog_info_node *info_node;
2683 struct perf_env *env = &ff->ph->env;
2684 u32 count, i;
2685 int err = -1;
2686
2687 if (ff->ph->needs_swap) {
2688 pr_warning("interpreting bpf_prog_info from systems with endianity is not yet supported\n");
2689 return 0;
2690 }
2691
2692 if (do_read_u32(ff, &count))
2693 return -1;
2694
2695 down_write(&env->bpf_progs.lock);
2696
2697 for (i = 0; i < count; ++i) {
2698 u32 info_len, data_len;
2699
2700 info_linear = NULL;
2701 info_node = NULL;
2702 if (do_read_u32(ff, &info_len))
2703 goto out;
2704 if (do_read_u32(ff, &data_len))
2705 goto out;
2706
2707 if (info_len > sizeof(struct bpf_prog_info)) {
2708 pr_warning("detected invalid bpf_prog_info\n");
2709 goto out;
2710 }
2711
2712 info_linear = malloc(sizeof(struct bpf_prog_info_linear) +
2713 data_len);
2714 if (!info_linear)
2715 goto out;
2716 info_linear->info_len = sizeof(struct bpf_prog_info);
2717 info_linear->data_len = data_len;
2718 if (do_read_u64(ff, (u64 *)(&info_linear->arrays)))
2719 goto out;
2720 if (__do_read(ff, &info_linear->info, info_len))
2721 goto out;
2722 if (info_len < sizeof(struct bpf_prog_info))
2723 memset(((void *)(&info_linear->info)) + info_len, 0,
2724 sizeof(struct bpf_prog_info) - info_len);
2725
2726 if (__do_read(ff, info_linear->data, data_len))
2727 goto out;
2728
2729 info_node = malloc(sizeof(struct bpf_prog_info_node));
2730 if (!info_node)
2731 goto out;
2732
2733 /* after reading from file, translate offset to address */
2734 bpf_program__bpil_offs_to_addr(info_linear);
2735 info_node->info_linear = info_linear;
2736 perf_env__insert_bpf_prog_info(env, info_node);
2737 }
2738
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002739 up_write(&env->bpf_progs.lock);
Song Liu606f9722019-03-11 22:30:43 -07002740 return 0;
2741out:
2742 free(info_linear);
2743 free(info_node);
2744 up_write(&env->bpf_progs.lock);
2745 return err;
2746}
2747#else // HAVE_LIBBPF_SUPPORT
2748static int process_bpf_prog_info(struct feat_fd *ff __maybe_unused, void *data __maybe_unused)
2749{
2750 return 0;
2751}
2752#endif // HAVE_LIBBPF_SUPPORT
2753
Song Liua70a112312019-03-11 22:30:45 -07002754static int process_bpf_btf(struct feat_fd *ff, void *data __maybe_unused)
2755{
2756 struct perf_env *env = &ff->ph->env;
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002757 struct btf_node *node = NULL;
Song Liua70a112312019-03-11 22:30:45 -07002758 u32 count, i;
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002759 int err = -1;
Song Liua70a112312019-03-11 22:30:45 -07002760
2761 if (ff->ph->needs_swap) {
2762 pr_warning("interpreting btf from systems with endianity is not yet supported\n");
2763 return 0;
2764 }
2765
2766 if (do_read_u32(ff, &count))
2767 return -1;
2768
2769 down_write(&env->bpf_progs.lock);
2770
2771 for (i = 0; i < count; ++i) {
Song Liua70a112312019-03-11 22:30:45 -07002772 u32 id, data_size;
2773
2774 if (do_read_u32(ff, &id))
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002775 goto out;
Song Liua70a112312019-03-11 22:30:45 -07002776 if (do_read_u32(ff, &data_size))
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002777 goto out;
Song Liua70a112312019-03-11 22:30:45 -07002778
2779 node = malloc(sizeof(struct btf_node) + data_size);
2780 if (!node)
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002781 goto out;
Song Liua70a112312019-03-11 22:30:45 -07002782
2783 node->id = id;
2784 node->data_size = data_size;
2785
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002786 if (__do_read(ff, node->data, data_size))
2787 goto out;
Song Liua70a112312019-03-11 22:30:45 -07002788
2789 perf_env__insert_btf(env, node);
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002790 node = NULL;
Song Liua70a112312019-03-11 22:30:45 -07002791 }
2792
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002793 err = 0;
2794out:
Song Liua70a112312019-03-11 22:30:45 -07002795 up_write(&env->bpf_progs.lock);
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002796 free(node);
2797 return err;
Song Liua70a112312019-03-11 22:30:45 -07002798}
2799
Alexey Budankov42e1fd82019-03-18 20:41:33 +03002800static int process_compressed(struct feat_fd *ff,
2801 void *data __maybe_unused)
2802{
2803 if (do_read_u32(ff, &(ff->ph->env.comp_ver)))
2804 return -1;
2805
2806 if (do_read_u32(ff, &(ff->ph->env.comp_type)))
2807 return -1;
2808
2809 if (do_read_u32(ff, &(ff->ph->env.comp_level)))
2810 return -1;
2811
2812 if (do_read_u32(ff, &(ff->ph->env.comp_ratio)))
2813 return -1;
2814
2815 if (do_read_u32(ff, &(ff->ph->env.comp_mmap_len)))
2816 return -1;
2817
2818 return 0;
2819}
2820
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07002821#define FEAT_OPR(n, func, __full_only) \
2822 [HEADER_##n] = { \
2823 .name = __stringify(n), \
2824 .write = write_##func, \
2825 .print = print_##func, \
2826 .full_only = __full_only, \
2827 .process = process_##func, \
2828 .synthesize = true \
2829 }
2830
2831#define FEAT_OPN(n, func, __full_only) \
2832 [HEADER_##n] = { \
2833 .name = __stringify(n), \
2834 .write = write_##func, \
2835 .print = print_##func, \
2836 .full_only = __full_only, \
2837 .process = process_##func \
2838 }
Robert Richter8cdfa782011-12-07 10:02:56 +01002839
2840/* feature_ops not implemented: */
Stephane Eranian2eeaaa02012-05-15 13:28:13 +02002841#define print_tracing_data NULL
2842#define print_build_id NULL
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002843
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07002844#define process_branch_stack NULL
2845#define process_stat NULL
2846
Arnaldo Carvalho de Melo055c67e2019-09-18 16:08:52 -03002847// Only used in util/synthetic-events.c
2848const struct perf_header_feature_ops feat_ops[HEADER_LAST_FEATURE];
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07002849
Arnaldo Carvalho de Melo055c67e2019-09-18 16:08:52 -03002850const struct perf_header_feature_ops feat_ops[HEADER_LAST_FEATURE] = {
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07002851 FEAT_OPN(TRACING_DATA, tracing_data, false),
2852 FEAT_OPN(BUILD_ID, build_id, false),
2853 FEAT_OPR(HOSTNAME, hostname, false),
2854 FEAT_OPR(OSRELEASE, osrelease, false),
2855 FEAT_OPR(VERSION, version, false),
2856 FEAT_OPR(ARCH, arch, false),
2857 FEAT_OPR(NRCPUS, nrcpus, false),
2858 FEAT_OPR(CPUDESC, cpudesc, false),
2859 FEAT_OPR(CPUID, cpuid, false),
2860 FEAT_OPR(TOTAL_MEM, total_mem, false),
2861 FEAT_OPR(EVENT_DESC, event_desc, false),
2862 FEAT_OPR(CMDLINE, cmdline, false),
2863 FEAT_OPR(CPU_TOPOLOGY, cpu_topology, true),
2864 FEAT_OPR(NUMA_TOPOLOGY, numa_topology, true),
2865 FEAT_OPN(BRANCH_STACK, branch_stack, false),
2866 FEAT_OPR(PMU_MAPPINGS, pmu_mappings, false),
Jiri Olsae8fedff2018-07-12 15:52:02 +02002867 FEAT_OPR(GROUP_DESC, group_desc, false),
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07002868 FEAT_OPN(AUXTRACE, auxtrace, false),
2869 FEAT_OPN(STAT, stat, false),
2870 FEAT_OPN(CACHE, cache, true),
Jin Yao60115182017-12-08 21:13:41 +08002871 FEAT_OPR(SAMPLE_TIME, sample_time, false),
Jiri Olsae2091ce2018-03-07 16:50:08 +01002872 FEAT_OPR(MEM_TOPOLOGY, mem_topology, true),
Jiri Olsa258031c2019-03-08 14:47:39 +01002873 FEAT_OPR(CLOCKID, clockid, false),
Song Liu606f9722019-03-11 22:30:43 -07002874 FEAT_OPN(DIR_FORMAT, dir_format, false),
Song Liua70a112312019-03-11 22:30:45 -07002875 FEAT_OPR(BPF_PROG_INFO, bpf_prog_info, false),
2876 FEAT_OPR(BPF_BTF, bpf_btf, false),
Alexey Budankov42e1fd82019-03-18 20:41:33 +03002877 FEAT_OPR(COMPRESSED, compressed, false),
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002878};
2879
2880struct header_print_data {
2881 FILE *fp;
2882 bool full; /* extended list of headers */
2883};
2884
2885static int perf_file_section__fprintf_info(struct perf_file_section *section,
2886 struct perf_header *ph,
2887 int feat, int fd, void *data)
2888{
2889 struct header_print_data *hd = data;
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07002890 struct feat_fd ff;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002891
2892 if (lseek(fd, section->offset, SEEK_SET) == (off_t)-1) {
2893 pr_debug("Failed to lseek to %" PRIu64 " offset for feature "
2894 "%d, continuing...\n", section->offset, feat);
2895 return 0;
2896 }
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002897 if (feat >= HEADER_LAST_FEATURE) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002898 pr_warning("unknown feature %d\n", feat);
Robert Richterf7a8a132011-12-07 10:02:51 +01002899 return 0;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002900 }
2901 if (!feat_ops[feat].print)
2902 return 0;
2903
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07002904 ff = (struct feat_fd) {
2905 .fd = fd,
2906 .ph = ph,
2907 };
2908
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002909 if (!feat_ops[feat].full_only || hd->full)
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07002910 feat_ops[feat].print(&ff, hd->fp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002911 else
2912 fprintf(hd->fp, "# %s info available, use -I to display\n",
2913 feat_ops[feat].name);
2914
2915 return 0;
2916}
2917
2918int perf_header__fprintf_info(struct perf_session *session, FILE *fp, bool full)
2919{
2920 struct header_print_data hd;
2921 struct perf_header *header = &session->header;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002922 int fd = perf_data__fd(session->data);
Jiri Olsaf45f5612016-10-10 09:03:07 +02002923 struct stat st;
Arnaldo Carvalho de Melo0afcf292018-12-11 16:11:54 -03002924 time_t stctime;
Jiri Olsaaabae162016-10-10 09:35:50 +02002925 int ret, bit;
Jiri Olsaf45f5612016-10-10 09:03:07 +02002926
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002927 hd.fp = fp;
2928 hd.full = full;
2929
Jiri Olsaf45f5612016-10-10 09:03:07 +02002930 ret = fstat(fd, &st);
2931 if (ret == -1)
2932 return -1;
2933
Arnaldo Carvalho de Melo0afcf292018-12-11 16:11:54 -03002934 stctime = st.st_ctime;
2935 fprintf(fp, "# captured on : %s", ctime(&stctime));
Jiri Olsae971a5a2018-03-07 16:50:03 +01002936
2937 fprintf(fp, "# header version : %u\n", header->version);
2938 fprintf(fp, "# data offset : %" PRIu64 "\n", header->data_offset);
2939 fprintf(fp, "# data size : %" PRIu64 "\n", header->data_size);
2940 fprintf(fp, "# feat offset : %" PRIu64 "\n", header->feat_offset);
Jiri Olsaf45f5612016-10-10 09:03:07 +02002941
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002942 perf_header__process_sections(header, fd, &hd,
2943 perf_file_section__fprintf_info);
Jiri Olsaaabae162016-10-10 09:35:50 +02002944
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002945 if (session->data->is_pipe)
David Carrillo-Cisnerosc9d1c932017-04-10 13:14:32 -07002946 return 0;
2947
Jiri Olsaaabae162016-10-10 09:35:50 +02002948 fprintf(fp, "# missing features: ");
2949 for_each_clear_bit(bit, header->adds_features, HEADER_LAST_FEATURE) {
2950 if (bit)
2951 fprintf(fp, "%s ", feat_ops[bit].name);
2952 }
2953
2954 fprintf(fp, "\n");
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002955 return 0;
2956}
2957
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002958static int do_write_feat(struct feat_fd *ff, int type,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002959 struct perf_file_section **p,
Jiri Olsa63503db2019-07-21 13:23:52 +02002960 struct evlist *evlist)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002961{
2962 int err;
2963 int ret = 0;
2964
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002965 if (perf_header__has_feat(ff->ph, type)) {
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002966 if (!feat_ops[type].write)
2967 return -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002968
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -07002969 if (WARN(ff->buf, "Error: calling %s in pipe-mode.\n", __func__))
2970 return -1;
2971
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002972 (*p)->offset = lseek(ff->fd, 0, SEEK_CUR);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002973
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002974 err = feat_ops[type].write(ff, evlist);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002975 if (err < 0) {
Jiri Olsa0c2aff42016-10-10 09:38:02 +02002976 pr_debug("failed to write feature %s\n", feat_ops[type].name);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002977
2978 /* undo anything written */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002979 lseek(ff->fd, (*p)->offset, SEEK_SET);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002980
2981 return -1;
2982 }
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002983 (*p)->size = lseek(ff->fd, 0, SEEK_CUR) - (*p)->offset;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002984 (*p)++;
2985 }
2986 return ret;
2987}
2988
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002989static int perf_header__adds_write(struct perf_header *header,
Jiri Olsa63503db2019-07-21 13:23:52 +02002990 struct evlist *evlist, int fd)
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002991{
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002992 int nr_sections;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002993 struct feat_fd ff;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002994 struct perf_file_section *feat_sec, *p;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002995 int sec_size;
2996 u64 sec_start;
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002997 int feat;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002998 int err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002999
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003000 ff = (struct feat_fd){
3001 .fd = fd,
3002 .ph = header,
3003 };
3004
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003005 nr_sections = bitmap_weight(header->adds_features, HEADER_FEAT_BITS);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003006 if (!nr_sections)
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003007 return 0;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003008
Paul Gortmaker91b98802013-01-30 20:05:49 -05003009 feat_sec = p = calloc(nr_sections, sizeof(*feat_sec));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003010 if (feat_sec == NULL)
3011 return -ENOMEM;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003012
3013 sec_size = sizeof(*feat_sec) * nr_sections;
3014
Jiri Olsa8d541e92013-07-17 19:49:44 +02003015 sec_start = header->feat_offset;
Xiao Guangrongf887f302010-02-04 16:46:42 +08003016 lseek(fd, sec_start + sec_size, SEEK_SET);
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003017
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003018 for_each_set_bit(feat, header->adds_features, HEADER_FEAT_BITS) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003019 if (do_write_feat(&ff, feat, &p, evlist))
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003020 perf_header__clear_feat(header, feat);
3021 }
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003022
Xiao Guangrongf887f302010-02-04 16:46:42 +08003023 lseek(fd, sec_start, SEEK_SET);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003024 /*
3025 * may write more than needed due to dropped feature, but
Ingo Molnaradba1632018-12-03 11:22:00 +01003026 * this is okay, reader will skip the missing entries
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003027 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003028 err = do_write(&ff, feat_sec, sec_size);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003029 if (err < 0)
3030 pr_debug("failed to write feature section\n");
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003031 free(feat_sec);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003032 return err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003033}
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003034
Tom Zanussi8dc58102010-04-01 23:59:15 -05003035int perf_header__write_pipe(int fd)
3036{
3037 struct perf_pipe_file_header f_header;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003038 struct feat_fd ff;
Tom Zanussi8dc58102010-04-01 23:59:15 -05003039 int err;
3040
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003041 ff = (struct feat_fd){ .fd = fd };
3042
Tom Zanussi8dc58102010-04-01 23:59:15 -05003043 f_header = (struct perf_pipe_file_header){
3044 .magic = PERF_MAGIC,
3045 .size = sizeof(f_header),
3046 };
3047
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003048 err = do_write(&ff, &f_header, sizeof(f_header));
Tom Zanussi8dc58102010-04-01 23:59:15 -05003049 if (err < 0) {
3050 pr_debug("failed to write perf pipe header\n");
3051 return err;
3052 }
3053
3054 return 0;
3055}
3056
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003057int perf_session__write_header(struct perf_session *session,
Jiri Olsa63503db2019-07-21 13:23:52 +02003058 struct evlist *evlist,
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003059 int fd, bool at_exit)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003060{
3061 struct perf_file_header f_header;
3062 struct perf_file_attr f_attr;
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003063 struct perf_header *header = &session->header;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003064 struct evsel *evsel;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003065 struct feat_fd ff;
Jiri Olsa944d62b2013-07-17 19:49:43 +02003066 u64 attr_offset;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003067 int err;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003068
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003069 ff = (struct feat_fd){ .fd = fd};
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003070 lseek(fd, sizeof(f_header), SEEK_SET);
3071
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003072 evlist__for_each_entry(session->evlist, evsel) {
Robert Richter6606f872012-08-16 21:10:19 +02003073 evsel->id_offset = lseek(fd, 0, SEEK_CUR);
Jiri Olsae7eb9002019-09-02 22:15:47 +02003074 err = do_write(&ff, evsel->core.id, evsel->core.ids * sizeof(u64));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003075 if (err < 0) {
3076 pr_debug("failed to write perf header\n");
3077 return err;
3078 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003079 }
3080
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003081 attr_offset = lseek(ff.fd, 0, SEEK_CUR);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003082
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003083 evlist__for_each_entry(evlist, evsel) {
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003084 f_attr = (struct perf_file_attr){
Jiri Olsa1fc632c2019-07-21 13:24:29 +02003085 .attr = evsel->core.attr,
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003086 .ids = {
Robert Richter6606f872012-08-16 21:10:19 +02003087 .offset = evsel->id_offset,
Jiri Olsae7eb9002019-09-02 22:15:47 +02003088 .size = evsel->core.ids * sizeof(u64),
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003089 }
3090 };
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003091 err = do_write(&ff, &f_attr, sizeof(f_attr));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003092 if (err < 0) {
3093 pr_debug("failed to write perf header attribute\n");
3094 return err;
3095 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003096 }
3097
Adrian Hunterd645c442013-12-11 14:36:28 +02003098 if (!header->data_offset)
3099 header->data_offset = lseek(fd, 0, SEEK_CUR);
Jiri Olsa8d541e92013-07-17 19:49:44 +02003100 header->feat_offset = header->data_offset + header->data_size;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003101
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003102 if (at_exit) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003103 err = perf_header__adds_write(header, evlist, fd);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003104 if (err < 0)
3105 return err;
3106 }
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003107
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003108 f_header = (struct perf_file_header){
3109 .magic = PERF_MAGIC,
3110 .size = sizeof(f_header),
3111 .attr_size = sizeof(f_attr),
3112 .attrs = {
Jiri Olsa944d62b2013-07-17 19:49:43 +02003113 .offset = attr_offset,
Jiri Olsa6484d2f2019-07-21 13:24:28 +02003114 .size = evlist->core.nr_entries * sizeof(f_attr),
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003115 },
3116 .data = {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003117 .offset = header->data_offset,
3118 .size = header->data_size,
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003119 },
Jiri Olsa44b3c572013-07-11 17:28:31 +02003120 /* event_types is ignored, store zeros */
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003121 };
3122
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003123 memcpy(&f_header.adds_features, &header->adds_features, sizeof(header->adds_features));
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003124
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003125 lseek(fd, 0, SEEK_SET);
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003126 err = do_write(&ff, &f_header, sizeof(f_header));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003127 if (err < 0) {
3128 pr_debug("failed to write perf header\n");
3129 return err;
3130 }
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003131 lseek(fd, header->data_offset + header->data_size, SEEK_SET);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003132
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003133 return 0;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003134}
3135
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003136static int perf_header__getbuffer64(struct perf_header *header,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003137 int fd, void *buf, size_t size)
3138{
Arnaldo Carvalho de Melo1e7972c2011-01-03 16:50:55 -02003139 if (readn(fd, buf, size) <= 0)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003140 return -1;
3141
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003142 if (header->needs_swap)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003143 mem_bswap_64(buf, size);
3144
3145 return 0;
3146}
3147
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003148int perf_header__process_sections(struct perf_header *header, int fd,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003149 void *data,
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003150 int (*process)(struct perf_file_section *section,
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003151 struct perf_header *ph,
3152 int feat, int fd, void *data))
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003153{
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003154 struct perf_file_section *feat_sec, *sec;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003155 int nr_sections;
3156 int sec_size;
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003157 int feat;
3158 int err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003159
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003160 nr_sections = bitmap_weight(header->adds_features, HEADER_FEAT_BITS);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003161 if (!nr_sections)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003162 return 0;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003163
Paul Gortmaker91b98802013-01-30 20:05:49 -05003164 feat_sec = sec = calloc(nr_sections, sizeof(*feat_sec));
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003165 if (!feat_sec)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003166 return -1;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003167
3168 sec_size = sizeof(*feat_sec) * nr_sections;
3169
Jiri Olsa8d541e92013-07-17 19:49:44 +02003170 lseek(fd, header->feat_offset, SEEK_SET);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003171
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003172 err = perf_header__getbuffer64(header, fd, feat_sec, sec_size);
3173 if (err < 0)
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003174 goto out_free;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003175
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003176 for_each_set_bit(feat, header->adds_features, HEADER_LAST_FEATURE) {
3177 err = process(sec++, header, feat, fd, data);
3178 if (err < 0)
3179 goto out_free;
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +01003180 }
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003181 err = 0;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003182out_free:
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003183 free(feat_sec);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003184 return err;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003185}
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003186
Stephane Eranian114382a2012-02-09 23:21:08 +01003187static const int attr_file_abi_sizes[] = {
3188 [0] = PERF_ATTR_SIZE_VER0,
3189 [1] = PERF_ATTR_SIZE_VER1,
Jiri Olsa239cc472012-08-07 15:20:42 +02003190 [2] = PERF_ATTR_SIZE_VER2,
Jiri Olsa0f6a3012012-08-07 15:20:45 +02003191 [3] = PERF_ATTR_SIZE_VER3,
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02003192 [4] = PERF_ATTR_SIZE_VER4,
Stephane Eranian114382a2012-02-09 23:21:08 +01003193 0,
3194};
3195
3196/*
3197 * In the legacy file format, the magic number is not used to encode endianness.
3198 * hdr_sz was used to encode endianness. But given that hdr_sz can vary based
3199 * on ABI revisions, we need to try all combinations for all endianness to
3200 * detect the endianness.
3201 */
3202static int try_all_file_abis(uint64_t hdr_sz, struct perf_header *ph)
3203{
3204 uint64_t ref_size, attr_size;
3205 int i;
3206
3207 for (i = 0 ; attr_file_abi_sizes[i]; i++) {
3208 ref_size = attr_file_abi_sizes[i]
3209 + sizeof(struct perf_file_section);
3210 if (hdr_sz != ref_size) {
3211 attr_size = bswap_64(hdr_sz);
3212 if (attr_size != ref_size)
3213 continue;
3214
3215 ph->needs_swap = true;
3216 }
3217 pr_debug("ABI%d perf.data file detected, need_swap=%d\n",
3218 i,
3219 ph->needs_swap);
3220 return 0;
3221 }
3222 /* could not determine endianness */
3223 return -1;
3224}
3225
3226#define PERF_PIPE_HDR_VER0 16
3227
3228static const size_t attr_pipe_abi_sizes[] = {
3229 [0] = PERF_PIPE_HDR_VER0,
3230 0,
3231};
3232
3233/*
3234 * In the legacy pipe format, there is an implicit assumption that endiannesss
3235 * between host recording the samples, and host parsing the samples is the
3236 * same. This is not always the case given that the pipe output may always be
3237 * redirected into a file and analyzed on a different machine with possibly a
3238 * different endianness and perf_event ABI revsions in the perf tool itself.
3239 */
3240static int try_all_pipe_abis(uint64_t hdr_sz, struct perf_header *ph)
3241{
3242 u64 attr_size;
3243 int i;
3244
3245 for (i = 0 ; attr_pipe_abi_sizes[i]; i++) {
3246 if (hdr_sz != attr_pipe_abi_sizes[i]) {
3247 attr_size = bswap_64(hdr_sz);
3248 if (attr_size != hdr_sz)
3249 continue;
3250
3251 ph->needs_swap = true;
3252 }
3253 pr_debug("Pipe ABI%d perf.data file detected\n", i);
3254 return 0;
3255 }
3256 return -1;
3257}
3258
Feng Tange84ba4e2012-10-30 11:56:07 +08003259bool is_perf_magic(u64 magic)
3260{
3261 if (!memcmp(&magic, __perf_magic1, sizeof(magic))
3262 || magic == __perf_magic2
3263 || magic == __perf_magic2_sw)
3264 return true;
3265
3266 return false;
3267}
3268
Stephane Eranian114382a2012-02-09 23:21:08 +01003269static int check_magic_endian(u64 magic, uint64_t hdr_sz,
3270 bool is_pipe, struct perf_header *ph)
Stephane Eranian73323f52012-02-02 13:54:44 +01003271{
3272 int ret;
3273
3274 /* check for legacy format */
Stephane Eranian114382a2012-02-09 23:21:08 +01003275 ret = memcmp(&magic, __perf_magic1, sizeof(magic));
Stephane Eranian73323f52012-02-02 13:54:44 +01003276 if (ret == 0) {
Jiri Olsa2a08c3e2013-07-17 19:49:47 +02003277 ph->version = PERF_HEADER_VERSION_1;
Stephane Eranian73323f52012-02-02 13:54:44 +01003278 pr_debug("legacy perf.data format\n");
Stephane Eranian114382a2012-02-09 23:21:08 +01003279 if (is_pipe)
3280 return try_all_pipe_abis(hdr_sz, ph);
Stephane Eranian73323f52012-02-02 13:54:44 +01003281
Stephane Eranian114382a2012-02-09 23:21:08 +01003282 return try_all_file_abis(hdr_sz, ph);
Stephane Eranian73323f52012-02-02 13:54:44 +01003283 }
Stephane Eranian114382a2012-02-09 23:21:08 +01003284 /*
3285 * the new magic number serves two purposes:
3286 * - unique number to identify actual perf.data files
3287 * - encode endianness of file
3288 */
Namhyung Kimf7913972015-01-29 17:06:45 +09003289 ph->version = PERF_HEADER_VERSION_2;
Stephane Eranian73323f52012-02-02 13:54:44 +01003290
Stephane Eranian114382a2012-02-09 23:21:08 +01003291 /* check magic number with one endianness */
3292 if (magic == __perf_magic2)
Stephane Eranian73323f52012-02-02 13:54:44 +01003293 return 0;
3294
Stephane Eranian114382a2012-02-09 23:21:08 +01003295 /* check magic number with opposite endianness */
3296 if (magic != __perf_magic2_sw)
Stephane Eranian73323f52012-02-02 13:54:44 +01003297 return -1;
3298
3299 ph->needs_swap = true;
3300
3301 return 0;
3302}
3303
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003304int perf_file_header__read(struct perf_file_header *header,
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003305 struct perf_header *ph, int fd)
3306{
Jiri Olsa727ebd52013-11-28 11:30:14 +01003307 ssize_t ret;
Stephane Eranian73323f52012-02-02 13:54:44 +01003308
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003309 lseek(fd, 0, SEEK_SET);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003310
Stephane Eranian73323f52012-02-02 13:54:44 +01003311 ret = readn(fd, header, sizeof(*header));
3312 if (ret <= 0)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003313 return -1;
3314
Stephane Eranian114382a2012-02-09 23:21:08 +01003315 if (check_magic_endian(header->magic,
3316 header->attr_size, false, ph) < 0) {
3317 pr_debug("magic/endian check failed\n");
Stephane Eranian73323f52012-02-02 13:54:44 +01003318 return -1;
Stephane Eranian114382a2012-02-09 23:21:08 +01003319 }
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003320
Stephane Eranian73323f52012-02-02 13:54:44 +01003321 if (ph->needs_swap) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003322 mem_bswap_64(header, offsetof(struct perf_file_header,
Stephane Eranian73323f52012-02-02 13:54:44 +01003323 adds_features));
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003324 }
3325
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003326 if (header->size != sizeof(*header)) {
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003327 /* Support the previous format */
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003328 if (header->size == offsetof(typeof(*header), adds_features))
3329 bitmap_zero(header->adds_features, HEADER_FEAT_BITS);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003330 else
3331 return -1;
David Ahernd327fa42011-10-18 17:34:01 -06003332 } else if (ph->needs_swap) {
David Ahernd327fa42011-10-18 17:34:01 -06003333 /*
3334 * feature bitmap is declared as an array of unsigned longs --
3335 * not good since its size can differ between the host that
3336 * generated the data file and the host analyzing the file.
3337 *
3338 * We need to handle endianness, but we don't know the size of
3339 * the unsigned long where the file was generated. Take a best
3340 * guess at determining it: try 64-bit swap first (ie., file
3341 * created on a 64-bit host), and check if the hostname feature
3342 * bit is set (this feature bit is forced on as of fbe96f2).
3343 * If the bit is not, undo the 64-bit swap and try a 32-bit
3344 * swap. If the hostname bit is still not set (e.g., older data
3345 * file), punt and fallback to the original behavior --
3346 * clearing all feature bits and setting buildid.
3347 */
David Ahern80c01202012-06-08 11:47:51 -03003348 mem_bswap_64(&header->adds_features,
3349 BITS_TO_U64(HEADER_FEAT_BITS));
David Ahernd327fa42011-10-18 17:34:01 -06003350
3351 if (!test_bit(HEADER_HOSTNAME, header->adds_features)) {
David Ahern80c01202012-06-08 11:47:51 -03003352 /* unswap as u64 */
3353 mem_bswap_64(&header->adds_features,
3354 BITS_TO_U64(HEADER_FEAT_BITS));
3355
3356 /* unswap as u32 */
3357 mem_bswap_32(&header->adds_features,
3358 BITS_TO_U32(HEADER_FEAT_BITS));
David Ahernd327fa42011-10-18 17:34:01 -06003359 }
3360
3361 if (!test_bit(HEADER_HOSTNAME, header->adds_features)) {
3362 bitmap_zero(header->adds_features, HEADER_FEAT_BITS);
3363 set_bit(HEADER_BUILD_ID, header->adds_features);
3364 }
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003365 }
3366
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003367 memcpy(&ph->adds_features, &header->adds_features,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003368 sizeof(ph->adds_features));
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003369
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003370 ph->data_offset = header->data.offset;
3371 ph->data_size = header->data.size;
Jiri Olsa8d541e92013-07-17 19:49:44 +02003372 ph->feat_offset = header->data.offset + header->data.size;
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003373 return 0;
3374}
3375
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003376static int perf_file_section__process(struct perf_file_section *section,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003377 struct perf_header *ph,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03003378 int feat, int fd, void *data)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003379{
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07003380 struct feat_fd fdd = {
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07003381 .fd = fd,
3382 .ph = ph,
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07003383 .size = section->size,
3384 .offset = section->offset,
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07003385 };
3386
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003387 if (lseek(fd, section->offset, SEEK_SET) == (off_t)-1) {
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02003388 pr_debug("Failed to lseek to %" PRIu64 " offset for feature "
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003389 "%d, continuing...\n", section->offset, feat);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003390 return 0;
3391 }
3392
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003393 if (feat >= HEADER_LAST_FEATURE) {
3394 pr_debug("unknown feature %d, continuing...\n", feat);
3395 return 0;
3396 }
3397
Robert Richterf1c67db2012-02-10 15:41:56 +01003398 if (!feat_ops[feat].process)
3399 return 0;
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003400
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07003401 return feat_ops[feat].process(&fdd, data);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003402}
3403
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003404static int perf_file_header__read_pipe(struct perf_pipe_file_header *header,
Tom Zanussi454c4072010-05-01 01:41:20 -05003405 struct perf_header *ph, int fd,
3406 bool repipe)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003407{
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003408 struct feat_fd ff = {
3409 .fd = STDOUT_FILENO,
3410 .ph = ph,
3411 };
Jiri Olsa727ebd52013-11-28 11:30:14 +01003412 ssize_t ret;
Stephane Eranian73323f52012-02-02 13:54:44 +01003413
3414 ret = readn(fd, header, sizeof(*header));
3415 if (ret <= 0)
3416 return -1;
3417
Stephane Eranian114382a2012-02-09 23:21:08 +01003418 if (check_magic_endian(header->magic, header->size, true, ph) < 0) {
3419 pr_debug("endian/magic failed\n");
Tom Zanussi8dc58102010-04-01 23:59:15 -05003420 return -1;
Stephane Eranian114382a2012-02-09 23:21:08 +01003421 }
3422
3423 if (ph->needs_swap)
3424 header->size = bswap_64(header->size);
Tom Zanussi8dc58102010-04-01 23:59:15 -05003425
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003426 if (repipe && do_write(&ff, header, sizeof(*header)) < 0)
Tom Zanussi454c4072010-05-01 01:41:20 -05003427 return -1;
3428
Tom Zanussi8dc58102010-04-01 23:59:15 -05003429 return 0;
3430}
3431
Jiri Olsad4339562013-07-17 19:49:41 +02003432static int perf_header__read_pipe(struct perf_session *session)
Tom Zanussi8dc58102010-04-01 23:59:15 -05003433{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003434 struct perf_header *header = &session->header;
Tom Zanussi8dc58102010-04-01 23:59:15 -05003435 struct perf_pipe_file_header f_header;
3436
Jiri Olsacc9784bd2013-10-15 16:27:34 +02003437 if (perf_file_header__read_pipe(&f_header, header,
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003438 perf_data__fd(session->data),
Tom Zanussi454c4072010-05-01 01:41:20 -05003439 session->repipe) < 0) {
Tom Zanussi8dc58102010-04-01 23:59:15 -05003440 pr_debug("incompatible file format\n");
3441 return -EINVAL;
3442 }
3443
Tom Zanussi8dc58102010-04-01 23:59:15 -05003444 return 0;
3445}
3446
Stephane Eranian69996df2012-02-09 23:21:06 +01003447static int read_attr(int fd, struct perf_header *ph,
3448 struct perf_file_attr *f_attr)
3449{
3450 struct perf_event_attr *attr = &f_attr->attr;
3451 size_t sz, left;
3452 size_t our_sz = sizeof(f_attr->attr);
Jiri Olsa727ebd52013-11-28 11:30:14 +01003453 ssize_t ret;
Stephane Eranian69996df2012-02-09 23:21:06 +01003454
3455 memset(f_attr, 0, sizeof(*f_attr));
3456
3457 /* read minimal guaranteed structure */
3458 ret = readn(fd, attr, PERF_ATTR_SIZE_VER0);
3459 if (ret <= 0) {
3460 pr_debug("cannot read %d bytes of header attr\n",
3461 PERF_ATTR_SIZE_VER0);
3462 return -1;
3463 }
3464
3465 /* on file perf_event_attr size */
3466 sz = attr->size;
Stephane Eranian114382a2012-02-09 23:21:08 +01003467
Stephane Eranian69996df2012-02-09 23:21:06 +01003468 if (ph->needs_swap)
3469 sz = bswap_32(sz);
3470
3471 if (sz == 0) {
3472 /* assume ABI0 */
3473 sz = PERF_ATTR_SIZE_VER0;
3474 } else if (sz > our_sz) {
3475 pr_debug("file uses a more recent and unsupported ABI"
3476 " (%zu bytes extra)\n", sz - our_sz);
3477 return -1;
3478 }
3479 /* what we have not yet read and that we know about */
3480 left = sz - PERF_ATTR_SIZE_VER0;
3481 if (left) {
3482 void *ptr = attr;
3483 ptr += PERF_ATTR_SIZE_VER0;
3484
3485 ret = readn(fd, ptr, left);
3486 }
3487 /* read perf_file_section, ids are read in caller */
3488 ret = readn(fd, &f_attr->ids, sizeof(f_attr->ids));
3489
3490 return ret <= 0 ? -1 : 0;
3491}
3492
Jiri Olsa32dcd022019-07-21 13:23:51 +02003493static int perf_evsel__prepare_tracepoint_event(struct evsel *evsel,
Tzvetomir Stoyanov (VMware)096177a2018-08-08 14:02:46 -04003494 struct tep_handle *pevent)
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003495{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003496 struct tep_event *event;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003497 char bf[128];
3498
Namhyung Kim831394b2012-09-06 11:10:46 +09003499 /* already prepared */
3500 if (evsel->tp_format)
3501 return 0;
3502
Namhyung Kim3dce2ce2013-03-21 16:18:48 +09003503 if (pevent == NULL) {
3504 pr_debug("broken or missing trace data\n");
3505 return -1;
3506 }
3507
Jiri Olsa1fc632c2019-07-21 13:24:29 +02003508 event = tep_find_event(pevent, evsel->core.attr.config);
Namhyung Kima7619ae2013-04-18 21:24:16 +09003509 if (event == NULL) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02003510 pr_debug("cannot find event format for %d\n", (int)evsel->core.attr.config);
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003511 return -1;
Namhyung Kima7619ae2013-04-18 21:24:16 +09003512 }
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003513
Namhyung Kim831394b2012-09-06 11:10:46 +09003514 if (!evsel->name) {
3515 snprintf(bf, sizeof(bf), "%s:%s", event->system, event->name);
3516 evsel->name = strdup(bf);
3517 if (evsel->name == NULL)
3518 return -1;
3519 }
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003520
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -03003521 evsel->tp_format = event;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003522 return 0;
3523}
3524
Jiri Olsa63503db2019-07-21 13:23:52 +02003525static int perf_evlist__prepare_tracepoint_events(struct evlist *evlist,
Tzvetomir Stoyanov (VMware)096177a2018-08-08 14:02:46 -04003526 struct tep_handle *pevent)
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003527{
Jiri Olsa32dcd022019-07-21 13:23:51 +02003528 struct evsel *pos;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003529
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003530 evlist__for_each_entry(evlist, pos) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02003531 if (pos->core.attr.type == PERF_TYPE_TRACEPOINT &&
Namhyung Kim831394b2012-09-06 11:10:46 +09003532 perf_evsel__prepare_tracepoint_event(pos, pevent))
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003533 return -1;
3534 }
3535
3536 return 0;
3537}
3538
Jiri Olsad4339562013-07-17 19:49:41 +02003539int perf_session__read_header(struct perf_session *session)
Tom Zanussi8dc58102010-04-01 23:59:15 -05003540{
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003541 struct perf_data *data = session->data;
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003542 struct perf_header *header = &session->header;
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003543 struct perf_file_header f_header;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003544 struct perf_file_attr f_attr;
3545 u64 f_id;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003546 int nr_attrs, nr_ids, i, j;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003547 int fd = perf_data__fd(data);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003548
Jiri Olsa0f98b112019-07-21 13:23:55 +02003549 session->evlist = evlist__new();
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003550 if (session->evlist == NULL)
3551 return -ENOMEM;
3552
Kan Liang2c071442015-08-28 05:48:05 -04003553 session->evlist->env = &header->env;
Arnaldo Carvalho de Melo4cde9982015-09-09 12:25:00 -03003554 session->machines.host.env = &header->env;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003555 if (perf_data__is_pipe(data))
Jiri Olsad4339562013-07-17 19:49:41 +02003556 return perf_header__read_pipe(session);
Tom Zanussi8dc58102010-04-01 23:59:15 -05003557
Stephane Eranian69996df2012-02-09 23:21:06 +01003558 if (perf_file_header__read(&f_header, header, fd) < 0)
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02003559 return -EINVAL;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003560
Namhyung Kimb314e5c2013-09-30 17:19:48 +09003561 /*
3562 * Sanity check that perf.data was written cleanly; data size is
3563 * initialized to 0 and updated only if the on_exit function is run.
3564 * If data size is still 0 then the file contains only partial
3565 * information. Just warn user and process it as much as it can.
3566 */
3567 if (f_header.data.size == 0) {
3568 pr_warning("WARNING: The %s file's data size field is 0 which is unexpected.\n"
3569 "Was the 'perf record' command properly terminated?\n",
Jiri Olsaeae8ad82017-01-23 22:25:41 +01003570 data->file.path);
Namhyung Kimb314e5c2013-09-30 17:19:48 +09003571 }
3572
Vince Weaver76222362019-07-23 11:06:01 -04003573 if (f_header.attr_size == 0) {
3574 pr_err("ERROR: The %s file's attr size field is 0 which is unexpected.\n"
3575 "Was the 'perf record' command properly terminated?\n",
3576 data->file.path);
3577 return -EINVAL;
3578 }
3579
Stephane Eranian69996df2012-02-09 23:21:06 +01003580 nr_attrs = f_header.attrs.size / f_header.attr_size;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003581 lseek(fd, f_header.attrs.offset, SEEK_SET);
3582
3583 for (i = 0; i < nr_attrs; i++) {
Jiri Olsa32dcd022019-07-21 13:23:51 +02003584 struct evsel *evsel;
Peter Zijlstra1c222bc2009-08-06 20:57:41 +02003585 off_t tmp;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003586
Stephane Eranian69996df2012-02-09 23:21:06 +01003587 if (read_attr(fd, header, &f_attr) < 0)
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003588 goto out_errno;
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003589
David Ahern1060ab82015-04-09 16:15:46 -04003590 if (header->needs_swap) {
3591 f_attr.ids.size = bswap_64(f_attr.ids.size);
3592 f_attr.ids.offset = bswap_64(f_attr.ids.offset);
David Aherneda39132011-07-15 12:34:09 -06003593 perf_event__attr_swap(&f_attr.attr);
David Ahern1060ab82015-04-09 16:15:46 -04003594 }
David Aherneda39132011-07-15 12:34:09 -06003595
Peter Zijlstra1c222bc2009-08-06 20:57:41 +02003596 tmp = lseek(fd, 0, SEEK_CUR);
Jiri Olsa365c3ae2019-07-21 13:23:58 +02003597 evsel = evsel__new(&f_attr.attr);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003598
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003599 if (evsel == NULL)
3600 goto out_delete_evlist;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03003601
3602 evsel->needs_swap = header->needs_swap;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003603 /*
3604 * Do it before so that if perf_evsel__alloc_id fails, this
Jiri Olsac12995a2019-07-21 13:23:56 +02003605 * entry gets purged too at evlist__delete().
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003606 */
Jiri Olsaa1cf3a72019-07-21 13:23:59 +02003607 evlist__add(session->evlist, evsel);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003608
3609 nr_ids = f_attr.ids.size / sizeof(u64);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003610 /*
3611 * We don't have the cpu and thread maps on the header, so
3612 * for allocating the perf_sample_id table we fake 1 cpu and
3613 * hattr->ids threads.
3614 */
Jiri Olsa70c20362019-09-03 10:34:29 +02003615 if (perf_evsel__alloc_id(&evsel->core, 1, nr_ids))
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003616 goto out_delete_evlist;
3617
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003618 lseek(fd, f_attr.ids.offset, SEEK_SET);
3619
3620 for (j = 0; j < nr_ids; j++) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003621 if (perf_header__getbuffer64(header, fd, &f_id, sizeof(f_id)))
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003622 goto out_errno;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003623
Jiri Olsab0031c22019-09-03 11:01:04 +02003624 perf_evlist__id_add(&session->evlist->core, &evsel->core, 0, j, f_id);
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02003625 }
Arnaldo Carvalho de Melo11deb1f2009-11-17 01:18:09 -02003626
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003627 lseek(fd, tmp, SEEK_SET);
3628 }
3629
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003630 perf_header__process_sections(header, fd, &session->tevent,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003631 perf_file_section__process);
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +01003632
Namhyung Kim831394b2012-09-06 11:10:46 +09003633 if (perf_evlist__prepare_tracepoint_events(session->evlist,
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003634 session->tevent.pevent))
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003635 goto out_delete_evlist;
3636
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02003637 return 0;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003638out_errno:
3639 return -errno;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003640
3641out_delete_evlist:
Jiri Olsac12995a2019-07-21 13:23:56 +02003642 evlist__delete(session->evlist);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003643 session->evlist = NULL;
3644 return -ENOMEM;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003645}
Frederic Weisbecker0d3a5c82009-08-16 20:56:37 +02003646
Jiri Olsa89f16882018-09-13 14:54:03 +02003647int perf_event__process_feature(struct perf_session *session,
3648 union perf_event *event)
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003649{
Jiri Olsa89f16882018-09-13 14:54:03 +02003650 struct perf_tool *tool = session->tool;
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003651 struct feat_fd ff = { .fd = 0 };
Jiri Olsa72932372019-08-28 15:57:16 +02003652 struct perf_record_header_feature *fe = (struct perf_record_header_feature *)event;
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003653 int type = fe->header.type;
3654 u64 feat = fe->feat_id;
3655
3656 if (type < 0 || type >= PERF_RECORD_HEADER_MAX) {
3657 pr_warning("invalid record type %d in pipe-mode\n", type);
3658 return 0;
3659 }
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303660 if (feat == HEADER_RESERVED || feat >= HEADER_LAST_FEATURE) {
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003661 pr_warning("invalid record type %d in pipe-mode\n", type);
3662 return -1;
3663 }
3664
3665 if (!feat_ops[feat].process)
3666 return 0;
3667
3668 ff.buf = (void *)fe->data;
Jiri Olsa79b2fe52019-07-15 16:04:26 +02003669 ff.size = event->header.size - sizeof(*fe);
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003670 ff.ph = &session->header;
3671
3672 if (feat_ops[feat].process(&ff, NULL))
3673 return -1;
3674
3675 if (!feat_ops[feat].print || !tool->show_feat_hdr)
3676 return 0;
3677
3678 if (!feat_ops[feat].full_only ||
3679 tool->show_feat_hdr >= SHOW_FEAT_HEADER_FULL_INFO) {
3680 feat_ops[feat].print(&ff, stdout);
3681 } else {
3682 fprintf(stdout, "# %s info available, use -I to display\n",
3683 feat_ops[feat].name);
3684 }
3685
3686 return 0;
3687}
3688
Jiri Olsac853f932015-10-25 15:51:41 +01003689size_t perf_event__fprintf_event_update(union perf_event *event, FILE *fp)
3690{
Jiri Olsa72932372019-08-28 15:57:16 +02003691 struct perf_record_event_update *ev = &event->event_update;
3692 struct perf_record_event_update_scale *ev_scale;
3693 struct perf_record_event_update_cpus *ev_cpus;
Jiri Olsaf8548392019-07-21 13:23:49 +02003694 struct perf_cpu_map *map;
Jiri Olsac853f932015-10-25 15:51:41 +01003695 size_t ret;
3696
Jiri Olsa5ded0682019-08-28 15:56:57 +02003697 ret = fprintf(fp, "\n... id: %" PRI_lu64 "\n", ev->id);
Jiri Olsac853f932015-10-25 15:51:41 +01003698
3699 switch (ev->type) {
3700 case PERF_EVENT_UPDATE__SCALE:
Jiri Olsa72932372019-08-28 15:57:16 +02003701 ev_scale = (struct perf_record_event_update_scale *)ev->data;
Jiri Olsac853f932015-10-25 15:51:41 +01003702 ret += fprintf(fp, "... scale: %f\n", ev_scale->scale);
3703 break;
3704 case PERF_EVENT_UPDATE__UNIT:
3705 ret += fprintf(fp, "... unit: %s\n", ev->data);
3706 break;
3707 case PERF_EVENT_UPDATE__NAME:
3708 ret += fprintf(fp, "... name: %s\n", ev->data);
3709 break;
3710 case PERF_EVENT_UPDATE__CPUS:
Jiri Olsa72932372019-08-28 15:57:16 +02003711 ev_cpus = (struct perf_record_event_update_cpus *)ev->data;
Jiri Olsac853f932015-10-25 15:51:41 +01003712 ret += fprintf(fp, "... ");
3713
3714 map = cpu_map__new_data(&ev_cpus->cpus);
3715 if (map)
3716 ret += cpu_map__fprintf(map, fp);
3717 else
3718 ret += fprintf(fp, "failed to get cpus\n");
3719 break;
3720 default:
3721 ret += fprintf(fp, "... unknown type\n");
3722 break;
3723 }
3724
3725 return ret;
3726}
Jiri Olsa86ebb092015-10-25 15:51:40 +01003727
Adrian Hunter47c3d102013-07-04 16:20:21 +03003728int perf_event__process_attr(struct perf_tool *tool __maybe_unused,
3729 union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +02003730 struct evlist **pevlist)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003731{
Robert Richterf4d83432012-08-16 21:10:17 +02003732 u32 i, ids, n_ids;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003733 struct evsel *evsel;
Jiri Olsa63503db2019-07-21 13:23:52 +02003734 struct evlist *evlist = *pevlist;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003735
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003736 if (evlist == NULL) {
Jiri Olsa0f98b112019-07-21 13:23:55 +02003737 *pevlist = evlist = evlist__new();
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003738 if (evlist == NULL)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003739 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003740 }
3741
Jiri Olsa365c3ae2019-07-21 13:23:58 +02003742 evsel = evsel__new(&event->attr.attr);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003743 if (evsel == NULL)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003744 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003745
Jiri Olsaa1cf3a72019-07-21 13:23:59 +02003746 evlist__add(evlist, evsel);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003747
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003748 ids = event->header.size;
3749 ids -= (void *)&event->attr.id - (void *)event;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003750 n_ids = ids / sizeof(u64);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003751 /*
3752 * We don't have the cpu and thread maps on the header, so
3753 * for allocating the perf_sample_id table we fake 1 cpu and
3754 * hattr->ids threads.
3755 */
Jiri Olsa70c20362019-09-03 10:34:29 +02003756 if (perf_evsel__alloc_id(&evsel->core, 1, n_ids))
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003757 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003758
3759 for (i = 0; i < n_ids; i++) {
Jiri Olsab0031c22019-09-03 11:01:04 +02003760 perf_evlist__id_add(&evlist->core, &evsel->core, 0, i, event->attr.id[i]);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003761 }
3762
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003763 return 0;
3764}
Tom Zanussicd19a032010-04-01 23:59:20 -05003765
Jiri Olsaffe777252015-10-25 15:51:36 +01003766int perf_event__process_event_update(struct perf_tool *tool __maybe_unused,
3767 union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +02003768 struct evlist **pevlist)
Jiri Olsaffe777252015-10-25 15:51:36 +01003769{
Jiri Olsa72932372019-08-28 15:57:16 +02003770 struct perf_record_event_update *ev = &event->event_update;
3771 struct perf_record_event_update_scale *ev_scale;
3772 struct perf_record_event_update_cpus *ev_cpus;
Jiri Olsa63503db2019-07-21 13:23:52 +02003773 struct evlist *evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003774 struct evsel *evsel;
Jiri Olsaf8548392019-07-21 13:23:49 +02003775 struct perf_cpu_map *map;
Jiri Olsaffe777252015-10-25 15:51:36 +01003776
3777 if (!pevlist || *pevlist == NULL)
3778 return -EINVAL;
3779
3780 evlist = *pevlist;
3781
3782 evsel = perf_evlist__id2evsel(evlist, ev->id);
3783 if (evsel == NULL)
3784 return -EINVAL;
3785
Jiri Olsaa6e52812015-10-25 15:51:37 +01003786 switch (ev->type) {
3787 case PERF_EVENT_UPDATE__UNIT:
3788 evsel->unit = strdup(ev->data);
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003789 break;
Jiri Olsa802c9042015-10-25 15:51:39 +01003790 case PERF_EVENT_UPDATE__NAME:
3791 evsel->name = strdup(ev->data);
3792 break;
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003793 case PERF_EVENT_UPDATE__SCALE:
Jiri Olsa72932372019-08-28 15:57:16 +02003794 ev_scale = (struct perf_record_event_update_scale *)ev->data;
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003795 evsel->scale = ev_scale->scale;
Arnaldo Carvalho de Melo8434a2e2017-02-08 21:57:22 -03003796 break;
Jiri Olsa86ebb092015-10-25 15:51:40 +01003797 case PERF_EVENT_UPDATE__CPUS:
Jiri Olsa72932372019-08-28 15:57:16 +02003798 ev_cpus = (struct perf_record_event_update_cpus *)ev->data;
Jiri Olsa86ebb092015-10-25 15:51:40 +01003799
3800 map = cpu_map__new_data(&ev_cpus->cpus);
3801 if (map)
Jiri Olsafe1f61b2019-07-21 13:24:38 +02003802 evsel->core.own_cpus = map;
Jiri Olsa86ebb092015-10-25 15:51:40 +01003803 else
3804 pr_err("failed to get event_update cpus\n");
Jiri Olsaa6e52812015-10-25 15:51:37 +01003805 default:
3806 break;
3807 }
3808
Jiri Olsaffe777252015-10-25 15:51:36 +01003809 return 0;
3810}
3811
Jiri Olsa89f16882018-09-13 14:54:03 +02003812int perf_event__process_tracing_data(struct perf_session *session,
3813 union perf_event *event)
Tom Zanussi92155452010-04-01 23:59:21 -05003814{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003815 ssize_t size_read, padding, size = event->tracing_data.size;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003816 int fd = perf_data__fd(session->data);
Jiri Olsacc9784bd2013-10-15 16:27:34 +02003817 off_t offset = lseek(fd, 0, SEEK_CUR);
Tom Zanussi92155452010-04-01 23:59:21 -05003818 char buf[BUFSIZ];
3819
3820 /* setup for reading amidst mmap */
Jiri Olsa72932372019-08-28 15:57:16 +02003821 lseek(fd, offset + sizeof(struct perf_record_header_tracing_data),
Tom Zanussi92155452010-04-01 23:59:21 -05003822 SEEK_SET);
3823
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003824 size_read = trace_report(fd, &session->tevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03003825 session->repipe);
Irina Tirdea9ac3e482012-09-11 01:15:01 +03003826 padding = PERF_ALIGN(size_read, sizeof(u64)) - size_read;
Tom Zanussi92155452010-04-01 23:59:21 -05003827
Jiri Olsacc9784bd2013-10-15 16:27:34 +02003828 if (readn(fd, buf, padding) < 0) {
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03003829 pr_err("%s: reading input file", __func__);
3830 return -1;
3831 }
Tom Zanussi454c4072010-05-01 01:41:20 -05003832 if (session->repipe) {
3833 int retw = write(STDOUT_FILENO, buf, padding);
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03003834 if (retw <= 0 || retw != padding) {
3835 pr_err("%s: repiping tracing data padding", __func__);
3836 return -1;
3837 }
Tom Zanussi454c4072010-05-01 01:41:20 -05003838 }
Tom Zanussi92155452010-04-01 23:59:21 -05003839
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03003840 if (size_read + padding != size) {
3841 pr_err("%s: tracing data size mismatch", __func__);
3842 return -1;
3843 }
Tom Zanussi92155452010-04-01 23:59:21 -05003844
Namhyung Kim831394b2012-09-06 11:10:46 +09003845 perf_evlist__prepare_tracepoint_events(session->evlist,
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003846 session->tevent.pevent);
Arnaldo Carvalho de Melo8b6ee4c2012-08-07 23:36:16 -03003847
Tom Zanussi92155452010-04-01 23:59:21 -05003848 return size_read + padding;
3849}
Tom Zanussic7929e42010-04-01 23:59:22 -05003850
Jiri Olsa89f16882018-09-13 14:54:03 +02003851int perf_event__process_build_id(struct perf_session *session,
3852 union perf_event *event)
Tom Zanussic7929e42010-04-01 23:59:22 -05003853{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003854 __event_process_build_id(&event->build_id,
3855 event->build_id.filename,
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08003856 session);
Tom Zanussic7929e42010-04-01 23:59:22 -05003857 return 0;
3858}