blob: 21243adbb9fd7a31b000fd0862ab4d9b08b7e5af [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"
Jiri Olsad1e325c2020-08-05 11:34:40 +020049#include "clockid.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020050
Arnaldo Carvalho de Melo3052ba52019-06-25 17:27:31 -030051#include <linux/ctype.h>
Arnaldo Carvalho de Melofb71c86c2019-09-03 10:56:06 -030052#include <internal/lib.h>
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030053
Stephane Eranian73323f52012-02-02 13:54:44 +010054/*
55 * magic2 = "PERFILE2"
56 * must be a numerical value to let the endianness
57 * determine the memory layout. That way we are able
58 * to detect endianness when reading the perf.data file
59 * back.
60 *
61 * we check for legacy (PERFFILE) format.
62 */
63static const char *__perf_magic1 = "PERFFILE";
64static const u64 __perf_magic2 = 0x32454c4946524550ULL;
65static const u64 __perf_magic2_sw = 0x50455246494c4532ULL;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020066
Stephane Eranian73323f52012-02-02 13:54:44 +010067#define PERF_MAGIC __perf_magic2
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020068
Soramichi AKIYAMAd25ed5d2017-01-17 00:22:37 +090069const char perf_version_string[] = PERF_VERSION;
70
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020071struct perf_file_attr {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020072 struct perf_event_attr attr;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020073 struct perf_file_section ids;
74};
75
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030076void perf_header__set_feat(struct perf_header *header, int feat)
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020077{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030078 set_bit(feat, header->adds_features);
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020079}
80
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030081void perf_header__clear_feat(struct perf_header *header, int feat)
Arnaldo Carvalho de Melobaa2f6c2010-11-26 19:39:15 -020082{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030083 clear_bit(feat, header->adds_features);
Arnaldo Carvalho de Melobaa2f6c2010-11-26 19:39:15 -020084}
85
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030086bool perf_header__has_feat(const struct perf_header *header, int feat)
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020087{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030088 return test_bit(feat, header->adds_features);
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020089}
90
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -070091static int __do_write_fd(struct feat_fd *ff, const void *buf, size_t size)
92{
93 ssize_t ret = writen(ff->fd, buf, size);
94
95 if (ret != (ssize_t)size)
96 return ret < 0 ? (int)ret : -1;
97 return 0;
98}
99
100static int __do_write_buf(struct feat_fd *ff, const void *buf, size_t size)
101{
102 /* struct perf_event_header::size is u16 */
103 const size_t max_size = 0xffff - sizeof(struct perf_event_header);
104 size_t new_size = ff->size;
105 void *addr;
106
107 if (size + ff->offset > max_size)
108 return -E2BIG;
109
110 while (size > (new_size - ff->offset))
111 new_size <<= 1;
112 new_size = min(max_size, new_size);
113
114 if (ff->size < new_size) {
115 addr = realloc(ff->buf, new_size);
116 if (!addr)
117 return -ENOMEM;
118 ff->buf = addr;
119 ff->size = new_size;
120 }
121
122 memcpy(ff->buf + ff->offset, buf, size);
123 ff->offset += size;
124
125 return 0;
126}
127
David Carrillo-Cisneros2ff53652017-07-17 21:25:36 -0700128/* Return: 0 if succeded, -ERR if failed. */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700129int do_write(struct feat_fd *ff, const void *buf, size_t size)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200130{
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700131 if (!ff->buf)
132 return __do_write_fd(ff, buf, size);
133 return __do_write_buf(ff, buf, size);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200134}
135
David Carrillo-Cisneros2ff53652017-07-17 21:25:36 -0700136/* Return: 0 if succeded, -ERR if failed. */
Jiri Olsae2091ce2018-03-07 16:50:08 +0100137static int do_write_bitmap(struct feat_fd *ff, unsigned long *set, u64 size)
138{
139 u64 *p = (u64 *) set;
140 int i, ret;
141
142 ret = do_write(ff, &size, sizeof(size));
143 if (ret < 0)
144 return ret;
145
146 for (i = 0; (u64) i < BITS_TO_U64(size); i++) {
147 ret = do_write(ff, p + i, sizeof(*p));
148 if (ret < 0)
149 return ret;
150 }
151
152 return 0;
153}
154
155/* Return: 0 if succeded, -ERR if failed. */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700156int write_padded(struct feat_fd *ff, const void *bf,
157 size_t count, size_t count_aligned)
Arnaldo Carvalho de Melof92cb242010-01-04 16:19:28 -0200158{
159 static const char zero_buf[NAME_ALIGN];
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700160 int err = do_write(ff, bf, count);
Arnaldo Carvalho de Melof92cb242010-01-04 16:19:28 -0200161
162 if (!err)
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700163 err = do_write(ff, zero_buf, count_aligned - count);
Arnaldo Carvalho de Melof92cb242010-01-04 16:19:28 -0200164
165 return err;
166}
167
Kan Liang2bb00d22015-09-01 09:58:12 -0400168#define string_size(str) \
169 (PERF_ALIGN((strlen(str) + 1), NAME_ALIGN) + sizeof(u32))
170
David Carrillo-Cisneros2ff53652017-07-17 21:25:36 -0700171/* Return: 0 if succeded, -ERR if failed. */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700172static int do_write_string(struct feat_fd *ff, const char *str)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200173{
174 u32 len, olen;
175 int ret;
176
177 olen = strlen(str) + 1;
Irina Tirdea9ac3e482012-09-11 01:15:01 +0300178 len = PERF_ALIGN(olen, NAME_ALIGN);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200179
180 /* write len, incl. \0 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700181 ret = do_write(ff, &len, sizeof(len));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200182 if (ret < 0)
183 return ret;
184
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700185 return write_padded(ff, str, olen, len);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200186}
187
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700188static int __do_read_fd(struct feat_fd *ff, void *addr, ssize_t size)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700189{
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700190 ssize_t ret = readn(ff->fd, addr, size);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700191
192 if (ret != size)
193 return ret < 0 ? (int)ret : -1;
194 return 0;
195}
196
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700197static int __do_read_buf(struct feat_fd *ff, void *addr, ssize_t size)
198{
199 if (size > (ssize_t)ff->size - ff->offset)
200 return -1;
201
202 memcpy(addr, ff->buf + ff->offset, size);
203 ff->offset += size;
204
205 return 0;
206
207}
208
209static int __do_read(struct feat_fd *ff, void *addr, ssize_t size)
210{
211 if (!ff->buf)
212 return __do_read_fd(ff, addr, size);
213 return __do_read_buf(ff, addr, size);
214}
215
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700216static int do_read_u32(struct feat_fd *ff, u32 *addr)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700217{
218 int ret;
219
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700220 ret = __do_read(ff, addr, sizeof(*addr));
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700221 if (ret)
222 return ret;
223
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700224 if (ff->ph->needs_swap)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700225 *addr = bswap_32(*addr);
226 return 0;
227}
228
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700229static int do_read_u64(struct feat_fd *ff, u64 *addr)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700230{
231 int ret;
232
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700233 ret = __do_read(ff, addr, sizeof(*addr));
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700234 if (ret)
235 return ret;
236
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700237 if (ff->ph->needs_swap)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700238 *addr = bswap_64(*addr);
239 return 0;
240}
241
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700242static char *do_read_string(struct feat_fd *ff)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200243{
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200244 u32 len;
245 char *buf;
246
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700247 if (do_read_u32(ff, &len))
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200248 return NULL;
249
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200250 buf = malloc(len);
251 if (!buf)
252 return NULL;
253
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700254 if (!__do_read(ff, buf, len)) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200255 /*
256 * strings are padded by zeroes
257 * thus the actual strlen of buf
258 * may be less than len
259 */
260 return buf;
261 }
262
263 free(buf);
264 return NULL;
265}
266
Jiri Olsae2091ce2018-03-07 16:50:08 +0100267/* Return: 0 if succeded, -ERR if failed. */
268static int do_read_bitmap(struct feat_fd *ff, unsigned long **pset, u64 *psize)
269{
270 unsigned long *set;
271 u64 size, *p;
272 int i, ret;
273
274 ret = do_read_u64(ff, &size);
275 if (ret)
276 return ret;
277
278 set = bitmap_alloc(size);
279 if (!set)
280 return -ENOMEM;
281
Jiri Olsae2091ce2018-03-07 16:50:08 +0100282 p = (u64 *) set;
283
284 for (i = 0; (u64) i < BITS_TO_U64(size); i++) {
285 ret = do_read_u64(ff, p + i);
286 if (ret < 0) {
287 free(set);
288 return ret;
289 }
290 }
291
292 *pset = set;
293 *psize = size;
294 return 0;
295}
296
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700297static int write_tracing_data(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200298 struct evlist *evlist)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200299{
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700300 if (WARN(ff->buf, "Error: calling %s in pipe-mode.\n", __func__))
301 return -1;
302
Jiri Olsace9036a2019-07-21 13:24:23 +0200303 return read_tracing_data(ff->fd, &evlist->core.entries);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200304}
305
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700306static int write_build_id(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200307 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200308{
309 struct perf_session *session;
310 int err;
311
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700312 session = container_of(ff->ph, struct perf_session, header);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200313
Robert Richtere20960c2011-12-07 10:02:55 +0100314 if (!perf_session__read_build_ids(session, true))
315 return -1;
316
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700317 if (WARN(ff->buf, "Error: calling %s in pipe-mode.\n", __func__))
318 return -1;
319
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700320 err = perf_session__write_buildid_table(session, ff);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200321 if (err < 0) {
322 pr_debug("failed to write buildid table\n");
323 return err;
324 }
Namhyung Kim73c5d222014-11-07 22:57:56 +0900325 perf_session__cache_build_ids(session);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200326
327 return 0;
328}
329
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700330static int write_hostname(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200331 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200332{
333 struct utsname uts;
334 int ret;
335
336 ret = uname(&uts);
337 if (ret < 0)
338 return -1;
339
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700340 return do_write_string(ff, uts.nodename);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200341}
342
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700343static int write_osrelease(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200344 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200345{
346 struct utsname uts;
347 int ret;
348
349 ret = uname(&uts);
350 if (ret < 0)
351 return -1;
352
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700353 return do_write_string(ff, uts.release);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200354}
355
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700356static int write_arch(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200357 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200358{
359 struct utsname uts;
360 int ret;
361
362 ret = uname(&uts);
363 if (ret < 0)
364 return -1;
365
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700366 return do_write_string(ff, uts.machine);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200367}
368
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700369static int write_version(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200370 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200371{
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700372 return do_write_string(ff, perf_version_string);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200373}
374
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700375static int __write_cpudesc(struct feat_fd *ff, const char *cpuinfo_proc)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200376{
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200377 FILE *file;
378 char *buf = NULL;
379 char *s, *p;
Wang Nan493c3032014-10-24 09:45:26 +0800380 const char *search = cpuinfo_proc;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200381 size_t len = 0;
382 int ret = -1;
383
384 if (!search)
385 return -1;
386
387 file = fopen("/proc/cpuinfo", "r");
388 if (!file)
389 return -1;
390
391 while (getline(&buf, &len, file) > 0) {
392 ret = strncmp(buf, search, strlen(search));
393 if (!ret)
394 break;
395 }
396
Wang Naned307752014-10-16 11:08:29 +0800397 if (ret) {
398 ret = -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200399 goto done;
Wang Naned307752014-10-16 11:08:29 +0800400 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200401
402 s = buf;
403
404 p = strchr(buf, ':');
405 if (p && *(p+1) == ' ' && *(p+2))
406 s = p + 2;
407 p = strchr(s, '\n');
408 if (p)
409 *p = '\0';
410
411 /* squash extra space characters (branding string) */
412 p = s;
413 while (*p) {
414 if (isspace(*p)) {
415 char *r = p + 1;
Arnaldo Carvalho de Melofc6a1722019-06-25 21:33:14 -0300416 char *q = skip_spaces(r);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200417 *p = ' ';
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200418 if (q != (p+1))
419 while ((*r++ = *q++));
420 }
421 p++;
422 }
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700423 ret = do_write_string(ff, s);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200424done:
425 free(buf);
426 fclose(file);
427 return ret;
428}
429
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700430static int write_cpudesc(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200431 struct evlist *evlist __maybe_unused)
Wang Nan493c3032014-10-24 09:45:26 +0800432{
Arnaldo Carvalho de Meloa7749402019-08-29 14:40:28 -0300433#if defined(__powerpc__) || defined(__hppa__) || defined(__sparc__)
434#define CPUINFO_PROC { "cpu", }
435#elif defined(__s390__)
436#define CPUINFO_PROC { "vendor_id", }
437#elif defined(__sh__)
438#define CPUINFO_PROC { "cpu type", }
439#elif defined(__alpha__) || defined(__mips__)
440#define CPUINFO_PROC { "cpu model", }
441#elif defined(__arm__)
442#define CPUINFO_PROC { "model name", "Processor", }
443#elif defined(__arc__)
444#define CPUINFO_PROC { "Processor", }
445#elif defined(__xtensa__)
446#define CPUINFO_PROC { "core ID", }
447#else
448#define CPUINFO_PROC { "model name", }
449#endif
Wang Nan493c3032014-10-24 09:45:26 +0800450 const char *cpuinfo_procs[] = CPUINFO_PROC;
Arnaldo Carvalho de Meloa7749402019-08-29 14:40:28 -0300451#undef CPUINFO_PROC
Wang Nan493c3032014-10-24 09:45:26 +0800452 unsigned int i;
453
454 for (i = 0; i < ARRAY_SIZE(cpuinfo_procs); i++) {
455 int ret;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700456 ret = __write_cpudesc(ff, cpuinfo_procs[i]);
Wang Nan493c3032014-10-24 09:45:26 +0800457 if (ret >= 0)
458 return ret;
459 }
460 return -1;
461}
462
463
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700464static int write_nrcpus(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200465 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200466{
467 long nr;
468 u32 nrc, nra;
469 int ret;
470
Jan Stancekda8a58b2017-02-17 12:10:26 +0100471 nrc = cpu__max_present_cpu();
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200472
473 nr = sysconf(_SC_NPROCESSORS_ONLN);
474 if (nr < 0)
475 return -1;
476
477 nra = (u32)(nr & UINT_MAX);
478
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700479 ret = do_write(ff, &nrc, sizeof(nrc));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200480 if (ret < 0)
481 return ret;
482
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700483 return do_write(ff, &nra, sizeof(nra));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200484}
485
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700486static int write_event_desc(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200487 struct evlist *evlist)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200488{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200489 struct evsel *evsel;
Namhyung Kim74ba9e12012-09-05 14:02:47 +0900490 u32 nre, nri, sz;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200491 int ret;
492
Jiri Olsa6484d2f2019-07-21 13:24:28 +0200493 nre = evlist->core.nr_entries;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200494
495 /*
496 * write number of events
497 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700498 ret = do_write(ff, &nre, sizeof(nre));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200499 if (ret < 0)
500 return ret;
501
502 /*
503 * size of perf_event_attr struct
504 */
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200505 sz = (u32)sizeof(evsel->core.attr);
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700506 ret = do_write(ff, &sz, sizeof(sz));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200507 if (ret < 0)
508 return ret;
509
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300510 evlist__for_each_entry(evlist, evsel) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200511 ret = do_write(ff, &evsel->core.attr, sz);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200512 if (ret < 0)
513 return ret;
514 /*
515 * write number of unique id per event
516 * there is one id per instance of an event
517 *
518 * copy into an nri to be independent of the
519 * type of ids,
520 */
Jiri Olsae7eb9002019-09-02 22:15:47 +0200521 nri = evsel->core.ids;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700522 ret = do_write(ff, &nri, sizeof(nri));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200523 if (ret < 0)
524 return ret;
525
526 /*
527 * write event string as passed on cmdline
528 */
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300529 ret = do_write_string(ff, evsel__name(evsel));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200530 if (ret < 0)
531 return ret;
532 /*
533 * write unique ids for this event
534 */
Jiri Olsae7eb9002019-09-02 22:15:47 +0200535 ret = do_write(ff, evsel->core.id, evsel->core.ids * sizeof(u64));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200536 if (ret < 0)
537 return ret;
538 }
539 return 0;
540}
541
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700542static int write_cmdline(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200543 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200544{
Andi Kleen94816ad2019-02-24 07:37:19 -0800545 char pbuf[MAXPATHLEN], *buf;
546 int i, ret, n;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200547
Tommi Rantala55f771282017-03-22 15:06:24 +0200548 /* actual path to perf binary */
Andi Kleen94816ad2019-02-24 07:37:19 -0800549 buf = perf_exe(pbuf, MAXPATHLEN);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200550
551 /* account for binary path */
Arnaldo Carvalho de Melob6998692015-09-08 16:58:20 -0300552 n = perf_env.nr_cmdline + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200553
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700554 ret = do_write(ff, &n, sizeof(n));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200555 if (ret < 0)
556 return ret;
557
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700558 ret = do_write_string(ff, buf);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200559 if (ret < 0)
560 return ret;
561
Arnaldo Carvalho de Melob6998692015-09-08 16:58:20 -0300562 for (i = 0 ; i < perf_env.nr_cmdline; i++) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700563 ret = do_write_string(ff, perf_env.cmdline_argv[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200564 if (ret < 0)
565 return ret;
566 }
567 return 0;
568}
569
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200570
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700571static int write_cpu_topology(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200572 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200573{
Jiri Olsa5135d5e2019-02-19 10:58:13 +0100574 struct cpu_topology *tp;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200575 u32 i;
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300576 int ret, j;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200577
Jiri Olsa5135d5e2019-02-19 10:58:13 +0100578 tp = cpu_topology__new();
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200579 if (!tp)
580 return -1;
581
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700582 ret = do_write(ff, &tp->core_sib, sizeof(tp->core_sib));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200583 if (ret < 0)
584 goto done;
585
586 for (i = 0; i < tp->core_sib; i++) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700587 ret = do_write_string(ff, tp->core_siblings[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200588 if (ret < 0)
589 goto done;
590 }
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700591 ret = do_write(ff, &tp->thread_sib, sizeof(tp->thread_sib));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200592 if (ret < 0)
593 goto done;
594
595 for (i = 0; i < tp->thread_sib; i++) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700596 ret = do_write_string(ff, tp->thread_siblings[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200597 if (ret < 0)
598 break;
599 }
Kan Liang2bb00d22015-09-01 09:58:12 -0400600
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300601 ret = perf_env__read_cpu_topology_map(&perf_env);
602 if (ret < 0)
603 goto done;
604
605 for (j = 0; j < perf_env.nr_cpus_avail; j++) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700606 ret = do_write(ff, &perf_env.cpu[j].core_id,
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300607 sizeof(perf_env.cpu[j].core_id));
Kan Liang2bb00d22015-09-01 09:58:12 -0400608 if (ret < 0)
609 return ret;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700610 ret = do_write(ff, &perf_env.cpu[j].socket_id,
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300611 sizeof(perf_env.cpu[j].socket_id));
Kan Liang2bb00d22015-09-01 09:58:12 -0400612 if (ret < 0)
613 return ret;
614 }
Kan Liangacae8b32019-06-04 15:50:41 -0700615
616 if (!tp->die_sib)
617 goto done;
618
619 ret = do_write(ff, &tp->die_sib, sizeof(tp->die_sib));
620 if (ret < 0)
621 goto done;
622
623 for (i = 0; i < tp->die_sib; i++) {
624 ret = do_write_string(ff, tp->die_siblings[i]);
625 if (ret < 0)
626 goto done;
627 }
628
629 for (j = 0; j < perf_env.nr_cpus_avail; j++) {
630 ret = do_write(ff, &perf_env.cpu[j].die_id,
631 sizeof(perf_env.cpu[j].die_id));
632 if (ret < 0)
633 return ret;
634 }
635
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200636done:
Jiri Olsa5135d5e2019-02-19 10:58:13 +0100637 cpu_topology__delete(tp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200638 return ret;
639}
640
641
642
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700643static int write_total_mem(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200644 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200645{
646 char *buf = NULL;
647 FILE *fp;
648 size_t len = 0;
649 int ret = -1, n;
650 uint64_t mem;
651
652 fp = fopen("/proc/meminfo", "r");
653 if (!fp)
654 return -1;
655
656 while (getline(&buf, &len, fp) > 0) {
657 ret = strncmp(buf, "MemTotal:", 9);
658 if (!ret)
659 break;
660 }
661 if (!ret) {
662 n = sscanf(buf, "%*s %"PRIu64, &mem);
663 if (n == 1)
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700664 ret = do_write(ff, &mem, sizeof(mem));
Wang Naned307752014-10-16 11:08:29 +0800665 } else
666 ret = -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200667 free(buf);
668 fclose(fp);
669 return ret;
670}
671
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700672static int write_numa_topology(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200673 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200674{
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100675 struct numa_topology *tp;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200676 int ret = -1;
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100677 u32 i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200678
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100679 tp = numa_topology__new();
680 if (!tp)
681 return -ENOMEM;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200682
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100683 ret = do_write(ff, &tp->nr, sizeof(u32));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200684 if (ret < 0)
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100685 goto err;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200686
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100687 for (i = 0; i < tp->nr; i++) {
688 struct numa_topology_node *n = &tp->nodes[i];
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200689
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100690 ret = do_write(ff, &n->node, sizeof(u32));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200691 if (ret < 0)
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100692 goto err;
693
694 ret = do_write(ff, &n->mem_total, sizeof(u64));
695 if (ret)
696 goto err;
697
698 ret = do_write(ff, &n->mem_free, sizeof(u64));
699 if (ret)
700 goto err;
701
702 ret = do_write_string(ff, n->cpus);
703 if (ret < 0)
704 goto err;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200705 }
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100706
707 ret = 0;
708
709err:
710 numa_topology__delete(tp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200711 return ret;
712}
713
714/*
Robert Richter50a96672012-08-16 21:10:24 +0200715 * File format:
716 *
717 * struct pmu_mappings {
718 * u32 pmu_num;
719 * struct pmu_map {
720 * u32 type;
721 * char name[];
722 * }[pmu_num];
723 * };
724 */
725
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700726static int write_pmu_mappings(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200727 struct evlist *evlist __maybe_unused)
Robert Richter50a96672012-08-16 21:10:24 +0200728{
729 struct perf_pmu *pmu = NULL;
David Carrillo-Cisnerosa02c3952017-07-17 21:25:44 -0700730 u32 pmu_num = 0;
Namhyung Kim5323f602012-12-17 15:38:54 +0900731 int ret;
Robert Richter50a96672012-08-16 21:10:24 +0200732
David Carrillo-Cisnerosa02c3952017-07-17 21:25:44 -0700733 /*
734 * Do a first pass to count number of pmu to avoid lseek so this
735 * works in pipe mode as well.
736 */
737 while ((pmu = perf_pmu__scan(pmu))) {
738 if (!pmu->name)
739 continue;
740 pmu_num++;
741 }
742
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700743 ret = do_write(ff, &pmu_num, sizeof(pmu_num));
Namhyung Kim5323f602012-12-17 15:38:54 +0900744 if (ret < 0)
745 return ret;
Robert Richter50a96672012-08-16 21:10:24 +0200746
747 while ((pmu = perf_pmu__scan(pmu))) {
748 if (!pmu->name)
749 continue;
Namhyung Kim5323f602012-12-17 15:38:54 +0900750
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700751 ret = do_write(ff, &pmu->type, sizeof(pmu->type));
Namhyung Kim5323f602012-12-17 15:38:54 +0900752 if (ret < 0)
753 return ret;
754
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700755 ret = do_write_string(ff, pmu->name);
Namhyung Kim5323f602012-12-17 15:38:54 +0900756 if (ret < 0)
757 return ret;
Robert Richter50a96672012-08-16 21:10:24 +0200758 }
759
Robert Richter50a96672012-08-16 21:10:24 +0200760 return 0;
761}
762
763/*
Namhyung Kima8bb5592013-01-22 18:09:31 +0900764 * File format:
765 *
766 * struct group_descs {
767 * u32 nr_groups;
768 * struct group_desc {
769 * char name[];
770 * u32 leader_idx;
771 * u32 nr_members;
772 * }[nr_groups];
773 * };
774 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700775static int write_group_desc(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200776 struct evlist *evlist)
Namhyung Kima8bb5592013-01-22 18:09:31 +0900777{
778 u32 nr_groups = evlist->nr_groups;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200779 struct evsel *evsel;
Namhyung Kima8bb5592013-01-22 18:09:31 +0900780 int ret;
781
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700782 ret = do_write(ff, &nr_groups, sizeof(nr_groups));
Namhyung Kima8bb5592013-01-22 18:09:31 +0900783 if (ret < 0)
784 return ret;
785
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300786 evlist__for_each_entry(evlist, evsel) {
Arnaldo Carvalho de Meloc754c382020-04-30 10:51:16 -0300787 if (evsel__is_group_leader(evsel) && 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{
Arnaldo Carvalho de Melo05267c72019-12-11 10:09:24 -0300853 return ENOSYS; /* Not implemented */
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200854}
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{
Jiri Olsa9d88a1a12020-08-05 11:34:41 +0200895 return do_write(ff, &ff->ph->env.clock.clockid_res_ns,
896 sizeof(ff->ph->env.clock.clockid_res_ns));
Alexey Budankovcf790512018-10-09 17:36:24 +0300897}
898
Jiri Olsad1e325c2020-08-05 11:34:40 +0200899static int write_clock_data(struct feat_fd *ff,
900 struct evlist *evlist __maybe_unused)
901{
902 u64 *data64;
903 u32 data32;
904 int ret;
905
906 /* version */
907 data32 = 1;
908
909 ret = do_write(ff, &data32, sizeof(data32));
910 if (ret < 0)
911 return ret;
912
913 /* clockid */
914 data32 = ff->ph->env.clock.clockid;
915
916 ret = do_write(ff, &data32, sizeof(data32));
917 if (ret < 0)
918 return ret;
919
920 /* TOD ref time */
921 data64 = &ff->ph->env.clock.tod_ns;
922
923 ret = do_write(ff, data64, sizeof(*data64));
924 if (ret < 0)
925 return ret;
926
927 /* clockid ref time */
928 data64 = &ff->ph->env.clock.clockid_ns;
929
930 return do_write(ff, data64, sizeof(*data64));
931}
932
Jiri Olsa258031c2019-03-08 14:47:39 +0100933static int write_dir_format(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200934 struct evlist *evlist __maybe_unused)
Jiri Olsa258031c2019-03-08 14:47:39 +0100935{
936 struct perf_session *session;
937 struct perf_data *data;
938
939 session = container_of(ff->ph, struct perf_session, header);
940 data = session->data;
941
942 if (WARN_ON(!perf_data__is_dir(data)))
943 return -1;
944
945 return do_write(ff, &data->dir.version, sizeof(data->dir.version));
946}
947
Song Liu606f9722019-03-11 22:30:43 -0700948#ifdef HAVE_LIBBPF_SUPPORT
949static int write_bpf_prog_info(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200950 struct evlist *evlist __maybe_unused)
Song Liu606f9722019-03-11 22:30:43 -0700951{
952 struct perf_env *env = &ff->ph->env;
953 struct rb_root *root;
954 struct rb_node *next;
955 int ret;
956
957 down_read(&env->bpf_progs.lock);
958
959 ret = do_write(ff, &env->bpf_progs.infos_cnt,
960 sizeof(env->bpf_progs.infos_cnt));
961 if (ret < 0)
962 goto out;
963
964 root = &env->bpf_progs.infos;
965 next = rb_first(root);
966 while (next) {
967 struct bpf_prog_info_node *node;
968 size_t len;
969
970 node = rb_entry(next, struct bpf_prog_info_node, rb_node);
971 next = rb_next(&node->rb_node);
972 len = sizeof(struct bpf_prog_info_linear) +
973 node->info_linear->data_len;
974
975 /* before writing to file, translate address to offset */
976 bpf_program__bpil_addr_to_offs(node->info_linear);
977 ret = do_write(ff, node->info_linear, len);
978 /*
979 * translate back to address even when do_write() fails,
980 * so that this function never changes the data.
981 */
982 bpf_program__bpil_offs_to_addr(node->info_linear);
983 if (ret < 0)
984 goto out;
985 }
986out:
987 up_read(&env->bpf_progs.lock);
988 return ret;
989}
990#else // HAVE_LIBBPF_SUPPORT
991static int write_bpf_prog_info(struct feat_fd *ff __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +0200992 struct evlist *evlist __maybe_unused)
Song Liu606f9722019-03-11 22:30:43 -0700993{
994 return 0;
995}
996#endif // HAVE_LIBBPF_SUPPORT
997
Song Liua70a112312019-03-11 22:30:45 -0700998static int write_bpf_btf(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200999 struct evlist *evlist __maybe_unused)
Song Liua70a112312019-03-11 22:30:45 -07001000{
1001 struct perf_env *env = &ff->ph->env;
1002 struct rb_root *root;
1003 struct rb_node *next;
1004 int ret;
1005
1006 down_read(&env->bpf_progs.lock);
1007
1008 ret = do_write(ff, &env->bpf_progs.btfs_cnt,
1009 sizeof(env->bpf_progs.btfs_cnt));
1010
1011 if (ret < 0)
1012 goto out;
1013
1014 root = &env->bpf_progs.btfs;
1015 next = rb_first(root);
1016 while (next) {
1017 struct btf_node *node;
1018
1019 node = rb_entry(next, struct btf_node, rb_node);
1020 next = rb_next(&node->rb_node);
1021 ret = do_write(ff, &node->id,
1022 sizeof(u32) * 2 + node->data_size);
1023 if (ret < 0)
1024 goto out;
1025 }
1026out:
1027 up_read(&env->bpf_progs.lock);
1028 return ret;
1029}
1030
Jiri Olsa720e98b2016-02-16 16:01:43 +01001031static int cpu_cache_level__sort(const void *a, const void *b)
1032{
1033 struct cpu_cache_level *cache_a = (struct cpu_cache_level *)a;
1034 struct cpu_cache_level *cache_b = (struct cpu_cache_level *)b;
1035
1036 return cache_a->level - cache_b->level;
1037}
1038
1039static bool cpu_cache_level__cmp(struct cpu_cache_level *a, struct cpu_cache_level *b)
1040{
1041 if (a->level != b->level)
1042 return false;
1043
1044 if (a->line_size != b->line_size)
1045 return false;
1046
1047 if (a->sets != b->sets)
1048 return false;
1049
1050 if (a->ways != b->ways)
1051 return false;
1052
1053 if (strcmp(a->type, b->type))
1054 return false;
1055
1056 if (strcmp(a->size, b->size))
1057 return false;
1058
1059 if (strcmp(a->map, b->map))
1060 return false;
1061
1062 return true;
1063}
1064
1065static int cpu_cache_level__read(struct cpu_cache_level *cache, u32 cpu, u16 level)
1066{
1067 char path[PATH_MAX], file[PATH_MAX];
1068 struct stat st;
1069 size_t len;
1070
1071 scnprintf(path, PATH_MAX, "devices/system/cpu/cpu%d/cache/index%d/", cpu, level);
1072 scnprintf(file, PATH_MAX, "%s/%s", sysfs__mountpoint(), path);
1073
1074 if (stat(file, &st))
1075 return 1;
1076
1077 scnprintf(file, PATH_MAX, "%s/level", path);
1078 if (sysfs__read_int(file, (int *) &cache->level))
1079 return -1;
1080
1081 scnprintf(file, PATH_MAX, "%s/coherency_line_size", path);
1082 if (sysfs__read_int(file, (int *) &cache->line_size))
1083 return -1;
1084
1085 scnprintf(file, PATH_MAX, "%s/number_of_sets", path);
1086 if (sysfs__read_int(file, (int *) &cache->sets))
1087 return -1;
1088
1089 scnprintf(file, PATH_MAX, "%s/ways_of_associativity", path);
1090 if (sysfs__read_int(file, (int *) &cache->ways))
1091 return -1;
1092
1093 scnprintf(file, PATH_MAX, "%s/type", path);
1094 if (sysfs__read_str(file, &cache->type, &len))
1095 return -1;
1096
1097 cache->type[len] = 0;
Arnaldo Carvalho de Melo13c230a2019-06-26 12:13:13 -03001098 cache->type = strim(cache->type);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001099
1100 scnprintf(file, PATH_MAX, "%s/size", path);
1101 if (sysfs__read_str(file, &cache->size, &len)) {
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03001102 zfree(&cache->type);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001103 return -1;
1104 }
1105
1106 cache->size[len] = 0;
Arnaldo Carvalho de Melo13c230a2019-06-26 12:13:13 -03001107 cache->size = strim(cache->size);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001108
1109 scnprintf(file, PATH_MAX, "%s/shared_cpu_list", path);
1110 if (sysfs__read_str(file, &cache->map, &len)) {
Jiri Olsa02162342019-09-12 12:52:35 +02001111 zfree(&cache->size);
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03001112 zfree(&cache->type);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001113 return -1;
1114 }
1115
1116 cache->map[len] = 0;
Arnaldo Carvalho de Melo13c230a2019-06-26 12:13:13 -03001117 cache->map = strim(cache->map);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001118 return 0;
1119}
1120
1121static void cpu_cache_level__fprintf(FILE *out, struct cpu_cache_level *c)
1122{
1123 fprintf(out, "L%d %-15s %8s [%s]\n", c->level, c->type, c->size, c->map);
1124}
1125
Michael Petlan28707822019-12-08 17:20:56 +01001126#define MAX_CACHE_LVL 4
1127
1128static int build_caches(struct cpu_cache_level caches[], u32 *cntp)
Jiri Olsa720e98b2016-02-16 16:01:43 +01001129{
1130 u32 i, cnt = 0;
Jiri Olsa720e98b2016-02-16 16:01:43 +01001131 u32 nr, cpu;
1132 u16 level;
1133
Michael Petlan28707822019-12-08 17:20:56 +01001134 nr = cpu__max_cpu();
Jiri Olsa720e98b2016-02-16 16:01:43 +01001135
1136 for (cpu = 0; cpu < nr; cpu++) {
Michael Petlan28707822019-12-08 17:20:56 +01001137 for (level = 0; level < MAX_CACHE_LVL; level++) {
Jiri Olsa720e98b2016-02-16 16:01:43 +01001138 struct cpu_cache_level c;
1139 int err;
1140
1141 err = cpu_cache_level__read(&c, cpu, level);
1142 if (err < 0)
1143 return err;
1144
1145 if (err == 1)
1146 break;
1147
1148 for (i = 0; i < cnt; i++) {
1149 if (cpu_cache_level__cmp(&c, &caches[i]))
1150 break;
1151 }
1152
1153 if (i == cnt)
1154 caches[cnt++] = c;
1155 else
1156 cpu_cache_level__free(&c);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001157 }
1158 }
Jiri Olsa720e98b2016-02-16 16:01:43 +01001159 *cntp = cnt;
1160 return 0;
1161}
1162
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001163static int write_cache(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +02001164 struct evlist *evlist __maybe_unused)
Jiri Olsa720e98b2016-02-16 16:01:43 +01001165{
Kyle Meyerdc841872019-08-27 16:43:51 -05001166 u32 max_caches = cpu__max_cpu() * MAX_CACHE_LVL;
1167 struct cpu_cache_level caches[max_caches];
Jiri Olsa720e98b2016-02-16 16:01:43 +01001168 u32 cnt = 0, i, version = 1;
1169 int ret;
1170
Michael Petlan28707822019-12-08 17:20:56 +01001171 ret = build_caches(caches, &cnt);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001172 if (ret)
1173 goto out;
1174
1175 qsort(&caches, cnt, sizeof(struct cpu_cache_level), cpu_cache_level__sort);
1176
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001177 ret = do_write(ff, &version, sizeof(u32));
Jiri Olsa720e98b2016-02-16 16:01:43 +01001178 if (ret < 0)
1179 goto out;
1180
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001181 ret = do_write(ff, &cnt, sizeof(u32));
Jiri Olsa720e98b2016-02-16 16:01:43 +01001182 if (ret < 0)
1183 goto out;
1184
1185 for (i = 0; i < cnt; i++) {
1186 struct cpu_cache_level *c = &caches[i];
1187
1188 #define _W(v) \
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001189 ret = do_write(ff, &c->v, sizeof(u32)); \
Jiri Olsa720e98b2016-02-16 16:01:43 +01001190 if (ret < 0) \
1191 goto out;
1192
1193 _W(level)
1194 _W(line_size)
1195 _W(sets)
1196 _W(ways)
1197 #undef _W
1198
1199 #define _W(v) \
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001200 ret = do_write_string(ff, (const char *) c->v); \
Jiri Olsa720e98b2016-02-16 16:01:43 +01001201 if (ret < 0) \
1202 goto out;
1203
1204 _W(type)
1205 _W(size)
1206 _W(map)
1207 #undef _W
1208 }
1209
1210out:
1211 for (i = 0; i < cnt; i++)
1212 cpu_cache_level__free(&caches[i]);
1213 return ret;
1214}
1215
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001216static int write_stat(struct feat_fd *ff __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +02001217 struct evlist *evlist __maybe_unused)
Jiri Olsaffa517a2015-10-25 15:51:43 +01001218{
1219 return 0;
1220}
1221
Jin Yao60115182017-12-08 21:13:41 +08001222static int write_sample_time(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +02001223 struct evlist *evlist)
Jin Yao60115182017-12-08 21:13:41 +08001224{
1225 int ret;
1226
1227 ret = do_write(ff, &evlist->first_sample_time,
1228 sizeof(evlist->first_sample_time));
1229 if (ret < 0)
1230 return ret;
1231
1232 return do_write(ff, &evlist->last_sample_time,
1233 sizeof(evlist->last_sample_time));
1234}
1235
Jiri Olsae2091ce2018-03-07 16:50:08 +01001236
1237static int memory_node__read(struct memory_node *n, unsigned long idx)
1238{
1239 unsigned int phys, size = 0;
1240 char path[PATH_MAX];
1241 struct dirent *ent;
1242 DIR *dir;
1243
1244#define for_each_memory(mem, dir) \
1245 while ((ent = readdir(dir))) \
1246 if (strcmp(ent->d_name, ".") && \
1247 strcmp(ent->d_name, "..") && \
1248 sscanf(ent->d_name, "memory%u", &mem) == 1)
1249
1250 scnprintf(path, PATH_MAX,
1251 "%s/devices/system/node/node%lu",
1252 sysfs__mountpoint(), idx);
1253
1254 dir = opendir(path);
1255 if (!dir) {
1256 pr_warning("failed: cant' open memory sysfs data\n");
1257 return -1;
1258 }
1259
1260 for_each_memory(phys, dir) {
1261 size = max(phys, size);
1262 }
1263
1264 size++;
1265
1266 n->set = bitmap_alloc(size);
1267 if (!n->set) {
1268 closedir(dir);
1269 return -ENOMEM;
1270 }
1271
Jiri Olsae2091ce2018-03-07 16:50:08 +01001272 n->node = idx;
1273 n->size = size;
1274
1275 rewinddir(dir);
1276
1277 for_each_memory(phys, dir) {
1278 set_bit(phys, n->set);
1279 }
1280
1281 closedir(dir);
1282 return 0;
1283}
1284
1285static int memory_node__sort(const void *a, const void *b)
1286{
1287 const struct memory_node *na = a;
1288 const struct memory_node *nb = b;
1289
1290 return na->node - nb->node;
1291}
1292
1293static int build_mem_topology(struct memory_node *nodes, u64 size, u64 *cntp)
1294{
1295 char path[PATH_MAX];
1296 struct dirent *ent;
1297 DIR *dir;
1298 u64 cnt = 0;
1299 int ret = 0;
1300
1301 scnprintf(path, PATH_MAX, "%s/devices/system/node/",
1302 sysfs__mountpoint());
1303
1304 dir = opendir(path);
1305 if (!dir) {
Thomas Richter4f75f1cb2018-04-12 15:32:46 +02001306 pr_debug2("%s: could't read %s, does this arch have topology information?\n",
1307 __func__, path);
Jiri Olsae2091ce2018-03-07 16:50:08 +01001308 return -1;
1309 }
1310
1311 while (!ret && (ent = readdir(dir))) {
1312 unsigned int idx;
1313 int r;
1314
1315 if (!strcmp(ent->d_name, ".") ||
1316 !strcmp(ent->d_name, ".."))
1317 continue;
1318
1319 r = sscanf(ent->d_name, "node%u", &idx);
1320 if (r != 1)
1321 continue;
1322
1323 if (WARN_ONCE(cnt >= size,
Yunfeng Ye60807282019-10-15 16:30:08 +08001324 "failed to write MEM_TOPOLOGY, way too many nodes\n")) {
1325 closedir(dir);
Jiri Olsae2091ce2018-03-07 16:50:08 +01001326 return -1;
Yunfeng Ye60807282019-10-15 16:30:08 +08001327 }
Jiri Olsae2091ce2018-03-07 16:50:08 +01001328
1329 ret = memory_node__read(&nodes[cnt++], idx);
1330 }
1331
1332 *cntp = cnt;
1333 closedir(dir);
1334
1335 if (!ret)
1336 qsort(nodes, cnt, sizeof(nodes[0]), memory_node__sort);
1337
1338 return ret;
1339}
1340
1341#define MAX_MEMORY_NODES 2000
1342
1343/*
1344 * The MEM_TOPOLOGY holds physical memory map for every
1345 * node in system. The format of data is as follows:
1346 *
1347 * 0 - version | for future changes
1348 * 8 - block_size_bytes | /sys/devices/system/memory/block_size_bytes
1349 * 16 - count | number of nodes
1350 *
1351 * For each node we store map of physical indexes for
1352 * each node:
1353 *
1354 * 32 - node id | node index
1355 * 40 - size | size of bitmap
1356 * 48 - bitmap | bitmap of memory indexes that belongs to node
1357 */
1358static int write_mem_topology(struct feat_fd *ff __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +02001359 struct evlist *evlist __maybe_unused)
Jiri Olsae2091ce2018-03-07 16:50:08 +01001360{
1361 static struct memory_node nodes[MAX_MEMORY_NODES];
1362 u64 bsize, version = 1, i, nr;
1363 int ret;
1364
1365 ret = sysfs__read_xll("devices/system/memory/block_size_bytes",
1366 (unsigned long long *) &bsize);
1367 if (ret)
1368 return ret;
1369
1370 ret = build_mem_topology(&nodes[0], MAX_MEMORY_NODES, &nr);
1371 if (ret)
1372 return ret;
1373
1374 ret = do_write(ff, &version, sizeof(version));
1375 if (ret < 0)
1376 goto out;
1377
1378 ret = do_write(ff, &bsize, sizeof(bsize));
1379 if (ret < 0)
1380 goto out;
1381
1382 ret = do_write(ff, &nr, sizeof(nr));
1383 if (ret < 0)
1384 goto out;
1385
1386 for (i = 0; i < nr; i++) {
1387 struct memory_node *n = &nodes[i];
1388
1389 #define _W(v) \
1390 ret = do_write(ff, &n->v, sizeof(n->v)); \
1391 if (ret < 0) \
1392 goto out;
1393
1394 _W(node)
1395 _W(size)
1396
1397 #undef _W
1398
1399 ret = do_write_bitmap(ff, n->set, n->size);
1400 if (ret < 0)
1401 goto out;
1402 }
1403
1404out:
1405 return ret;
1406}
1407
Alexey Budankov42e1fd82019-03-18 20:41:33 +03001408static int write_compressed(struct feat_fd *ff __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +02001409 struct evlist *evlist __maybe_unused)
Alexey Budankov42e1fd82019-03-18 20:41:33 +03001410{
1411 int ret;
1412
1413 ret = do_write(ff, &(ff->ph->env.comp_ver), sizeof(ff->ph->env.comp_ver));
1414 if (ret)
1415 return ret;
1416
1417 ret = do_write(ff, &(ff->ph->env.comp_type), sizeof(ff->ph->env.comp_type));
1418 if (ret)
1419 return ret;
1420
1421 ret = do_write(ff, &(ff->ph->env.comp_level), sizeof(ff->ph->env.comp_level));
1422 if (ret)
1423 return ret;
1424
1425 ret = do_write(ff, &(ff->ph->env.comp_ratio), sizeof(ff->ph->env.comp_ratio));
1426 if (ret)
1427 return ret;
1428
1429 return do_write(ff, &(ff->ph->env.comp_mmap_len), sizeof(ff->ph->env.comp_mmap_len));
1430}
1431
Kan Liang6f91ea22020-03-19 13:25:02 -07001432static int write_cpu_pmu_caps(struct feat_fd *ff,
1433 struct evlist *evlist __maybe_unused)
1434{
1435 struct perf_pmu *cpu_pmu = perf_pmu__find("cpu");
1436 struct perf_pmu_caps *caps = NULL;
1437 int nr_caps;
1438 int ret;
1439
1440 if (!cpu_pmu)
1441 return -ENOENT;
1442
1443 nr_caps = perf_pmu__caps_parse(cpu_pmu);
1444 if (nr_caps < 0)
1445 return nr_caps;
1446
1447 ret = do_write(ff, &nr_caps, sizeof(nr_caps));
1448 if (ret < 0)
1449 return ret;
1450
1451 list_for_each_entry(caps, &cpu_pmu->caps, list) {
1452 ret = do_write_string(ff, caps->name);
1453 if (ret < 0)
1454 return ret;
1455
1456 ret = do_write_string(ff, caps->value);
1457 if (ret < 0)
1458 return ret;
1459 }
1460
1461 return ret;
1462}
1463
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001464static void print_hostname(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001465{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001466 fprintf(fp, "# hostname : %s\n", ff->ph->env.hostname);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001467}
1468
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001469static void print_osrelease(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001470{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001471 fprintf(fp, "# os release : %s\n", ff->ph->env.os_release);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001472}
1473
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001474static void print_arch(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001475{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001476 fprintf(fp, "# arch : %s\n", ff->ph->env.arch);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001477}
1478
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001479static void print_cpudesc(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001480{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001481 fprintf(fp, "# cpudesc : %s\n", ff->ph->env.cpu_desc);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001482}
1483
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001484static void print_nrcpus(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001485{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001486 fprintf(fp, "# nrcpus online : %u\n", ff->ph->env.nr_cpus_online);
1487 fprintf(fp, "# nrcpus avail : %u\n", ff->ph->env.nr_cpus_avail);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001488}
1489
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001490static void print_version(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001491{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001492 fprintf(fp, "# perf version : %s\n", ff->ph->env.version);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001493}
1494
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001495static void print_cmdline(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001496{
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001497 int nr, i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001498
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001499 nr = ff->ph->env.nr_cmdline;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001500
1501 fprintf(fp, "# cmdline : ");
1502
Alexey Budankovf92da712018-06-04 09:50:56 +03001503 for (i = 0; i < nr; i++) {
1504 char *argv_i = strdup(ff->ph->env.cmdline_argv[i]);
1505 if (!argv_i) {
1506 fprintf(fp, "%s ", ff->ph->env.cmdline_argv[i]);
1507 } else {
1508 char *mem = argv_i;
1509 do {
1510 char *quote = strchr(argv_i, '\'');
1511 if (!quote)
1512 break;
1513 *quote++ = '\0';
1514 fprintf(fp, "%s\\\'", argv_i);
1515 argv_i = quote;
1516 } while (1);
1517 fprintf(fp, "%s ", argv_i);
1518 free(mem);
1519 }
1520 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001521 fputc('\n', fp);
1522}
1523
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001524static void print_cpu_topology(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001525{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001526 struct perf_header *ph = ff->ph;
1527 int cpu_nr = ph->env.nr_cpus_avail;
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001528 int nr, i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001529 char *str;
1530
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001531 nr = ph->env.nr_sibling_cores;
1532 str = ph->env.sibling_cores;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001533
1534 for (i = 0; i < nr; i++) {
Kan Liange05a8992019-06-04 15:50:43 -07001535 fprintf(fp, "# sibling sockets : %s\n", str);
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001536 str += strlen(str) + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001537 }
1538
Kan Liangacae8b32019-06-04 15:50:41 -07001539 if (ph->env.nr_sibling_dies) {
1540 nr = ph->env.nr_sibling_dies;
1541 str = ph->env.sibling_dies;
1542
1543 for (i = 0; i < nr; i++) {
1544 fprintf(fp, "# sibling dies : %s\n", str);
1545 str += strlen(str) + 1;
1546 }
1547 }
1548
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001549 nr = ph->env.nr_sibling_threads;
1550 str = ph->env.sibling_threads;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001551
1552 for (i = 0; i < nr; i++) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001553 fprintf(fp, "# sibling threads : %s\n", str);
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001554 str += strlen(str) + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001555 }
Kan Liang2bb00d22015-09-01 09:58:12 -04001556
Kan Liangacae8b32019-06-04 15:50:41 -07001557 if (ph->env.nr_sibling_dies) {
1558 if (ph->env.cpu != NULL) {
1559 for (i = 0; i < cpu_nr; i++)
1560 fprintf(fp, "# CPU %d: Core ID %d, "
1561 "Die ID %d, Socket ID %d\n",
1562 i, ph->env.cpu[i].core_id,
1563 ph->env.cpu[i].die_id,
1564 ph->env.cpu[i].socket_id);
1565 } else
1566 fprintf(fp, "# Core ID, Die ID and Socket ID "
1567 "information is not available\n");
1568 } else {
1569 if (ph->env.cpu != NULL) {
1570 for (i = 0; i < cpu_nr; i++)
1571 fprintf(fp, "# CPU %d: Core ID %d, "
1572 "Socket ID %d\n",
1573 i, ph->env.cpu[i].core_id,
1574 ph->env.cpu[i].socket_id);
1575 } else
1576 fprintf(fp, "# Core ID and Socket ID "
1577 "information is not available\n");
1578 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001579}
1580
Alexey Budankovcf790512018-10-09 17:36:24 +03001581static void print_clockid(struct feat_fd *ff, FILE *fp)
1582{
1583 fprintf(fp, "# clockid frequency: %"PRIu64" MHz\n",
Jiri Olsa9d88a1a12020-08-05 11:34:41 +02001584 ff->ph->env.clock.clockid_res_ns * 1000);
Alexey Budankovcf790512018-10-09 17:36:24 +03001585}
1586
Jiri Olsad1e325c2020-08-05 11:34:40 +02001587static void print_clock_data(struct feat_fd *ff, FILE *fp)
1588{
1589 struct timespec clockid_ns;
1590 char tstr[64], date[64];
1591 struct timeval tod_ns;
1592 clockid_t clockid;
1593 struct tm ltime;
1594 u64 ref;
1595
1596 if (!ff->ph->env.clock.enabled) {
1597 fprintf(fp, "# reference time disabled\n");
1598 return;
1599 }
1600
1601 /* Compute TOD time. */
1602 ref = ff->ph->env.clock.tod_ns;
1603 tod_ns.tv_sec = ref / NSEC_PER_SEC;
1604 ref -= tod_ns.tv_sec * NSEC_PER_SEC;
1605 tod_ns.tv_usec = ref / NSEC_PER_USEC;
1606
1607 /* Compute clockid time. */
1608 ref = ff->ph->env.clock.clockid_ns;
1609 clockid_ns.tv_sec = ref / NSEC_PER_SEC;
1610 ref -= clockid_ns.tv_sec * NSEC_PER_SEC;
1611 clockid_ns.tv_nsec = ref;
1612
1613 clockid = ff->ph->env.clock.clockid;
1614
1615 if (localtime_r(&tod_ns.tv_sec, &ltime) == NULL)
1616 snprintf(tstr, sizeof(tstr), "<error>");
1617 else {
1618 strftime(date, sizeof(date), "%F %T", &ltime);
1619 scnprintf(tstr, sizeof(tstr), "%s.%06d",
1620 date, (int) tod_ns.tv_usec);
1621 }
1622
1623 fprintf(fp, "# clockid: %s (%u)\n", clockid_name(clockid), clockid);
1624 fprintf(fp, "# reference time: %s = %ld.%06d (TOD) = %ld.%09ld (%s)\n",
1625 tstr, tod_ns.tv_sec, (int) tod_ns.tv_usec,
1626 clockid_ns.tv_sec, clockid_ns.tv_nsec,
1627 clockid_name(clockid));
1628}
1629
Jiri Olsa258031c2019-03-08 14:47:39 +01001630static void print_dir_format(struct feat_fd *ff, FILE *fp)
1631{
1632 struct perf_session *session;
1633 struct perf_data *data;
1634
1635 session = container_of(ff->ph, struct perf_session, header);
1636 data = session->data;
1637
1638 fprintf(fp, "# directory data version : %"PRIu64"\n", data->dir.version);
1639}
1640
Song Liu606f9722019-03-11 22:30:43 -07001641static void print_bpf_prog_info(struct feat_fd *ff, FILE *fp)
1642{
1643 struct perf_env *env = &ff->ph->env;
1644 struct rb_root *root;
1645 struct rb_node *next;
1646
1647 down_read(&env->bpf_progs.lock);
1648
1649 root = &env->bpf_progs.infos;
1650 next = rb_first(root);
1651
1652 while (next) {
1653 struct bpf_prog_info_node *node;
1654
1655 node = rb_entry(next, struct bpf_prog_info_node, rb_node);
1656 next = rb_next(&node->rb_node);
Song Liuf8dfeae2019-03-19 09:54:54 -07001657
1658 bpf_event__print_bpf_prog_info(&node->info_linear->info,
1659 env, fp);
Song Liu606f9722019-03-11 22:30:43 -07001660 }
1661
1662 up_read(&env->bpf_progs.lock);
1663}
1664
Song Liua70a112312019-03-11 22:30:45 -07001665static void print_bpf_btf(struct feat_fd *ff, FILE *fp)
1666{
1667 struct perf_env *env = &ff->ph->env;
1668 struct rb_root *root;
1669 struct rb_node *next;
1670
1671 down_read(&env->bpf_progs.lock);
1672
1673 root = &env->bpf_progs.btfs;
1674 next = rb_first(root);
1675
1676 while (next) {
1677 struct btf_node *node;
1678
1679 node = rb_entry(next, struct btf_node, rb_node);
1680 next = rb_next(&node->rb_node);
1681 fprintf(fp, "# btf info of id %u\n", node->id);
1682 }
1683
1684 up_read(&env->bpf_progs.lock);
1685}
1686
Jiri Olsa32dcd022019-07-21 13:23:51 +02001687static void free_event_desc(struct evsel *events)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001688{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001689 struct evsel *evsel;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001690
1691 if (!events)
1692 return;
1693
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001694 for (evsel = events; evsel->core.attr.size; evsel++) {
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001695 zfree(&evsel->name);
Jiri Olsadeaf3212019-09-02 22:12:26 +02001696 zfree(&evsel->core.id);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001697 }
1698
1699 free(events);
1700}
1701
Kan Liang277ce1e2020-02-28 08:30:02 -08001702static bool perf_attr_check(struct perf_event_attr *attr)
1703{
1704 if (attr->__reserved_1 || attr->__reserved_2 || attr->__reserved_3) {
1705 pr_warning("Reserved bits are set unexpectedly. "
1706 "Please update perf tool.\n");
1707 return false;
1708 }
1709
1710 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1)) {
1711 pr_warning("Unknown sample type (0x%llx) is detected. "
1712 "Please update perf tool.\n",
1713 attr->sample_type);
1714 return false;
1715 }
1716
1717 if (attr->read_format & ~(PERF_FORMAT_MAX-1)) {
1718 pr_warning("Unknown read format (0x%llx) is detected. "
1719 "Please update perf tool.\n",
1720 attr->read_format);
1721 return false;
1722 }
1723
1724 if ((attr->sample_type & PERF_SAMPLE_BRANCH_STACK) &&
1725 (attr->branch_sample_type & ~(PERF_SAMPLE_BRANCH_MAX-1))) {
1726 pr_warning("Unknown branch sample type (0x%llx) is detected. "
1727 "Please update perf tool.\n",
1728 attr->branch_sample_type);
1729
1730 return false;
1731 }
1732
1733 return true;
1734}
1735
Jiri Olsa32dcd022019-07-21 13:23:51 +02001736static struct evsel *read_event_desc(struct feat_fd *ff)
Robert Richter4e1b9c62012-08-16 21:10:22 +02001737{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001738 struct evsel *evsel, *events = NULL;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001739 u64 *id;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001740 void *buf = NULL;
Stephane Eranian62db9062012-02-09 23:21:07 +01001741 u32 nre, sz, nr, i, j;
Stephane Eranian62db9062012-02-09 23:21:07 +01001742 size_t msz;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001743
1744 /* number of events */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001745 if (do_read_u32(ff, &nre))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001746 goto error;
1747
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001748 if (do_read_u32(ff, &sz))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001749 goto error;
1750
Stephane Eranian62db9062012-02-09 23:21:07 +01001751 /* buffer to hold on file attr struct */
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001752 buf = malloc(sz);
1753 if (!buf)
1754 goto error;
1755
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001756 /* the last event terminates with evsel->core.attr.size == 0: */
Robert Richter4e1b9c62012-08-16 21:10:22 +02001757 events = calloc(nre + 1, sizeof(*events));
1758 if (!events)
1759 goto error;
1760
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001761 msz = sizeof(evsel->core.attr);
Jiri Olsa9fafd982012-03-20 19:15:39 +01001762 if (sz < msz)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001763 msz = sz;
1764
Robert Richter4e1b9c62012-08-16 21:10:22 +02001765 for (i = 0, evsel = events; i < nre; evsel++, i++) {
1766 evsel->idx = i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001767
Stephane Eranian62db9062012-02-09 23:21:07 +01001768 /*
1769 * must read entire on-file attr struct to
1770 * sync up with layout.
1771 */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001772 if (__do_read(ff, buf, sz))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001773 goto error;
1774
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001775 if (ff->ph->needs_swap)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001776 perf_event__attr_swap(buf);
1777
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001778 memcpy(&evsel->core.attr, buf, msz);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001779
Kan Liang277ce1e2020-02-28 08:30:02 -08001780 if (!perf_attr_check(&evsel->core.attr))
1781 goto error;
1782
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001783 if (do_read_u32(ff, &nr))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001784 goto error;
1785
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001786 if (ff->ph->needs_swap)
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001787 evsel->needs_swap = true;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001788
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001789 evsel->name = do_read_string(ff);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07001790 if (!evsel->name)
1791 goto error;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001792
1793 if (!nr)
1794 continue;
1795
1796 id = calloc(nr, sizeof(*id));
1797 if (!id)
1798 goto error;
Jiri Olsae7eb9002019-09-02 22:15:47 +02001799 evsel->core.ids = nr;
Jiri Olsadeaf3212019-09-02 22:12:26 +02001800 evsel->core.id = id;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001801
1802 for (j = 0 ; j < nr; j++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001803 if (do_read_u64(ff, id))
Robert Richter4e1b9c62012-08-16 21:10:22 +02001804 goto error;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001805 id++;
1806 }
1807 }
1808out:
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001809 free(buf);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001810 return events;
1811error:
Markus Elfring4cc97612015-06-25 17:12:32 +02001812 free_event_desc(events);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001813 events = NULL;
1814 goto out;
1815}
1816
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001817static int __desc_attr__fprintf(FILE *fp, const char *name, const char *val,
Arnaldo Carvalho de Melo03536312017-06-16 12:18:27 -03001818 void *priv __maybe_unused)
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001819{
1820 return fprintf(fp, ", %s = %s", name, val);
1821}
1822
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001823static void print_event_desc(struct feat_fd *ff, FILE *fp)
Robert Richter4e1b9c62012-08-16 21:10:22 +02001824{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001825 struct evsel *evsel, *events;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001826 u32 j;
1827 u64 *id;
1828
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07001829 if (ff->events)
1830 events = ff->events;
1831 else
1832 events = read_event_desc(ff);
1833
Robert Richter4e1b9c62012-08-16 21:10:22 +02001834 if (!events) {
1835 fprintf(fp, "# event desc: not available or unable to read\n");
1836 return;
1837 }
1838
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001839 for (evsel = events; evsel->core.attr.size; evsel++) {
Robert Richter4e1b9c62012-08-16 21:10:22 +02001840 fprintf(fp, "# event : name = %s, ", evsel->name);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001841
Jiri Olsae7eb9002019-09-02 22:15:47 +02001842 if (evsel->core.ids) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001843 fprintf(fp, ", id = {");
Jiri Olsae7eb9002019-09-02 22:15:47 +02001844 for (j = 0, id = evsel->core.id; j < evsel->core.ids; j++, id++) {
Robert Richter4e1b9c62012-08-16 21:10:22 +02001845 if (j)
1846 fputc(',', fp);
1847 fprintf(fp, " %"PRIu64, *id);
1848 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001849 fprintf(fp, " }");
Robert Richter4e1b9c62012-08-16 21:10:22 +02001850 }
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001851
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001852 perf_event_attr__fprintf(fp, &evsel->core.attr, __desc_attr__fprintf, NULL);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001853
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001854 fputc('\n', fp);
1855 }
Robert Richter4e1b9c62012-08-16 21:10:22 +02001856
1857 free_event_desc(events);
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07001858 ff->events = NULL;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001859}
1860
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001861static void print_total_mem(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001862{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001863 fprintf(fp, "# total memory : %llu kB\n", ff->ph->env.total_mem);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001864}
1865
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001866static void print_numa_topology(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001867{
Jiri Olsac60da222016-07-04 14:16:20 +02001868 int i;
1869 struct numa_node *n;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001870
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001871 for (i = 0; i < ff->ph->env.nr_numa_nodes; i++) {
1872 n = &ff->ph->env.numa_nodes[i];
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001873
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001874 fprintf(fp, "# node%u meminfo : total = %"PRIu64" kB,"
1875 " free = %"PRIu64" kB\n",
Jiri Olsac60da222016-07-04 14:16:20 +02001876 n->node, n->mem_total, n->mem_free);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001877
Jiri Olsac60da222016-07-04 14:16:20 +02001878 fprintf(fp, "# node%u cpu list : ", n->node);
1879 cpu_map__fprintf(n->map, fp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001880 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001881}
1882
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001883static void print_cpuid(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001884{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001885 fprintf(fp, "# cpuid : %s\n", ff->ph->env.cpuid);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001886}
1887
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001888static void print_branch_stack(struct feat_fd *ff __maybe_unused, FILE *fp)
Stephane Eranian330aa672012-03-08 23:47:46 +01001889{
1890 fprintf(fp, "# contains samples with branch stack\n");
1891}
1892
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001893static void print_auxtrace(struct feat_fd *ff __maybe_unused, FILE *fp)
Adrian Hunter4025ea42015-04-09 18:53:41 +03001894{
1895 fprintf(fp, "# contains AUX area data (e.g. instruction trace)\n");
1896}
1897
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001898static void print_stat(struct feat_fd *ff __maybe_unused, FILE *fp)
Jiri Olsaffa517a2015-10-25 15:51:43 +01001899{
1900 fprintf(fp, "# contains stat data\n");
1901}
1902
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001903static void print_cache(struct feat_fd *ff, FILE *fp __maybe_unused)
Jiri Olsa720e98b2016-02-16 16:01:43 +01001904{
1905 int i;
1906
1907 fprintf(fp, "# CPU cache info:\n");
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001908 for (i = 0; i < ff->ph->env.caches_cnt; i++) {
Jiri Olsa720e98b2016-02-16 16:01:43 +01001909 fprintf(fp, "# ");
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001910 cpu_cache_level__fprintf(fp, &ff->ph->env.caches[i]);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001911 }
1912}
1913
Alexey Budankov42e1fd82019-03-18 20:41:33 +03001914static void print_compressed(struct feat_fd *ff, FILE *fp)
1915{
1916 fprintf(fp, "# compressed : %s, level = %d, ratio = %d\n",
1917 ff->ph->env.comp_type == PERF_COMP_ZSTD ? "Zstd" : "Unknown",
1918 ff->ph->env.comp_level, ff->ph->env.comp_ratio);
1919}
1920
Kan Liang6f91ea22020-03-19 13:25:02 -07001921static void print_cpu_pmu_caps(struct feat_fd *ff, FILE *fp)
1922{
1923 const char *delimiter = "# cpu pmu capabilities: ";
1924 u32 nr_caps = ff->ph->env.nr_cpu_pmu_caps;
1925 char *str;
1926
1927 if (!nr_caps) {
1928 fprintf(fp, "# cpu pmu capabilities: not available\n");
1929 return;
1930 }
1931
1932 str = ff->ph->env.cpu_pmu_caps;
1933 while (nr_caps--) {
1934 fprintf(fp, "%s%s", delimiter, str);
1935 delimiter = ", ";
1936 str += strlen(str) + 1;
1937 }
1938
1939 fprintf(fp, "\n");
1940}
1941
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001942static void print_pmu_mappings(struct feat_fd *ff, FILE *fp)
Robert Richter50a96672012-08-16 21:10:24 +02001943{
1944 const char *delimiter = "# pmu mappings: ";
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001945 char *str, *tmp;
Robert Richter50a96672012-08-16 21:10:24 +02001946 u32 pmu_num;
1947 u32 type;
1948
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001949 pmu_num = ff->ph->env.nr_pmu_mappings;
Robert Richter50a96672012-08-16 21:10:24 +02001950 if (!pmu_num) {
1951 fprintf(fp, "# pmu mappings: not available\n");
1952 return;
1953 }
1954
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001955 str = ff->ph->env.pmu_mappings;
Namhyung Kimbe4a2de2012-09-05 14:02:49 +09001956
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001957 while (pmu_num) {
1958 type = strtoul(str, &tmp, 0);
1959 if (*tmp != ':')
1960 goto error;
1961
1962 str = tmp + 1;
1963 fprintf(fp, "%s%s = %" PRIu32, delimiter, str, type);
1964
Robert Richter50a96672012-08-16 21:10:24 +02001965 delimiter = ", ";
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001966 str += strlen(str) + 1;
1967 pmu_num--;
Robert Richter50a96672012-08-16 21:10:24 +02001968 }
1969
1970 fprintf(fp, "\n");
1971
1972 if (!pmu_num)
1973 return;
1974error:
1975 fprintf(fp, "# pmu mappings: unable to read\n");
1976}
1977
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001978static void print_group_desc(struct feat_fd *ff, FILE *fp)
Namhyung Kima8bb5592013-01-22 18:09:31 +09001979{
1980 struct perf_session *session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02001981 struct evsel *evsel;
Namhyung Kima8bb5592013-01-22 18:09:31 +09001982 u32 nr = 0;
1983
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001984 session = container_of(ff->ph, struct perf_session, header);
Namhyung Kima8bb5592013-01-22 18:09:31 +09001985
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001986 evlist__for_each_entry(session->evlist, evsel) {
Arnaldo Carvalho de Meloc754c382020-04-30 10:51:16 -03001987 if (evsel__is_group_leader(evsel) && evsel->core.nr_members > 1) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03001988 fprintf(fp, "# group: %s{%s", evsel->group_name ?: "", evsel__name(evsel));
Namhyung Kima8bb5592013-01-22 18:09:31 +09001989
Jiri Olsa5643b1a2019-07-21 13:24:46 +02001990 nr = evsel->core.nr_members - 1;
Namhyung Kima8bb5592013-01-22 18:09:31 +09001991 } else if (nr) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03001992 fprintf(fp, ",%s", evsel__name(evsel));
Namhyung Kima8bb5592013-01-22 18:09:31 +09001993
1994 if (--nr == 0)
1995 fprintf(fp, "}\n");
1996 }
1997 }
1998}
1999
Jin Yao60115182017-12-08 21:13:41 +08002000static void print_sample_time(struct feat_fd *ff, FILE *fp)
2001{
2002 struct perf_session *session;
2003 char time_buf[32];
2004 double d;
2005
2006 session = container_of(ff->ph, struct perf_session, header);
2007
2008 timestamp__scnprintf_usec(session->evlist->first_sample_time,
2009 time_buf, sizeof(time_buf));
2010 fprintf(fp, "# time of first sample : %s\n", time_buf);
2011
2012 timestamp__scnprintf_usec(session->evlist->last_sample_time,
2013 time_buf, sizeof(time_buf));
2014 fprintf(fp, "# time of last sample : %s\n", time_buf);
2015
2016 d = (double)(session->evlist->last_sample_time -
2017 session->evlist->first_sample_time) / NSEC_PER_MSEC;
2018
2019 fprintf(fp, "# sample duration : %10.3f ms\n", d);
2020}
2021
Jiri Olsae2091ce2018-03-07 16:50:08 +01002022static void memory_node__fprintf(struct memory_node *n,
2023 unsigned long long bsize, FILE *fp)
2024{
2025 char buf_map[100], buf_size[50];
2026 unsigned long long size;
2027
2028 size = bsize * bitmap_weight(n->set, n->size);
2029 unit_number__scnprintf(buf_size, 50, size);
2030
2031 bitmap_scnprintf(n->set, n->size, buf_map, 100);
2032 fprintf(fp, "# %3" PRIu64 " [%s]: %s\n", n->node, buf_size, buf_map);
2033}
2034
2035static void print_mem_topology(struct feat_fd *ff, FILE *fp)
2036{
2037 struct memory_node *nodes;
2038 int i, nr;
2039
2040 nodes = ff->ph->env.memory_nodes;
2041 nr = ff->ph->env.nr_memory_nodes;
2042
2043 fprintf(fp, "# memory nodes (nr %d, block size 0x%llx):\n",
2044 nr, ff->ph->env.memory_bsize);
2045
2046 for (i = 0; i < nr; i++) {
2047 memory_node__fprintf(&nodes[i], ff->ph->env.memory_bsize, fp);
2048 }
2049}
2050
Jiri Olsa72932372019-08-28 15:57:16 +02002051static int __event_process_build_id(struct perf_record_header_build_id *bev,
Robert Richter08d95bd2012-02-10 15:41:55 +01002052 char *filename,
2053 struct perf_session *session)
2054{
2055 int err = -1;
Robert Richter08d95bd2012-02-10 15:41:55 +01002056 struct machine *machine;
Wang Nan1f121b02015-06-03 08:52:21 +00002057 u16 cpumode;
Robert Richter08d95bd2012-02-10 15:41:55 +01002058 struct dso *dso;
Jiri Olsa1c695c82020-08-08 14:21:54 +02002059 enum dso_space_type dso_space;
Robert Richter08d95bd2012-02-10 15:41:55 +01002060
2061 machine = perf_session__findnew_machine(session, bev->pid);
2062 if (!machine)
2063 goto out;
2064
Wang Nan1f121b02015-06-03 08:52:21 +00002065 cpumode = bev->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
Robert Richter08d95bd2012-02-10 15:41:55 +01002066
Wang Nan1f121b02015-06-03 08:52:21 +00002067 switch (cpumode) {
Robert Richter08d95bd2012-02-10 15:41:55 +01002068 case PERF_RECORD_MISC_KERNEL:
Jiri Olsa1c695c82020-08-08 14:21:54 +02002069 dso_space = DSO_SPACE__KERNEL;
Robert Richter08d95bd2012-02-10 15:41:55 +01002070 break;
2071 case PERF_RECORD_MISC_GUEST_KERNEL:
Jiri Olsa1c695c82020-08-08 14:21:54 +02002072 dso_space = DSO_SPACE__KERNEL_GUEST;
Robert Richter08d95bd2012-02-10 15:41:55 +01002073 break;
2074 case PERF_RECORD_MISC_USER:
2075 case PERF_RECORD_MISC_GUEST_USER:
Jiri Olsa1c695c82020-08-08 14:21:54 +02002076 dso_space = DSO_SPACE__USER;
Robert Richter08d95bd2012-02-10 15:41:55 +01002077 break;
2078 default:
2079 goto out;
2080 }
2081
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03002082 dso = machine__findnew_dso(machine, filename);
Robert Richter08d95bd2012-02-10 15:41:55 +01002083 if (dso != NULL) {
Masami Hiramatsub5d8bbe2016-05-11 22:51:59 +09002084 char sbuild_id[SBUILD_ID_SIZE];
Jiri Olsa8dfdf442020-10-13 21:24:37 +02002085 struct build_id bid;
Robert Richter08d95bd2012-02-10 15:41:55 +01002086
Jiri Olsa8dfdf442020-10-13 21:24:37 +02002087 build_id__init(&bid, bev->build_id, BUILD_ID_SIZE);
2088 dso__set_build_id(dso, &bid);
Robert Richter08d95bd2012-02-10 15:41:55 +01002089
Jiri Olsa1c695c82020-08-08 14:21:54 +02002090 if (dso_space != DSO_SPACE__USER) {
Namhyung Kim1deec1b2017-05-31 21:01:03 +09002091 struct kmod_path m = { .name = NULL, };
2092
2093 if (!kmod_path__parse_name(&m, filename) && m.kmod)
Namhyung Kim6b335e82017-05-31 21:01:04 +09002094 dso__set_module_info(dso, &m, machine);
Namhyung Kim1deec1b2017-05-31 21:01:03 +09002095
Jiri Olsab2fe96a2020-08-08 14:26:56 +02002096 dso->kernel = dso_space;
Namhyung Kim1deec1b2017-05-31 21:01:03 +09002097 free(m.name);
2098 }
Robert Richter08d95bd2012-02-10 15:41:55 +01002099
Jiri Olsabf541162020-10-13 21:24:36 +02002100 build_id__sprintf(&dso->bid, sbuild_id);
Robert Richter08d95bd2012-02-10 15:41:55 +01002101 pr_debug("build id event received for %s: %s\n",
2102 dso->long_name, sbuild_id);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03002103 dso__put(dso);
Robert Richter08d95bd2012-02-10 15:41:55 +01002104 }
2105
2106 err = 0;
2107out:
2108 return err;
2109}
2110
2111static int perf_header__read_build_ids_abi_quirk(struct perf_header *header,
2112 int input, u64 offset, u64 size)
2113{
2114 struct perf_session *session = container_of(header, struct perf_session, header);
2115 struct {
2116 struct perf_event_header header;
Irina Tirdea9ac3e482012-09-11 01:15:01 +03002117 u8 build_id[PERF_ALIGN(BUILD_ID_SIZE, sizeof(u64))];
Robert Richter08d95bd2012-02-10 15:41:55 +01002118 char filename[0];
2119 } old_bev;
Jiri Olsa72932372019-08-28 15:57:16 +02002120 struct perf_record_header_build_id bev;
Robert Richter08d95bd2012-02-10 15:41:55 +01002121 char filename[PATH_MAX];
2122 u64 limit = offset + size;
2123
2124 while (offset < limit) {
2125 ssize_t len;
2126
Namhyung Kim5323f602012-12-17 15:38:54 +09002127 if (readn(input, &old_bev, sizeof(old_bev)) != sizeof(old_bev))
Robert Richter08d95bd2012-02-10 15:41:55 +01002128 return -1;
2129
2130 if (header->needs_swap)
2131 perf_event_header__bswap(&old_bev.header);
2132
2133 len = old_bev.header.size - sizeof(old_bev);
Namhyung Kim5323f602012-12-17 15:38:54 +09002134 if (readn(input, filename, len) != len)
Robert Richter08d95bd2012-02-10 15:41:55 +01002135 return -1;
2136
2137 bev.header = old_bev.header;
2138
2139 /*
2140 * As the pid is the missing value, we need to fill
2141 * it properly. The header.misc value give us nice hint.
2142 */
2143 bev.pid = HOST_KERNEL_ID;
2144 if (bev.header.misc == PERF_RECORD_MISC_GUEST_USER ||
2145 bev.header.misc == PERF_RECORD_MISC_GUEST_KERNEL)
2146 bev.pid = DEFAULT_GUEST_KERNEL_ID;
2147
2148 memcpy(bev.build_id, old_bev.build_id, sizeof(bev.build_id));
2149 __event_process_build_id(&bev, filename, session);
2150
2151 offset += bev.header.size;
2152 }
2153
2154 return 0;
2155}
2156
2157static int perf_header__read_build_ids(struct perf_header *header,
2158 int input, u64 offset, u64 size)
2159{
2160 struct perf_session *session = container_of(header, struct perf_session, header);
Jiri Olsa72932372019-08-28 15:57:16 +02002161 struct perf_record_header_build_id bev;
Robert Richter08d95bd2012-02-10 15:41:55 +01002162 char filename[PATH_MAX];
2163 u64 limit = offset + size, orig_offset = offset;
2164 int err = -1;
2165
2166 while (offset < limit) {
2167 ssize_t len;
2168
Namhyung Kim5323f602012-12-17 15:38:54 +09002169 if (readn(input, &bev, sizeof(bev)) != sizeof(bev))
Robert Richter08d95bd2012-02-10 15:41:55 +01002170 goto out;
2171
2172 if (header->needs_swap)
2173 perf_event_header__bswap(&bev.header);
2174
2175 len = bev.header.size - sizeof(bev);
Namhyung Kim5323f602012-12-17 15:38:54 +09002176 if (readn(input, filename, len) != len)
Robert Richter08d95bd2012-02-10 15:41:55 +01002177 goto out;
2178 /*
2179 * The a1645ce1 changeset:
2180 *
2181 * "perf: 'perf kvm' tool for monitoring guest performance from host"
2182 *
Jiri Olsa72932372019-08-28 15:57:16 +02002183 * Added a field to struct perf_record_header_build_id that broke the file
Robert Richter08d95bd2012-02-10 15:41:55 +01002184 * format.
2185 *
2186 * Since the kernel build-id is the first entry, process the
2187 * table using the old format if the well known
2188 * '[kernel.kallsyms]' string for the kernel build-id has the
2189 * first 4 characters chopped off (where the pid_t sits).
2190 */
2191 if (memcmp(filename, "nel.kallsyms]", 13) == 0) {
2192 if (lseek(input, orig_offset, SEEK_SET) == (off_t)-1)
2193 return -1;
2194 return perf_header__read_build_ids_abi_quirk(header, input, offset, size);
2195 }
2196
2197 __event_process_build_id(&bev, filename, session);
2198
2199 offset += bev.header.size;
2200 }
2201 err = 0;
2202out:
2203 return err;
2204}
2205
David Carrillo-Cisnerosdfaa1582017-07-17 21:25:35 -07002206/* Macro for features that simply need to read and store a string. */
2207#define FEAT_PROCESS_STR_FUN(__feat, __feat_env) \
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002208static int process_##__feat(struct feat_fd *ff, void *data __maybe_unused) \
David Carrillo-Cisnerosdfaa1582017-07-17 21:25:35 -07002209{\
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002210 ff->ph->env.__feat_env = do_read_string(ff); \
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002211 return ff->ph->env.__feat_env ? 0 : -ENOMEM; \
David Carrillo-Cisnerosdfaa1582017-07-17 21:25:35 -07002212}
2213
2214FEAT_PROCESS_STR_FUN(hostname, hostname);
2215FEAT_PROCESS_STR_FUN(osrelease, os_release);
2216FEAT_PROCESS_STR_FUN(version, version);
2217FEAT_PROCESS_STR_FUN(arch, arch);
2218FEAT_PROCESS_STR_FUN(cpudesc, cpu_desc);
2219FEAT_PROCESS_STR_FUN(cpuid, cpuid);
2220
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002221static int process_tracing_data(struct feat_fd *ff, void *data)
Robert Richterf1c67db2012-02-10 15:41:56 +01002222{
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002223 ssize_t ret = trace_report(ff->fd, data, false);
2224
Namhyung Kim3dce2ce2013-03-21 16:18:48 +09002225 return ret < 0 ? -1 : 0;
Robert Richterf1c67db2012-02-10 15:41:56 +01002226}
2227
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002228static int process_build_id(struct feat_fd *ff, void *data __maybe_unused)
Robert Richterf1c67db2012-02-10 15:41:56 +01002229{
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002230 if (perf_header__read_build_ids(ff->ph, ff->fd, ff->offset, ff->size))
Robert Richterf1c67db2012-02-10 15:41:56 +01002231 pr_debug("Failed to read buildids, continuing...\n");
2232 return 0;
2233}
2234
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002235static int process_nrcpus(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002236{
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002237 int ret;
2238 u32 nr_cpus_avail, nr_cpus_online;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002239
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002240 ret = do_read_u32(ff, &nr_cpus_avail);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002241 if (ret)
2242 return ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002243
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002244 ret = do_read_u32(ff, &nr_cpus_online);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002245 if (ret)
2246 return ret;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002247 ff->ph->env.nr_cpus_avail = (int)nr_cpus_avail;
2248 ff->ph->env.nr_cpus_online = (int)nr_cpus_online;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002249 return 0;
2250}
2251
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002252static int process_total_mem(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002253{
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002254 u64 total_mem;
2255 int ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002256
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002257 ret = do_read_u64(ff, &total_mem);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002258 if (ret)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002259 return -1;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002260 ff->ph->env.total_mem = (unsigned long long)total_mem;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002261 return 0;
2262}
2263
Jiri Olsa32dcd022019-07-21 13:23:51 +02002264static struct evsel *
Jiri Olsa63503db2019-07-21 13:23:52 +02002265perf_evlist__find_by_index(struct evlist *evlist, int idx)
Robert Richter7c2f7af2012-08-16 21:10:23 +02002266{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002267 struct evsel *evsel;
Robert Richter7c2f7af2012-08-16 21:10:23 +02002268
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002269 evlist__for_each_entry(evlist, evsel) {
Robert Richter7c2f7af2012-08-16 21:10:23 +02002270 if (evsel->idx == idx)
2271 return evsel;
2272 }
2273
2274 return NULL;
2275}
2276
2277static void
Jiri Olsa63503db2019-07-21 13:23:52 +02002278perf_evlist__set_event_name(struct evlist *evlist,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002279 struct evsel *event)
Robert Richter7c2f7af2012-08-16 21:10:23 +02002280{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002281 struct evsel *evsel;
Robert Richter7c2f7af2012-08-16 21:10:23 +02002282
2283 if (!event->name)
2284 return;
2285
2286 evsel = perf_evlist__find_by_index(evlist, event->idx);
2287 if (!evsel)
2288 return;
2289
2290 if (evsel->name)
2291 return;
2292
2293 evsel->name = strdup(event->name);
2294}
2295
2296static int
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002297process_event_desc(struct feat_fd *ff, void *data __maybe_unused)
Robert Richter7c2f7af2012-08-16 21:10:23 +02002298{
Namhyung Kim3d7eb862012-09-24 17:15:01 +09002299 struct perf_session *session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002300 struct evsel *evsel, *events = read_event_desc(ff);
Robert Richter7c2f7af2012-08-16 21:10:23 +02002301
2302 if (!events)
2303 return 0;
2304
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002305 session = container_of(ff->ph, struct perf_session, header);
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07002306
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002307 if (session->data->is_pipe) {
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07002308 /* Save events for reading later by print_event_desc,
2309 * since they can't be read again in pipe mode. */
2310 ff->events = events;
2311 }
2312
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002313 for (evsel = events; evsel->core.attr.size; evsel++)
Robert Richter7c2f7af2012-08-16 21:10:23 +02002314 perf_evlist__set_event_name(session->evlist, evsel);
2315
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002316 if (!session->data->is_pipe)
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07002317 free_event_desc(events);
Robert Richter7c2f7af2012-08-16 21:10:23 +02002318
2319 return 0;
2320}
2321
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002322static int process_cmdline(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002323{
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002324 char *str, *cmdline = NULL, **argv = NULL;
2325 u32 nr, i, len = 0;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002326
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002327 if (do_read_u32(ff, &nr))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002328 return -1;
2329
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002330 ff->ph->env.nr_cmdline = nr;
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002331
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002332 cmdline = zalloc(ff->size + nr + 1);
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002333 if (!cmdline)
2334 return -1;
2335
2336 argv = zalloc(sizeof(char *) * (nr + 1));
2337 if (!argv)
2338 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002339
2340 for (i = 0; i < nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002341 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002342 if (!str)
2343 goto error;
2344
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002345 argv[i] = cmdline + len;
2346 memcpy(argv[i], str, strlen(str) + 1);
2347 len += strlen(str) + 1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002348 free(str);
2349 }
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002350 ff->ph->env.cmdline = cmdline;
2351 ff->ph->env.cmdline_argv = (const char **) argv;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002352 return 0;
2353
2354error:
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002355 free(argv);
2356 free(cmdline);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002357 return -1;
2358}
2359
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002360static int process_cpu_topology(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002361{
Namhyung Kima1ae5652012-09-24 17:14:59 +09002362 u32 nr, i;
2363 char *str;
2364 struct strbuf sb;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002365 int cpu_nr = ff->ph->env.nr_cpus_avail;
Kan Liang2bb00d22015-09-01 09:58:12 -04002366 u64 size = 0;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002367 struct perf_header *ph = ff->ph;
Thomas Richter01766222018-06-11 09:31:52 +02002368 bool do_core_id_test = true;
Kan Liang2bb00d22015-09-01 09:58:12 -04002369
2370 ph->env.cpu = calloc(cpu_nr, sizeof(*ph->env.cpu));
2371 if (!ph->env.cpu)
2372 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002373
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002374 if (do_read_u32(ff, &nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04002375 goto free_cpu;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002376
Namhyung Kima1ae5652012-09-24 17:14:59 +09002377 ph->env.nr_sibling_cores = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04002378 size += sizeof(u32);
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002379 if (strbuf_init(&sb, 128) < 0)
2380 goto free_cpu;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002381
2382 for (i = 0; i < nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002383 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002384 if (!str)
2385 goto error;
2386
2387 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002388 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
2389 goto error;
Kan Liang2bb00d22015-09-01 09:58:12 -04002390 size += string_size(str);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002391 free(str);
2392 }
2393 ph->env.sibling_cores = strbuf_detach(&sb, NULL);
2394
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002395 if (do_read_u32(ff, &nr))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002396 return -1;
2397
Namhyung Kima1ae5652012-09-24 17:14:59 +09002398 ph->env.nr_sibling_threads = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04002399 size += sizeof(u32);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002400
2401 for (i = 0; i < nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002402 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002403 if (!str)
2404 goto error;
2405
2406 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002407 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
2408 goto error;
Kan Liang2bb00d22015-09-01 09:58:12 -04002409 size += string_size(str);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002410 free(str);
2411 }
2412 ph->env.sibling_threads = strbuf_detach(&sb, NULL);
Kan Liang2bb00d22015-09-01 09:58:12 -04002413
2414 /*
2415 * The header may be from old perf,
2416 * which doesn't include core id and socket id information.
2417 */
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002418 if (ff->size <= size) {
Kan Liang2bb00d22015-09-01 09:58:12 -04002419 zfree(&ph->env.cpu);
2420 return 0;
2421 }
2422
Thomas Richter01766222018-06-11 09:31:52 +02002423 /* On s390 the socket_id number is not related to the numbers of cpus.
2424 * The socket_id number might be higher than the numbers of cpus.
2425 * This depends on the configuration.
Tan Xiaojun0a4d8fb2019-08-02 11:48:57 +08002426 * AArch64 is the same.
Thomas Richter01766222018-06-11 09:31:52 +02002427 */
Tan Xiaojun0a4d8fb2019-08-02 11:48:57 +08002428 if (ph->env.arch && (!strncmp(ph->env.arch, "s390", 4)
2429 || !strncmp(ph->env.arch, "aarch64", 7)))
Thomas Richter01766222018-06-11 09:31:52 +02002430 do_core_id_test = false;
2431
Kan Liang2bb00d22015-09-01 09:58:12 -04002432 for (i = 0; i < (u32)cpu_nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002433 if (do_read_u32(ff, &nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04002434 goto free_cpu;
2435
Kan Liang2bb00d22015-09-01 09:58:12 -04002436 ph->env.cpu[i].core_id = nr;
Kan Liangacae8b32019-06-04 15:50:41 -07002437 size += sizeof(u32);
Kan Liang2bb00d22015-09-01 09:58:12 -04002438
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002439 if (do_read_u32(ff, &nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04002440 goto free_cpu;
2441
Thomas Richter01766222018-06-11 09:31:52 +02002442 if (do_core_id_test && nr != (u32)-1 && nr > (u32)cpu_nr) {
Kan Liang2bb00d22015-09-01 09:58:12 -04002443 pr_debug("socket_id number is too big."
2444 "You may need to upgrade the perf tool.\n");
2445 goto free_cpu;
2446 }
2447
2448 ph->env.cpu[i].socket_id = nr;
Kan Liangacae8b32019-06-04 15:50:41 -07002449 size += sizeof(u32);
2450 }
2451
2452 /*
2453 * The header may be from old perf,
2454 * which doesn't include die information.
2455 */
2456 if (ff->size <= size)
2457 return 0;
2458
2459 if (do_read_u32(ff, &nr))
2460 return -1;
2461
2462 ph->env.nr_sibling_dies = nr;
2463 size += sizeof(u32);
2464
2465 for (i = 0; i < nr; i++) {
2466 str = do_read_string(ff);
2467 if (!str)
2468 goto error;
2469
2470 /* include a NULL character at the end */
2471 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
2472 goto error;
2473 size += string_size(str);
2474 free(str);
2475 }
2476 ph->env.sibling_dies = strbuf_detach(&sb, NULL);
2477
2478 for (i = 0; i < (u32)cpu_nr; i++) {
2479 if (do_read_u32(ff, &nr))
2480 goto free_cpu;
2481
2482 ph->env.cpu[i].die_id = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04002483 }
2484
Namhyung Kima1ae5652012-09-24 17:14:59 +09002485 return 0;
2486
2487error:
2488 strbuf_release(&sb);
Kan Liang2bb00d22015-09-01 09:58:12 -04002489free_cpu:
2490 zfree(&ph->env.cpu);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002491 return -1;
2492}
2493
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002494static int process_numa_topology(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002495{
Jiri Olsac60da222016-07-04 14:16:20 +02002496 struct numa_node *nodes, *n;
Jiri Olsac60da222016-07-04 14:16:20 +02002497 u32 nr, i;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002498 char *str;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002499
2500 /* nr nodes */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002501 if (do_read_u32(ff, &nr))
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002502 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002503
Jiri Olsac60da222016-07-04 14:16:20 +02002504 nodes = zalloc(sizeof(*nodes) * nr);
2505 if (!nodes)
2506 return -ENOMEM;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002507
2508 for (i = 0; i < nr; i++) {
Jiri Olsac60da222016-07-04 14:16:20 +02002509 n = &nodes[i];
2510
Namhyung Kima1ae5652012-09-24 17:14:59 +09002511 /* node number */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002512 if (do_read_u32(ff, &n->node))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002513 goto error;
2514
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002515 if (do_read_u64(ff, &n->mem_total))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002516 goto error;
2517
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002518 if (do_read_u64(ff, &n->mem_free))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002519 goto error;
2520
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002521 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002522 if (!str)
2523 goto error;
2524
Jiri Olsa9c3516d2019-07-21 13:24:30 +02002525 n->map = perf_cpu_map__new(str);
Jiri Olsac60da222016-07-04 14:16:20 +02002526 if (!n->map)
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002527 goto error;
Jiri Olsac60da222016-07-04 14:16:20 +02002528
Namhyung Kima1ae5652012-09-24 17:14:59 +09002529 free(str);
2530 }
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002531 ff->ph->env.nr_numa_nodes = nr;
2532 ff->ph->env.numa_nodes = nodes;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002533 return 0;
2534
2535error:
Jiri Olsac60da222016-07-04 14:16:20 +02002536 free(nodes);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002537 return -1;
2538}
2539
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002540static int process_pmu_mappings(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002541{
Namhyung Kima1ae5652012-09-24 17:14:59 +09002542 char *name;
2543 u32 pmu_num;
2544 u32 type;
2545 struct strbuf sb;
2546
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002547 if (do_read_u32(ff, &pmu_num))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002548 return -1;
2549
Namhyung Kima1ae5652012-09-24 17:14:59 +09002550 if (!pmu_num) {
2551 pr_debug("pmu mappings not available\n");
2552 return 0;
2553 }
2554
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002555 ff->ph->env.nr_pmu_mappings = pmu_num;
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002556 if (strbuf_init(&sb, 128) < 0)
2557 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002558
2559 while (pmu_num) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002560 if (do_read_u32(ff, &type))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002561 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002562
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002563 name = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002564 if (!name)
2565 goto error;
2566
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002567 if (strbuf_addf(&sb, "%u:%s", type, name) < 0)
2568 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002569 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002570 if (strbuf_add(&sb, "", 1) < 0)
2571 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002572
Kan Liange0838e02015-09-10 11:03:05 -03002573 if (!strcmp(name, "msr"))
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002574 ff->ph->env.msr_pmu_type = type;
Kan Liange0838e02015-09-10 11:03:05 -03002575
Namhyung Kima1ae5652012-09-24 17:14:59 +09002576 free(name);
2577 pmu_num--;
2578 }
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002579 ff->ph->env.pmu_mappings = strbuf_detach(&sb, NULL);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002580 return 0;
2581
2582error:
2583 strbuf_release(&sb);
2584 return -1;
2585}
2586
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002587static int process_group_desc(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima8bb5592013-01-22 18:09:31 +09002588{
2589 size_t ret = -1;
2590 u32 i, nr, nr_groups;
2591 struct perf_session *session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002592 struct evsel *evsel, *leader = NULL;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002593 struct group_desc {
2594 char *name;
2595 u32 leader_idx;
2596 u32 nr_members;
2597 } *desc;
2598
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002599 if (do_read_u32(ff, &nr_groups))
Namhyung Kima8bb5592013-01-22 18:09:31 +09002600 return -1;
2601
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002602 ff->ph->env.nr_groups = nr_groups;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002603 if (!nr_groups) {
2604 pr_debug("group desc not available\n");
2605 return 0;
2606 }
2607
2608 desc = calloc(nr_groups, sizeof(*desc));
2609 if (!desc)
2610 return -1;
2611
2612 for (i = 0; i < nr_groups; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002613 desc[i].name = do_read_string(ff);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002614 if (!desc[i].name)
2615 goto out_free;
2616
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002617 if (do_read_u32(ff, &desc[i].leader_idx))
Namhyung Kima8bb5592013-01-22 18:09:31 +09002618 goto out_free;
2619
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002620 if (do_read_u32(ff, &desc[i].nr_members))
Namhyung Kima8bb5592013-01-22 18:09:31 +09002621 goto out_free;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002622 }
2623
2624 /*
2625 * Rebuild group relationship based on the group_desc
2626 */
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002627 session = container_of(ff->ph, struct perf_session, header);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002628 session->evlist->nr_groups = nr_groups;
2629
2630 i = nr = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002631 evlist__for_each_entry(session->evlist, evsel) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09002632 if (evsel->idx == (int) desc[i].leader_idx) {
2633 evsel->leader = evsel;
2634 /* {anon_group} is a dummy name */
Namhyung Kim210e8122013-11-18 11:20:43 +09002635 if (strcmp(desc[i].name, "{anon_group}")) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09002636 evsel->group_name = desc[i].name;
Namhyung Kim210e8122013-11-18 11:20:43 +09002637 desc[i].name = NULL;
2638 }
Jiri Olsa5643b1a2019-07-21 13:24:46 +02002639 evsel->core.nr_members = desc[i].nr_members;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002640
2641 if (i >= nr_groups || nr > 0) {
2642 pr_debug("invalid group desc\n");
2643 goto out_free;
2644 }
2645
2646 leader = evsel;
Jiri Olsa5643b1a2019-07-21 13:24:46 +02002647 nr = evsel->core.nr_members - 1;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002648 i++;
2649 } else if (nr) {
2650 /* This is a group member */
2651 evsel->leader = leader;
2652
2653 nr--;
2654 }
2655 }
2656
2657 if (i != nr_groups || nr != 0) {
2658 pr_debug("invalid group desc\n");
2659 goto out_free;
2660 }
2661
2662 ret = 0;
2663out_free:
Namhyung Kim50a27402013-11-18 11:20:44 +09002664 for (i = 0; i < nr_groups; i++)
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002665 zfree(&desc[i].name);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002666 free(desc);
2667
2668 return ret;
2669}
2670
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002671static int process_auxtrace(struct feat_fd *ff, void *data __maybe_unused)
Adrian Hunter99fa2982015-04-30 17:37:25 +03002672{
2673 struct perf_session *session;
2674 int err;
2675
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002676 session = container_of(ff->ph, struct perf_session, header);
Adrian Hunter99fa2982015-04-30 17:37:25 +03002677
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002678 err = auxtrace_index__process(ff->fd, ff->size, session,
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002679 ff->ph->needs_swap);
Adrian Hunter99fa2982015-04-30 17:37:25 +03002680 if (err < 0)
2681 pr_err("Failed to process auxtrace index\n");
2682 return err;
2683}
2684
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002685static int process_cache(struct feat_fd *ff, void *data __maybe_unused)
Jiri Olsa720e98b2016-02-16 16:01:43 +01002686{
2687 struct cpu_cache_level *caches;
2688 u32 cnt, i, version;
2689
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002690 if (do_read_u32(ff, &version))
Jiri Olsa720e98b2016-02-16 16:01:43 +01002691 return -1;
2692
Jiri Olsa720e98b2016-02-16 16:01:43 +01002693 if (version != 1)
2694 return -1;
2695
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002696 if (do_read_u32(ff, &cnt))
Jiri Olsa720e98b2016-02-16 16:01:43 +01002697 return -1;
2698
Jiri Olsa720e98b2016-02-16 16:01:43 +01002699 caches = zalloc(sizeof(*caches) * cnt);
2700 if (!caches)
2701 return -1;
2702
2703 for (i = 0; i < cnt; i++) {
2704 struct cpu_cache_level c;
2705
2706 #define _R(v) \
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002707 if (do_read_u32(ff, &c.v))\
Jiri Olsa720e98b2016-02-16 16:01:43 +01002708 goto out_free_caches; \
Jiri Olsa720e98b2016-02-16 16:01:43 +01002709
2710 _R(level)
2711 _R(line_size)
2712 _R(sets)
2713 _R(ways)
2714 #undef _R
2715
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002716 #define _R(v) \
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002717 c.v = do_read_string(ff); \
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002718 if (!c.v) \
Jiri Olsa720e98b2016-02-16 16:01:43 +01002719 goto out_free_caches;
2720
2721 _R(type)
2722 _R(size)
2723 _R(map)
2724 #undef _R
2725
2726 caches[i] = c;
2727 }
2728
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002729 ff->ph->env.caches = caches;
2730 ff->ph->env.caches_cnt = cnt;
Jiri Olsa720e98b2016-02-16 16:01:43 +01002731 return 0;
2732out_free_caches:
2733 free(caches);
2734 return -1;
2735}
2736
Jin Yao60115182017-12-08 21:13:41 +08002737static int process_sample_time(struct feat_fd *ff, void *data __maybe_unused)
2738{
2739 struct perf_session *session;
2740 u64 first_sample_time, last_sample_time;
2741 int ret;
2742
2743 session = container_of(ff->ph, struct perf_session, header);
2744
2745 ret = do_read_u64(ff, &first_sample_time);
2746 if (ret)
2747 return -1;
2748
2749 ret = do_read_u64(ff, &last_sample_time);
2750 if (ret)
2751 return -1;
2752
2753 session->evlist->first_sample_time = first_sample_time;
2754 session->evlist->last_sample_time = last_sample_time;
2755 return 0;
2756}
2757
Jiri Olsae2091ce2018-03-07 16:50:08 +01002758static int process_mem_topology(struct feat_fd *ff,
2759 void *data __maybe_unused)
2760{
2761 struct memory_node *nodes;
2762 u64 version, i, nr, bsize;
2763 int ret = -1;
2764
2765 if (do_read_u64(ff, &version))
2766 return -1;
2767
2768 if (version != 1)
2769 return -1;
2770
2771 if (do_read_u64(ff, &bsize))
2772 return -1;
2773
2774 if (do_read_u64(ff, &nr))
2775 return -1;
2776
2777 nodes = zalloc(sizeof(*nodes) * nr);
2778 if (!nodes)
2779 return -1;
2780
2781 for (i = 0; i < nr; i++) {
2782 struct memory_node n;
2783
2784 #define _R(v) \
2785 if (do_read_u64(ff, &n.v)) \
2786 goto out; \
2787
2788 _R(node)
2789 _R(size)
2790
2791 #undef _R
2792
2793 if (do_read_bitmap(ff, &n.set, &n.size))
2794 goto out;
2795
2796 nodes[i] = n;
2797 }
2798
2799 ff->ph->env.memory_bsize = bsize;
2800 ff->ph->env.memory_nodes = nodes;
2801 ff->ph->env.nr_memory_nodes = nr;
2802 ret = 0;
2803
2804out:
2805 if (ret)
2806 free(nodes);
2807 return ret;
2808}
2809
Alexey Budankovcf790512018-10-09 17:36:24 +03002810static int process_clockid(struct feat_fd *ff,
2811 void *data __maybe_unused)
2812{
Jiri Olsa9d88a1a12020-08-05 11:34:41 +02002813 if (do_read_u64(ff, &ff->ph->env.clock.clockid_res_ns))
Alexey Budankovcf790512018-10-09 17:36:24 +03002814 return -1;
2815
2816 return 0;
2817}
2818
Jiri Olsad1e325c2020-08-05 11:34:40 +02002819static int process_clock_data(struct feat_fd *ff,
2820 void *_data __maybe_unused)
2821{
2822 u32 data32;
2823 u64 data64;
2824
2825 /* version */
2826 if (do_read_u32(ff, &data32))
2827 return -1;
2828
2829 if (data32 != 1)
2830 return -1;
2831
2832 /* clockid */
2833 if (do_read_u32(ff, &data32))
2834 return -1;
2835
2836 ff->ph->env.clock.clockid = data32;
2837
2838 /* TOD ref time */
2839 if (do_read_u64(ff, &data64))
2840 return -1;
2841
2842 ff->ph->env.clock.tod_ns = data64;
2843
2844 /* clockid ref time */
2845 if (do_read_u64(ff, &data64))
2846 return -1;
2847
2848 ff->ph->env.clock.clockid_ns = data64;
2849 ff->ph->env.clock.enabled = true;
2850 return 0;
2851}
2852
Jiri Olsa258031c2019-03-08 14:47:39 +01002853static int process_dir_format(struct feat_fd *ff,
2854 void *_data __maybe_unused)
2855{
2856 struct perf_session *session;
2857 struct perf_data *data;
2858
2859 session = container_of(ff->ph, struct perf_session, header);
2860 data = session->data;
2861
2862 if (WARN_ON(!perf_data__is_dir(data)))
2863 return -1;
2864
2865 return do_read_u64(ff, &data->dir.version);
2866}
2867
Song Liu606f9722019-03-11 22:30:43 -07002868#ifdef HAVE_LIBBPF_SUPPORT
2869static int process_bpf_prog_info(struct feat_fd *ff, void *data __maybe_unused)
2870{
2871 struct bpf_prog_info_linear *info_linear;
2872 struct bpf_prog_info_node *info_node;
2873 struct perf_env *env = &ff->ph->env;
2874 u32 count, i;
2875 int err = -1;
2876
2877 if (ff->ph->needs_swap) {
2878 pr_warning("interpreting bpf_prog_info from systems with endianity is not yet supported\n");
2879 return 0;
2880 }
2881
2882 if (do_read_u32(ff, &count))
2883 return -1;
2884
2885 down_write(&env->bpf_progs.lock);
2886
2887 for (i = 0; i < count; ++i) {
2888 u32 info_len, data_len;
2889
2890 info_linear = NULL;
2891 info_node = NULL;
2892 if (do_read_u32(ff, &info_len))
2893 goto out;
2894 if (do_read_u32(ff, &data_len))
2895 goto out;
2896
2897 if (info_len > sizeof(struct bpf_prog_info)) {
2898 pr_warning("detected invalid bpf_prog_info\n");
2899 goto out;
2900 }
2901
2902 info_linear = malloc(sizeof(struct bpf_prog_info_linear) +
2903 data_len);
2904 if (!info_linear)
2905 goto out;
2906 info_linear->info_len = sizeof(struct bpf_prog_info);
2907 info_linear->data_len = data_len;
2908 if (do_read_u64(ff, (u64 *)(&info_linear->arrays)))
2909 goto out;
2910 if (__do_read(ff, &info_linear->info, info_len))
2911 goto out;
2912 if (info_len < sizeof(struct bpf_prog_info))
2913 memset(((void *)(&info_linear->info)) + info_len, 0,
2914 sizeof(struct bpf_prog_info) - info_len);
2915
2916 if (__do_read(ff, info_linear->data, data_len))
2917 goto out;
2918
2919 info_node = malloc(sizeof(struct bpf_prog_info_node));
2920 if (!info_node)
2921 goto out;
2922
2923 /* after reading from file, translate offset to address */
2924 bpf_program__bpil_offs_to_addr(info_linear);
2925 info_node->info_linear = info_linear;
2926 perf_env__insert_bpf_prog_info(env, info_node);
2927 }
2928
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002929 up_write(&env->bpf_progs.lock);
Song Liu606f9722019-03-11 22:30:43 -07002930 return 0;
2931out:
2932 free(info_linear);
2933 free(info_node);
2934 up_write(&env->bpf_progs.lock);
2935 return err;
2936}
2937#else // HAVE_LIBBPF_SUPPORT
2938static int process_bpf_prog_info(struct feat_fd *ff __maybe_unused, void *data __maybe_unused)
2939{
2940 return 0;
2941}
2942#endif // HAVE_LIBBPF_SUPPORT
2943
Song Liua70a112312019-03-11 22:30:45 -07002944static int process_bpf_btf(struct feat_fd *ff, void *data __maybe_unused)
2945{
2946 struct perf_env *env = &ff->ph->env;
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002947 struct btf_node *node = NULL;
Song Liua70a112312019-03-11 22:30:45 -07002948 u32 count, i;
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002949 int err = -1;
Song Liua70a112312019-03-11 22:30:45 -07002950
2951 if (ff->ph->needs_swap) {
2952 pr_warning("interpreting btf from systems with endianity is not yet supported\n");
2953 return 0;
2954 }
2955
2956 if (do_read_u32(ff, &count))
2957 return -1;
2958
2959 down_write(&env->bpf_progs.lock);
2960
2961 for (i = 0; i < count; ++i) {
Song Liua70a112312019-03-11 22:30:45 -07002962 u32 id, data_size;
2963
2964 if (do_read_u32(ff, &id))
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002965 goto out;
Song Liua70a112312019-03-11 22:30:45 -07002966 if (do_read_u32(ff, &data_size))
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002967 goto out;
Song Liua70a112312019-03-11 22:30:45 -07002968
2969 node = malloc(sizeof(struct btf_node) + data_size);
2970 if (!node)
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002971 goto out;
Song Liua70a112312019-03-11 22:30:45 -07002972
2973 node->id = id;
2974 node->data_size = data_size;
2975
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002976 if (__do_read(ff, node->data, data_size))
2977 goto out;
Song Liua70a112312019-03-11 22:30:45 -07002978
2979 perf_env__insert_btf(env, node);
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002980 node = NULL;
Song Liua70a112312019-03-11 22:30:45 -07002981 }
2982
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002983 err = 0;
2984out:
Song Liua70a112312019-03-11 22:30:45 -07002985 up_write(&env->bpf_progs.lock);
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002986 free(node);
2987 return err;
Song Liua70a112312019-03-11 22:30:45 -07002988}
2989
Alexey Budankov42e1fd82019-03-18 20:41:33 +03002990static int process_compressed(struct feat_fd *ff,
2991 void *data __maybe_unused)
2992{
2993 if (do_read_u32(ff, &(ff->ph->env.comp_ver)))
2994 return -1;
2995
2996 if (do_read_u32(ff, &(ff->ph->env.comp_type)))
2997 return -1;
2998
2999 if (do_read_u32(ff, &(ff->ph->env.comp_level)))
3000 return -1;
3001
3002 if (do_read_u32(ff, &(ff->ph->env.comp_ratio)))
3003 return -1;
3004
3005 if (do_read_u32(ff, &(ff->ph->env.comp_mmap_len)))
3006 return -1;
3007
3008 return 0;
3009}
3010
Kan Liang6f91ea22020-03-19 13:25:02 -07003011static int process_cpu_pmu_caps(struct feat_fd *ff,
3012 void *data __maybe_unused)
3013{
3014 char *name, *value;
3015 struct strbuf sb;
3016 u32 nr_caps;
3017
3018 if (do_read_u32(ff, &nr_caps))
3019 return -1;
3020
3021 if (!nr_caps) {
3022 pr_debug("cpu pmu capabilities not available\n");
3023 return 0;
3024 }
3025
3026 ff->ph->env.nr_cpu_pmu_caps = nr_caps;
3027
3028 if (strbuf_init(&sb, 128) < 0)
3029 return -1;
3030
3031 while (nr_caps--) {
3032 name = do_read_string(ff);
3033 if (!name)
3034 goto error;
3035
3036 value = do_read_string(ff);
3037 if (!value)
3038 goto free_name;
3039
3040 if (strbuf_addf(&sb, "%s=%s", name, value) < 0)
3041 goto free_value;
3042
3043 /* include a NULL character at the end */
3044 if (strbuf_add(&sb, "", 1) < 0)
3045 goto free_value;
3046
3047 if (!strcmp(name, "branches"))
3048 ff->ph->env.max_branches = atoi(value);
3049
3050 free(value);
3051 free(name);
3052 }
3053 ff->ph->env.cpu_pmu_caps = strbuf_detach(&sb, NULL);
3054 return 0;
3055
3056free_value:
3057 free(value);
3058free_name:
3059 free(name);
3060error:
3061 strbuf_release(&sb);
3062 return -1;
3063}
3064
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07003065#define FEAT_OPR(n, func, __full_only) \
3066 [HEADER_##n] = { \
3067 .name = __stringify(n), \
3068 .write = write_##func, \
3069 .print = print_##func, \
3070 .full_only = __full_only, \
3071 .process = process_##func, \
3072 .synthesize = true \
3073 }
3074
3075#define FEAT_OPN(n, func, __full_only) \
3076 [HEADER_##n] = { \
3077 .name = __stringify(n), \
3078 .write = write_##func, \
3079 .print = print_##func, \
3080 .full_only = __full_only, \
3081 .process = process_##func \
3082 }
Robert Richter8cdfa782011-12-07 10:02:56 +01003083
3084/* feature_ops not implemented: */
Stephane Eranian2eeaaa02012-05-15 13:28:13 +02003085#define print_tracing_data NULL
3086#define print_build_id NULL
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003087
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07003088#define process_branch_stack NULL
3089#define process_stat NULL
3090
Arnaldo Carvalho de Melo055c67e2019-09-18 16:08:52 -03003091// Only used in util/synthetic-events.c
3092const struct perf_header_feature_ops feat_ops[HEADER_LAST_FEATURE];
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07003093
Arnaldo Carvalho de Melo055c67e2019-09-18 16:08:52 -03003094const struct perf_header_feature_ops feat_ops[HEADER_LAST_FEATURE] = {
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07003095 FEAT_OPN(TRACING_DATA, tracing_data, false),
3096 FEAT_OPN(BUILD_ID, build_id, false),
3097 FEAT_OPR(HOSTNAME, hostname, false),
3098 FEAT_OPR(OSRELEASE, osrelease, false),
3099 FEAT_OPR(VERSION, version, false),
3100 FEAT_OPR(ARCH, arch, false),
3101 FEAT_OPR(NRCPUS, nrcpus, false),
3102 FEAT_OPR(CPUDESC, cpudesc, false),
3103 FEAT_OPR(CPUID, cpuid, false),
3104 FEAT_OPR(TOTAL_MEM, total_mem, false),
3105 FEAT_OPR(EVENT_DESC, event_desc, false),
3106 FEAT_OPR(CMDLINE, cmdline, false),
3107 FEAT_OPR(CPU_TOPOLOGY, cpu_topology, true),
3108 FEAT_OPR(NUMA_TOPOLOGY, numa_topology, true),
3109 FEAT_OPN(BRANCH_STACK, branch_stack, false),
3110 FEAT_OPR(PMU_MAPPINGS, pmu_mappings, false),
Jiri Olsae8fedff2018-07-12 15:52:02 +02003111 FEAT_OPR(GROUP_DESC, group_desc, false),
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07003112 FEAT_OPN(AUXTRACE, auxtrace, false),
3113 FEAT_OPN(STAT, stat, false),
3114 FEAT_OPN(CACHE, cache, true),
Jin Yao60115182017-12-08 21:13:41 +08003115 FEAT_OPR(SAMPLE_TIME, sample_time, false),
Jiri Olsae2091ce2018-03-07 16:50:08 +01003116 FEAT_OPR(MEM_TOPOLOGY, mem_topology, true),
Jiri Olsa258031c2019-03-08 14:47:39 +01003117 FEAT_OPR(CLOCKID, clockid, false),
Song Liu606f9722019-03-11 22:30:43 -07003118 FEAT_OPN(DIR_FORMAT, dir_format, false),
Song Liua70a112312019-03-11 22:30:45 -07003119 FEAT_OPR(BPF_PROG_INFO, bpf_prog_info, false),
3120 FEAT_OPR(BPF_BTF, bpf_btf, false),
Alexey Budankov42e1fd82019-03-18 20:41:33 +03003121 FEAT_OPR(COMPRESSED, compressed, false),
Kan Liang6f91ea22020-03-19 13:25:02 -07003122 FEAT_OPR(CPU_PMU_CAPS, cpu_pmu_caps, false),
Jiri Olsad1e325c2020-08-05 11:34:40 +02003123 FEAT_OPR(CLOCK_DATA, clock_data, false),
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003124};
3125
3126struct header_print_data {
3127 FILE *fp;
3128 bool full; /* extended list of headers */
3129};
3130
3131static int perf_file_section__fprintf_info(struct perf_file_section *section,
3132 struct perf_header *ph,
3133 int feat, int fd, void *data)
3134{
3135 struct header_print_data *hd = data;
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07003136 struct feat_fd ff;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003137
3138 if (lseek(fd, section->offset, SEEK_SET) == (off_t)-1) {
3139 pr_debug("Failed to lseek to %" PRIu64 " offset for feature "
3140 "%d, continuing...\n", section->offset, feat);
3141 return 0;
3142 }
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003143 if (feat >= HEADER_LAST_FEATURE) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003144 pr_warning("unknown feature %d\n", feat);
Robert Richterf7a8a132011-12-07 10:02:51 +01003145 return 0;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003146 }
3147 if (!feat_ops[feat].print)
3148 return 0;
3149
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07003150 ff = (struct feat_fd) {
3151 .fd = fd,
3152 .ph = ph,
3153 };
3154
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003155 if (!feat_ops[feat].full_only || hd->full)
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07003156 feat_ops[feat].print(&ff, hd->fp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003157 else
3158 fprintf(hd->fp, "# %s info available, use -I to display\n",
3159 feat_ops[feat].name);
3160
3161 return 0;
3162}
3163
3164int perf_header__fprintf_info(struct perf_session *session, FILE *fp, bool full)
3165{
3166 struct header_print_data hd;
3167 struct perf_header *header = &session->header;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003168 int fd = perf_data__fd(session->data);
Jiri Olsaf45f5612016-10-10 09:03:07 +02003169 struct stat st;
Arnaldo Carvalho de Melo0afcf292018-12-11 16:11:54 -03003170 time_t stctime;
Jiri Olsaaabae162016-10-10 09:35:50 +02003171 int ret, bit;
Jiri Olsaf45f5612016-10-10 09:03:07 +02003172
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003173 hd.fp = fp;
3174 hd.full = full;
3175
Jiri Olsaf45f5612016-10-10 09:03:07 +02003176 ret = fstat(fd, &st);
3177 if (ret == -1)
3178 return -1;
3179
Michael Petlan8af19d62020-01-14 11:42:36 +01003180 stctime = st.st_mtime;
Arnaldo Carvalho de Melo0afcf292018-12-11 16:11:54 -03003181 fprintf(fp, "# captured on : %s", ctime(&stctime));
Jiri Olsae971a5a2018-03-07 16:50:03 +01003182
3183 fprintf(fp, "# header version : %u\n", header->version);
3184 fprintf(fp, "# data offset : %" PRIu64 "\n", header->data_offset);
3185 fprintf(fp, "# data size : %" PRIu64 "\n", header->data_size);
3186 fprintf(fp, "# feat offset : %" PRIu64 "\n", header->feat_offset);
Jiri Olsaf45f5612016-10-10 09:03:07 +02003187
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003188 perf_header__process_sections(header, fd, &hd,
3189 perf_file_section__fprintf_info);
Jiri Olsaaabae162016-10-10 09:35:50 +02003190
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003191 if (session->data->is_pipe)
David Carrillo-Cisnerosc9d1c932017-04-10 13:14:32 -07003192 return 0;
3193
Jiri Olsaaabae162016-10-10 09:35:50 +02003194 fprintf(fp, "# missing features: ");
3195 for_each_clear_bit(bit, header->adds_features, HEADER_LAST_FEATURE) {
3196 if (bit)
3197 fprintf(fp, "%s ", feat_ops[bit].name);
3198 }
3199
3200 fprintf(fp, "\n");
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003201 return 0;
3202}
3203
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003204static int do_write_feat(struct feat_fd *ff, int type,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003205 struct perf_file_section **p,
Jiri Olsa63503db2019-07-21 13:23:52 +02003206 struct evlist *evlist)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003207{
3208 int err;
3209 int ret = 0;
3210
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003211 if (perf_header__has_feat(ff->ph, type)) {
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003212 if (!feat_ops[type].write)
3213 return -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003214
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -07003215 if (WARN(ff->buf, "Error: calling %s in pipe-mode.\n", __func__))
3216 return -1;
3217
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003218 (*p)->offset = lseek(ff->fd, 0, SEEK_CUR);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003219
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003220 err = feat_ops[type].write(ff, evlist);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003221 if (err < 0) {
Jiri Olsa0c2aff42016-10-10 09:38:02 +02003222 pr_debug("failed to write feature %s\n", feat_ops[type].name);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003223
3224 /* undo anything written */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003225 lseek(ff->fd, (*p)->offset, SEEK_SET);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003226
3227 return -1;
3228 }
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003229 (*p)->size = lseek(ff->fd, 0, SEEK_CUR) - (*p)->offset;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003230 (*p)++;
3231 }
3232 return ret;
3233}
3234
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003235static int perf_header__adds_write(struct perf_header *header,
Jiri Olsa63503db2019-07-21 13:23:52 +02003236 struct evlist *evlist, int fd)
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003237{
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003238 int nr_sections;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003239 struct feat_fd ff;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003240 struct perf_file_section *feat_sec, *p;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003241 int sec_size;
3242 u64 sec_start;
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003243 int feat;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003244 int err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003245
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003246 ff = (struct feat_fd){
3247 .fd = fd,
3248 .ph = header,
3249 };
3250
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003251 nr_sections = bitmap_weight(header->adds_features, HEADER_FEAT_BITS);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003252 if (!nr_sections)
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003253 return 0;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003254
Paul Gortmaker91b98802013-01-30 20:05:49 -05003255 feat_sec = p = calloc(nr_sections, sizeof(*feat_sec));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003256 if (feat_sec == NULL)
3257 return -ENOMEM;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003258
3259 sec_size = sizeof(*feat_sec) * nr_sections;
3260
Jiri Olsa8d541e92013-07-17 19:49:44 +02003261 sec_start = header->feat_offset;
Xiao Guangrongf887f302010-02-04 16:46:42 +08003262 lseek(fd, sec_start + sec_size, SEEK_SET);
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003263
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003264 for_each_set_bit(feat, header->adds_features, HEADER_FEAT_BITS) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003265 if (do_write_feat(&ff, feat, &p, evlist))
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003266 perf_header__clear_feat(header, feat);
3267 }
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003268
Xiao Guangrongf887f302010-02-04 16:46:42 +08003269 lseek(fd, sec_start, SEEK_SET);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003270 /*
3271 * may write more than needed due to dropped feature, but
Ingo Molnaradba1632018-12-03 11:22:00 +01003272 * this is okay, reader will skip the missing entries
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003273 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003274 err = do_write(&ff, feat_sec, sec_size);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003275 if (err < 0)
3276 pr_debug("failed to write feature section\n");
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003277 free(feat_sec);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003278 return err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003279}
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003280
Tom Zanussi8dc58102010-04-01 23:59:15 -05003281int perf_header__write_pipe(int fd)
3282{
3283 struct perf_pipe_file_header f_header;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003284 struct feat_fd ff;
Tom Zanussi8dc58102010-04-01 23:59:15 -05003285 int err;
3286
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003287 ff = (struct feat_fd){ .fd = fd };
3288
Tom Zanussi8dc58102010-04-01 23:59:15 -05003289 f_header = (struct perf_pipe_file_header){
3290 .magic = PERF_MAGIC,
3291 .size = sizeof(f_header),
3292 };
3293
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003294 err = do_write(&ff, &f_header, sizeof(f_header));
Tom Zanussi8dc58102010-04-01 23:59:15 -05003295 if (err < 0) {
3296 pr_debug("failed to write perf pipe header\n");
3297 return err;
3298 }
3299
3300 return 0;
3301}
3302
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003303int perf_session__write_header(struct perf_session *session,
Jiri Olsa63503db2019-07-21 13:23:52 +02003304 struct evlist *evlist,
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003305 int fd, bool at_exit)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003306{
3307 struct perf_file_header f_header;
3308 struct perf_file_attr f_attr;
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003309 struct perf_header *header = &session->header;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003310 struct evsel *evsel;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003311 struct feat_fd ff;
Jiri Olsa944d62b2013-07-17 19:49:43 +02003312 u64 attr_offset;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003313 int err;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003314
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003315 ff = (struct feat_fd){ .fd = fd};
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003316 lseek(fd, sizeof(f_header), SEEK_SET);
3317
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003318 evlist__for_each_entry(session->evlist, evsel) {
Robert Richter6606f872012-08-16 21:10:19 +02003319 evsel->id_offset = lseek(fd, 0, SEEK_CUR);
Jiri Olsae7eb9002019-09-02 22:15:47 +02003320 err = do_write(&ff, evsel->core.id, evsel->core.ids * sizeof(u64));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003321 if (err < 0) {
3322 pr_debug("failed to write perf header\n");
3323 return err;
3324 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003325 }
3326
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003327 attr_offset = lseek(ff.fd, 0, SEEK_CUR);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003328
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003329 evlist__for_each_entry(evlist, evsel) {
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003330 f_attr = (struct perf_file_attr){
Jiri Olsa1fc632c2019-07-21 13:24:29 +02003331 .attr = evsel->core.attr,
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003332 .ids = {
Robert Richter6606f872012-08-16 21:10:19 +02003333 .offset = evsel->id_offset,
Jiri Olsae7eb9002019-09-02 22:15:47 +02003334 .size = evsel->core.ids * sizeof(u64),
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003335 }
3336 };
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003337 err = do_write(&ff, &f_attr, sizeof(f_attr));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003338 if (err < 0) {
3339 pr_debug("failed to write perf header attribute\n");
3340 return err;
3341 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003342 }
3343
Adrian Hunterd645c442013-12-11 14:36:28 +02003344 if (!header->data_offset)
3345 header->data_offset = lseek(fd, 0, SEEK_CUR);
Jiri Olsa8d541e92013-07-17 19:49:44 +02003346 header->feat_offset = header->data_offset + header->data_size;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003347
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003348 if (at_exit) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003349 err = perf_header__adds_write(header, evlist, fd);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003350 if (err < 0)
3351 return err;
3352 }
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003353
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003354 f_header = (struct perf_file_header){
3355 .magic = PERF_MAGIC,
3356 .size = sizeof(f_header),
3357 .attr_size = sizeof(f_attr),
3358 .attrs = {
Jiri Olsa944d62b2013-07-17 19:49:43 +02003359 .offset = attr_offset,
Jiri Olsa6484d2f2019-07-21 13:24:28 +02003360 .size = evlist->core.nr_entries * sizeof(f_attr),
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003361 },
3362 .data = {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003363 .offset = header->data_offset,
3364 .size = header->data_size,
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003365 },
Jiri Olsa44b3c572013-07-11 17:28:31 +02003366 /* event_types is ignored, store zeros */
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003367 };
3368
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003369 memcpy(&f_header.adds_features, &header->adds_features, sizeof(header->adds_features));
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003370
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003371 lseek(fd, 0, SEEK_SET);
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003372 err = do_write(&ff, &f_header, sizeof(f_header));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003373 if (err < 0) {
3374 pr_debug("failed to write perf header\n");
3375 return err;
3376 }
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003377 lseek(fd, header->data_offset + header->data_size, SEEK_SET);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003378
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003379 return 0;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003380}
3381
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003382static int perf_header__getbuffer64(struct perf_header *header,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003383 int fd, void *buf, size_t size)
3384{
Arnaldo Carvalho de Melo1e7972c2011-01-03 16:50:55 -02003385 if (readn(fd, buf, size) <= 0)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003386 return -1;
3387
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003388 if (header->needs_swap)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003389 mem_bswap_64(buf, size);
3390
3391 return 0;
3392}
3393
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003394int perf_header__process_sections(struct perf_header *header, int fd,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003395 void *data,
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003396 int (*process)(struct perf_file_section *section,
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003397 struct perf_header *ph,
3398 int feat, int fd, void *data))
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003399{
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003400 struct perf_file_section *feat_sec, *sec;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003401 int nr_sections;
3402 int sec_size;
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003403 int feat;
3404 int err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003405
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003406 nr_sections = bitmap_weight(header->adds_features, HEADER_FEAT_BITS);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003407 if (!nr_sections)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003408 return 0;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003409
Paul Gortmaker91b98802013-01-30 20:05:49 -05003410 feat_sec = sec = calloc(nr_sections, sizeof(*feat_sec));
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003411 if (!feat_sec)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003412 return -1;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003413
3414 sec_size = sizeof(*feat_sec) * nr_sections;
3415
Jiri Olsa8d541e92013-07-17 19:49:44 +02003416 lseek(fd, header->feat_offset, SEEK_SET);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003417
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003418 err = perf_header__getbuffer64(header, fd, feat_sec, sec_size);
3419 if (err < 0)
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003420 goto out_free;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003421
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003422 for_each_set_bit(feat, header->adds_features, HEADER_LAST_FEATURE) {
3423 err = process(sec++, header, feat, fd, data);
3424 if (err < 0)
3425 goto out_free;
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +01003426 }
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003427 err = 0;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003428out_free:
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003429 free(feat_sec);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003430 return err;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003431}
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003432
Stephane Eranian114382a2012-02-09 23:21:08 +01003433static const int attr_file_abi_sizes[] = {
3434 [0] = PERF_ATTR_SIZE_VER0,
3435 [1] = PERF_ATTR_SIZE_VER1,
Jiri Olsa239cc472012-08-07 15:20:42 +02003436 [2] = PERF_ATTR_SIZE_VER2,
Jiri Olsa0f6a3012012-08-07 15:20:45 +02003437 [3] = PERF_ATTR_SIZE_VER3,
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02003438 [4] = PERF_ATTR_SIZE_VER4,
Stephane Eranian114382a2012-02-09 23:21:08 +01003439 0,
3440};
3441
3442/*
3443 * In the legacy file format, the magic number is not used to encode endianness.
3444 * hdr_sz was used to encode endianness. But given that hdr_sz can vary based
3445 * on ABI revisions, we need to try all combinations for all endianness to
3446 * detect the endianness.
3447 */
3448static int try_all_file_abis(uint64_t hdr_sz, struct perf_header *ph)
3449{
3450 uint64_t ref_size, attr_size;
3451 int i;
3452
3453 for (i = 0 ; attr_file_abi_sizes[i]; i++) {
3454 ref_size = attr_file_abi_sizes[i]
3455 + sizeof(struct perf_file_section);
3456 if (hdr_sz != ref_size) {
3457 attr_size = bswap_64(hdr_sz);
3458 if (attr_size != ref_size)
3459 continue;
3460
3461 ph->needs_swap = true;
3462 }
3463 pr_debug("ABI%d perf.data file detected, need_swap=%d\n",
3464 i,
3465 ph->needs_swap);
3466 return 0;
3467 }
3468 /* could not determine endianness */
3469 return -1;
3470}
3471
3472#define PERF_PIPE_HDR_VER0 16
3473
3474static const size_t attr_pipe_abi_sizes[] = {
3475 [0] = PERF_PIPE_HDR_VER0,
3476 0,
3477};
3478
3479/*
3480 * In the legacy pipe format, there is an implicit assumption that endiannesss
3481 * between host recording the samples, and host parsing the samples is the
3482 * same. This is not always the case given that the pipe output may always be
3483 * redirected into a file and analyzed on a different machine with possibly a
3484 * different endianness and perf_event ABI revsions in the perf tool itself.
3485 */
3486static int try_all_pipe_abis(uint64_t hdr_sz, struct perf_header *ph)
3487{
3488 u64 attr_size;
3489 int i;
3490
3491 for (i = 0 ; attr_pipe_abi_sizes[i]; i++) {
3492 if (hdr_sz != attr_pipe_abi_sizes[i]) {
3493 attr_size = bswap_64(hdr_sz);
3494 if (attr_size != hdr_sz)
3495 continue;
3496
3497 ph->needs_swap = true;
3498 }
3499 pr_debug("Pipe ABI%d perf.data file detected\n", i);
3500 return 0;
3501 }
3502 return -1;
3503}
3504
Feng Tange84ba4e2012-10-30 11:56:07 +08003505bool is_perf_magic(u64 magic)
3506{
3507 if (!memcmp(&magic, __perf_magic1, sizeof(magic))
3508 || magic == __perf_magic2
3509 || magic == __perf_magic2_sw)
3510 return true;
3511
3512 return false;
3513}
3514
Stephane Eranian114382a2012-02-09 23:21:08 +01003515static int check_magic_endian(u64 magic, uint64_t hdr_sz,
3516 bool is_pipe, struct perf_header *ph)
Stephane Eranian73323f52012-02-02 13:54:44 +01003517{
3518 int ret;
3519
3520 /* check for legacy format */
Stephane Eranian114382a2012-02-09 23:21:08 +01003521 ret = memcmp(&magic, __perf_magic1, sizeof(magic));
Stephane Eranian73323f52012-02-02 13:54:44 +01003522 if (ret == 0) {
Jiri Olsa2a08c3e2013-07-17 19:49:47 +02003523 ph->version = PERF_HEADER_VERSION_1;
Stephane Eranian73323f52012-02-02 13:54:44 +01003524 pr_debug("legacy perf.data format\n");
Stephane Eranian114382a2012-02-09 23:21:08 +01003525 if (is_pipe)
3526 return try_all_pipe_abis(hdr_sz, ph);
Stephane Eranian73323f52012-02-02 13:54:44 +01003527
Stephane Eranian114382a2012-02-09 23:21:08 +01003528 return try_all_file_abis(hdr_sz, ph);
Stephane Eranian73323f52012-02-02 13:54:44 +01003529 }
Stephane Eranian114382a2012-02-09 23:21:08 +01003530 /*
3531 * the new magic number serves two purposes:
3532 * - unique number to identify actual perf.data files
3533 * - encode endianness of file
3534 */
Namhyung Kimf7913972015-01-29 17:06:45 +09003535 ph->version = PERF_HEADER_VERSION_2;
Stephane Eranian73323f52012-02-02 13:54:44 +01003536
Stephane Eranian114382a2012-02-09 23:21:08 +01003537 /* check magic number with one endianness */
3538 if (magic == __perf_magic2)
Stephane Eranian73323f52012-02-02 13:54:44 +01003539 return 0;
3540
Stephane Eranian114382a2012-02-09 23:21:08 +01003541 /* check magic number with opposite endianness */
3542 if (magic != __perf_magic2_sw)
Stephane Eranian73323f52012-02-02 13:54:44 +01003543 return -1;
3544
3545 ph->needs_swap = true;
3546
3547 return 0;
3548}
3549
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003550int perf_file_header__read(struct perf_file_header *header,
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003551 struct perf_header *ph, int fd)
3552{
Jiri Olsa727ebd52013-11-28 11:30:14 +01003553 ssize_t ret;
Stephane Eranian73323f52012-02-02 13:54:44 +01003554
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003555 lseek(fd, 0, SEEK_SET);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003556
Stephane Eranian73323f52012-02-02 13:54:44 +01003557 ret = readn(fd, header, sizeof(*header));
3558 if (ret <= 0)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003559 return -1;
3560
Stephane Eranian114382a2012-02-09 23:21:08 +01003561 if (check_magic_endian(header->magic,
3562 header->attr_size, false, ph) < 0) {
3563 pr_debug("magic/endian check failed\n");
Stephane Eranian73323f52012-02-02 13:54:44 +01003564 return -1;
Stephane Eranian114382a2012-02-09 23:21:08 +01003565 }
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003566
Stephane Eranian73323f52012-02-02 13:54:44 +01003567 if (ph->needs_swap) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003568 mem_bswap_64(header, offsetof(struct perf_file_header,
Stephane Eranian73323f52012-02-02 13:54:44 +01003569 adds_features));
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003570 }
3571
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003572 if (header->size != sizeof(*header)) {
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003573 /* Support the previous format */
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003574 if (header->size == offsetof(typeof(*header), adds_features))
3575 bitmap_zero(header->adds_features, HEADER_FEAT_BITS);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003576 else
3577 return -1;
David Ahernd327fa42011-10-18 17:34:01 -06003578 } else if (ph->needs_swap) {
David Ahernd327fa42011-10-18 17:34:01 -06003579 /*
3580 * feature bitmap is declared as an array of unsigned longs --
3581 * not good since its size can differ between the host that
3582 * generated the data file and the host analyzing the file.
3583 *
3584 * We need to handle endianness, but we don't know the size of
3585 * the unsigned long where the file was generated. Take a best
3586 * guess at determining it: try 64-bit swap first (ie., file
3587 * created on a 64-bit host), and check if the hostname feature
3588 * bit is set (this feature bit is forced on as of fbe96f2).
3589 * If the bit is not, undo the 64-bit swap and try a 32-bit
3590 * swap. If the hostname bit is still not set (e.g., older data
3591 * file), punt and fallback to the original behavior --
3592 * clearing all feature bits and setting buildid.
3593 */
David Ahern80c01202012-06-08 11:47:51 -03003594 mem_bswap_64(&header->adds_features,
3595 BITS_TO_U64(HEADER_FEAT_BITS));
David Ahernd327fa42011-10-18 17:34:01 -06003596
3597 if (!test_bit(HEADER_HOSTNAME, header->adds_features)) {
David Ahern80c01202012-06-08 11:47:51 -03003598 /* unswap as u64 */
3599 mem_bswap_64(&header->adds_features,
3600 BITS_TO_U64(HEADER_FEAT_BITS));
3601
3602 /* unswap as u32 */
3603 mem_bswap_32(&header->adds_features,
3604 BITS_TO_U32(HEADER_FEAT_BITS));
David Ahernd327fa42011-10-18 17:34:01 -06003605 }
3606
3607 if (!test_bit(HEADER_HOSTNAME, header->adds_features)) {
3608 bitmap_zero(header->adds_features, HEADER_FEAT_BITS);
3609 set_bit(HEADER_BUILD_ID, header->adds_features);
3610 }
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003611 }
3612
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003613 memcpy(&ph->adds_features, &header->adds_features,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003614 sizeof(ph->adds_features));
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003615
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003616 ph->data_offset = header->data.offset;
3617 ph->data_size = header->data.size;
Jiri Olsa8d541e92013-07-17 19:49:44 +02003618 ph->feat_offset = header->data.offset + header->data.size;
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003619 return 0;
3620}
3621
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003622static int perf_file_section__process(struct perf_file_section *section,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003623 struct perf_header *ph,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03003624 int feat, int fd, void *data)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003625{
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07003626 struct feat_fd fdd = {
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07003627 .fd = fd,
3628 .ph = ph,
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07003629 .size = section->size,
3630 .offset = section->offset,
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07003631 };
3632
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003633 if (lseek(fd, section->offset, SEEK_SET) == (off_t)-1) {
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02003634 pr_debug("Failed to lseek to %" PRIu64 " offset for feature "
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003635 "%d, continuing...\n", section->offset, feat);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003636 return 0;
3637 }
3638
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003639 if (feat >= HEADER_LAST_FEATURE) {
3640 pr_debug("unknown feature %d, continuing...\n", feat);
3641 return 0;
3642 }
3643
Robert Richterf1c67db2012-02-10 15:41:56 +01003644 if (!feat_ops[feat].process)
3645 return 0;
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003646
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07003647 return feat_ops[feat].process(&fdd, data);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003648}
3649
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003650static int perf_file_header__read_pipe(struct perf_pipe_file_header *header,
Tom Zanussi454c4072010-05-01 01:41:20 -05003651 struct perf_header *ph, int fd,
3652 bool repipe)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003653{
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003654 struct feat_fd ff = {
3655 .fd = STDOUT_FILENO,
3656 .ph = ph,
3657 };
Jiri Olsa727ebd52013-11-28 11:30:14 +01003658 ssize_t ret;
Stephane Eranian73323f52012-02-02 13:54:44 +01003659
3660 ret = readn(fd, header, sizeof(*header));
3661 if (ret <= 0)
3662 return -1;
3663
Stephane Eranian114382a2012-02-09 23:21:08 +01003664 if (check_magic_endian(header->magic, header->size, true, ph) < 0) {
3665 pr_debug("endian/magic failed\n");
Tom Zanussi8dc58102010-04-01 23:59:15 -05003666 return -1;
Stephane Eranian114382a2012-02-09 23:21:08 +01003667 }
3668
3669 if (ph->needs_swap)
3670 header->size = bswap_64(header->size);
Tom Zanussi8dc58102010-04-01 23:59:15 -05003671
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003672 if (repipe && do_write(&ff, header, sizeof(*header)) < 0)
Tom Zanussi454c4072010-05-01 01:41:20 -05003673 return -1;
3674
Tom Zanussi8dc58102010-04-01 23:59:15 -05003675 return 0;
3676}
3677
Jiri Olsad4339562013-07-17 19:49:41 +02003678static int perf_header__read_pipe(struct perf_session *session)
Tom Zanussi8dc58102010-04-01 23:59:15 -05003679{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003680 struct perf_header *header = &session->header;
Tom Zanussi8dc58102010-04-01 23:59:15 -05003681 struct perf_pipe_file_header f_header;
3682
Jiri Olsacc9784bd2013-10-15 16:27:34 +02003683 if (perf_file_header__read_pipe(&f_header, header,
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003684 perf_data__fd(session->data),
Tom Zanussi454c4072010-05-01 01:41:20 -05003685 session->repipe) < 0) {
Tom Zanussi8dc58102010-04-01 23:59:15 -05003686 pr_debug("incompatible file format\n");
3687 return -EINVAL;
3688 }
3689
Jiri Olsa14d3d542020-05-07 11:50:22 +02003690 return f_header.size == sizeof(f_header) ? 0 : -1;
Tom Zanussi8dc58102010-04-01 23:59:15 -05003691}
3692
Stephane Eranian69996df2012-02-09 23:21:06 +01003693static int read_attr(int fd, struct perf_header *ph,
3694 struct perf_file_attr *f_attr)
3695{
3696 struct perf_event_attr *attr = &f_attr->attr;
3697 size_t sz, left;
3698 size_t our_sz = sizeof(f_attr->attr);
Jiri Olsa727ebd52013-11-28 11:30:14 +01003699 ssize_t ret;
Stephane Eranian69996df2012-02-09 23:21:06 +01003700
3701 memset(f_attr, 0, sizeof(*f_attr));
3702
3703 /* read minimal guaranteed structure */
3704 ret = readn(fd, attr, PERF_ATTR_SIZE_VER0);
3705 if (ret <= 0) {
3706 pr_debug("cannot read %d bytes of header attr\n",
3707 PERF_ATTR_SIZE_VER0);
3708 return -1;
3709 }
3710
3711 /* on file perf_event_attr size */
3712 sz = attr->size;
Stephane Eranian114382a2012-02-09 23:21:08 +01003713
Stephane Eranian69996df2012-02-09 23:21:06 +01003714 if (ph->needs_swap)
3715 sz = bswap_32(sz);
3716
3717 if (sz == 0) {
3718 /* assume ABI0 */
3719 sz = PERF_ATTR_SIZE_VER0;
3720 } else if (sz > our_sz) {
3721 pr_debug("file uses a more recent and unsupported ABI"
3722 " (%zu bytes extra)\n", sz - our_sz);
3723 return -1;
3724 }
3725 /* what we have not yet read and that we know about */
3726 left = sz - PERF_ATTR_SIZE_VER0;
3727 if (left) {
3728 void *ptr = attr;
3729 ptr += PERF_ATTR_SIZE_VER0;
3730
3731 ret = readn(fd, ptr, left);
3732 }
3733 /* read perf_file_section, ids are read in caller */
3734 ret = readn(fd, &f_attr->ids, sizeof(f_attr->ids));
3735
3736 return ret <= 0 ? -1 : 0;
3737}
3738
Jiri Olsa32dcd022019-07-21 13:23:51 +02003739static int perf_evsel__prepare_tracepoint_event(struct evsel *evsel,
Tzvetomir Stoyanov (VMware)096177a2018-08-08 14:02:46 -04003740 struct tep_handle *pevent)
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003741{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003742 struct tep_event *event;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003743 char bf[128];
3744
Namhyung Kim831394b2012-09-06 11:10:46 +09003745 /* already prepared */
3746 if (evsel->tp_format)
3747 return 0;
3748
Namhyung Kim3dce2ce2013-03-21 16:18:48 +09003749 if (pevent == NULL) {
3750 pr_debug("broken or missing trace data\n");
3751 return -1;
3752 }
3753
Jiri Olsa1fc632c2019-07-21 13:24:29 +02003754 event = tep_find_event(pevent, evsel->core.attr.config);
Namhyung Kima7619ae2013-04-18 21:24:16 +09003755 if (event == NULL) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02003756 pr_debug("cannot find event format for %d\n", (int)evsel->core.attr.config);
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003757 return -1;
Namhyung Kima7619ae2013-04-18 21:24:16 +09003758 }
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003759
Namhyung Kim831394b2012-09-06 11:10:46 +09003760 if (!evsel->name) {
3761 snprintf(bf, sizeof(bf), "%s:%s", event->system, event->name);
3762 evsel->name = strdup(bf);
3763 if (evsel->name == NULL)
3764 return -1;
3765 }
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003766
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -03003767 evsel->tp_format = event;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003768 return 0;
3769}
3770
Jiri Olsa63503db2019-07-21 13:23:52 +02003771static int perf_evlist__prepare_tracepoint_events(struct evlist *evlist,
Tzvetomir Stoyanov (VMware)096177a2018-08-08 14:02:46 -04003772 struct tep_handle *pevent)
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003773{
Jiri Olsa32dcd022019-07-21 13:23:51 +02003774 struct evsel *pos;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003775
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003776 evlist__for_each_entry(evlist, pos) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02003777 if (pos->core.attr.type == PERF_TYPE_TRACEPOINT &&
Namhyung Kim831394b2012-09-06 11:10:46 +09003778 perf_evsel__prepare_tracepoint_event(pos, pevent))
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003779 return -1;
3780 }
3781
3782 return 0;
3783}
3784
Jiri Olsad4339562013-07-17 19:49:41 +02003785int perf_session__read_header(struct perf_session *session)
Tom Zanussi8dc58102010-04-01 23:59:15 -05003786{
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003787 struct perf_data *data = session->data;
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003788 struct perf_header *header = &session->header;
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003789 struct perf_file_header f_header;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003790 struct perf_file_attr f_attr;
3791 u64 f_id;
Jiri Olsa14d3d542020-05-07 11:50:22 +02003792 int nr_attrs, nr_ids, i, j, err;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003793 int fd = perf_data__fd(data);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003794
Jiri Olsa0f98b112019-07-21 13:23:55 +02003795 session->evlist = evlist__new();
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003796 if (session->evlist == NULL)
3797 return -ENOMEM;
3798
Kan Liang2c071442015-08-28 05:48:05 -04003799 session->evlist->env = &header->env;
Arnaldo Carvalho de Melo4cde9982015-09-09 12:25:00 -03003800 session->machines.host.env = &header->env;
Jiri Olsa14d3d542020-05-07 11:50:22 +02003801
3802 /*
3803 * We can read 'pipe' data event from regular file,
3804 * check for the pipe header regardless of source.
3805 */
3806 err = perf_header__read_pipe(session);
3807 if (!err || (err && perf_data__is_pipe(data))) {
3808 data->is_pipe = true;
3809 return err;
3810 }
Tom Zanussi8dc58102010-04-01 23:59:15 -05003811
Stephane Eranian69996df2012-02-09 23:21:06 +01003812 if (perf_file_header__read(&f_header, header, fd) < 0)
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02003813 return -EINVAL;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003814
Namhyung Kimb314e5c2013-09-30 17:19:48 +09003815 /*
3816 * Sanity check that perf.data was written cleanly; data size is
3817 * initialized to 0 and updated only if the on_exit function is run.
3818 * If data size is still 0 then the file contains only partial
3819 * information. Just warn user and process it as much as it can.
3820 */
3821 if (f_header.data.size == 0) {
3822 pr_warning("WARNING: The %s file's data size field is 0 which is unexpected.\n"
3823 "Was the 'perf record' command properly terminated?\n",
Jiri Olsaeae8ad82017-01-23 22:25:41 +01003824 data->file.path);
Namhyung Kimb314e5c2013-09-30 17:19:48 +09003825 }
3826
Vince Weaver76222362019-07-23 11:06:01 -04003827 if (f_header.attr_size == 0) {
3828 pr_err("ERROR: The %s file's attr size field is 0 which is unexpected.\n"
3829 "Was the 'perf record' command properly terminated?\n",
3830 data->file.path);
3831 return -EINVAL;
3832 }
3833
Stephane Eranian69996df2012-02-09 23:21:06 +01003834 nr_attrs = f_header.attrs.size / f_header.attr_size;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003835 lseek(fd, f_header.attrs.offset, SEEK_SET);
3836
3837 for (i = 0; i < nr_attrs; i++) {
Jiri Olsa32dcd022019-07-21 13:23:51 +02003838 struct evsel *evsel;
Peter Zijlstra1c222bc2009-08-06 20:57:41 +02003839 off_t tmp;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003840
Stephane Eranian69996df2012-02-09 23:21:06 +01003841 if (read_attr(fd, header, &f_attr) < 0)
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003842 goto out_errno;
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003843
David Ahern1060ab82015-04-09 16:15:46 -04003844 if (header->needs_swap) {
3845 f_attr.ids.size = bswap_64(f_attr.ids.size);
3846 f_attr.ids.offset = bswap_64(f_attr.ids.offset);
David Aherneda39132011-07-15 12:34:09 -06003847 perf_event__attr_swap(&f_attr.attr);
David Ahern1060ab82015-04-09 16:15:46 -04003848 }
David Aherneda39132011-07-15 12:34:09 -06003849
Peter Zijlstra1c222bc2009-08-06 20:57:41 +02003850 tmp = lseek(fd, 0, SEEK_CUR);
Jiri Olsa365c3ae2019-07-21 13:23:58 +02003851 evsel = evsel__new(&f_attr.attr);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003852
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003853 if (evsel == NULL)
3854 goto out_delete_evlist;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03003855
3856 evsel->needs_swap = header->needs_swap;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003857 /*
3858 * Do it before so that if perf_evsel__alloc_id fails, this
Jiri Olsac12995a2019-07-21 13:23:56 +02003859 * entry gets purged too at evlist__delete().
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003860 */
Jiri Olsaa1cf3a72019-07-21 13:23:59 +02003861 evlist__add(session->evlist, evsel);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003862
3863 nr_ids = f_attr.ids.size / sizeof(u64);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003864 /*
3865 * We don't have the cpu and thread maps on the header, so
3866 * for allocating the perf_sample_id table we fake 1 cpu and
3867 * hattr->ids threads.
3868 */
Jiri Olsa70c20362019-09-03 10:34:29 +02003869 if (perf_evsel__alloc_id(&evsel->core, 1, nr_ids))
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003870 goto out_delete_evlist;
3871
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003872 lseek(fd, f_attr.ids.offset, SEEK_SET);
3873
3874 for (j = 0; j < nr_ids; j++) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003875 if (perf_header__getbuffer64(header, fd, &f_id, sizeof(f_id)))
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003876 goto out_errno;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003877
Jiri Olsab0031c22019-09-03 11:01:04 +02003878 perf_evlist__id_add(&session->evlist->core, &evsel->core, 0, j, f_id);
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02003879 }
Arnaldo Carvalho de Melo11deb1f2009-11-17 01:18:09 -02003880
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003881 lseek(fd, tmp, SEEK_SET);
3882 }
3883
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003884 perf_header__process_sections(header, fd, &session->tevent,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003885 perf_file_section__process);
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +01003886
Namhyung Kim831394b2012-09-06 11:10:46 +09003887 if (perf_evlist__prepare_tracepoint_events(session->evlist,
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003888 session->tevent.pevent))
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003889 goto out_delete_evlist;
3890
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02003891 return 0;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003892out_errno:
3893 return -errno;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003894
3895out_delete_evlist:
Jiri Olsac12995a2019-07-21 13:23:56 +02003896 evlist__delete(session->evlist);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003897 session->evlist = NULL;
3898 return -ENOMEM;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003899}
Frederic Weisbecker0d3a5c82009-08-16 20:56:37 +02003900
Jiri Olsa89f16882018-09-13 14:54:03 +02003901int perf_event__process_feature(struct perf_session *session,
3902 union perf_event *event)
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003903{
Jiri Olsa89f16882018-09-13 14:54:03 +02003904 struct perf_tool *tool = session->tool;
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003905 struct feat_fd ff = { .fd = 0 };
Jiri Olsa72932372019-08-28 15:57:16 +02003906 struct perf_record_header_feature *fe = (struct perf_record_header_feature *)event;
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003907 int type = fe->header.type;
3908 u64 feat = fe->feat_id;
3909
3910 if (type < 0 || type >= PERF_RECORD_HEADER_MAX) {
3911 pr_warning("invalid record type %d in pipe-mode\n", type);
3912 return 0;
3913 }
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303914 if (feat == HEADER_RESERVED || feat >= HEADER_LAST_FEATURE) {
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003915 pr_warning("invalid record type %d in pipe-mode\n", type);
3916 return -1;
3917 }
3918
3919 if (!feat_ops[feat].process)
3920 return 0;
3921
3922 ff.buf = (void *)fe->data;
Jiri Olsa79b2fe52019-07-15 16:04:26 +02003923 ff.size = event->header.size - sizeof(*fe);
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003924 ff.ph = &session->header;
3925
3926 if (feat_ops[feat].process(&ff, NULL))
3927 return -1;
3928
3929 if (!feat_ops[feat].print || !tool->show_feat_hdr)
3930 return 0;
3931
3932 if (!feat_ops[feat].full_only ||
3933 tool->show_feat_hdr >= SHOW_FEAT_HEADER_FULL_INFO) {
3934 feat_ops[feat].print(&ff, stdout);
3935 } else {
3936 fprintf(stdout, "# %s info available, use -I to display\n",
3937 feat_ops[feat].name);
3938 }
3939
3940 return 0;
3941}
3942
Jiri Olsac853f932015-10-25 15:51:41 +01003943size_t perf_event__fprintf_event_update(union perf_event *event, FILE *fp)
3944{
Jiri Olsa72932372019-08-28 15:57:16 +02003945 struct perf_record_event_update *ev = &event->event_update;
3946 struct perf_record_event_update_scale *ev_scale;
3947 struct perf_record_event_update_cpus *ev_cpus;
Jiri Olsaf8548392019-07-21 13:23:49 +02003948 struct perf_cpu_map *map;
Jiri Olsac853f932015-10-25 15:51:41 +01003949 size_t ret;
3950
Jiri Olsa5ded0682019-08-28 15:56:57 +02003951 ret = fprintf(fp, "\n... id: %" PRI_lu64 "\n", ev->id);
Jiri Olsac853f932015-10-25 15:51:41 +01003952
3953 switch (ev->type) {
3954 case PERF_EVENT_UPDATE__SCALE:
Jiri Olsa72932372019-08-28 15:57:16 +02003955 ev_scale = (struct perf_record_event_update_scale *)ev->data;
Jiri Olsac853f932015-10-25 15:51:41 +01003956 ret += fprintf(fp, "... scale: %f\n", ev_scale->scale);
3957 break;
3958 case PERF_EVENT_UPDATE__UNIT:
3959 ret += fprintf(fp, "... unit: %s\n", ev->data);
3960 break;
3961 case PERF_EVENT_UPDATE__NAME:
3962 ret += fprintf(fp, "... name: %s\n", ev->data);
3963 break;
3964 case PERF_EVENT_UPDATE__CPUS:
Jiri Olsa72932372019-08-28 15:57:16 +02003965 ev_cpus = (struct perf_record_event_update_cpus *)ev->data;
Jiri Olsac853f932015-10-25 15:51:41 +01003966 ret += fprintf(fp, "... ");
3967
3968 map = cpu_map__new_data(&ev_cpus->cpus);
3969 if (map)
3970 ret += cpu_map__fprintf(map, fp);
3971 else
3972 ret += fprintf(fp, "failed to get cpus\n");
3973 break;
3974 default:
3975 ret += fprintf(fp, "... unknown type\n");
3976 break;
3977 }
3978
3979 return ret;
3980}
Jiri Olsa86ebb092015-10-25 15:51:40 +01003981
Adrian Hunter47c3d102013-07-04 16:20:21 +03003982int perf_event__process_attr(struct perf_tool *tool __maybe_unused,
3983 union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +02003984 struct evlist **pevlist)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003985{
Robert Richterf4d83432012-08-16 21:10:17 +02003986 u32 i, ids, n_ids;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003987 struct evsel *evsel;
Jiri Olsa63503db2019-07-21 13:23:52 +02003988 struct evlist *evlist = *pevlist;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003989
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003990 if (evlist == NULL) {
Jiri Olsa0f98b112019-07-21 13:23:55 +02003991 *pevlist = evlist = evlist__new();
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003992 if (evlist == NULL)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003993 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003994 }
3995
Jiri Olsa365c3ae2019-07-21 13:23:58 +02003996 evsel = evsel__new(&event->attr.attr);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003997 if (evsel == NULL)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003998 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003999
Jiri Olsaa1cf3a72019-07-21 13:23:59 +02004000 evlist__add(evlist, evsel);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03004001
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02004002 ids = event->header.size;
4003 ids -= (void *)&event->attr.id - (void *)event;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004004 n_ids = ids / sizeof(u64);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03004005 /*
4006 * We don't have the cpu and thread maps on the header, so
4007 * for allocating the perf_sample_id table we fake 1 cpu and
4008 * hattr->ids threads.
4009 */
Jiri Olsa70c20362019-09-03 10:34:29 +02004010 if (perf_evsel__alloc_id(&evsel->core, 1, n_ids))
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03004011 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004012
4013 for (i = 0; i < n_ids; i++) {
Jiri Olsab0031c22019-09-03 11:01:04 +02004014 perf_evlist__id_add(&evlist->core, &evsel->core, 0, i, event->attr.id[i]);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004015 }
4016
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004017 return 0;
4018}
Tom Zanussicd19a032010-04-01 23:59:20 -05004019
Jiri Olsaffe777252015-10-25 15:51:36 +01004020int perf_event__process_event_update(struct perf_tool *tool __maybe_unused,
4021 union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +02004022 struct evlist **pevlist)
Jiri Olsaffe777252015-10-25 15:51:36 +01004023{
Jiri Olsa72932372019-08-28 15:57:16 +02004024 struct perf_record_event_update *ev = &event->event_update;
4025 struct perf_record_event_update_scale *ev_scale;
4026 struct perf_record_event_update_cpus *ev_cpus;
Jiri Olsa63503db2019-07-21 13:23:52 +02004027 struct evlist *evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +02004028 struct evsel *evsel;
Jiri Olsaf8548392019-07-21 13:23:49 +02004029 struct perf_cpu_map *map;
Jiri Olsaffe777252015-10-25 15:51:36 +01004030
4031 if (!pevlist || *pevlist == NULL)
4032 return -EINVAL;
4033
4034 evlist = *pevlist;
4035
4036 evsel = perf_evlist__id2evsel(evlist, ev->id);
4037 if (evsel == NULL)
4038 return -EINVAL;
4039
Jiri Olsaa6e52812015-10-25 15:51:37 +01004040 switch (ev->type) {
4041 case PERF_EVENT_UPDATE__UNIT:
4042 evsel->unit = strdup(ev->data);
Jiri Olsadaeecbc2015-10-25 15:51:38 +01004043 break;
Jiri Olsa802c9042015-10-25 15:51:39 +01004044 case PERF_EVENT_UPDATE__NAME:
4045 evsel->name = strdup(ev->data);
4046 break;
Jiri Olsadaeecbc2015-10-25 15:51:38 +01004047 case PERF_EVENT_UPDATE__SCALE:
Jiri Olsa72932372019-08-28 15:57:16 +02004048 ev_scale = (struct perf_record_event_update_scale *)ev->data;
Jiri Olsadaeecbc2015-10-25 15:51:38 +01004049 evsel->scale = ev_scale->scale;
Arnaldo Carvalho de Melo8434a2e2017-02-08 21:57:22 -03004050 break;
Jiri Olsa86ebb092015-10-25 15:51:40 +01004051 case PERF_EVENT_UPDATE__CPUS:
Jiri Olsa72932372019-08-28 15:57:16 +02004052 ev_cpus = (struct perf_record_event_update_cpus *)ev->data;
Jiri Olsa86ebb092015-10-25 15:51:40 +01004053
4054 map = cpu_map__new_data(&ev_cpus->cpus);
4055 if (map)
Jiri Olsafe1f61b2019-07-21 13:24:38 +02004056 evsel->core.own_cpus = map;
Jiri Olsa86ebb092015-10-25 15:51:40 +01004057 else
4058 pr_err("failed to get event_update cpus\n");
Jiri Olsaa6e52812015-10-25 15:51:37 +01004059 default:
4060 break;
4061 }
4062
Jiri Olsaffe777252015-10-25 15:51:36 +01004063 return 0;
4064}
4065
Jiri Olsa89f16882018-09-13 14:54:03 +02004066int perf_event__process_tracing_data(struct perf_session *session,
4067 union perf_event *event)
Tom Zanussi92155452010-04-01 23:59:21 -05004068{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02004069 ssize_t size_read, padding, size = event->tracing_data.size;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01004070 int fd = perf_data__fd(session->data);
Tom Zanussi92155452010-04-01 23:59:21 -05004071 char buf[BUFSIZ];
4072
Jiri Olsab4911982020-05-07 11:50:21 +02004073 /*
4074 * The pipe fd is already in proper place and in any case
4075 * we can't move it, and we'd screw the case where we read
4076 * 'pipe' data from regular file. The trace_report reads
4077 * data from 'fd' so we need to set it directly behind the
4078 * event, where the tracing data starts.
4079 */
4080 if (!perf_data__is_pipe(session->data)) {
4081 off_t offset = lseek(fd, 0, SEEK_CUR);
4082
4083 /* setup for reading amidst mmap */
4084 lseek(fd, offset + sizeof(struct perf_record_header_tracing_data),
4085 SEEK_SET);
4086 }
Tom Zanussi92155452010-04-01 23:59:21 -05004087
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01004088 size_read = trace_report(fd, &session->tevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03004089 session->repipe);
Irina Tirdea9ac3e482012-09-11 01:15:01 +03004090 padding = PERF_ALIGN(size_read, sizeof(u64)) - size_read;
Tom Zanussi92155452010-04-01 23:59:21 -05004091
Jiri Olsacc9784bd2013-10-15 16:27:34 +02004092 if (readn(fd, buf, padding) < 0) {
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03004093 pr_err("%s: reading input file", __func__);
4094 return -1;
4095 }
Tom Zanussi454c4072010-05-01 01:41:20 -05004096 if (session->repipe) {
4097 int retw = write(STDOUT_FILENO, buf, padding);
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03004098 if (retw <= 0 || retw != padding) {
4099 pr_err("%s: repiping tracing data padding", __func__);
4100 return -1;
4101 }
Tom Zanussi454c4072010-05-01 01:41:20 -05004102 }
Tom Zanussi92155452010-04-01 23:59:21 -05004103
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03004104 if (size_read + padding != size) {
4105 pr_err("%s: tracing data size mismatch", __func__);
4106 return -1;
4107 }
Tom Zanussi92155452010-04-01 23:59:21 -05004108
Namhyung Kim831394b2012-09-06 11:10:46 +09004109 perf_evlist__prepare_tracepoint_events(session->evlist,
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01004110 session->tevent.pevent);
Arnaldo Carvalho de Melo8b6ee4c2012-08-07 23:36:16 -03004111
Tom Zanussi92155452010-04-01 23:59:21 -05004112 return size_read + padding;
4113}
Tom Zanussic7929e42010-04-01 23:59:22 -05004114
Jiri Olsa89f16882018-09-13 14:54:03 +02004115int perf_event__process_build_id(struct perf_session *session,
4116 union perf_event *event)
Tom Zanussic7929e42010-04-01 23:59:22 -05004117{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02004118 __event_process_build_id(&event->build_id,
4119 event->build_id.filename,
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08004120 session);
Tom Zanussic7929e42010-04-01 23:59:22 -05004121 return 0;
4122}